From c354a6a02c6588ab8c8b966ab30dd16b33a1fb44 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Fri, 3 Feb 2012 19:13:08 +0000 Subject: Movie Clip Editor: cleanup of display panels - Split display options into two panels: * Display, which contains all general display options related on editor itself * Marker Display, which contains options which makes sense for markers themselves and not used so often. - Remove Show GPencil option which doesn't actually make sense because strokes might be disabled from GPencil panel - Removed Show Pyramid option and show pyramid for KLT tracker as default. - Added hotkey to toggle Show Disabled (Alt-D) - Added hotkey to toggle Show Pattern (Alt-S) Changes in interface and hotkeys are done by Sebastian Koenig. Thanks for the patch! Own changes in interface were related on Aspect Ratio. It doesn't make much sense for tracking (camera pixel aspect is what you'll want to use, but for masking it would make much more sense because when you just want to create a mask for footage you don't actually have camera). Just removing from interface seems not so nice for now. --- source/blender/editors/gpencil/gpencil_paint.c | 8 -------- source/blender/editors/space_clip/clip_draw.c | 4 ++-- source/blender/editors/space_clip/space_clip.c | 8 +++++++- source/blender/makesdna/DNA_space_types.h | 4 ++-- source/blender/makesrna/intern/rna_space.c | 12 ------------ 5 files changed, 11 insertions(+), 25 deletions(-) (limited to 'source/blender') diff --git a/source/blender/editors/gpencil/gpencil_paint.c b/source/blender/editors/gpencil/gpencil_paint.c index 6c93727bf55..99572345c96 100644 --- a/source/blender/editors/gpencil/gpencil_paint.c +++ b/source/blender/editors/gpencil/gpencil_paint.c @@ -1117,14 +1117,6 @@ static int gp_session_initdata (bContext *C, tGPsdata *p) p->custom_color[1]= 0.0f; p->custom_color[2]= 0.5f; p->custom_color[3]= 0.9f; - - /* check that gpencil data is allowed to be drawn */ - if ((sc->flag & SC_SHOW_GPENCIL)==0) { - p->status= GP_STATUS_ERROR; - if (G.f & G_DEBUG) - printf("Error: In active view, Grease Pencil not shown \n"); - return 0; - } } break; diff --git a/source/blender/editors/space_clip/clip_draw.c b/source/blender/editors/space_clip/clip_draw.c index a331703690b..de43b30d4f4 100644 --- a/source/blender/editors/space_clip/clip_draw.c +++ b/source/blender/editors/space_clip/clip_draw.c @@ -586,7 +586,7 @@ static void draw_marker_areas(SpaceClip *sc, MovieTrackingTrack *track, MovieTra } /* pyramid */ - if(sel && TRACK_SELECTED(track) && (sc->flag&SC_SHOW_PYRAMID_LEVELS) && (track->tracker==TRACKER_KLT) && (marker->flag&MARKER_DISABLED)==0) { + if(sel && TRACK_SELECTED(track) && (track->tracker==TRACKER_KLT) && (marker->flag&MARKER_DISABLED)==0) { if(track->flag&TRACK_LOCKED) { if(act) UI_ThemeColor(TH_ACT_MARKER); else if(track->pat_flag&SELECT) UI_ThemeColorShade(TH_LOCK_MARKER, 64); @@ -1307,7 +1307,7 @@ void clip_draw_grease_pencil(bContext *C, int onlyv2d) MovieClip *clip= ED_space_clip(sc); ImBuf *ibuf; - if((sc->flag&SC_SHOW_GPENCIL)==0 || !clip) + if(!clip) return; if(onlyv2d) { diff --git a/source/blender/editors/space_clip/space_clip.c b/source/blender/editors/space_clip/space_clip.c index 0d34cc2cfbf..5abdafbfffc 100644 --- a/source/blender/editors/space_clip/space_clip.c +++ b/source/blender/editors/space_clip/space_clip.c @@ -157,7 +157,7 @@ static SpaceLink *clip_new(const bContext *C) sc= MEM_callocN(sizeof(SpaceClip), "initclip"); sc->spacetype= SPACE_CLIP; - sc->flag= SC_SHOW_MARKER_PATTERN|SC_SHOW_TRACK_PATH|SC_SHOW_GPENCIL|SC_MANUAL_CALIBRATION|SC_SHOW_GRAPH_TRACKS|SC_SHOW_GRAPH_FRAMES; + sc->flag= SC_SHOW_MARKER_PATTERN|SC_SHOW_TRACK_PATH|SC_MANUAL_CALIBRATION|SC_SHOW_GRAPH_TRACKS|SC_SHOW_GRAPH_FRAMES; sc->zoom= 1.0f; sc->path_length= 20; sc->scopes.track_preview_height= 120; @@ -530,6 +530,12 @@ static void clip_keymap(struct wmKeyConfig *keyconf) kmi= WM_keymap_add_item(keymap, "WM_OT_context_toggle", LKEY, KM_PRESS, 0, 0); RNA_string_set(kmi->ptr, "data_path", "space_data.lock_selection"); + kmi= WM_keymap_add_item(keymap, "WM_OT_context_toggle", DKEY, KM_PRESS, KM_ALT, 0); + RNA_string_set(kmi->ptr, "data_path", "space_data.show_disabled"); + + kmi= WM_keymap_add_item(keymap, "WM_OT_context_toggle", SKEY, KM_PRESS, KM_ALT, 0); + RNA_string_set(kmi->ptr, "data_path", "space_data.show_marker_search"); + kmi= WM_keymap_add_item(keymap, "WM_OT_context_toggle", MKEY, KM_PRESS, 0, 0); RNA_string_set(kmi->ptr, "data_path", "space_data.use_mute_footage"); diff --git a/source/blender/makesdna/DNA_space_types.h b/source/blender/makesdna/DNA_space_types.h index 06138bc0757..64d858bbcee 100644 --- a/source/blender/makesdna/DNA_space_types.h +++ b/source/blender/makesdna/DNA_space_types.h @@ -896,11 +896,11 @@ enum { #define SC_SHOW_GRID (1<<9) #define SC_SHOW_STABLE (1<<10) #define SC_MANUAL_CALIBRATION (1<<11) -#define SC_SHOW_GPENCIL (1<<12) +/*#define SC_SHOW_GPENCIL (1<<12)*/ /* UNUSED */ #define SC_SHOW_FILTERS (1<<13) #define SC_SHOW_GRAPH_FRAMES (1<<14) #define SC_SHOW_GRAPH_TRACKS (1<<15) -#define SC_SHOW_PYRAMID_LEVELS (1<<16) +/*#define SC_SHOW_PYRAMID_LEVELS (1<<16) */ /* UNUSED */ #define SC_LOCK_TIMECURSOR (1<<17) /* SpaceClip->mode */ diff --git a/source/blender/makesrna/intern/rna_space.c b/source/blender/makesrna/intern/rna_space.c index 799366a5234..8499e2fa111 100644 --- a/source/blender/makesrna/intern/rna_space.c +++ b/source/blender/makesrna/intern/rna_space.c @@ -2888,12 +2888,6 @@ static void rna_def_space_clip(BlenderRNA *brna) RNA_def_property_boolean_sdna(prop, NULL, "flag", SC_SHOW_MARKER_SEARCH); RNA_def_property_update(prop, NC_SPACE|ND_SPACE_CLIP, NULL); - /* show pyramid */ - prop= RNA_def_property(srna, "show_pyramid_levels", PROP_BOOLEAN, PROP_NONE); - RNA_def_property_ui_text(prop, "Show Pyramid ", "Show patterns for each pyramid level for markers (KLT only)"); - RNA_def_property_boolean_sdna(prop, NULL, "flag", SC_SHOW_PYRAMID_LEVELS); - RNA_def_property_update(prop, NC_SPACE|ND_SPACE_CLIP, NULL); - /* lock to selection */ prop= RNA_def_property(srna, "lock_selection", PROP_BOOLEAN, PROP_NONE); RNA_def_property_ui_text(prop, "Lock to Selection", "Lock viewport to selected markers during playback"); @@ -2973,12 +2967,6 @@ static void rna_def_space_clip(BlenderRNA *brna) RNA_def_property_ui_text(prop, "Manual Calibration", "Use manual calibration helpers"); RNA_def_property_update(prop, NC_SPACE|ND_SPACE_CLIP, NULL); - /* show stable */ - prop= RNA_def_property(srna, "show_grease_pencil", PROP_BOOLEAN, PROP_NONE); - RNA_def_property_boolean_sdna(prop, NULL, "flag", SC_SHOW_GPENCIL); - RNA_def_property_ui_text(prop, "Show Grease Pencil", "Show grease pencil strokes over the footage"); - RNA_def_property_update(prop, NC_SPACE|ND_SPACE_CLIP, NULL); - /* show filters */ prop= RNA_def_property(srna, "show_filters", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_sdna(prop, NULL, "flag", SC_SHOW_FILTERS); -- cgit v1.2.3 From c8f5dac11bb67aa005502d62855292e41252bbb4 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Fri, 3 Feb 2012 19:13:31 +0000 Subject: Movie Clip Editor: implemented option to display frame using OpenGL textures Initial idea was to perform bilinear filtering for displaying proxied frame to make it looking a bit smoother. It was done but it was also discovered that using such kind of texture buffers helps on some crappy videocards when playing $k footage. Currently check for NPOT support is disabled, so use this option with care. --- source/blender/blenloader/intern/readfile.c | 1 + source/blender/editors/include/ED_clip.h | 4 + source/blender/editors/space_clip/CMakeLists.txt | 1 + source/blender/editors/space_clip/SConscript | 2 +- source/blender/editors/space_clip/clip_draw.c | 39 ++++-- source/blender/editors/space_clip/clip_editor.c | 147 +++++++++++++++++++++++ source/blender/editors/space_clip/space_clip.c | 3 + source/blender/makesdna/DNA_space_types.h | 3 + source/blender/makesrna/intern/rna_space.c | 5 + 9 files changed, 195 insertions(+), 10 deletions(-) (limited to 'source/blender') diff --git a/source/blender/blenloader/intern/readfile.c b/source/blender/blenloader/intern/readfile.c index 6bd12e8d3f6..b30d04b31cc 100644 --- a/source/blender/blenloader/intern/readfile.c +++ b/source/blender/blenloader/intern/readfile.c @@ -5273,6 +5273,7 @@ static void lib_link_screen(FileData *fd, Main *main) sclip->clip= newlibadr_us(fd, sc->id.lib, sclip->clip); sclip->scopes.track_preview = NULL; + sclip->draw_context = NULL; sclip->scopes.ok = 0; } } diff --git a/source/blender/editors/include/ED_clip.h b/source/blender/editors/include/ED_clip.h index 7d36159f47e..004fd7ceef7 100644 --- a/source/blender/editors/include/ED_clip.h +++ b/source/blender/editors/include/ED_clip.h @@ -58,6 +58,10 @@ void ED_clip_point_undistorted_pos(SpaceClip *sc, float co[2], float nco[2]); void ED_clip_point_stable_pos(struct bContext *C, float x, float y, float *xr, float *yr); void ED_clip_mouse_pos(struct bContext *C, struct wmEvent *event, float co[2]); +void ED_space_clip_load_movieclip_buffer(struct SpaceClip *sc, struct ImBuf *ibuf); +void ED_space_clip_unload_movieclip_buffer(struct SpaceClip *sc); +void ED_space_clip_free_texture_buffer(struct SpaceClip *sc); + /* clip_ops.c */ void ED_operatormacros_clip(void); diff --git a/source/blender/editors/space_clip/CMakeLists.txt b/source/blender/editors/space_clip/CMakeLists.txt index 4f9819e8e77..30d2fe57c10 100644 --- a/source/blender/editors/space_clip/CMakeLists.txt +++ b/source/blender/editors/space_clip/CMakeLists.txt @@ -31,6 +31,7 @@ set(INC ../../makesdna ../../makesrna ../../windowmanager + ../../gpu ../../../../intern/guardedalloc ${GLEW_INCLUDE_PATH} ) diff --git a/source/blender/editors/space_clip/SConscript b/source/blender/editors/space_clip/SConscript index 70331b0ec4a..c9c82aea68e 100644 --- a/source/blender/editors/space_clip/SConscript +++ b/source/blender/editors/space_clip/SConscript @@ -4,6 +4,6 @@ Import ('env') sources = env.Glob('*.c') defs = [] incs = '../include ../../blenkernel ../../blenloader ../../blenfont ../../blenlib ../../imbuf ../../makesdna' -incs += ' ../../makesrna ../../windowmanager #/intern/guardedalloc #/extern/glew/include' +incs += ' ../../makesrna ../../windowmanager #/intern/guardedalloc #/extern/glew/include ../../gpu' env.BlenderLib ( 'bf_editors_space_clip', sources, Split(incs), defs, libtype=['core'], priority=[95] ) diff --git a/source/blender/editors/space_clip/clip_draw.c b/source/blender/editors/space_clip/clip_draw.c index de43b30d4f4..2533629c4fb 100644 --- a/source/blender/editors/space_clip/clip_draw.c +++ b/source/blender/editors/space_clip/clip_draw.c @@ -216,9 +216,6 @@ static void draw_movieclip_buffer(SpaceClip *sc, ARegion *ar, ImBuf *ibuf, int x, y; MovieClip *clip= ED_space_clip(sc); - /* set zoom */ - glPixelZoom(zoomx*width/ibuf->x, zoomy*height/ibuf->y); - /* find window pixel coordinates of origin */ UI_view2d_to_region_no_clip(&ar->v2d, 0.0f, 0.0f, &x, &y); @@ -230,8 +227,36 @@ static void draw_movieclip_buffer(SpaceClip *sc, ARegion *ar, ImBuf *ibuf, IMB_rect_from_float(ibuf); } - if(ibuf->rect) - glaDrawPixelsSafe(x, y, ibuf->x, ibuf->y, ibuf->x, GL_RGBA, GL_UNSIGNED_BYTE, ibuf->rect); + if(ibuf->rect) { + if(sc->flag & SC_TEXTURE_BUFFER) { + ED_space_clip_load_movieclip_buffer(sc, ibuf); + + glPushMatrix(); + glTranslatef(x, y, 0); + glScalef(zoomx, zoomy, 1.0f); + glMultMatrixf(sc->stabmat); + + glBegin(GL_QUADS); + glTexCoord2f(0.0f, 0.0f); glVertex2f(0.0f, 0.0f); + glTexCoord2f(1.0f, 0.0f); glVertex2f(width, 0.0f); + glTexCoord2f(1.0f, 1.0f); glVertex2f(width, height); + glTexCoord2f(0.0f, 1.0f); glVertex2f(0.0f, height); + glEnd(); + + glPopMatrix(); + + ED_space_clip_unload_movieclip_buffer(sc); + } + else { + /* set zoom */ + glPixelZoom(zoomx*width/ibuf->x, zoomy*height/ibuf->y); + + glaDrawPixelsSafe(x, y, ibuf->x, ibuf->y, ibuf->x, GL_RGBA, GL_UNSIGNED_BYTE, ibuf->rect); + + /* reset zoom */ + glPixelZoom(1.0f, 1.0f); + } + } } /* draw boundary border for frame if stabilization is enabled */ @@ -260,10 +285,6 @@ static void draw_movieclip_buffer(SpaceClip *sc, ARegion *ar, ImBuf *ibuf, glDisable(GL_COLOR_LOGIC_OP); glDisable(GL_LINE_STIPPLE); } - - - /* reset zoom */ - glPixelZoom(1.0f, 1.0f); } static void draw_track_path(SpaceClip *sc, MovieClip *UNUSED(clip), MovieTrackingTrack *track) diff --git a/source/blender/editors/space_clip/clip_editor.c b/source/blender/editors/space_clip/clip_editor.c index 35d870022a4..9835a1cf43b 100644 --- a/source/blender/editors/space_clip/clip_editor.c +++ b/source/blender/editors/space_clip/clip_editor.c @@ -31,6 +31,8 @@ #include +#include "MEM_guardedalloc.h" + #include "BKE_main.h" #include "BKE_movieclip.h" #include "BKE_context.h" @@ -40,6 +42,8 @@ #include "BLI_utildefines.h" #include "BLI_math.h" +#include "GPU_extensions.h" + #include "IMB_imbuf_types.h" #include "IMB_imbuf.h" @@ -47,6 +51,7 @@ #include "ED_clip.h" #include "BIF_gl.h" +#include "BIF_glutil.h" #include "WM_api.h" #include "WM_types.h" @@ -309,3 +314,145 @@ void ED_clip_mouse_pos(bContext *C, wmEvent *event, float co[2]) { ED_clip_point_stable_pos(C, event->mval[0], event->mval[1], &co[0], &co[1]); } + +/* OpenGL draw context */ + +typedef struct SpaceClipDrawContext { + GLuint texture; /* OGL texture ID */ + short texture_allocated; /* flag if texture was allocated by glGenTextures */ + struct ImBuf *texture_ibuf; /* image buffer for which texture was created */ + int image_width, image_height; /* image width and height for which texture was created */ + unsigned last_texture; /* ID of previously used texture, so it'll be restored after clip drawing */ +} SpaceClipDrawContext; + +void ED_space_clip_load_movieclip_buffer(SpaceClip *sc, ImBuf *ibuf) +{ + SpaceClipDrawContext *context = sc->draw_context; + MovieClip *clip = ED_space_clip(sc); + int need_rebind = 0; + + if (!context) { + context = MEM_callocN(sizeof(SpaceClipDrawContext), "SpaceClipDrawContext"); + sc->draw_context = context; + } + + context->last_texture = glaGetOneInteger(GL_TEXTURE_2D); + + /* image texture need to be rebinded if displaying another image buffer + * assuming displaying happens of footage frames only on which painting doesn't heppen. + * so not changed image buffer pointer means unchanged image content */ + need_rebind |= context->texture_ibuf != ibuf; + + if (need_rebind) { + int width = ibuf->x, height = ibuf->y; + float *frect = NULL, *fscalerect = NULL; + unsigned int *rect = NULL, *scalerect = NULL; + int need_recreate = 0; + + rect = ibuf->rect; + frect = ibuf->rect_float; + + /* if image resolution changed (e.g. switched to proxy display) texture need to be recreated */ + need_recreate = context->image_width != ibuf->x || context->image_height != ibuf->y; + + if (context->texture_ibuf && need_recreate) { + glDeleteTextures(1, &context->texture); + context->texture_allocated = 0; + } + +#if 0 + /* disabled for now because current tracking users have got NPOT textures + * working smoothly on their computers and forcing re-scaling during playback + * slows down playback a lot */ + + /* if videocard doesn't support NPOT textures, need to do rescaling */ + if (!GPU_non_power_of_two_support()) { + if (!is_power_of_2_i(width) || !is_power_of_2_i(height)) { + width = power_of_2_max_i(width); + height = power_of_2_max_i(height); + + if (ibuf->x != width || ibuf->y != height) { + if (frect) { + fscalerect= MEM_mallocN(width*width*sizeof(*fscalerect)*4, "fscalerect"); + gluScaleImage(GL_RGBA, ibuf->x, ibuf->y, GL_FLOAT, ibuf->rect_float, width, height, GL_FLOAT, fscalerect); + + frect = fscalerect; + } + else { + scalerect= MEM_mallocN(width*height*sizeof(*scalerect), "scalerect"); + gluScaleImage(GL_RGBA, ibuf->x, ibuf->y, GL_UNSIGNED_BYTE, ibuf->rect, width, height, GL_UNSIGNED_BYTE, scalerect); + + rect = scalerect; + } + } + } + } +#endif + + if (need_recreate || !context->texture_allocated) { + /* texture doesn't exist yet or need to be re-allocated because of changed dimensions */ + int filter = GL_LINEAR; + + /* non-scaled proxy shouldn;t use diltering */ + if ((clip->flag & MCLIP_USE_PROXY) == 0 || + ELEM(sc->user.render_size, MCLIP_PROXY_RENDER_SIZE_FULL, MCLIP_PROXY_RENDER_SIZE_100)) + { + filter = GL_NEAREST; + } + + glGenTextures(1, &context->texture); + glBindTexture(GL_TEXTURE_2D, context->texture); + glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, filter); + glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, filter); + glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP); + glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP); + } + else { + /* if texture doesn't need to be reallocated itself, just bind it so + * loading of image will happen to a proper texture */ + glBindTexture(GL_TEXTURE_2D, context->texture); + } + + if (frect) + glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA16, width, height, 0, GL_RGBA, GL_FLOAT, frect); + else + glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA8, width, height, 0, GL_RGBA, GL_UNSIGNED_BYTE, rect); + + /* store settings */ + context->texture_allocated = 1; + context->texture_ibuf = ibuf; + context->image_width = ibuf->x; + context->image_height = ibuf->y; + + if (fscalerect) + MEM_freeN(fscalerect); + if (scalerect) + MEM_freeN(scalerect); + } + else { + /* displaying exactly the same image which was loaded t oa texture, + * just bint texture in this case */ + glBindTexture(GL_TEXTURE_2D, context->texture); + } + + glEnable(GL_TEXTURE_2D); +} + +void ED_space_clip_unload_movieclip_buffer(SpaceClip *sc) +{ + SpaceClipDrawContext *context = sc->draw_context; + + glBindTexture(GL_TEXTURE_2D, context->last_texture); + glDisable(GL_TEXTURE_2D); +} + +void ED_space_clip_free_texture_buffer(SpaceClip *sc) +{ + SpaceClipDrawContext *context = sc->draw_context; + + if (context) { + glDeleteTextures(1, &context->texture); + + MEM_freeN(context); + } +} diff --git a/source/blender/editors/space_clip/space_clip.c b/source/blender/editors/space_clip/space_clip.c index 5abdafbfffc..7cd7060e1d4 100644 --- a/source/blender/editors/space_clip/space_clip.c +++ b/source/blender/editors/space_clip/space_clip.c @@ -214,6 +214,8 @@ static void clip_free(SpaceLink *sl) if(sc->scopes.track_preview) IMB_freeImBuf(sc->scopes.track_preview); + + ED_space_clip_free_texture_buffer(sc); } /* spacetype; init callback */ @@ -229,6 +231,7 @@ static SpaceLink *clip_duplicate(SpaceLink *sl) /* clear or remove stuff from old */ scn->scopes.track_preview= NULL; scn->scopes.ok= 0; + scn->draw_context= NULL; return (SpaceLink *)scn; } diff --git a/source/blender/makesdna/DNA_space_types.h b/source/blender/makesdna/DNA_space_types.h index 64d858bbcee..f5ca88d9391 100644 --- a/source/blender/makesdna/DNA_space_types.h +++ b/source/blender/makesdna/DNA_space_types.h @@ -521,6 +521,8 @@ typedef struct SpaceClip { /* movie postprocessing */ int postproc_flag, pad2; + + void *draw_context; } SpaceClip; /* view3d Now in DNA_view3d_types.h */ @@ -902,6 +904,7 @@ enum { #define SC_SHOW_GRAPH_TRACKS (1<<15) /*#define SC_SHOW_PYRAMID_LEVELS (1<<16) */ /* UNUSED */ #define SC_LOCK_TIMECURSOR (1<<17) +#define SC_TEXTURE_BUFFER (1<<18) /* SpaceClip->mode */ #define SC_MODE_TRACKING 0 diff --git a/source/blender/makesrna/intern/rna_space.c b/source/blender/makesrna/intern/rna_space.c index 8499e2fa111..cb4151d8aee 100644 --- a/source/blender/makesrna/intern/rna_space.c +++ b/source/blender/makesrna/intern/rna_space.c @@ -2985,6 +2985,11 @@ static void rna_def_space_clip(BlenderRNA *brna) RNA_def_property_ui_text(prop, "Show Tracks", "Display the speed curves (in \"x\" direction red, in \"y\" direction green) for the selected tracks"); RNA_def_property_update(prop, NC_SPACE|ND_SPACE_CLIP, NULL); + prop= RNA_def_property(srna, "use_texture_buffer", PROP_BOOLEAN, PROP_NONE); + RNA_def_property_ui_text(prop, "Use Texture Buffer", "Use texture buffer to display o,age frames frame on screen"); + RNA_def_property_boolean_sdna(prop, NULL, "flag", SC_TEXTURE_BUFFER); + RNA_def_property_update(prop, NC_WINDOW, NULL); + /* ** channels ** */ /* show_red_channel */ -- cgit v1.2.3 From 0327b9a0cf9cac49936a09a9fc943be5e5337813 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sat, 11 Feb 2012 19:43:06 +0000 Subject: minor include cleanup, add GPL header (copied from BKE_animsys.h --- source/blender/blenkernel/BKE_booleanops_mesh.h | 4 ++-- source/blender/blenlib/BLI_callbacks.h | 6 ++---- source/blender/blenlib/BLI_graph.h | 24 ++++++++++++++++++++++++ 3 files changed, 28 insertions(+), 6 deletions(-) (limited to 'source/blender') diff --git a/source/blender/blenkernel/BKE_booleanops_mesh.h b/source/blender/blenkernel/BKE_booleanops_mesh.h index 7c989ea17e6..4c4a2dc9998 100644 --- a/source/blender/blenkernel/BKE_booleanops_mesh.h +++ b/source/blender/blenkernel/BKE_booleanops_mesh.h @@ -24,8 +24,8 @@ * * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BKE_PyBooleanOps_h -#define BKE_PyBooleanOps_h +#ifndef BKE_BOOLEANOPS_MESH_H +#define BKE_BOOLEANOPS_MESH_H /** \file BKE_booleanops_mesh.h * \ingroup bke diff --git a/source/blender/blenlib/BLI_callbacks.h b/source/blender/blenlib/BLI_callbacks.h index 7e4fad54cda..201ada45acf 100644 --- a/source/blender/blenlib/BLI_callbacks.h +++ b/source/blender/blenlib/BLI_callbacks.h @@ -29,7 +29,6 @@ * \ingroup bli */ - #ifndef BLI_CALLBACKS_H #define BLI_CALLBACKS_H @@ -64,12 +63,11 @@ typedef struct { void BLI_exec_cb(struct Main *main, struct ID *self, eCbEvent evt); void BLI_add_cb(bCallbackFuncStore *funcstore, eCbEvent evt); -#endif - - void BLI_cb_init(void); void BLI_cb_finalize(void); /* This is blenlib internal only, unrelated to above */ void callLocalErrorCallBack(const char* msg); + +#endif /* BLI_CALLBACKS_H */ diff --git a/source/blender/blenlib/BLI_graph.h b/source/blender/blenlib/BLI_graph.h index f625c7bb2d4..056bba71dea 100644 --- a/source/blender/blenlib/BLI_graph.h +++ b/source/blender/blenlib/BLI_graph.h @@ -1,3 +1,27 @@ +/* + * ***** BEGIN GPL LICENSE BLOCK ***** + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software Foundation, + * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + * The Original Code is Copyright (C) 2008 Blender Foundation. + * All rights reserved. + * + * Contributor(s): Joshua Leung + * + * ***** END GPL LICENSE BLOCK ***** + */ #ifndef BLI_GRAPH_H_ #define BLI_GRAPH_H_ -- cgit v1.2.3 From a7458742b1f87c918fad6e7f0081e5d2b2e94125 Mon Sep 17 00:00:00 2001 From: Janne Karhu Date: Sun, 12 Feb 2012 00:25:52 +0000 Subject: Fix [#29265] Particle Instance: Create Along Paths + Children inconsistent with actual children hair particles * Hair particle rotations weren't calculated properly for particle locations along a path and the "particle on path" calculations were not correct in many other ways too. * Now the particle's location along a path is interpolated directly from the cached paths if it exist. These paths are always correctly calculated. * Paths are now cached if a particle instance modifier using the particle system with the path option exists. --- source/blender/blenkernel/intern/particle.c | 297 ++++++++++++--------- source/blender/blenkernel/intern/particle_system.c | 14 + 2 files changed, 190 insertions(+), 121 deletions(-) (limited to 'source/blender') diff --git a/source/blender/blenkernel/intern/particle.c b/source/blender/blenkernel/intern/particle.c index cd3933d3c44..8bd5b55e778 100644 --- a/source/blender/blenkernel/intern/particle.c +++ b/source/blender/blenkernel/intern/particle.c @@ -1365,6 +1365,35 @@ static void do_particle_interpolation(ParticleSystem *psys, int p, ParticleData if(pind->keyed || pind->cache || point_vel) mul_v3_fl(result->vel, 1.f/invdt); } + +static void interpolate_pathcache(ParticleCacheKey *first, float t, ParticleCacheKey *result) +{ + int i=0; + ParticleCacheKey *cur = first; + + /* scale the requested time to fit the entire path even if the path is cut early */ + t *= (first+first->steps)->time; + + while(isteps && cur->time < t) + cur++; + + if(cur->time == t) + *result = *cur; + else { + float dt = (t-(cur-1)->time)/(cur->time-(cur-1)->time); + interp_v3_v3v3(result->co, (cur-1)->co, cur->co, dt); + interp_v3_v3v3(result->vel, (cur-1)->vel, cur->vel, dt); + interp_qt_qtqt(result->rot, (cur-1)->rot, cur->rot, dt); + result->time = t; + } + + /* first is actual base rotation, others are incremental from first */ + if(cur==first || cur-1==first) + copy_qt_qt(result->rot, first->rot); + else + mul_qt_qtqt(result->rot, first->rot, result->rot); +} + /************************************************/ /* Particles on a dm */ /************************************************/ @@ -2648,6 +2677,8 @@ static void psys_thread_create_path(ParticleThread *thread, struct ChildParticle /* offset the child from the parent position */ offset_child(cpa, (ParticleKey*)(key[0]+k), par_rot, (ParticleKey*)child, part->childflat, part->childrad); } + + child->time = (float)k/(float)ctx->steps; } /* apply effectors */ @@ -3009,6 +3040,8 @@ void psys_cache_paths(ParticleSimulationData *sim, float cfra) if(k==1) copy_v3_v3((ca-1)->vel, ca->vel); + + ca->time = (float)k/(float)steps; } /* First rotation is based on emitting face orientation. * This is way better than having flipping rotations resulting @@ -4013,84 +4046,105 @@ void psys_get_particle_on_path(ParticleSimulationData *sim, int p, ParticleKey * CLAMP(t, 0.0f, 1.0f); if(pparticles + p; - pind.keyed = keyed; - pind.cache = cached ? psys->pointcache : NULL; - pind.epoint = NULL; - pind.bspline = (psys->part->flag & PART_HAIR_BSPLINE); - /* pind.dm disabled in editmode means we dont get effectors taken into - * account when subdividing for instance */ - pind.dm = psys_in_edit_mode(sim->scene, psys) ? NULL : psys->hair_out_dm; - init_particle_interpolation(sim->ob, psys, pa, &pind); - do_particle_interpolation(psys, p, pa, t, &pind, state); - - if(pind.dm) { - mul_m4_v3(sim->ob->obmat, state->co); - mul_mat3_m4_v3(sim->ob->obmat, state->vel); - } - else if(!keyed && !cached && !(psys->flag & PSYS_GLOBAL_HAIR)) { - if((pa->flag & PARS_REKEY)==0) { - psys_mat_hair_to_global(sim->ob, sim->psmd->dm, part->from, pa, hairmat); - mul_m4_v3(hairmat, state->co); - mul_mat3_m4_v3(hairmat, state->vel); - - if(sim->psys->effectors && (part->flag & PART_CHILD_GUIDE)==0) { - do_guides(sim->psys->effectors, state, p, state->time); - /* TODO: proper velocity handling */ - } + /* interpolate pathcache directly if it exist */ + if(psys->pathcache) { + ParticleCacheKey result; + interpolate_pathcache(psys->pathcache[p], t, &result); + copy_v3_v3(state->co, result.co); + copy_v3_v3(state->vel, result.vel); + copy_qt_qt(state->rot, result.rot); + } + /* otherwise interpolate with other means */ + else { + pa = psys->particles + p; + + pind.keyed = keyed; + pind.cache = cached ? psys->pointcache : NULL; + pind.epoint = NULL; + pind.bspline = (psys->part->flag & PART_HAIR_BSPLINE); + /* pind.dm disabled in editmode means we dont get effectors taken into + * account when subdividing for instance */ + pind.dm = psys_in_edit_mode(sim->scene, psys) ? NULL : psys->hair_out_dm; + init_particle_interpolation(sim->ob, psys, pa, &pind); + do_particle_interpolation(psys, p, pa, t, &pind, state); + + if(pind.dm) { + mul_m4_v3(sim->ob->obmat, state->co); + mul_mat3_m4_v3(sim->ob->obmat, state->vel); + } + else if(!keyed && !cached && !(psys->flag & PSYS_GLOBAL_HAIR)) { + if((pa->flag & PARS_REKEY)==0) { + psys_mat_hair_to_global(sim->ob, sim->psmd->dm, part->from, pa, hairmat); + mul_m4_v3(hairmat, state->co); + mul_mat3_m4_v3(hairmat, state->vel); + + if(sim->psys->effectors && (part->flag & PART_CHILD_GUIDE)==0) { + do_guides(sim->psys->effectors, state, p, state->time); + /* TODO: proper velocity handling */ + } - if(psys->lattice && edit==0) - calc_latt_deform(psys->lattice, state->co,1.0f); + if(psys->lattice && edit==0) + calc_latt_deform(psys->lattice, state->co,1.0f); + } } } } else if(totchild){ //invert_m4_m4(imat,ob->obmat); - cpa=psys->child+p-totpart; + /* interpolate childcache directly if it exists */ + if(psys->childcache) { + ParticleCacheKey result; + interpolate_pathcache(psys->childcache[p-totpart], t, &result); + copy_v3_v3(state->co, result.co); + copy_v3_v3(state->vel, result.vel); + copy_qt_qt(state->rot, result.rot); + } + else { + cpa=psys->child+p-totpart; - if(state->time < 0.0f) - t = psys_get_child_time(psys, cpa, -state->time, NULL, NULL); + if(state->time < 0.0f) + t = psys_get_child_time(psys, cpa, -state->time, NULL, NULL); - if(totchild && part->childtype==PART_CHILD_FACES){ - /* part->parents could still be 0 so we can't test with totparent */ - between=1; - } - if(between){ - int w = 0; - float foffset; - - /* get parent states */ - while(w<4 && cpa->pa[w]>=0){ - keys[w].time = state->time; - psys_get_particle_on_path(sim, cpa->pa[w], keys+w, 1); - w++; + if(totchild && part->childtype==PART_CHILD_FACES){ + /* part->parents could still be 0 so we can't test with totparent */ + between=1; } + if(between){ + int w = 0; + float foffset; + + /* get parent states */ + while(w<4 && cpa->pa[w]>=0){ + keys[w].time = state->time; + psys_get_particle_on_path(sim, cpa->pa[w], keys+w, 1); + w++; + } - /* get the original coordinates (orco) for texture usage */ - cpa_num=cpa->num; + /* get the original coordinates (orco) for texture usage */ + cpa_num=cpa->num; - foffset= cpa->foffset; - cpa_fuv = cpa->fuv; - cpa_from = PART_FROM_FACE; + foffset= cpa->foffset; + cpa_fuv = cpa->fuv; + cpa_from = PART_FROM_FACE; - psys_particle_on_emitter(psmd,cpa_from,cpa_num,DMCACHE_ISCHILD,cpa->fuv,foffset,co,0,0,0,orco,0); + psys_particle_on_emitter(psmd,cpa_from,cpa_num,DMCACHE_ISCHILD,cpa->fuv,foffset,co,0,0,0,orco,0); - /* we need to save the actual root position of the child for positioning it accurately to the surface of the emitter */ - //copy_v3_v3(cpa_1st,co); + /* we need to save the actual root position of the child for positioning it accurately to the surface of the emitter */ + //copy_v3_v3(cpa_1st,co); - //mul_m4_v3(ob->obmat,cpa_1st); + //mul_m4_v3(ob->obmat,cpa_1st); - pa = psys->particles + cpa->parent; + pa = psys->particles + cpa->parent; - if(part->type == PART_HAIR) - psys_mat_hair_to_global(sim->ob, sim->psmd->dm, psys->part->from, pa, hairmat); - else - unit_m4(hairmat); + if(part->type == PART_HAIR) + psys_mat_hair_to_global(sim->ob, sim->psmd->dm, psys->part->from, pa, hairmat); + else + unit_m4(hairmat); - pa=0; - } - else{ + pa=0; + } + else{ /* get the parent state */ keys->time = state->time; psys_get_particle_on_path(sim, cpa->parent, keys,1); @@ -4114,74 +4168,75 @@ void psys_get_particle_on_path(ParticleSimulationData *sim, int p, ParticleKey * } } - /* correct child ipo timing */ -#if 0 // XXX old animation system - if((part->flag&PART_ABS_TIME)==0 && part->ipo){ - calc_ipo(part->ipo, 100.0f*t); - execute_ipo((ID *)part, part->ipo); - } -#endif // XXX old animation system + /* correct child ipo timing */ + #if 0 // XXX old animation system + if((part->flag&PART_ABS_TIME)==0 && part->ipo){ + calc_ipo(part->ipo, 100.0f*t); + execute_ipo((ID *)part, part->ipo); + } + #endif // XXX old animation system - /* get different child parameters from textures & vgroups */ - memset(&ctx, 0, sizeof(ParticleThreadContext)); - ctx.sim = *sim; - ctx.dm = psmd->dm; - ctx.ma = ma; - /* TODO: assign vertex groups */ - get_child_modifier_parameters(part, &ctx, cpa, cpa_from, cpa_num, cpa_fuv, orco, &ptex); - - if(between){ - int w=0; + /* get different child parameters from textures & vgroups */ + memset(&ctx, 0, sizeof(ParticleThreadContext)); + ctx.sim = *sim; + ctx.dm = psmd->dm; + ctx.ma = ma; + /* TODO: assign vertex groups */ + get_child_modifier_parameters(part, &ctx, cpa, cpa_from, cpa_num, cpa_fuv, orco, &ptex); + + if(between){ + int w=0; + + state->co[0] = state->co[1] = state->co[2] = 0.0f; + state->vel[0] = state->vel[1] = state->vel[2] = 0.0f; + + /* child position is the weighted sum of parent positions */ + while(w<4 && cpa->pa[w]>=0){ + state->co[0] += cpa->w[w] * keys[w].co[0]; + state->co[1] += cpa->w[w] * keys[w].co[1]; + state->co[2] += cpa->w[w] * keys[w].co[2]; + + state->vel[0] += cpa->w[w] * keys[w].vel[0]; + state->vel[1] += cpa->w[w] * keys[w].vel[1]; + state->vel[2] += cpa->w[w] * keys[w].vel[2]; + w++; + } + /* apply offset for correct positioning */ + //add_v3_v3(state->co, cpa_1st); + } + else{ + /* offset the child from the parent position */ + offset_child(cpa, keys, keys->rot, state, part->childflat, part->childrad); + } - state->co[0] = state->co[1] = state->co[2] = 0.0f; - state->vel[0] = state->vel[1] = state->vel[2] = 0.0f; + par = keys; - /* child position is the weighted sum of parent positions */ - while(w<4 && cpa->pa[w]>=0){ - state->co[0] += cpa->w[w] * keys[w].co[0]; - state->co[1] += cpa->w[w] * keys[w].co[1]; - state->co[2] += cpa->w[w] * keys[w].co[2]; - - state->vel[0] += cpa->w[w] * keys[w].vel[0]; - state->vel[1] += cpa->w[w] * keys[w].vel[1]; - state->vel[2] += cpa->w[w] * keys[w].vel[2]; - w++; - } - /* apply offset for correct positioning */ - //add_v3_v3(state->co, cpa_1st); - } - else{ - /* offset the child from the parent position */ - offset_child(cpa, keys, keys->rot, state, part->childflat, part->childrad); - } + if(vel) + copy_particle_key(&tstate, state, 1); - par = keys; + /* apply different deformations to the child path */ + do_child_modifiers(sim, &ptex, par, par->rot, cpa, orco, hairmat, state, t); - if(vel) - copy_particle_key(&tstate, state, 1); + /* try to estimate correct velocity */ + if(vel){ + ParticleKey tstate; + float length = len_v3(state->vel); - /* apply different deformations to the child path */ - do_child_modifiers(sim, &ptex, par, par->rot, cpa, orco, hairmat, state, t); - - /* try to estimate correct velocity */ - if(vel){ - ParticleKey tstate; - float length = len_v3(state->vel); - - if(t>=0.001f){ - tstate.time=t-0.001f; - psys_get_particle_on_path(sim,p,&tstate,0); - sub_v3_v3v3(state->vel,state->co,tstate.co); - normalize_v3(state->vel); - } - else{ - tstate.time=t+0.001f; - psys_get_particle_on_path(sim,p,&tstate,0); - sub_v3_v3v3(state->vel,tstate.co,state->co); - normalize_v3(state->vel); - } + if(t>=0.001f){ + tstate.time=t-0.001f; + psys_get_particle_on_path(sim,p,&tstate,0); + sub_v3_v3v3(state->vel,state->co,tstate.co); + normalize_v3(state->vel); + } + else{ + tstate.time=t+0.001f; + psys_get_particle_on_path(sim,p,&tstate,0); + sub_v3_v3v3(state->vel,tstate.co,state->co); + normalize_v3(state->vel); + } - mul_v3_fl(state->vel, length); + mul_v3_fl(state->vel, length); + } } } } diff --git a/source/blender/blenkernel/intern/particle_system.c b/source/blender/blenkernel/intern/particle_system.c index 5a64da7354e..e853c0fee19 100644 --- a/source/blender/blenkernel/intern/particle_system.c +++ b/source/blender/blenkernel/intern/particle_system.c @@ -3407,6 +3407,7 @@ static void psys_update_path_cache(ParticleSimulationData *sim, float cfra) ParticleSystem *psys = sim->psys; ParticleSettings *part = psys->part; ParticleEditSettings *pset = &sim->scene->toolsettings->particle; + Base *base; int distr=0, alloc=0, skip=0; if((psys->part->childtype && psys->totchild != get_psys_tot_child(sim->scene, psys)) || psys->recalc&PSYS_RECALC_RESET) @@ -3449,6 +3450,19 @@ static void psys_update_path_cache(ParticleSimulationData *sim, float cfra) } } + + /* particle instance modifier with "path" option need cached paths even if particle system doesn't */ + for (base = sim->scene->base.first; base; base= base->next) { + ModifierData *md = modifiers_findByType(base->object, eModifierType_ParticleInstance); + if(md) { + ParticleInstanceModifierData *pimd = (ParticleInstanceModifierData *)md; + if(pimd->flag & eParticleInstanceFlag_Path && pimd->ob == sim->ob && pimd->psys == (psys - (ParticleSystem*)sim->ob->particlesystem.first)) { + skip = 0; + break; + } + } + } + if(!skip) { psys_cache_paths(sim, cfra); -- cgit v1.2.3 From 670bde28dd2ca162bce3e465e7f0c4457c046d56 Mon Sep 17 00:00:00 2001 From: Janne Karhu Date: Sun, 12 Feb 2012 00:32:31 +0000 Subject: Fix [#29530] Changing to particle mode could crash in some cases * If a baked particle didn't have any cached keys creating an edit path for it crashed. --- source/blender/blenkernel/intern/particle.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'source/blender') diff --git a/source/blender/blenkernel/intern/particle.c b/source/blender/blenkernel/intern/particle.c index 8bd5b55e778..f0b05846670 100644 --- a/source/blender/blenkernel/intern/particle.c +++ b/source/blender/blenkernel/intern/particle.c @@ -3122,6 +3122,9 @@ void psys_cache_edit_paths(Scene *scene, Object *ob, PTCacheEdit *edit, float cf if(edit->totcached && !(point->flag & PEP_EDIT_RECALC)) continue; + if(point->totkey == 0) + continue; + ekey = point->keys; pind.keyed = 0; -- cgit v1.2.3 From 5a2454c3f8b41856a73275daba363b3e2dfa748c Mon Sep 17 00:00:00 2001 From: Janne Karhu Date: Sun, 12 Feb 2012 00:43:57 +0000 Subject: Fix [#29737] Can't edit particle hair if particle count is 0. * Hair wasn't flagged as "done" if particle count was 0 before setting particles as hair, so particle edit mode didn't work. --- source/blender/blenkernel/intern/particle_system.c | 1 + 1 file changed, 1 insertion(+) (limited to 'source/blender') diff --git a/source/blender/blenkernel/intern/particle_system.c b/source/blender/blenkernel/intern/particle_system.c index e853c0fee19..c00101c98ab 100644 --- a/source/blender/blenkernel/intern/particle_system.c +++ b/source/blender/blenkernel/intern/particle_system.c @@ -4428,6 +4428,7 @@ void particle_system_update(Scene *scene, Object *ob, ParticleSystem *psys) if(psys->totpart == 0 && part->totpart == 0) { psys_free_path_cache(psys, NULL); free_hair(ob, psys, 0); + psys->flag |= PSYS_HAIR_DONE; } /* (re-)create hair */ else if(hair_needs_recalc(psys)) { -- cgit v1.2.3 From 6bfd6c01fd226faa9583b9214e4f85f773a85c16 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Sun, 12 Feb 2012 09:04:12 +0000 Subject: Regression fix for "Show Seconds" in Sequencer. It was missed RNA property in Sequencer space which lead to issues after recent refactoring of related areas. --- source/blender/makesrna/intern/rna_space.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'source/blender') diff --git a/source/blender/makesrna/intern/rna_space.c b/source/blender/makesrna/intern/rna_space.c index 8499e2fa111..f405b98524c 100644 --- a/source/blender/makesrna/intern/rna_space.c +++ b/source/blender/makesrna/intern/rna_space.c @@ -1976,6 +1976,11 @@ static void rna_def_space_sequencer(BlenderRNA *brna) RNA_def_property_ui_text(prop, "Use Grease Pencil", "Display and edit the grease pencil freehand annotations overlay"); RNA_def_property_update(prop, NC_SPACE|ND_SPACE_SEQUENCER, NULL); + prop= RNA_def_property(srna, "show_seconds", PROP_BOOLEAN, PROP_NONE); + RNA_def_property_boolean_negative_sdna(prop, NULL, "flag", SEQ_DRAWFRAMES); + RNA_def_property_ui_text(prop, "Show Seconds", "Show timing in seconds not frames"); + RNA_def_property_update(prop, NC_SPACE|ND_SPACE_SEQUENCER, NULL); + /* grease pencil */ prop= RNA_def_property(srna, "grease_pencil", PROP_POINTER, PROP_NONE); RNA_def_property_pointer_sdna(prop, NULL, "gpd"); -- cgit v1.2.3 From 6afa4da928d5d791b0741cfbf47304ea66ad6e34 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Sun, 12 Feb 2012 11:21:35 +0000 Subject: Fix #30152: Several drag and drop of image on mesh crashes Issue was caused by making and loading editMesh in drop_named_image_invoke, which lead to freeing/changing pointers used by CustomData layers. Some of this pointers might be used by DerivedMesh, so we need to update DerivedMesh after loading EditMesh. --- source/blender/editors/mesh/mesh_data.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'source/blender') diff --git a/source/blender/editors/mesh/mesh_data.c b/source/blender/editors/mesh/mesh_data.c index b10fbaf69b7..09ae5e08d60 100644 --- a/source/blender/editors/mesh/mesh_data.c +++ b/source/blender/editors/mesh/mesh_data.c @@ -403,6 +403,10 @@ static int drop_named_image_invoke(bContext *C, wmOperator *op, wmEvent *event) free_editMesh(me->edit_mesh); MEM_freeN(me->edit_mesh); me->edit_mesh= NULL; + + /* load_editMesh free's pointers used by CustomData layers which might be used by DerivedMesh too, + * so signal to re-create DerivedMesh here (sergey) */ + DAG_id_tag_update(&me->id, 0); } /* dummie drop support; ensure view shows a result :) */ -- cgit v1.2.3 From 6e38297b82aca342964c5a540efdf190aa2e5e8e Mon Sep 17 00:00:00 2001 From: Antony Riakiotakis Date: Sun, 12 Feb 2012 11:27:51 +0000 Subject: Fix: Avoid freeing frect, it always points to a buffer that will be freed later, like srgb_frect or ftilerect on or must not be freed, like Imbuf array itself. --- source/blender/gpu/intern/gpu_draw.c | 3 --- 1 file changed, 3 deletions(-) (limited to 'source/blender') diff --git a/source/blender/gpu/intern/gpu_draw.c b/source/blender/gpu/intern/gpu_draw.c index 59802f2cf58..926faeb417e 100644 --- a/source/blender/gpu/intern/gpu_draw.c +++ b/source/blender/gpu/intern/gpu_draw.c @@ -598,9 +598,6 @@ int GPU_verify_image(Image *ima, ImageUser *iuser, int tftile, int compare, int if(use_high_bit_depth) { fscalerect= MEM_mallocN(rectw*recth*sizeof(*fscalerect)*4, "fscalerect"); gluScaleImage(GL_RGBA, tpx, tpy, GL_FLOAT, frect, rectw, recth, GL_FLOAT, fscalerect); - /* frect will refer to ibuf->rect_float when not color converting. We don't want to free that */ - if(do_color_management) - MEM_freeN(frect); frect = fscalerect; } -- cgit v1.2.3 From 3e134b65afb1e7063261bbd99df8ad940c59150e Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Sun, 12 Feb 2012 11:42:17 +0000 Subject: Fix #30151: Allow Negative Frames does not affect arrow keys Patch by Tobias Johansson, thanks! --- source/blender/editors/screen/screen_ops.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'source/blender') diff --git a/source/blender/editors/screen/screen_ops.c b/source/blender/editors/screen/screen_ops.c index 0d724dc1b28..2c652df93a0 100644 --- a/source/blender/editors/screen/screen_ops.c +++ b/source/blender/editors/screen/screen_ops.c @@ -44,6 +44,7 @@ #include "DNA_curve_types.h" #include "DNA_scene_types.h" #include "DNA_meta_types.h" +#include "DNA_userdef_types.h" #include "BKE_context.h" #include "BKE_customdata.h" @@ -1821,8 +1822,9 @@ static int frame_offset_exec(bContext *C, wmOperator *op) delta = RNA_int_get(op->ptr, "delta"); - scene->r.cfra += delta; - scene->r.subframe = 0.f; + CFRA += delta; + FRAMENUMBER_MIN_CLAMP(CFRA); + SUBFRA = 0.f; sound_seek_scene(bmain, scene); -- cgit v1.2.3 From 58475ba981b11c68b2667aa561de7a73fb1fa1ef Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Sun, 12 Feb 2012 12:07:02 +0000 Subject: Fix #30110: Outliner view: restriction icons not updating when toggling from Groups view Fixed by using proper button type. --- source/blender/editors/space_outliner/outliner_draw.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source/blender') diff --git a/source/blender/editors/space_outliner/outliner_draw.c b/source/blender/editors/space_outliner/outliner_draw.c index eaa04a1e09e..942e1024c05 100644 --- a/source/blender/editors/space_outliner/outliner_draw.c +++ b/source/blender/editors/space_outliner/outliner_draw.c @@ -441,15 +441,15 @@ static void outliner_draw_restrictbuts(uiBlock *block, Scene *scene, ARegion *ar uiBlockSetEmboss(block, UI_EMBOSSN); restrict_bool= group_restrict_flag(gr, OB_RESTRICT_VIEW); - bt = uiDefIconBut(block, BUT, 0, restrict_bool ? ICON_RESTRICT_VIEW_ON : ICON_RESTRICT_VIEW_OFF, (int)ar->v2d.cur.xmax-OL_TOG_RESTRICT_VIEWX, (int)te->ys, UI_UNIT_X-1, UI_UNIT_Y-1, NULL, 0, 0, 0, 0, "Restrict/Allow visibility in the 3D View"); + bt = uiDefIconBut(block, ICONTOG, 0, restrict_bool ? ICON_RESTRICT_VIEW_ON : ICON_RESTRICT_VIEW_OFF, (int)ar->v2d.cur.xmax-OL_TOG_RESTRICT_VIEWX, (int)te->ys, UI_UNIT_X-1, UI_UNIT_Y-1, NULL, 0, 0, 0, 0, "Restrict/Allow visibility in the 3D View"); uiButSetFunc(bt, restrictbutton_gr_restrict_view, scene, gr); restrict_bool= group_restrict_flag(gr, OB_RESTRICT_SELECT); - bt = uiDefIconBut(block, BUT, 0, restrict_bool ? ICON_RESTRICT_SELECT_ON : ICON_RESTRICT_SELECT_OFF, (int)ar->v2d.cur.xmax-OL_TOG_RESTRICT_SELECTX, (int)te->ys, UI_UNIT_X-1, UI_UNIT_Y-1, NULL, 0, 0, 0, 0, "Restrict/Allow selection in the 3D View"); + bt = uiDefIconBut(block, ICONTOG, 0, restrict_bool ? ICON_RESTRICT_SELECT_ON : ICON_RESTRICT_SELECT_OFF, (int)ar->v2d.cur.xmax-OL_TOG_RESTRICT_SELECTX, (int)te->ys, UI_UNIT_X-1, UI_UNIT_Y-1, NULL, 0, 0, 0, 0, "Restrict/Allow selection in the 3D View"); uiButSetFunc(bt, restrictbutton_gr_restrict_select, scene, gr); restrict_bool= group_restrict_flag(gr, OB_RESTRICT_RENDER); - bt = uiDefIconBut(block, BUT, 0, restrict_bool ? ICON_RESTRICT_RENDER_ON : ICON_RESTRICT_RENDER_OFF, (int)ar->v2d.cur.xmax-OL_TOG_RESTRICT_RENDERX, (int)te->ys, UI_UNIT_X-1, UI_UNIT_Y-1, NULL, 0, 0, 0, 0, "Restrict/Allow renderability"); + bt = uiDefIconBut(block, ICONTOG, 0, restrict_bool ? ICON_RESTRICT_RENDER_ON : ICON_RESTRICT_RENDER_OFF, (int)ar->v2d.cur.xmax-OL_TOG_RESTRICT_RENDERX, (int)te->ys, UI_UNIT_X-1, UI_UNIT_Y-1, NULL, 0, 0, 0, 0, "Restrict/Allow renderability"); uiButSetFunc(bt, restrictbutton_gr_restrict_render, scene, gr); uiBlockSetEmboss(block, UI_EMBOSS); -- cgit v1.2.3 From c61e03c229d4043891ac6c0e5344263fe8926489 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juha=20M=C3=A4ki-Kanto?= Date: Sun, 12 Feb 2012 15:30:07 +0000 Subject: collada export: Don't write parentinverse if ob->parent is NULL --- source/blender/collada/TransformWriter.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'source/blender') diff --git a/source/blender/collada/TransformWriter.cpp b/source/blender/collada/TransformWriter.cpp index a2bca6733e1..c806cd48587 100644 --- a/source/blender/collada/TransformWriter.cpp +++ b/source/blender/collada/TransformWriter.cpp @@ -103,8 +103,7 @@ void TransformWriter::add_node_transform_ob(COLLADASW::Node& node, Object *ob) if(ob->parentinv[i%4][i/4] != f) add_parinv = true; } - // Eat this 3ds Max et friends - if(add_parinv) + if(add_parinv && ob->parent) { double dmat[4][4]; UnitConverter converter; -- cgit v1.2.3 From 39daef28a1eb3c42db886df229851c860054bc7e Mon Sep 17 00:00:00 2001 From: Janne Karhu Date: Sun, 12 Feb 2012 16:47:03 +0000 Subject: Bug fix: Explode modifier created invalid faces if "unborn", "alive" or "dead" setting was unchecked * Exploded faces that were meant to be hidden were still created with invalid vertices (0,0,0,0). * In normal cases this went unnoticed, but for example edge split modifier crashed when it encountered these faces. --- source/blender/modifiers/intern/MOD_explode.c | 29 +++++++++++++++++++-------- 1 file changed, 21 insertions(+), 8 deletions(-) (limited to 'source/blender') diff --git a/source/blender/modifiers/intern/MOD_explode.c b/source/blender/modifiers/intern/MOD_explode.c index b18be28ac7f..d00d76f6f6b 100644 --- a/source/blender/modifiers/intern/MOD_explode.c +++ b/source/blender/modifiers/intern/MOD_explode.c @@ -789,8 +789,8 @@ static DerivedMesh * explodeMesh(ExplodeModifierData *emd, float cfra; /* float timestep; */ int *facepa=emd->facepa; - int totdup=0,totvert=0,totface=0,totpart=0; - int i, v; + int totdup=0,totvert=0,totface=0,totpart=0,delface=0; + int i, v, u; unsigned int ed_v1, ed_v2, mindex=0; MTFace *mtface = NULL, *mtf; @@ -812,6 +812,18 @@ static DerivedMesh * explodeMesh(ExplodeModifierData *emd, vertpahash= BLI_edgehash_new(); for (i=0; ialive==PARS_UNBORN && (emd->flag&eExplodeFlag_Unborn)==0) + || (pa->alive==PARS_ALIVE && (emd->flag&eExplodeFlag_Alive)==0) + || (pa->alive==PARS_DEAD && (emd->flag&eExplodeFlag_Dead)==0)) { + delface++; + continue; + } + } + /* do mindex + totvert to ensure the vertex index to be the first * with BLI_edgehashIterator_getKey */ if(facepa[i]==totpart || cfra < (pars+facepa[i])->time) @@ -838,7 +850,7 @@ static DerivedMesh * explodeMesh(ExplodeModifierData *emd, BLI_edgehashIterator_free(ehi); /* the final duplicated vertices */ - explode= CDDM_from_template(dm, totdup, 0,totface); + explode= CDDM_from_template(dm, totdup, 0,totface-delface); mtface = CustomData_get_layer_named(&explode->faceData, CD_MTFACE, emd->uvname); /*dupvert= CDDM_get_verts(explode);*/ @@ -893,7 +905,7 @@ static DerivedMesh * explodeMesh(ExplodeModifierData *emd, BLI_edgehashIterator_free(ehi); /*map new vertices to faces*/ - for (i=0; igetFace(dm,i,&source); - mf=CDDM_get_face(explode,i); + mf=CDDM_get_face(explode,u); orig_v4 = source.v4; @@ -922,7 +934,7 @@ static DerivedMesh * explodeMesh(ExplodeModifierData *emd, if(source.v4) source.v4 = edgecut_get(vertpahash, source.v4, mindex); - DM_copy_face_data(dm,explode,i,i,1); + DM_copy_face_data(dm,explode,i,u,1); *mf = source; @@ -932,13 +944,14 @@ static DerivedMesh * explodeMesh(ExplodeModifierData *emd, /* Clamp to this range to avoid flipping to the other side of the coordinates. */ CLAMP(age, 0.001f, 0.999f); - mtf = mtface + i; + mtf = mtface + u; mtf->uv[0][0] = mtf->uv[1][0] = mtf->uv[2][0] = mtf->uv[3][0] = age; mtf->uv[0][1] = mtf->uv[1][1] = mtf->uv[2][1] = mtf->uv[3][1] = 0.5f; } - test_index_face(mf, &explode->faceData, i, (orig_v4 ? 4 : 3)); + test_index_face(mf, &explode->faceData, u, (orig_v4 ? 4 : 3)); + u++; } /* cleanup */ -- cgit v1.2.3 From 875f616ab8c0856bef287d1041141ee2f4d986aa Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Sun, 12 Feb 2012 18:57:05 +0000 Subject: Fix for outliner notifiers for inserting keyframes on visibility/selectivity/renderability flags and toggling renderability from shortcut. --- source/blender/editors/space_outliner/outliner_edit.c | 2 +- source/blender/editors/space_outliner/space_outliner.c | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) (limited to 'source/blender') diff --git a/source/blender/editors/space_outliner/outliner_edit.c b/source/blender/editors/space_outliner/outliner_edit.c index 562cbf45e86..eb910b0b0b5 100644 --- a/source/blender/editors/space_outliner/outliner_edit.c +++ b/source/blender/editors/space_outliner/outliner_edit.c @@ -500,7 +500,7 @@ static int outliner_toggle_renderability_exec(bContext *C, wmOperator *UNUSED(op outliner_do_object_operation(C, scene, soops, &soops->tree, object_toggle_renderability_cb); - ED_region_tag_redraw(ar); + WM_event_add_notifier(C, NC_SCENE|ND_OB_RENDER, scene); return OPERATOR_FINISHED; } diff --git a/source/blender/editors/space_outliner/space_outliner.c b/source/blender/editors/space_outliner/space_outliner.c index a040c63b2ab..ebbe28e62fa 100644 --- a/source/blender/editors/space_outliner/space_outliner.c +++ b/source/blender/editors/space_outliner/space_outliner.c @@ -265,6 +265,7 @@ static void outliner_main_area_listener(ARegion *ar, wmNotifier *wmn) case NC_ANIMATION: switch(wmn->data) { case ND_NLA_ACTCHANGE: + case ND_KEYFRAME: ED_region_tag_redraw(ar); break; case ND_ANIMCHAN: -- cgit v1.2.3 From 9c2d3a8ed19fede220195172b51f0b6dee7d90c8 Mon Sep 17 00:00:00 2001 From: Thomas Dinges Date: Sun, 12 Feb 2012 19:57:47 +0000 Subject: 2.6 UI Modifier Icons: * New Ocean Icon, created by Leon Cheung. Thanks! Approved by Lukas and myself. * New Warp Icon, created by "Zafio" Blender artists Thread where the Icons come from: http://blenderartists.org/forum/showthread.php?243354-Call-for-Modifier-Icons! --- .../blender/editors/datafiles/blender_icons.png.c | 13681 ++++++++++--------- source/blender/editors/include/UI_icons.h | 4 +- .../blender/editors/space_outliner/outliner_draw.c | 4 +- source/blender/makesrna/intern/rna_modifier.c | 8 +- 4 files changed, 6869 insertions(+), 6828 deletions(-) (limited to 'source/blender') diff --git a/source/blender/editors/datafiles/blender_icons.png.c b/source/blender/editors/datafiles/blender_icons.png.c index 0713cd9253e..d7582a118ca 100644 --- a/source/blender/editors/datafiles/blender_icons.png.c +++ b/source/blender/editors/datafiles/blender_icons.png.c @@ -1,6826 +1,6865 @@ /* DataToC output of file */ -int datatoc_blender_icons_png_size= 218213; +int datatoc_blender_icons_png_size= 219467; char datatoc_blender_icons_png[]= { -137, 80, 78, 71, 13, - 10, 26, 10, 0, 0, 0, 13, 73, 72, 68, 82, 0, 0, 2, 90, 0, 0, 2,128, 8, 6, 0, 0, 0, 68,254,214,163, 0, 0, 10, 79, -105, 67, 67, 80, 80,104,111,116,111,115,104,111,112, 32, 73, 67, 67, 32,112,114,111,102,105,108,101, 0, 0,120,218,157, 83,103, - 84, 83,233, 22, 61,247,222,244, 66, 75,136,128,148, 75,111, 82, 21, 8, 32, 82, 66,139,128, 20,145, 38, 42, 33, 9, 16, 74,136, - 33,161,217, 21, 81,193, 17, 69, 69, 4, 27,200,160,136, 3,142,142,128,140, 21, 81, 44, 12,138, 10,216, 7,228, 33,162,142,131, -163,136,138,202,251,225,123,163,107,214,188,247,230,205,254,181,215, 62,231,172,243,157,179,207, 7,192, 8, 12,150, 72, 51, 81, - 53,128, 12,169, 66, 30, 17,224,131,199,196,198,225,228, 46, 64,129, 10, 36,112, 0, 16, 8,179,100, 33,115,253, 35, 1, 0,248, -126, 60, 60, 43, 34,192, 7,190, 0, 1,120,211, 11, 8, 0,192, 77,155,192, 48, 28,135,255, 15,234, 66,153, 92, 1,128,132, 1, -192,116,145, 56, 75, 8,128, 20, 0, 64,122,142, 66,166, 0, 64, 70, 1,128,157,152, 38, 83, 0,160, 4, 0, 96,203, 99, 98,227, - 0, 80, 45, 0, 96, 39,127,230,211, 0,128,157,248,153,123, 1, 0, 91,148, 33, 21, 1,160,145, 0, 32, 19,101,136, 68, 0,104, - 59, 0,172,207, 86,138, 69, 0, 88, 48, 0, 20,102, 75,196, 57, 0,216, 45, 0, 48, 73, 87,102, 72, 0,176,183, 0,192,206, 16, - 11,178, 0, 8, 12, 0, 48, 81,136,133, 41, 0, 4,123, 0, 96,200, 35, 35,120, 0,132,153, 0, 20, 70,242, 87, 60,241, 43,174, - 16,231, 42, 0, 0,120,153,178, 60,185, 36, 57, 69,129, 91, 8, 45,113, 7, 87, 87, 46, 30, 40,206, 73, 23, 43, 20, 54, 97, 2, - 97,154, 64, 46,194,121,153, 25, 50,129, 52, 15,224,243,204, 0, 0,160,145, 21, 17,224,131,243,253,120,206, 14,174,206,206, 54, -142,182, 14, 95, 45,234,191, 6,255, 34, 98, 98,227,254,229,207,171,112, 64, 0, 0,225,116,126,209,254, 44, 47,179, 26,128, 59, - 6,128,109,254,162, 37,238, 4,104, 94, 11,160,117,247,139,102,178, 15, 64,181, 0,160,233,218, 87,243,112,248,126, 60, 60, 69, -161,144,185,217,217,229,228,228,216, 74,196, 66, 91, 97,202, 87,125,254,103,194, 95,192, 87,253,108,249,126, 60,252,247,245,224, -190,226, 36,129, 50, 93,129, 71, 4,248,224,194,204,244, 76,165, 28,207,146, 9,132, 98,220,230,143, 71,252,183, 11,255,252, 29, -211, 34,196, 73, 98,185, 88, 42, 20,227, 81, 18,113,142, 68,154,140,243, 50,165, 34,137, 66,146, 41,197, 37,210,255,100,226,223, - 44,251, 3, 62,223, 53, 0,176,106, 62, 1,123,145, 45,168, 93, 99, 3,246, 75, 39, 16, 88,116,192,226,247, 0, 0,242,187,111, -193,212, 40, 8, 3,128,104,131,225,207,119,255,239, 63,253, 71,160, 37, 0,128,102, 73,146,113, 0, 0, 94, 68, 36, 46, 84,202, -179, 63,199, 8, 0, 0, 68,160,129, 42,176, 65, 27,244,193, 24, 44,192, 6, 28,193, 5,220,193, 11,252, 96, 54,132, 66, 36,196, -194, 66, 16, 66, 10,100,128, 28,114, 96, 41,172,130, 66, 40,134,205,176, 29, 42, 96, 47,212, 64, 29, 52,192, 81,104,134,147,112, - 14, 46,194, 85,184, 14, 61,112, 15,250, 97, 8,158,193, 40,188,129, 9, 4, 65,200, 8, 19, 97, 33,218,136, 1, 98,138, 88, 35, -142, 8, 23,153,133,248, 33,193, 72, 4, 18,139, 36, 32,201,136, 20, 81, 34, 75,145, 53, 72, 49, 82,138, 84, 32, 85, 72, 29,242, - 61,114, 2, 57,135, 92, 70,186,145, 59,200, 0, 50,130,252,134,188, 71, 49,148,129,178, 81, 61,212, 12,181, 67,185,168, 55, 26, -132, 70,162, 11,208,100,116, 49,154,143, 22,160,155,208,114,180, 26, 61,140, 54,161,231,208,171,104, 15,218,143, 62, 67,199, 48, -192,232, 24, 7, 51,196,108, 48, 46,198,195, 66,177, 56, 44, 9,147, 99,203,177, 34,172, 12,171,198, 26,176, 86,172, 3,187,137, -245, 99,207,177,119, 4, 18,129, 69,192, 9, 54, 4,119, 66, 32, 97, 30, 65, 72, 88, 76, 88, 78,216, 72,168, 32, 28, 36, 52, 17, -218, 9, 55, 9, 3,132, 81,194, 39, 34,147,168, 75,180, 38,186, 17,249,196, 24, 98, 50, 49,135, 88, 72, 44, 35,214, 18,143, 19, - 47, 16,123,136, 67,196, 55, 36, 18,137, 67, 50, 39,185,144, 2, 73,177,164, 84,210, 18,210, 70,210,110, 82, 35,233, 44,169,155, - 52, 72, 26, 35,147,201,218,100,107,178, 7, 57,148, 44, 32, 43,200,133,228,157,228,195,228, 51,228, 27,228, 33,242, 91, 10,157, - 98, 64,113,164,248, 83,226, 40, 82,202,106, 74, 25,229, 16,229, 52,229, 6,101,152, 50, 65, 85,163,154, 82,221,168,161, 84, 17, - 53,143, 90, 66,173,161,182, 82,175, 81,135,168, 19, 52,117,154, 57,205,131, 22, 73, 75,165,173,162,149,211, 26,104, 23,104,247, -105,175,232,116,186, 17,221,149, 30, 78,151,208, 87,210,203,233, 71,232,151,232, 3,244,119, 12, 13,134, 21,131,199,136,103, 40, - 25,155, 24, 7, 24,103, 25,119, 24,175,152, 76,166, 25,211,139, 25,199, 84, 48, 55, 49,235,152,231,153, 15,153,111, 85, 88, 42, -182, 42,124, 21,145,202, 10,149, 74,149, 38,149, 27, 42, 47, 84,169,170,166,170,222,170, 11, 85,243, 85,203, 84,143,169, 94, 83, -125,174, 70, 85, 51, 83,227,169, 9,212,150,171, 85,170,157, 80,235, 83, 27, 83,103,169, 59,168,135,170,103,168,111, 84, 63,164, -126, 89,253,137, 6, 89,195, 76,195, 79, 67,164, 81,160,177, 95,227,188,198, 32, 11, 99, 25,179,120, 44, 33,107, 13,171,134,117, -129, 53,196, 38,177,205,217,124,118, 42,187,152,253, 29,187,139, 61,170,169,161, 57, 67, 51, 74, 51, 87,179, 82,243,148,102, 63, - 7,227,152,113,248,156,116, 78, 9,231, 40,167,151,243,126,138,222, 20,239, 41,226, 41, 27,166, 52, 76,185, 49,101, 92,107,170, -150,151,150, 88,171, 72,171, 81,171, 71,235,189, 54,174,237,167,157,166,189, 69,187, 89,251,129, 14, 65,199, 74, 39, 92, 39, 71, -103,143,206, 5,157,231, 83,217, 83,221,167, 10,167, 22, 77, 61, 58,245,174, 46,170,107,165, 27,161,187, 68,119,191,110,167,238, -152,158,190, 94,128,158, 76,111,167,222,121,189,231,250, 28,125, 47,253, 84,253,109,250,167,245, 71, 12, 88, 6,179, 12, 36, 6, -219, 12,206, 24, 60,197, 53,113,111, 60, 29, 47,199,219,241, 81, 67, 93,195, 64, 67,165, 97,149, 97,151,225,132,145,185,209, 60, -163,213, 70,141, 70, 15,140,105,198, 92,227, 36,227,109,198,109,198,163, 38, 6, 38, 33, 38, 75, 77,234, 77,238,154, 82, 77,185, -166, 41,166, 59, 76, 59, 76,199,205,204,205,162,205,214,153, 53,155, 61, 49,215, 50,231,155,231,155,215,155,223,183, 96, 90,120, - 90, 44,182,168,182,184,101, 73,178,228, 90,166, 89,238,182,188,110,133, 90, 57, 89,165, 88, 85, 90, 93,179, 70,173,157,173, 37, -214,187,173,187,167, 17,167,185, 78,147, 78,171,158,214,103,195,176,241,182,201,182,169,183, 25,176,229,216, 6,219,174,182,109, -182,125, 97,103, 98, 23,103,183,197,174,195,238,147,189,147,125,186,125,141,253, 61, 7, 13,135,217, 14,171, 29, 90, 29,126,115, -180,114, 20, 58, 86, 58,222,154,206,156,238, 63,125,197,244,150,233, 47,103, 88,207, 16,207,216, 51,227,182, 19,203, 41,196,105, -157, 83,155,211, 71,103, 23,103,185,115,131,243,136,139,137, 75,130,203, 46,151, 62, 46,155, 27,198,221,200,189,228, 74,116,245, -113, 93,225,122,210,245,157,155,179,155,194,237,168,219,175,238, 54,238,105,238,135,220,159,204, 52,159, 41,158, 89, 51,115,208, -195,200, 67,224, 81,229,209, 63, 11,159,149, 48,107,223,172,126, 79, 67, 79,129,103,181,231, 35, 47, 99, 47,145, 87,173,215,176, -183,165,119,170,247, 97,239, 23, 62,246, 62,114,159,227, 62,227, 60, 55,222, 50,222, 89, 95,204, 55,192,183,200,183,203, 79,195, -111,158, 95,133,223, 67,127, 35,255,100,255,122,255,209, 0,167,128, 37, 1,103, 3,137,129, 65,129, 91, 2,251,248,122,124, 33, -191,142, 63, 58,219,101,246,178,217,237, 65,140,160,185, 65, 21, 65,143,130,173,130,229,193,173, 33,104,200,236,144,173, 33,247, -231,152,206,145,206,105, 14,133, 80,126,232,214,208, 7, 97,230, 97,139,195,126, 12, 39,133,135,133, 87,134, 63,142,112,136, 88, - 26,209, 49,151, 53,119,209,220, 67,115,223, 68,250, 68,150, 68,222,155,103, 49, 79, 57,175, 45, 74, 53, 42, 62,170, 46,106, 60, -218, 55,186, 52,186, 63,198, 46,102, 89,204,213, 88,157, 88, 73,108, 75, 28, 57, 46, 42,174, 54,110,108,190,223,252,237,243,135, -226,157,226, 11,227,123, 23,152, 47,200, 93,112,121,161,206,194,244,133,167, 22,169, 46, 18, 44, 58,150, 64, 76,136, 78, 56,148, -240, 65, 16, 42,168, 22,140, 37,242, 19,119, 37,142, 10,121,194, 29,194,103, 34, 47,209, 54,209,136,216, 67, 92, 42, 30, 78,242, - 72, 42, 77,122,146,236,145,188, 53,121, 36,197, 51,165, 44,229,185,132, 39,169,144,188, 76, 13, 76,221,155, 58,158, 22,154,118, - 32,109, 50, 61, 58,189, 49,131,146,145,144,113, 66,170, 33, 77,147,182,103,234,103,230,102,118,203,172,101,133,178,254,197,110, -139,183, 47, 30,149, 7,201,107,179,144,172, 5, 89, 45, 10,182, 66,166,232, 84, 90, 40,215, 42, 7,178,103,101, 87,102,191,205, -137,202, 57,150,171,158, 43,205,237,204,179,202,219,144, 55,156,239,159,255,237, 18,194, 18,225,146,182,165,134, 75, 87, 45, 29, - 88,230,189,172,106, 57,178, 60,113,121,219, 10,227, 21, 5, 43,134, 86, 6,172, 60,184,138,182, 42,109,213, 79,171,237, 87,151, -174,126,189, 38,122, 77,107,129, 94,193,202,130,193,181, 1,107,235, 11, 85, 10,229,133,125,235,220,215,237, 93, 79, 88, 47, 89, -223,181, 97,250,134,157, 27, 62, 21,137,138,174, 20,219, 23,151, 21,127,216, 40,220,120,229, 27,135,111,202,191,153,220,148,180, -169,171,196,185,100,207,102,210,102,233,230,222, 45,158, 91, 14,150,170,151,230,151, 14,110, 13,217,218,180, 13,223, 86,180,237, -245,246, 69,219, 47,151,205, 40,219,187,131,182, 67,185,163,191, 60,184,188,101,167,201,206,205, 59, 63, 84,164, 84,244, 84,250, - 84, 54,238,210,221,181, 97,215,248,110,209,238, 27,123,188,246, 52,236,213,219, 91,188,247,253, 62,201,190,219, 85, 1, 85, 77, -213,102,213,101,251, 73,251,179,247, 63,174,137,170,233,248,150,251,109, 93,173, 78,109,113,237,199, 3,210, 3,253, 7, 35, 14, -182,215,185,212,213, 29,210, 61, 84, 82,143,214, 43,235, 71, 14,199, 31,190,254,157,239,119, 45, 13, 54, 13, 85,141,156,198,226, - 35,112, 68,121,228,233,247, 9,223,247, 30, 13, 58,218,118,140,123,172,225, 7,211, 31,118, 29,103, 29, 47,106, 66,154,242,154, - 70,155, 83,154,251, 91, 98, 91,186, 79,204, 62,209,214,234,222,122,252, 71,219, 31, 15,156, 52, 60, 89,121, 74,243, 84,201,105, -218,233,130,211,147,103,242,207,140,157,149,157,125,126, 46,249,220, 96,219,162,182,123,231, 99,206,223,106, 15,111,239,186, 16, -116,225,210, 69,255,139,231, 59,188, 59,206, 92,242,184,116,242,178,219,229, 19, 87,184, 87,154,175, 58, 95,109,234,116,234, 60, -254,147,211, 79,199,187,156,187,154,174,185, 92,107,185,238,122,189,181,123,102,247,233, 27,158, 55,206,221,244,189,121,241, 22, -255,214,213,158, 57, 61,221,189,243,122,111,247,197,247,245,223, 22,221,126,114, 39,253,206,203,187,217,119, 39,238,173,188, 79, -188, 95,244, 64,237, 65,217, 67,221,135,213, 63, 91,254,220,216,239,220,127,106,192,119,160,243,209,220, 71,247, 6,133,131,207, -254,145,245,143, 15, 67, 5,143,153,143,203,134, 13,134,235,158, 56, 62, 57, 57,226, 63,114,253,233,252,167, 67,207,100,207, 38, -158, 23,254,162,254,203,174, 23, 22, 47,126,248,213,235,215,206,209,152,209,161,151,242,151,147,191,109,124,165,253,234,192,235, - 25,175,219,198,194,198, 30,190,201,120, 51, 49, 94,244, 86,251,237,193,119,220,119, 29,239,163,223, 15, 79,228,124, 32,127, 40, -255,104,249,177,245, 83,208,167,251,147, 25,147,147,255, 4, 3,152,243,252, 99, 51, 45,219, 0, 0, 0, 6, 98, 75, 71, 68, 0, -255, 0,255, 0,255,160,189,167,147, 0, 0, 0, 9,112, 72, 89,115, 0, 0, 13,213, 0, 0, 13,213, 1, 61,214, 88,241, 0, 0, - 0, 7,116, 73, 77, 69, 7,219, 12, 30, 22, 40, 19, 0, 83,187, 87, 0, 0, 32, 0, 73, 68, 65, 84,120,218,236, 93,119,120, 20, -213,226, 61, 51, 59,179,187,217,146, 77, 35, 61,144, 66, 9, 96, 0, 67, 81,130, 84, 65, 80,140,138, 10, 86,132,167,207,103,197, -134, 5, 84, 68, 68, 32, 54, 64,240, 39,242,208,167,128,160,128, 5, 4,164, 68, 74,232, 29,233, 9,144, 4, 18, 66, 58,201, 38, -219,203,220,223, 31,217, 89, 55,203,182, 64, 98,129,123,190,111,190,221,157,157, 57,115,239,157,123,239,156, 57,183, 1, 20, 20, - 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20,215, 52, 86,175, 94, 77,154,112,248,144, 64, 57, 29,219,128,191, - 59,103, 11,198,157, 52, 35,231, 0, 7,231,187,255,144,112, 14,248,187,114,138,241,109, 2,239,144,166,228,163,230, 74, 79,151, -112,146,230, 14,103, 75,113, 54, 87, 57,242, 16, 78,210, 2,247,253,221,127, 72, 56, 7,252,221, 56,221,243, 79,128,188, 77,226, - 12, 48, 79, 53, 53,156,164,185,195,217, 82,156, 87, 91,142,124,132,147, 92,109, 94,242,114,239,223,197,117, 4,174, 5, 69, 86, -192,200,204,204,100, 92,248,153,191, 43,167,107, 58,136,252,205, 25,214,102,196,150,230,230,116, 75,207,230,194,187,153,153,153, -204,234,213,171,183, 2, 24,208,156,113,111,142,251,238, 22,215,102,225,189, 2,145,213, 36,206,230,202,247, 45,205,217, 92,101, -201,157,179, 57,242,189,167,251,222,130,247,168,185,194,217, 44,101,169, 37,242,188,135,252,115,213,188,238,156,205, 81,150,220, - 57,155, 35,223,255, 25,156,205, 81,150, 60,113, 54, 71,190,247,118,239,175, 55,131,138,253,139, 5,129,123, 1, 31,248,119, 22, - 68, 45, 37, 54,155,224,192,252,229,156,205,124,143,222,117,112, 54,231,219,205,192,230,186, 71, 45,145,223, 93, 57,155,139,223, -157,167, 57,238,147, 39,206,171, 13,175,151,112, 54,123,220,175, 54,223,255, 89,156,205,124,143,154,165, 44,185,113, 14,108,230, -151,129,129, 46,191,223,109, 78,206,230, 42, 75, 30,194,121,213,247,201, 19,231,213,134,215, 75, 56,155, 61,238,205,241, 12,105, - 41,222,107, 26, 45,213,124,214,220,156, 77,228,190,166, 56,155,216, 60, 51,164, 5,238,253, 95, 26,206,230,228,116, 15, 99,115, - 54,247,180,100, 56,155,147,179, 9, 97,189,230, 56,255,105,247,253,239,152,158,222,248,174,166, 89,202,155, 59,218, 18,225,108, - 78,206, 0,185,175, 9,206,171,184,247,215, 28,184,191, 75, 64,196,132,111,230, 55, 19, 52,179, 3,211,146,194,181, 57,195, 57, -176, 37, 28,194, 22, 64,179,135,211,241,166, 60,185, 5,226,254, 79, 73, 83, 90,150,104, 89,250,219,149, 37,183, 60, 57,176, 25, -157,162,102,117,158,221, 57,155,227, 26,174, 28,205,149, 71, 91, 58,238,205, 89,150, 90,226,222, 83, 92,133, 11, 65, 57, 41, 39, -229,164,156,148,147,114, 82,206,235,150,243,154, 4, 75,147,128,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130, -226, 31, 5,175,237,187,113,113,113,171,149, 74,101, 59,111,255,235,116,186,139, 23, 47, 94, 28, 68,147,240,175, 3,189, 71, 20, -255, 32,176,248,195, 65, 23, 0, 16,199, 70, 65, 65, 65,113, 77,195,107,103,120,185, 92,158,114,242,228,201, 14,130, 32,192,110, -183,195,102,179, 57, 63,205,102, 51,250,247,239,223,228,142,244,209,209,209, 57, 18,137, 36,169, 41,231,216,237,246,243,101,101, -101,125,125, 28,178, 19, 64, 10,195,252,161, 25,197,239,222, 62, 1,148, 88,173,214,238,190, 56, 25,134, 73,113,231,243,194, 37, -126,247,201, 25, 18, 18,178,159,227,184, 4, 79, 92,222,190, 11,130,144, 95, 81, 81,209,231,207,188, 71,215, 51,162,163,163,115, - 56,142,107,114,254, 44, 45, 45,245,154, 63, 99, 99, 99, 15,177, 44, 27,215, 4, 74,137, 32, 8,185, 23, 47, 94,236,235, 67,136, -236, 4,144,226,243, 13,202, 45, 63, 49, 12, 83,108,183,219,123,250, 43, 71,190,184, 60,228, 81,127,156, 78,145,197,113, 92, 86, - 84, 84,212, 51,122,189,222, 8,128, 72, 36, 18,226, 18, 54, 0,128,205,102,171,168,169,169,233, 66,115, 34, 5, 5,197,117, 33, -180, 4, 65, 96, 77, 38, 19,242,242,242, 64,136,199,250,222,126, 5,215,235,112,224,183,141, 81,193, 81,209,176, 89, 44, 80,181, -138,116,114,151,157, 56, 6,155,213, 2,155,217,140, 54,189,122,139, 97, 64,231,206,157, 37,126, 56, 19, 62,248,224,131,168,224, -224, 96, 24,141, 70, 24,141, 70,152, 76, 38, 24,141, 70,152,205,102,152,205,102, 88, 44, 22, 88, 44, 22,216,108, 54,152, 76, 38, -100,103,103,219,173, 86,171, 79,206,105,211,166, 69,105, 52, 26, 39,159,184,137,156, 34,175,213,106,133,209,104,196,166, 77,155, -124,114,114, 28,151, 80, 82, 82, 18, 37,149, 74, 65, 8,129, 32, 8, 32,132, 52,218,220,209,182,109, 91,139,175, 64,182,208, 61, -186,158,209, 97,218,210, 53, 81, 33, 10, 57,108,130,128,204,110,109,157,127,228,127,185, 28,196,102,135, 96,179,161,253,243,163, -157,251, 59,117,234,228, 51,127, 18, 66, 18,167, 45, 93, 19, 26, 40,103, 85, 85,149,161, 99,199,142, 37,104,112,155,189, 9,173, - 4,131,193, 16,229,224,191, 76, 16,177, 44,219,104, 91,191,126, 61, 50, 51, 51,253,197, 61,225,229,151, 95,142,178, 90,173, 48, -155,205, 48,153, 76,176, 90,173,176,217,108,206,205,110,183, 59, 55,179,217,140, 61,123,246, 4,234,100,125,112,219,109,183, 61, -190,102,205, 26,213,207, 63,255,172, 74, 74, 74,130, 84, 42,133, 68, 34,129, 68, 34, 1,203,178,224, 56, 14, 55,223,124, 51, 67, -179, 32, 5, 5,197,117, 35,180, 76, 38, 83, 65,122,122, 58,113,124,143,151,203,229, 82,183,183,220,184,246,237,219,231,186,159, -231,175,185, 42, 56, 42, 26, 19, 91,135, 3, 0,222, 57, 87,229,124, 64,124,216,231, 70,231, 49,239, 93,168, 5, 0, 40, 20, 10, - 48,174,175,209, 94,160, 82,169,112,219,109,183, 65, 38,147,161,103,207,158,224,121,222,227, 38,149, 74,193,243,188,223, 68, 97, - 24, 6,106,181, 26, 83,166, 76, 17, 69, 18, 84, 65,114,140,235,211, 19, 65, 32,248,239,177,211, 48, 11, 4, 28,199, 57,183, 64, - 56,165, 82, 41,142, 30, 61, 10,142,227, 32,145, 72,156,159,226,247, 85,171, 86, 97,228,200,145,224, 56, 14, 10,133, 2,240, 51, -115,176,235, 61, 50,155,205,177, 50,153,204, 2, 64, 20,103, 82,134, 97, 98,174,228, 30, 93,207, 8, 81,200, 49,102,222, 79, 0, -128,162, 89,207, 59,239,221,158,103,223,113, 30,147,248,159, 7,192, 48, 12,120,158, 7,203,178,205,198, 89, 93, 93,109,120,232, -161,135,182, 7, 7, 7,175,215,106,181,240, 35,224, 80, 84, 84, 4,142,227,188,230,119,150,101, 49,115,230, 76,156, 57,115, 38, -160,184, 27,141, 70, 44, 88,176, 0,118,187,189, 17,175,248,221,125, 95,128, 34,235,253,161, 67,135,142, 94,179,102, 77, 24,195, - 48,248,236,179,207, 32,149, 74, 49,124,248,112, 68, 68, 68, 96,195,134, 13,144, 74,165,120,253,245,215,105,230,163,160,160,240, - 85,231,241, 0,110, 4, 16,233, 48, 17,234, 0,132,186, 28, 82,225,248,140, 20,127, 51, 12,179,207, 3, 79, 47,199, 49, 21, 12, -195,236,115,249,109, 6, 32,243,176,191, 10,128,194,177,153,208,224,254,167,185, 92, 71, 60, 15,222,174,203, 1, 13,235, 15, 1, -216, 2, 96, 96,102,102,230, 86, 0, 40, 45, 45,189,163,180,180, 20, 0,144,146,146,114, 50, 55, 55,183,163,168,121, 28,205, 83, - 82,155,205,214, 65,108,170, 18,221,162, 33, 67,134,248,124,195,183, 89, 44,151, 9, 16, 79, 90,202, 83,115,133, 55, 1, 99,177, - 88,240,192, 3, 15, 0,128,215,135,142,235, 22,128,118,131,217,108, 6,199,113, 72,109, 29,137, 73,195,210,113, 19,177, 66, 87, -207,192, 86,171,195, 61,106, 43, 78,118,238,142,249,231, 43,112, 78, 91, 15,142,227, 2,226, 20, 4,193,171,200,146, 72, 36,152, - 55,111, 30, 30,122,232, 33, 72, 36,146,128,248, 92,239, 81,114,114,242,154,220,220,220, 8,134, 97, 76,142,123, 36,183,217,108, - 26,155,205, 22, 97,183,219, 35,154,114,143,174,103,216, 4,193, 99, 62,244,150,103, 3,185, 79,129,112, 86, 87, 87, 27, 50, 51, - 51,119,203,229,242,133,209,209,209, 37,197,197,197,126,133,150,187,248,113,127,169,248,228,147, 79, 48,103,206, 28, 12, 26, 52, - 40,160,112,154, 76, 38, 48, 12,131,249,243,231, 95,246,223,212,169, 83, 47,187,158, 31, 78, 6, 0, 27, 23, 23,247,236,186,117, -235, 52,226,177,173, 90,181, 2,207,243,232,210,165, 11,130,131,131,177,125,251,118,216,237,246,128,203, 37, 5, 5,197,181, 11, - 79, 90,196, 5,253, 39, 78,156,216, 51, 43, 43,107,122, 70, 70,198,119, 59,119,238, 92,202, 48,204,106,151, 58, 49,211, 81,191, -174, 22,127, 19, 66,122,185,138, 30,135, 88,139,100, 24,102,181,120,188,235,111,241,147, 16, 50, 4,128, 76,252, 61,113,226,196, -180,172,172,172,233, 19, 38, 76,120,115,198,140, 25,210,137, 19, 39,118,205,202,202,154, 46, 94,199, 83, 56, 60, 57, 90, 62,215, -158, 18,155,168, 78,157, 58,229,173,137,202,245, 1,224,179,182, 84,181,138,116, 58, 89,239, 37, 70, 56,247, 79, 41,174,113, 62, -192,230,246,104, 7,149, 74,133, 97,239,125, 20,144, 83,100, 54,155, 81, 94, 94,238,116, 25,252,109,129,114, 42, 21, 65,200,126, -185, 11,138,170,100,120,119, 87, 53,214, 28, 62, 3,158,231,113,123,231, 46,184, 67, 26,140,183, 19,101,120,249,116, 33,172, 36, -176, 62,189,132, 16,143, 2, 75,252, 46, 54,161, 4, 42,180,220,238, 81,145,209,104,172,202,203,203, 51, 8, 13, 15,118, 5, 33, - 36,140, 97,152, 58,135,203, 21, 27,232, 61,186,158,145,217,173,173,211,117,218, 19, 60,216,185,127,164,238,168,243,158,140,159, -247, 33, 0, 96, 80,247,155,253,150,135, 64, 56,171,170,170, 12,125, 7, 15,220,106, 55,152,191, 25, 61,122,116,193,230,205,155, - 21,129,132,213,147,208, 18, 93, 91, 81,100,113, 28, 7,179,217, 28, 80,220,205,102,179,215,242, 33,149, 74,175,196,209,130, 78, -167, 51,175, 92,185, 18,115,231,206, 69, 68, 68, 4,134, 14, 29,138,216,216, 88, 44, 95,190, 28,132, 16, 60,255,252,243, 80, 40, - 20,162,123, 77, 51, 32, 5,197,245, 13, 95, 90, 68,158,149,149, 53,221, 93,200,184,254,118, 21, 80,110, 98,202, 85,172,165,249, -121,254,175,118, 23, 79,226,117, 25,134, 89, 61, 99,198,140, 76, 63,225,168,240, 38,180,124, 78,137,111, 50,153, 10,186,117,235, - 22,144,154,208,235,245,165,254,196,134,167,183,122, 87,151, 64,173, 86, 67,165, 81,131, 13,176,222,181, 90,173, 78,161,178,113, -227, 70, 40, 20, 10, 12, 31, 62,252,170, 28, 45,139,197, 2,153,148, 7,219, 42, 26, 99,102,109, 70, 85,157,193,249,128,217,146, - 95,128,131,101,229,120, 57, 99, 48, 84,138,114,212,155,205, 1, 57,111,130, 32, 92, 38,178, 56,142,195, 3, 15, 60,224,116, 19, - 92,251,173,192, 71,211, 97, 68, 68,196,126,142,227, 18, 92,238, 81, 80, 74, 74, 10,240, 71,191, 30, 70, 16,132,250,208,208,208, - 31, 1,196, 17, 66, 18, 0, 4, 7,114,143, 40, 60,231, 79,247,253,130,155, 83,117, 37,156, 85, 85, 85,134,204,204,204,221,118, -131,249,155, 11, 23, 46,236, 6, 16,116,211, 77, 55, 53, 89,104,137, 2,139,231,121,204,156, 57, 19,115,230,204,113,254, 31,168, -208,178,217,108,141, 4,212,233,211,167, 27, 93,203, 93,216,249,105, 54, 37,104, 24, 93, 40,164,164,164, 56,207,137,137,137, 65, -104,104, 40, 4, 65,128, 32, 8, 8, 10, 10,130, 66,161,128, 84, 42,165,153,142,130,130,194,151, 22, 49, 76,152, 48,225, 77,134, - 97, 86, 59,156,165, 99, 62, 4,149, 39,237,209,203, 77,172, 85,120, 57, 46,211,147,216,114,253, 46, 98,226,196,137,105,238,225, -240,212, 92,233,172, 85,221,166,221,111, 4,215, 38,170,230,122,136,249,122,144,169, 67, 53, 80,168, 84,144, 72, 88, 48, 12, 67, -252,113, 89, 44, 22,103,197,255,204, 51,207,248,236,183, 18,104,127, 42,139,197, 2,150,147,224, 98, 76, 50,236,236, 54,231,185, -226,198,114, 60,206,197,116,132,228,212, 33,240, 1, 62,112,221, 29,173,231,159,127, 30, 11, 22, 44, 0,203,178,206, 52,225, 56, - 14,237,219,183, 71, 65, 65,129, 79, 46,142,227, 18,206,157, 59, 23,229,154,142,162,136, 37,132,192,110,183,163,109,219,182,198, -188,188,188, 23,105,209,189, 58,145,229,109,191,221, 46, 4,236,194,120, 58,174,170,170,202, 48,106,212,168,173,181,181,181,223, -220,112,195, 13,167,209,120, 10, 4,191,124, 28,199, 53, 18, 88,162,200,250,244,211, 79, 27,137, 34,171,213, 26,208,139,128,213, -106,189, 76,240,124,252,241,199,141, 62, 1,160, 79,159, 62, 1, 57,195, 0, 8,203,178, 68, 42,149,226,182,219,110, 67,215,174, - 93,241,243,207, 63, 67, 16, 4, 60,247,220,115, 80, 40, 20,152, 61,123, 54,108, 54, 27, 62,248,224, 3,234,104, 81, 80, 80,248, -210, 34,166, 25, 51,102, 28,155, 49, 99,134,211, 89,114,119,180,188, 60,119,239,116,136,170, 72, 81,164, 1, 48,121, 18, 68,158, - 92, 50,119, 1,230,186, 47, 43, 43,107,186,123, 56,220,155, 43, 27, 9,173, 63, 11,165,199,143,226,163, 91,210, 1, 52,110, 46, -156,119,115, 71,168,212, 42,168,130,213, 24,181,106, 27, 0, 56, 42,253, 9, 1, 57, 90,162,208,170,170,170,242, 41,178,154,226, -104,177, 50, 14, 43, 18, 46,129,200,120,112,102,107, 35,161, 37,225,120, 20, 69, 36,131,229,165,224,236,182,128, 56, 9, 33,151, - 53, 21,142, 29, 59, 22, 12,195, 56, 71,136,117,235,214,205,149,139,241,247,112,124, 45,188,161, 15,158,123,115,236, 7,149, 70, - 90, 98,175, 36,127,238,255, 18, 39,127,120, 22, 0,208, 87,167,115,222,139,105,221,254, 24, 59, 48,235,232, 86,167,251,248, 30, - 94,189, 34,206,170,170, 42,195, 77,157,210,118, 75,195, 67,190, 57,127,254,252,110, 0,236,131, 15, 62, 24,218,173, 91,183,128, -202,164, 56,184,194, 93,100,185, 58, 89,226,167,159, 17,182, 46,194,209, 30,144,128, 18,155, 17, 3,200,243, 68,204,219, 26,141, - 6,106,181,218, 57,226, 54, 40, 40, 8, 74,165,210,217,191, 51, 64,225, 70, 65, 65,113,253, 34, 76, 20, 58, 14,177,212,200,105, -114,244,173,202,116,253,237,201,241,114, 56, 80, 57,126,234,215, 53, 14,129,230, 17,162,179,230,118,206,106,111, 34,141, 19, 21, -164,235,103, 76, 76,204,175,106,181, 58, 57,208,216, 55,101, 20,155,221,106,185,204,217, 98, 24, 6,234, 96, 53, 20,106, 21, 20, -193,106,175,174,151, 47,161, 37, 58, 69,226, 67,103,225,194,133, 80,171,213,248,215,191,254,213,228, 62, 90, 78,161, 37,101,177, - 65,190, 9, 18, 25,215, 72,100,113, 28, 7, 9,207,163, 84, 29, 11,150,231,193,217, 2,115,201,106,107,107,193,113, 28, 38, 77, -154,228,124,131,119, 21, 89, 77,137,179, 47,176, 12, 35,186, 91,242,118,237,218,189,202, 48, 76, 34,128, 36,157, 78, 39,191,120, -241,226,173,180,188,250, 80, 6,118,235,101, 46,148, 55,247,245, 74, 57, 69, 39, 75, 26, 30,242, 77,199,142, 29,157, 78,150, 82, -169, 20, 71,155,250,191,199, 44,235, 81,100,185,143, 16,228, 56,174, 33, 47,251, 25, 29,233,234,104,205,152, 49,195,201,235,234, -100,137,104, 74, 57, 18,195,186,117,235, 86, 28, 60,120, 16,207, 60,243, 12, 20, 10, 5,230,204,153, 3,155,205,134,169, 83,167, - 66,161, 80, 64, 38,147,209,204, 71, 65, 65,221,172, 70, 90,196, 13, 21,110,253,160, 24, 55, 81, 83,225, 73, 96,185, 54, 19,138, -223, 25,134,177,122,224, 53,187, 53, 41,186,239, 23, 63,171,102,204,152,177, 89,116,178, 92,246, 55, 10,135, 95, 71, 75, 46,151, - 39,231,229,229, 57, 39,194,244,245,105, 54,155, 49,104,208,160,128,157, 49,113,212, 33,199, 73, 26, 9, 11,101,176, 26, 74, 77, - 48, 20,106,181,187,224, 96,252, 85,226,226, 27,177,171,208,154, 60,121, 50, 56,142,195,130, 5, 11, 0, 0,175,190,250,106,192, -125,180, 68, 78,216, 25, 20,147,179, 72,159, 53, 18,230,111,173, 40,219,241, 59, 56,142, 67, 84,239, 59, 32,220, 52, 18,122,133, - 26,156,221, 22,240,168,195,234,234,106, 20, 20, 20, 64, 34,145,224,149, 87, 94,105, 52,215,145,251, 72,182,141, 27, 55,250,141, -187, 39, 39,107,242,249,106, 39,143, 66,161, 96,127,255,253,247,100, 65, 16, 82, 12, 6, 67,187, 62,125,250, 8,180, 40,251, 17, - 69,130, 45, 32, 81, 21,104,254,116,231, 20,251,100,213,214,214,126,115,254,252,249, 61, 0,216,209,163, 71,135, 42,149, 74,124, -245,213, 87,122, 0,178,229,203,151, 43,252,137, 34, 49,223,248, 19, 89, 60,207, 55,228,229, 64,226, 78, 26, 79, 89,226,175, 99, -124, 32,121, 94, 12, 43,195, 48,176,219,237, 80, 40, 20,141,156,172,160,160, 32,200,229,114,154,241, 40, 40, 40,252,213, 37,251, - 2,174,199, 9,233,229, 34,170,246, 93, 9,111, 83,174,231, 15,156, 55,161, 97, 50,153,112,226,196,137, 64,121, 2,158, 24,179, -117,207,155,241,222,133, 90, 48, 12,131,255,246,185, 1, 42,141, 26, 74,149, 10,247,255,188,213, 89,113, 31,157,254, 42,228, 42, - 53,226,250, 13, 13,168, 34, 23,155, 14, 93,133, 86, 77, 77, 13,120,158,199,251,239,191, 15,150,101,241,193, 7, 31, 32, 62, 62, - 30, 23, 47, 94,196,242,229,203, 3,114,180, 36,118, 9, 98, 31,235, 4,229,216, 16,104, 30,235,143,176,219, 38,227,130,153,195, - 78,163, 18,253,141,199, 33,219,240, 41,204,130, 61,224, 17, 88, 54,155, 13, 91,183,110,117,239,240,238,236, 83,101,179,217, 96, -181, 90, 97,177, 88,240,193, 7, 31, 4, 50,194,243,178,251, 38,166,161, 99, 18, 84, 73,110,110,110, 36, 33, 36, 28, 64, 8,128, - 74, 90, 92,125, 35,182,247,243,136,236,249, 52, 0, 96,213,140, 39,156,251, 39, 29,253, 35,127,206,252,182, 97, 1,128,142, 73, - 67,155,196, 89, 85, 85,101,184,125, 80,159, 28,163,192,127,221,165, 75,151, 70, 78, 86, 80, 80, 16,227,248, 29,144, 93,198,178, - 44, 36, 18,201,101,205,133,222,196, 86, 32,125,180,108, 54,155,115, 34, 81, 95,253, 25,175,196,209,122,226,137, 39, 16, 27, 27, -235,116,178,222,123,239, 61, 40, 20, 10, 76,156, 56, 17, 86,171, 21,159,126,250, 41,205,124, 20, 20, 20,127,186, 40,251, 51,224, -177, 38, 53, 26,141,133, 93,187,118,133,151,255,226,131,130,130,120,183, 72,197,181,111,223, 62,215, 67, 19,226, 16, 0,217,158, - 42,117,134, 97, 16,172, 9, 70,144, 90, 5,165,155,139, 21, 20,172,129, 92,173, 6, 43,245, 88,153, 95,198, 41,246, 45,113, 21, - 90,226, 86, 91, 91, 11,158,231, 49,119,238, 92,104, 52, 26,152, 76, 38,191,156,226, 67, 71, 34,145, 64, 95, 84,135,147,211,179, - 33, 11,218,137,118, 67, 31, 66, 44,175,128,116,251,143, 48,216,173,254, 38, 44,189,140,179, 67,135, 14,120,231,157,119, 46,155, -214,193, 27,226,227,227,253,198,221,221,201,154,121, 67, 27, 72,101, 82,140, 63, 94, 4,147,201,196, 60,244,208, 67, 2, 0, 3, -128, 10,131,193,112, 62,144,244,108, 6,252,227, 57,125,141,138, 21, 33, 16,187, 39, 1,227,145, 83,116,178,140, 2,255,117, 65, - 65,129,232,100,133, 40,149, 74,124,241,197, 23,122, 0,236,212,169, 83,149,137,137,137,146, 64,242,146, 68, 34,193,172, 89,179, - 60,246,201,242, 36,186,154, 82,142, 92,207, 29, 48, 96,128,199, 9, 75,189,136,183,203, 56,197,176, 70, 68, 68, 56,157, 44,187, -221,238, 28,109, 40,206, 62,239,227,165,130,230, 79,202, 73, 57,175, 31,206,107, 18, 30,107,224,139, 23, 47,222,238,237,132,182, -109,219,230,229,229,229,181, 23,151,226,112, 84,156, 82,163,209,216,161, 79,159, 62,126,173, 29, 65, 16, 32,151,203, 65, 8,193, -173,239,100,129, 97, 1, 22,141, 31, 98, 81,183, 12,134, 68,194, 65,104, 88,234,195,239,168, 67,131,193,208,232,225,224,105,171, -175,175,135,201,100, 10,120, 54,111,163,209,216,104, 10, 6,134, 8, 56,247,219,178,203, 70, 31,138, 91,160,253,118,130,130,130, - 26, 53,253,248,113,172,152, 64, 28, 45,215,166, 71,169, 76, 10, 78,202,139,142, 86,221,233,211,167, 71,209,108, 30, 56,196, 1, - 11, 0,144,218,103, 56, 4,193, 14, 98,183, 55, 90, 38,169, 83,242,237, 16,136, 29, 22,171, 30, 38,147,201,223,180, 39, 76,101, -101,165, 97,212,168, 81, 91, 1,252,239,158,123,238,201, 69,195,236,194, 68,173, 86,203,121,158, 23, 0, 84, 3, 32,151, 46, 93, - 10,185,112,225,130, 96, 52, 26,219,248, 11,231,154, 53,107,112,226,196, 9,244,235,215,175,209,114, 80,162, 43,234, 58,187,123, - 32,249, 83,108, 46,247, 52, 35,188, 55, 33, 23, 40, 36, 18, 9, 66, 66, 66, 32,149, 74,241,254,251,239, 67, 42,149, 66,169, 84, - 2, 0, 62,253,244, 83,231,228,171, 20, 20, 20, 20,215,141,208,242, 87,111,250,104, 86,244,217,132,104,179,217,138, 19, 19, 19, -155,116, 49,187,221, 94,230, 71,184, 21, 47, 95,190, 92,234,234, 66,248,251, 36,132,148,249,121,216, 22,175, 90,181, 74,234,201, -221,240,182,192,180, 63, 78,187,221, 94,156,148,148,228,213, 49,241, 4,171,213,122,193,159,104,205,170, 48, 52, 18, 9,227,143, - 23,121, 93, 59,145,194,111, 94,243,145, 63,223,186,210,252,121, 58, 53, 53,245, 66,104,104,232,218,232,232,232,170, 29, 59,118, - 68,244,234,213, 43,194,245,152, 94,189,122,197,186,157,102,134,247,117, 14,193, 48, 76,241, 61,247,220,227, 49,207,139,162,201, - 67,254, 44,246,151,231,247,238,221, 43,117, 61,223, 27,191, 75, 57, 42, 14, 64,184,158, 75, 79, 79,103, 93,121,188,229,125,171, -213, 90, 65,115, 33, 5, 5,197,117, 47,180, 12, 6, 67, 81,215,174, 93,109, 94,254, 59,239,235,220,170,170,170,158,205, 29, 1, -171,213,218,231,159,192, 89, 89, 89,217,172,113,183,217,108,197,142, 9, 74,125, 30, 67,179,248, 95,119,143, 0,160,188,188,252, - 38, 0,208,233,116,240,183,172, 78, 19, 4, 97,179,231, 79,155,205,214,167, 37,210,180,186,186, 58,131,230, 44, 10, 10, 10, 42, -180,154, 0,186, 24,241,223, 3, 45, 33, 90, 41, 40, 40, 40, 40, 40, 40,154, 23, 44, 77, 2, 10, 10, 10, 10, 10, 10, 10,138,150, - 1,131,134,145, 3,158,208,148,209, 4, 67,174,224,218,217,148,147,114, 82, 78,202, 73, 57, 41, 39,229,188,238, 56,253,113,211, -209,140, 45, 44,192, 40, 39,229,164,156,148,147,114, 82, 78,202,121,253,113, 94,147,160, 77,135, 20, 20, 20, 20, 20, 20, 20, 20, - 45, 4,142, 38,193, 95, 6, 9,154, 48,163,190, 63, 16, 66,194, 0,120, 91, 48,206,204, 48,204,165, 43,224,100, 0, 72, 29,155, - 56,209,145, 21,128, 5,128,133, 97, 24,226,159,227, 93,182,164, 36, 44,141,216,249, 94,132, 97,120, 65,192,225, 54,109, 90, 31, - 98,152, 59,204, 0,160,138,238,212, 89,173, 82, 12, 49, 89,204,201,114, 94,118,162, 70, 87,191,209, 84,158, 87, 72,179, 7, 5, -197, 95,130,187, 0, 76, 65, 67,183,146, 25, 0,150,209, 36,161,160,104, 33,161,165, 86,171,247,179, 44,155,224,111,126, 30, 17, -142,181,204,138, 47, 93,186,212,179, 9,215, 30,165, 86,171, 7,241, 60,127, 11, 0, 88,173,214, 29,245,245,245,155, 1, 44, 7, - 96,187,194, 56,105, 0, 60, 0,224, 17,199,239, 37,142,202, 66,123,133,124, 93, 67, 66, 66,126,224,121,158, 84, 86, 86,246, 6, -128,136,136,136,221, 86,171,149,209,106,181,247, 3, 56,210, 68, 62,150,231,249,153,189,123,247,238,191,109,219,182,255, 1,152, -219, 76,247, 82,206,178,172, 71,129, 34, 8, 66,210, 21,136, 44, 41,128,144,185,115,231, 70, 44, 94,188, 56,189,184,184,184, 11, - 0, 36, 36, 36, 28, 29, 61,122,244,161,113,227,198, 85, 17, 66,106, 25,134,177,248,226, 41, 41, 9, 75, 43, 47,205,127,166,172, -252,196, 3, 0, 16, 19,219,101,153, 68,194, 74, 9, 57,176, 75,217,234,145, 86,237,219, 37, 61,253,221, 87,115,165, 73,201,173, -177,105,231,193, 27,199,189,248,102,218, 5,224, 19, 42,182,254, 60, 4, 7, 7,239,103, 89, 54,193, 87, 25,247, 84,230,237,118, -123,113,117,117,117, 79,111,156, 28,199, 37,248,170, 47, 60,237, 19, 4, 33,191,178,178,210,227, 84, 19, 26,141,102, 23,199,113, -201,129,114,137,159, 54,155,173,216,219, 40, 93,141, 70,179, 95, 34,145, 36,248,138,167,167,255, 4, 65,200,175,168,168,240, 22, -206,203,226,222, 28,225,188, 18, 78, 95,225, 20,235, 35, 0,159, 70, 68, 68,220, 92, 85, 85,245, 40,128, 55,181, 90,109, 55,137, - 68,130,240,240,240, 55,205,102,243,153,144,144,144, 47,107,107,107,119, 2,120, 17, 0, 93, 47,149,130,162,185,160,209,104,202, -234,235,235,137, 8, 65, 16,136,213,106, 37, 38,147,137, 24, 12, 6,162,211,233, 72,125,125, 61,209,106,181,164,182,182,150, 84, - 85, 85,145,200,200, 72,247,201, 27,189,181,225,118,209,104, 52,121, 89, 89, 89,166,130,130, 2, 98,177, 88,136,197, 98, 33,133, -133,133,228,163,143, 62, 50,105, 52,154, 60, 0, 93,188,156, 59,196, 75,101,113, 27,128,165,233,233,233,230, 53,107,214, 16,163, -209, 72,116, 58, 29, 89,182,108, 25,185,225,134, 27,204, 0,150, 58,142, 97, 3,228, 4,128,190, 49, 49, 49,197,103,207,158,181, -111,220,184,209, 18, 18, 18,146, 29, 18, 18,146, 93, 88, 88,104, 63,123,246,172,208,170, 85,171, 98, 0,125,155, 16, 78, 0, 24, - 57,126,252,248,178,194,194, 66, 50, 96,192,128,195, 46,251, 25,248, 95,231,110,136, 39, 39,139, 16, 18, 67, 8,137, 69,195, 36, -151,151,109,132,144, 88,199, 49, 97, 1,114,170,242,243,243, 91, 71, 71, 71,103, 49, 12, 99,118,231, 99, 24,198, 28, 29, 29,157, -149,159,159,223,154, 16,162,242,197, 89,124,126,222,147,107,215, 12,174,209, 93, 58, 69,116,151, 78,145,255,125, 61, 80,251,212, -184, 71,151,198,182,237,190, 32, 52, 33,109,238,137, 83,167,231, 19, 66,230,111,222,151, 55,127,242,231,191,206,191,119,220,236, - 47, 34, 18,211,159,106, 66,122, 94, 13, 40, 39,128,208,208,208, 82,157, 78, 71, 8, 33,196,110,183, 19,139,197, 66, 76, 38, 19, -209,235,245,164,190,190,158,212,213,213, 57,203,121,109,109,173,243,123, 84, 84,148,215,242, 30, 22, 22, 86,102, 48, 24, 26,213, - 29,102,179,217, 89,127,232,245,122,162,215,235,137, 78,167,115,110,245,245,245, 36, 46, 46,174,200, 71, 56, 47,138,225, 20, 4, -129,216,108, 54, 98,177, 88,156,188, 70,163,177,209,102, 50,153,136,201,100, 34,137,137,137, 1,135, 51, 16, 78,163,209, 72, 18, - 18, 18, 74,188,113,134,135,135,151, 25,141,198, 70,156,174,241,119,231, 21,127,199,196,196,148, 54,133, 51,144,112,250, 74, 79, - 7,230,230,230,230, 18,131,193, 64,226,227,227,171,238,191,255,126,171,221,110, 39,107,214,172, 33,233,233,233,194,192,129, 3, - 45,149,149,149,228, 95,255,250, 23,241,241, 82, 72,203, 17,229,164,184, 18, 71,139, 97, 24,168, 84, 42,124,255,253,247, 94,151, -227,112,253,222,166, 77,155, 64,175,217, 51, 57, 57,121,235,246,237,219, 21,177,177,127, 76,136,109, 54,155, 17, 22, 22,134,231, -158,123, 78,118,215, 93,119,181, 31, 58,116,232,238,115,231,206, 13, 0,176,223, 15,223,125,145,145,145,159, 77,154, 52, 41,250, -193, 7, 31, 68, 68, 68,163, 73,183, 49,106,212, 40,220,127,255,253,210,220,220,220,135, 22, 46, 92,248,208,188,121,243, 74,235, -235,235,199, 1,248,209, 23,169, 66,161,184, 39, 46, 46,238,139,237,219,183, 71, 69, 69, 69, 33, 37, 37,133,125,253,245,215,219, -119,232,208, 65,145,144,144,192, 94,188,120, 17, 63,255,252,115,252,195, 15, 63,188,162,172,172,236,105,139,197,178, 50,128,184, -203, 34, 34, 34,222,124,250,233,167, 91,105,181, 90,219,129, 3, 7,242,196,253, 50,153,108,106, 70, 70, 70,175, 45, 91,182,124, - 11,224,203, 43,113,178, 8, 33, 90,252,209,196, 39,194, 42,254, 31,136,179, 69, 8,145, 29, 62,124, 56, 60, 35, 35,227, 71,147, -201,212,253,153,103,158, 57, 63,125,250,116,133, 70,163,209, 0, 96,180, 90,237,165, 41, 83,166,152,103,207,158,253, 70,231,206, -157, 7,239,218,181,235, 62, 66,136,213, 33,200, 46,231, 99, 24,103,120,138, 46, 84, 96,235, 78, 65,246,206,196, 87, 19, 62,156, -150,124,110,223,241, 34,129, 83,104,240, 75,206, 49,148, 85,213,227,215, 93,199, 17, 19, 17,204, 72,229,124, 90, 72,252, 13, 3, -106, 47, 28,207,129,143, 25,210, 41,154, 7, 12,195, 64,169, 84,226,151, 95,126,185,108,233, 42, 79,203, 90,113, 28,135,208,208, - 80,191,171, 27, 4, 5, 5, 97,227,198,141, 30,215, 94,244,180,164, 79, 72, 72, 8,124,189,108, 48, 12,131,160,160, 32,236,216, -177, 3, 44,203,122, 92, 26,200,125,159, 74,165, 2,235, 99,173, 43,145, 51, 39, 39,199, 47,151,248,169, 86,171,129,134,166,127, -239,133, 82, 46,199,246,237,219,189,198,217,253,187,218,177,222,171, 63,206, 29, 59,118, 52, 90,250,203,125, 73, 48,215,223, 42, -149, 10,140, 31,210,176,176,176,222, 9, 9, 9,216,187,119, 47,150, 47, 95, 30,158,150,150,134,211,167, 79,131, 97, 24, 76,159, - 62,157,185,225,134, 27,248,210,210, 82,244,235,215, 15, 63,253,244, 83, 31,173, 86, 75, 11, 12,197, 95, 2, 66, 8, 15,224, 70, - 0,145,104,232,118, 83, 7, 32, 20, 13, 43,105,200, 0, 84, 1, 80, 56, 54, 19,128,122, 0,173, 28,167, 87, 58,234, 22, 87,129, - 80,225,186,248, 52, 33,164,151,131, 91, 92,161, 34,210,229, 88,241, 26,238,191,221, 63, 61,114,115, 0,176,122,245,106,241, 97, - 54, 48, 51, 51,115,171,107,228, 2, 17, 89,226, 58,101, 30,202,180,251, 16, 77,185, 74,165,250, 97,247,238,221,138,200,200, 63, -226, 96, 50,153, 80, 87, 87,135,250,250,122,212,213,213, 33, 56, 56, 24,203,151, 47, 87, 12, 30, 60,248,135,186,186,186, 14,142, - 68,243,198, 57,235,226,197,139,209, 54,155, 13, 50,153,231, 46, 74, 44,203,162, 83,167, 78,120,243,205, 55, 49,108,216,176,152, - 65,131, 6,205,114, 19, 90,151, 13, 37, 85, 42,149, 95, 28, 56,112, 32, 74,169, 84, 34, 47, 47, 15,197,197,197, 24, 63,126,124, -107, 65, 16, 80, 84, 84,132,211,167, 79,227,194,133, 11, 88,184,112, 97,212,136, 17, 35,190,240, 32,180, 60, 13, 79,125,230,229, -151, 95,238, 24, 22, 22,198,126,244,209, 71, 53, 58,157,238,255, 28,251,223,153, 51,103,206, 99,253,251,247,143,250,247,191,255, - 77,118,236,216,177,216,113,227,188,166,167,107,159, 44, 71, 51, 31, 28,153,239,164,219, 57,157, 92,254, 7, 33, 36, 6,128,137, - 97,152, 26, 15,156, 12,128,144,161, 67,135,190, 98, 50,153,186,111,223,190,253,204, 45,183,220,146, 8,224,162,152,249, 66, 66, - 66, 84,179,102,205,138,206,204,204,204,189,245,214, 91,187, 15, 29, 58,244,149,138,138,138,233,132,144, 10,151, 62, 91, 78, 78, - 65,192,225,152,216, 46,203,114,118,141,123, 96,203, 14,179,244,213, 23, 39,159,111,211, 58,169,246,112, 94,181,253,120,126, 5, -234, 12, 54,220,123,107,195, 2,230,189,187,180,193,103,223,111,199,115, 47,189,197,255,184,108,209,253,103, 8, 84,245, 37,199, -215,248, 72,207,171, 5,229,132,179,137, 9, 60,207,227,142, 59,238, 0,195, 48,151,173,229,201,243, 60,118,237,218,133, 91,111, -189, 21, 60,207,227,137, 39,158, 8,136,147,227, 56, 12, 29, 58,212,185,142,162, 43,159,187,104,240,162, 9,178,221, 42, 91,112, - 28, 7,150,101,189, 46,164,237,206,233,175, 94, 18,195,233,139,203,245, 63,127,225,116, 44,121, 20,176,200, 10,148, 83, 12, 39, -199,113,232,211,167, 15, 14, 29, 58,228, 83,116,121,209,151,141,226,126,233,210,165, 49, 29, 58,116,200,153, 59,119,110, 56, 0, - 84, 85, 85, 57, 23,188,151, 72, 36, 56,117,234, 20,204,102, 51,222,125,247, 93,139, 86,171,253, 55, 45, 71,148,179, 37, 57,125, -105, 17, 0,253, 39, 78,156,216, 51, 43, 43,107,122, 70, 70,198,119, 59,119,238, 92,202, 48,204,106, 66, 72,166,248, 57,113,226, -196,180,172,172,172,233, 19, 38, 76,120,115,198,140, 25,199, 24,134, 89, 13, 0,238,191, 29,117, 73,166,155,136,139, 20,121, 28, -101,174,209,177,158,126,187,127,122,226,110,228,104,101,102,102, 50,142, 72, 50,174,149, 90,160, 66, 43,144,181,251, 56,142,123, -126,250,244,233,209,190, 68, 86,125,125, 61, 74, 74, 74,144,152,152,136, 39,158,120, 34,122,238,220,185,207,219,108,182,143,125, -208, 74, 37, 18, 9,246,238,221,139,242,242,114,116,237,218, 21,201,201,201,141, 14, 56,123,246, 44,214,174, 93,139,154,154, 26, -244,232,209, 3,104,232,220,237, 17,221,186,117,123,183, 83,167, 78, 67, 89,150,181, 41, 20, 10, 28, 62,124, 24,221,187,119,199, -247,223,127,143, 54,109,218, 64,169, 84, 34, 55, 55, 23, 93,187,118,197,214,173, 91, 17, 25, 25,137,244,244,116,155, 86,171,221, - 86, 93, 93,189,249,220,185,115,239,122, 11,103,124,124,252,228,167,158,122, 74, 86, 82, 82, 34,124,243,205, 55,219, 1,108, 7, -240,252, 91,111,189,245,248,176, 97,195,162, 14, 30, 60, 88,187,111,223,190, 61, 94, 68, 86, 32, 78,150,205,253,161,100,183,219, - 77, 6,131,193,108, 50,153,172, 44,203, 22, 50, 12, 99,182,219,237, 29,188,153, 16, 99,199,142,109, 91, 89, 89,249,220, 75, 47, -189, 84,224, 16, 89,167,208,208, 1, 30, 0, 96,179,217, 76,245,245,245,218,140,140,140,196,135, 31,126,248,204,210,165, 75,159, - 27, 59,118,236,242,111,190,249,166, 30,128,193,157,176, 77,155,214,135, 36, 18, 86,170,171, 11,207, 95,177,252,203,151,215,174, -122,190,117, 81,209,133,246, 17,173, 34,117, 82,117,100,201,242, 37, 95,239, 7, 96, 46,169,208,226,200,217, 82,240,188, 4, 39, -138,106,209,255,246, 81,252,153,188,105,125, 1,172,161,239,114, 45,255,178, 40, 46, 66,189,101,203, 22,159,142,214,174, 93,187, -192,243, 60, 20, 10, 5,102,207,158,237,147, 84, 20, 6,162, 91,228, 79,204,136,139,163,251,114,159, 4, 65,112, 46,244,238,190, -253,223,255,253, 31, 94,122,233,165, 70,215,112,136, 13,198, 31,167,183,240, 37, 38, 37,161,188,172,172,209,190, 64, 22,165,183, -219,237,224,121, 30, 11, 22, 44, 64,102,102, 38, 86,175, 94,237,243,243,142, 59,238, 0,203,178, 36,144,244,236,211,167, 15, 44, - 22,139, 51,204,167, 78,157,242,200, 59,111,222, 60,127,193,188, 11,192,148,238,221,187,107, 6, 13, 26,132,156,156, 28,220,127, -255,253, 38,139,197,146, 7, 0,119,222,121,103,234,220,185,115,101, 7, 14, 28, 64, 68, 68, 4,127,254,252,249,255,129,118,144, -167,104, 97,120,210, 34,226, 51, 47, 43, 43,107,186,187,136,113,133,248, 63,195, 48,171,103,204,152,145,233, 42,138, 92,127,139, -174,147,155,136, 75,115,117,164, 92, 69,148, 55, 1,229,246,188,117, 61,190,194,163,208,114, 68,108,160,171, 11, 36, 86,190,254, - 68,150,143, 55,199, 70, 8, 9, 9, 25,126,239,189,247, 58, 69,142,209,104,116, 10, 44, 81,100,137,191,115,115,115,209,179,103, - 79,105, 72, 72,200,240,170,170,170,143, 3, 16,113,136,139,139, 67,101,101, 37,142, 30, 61,138,196,196, 68, 88,173, 86,172, 95, -191, 30,181,181,181,224,121, 30, 82,169, 20, 22,139,207,190,219,232,212,169,211, 29,139, 23, 47,238,185,104,209,162, 75,226, 27, -221,146, 37, 75, 64, 8, 65,100,100, 36,244,122, 61,202,202,202,176,121,243,102,216,108, 54,168,213,106,164,164,164,200,238,185, -231,158,190, 83,166, 76,225,125, 8,173, 62,247,223,127,127,136, 70,163,193,139, 47,190, 72, 44, 22,203, 12,199,190,201,227,198, -141,139, 40, 44, 44, 52, 63,249,228,147,123, 45, 22,203, 71,162,153,232, 42,112,188,220, 88,175, 78,150,213,106, 21,211,180,160, -190,190, 30,173, 90,181, 74,116,117,182,188,137,193, 29, 59,118,244, 1, 32,153, 58,117,106, 16,128, 50,215, 48,152,205,102,212, -215,215, 67,167,211, 89,107,107,107,203, 95,123,237, 53,219,210,165, 75, 37,142,115, 78,120, 18, 90, 12,115,135, 89,163, 81,202, - 8,145,188, 53,127,254,124,245,176, 97,195, 88,181, 90,141,186,186, 58,205,175,235,214,169, 7, 15,234,155, 50, 61,235,195, 13, -154,132,174,101, 59, 14,231,227, 66,105, 45,204, 86, 43, 82, 98, 67, 26,252, 48,138, 22,135, 99, 32,139,211,209,114, 21, 21, 57, - 57, 57,184,253,246,219,157,101, 93, 42,149, 54,114,190,252,113,114, 28,135,219,111,191,253, 50,135,103,203,150, 45, 30,221, 39, -127,112, 21, 69,238,226,200,147, 0, 99, 89,214,239, 2,235,162,155,231, 73,108,185,186,250,110,226,205, 95, 51, 7, 56,142,195, -184,113,227,192,243, 60, 94,127,253,117,112, 28,135,244,244,116,112, 28,135,140,140, 12,240, 60,143, 91,111,189,181,201,113,223, -189,123, 55,186,119,239,238, 12, 83,122,122, 58,122,245,234, 5,142,227,208,175, 95, 63,240, 60,143,161, 67,135, 6,194,249,102, - 93, 93, 93, 55,181, 90,141,220,220, 92, 72, 36, 18, 48, 12,115, 26, 64, 55, 0,136,141,141, 61,163, 6,111,130,189, 0, 0, 32, - 0, 73, 68, 65, 84,215,235,219, 26,141, 70, 60,245,212, 83,140,217,108,238,250,250,235,175,191,101, 52, 26,169,208,162,104, 49, -184,107, 17, 23, 24, 38, 76,152,240, 38,195, 48,171, 69,135,202,221,121,242,244,219, 67,221, 36, 58, 80,251, 28,101,181,151,155, -136,171, 96, 24,102, 31, 33,228, 78,111,231, 2, 48,187, 9,171, 70, 77,135,174,205,134,126, 29, 45,177,242, 13, 84,104,249,131, -209,104,188, 49, 42, 42,202,171,200,114,253, 52,155,205, 72, 78, 78,134,209,104,188,177,169, 15,141,216,216, 88, 88, 44, 22,124, -249,229,151,144, 74,165,144, 74,255,208, 23,102,179,111,179,232,248,241,227, 5,187,119,239,238,222,163, 71,143,176,159,126,250, -169, 98,192,128, 1,145,195,134, 13,131, 66,161,128,193, 96,128,213,106, 69,239,222,189,209,169, 83, 39, 20, 23, 23,227,215, 95, -127,173,236,208,161, 67,171, 61,123,246, 8,165,165,165,231,124, 80,223, 54,120,240, 96, 48, 12,131,117,235,214, 85, 2,216, 39, -151,203,215, 78,155, 54, 45,204,108, 54, 11,163, 71,143, 62, 95, 93, 93,253, 18, 0,139, 76, 38,155, 51, 96,192,128,140,236,236, -236,111, 5, 65,152,221,212,140,234,158,182, 58,157, 14, 65, 65, 65,129, 76, 37,193, 87, 87, 87,119, 1, 0,149, 74, 21, 14,224, -140, 51,135, 27, 12,141,196,176,217,108, 54,134,135,135,171, 0,192,113, 14,239,133, 51,210,102,195,138,115,231,242,131, 93,251, -207,133,134,134,226,145,135, 31,102,111,233,211, 71,214,237,198, 27,135,190,253,201,162,239,227, 34, 52,230,148,184, 8, 88,237, - 86,100,111, 88, 47, 16,193,186,129, 86, 59,127,142,208, 18,197,134,187,163,197,243, 60,182,110,221,122,217, 62,169, 84,138,255, -254,247,191, 1, 9, 3, 81, 84,121,107, 58,115,107,234, 98,252, 9, 24,158,231, 33,145, 72,176, 96,193, 2, 8,130,128,151, 95, -126,185, 81,115,162, 43,127, 64,118,158,139, 8,236, 52, 89, 0, 96, 70,241, 76,185,243,124,247,240, 58,206, 9,200, 37,155, 59, -119,110, 64,142,214,157,119,222,233, 87,184,186,182, 48,184,134,235,208,161, 67, 30,121,231,207,159,239, 55, 61,237,118, 59,214, -172, 89,227, 20,169, 34,222,126,251,237,167,100, 50, 89,244,182,109,219, 80, 90, 90, 10,157, 78,135,250,250,122,244,238,221, 59, -133,101,217,195,165,165,165,133, 39, 78,156,184,151,150, 30,138, 63,209,209, 50,205,152, 49,227,216,140, 25, 51, 60, 58, 86,238, -206,146, 47,231, 73, 20, 88, 14, 65, 20, 41,138, 55, 52,116,171,217,231,239, 92, 0, 50,247,166, 67,159, 70,144,155,138,156,226, -169,242, 13,164,249, 48, 64, 59,157, 99, 24, 6, 70,163,209,163,192,114, 21, 7, 22,139, 5,213,213,213,176,219,237, 87, 60,215, -151,167, 55, 89,127, 66,235,232,209,163,255,122,252,241,199, 75, 66, 66, 66,186, 85, 84, 84,148, 11,130,112,235,174, 93,187, 34, - 57,142,131, 70,163,129, 70,163,193,218,181,107,161, 84, 42, 49,110,220,184,114,187,221,158, 19, 28, 28, 28, 97, 48, 24,126, 47, - 45, 45,125,219,171,130,225,249,161,253,250,245,195,129, 3, 7,112,233,210,165,141, 0,210, 31,125,244,209,219, 91,183,110,205, - 76,155, 54,205,120,246,236,217,217, 0,202, 85, 42,213,226,197,139, 23, 15,234,209,163, 71,240,232,209,163,177,117,235,214,249, - 0,140,129,198, 89,167,211, 53, 18, 88, 90,173, 22,117,117,117, 80,169, 84,182, 0,211,140,199, 31, 35, 12, 65, 8,113,222, 27, -135,155, 37,222, 31,194,113,156, 56,170,209,155,200,130, 74,165,154,186,104,209, 34,133,251, 32, 5,187,221,142,178,178, 50,104, - 52, 26, 76,122,251,109,233,123,227,255,221, 93,162,142,222,197,178, 12,204, 22, 82, 67, 4,243,122, 93,217,131,219,128,119,105, -205,243, 39, 64, 20, 6,119,223,125,247,101,205,133, 82,169, 20, 27, 55,110,196,136, 17, 35,156, 47, 46, 61,122,244,240,251,114, - 37, 10,131,187,238,186,203,233, 12,173, 95,191,222, 99,179,159,232, 72, 5, 34, 8,197, 99, 95,120,225, 5,112, 28,135,207, 62, -251, 12,175,188,242, 10, 88,150,197,204,153, 51,193,178, 44,222,121,231,157,128, 69,166,171,128, 41,252,176,225, 51,225, 21, 45, -170,230, 69, 3, 0,130, 53, 26, 49, 66, 77,170,123, 56,142,115, 58, 89, 55,222,120, 35,120,158, 71, 70, 70, 6, 56,142,115, 58, - 89,195,135, 15,119, 77, 71, 18, 8, 39,199,113,200,203,203,115,134, 57, 35, 35,163,145,147,197,113, 28,238,188,243,206, 64,130, - 57, 61, 52, 52,116, 74,167, 78,157, 58,207,154, 53,139,151, 72, 36, 24, 60,120,112,106, 76, 76,204, 57,155,205, 22, 49,117,234, - 84,165,135,115, 20, 0,186,117,238,220, 89, 69, 75, 13, 69, 11, 58, 90, 83, 60,252, 21,230,218,231,170, 9, 47,146,171, 93,143, - 23, 57,220,197,145,195, 33,203,241,199,229,233, 92,127,224, 68, 5,233,203, 82, 15, 68,104, 57,108,103,159, 23, 83, 42,149, 71, -202,203,203, 51, 20, 10, 69, 35,145,229, 73,112, 73, 36, 18,148,150,150, 66,169, 84, 30, 49,153, 76,205,118, 19,253, 53, 29, 2, - 48,158, 62,125,122,188,203,239, 33,195,135, 15,255,102,227,198,141,177,217,217,217,216,179,103, 15, 34, 35, 35, 49,119,238,220, -139,101,101,101,255, 2,176,177,178,178,210,239,117,219,182,109,219, 69,173, 86, 99,199,142, 29, 0,176, 21,192,191,159,123,238, - 57,198,106,181, 98,222,188,121, 58, 0,235, 66, 67, 67,215, 44, 95,190,188,123,183,110,221,100,217,217,217,218, 61,123,246,252, - 22,160,200,178, 11,130,112,153,192,114, 77,211,224,224,224, 64, 28, 45,107, 72, 72,200, 81,173, 86, 59,202, 96, 48,104,229,114, -121,176, 86,171, 53,185, 10, 44,145,159,227, 56, 62, 47, 47,175, 4, 64, 74, 72, 72,200, 81,120,105,230,228, 56,110,240,224,193, -131, 57,247,123, 80, 86, 86,134,210,210, 82, 88, 44, 22,244,232,209,131,145, 48, 86,201,165,162, 35,110,211, 58, 80,145,245, 39, - 57, 90, 68, 44,235,226, 40, 65, 79, 35, 13,215,175, 95,239,252,205,178, 44,190,254,250,235,128, 68,209,198,141, 27,125,118, 88, -119,107, 58,244,107,141,139,199,127,254,249,231, 32,132, 56,157, 44,150,101, 49, 97,194, 4,200,229,114, 76,155, 54, 13, 19, 38, - 76, 0,199,113,126,155, 14, 93, 5, 76,210,235,122,215,151,163,134, 66,225,232, 15,197, 48,140,171,216, 98, 2, 21,111,190,220, -188, 64, 90, 2, 92, 57,197,243,130,130,130,188,118,132,119,227,244,117,129, 95, 0,228,199,198,198,238,200,200,200, 8,217,191, -127, 63,102,206,156, 41, 53,153, 76,109,178,179,179,157,215,245,148, 94, 58,157, 78, 65, 75, 14, 69, 75,184, 89, 62,254,174,112, -235, 95,197,184, 54,227,249,248,116, 63, 30, 46,251, 92,121, 43, 24,134,177,122,184, 94,133, 7,113,229,126, 13,215, 99, 42,188, - 58, 90,254, 42, 11,127,130, 43, 16, 71, 75,175,215,255,182,110,221,186, 94, 15, 63,252, 48,231,171,217, 80,167,211, 33, 58, 58, - 26,199,142, 29,179,233,245,250,223, 2,112,202,154, 83,104,185, 35,187,188,188, 92, 98,181, 90,209,190,125,123,196,199,199,195, -104, 52,162,166,166, 70, 2, 96, 99,128, 28, 82,149, 74, 37, 1,128,154,154, 26,160, 97,168,105,106,135, 14, 29,112,224,192, 1, - 84, 87, 87,255, 8, 96,216,148, 41, 83,122,244,238,221, 91,250,253,247,223,235,159,121,230,153, 31,173, 86,107, 64, 74, 67, 16, - 4,179,205,102, 75,102, 89,214, 82, 83, 83,115,193, 53, 61,163,163,163,195, 85, 42, 21, 83, 86, 86,102, 13, 68,104,117,235,214, -109,239,249,243,231, 49,117,234,212,138,233,211,167,119,168,171,171,187, 84, 91, 91,107,115, 21, 91, 70,163,145,109,213,170,149, -124,222,188,121, 10, 0,232,214,173,219, 94,111, 66, 75,167,211,181, 86, 42,255,120, 49, 54,153, 76, 40, 45, 45, 69,105,105, 41, -202,202,202, 80, 87, 87,135,148,148, 20,232,245,250, 68, 90,205,252,101, 66,171, 81,243,153,107,249,118,125,144, 55,165,172,187, - 10,152,187,239,190,219,217,183, 75,116,200,196,109,197,138, 21,238, 29,204, 3, 18, 90,159,127,254, 57, 94,120,225, 5, 4, 5, - 5, 97,214,172, 89,141,154, 14,221,197,129, 32, 8, 76, 32,113, 79,126,195,128,210, 57,225,224,121, 30, 17,207,148, 53,106,162, -243, 32, 56, 2, 10,231,244,233,211,155,165,233,208,149, 51, 49,177,161,168, 44, 88,176, 0,163, 70,141,194,182,109,219,174,184, -233, 48, 45, 45,109,201,234,213,171, 67,142, 31, 63, 14,173, 86,139,138,138, 10,152, 76, 38, 20, 23, 23,123,109, 21,112,212,229, - 65,180,228, 80,252,201,245,212,190, 63,147,183, 57,175,199,249,121,128, 7, 44,180, 2,113,180, 76, 38,211,172, 23, 95,124,241, -185, 33, 67,134,132, 7, 7, 7,163,164,164,228, 50,145, 85, 95, 95, 15,181, 90, 13,131,193,128, 85,171, 86,105, 77, 38,211, 44, -127,226,192,106,181, 34, 42, 42, 10,149,149,149, 16,188,244,159,102, 89, 22, 10,133, 2,245,245,245,128,159, 78,230,158, 30, 24, - 22,139, 5, 86,171, 21, 86,171, 21, 22,139,197,239, 91,178,187,153,167, 82,169, 68,225, 1, 0,186,184,184,184,246, 65, 65, 65, - 40, 40, 40, 0, 26, 70,246, 13,185,253,246,219,249,170,170, 42,242,228,147, 79,110, 39,132, 60, 5,223,179,227,155,115,114,114, -146, 1, 64,161, 80,228, 2, 64,113,113,177,181,166,166,166,145, 83,168, 84, 42,201,136, 17, 35, 98, 9, 33,200,201,201, 73,150, - 74,165, 4,222, 71, 53, 26, 87,174, 92,121, 60, 36, 36,100,105, 86, 86,214,195,153,153,153,199,186,116,233,146,172,211,233,202, - 13, 6,131,193,104, 52, 18,137, 68, 34, 13, 11, 11, 11,218,176, 97,195,153, 93,187,118, 13,209,104, 52, 75, 87,174, 92,121,220, -155,243,166, 82,169,138,245,122,125,146,120, 79, 93, 69, 86,105,105, 41, 8, 33,200,207,207,135, 82,169, 60,239,175, 89,151,162, -229, 32,190, 84,185, 59, 47,238,251, 2, 21, 89,174,194, 96,195,134, 13, 62,231,208, 10,148,211, 85, 20,189,242,202, 43,152, 51, -103,206,101,142,214,180,105,211, 0, 0,111,191,253,118,192,125,180, 68,247,170,116, 78, 56, 98, 94,168,110, 20,118, 0, 96,196, -240, 53,173,204,131,227, 56, 76,157, 58,245,178, 78,234,174, 77,123, 1, 54,241, 53, 10,103,121,121, 57, 56,142, 67,120,120, 56, - 30,121,228, 17, 12, 29, 58,212,217, 4,217, 84,222,147, 39, 79,238,120,227,141, 55,186,166,165,165,225,253,247,223,175, 14, 13, - 13, 13,254,207,127,254,195,213,212,212, 48,190, 28, 45, 42,180, 40, 40,154, 65,104,137, 5, 44,208, 81,135, 94, 42,203, 33,104, - 60,215, 70,173, 94,175,127,228,182,219,110,251,105,217,178,101,138,182,109,219,226,228,201,147,168,174,174,134,217,108,134, 84, - 42, 69,108,108, 44,106,106,106,240,245,215, 95, 27,244,122,253, 35, 0,106,253,112,190,213,179,103,207, 47, 62,254,248,227,160, -244,244,116, 84, 87, 87,163,190,190,222, 41,132, 24,134,129, 70,163,129, 66,161,192,222,189,123,177,126,253,122, 3,128,183,252, -112,122, 82,115,176, 88, 44, 78,193, 21,128,208,114,229, 84,137,174,142, 94,175, 7, 0,107,235,214,173, 99, 0, 32, 63, 63, 31, - 0, 10, 83, 82, 82,166,180,109,219,150, 89,188,120, 49, 33,132,172,247, 34,178,156,156, 12,195, 84, 19, 66, 46, 1,136, 49,155, -205, 82, 0,168,173,173,181,180,106,213, 42, 74, 46,151, 11, 10,133, 66, 8, 10, 10, 18, 74, 74, 74,108, 54,155, 77, 10, 0,253, -250,245, 51, 3, 40,117, 91,163,208,149, 83, 32,132,104,231,207,159, 63,101,244,232,209, 25,125,250,244, 73,123,246,217,103,143, - 62,249,228,147,108,124,124,124, 88, 93, 93,157,241,244,233,211,151, 62,249,228,147,186,221,187,119, 15,225,121,254,220,252,249, -243,167, 0,208, 50, 12, 35,120,226,180,217,108,191,101,103,103,255, 43, 51, 51,147,187,112,225, 2,202,202,202,156, 34,171,172, -172, 12,157, 58,117,194,174, 93,187,236, 22,139, 37,187, 9,233,217, 92,160,156, 13, 47, 33, 68, 44,235,222, 4,150,248, 50, 21, - 40,167,171, 40, 26, 53,106, 84, 35, 23, 75, 42,149,226,135, 31,126,240, 88,111,120, 40, 87,141,226,238, 58,199,215, 27,111,188, -209, 72,180, 77,154, 52,201,107,117,230, 47, 61, 69,158,218, 5,241,141, 71, 29,122, 41,231,190,194, 41,214,157, 60,207, 99,210, -164, 73, 1, 59, 90,184,188,143,214,101,156, 98,220, 7, 12, 24, 0,189, 94,239, 20,178,222, 28, 45,127,233,105,183,219, 95,152, - 51,103, 14,209,104, 52, 55,107,181,218, 71,207,159, 63,191, 80,175,215,223, 84, 91, 91,235,211,209, 50,153, 76,114, 90,142, 40, - 39, 90,102,126,174,235, 71,104, 57, 30,146,104,221,186,117,163,181,179, 88,150,109,180, 53,165,159,129, 3, 27,242,242,242,238, -187,229,150, 91,190,125,225,133, 23,130,211,211,211,249,164,164, 36,232,116, 58, 20, 20, 20,224,216,177, 99,182,149, 43, 87,106, -245,122,253,163, 0, 2, 25,117,182,232,248,241,227,235,135, 13, 27,246, 78,239,222,189,159,158, 60,121,178, 36, 53, 53, 21,181, -181,181, 8, 11, 11, 67, 84, 84, 20, 78,157, 58,133, 85,171, 86,217, 43, 43, 43,191, 0,240, 30, 60,180,161,250,123,225,183, 88, - 44,120,232,161,135, 32, 8, 2,102,207,158,141, 64, 22, 84,118,129,197, 98,177, 16, 0,140,163, 63,151,222, 49,187, 52, 78,159, - 62, 13, 0,231,146,147,147,131, 1, 32, 59, 59,155, 65,195,252, 90,129,188,225, 19, 66,136,211,217,234,212,169, 83,129,123,229, - 40, 58, 89,162, 11,230, 47,220, 12,195, 24, 9, 33,229,122,189,126,216, 43,175,188,242,206,231,159,127,254,240,231,159,127,126, -217,113, 26,141,102,233,204,153, 51,223,123,224,129, 7,202, 25,134,241,218,143, 76,167,211,189, 61,102,204,152, 7,142, 28, 57, - 18, 28, 20, 20, 4,157, 78,135,170,170, 42, 88, 44, 22,164,164,164,160,188,188, 28,139, 22, 45,170, 51, 24, 12,239,210,226,248, -215,192, 85, 24,120,115,181, 2, 16, 89, 94, 93,157, 95,126,249,197,227, 28, 85, 77,229,116, 23, 27,129,206,109,229,235,165, 72, -156,150,198,211,148, 17, 77,172,215, 46,227,229, 56, 14, 31,125,244,145,115,210, 86, 79, 78, 86, 83, 28, 45,145, 51, 60, 60,188, -193, 38, 87, 42, 33, 8, 2,238,188,243,206,171,225, 21, 0,140,115,153,241,125,250,107,175,189, 54,165, 83,167, 78,169, 0,228, -174,105,208, 68, 23,159,130,130,194,159,208,178,219,237,197, 29, 59,118,108, 84,193,249, 91,204,212,106,181, 22, 7,120,221,245, - 58,157, 46,101,230,204,153, 47,170, 84,170, 33,122,189,190,171,163,226, 56,162,211,233,178, 77, 38,211,167,104,218, 34,208, 21, - 0,158,223,189,123,247,236, 97,195,134, 77,187,245,214, 91, 71,142, 31, 63,158, 33,132, 96,222,188,121,228,236,217,179, 43, 28, - 46,214,217, 43, 73,164,240,240,240,227, 95,127,253,117,244, 79, 63,253, 4,171,213,138, 79, 63,253, 20,193,193,193,199,171,171, -171, 3,165, 40,223,180,105,211, 55,125,250,244,121,108,215,174, 93,139, 0,252,190,117,235,214,133,125,251,246, 29,179,107,215, -174, 37, 0,142,109,222,188,121, 97,239,222,189,199,236,219,183,111, 57,128, 67, 77,168,124,157,206,150,205,230,185,165,209,139, -147,229,139, 83, 75, 8,177, 60,254,248,227,227, 31,120,224,129, 47,247,237,219,119, 83, 77, 77, 77, 87, 0, 8, 13, 13, 61,210, -171, 87,175,189,203,150, 45, 59,229,112,178,252,117,214,175,208,233,116, 35,186,118,237,250,227,251,239,191,175, 74, 75, 75,227, -218,183,111,143,194,194, 66, 28, 61,122,212,246,191,255,253,175,222, 96, 48,220, 13,224, 18, 45,142,127,157,208, 34,132, 32, 52, - 52,180,209, 75,148, 56,228,191,169,205,133,174, 15,102,113,169, 30,119, 94,111,156,190,166, 77, 16,161, 86,171,157,147,155, 6, -210,101, 65, 16,124,207,199, 70, 8,113,114,138, 91, 0, 34,203,239, 8, 65,199, 18, 56, 1,115, 6, 50,189,131, 74,165,130,213, -106,117,242, 6, 48,242,179,169,106,241, 23, 0,191, 88,173,214,211, 0,218, 81,113, 69, 65,209,130, 66,235,210,165, 75, 61, 91, -248,218, 90,147,201,244,158,201,100,122, 79,220, 97, 52, 26,175,150,243, 44,128, 7, 54,109,218,244,241,166, 77,155,196,118,132, -169,240,191, 94,162, 79,156, 60,121, 50,147,231,249,255, 46, 93,186,180, 55, 33, 4, 33, 33, 33,187, 11, 11, 11,255,211, 20, 14, -187,221,254,248,174, 93,187,158,131,163, 47,147,197, 98,121,124,199,142, 29, 47,162, 97, 61, 38,216,237,246,199,247,236,217,227, -252,221,196, 7, 37, 33,132,152, 8, 33,113, 94, 14, 49, 53,209,129, 19,157, 45,243,178,101,203,234, 1, 28,198, 31,243,100, 89, - 29,155,209,173,185,208, 23, 54,235,116,186,246,147, 38, 77,154, 46,145, 72, 6,235,116,186,120,149, 74, 85,100,179,217,126,211, -235,245,111,161, 97,141, 42,138,191, 8,102,179,249, 66,199,142, 29, 57, 79, 47, 80,190, 30,228,190, 94,172,236,118,123,113,135, - 14, 29,252,190,156,121,224,188,224, 67, 52,156, 75, 73, 73, 97, 3,229, 18, 97,177, 88,202,125,133, 51, 37, 37, 5, 77,229,244, - 23,247,228,228,100,143,113,247, 35, 8,189,198,221,102,179, 93, 17,167,175,244,244, 5,131,193,112, 41, 50, 50,178,222,104, 52, -242, 38,147,137,183,217,108,141,236, 71,133, 66, 81, 97, 48, 24,104,225,161,160,184, 26,161,245, 15,199,126, 52, 44, 47,209, 92, - 48, 29, 57,114,228, 49,167, 61, 85, 94,126,165, 60,238, 74,178,222,207,239,166, 8,163,102,119,132, 28, 66, 74,223, 76,116,149, -245,245,245, 79,138, 63,196, 62, 32, 20,127, 61,170,170,170,110,110,110,206,234,234,234,102,127, 81,171,172,172,204,104,129,184, -247,188, 94, 57,125,161,164,164,228,102, 63, 66,140, 22, 28, 10,138, 0,193,210, 36,160,160,160,160,160,160,160,160,104, 25, 48, -104, 24, 57,224, 9, 77, 25, 77, 48,228, 10,174,157, 77, 57, 41, 39,229,164,156,148,147,114, 82,206,235,142,211, 31, 55, 29,205, -216,194, 2,140,114, 82, 78,202, 73, 57, 41, 39,229,164,156,215, 31,231, 53, 9,218,116, 72, 65, 65, 65, 65, 65, 65, 65, 65,133, - 22, 5, 5, 5, 5, 5, 5, 5, 5, 21, 90, 20, 20, 20, 20,174, 72,109,221,186,245,137,212,212,212, 11, 0,198,182,240,181, 30, -233,221,187,119,149, 92, 46,223, 0, 32,149, 38, 61, 5, 5, 5, 21, 90, 20, 20, 20,215,180,200,234,218,181,235,246,147, 39, 79, -118,202,206,206,142,139,143,143,255,176, 37, 47,214,179,103,207, 15,182,109,219, 22,190,110,221,186,219, 98, 98, 98,114,174, 80, -108,165,182,105,211,230, 68,106,106,106, 49,128, 71,154, 57,136, 99, 51, 50, 50,170,101, 50,217,122, 42, 4, 41,174, 3,116, 1, -208,149, 10, 45, 10, 10, 10,138, 22, 20, 89, 59,119,238,140, 48, 26,141, 56,121,242, 36, 42, 42, 42, 14,181,228, 5,115,115,115, - 47,237,220,185, 19, 9, 9, 9, 88,178,100, 73,100,114,114,242,182, 38, 10,154,212,174, 93,187,110, 63,113,226, 68,167,236,236, -236,248,168,168,168, 79,154, 51,124, 55,221,116,211,180,109,219,182,133,109,216,176, 97,104,100,100,228,149, 10, 65, 10,138,191, - 51,228, 0, 30, 99, 24,102,111,151, 46, 93,142,164,165,165,253,206, 48,204, 46, 0,163,112,237,206,221, 25, 24, 86,175, 94,189, -117,245,234,213, 91,105, 30,161,160,160,104, 6,164,165,165,165,233,116, 58, 29,169,168,168, 32,159,125,246, 25, 9, 15, 15,183, - 0,248, 13,192, 74, 15,219,155, 0, 52, 1,114,107, 28,199,123,226,249, 45, 60, 60,220,242,217,103,159,145,252,252,124,114,252, -248,113,146,154,154,106, 8, 80,208,164,118,237,218,181, 82, 12,243,218,181,107, 9,199,113,235,155, 51, 81, 52, 26,205,177,156, -156, 28,114,246,236, 89,178, 97,195, 6, 18, 29, 29, 93, 78,197, 22,197, 53,130, 36, 0, 31,168,213,234,234,187,238,186,139,124, -245,213, 87,100,213,170, 85,228,199, 31,127, 36,179,102,205, 34,131, 6, 13, 34, 50,153,236, 2,128,215, 1,132, 94, 79, 90,132, -113, 68,140, 0, 24, 8, 0,153,153,153, 84,108, 81, 80, 80, 92, 45,118,234,245,250, 12,189, 94,143,186,186, 58,180,110,221, 26, - 60,207,123, 60,176,188,188, 28, 59,118,236,192,184,113,227,142,151,150,150,246,135,239,117, 47,195,186,119,239,190,115,243,230, -205,169,193,193,193,206,157,130, 32,192, 98,177,192,106,181,194, 98,177,192,100, 50,193,100, 50, 65, 38,147, 65,161, 80, 32, 60, - 60,252, 40,124, 55, 97, 56,221, 55,131,193,128,131, 7, 15, 98,244,232,209, 21, 85, 85, 85,253, 1,228, 54, 99,186,164, 70, 69, - 69,229, 44, 90,180, 40, 50, 37, 37, 5,231,207,159,199, 19, 79, 60, 81,121,238,220,185,126,205,124, 29, 10,138, 63, 19, 19,238, -187,239,190,105,209,209,209,108,151, 46, 93, 16, 27, 27, 11,147,201, 4,131,193, 0, 66, 8, 56,142, 3, 33, 4,181,181,181,200, -201,201,193,230,205,155, 77,151, 46, 93,250, 26,192,167, 0,242, 92, 68,214, 53,169, 69,156, 66, 43, 51, 51,147,161,121,133,130, -130,162,153,112,164,182,182,182,139,201,100,130, 78,167, 11,232,132,252,252,124,140, 29, 59,246,120,105,105,233, 45,240,188,168, -188,166,123,247,238,123,114,114,114, 82,141, 70, 35,180, 90,255,235,206,203,100, 50, 4, 5, 5, 33, 34, 34, 98, 23,128, 62,222, -222,196,187,116,233,178,127,215,174, 93,225, 6,131, 1,135, 14, 29,194, 35,143, 60, 98,169,174,174,222, 14,192, 91,224,171,209, -176,142,234, 57, 15,255, 37, 2,120,209,241,134,239, 9,170,200,200,200,190,139, 23, 47,150,182,109,219, 22,122,189, 30,163, 70, -141,170,206,205,205,237, 5,160,128,102, 29,138,127, 32,114, 79,158, 60,217,193,110,183,163,178,178, 18, 38,147, 9,122,189,222, - 41,180, 36, 18, 9, 8, 33,176,217,108,206, 23,163, 3, 7, 14, 32, 59, 59,155,228,231,231, 79,118,148,165,107, 86,139, 80,161, - 69, 65, 65,209, 18, 72,237,208,161,195,161, 95,127,253, 53, 72, 42,149, 98,213,170, 85,152, 60,121,178,181,186,186,122,155,187, -120,137,142,142, 78, 91,184,112, 97,114, 74, 74, 10,126,255,253,119,220,127,255,253,111, 1,152,238,129,243, 77,173, 86, 59,205, - 98,177,224,208,161, 67, 24, 51,102, 76, 65, 89, 89,217, 49,119, 17,147,156,156,220,239,147, 79, 62,225,123,244,232, 1,173, 86, -139,145, 35, 71,234, 79,157, 58,213, 27,192, 49, 47, 97,253,164,186,186,250, 21,187,221,142,186,186, 58, 36, 36, 36, 64, 42,149, -250,140,156,193, 96, 64, 82, 82,210,174,138,138,138,203,196, 91, 68, 68,196,166,243,231,207, 15, 82, 40, 20, 62, 57, 44, 22, 11, -138,139,139, 33,147,201, 96, 50,153,208,174, 93,187,175, 1, 60, 78,179, 14,197, 63, 81,104, 29, 62,124,184,195,119,223,125,135, -238,221,187,163,115,231,206,168,175,175,119,138, 46,179,217, 12,171,213,122,217, 73, 90,173, 22, 47,191,252,114, 30, 28,205,231, -215,170, 22, 17, 59,166, 77, 17,219, 68, 51, 51, 51, 7,208, 60, 67, 65, 65,113,181, 21,111, 94, 94, 94,250,144, 33, 67,182,173, - 88,177,162,213,240,225,195,209,174, 93, 59,254,222,123,239,141,212,235,245,131, 93, 15, 44, 43, 43, 11, 27, 51,102,204,254,162, -162,162,100,199,174, 94, 94, 56,123, 5, 7, 7, 35, 63, 63, 95, 20, 89, 61,225,214,204, 40,147,201,214, 31, 62,124,152,151,201, -100,216,183,111, 31,198,142, 29, 91, 89, 80, 80,224,175, 89, 46,212,108, 54, 67, 34,145, 0, 0,138,139,139,253, 70,238,252,249, -243, 16, 4,193,228,233, 63,150,101,229, 7, 14, 28, 64, 92, 92,156, 79, 14,150,101,221, 5, 93, 13,205, 54, 20,255, 80, 88,205, -102, 51,122,246,236,137,130,130, 2, 28, 56,112,192, 41,184, 42, 43, 43, 81, 82, 82,210,232,224,189,123,247,226,224,193,131,232, -223,191,191, 59,207, 53,169, 69,156,202,113,245,234,213, 3, 28,145,219, 74,243, 12, 5, 5, 69, 51, 33, 53, 46, 46, 46,103,209, -162, 69,145,177,177,177, 24, 52,104, 80, 81,105,105,105, 27, 15,199,173, 36,132,220,157,159,159,143,182,109,219,174, 2,112,207, -149, 28,147,152,152, 88,177,111,223,190, 86,199,143, 31,199, 35,143, 60, 82,225,232,243,229,175,239, 83,114,167, 78,157,246,109, -216,176, 33,156,101, 89, 28, 59,118, 44,144,166,195, 66, 52,244, 47, 57,231,225,191, 68, 0,147, 0,132,123, 57, 87,213,161, 67, -135,190,251,247,239,151, 50, 12,131,194,194, 66,177,233,176,167,131,151,130,226,159,134, 17,113,113,113,255,123,238,185,231, 66, -122,247,238,141,226,226, 98, 92,184,112, 1,151, 46, 93, 66,122,122, 58,210,210,210,112,246,236, 89,172, 95,191, 30, 7, 15, 30, -132, 92, 46, 71, 66, 66, 2,212, 75,191,195,127, 25, 28, 7,144, 70,181, 8, 5, 5, 5,197, 85,136, 45,169, 84,186, 62, 62, 62, -190, 28,158,231,165, 10, 27, 57,114,100,137,221,110, 39,103,207,158, 37,104, 24, 61, 8, 47, 66,139,156, 61,123,150, 68, 71, 71, -231, 3, 8,243,112,204,216,152,152,152, 34,165, 82,121, 20, 77,156,214,161,125,251,246, 21,167, 78,157, 34, 69, 69, 69,100,221, -186,117, 36, 34, 34,162, 37, 70, 4,166,118,236,216,177,178,174,174,142, 24,141, 70,146,147,147, 67, 18, 19, 19, 43, 64, 71, 30, - 82,252,243, 17, 12, 96,106, 74, 74,138,241,227,143, 63, 38,235,215,175, 39, 11, 22, 44, 32,211,166, 77, 35,227,199,143, 39, 25, - 25, 25, 36, 35, 35,131,140, 26, 53,138,188,242,202, 43,228,246,219,111, 39,106,181,186, 22,192,189, 52,233, 40, 40, 40, 40,154, - 23,137, 0,102, 57, 4,213,202,145, 35, 71,150,152, 76, 38,114,225,194, 5,242,195, 15, 63, 16, 52, 76,221,224, 9,111,150,150, -150,146,210,210, 82,113,106,132,124,252, 49,173,195, 87, 14,222,171, 18, 65, 73, 73, 73, 21,251,247,239, 39,133,133,133,100,237, -218,181,196, 33,216,154, 13, 10,133, 98,131, 86,171, 37, 70,163,145,108,218,180,137, 78,239, 64,113, 45, 34, 10,192,220, 27,110, -184,193, 58,123,246,108,178,114,229, 74,242,217,103,159,145, 17, 35, 70,144,215, 95,127,157, 60,248,224,131, 36, 50, 50,210, 4, - 32, 11, 64, 8, 77,174,171, 7, 93,217,156,114, 82, 78,202,233,142,245,199,143, 31, 39, 34,236,118, 59,185,112,225, 2,217,176, - 97, 3,137,137,137, 57,134,198,243,105,185,114,106, 58,119,238,124,242,212,169, 83,228,252,249,243,196, 98,177, 56, 57, 78,158, - 60, 73, 0,108,109,134,112,166,198,199,199,151,111,217,178,133,156, 58,117,138,196,196,196, 20, 53,103,220,147,146,146,202, 43, - 42, 42,200,166, 77,155, 72,100,100,164, 63,145, 69,243, 18,229,252, 39,115, 38, 1, 88,220,163, 71, 15,251,156, 57,115,200,211, - 79, 63, 77, 18, 19, 19,237,142,151,162,248,235, 73, 8, 93,223,179,180, 82, 80, 80,252, 21,144,239,222,189, 27,114,185,220,185, -227,247,223,127,119,157, 71,203,219,188, 13,218, 19, 39, 78,220, 50,124,248,240,109,115,230,204,233,236, 58,138,105,203,150, 45, - 0, 96,106,134,176,229, 94,184,112,161,255,176, 97,195, 62,141,136,136,184,177,180,180,244,157,230,140,120, 97, 97,225, 43, 93, -187,118,157, 94, 87, 87,167,213,235,245,163, 64,231,206,162,184,118, 81, 8, 96,244,129, 3, 7, 62, 60,112,224,192, 91, 0, 8, -128,247, 1,156,184,222, 18,130, 10, 45, 10, 10,138, 63, 27, 99,159,124,242, 73,247,206,226,251, 0,252,159, 15,145, 37,226, 82, - 65, 65, 65,159, 59,239,188,243, 57, 52, 30,157, 40,118, 78,111, 14,228,154,205,230,161,238, 35,165,154, 9, 75, 74, 75, 75,151, -208, 44, 64,113, 29,225, 24,128, 7,175,231, 4,160, 66,139,130,130,226,207,198, 57, 0, 79, 92,197,249, 90,120,158,103,139,130, -130,130,226,111, 7,186,168, 52, 5, 5, 5, 5, 5, 5, 5, 5, 21, 90, 20, 20, 20, 20, 20, 20, 20, 20,255, 44, 48,240, 62,114, - 32,187, 9, 60, 87, 50,162, 33,155,114, 82, 78,202, 73, 57, 41, 39,229,164,156,215, 29,167, 63,238,108, 80,180,168, 0,163,156, -148,147,114, 82, 78,202,249,207,230,100, 28, 27,235,216,196,223,127,231,184, 51,127,227,184, 95, 47,156,215, 36,254,170,206,240, -226,141, 16,208, 48,228,147,226,239, 7,215, 2, 66,232,125,162,160,160,104, 98,221, 33,113,121,216,218, 29, 27,254,134,117,137, -171, 40, 16,174,242,185,212, 18,113,191,158, 57,175,121,161,117,163, 74,165,154, 44,147,201, 82, 24,134,177,235,116,186, 35, 38, -147,105, 62,128, 93, 87,121,205,175,162,163,163,199, 86, 85, 85, 9, 44,203,130,101, 89, 48, 12, 3,150,101,193,243,188,161,182, -182, 86,115, 37,164,145, 93, 70,188,202, 49,204, 11,118, 98,159, 95,126,116,213, 52,127,251, 41,124, 23, 24,169, 84,122, 95,120, -120,120,104, 69, 69, 5, 97,217,134,174,124, 18,137, 68, 92, 8,215, 86, 91, 91,251, 77,160,100, 97, 97, 97,123,195,195,195, 67, -197,243, 25,134, 65, 85, 85, 85, 77,121,121,249, 77, 0, 16, 20, 20,180, 67,165, 82, 69,112, 28, 7,137, 68, 2,137, 68, 2,189, - 94, 95, 85, 85, 85,117, 11,189, 21,255, 76, 44, 95,190, 92, 50, 44,254,137,118, 28, 49,116, 99, 89, 18, 34, 8, 76,173,141, 81, -252,190,254,194, 87,103, 2, 57,127,212,168, 81,118,154,138,127, 30,100, 50,217,236,232,232,232,127,215,215,215,235, 25,134, 33, - 12,195,128, 97, 26,222,179,220, 63,237,118,123,113, 85, 85, 85, 79, 63, 15, 91, 94, 38,147,205,140,137,137, 25,163,215,235,245, - 14, 62,143,188, 0, 96,181, 90,139, 43, 43, 43,123, 6, 84,215, 71, 70,206, 87, 40, 20,143,234,245,122, 29,195, 48,130,235,127, -132, 16,215,135,249,217,202,202,202,126,254,132,129, 76, 38,251, 52, 58, 58,250, 95,142,184, 59,195,121,181,113,143,142,142, 30, -163,211,233, 2,226,244, 17,247,203, 56, 91, 34,156,127, 83,206,107, 95,104,165,167,167,127,183,103,207,158, 14, 60,207, 3, 0, -140, 70, 99,215,185,115,231, 62,246,198, 27,111,100, 1,152,120,133,215, 91,216,175, 95,191,135,114,114,114,216,149, 43, 87,178, -189,122,245, 2,195, 48,176,219,237,176,219,237,232,210,165,139,226, 74, 35, 18,162, 82, 78, 56,184,241,191, 65, 55, 14,121,242, -133,114, 96,154,191,253,190, 4, 38,128,183, 1,164, 52, 49, 8, 21,142,116, 57,232, 69,108,236,100, 89,182, 73,156,130, 32,228, - 95,186,116,169,143, 15, 1,211,236,156, 14,145,117,127,191,126,253, 66,178,179,179,153,162,162, 34, 70,161, 80, 64, 16, 4,216, -237,118, 88,173, 86,220,112,195, 13, 77,114, 66, 67, 67, 67, 53, 19, 38, 76,104,119,199, 29,119,224,135, 31,126,192, 99,143, 61, -134,190,125,251,230,149,151,151, 3, 0, 84, 42, 85,196,241,227,199, 59,132,135,135, 67,175,215,163,182,182, 22,183,221,118, 27, -170,170,170,254,209,133,235,230,244,132,247, 25,150,113,206, 21, 69,108,246,234, 61,191,151,188,125,181,188,225,225,225, 7,229, -114,121,180, 95,181,236,242, 32, 51, 26,141,101,213,213,213,221,253,156,146, 4,224, 46,137, 68,210,158,227,184,142, 0,146,108, - 54, 91, 52, 0, 72,165,210, 50,137, 68, 82,104,181, 90, 79,153,205,230,211, 0,126,129,143, 5,144,135,197, 63,209,142,177,233, - 71,214,153,132,225,202,182, 89,169,250,179, 19,114,149,114,253,218, 97,241, 79,172, 8, 84,108,253,133, 72, 5,176, 12, 13, 11, - 74, 63,141,134,121,128,174, 6,241, 0,238, 70,195,154,143,201, 22,139,165, 18,192, 1, 52,244, 67,201, 3,144, 24, 25, 25,185, - 68, 16, 4, 83, 85, 85,213, 19,240,176, 80,117,239, 30,173,247,179, 44,155, 32,122, 2, 2,177, 23,239, 62, 80,220, 44, 15, 40, -150,101, 63,205,204,204,252,215,138, 21, 43,148, 7, 14, 28, 80,118,238,220,217,249, 66, 36, 8, 2, 26,107, 23, 32, 57, 57,217, -159,171,193,177, 44, 59,123,228,200,145, 15, 47, 94,188, 88,121,238,220, 57,101, 92, 92,156,147,211, 85,108,137,136,139,139, 11, - 52,239,127, 53,116,232,208,209,139, 22, 45,226, 87,173, 90,165,104,213,170, 21, 34, 34, 34, 32,149, 74, 47, 59,246,150, 91,110, - 17,252, 71,157,253,244,158,123,238, 25,253,253,247,223, 43,247,236,217,163,236,210,165, 11, 36, 18,201, 85,199,125,196,136, 17, - 15,127,247,221,119,202, 35, 71,142, 40,219,183,111, 15,209, 84,112,231, 99, 89, 22,173, 91,183, 14,136,243,238,187,239,126,120, -217,178,101,202,131, 7, 15, 42, 59,118,236,232, 76, 79, 66,200, 21,135,243,111,206,121, 93, 56, 90, 50,139,197,130,173, 91,183, -130,101, 89,132,135,135, 99,236,216,177,216,184,113,227,132, 77,155, 54,173,190, 2,103,235, 43,135,200,226, 1,224,199, 71, 71, - 32,159, 7,198,149,155, 33,149, 74,113,246,236, 89, 72, 36,146, 38, 91,139,114,185,124, 12, 33,100,146,254,194, 62,185,193, 96, -133,177,100,191, 82,161, 80, 56, 31, 0,250, 18,199,254,139,251,149, 10,133,226,172, 68, 34,153, 90, 95, 95,191,208, 27, 95,251, -246,237,191, 61,118,236, 88, 39, 79, 5,215, 23,244,122, 61,218,180,105,147, 88, 93, 93,221,222,211,255, 60,207, 39,156, 59,119, - 46, 74, 38,147,129, 16,226, 44,196,238,159,226,119,139,197,130, 27,110,184,193,226,235,154,190, 56,109, 54, 27,130,130,130, 32, -186, 81,102,179, 25,245,245,245,254, 56, 25,169, 84,122,159, 40,178, 0, 96,233,210,165,136,137,137, 65, 84, 84, 20, 84, 42, 21, - 20, 10,133,147, 51, 80, 72, 36, 18, 12, 27, 54, 12,239,190,251, 46,178,178,178,240,218,107,175, 53,170,104,121,158, 71,120,120, - 56,214,173, 91, 7,141, 70,131,196,196, 68,136, 2,255, 31,109, 11,178, 76,248,174,253,231,157, 14,237,237,183,118,226,110,238, -206,125,238,120, 84,130,101, 1, 65,104,120,116, 50, 12,136,205, 42, 92,218,127,164,228,157, 0,210, 51,174,176,176, 48, 42,208, - 52,178,217,108,136,139,139,147,248, 57,108,120, 90, 90,218,143,207, 62,251,172,180,125,251,246,140, 84, 42, 5,199,113,224, 56, - 78, 20,232,137,132,144, 68, 65, 16, 6,150,149,149,145,185,115,231,126,184,101,203,150,123, 1,172,245, 88,177, 16, 67,183, 58, -147, 48,124,219, 33,220, 52,114,200, 27, 88,183,124,194, 77,253,210, 5, 4, 43, 13,103, 0,252,157,133, 86,106, 90, 90,218,161, - 61,123,246, 4, 89, 44, 22,244,238,221,123,119,110,110,110, 15, 92,217, 12,238, 97, 0, 62,153, 56,113,226,232,103,159,125, 86, - 18, 26, 26, 10,153, 76,134,186,186, 58,156, 57,115,102,204, 55,223,124, 67,190,248,226,139,255, 3, 16, 92, 88, 88,152,177,119, -239, 94, 12, 26, 52,232, 69, 0, 47, 95,174, 8, 36, 9, 59,246, 22, 68,137,191,239, 30,214, 85,154,209,147, 45,107,112,113,220, -143, 38, 16,236, 66,241,222,195, 23, 2, 17, 98, 31,142, 24, 49,226,145, 21, 43, 86,168, 1, 96,222,188,121,184,239,190,251, 16, - 30, 30, 14,165, 82, 9,169, 84, 10,158,231, 27,125,250,121,216, 74, 0,124,248,224,131, 15,142, 92,188,120,113, 48, 0, 44, 94, -188, 24, 35, 70,140, 64, 68, 68, 4,130,131,131, 33,147,201, 32,145, 72,154,156,152,225,225,225, 95,245,189,233,166,199, 23, 45, - 90, 4, 0,120,235,165,151,112,199,205, 55, 67,173, 84, 64,169,144, 65, 76, 11,153,132,199,237,227, 94,240,171, 47, 1,124,124, -223,125,247, 61,240,253,247,223, 7, 3,192,129, 3, 7, 80, 94, 94,142,232,232,104, 40, 20, 10,200,100, 50,103,156, 25,134,129, - 66,161, 8, 40,238,247,221,119,223,200,239,190,251, 46, 24, 0, 22, 46, 92,136, 97,195,134, 57,227, 46,151,203, 33,149, 74, 27, -109,238,162,211, 19,231,189,247,222, 59,114,217,178,101,193, 0,240,205, 55,223, 96,200,144, 33, 8, 11, 11,115,166,167,200,213, -148,123,244, 55,231,188, 62,132,214,161, 67,135,238, 87,169, 84, 51, 0, 68,202,100,178,208,135, 31,126,184,245,227,143, 63,142, - 7, 31,124, 16,155, 54,109,122,170,137, 66,139,137,142,142, 30,155,147,147,227,124, 66,155,201,101,130,169,201, 15,112, 7, 38, -237,127,234,169,152,172, 51,245,216,189,247, 20,130,192, 50,123, 63,254, 56,210,120,250, 52,236,102, 51,222, 59, 91,215,176,223, - 70,152,173,175,140,139,185,113,246,255, 77, 2,176,208,135, 11, 32, 55,153, 76,200,203,203,107, 82, 32,138,138,138, 32, 8,130, -201,151,187, 32,149, 74,113,244,232,209,203, 84,189, 39, 36, 38, 38,250, 42,128,126, 57,215,175, 95,143,241,227,199,227,212,169, - 83, 16,151, 42, 9,128,147, 9, 15, 15, 15, 21, 69,150, 40,130, 20, 10, 5,120,158,103, 56,142, 99,196,166, 61, 71,225, 10, 72, - 24,179, 44,139,111,191,253, 22, 31,124,240, 1, 94,127,253,117,204,159, 63, 31,221,186,117,251, 35, 19,114, 28,180, 90, 45,194, -194,194, 16, 22, 22,214, 72, 32,254,147,225,126,155,103,206,154,163,132, 64, 26, 58,129, 16, 1, 16, 0, 2, 2,129, 8, 40,187, -112, 6,147,223,253, 40,224,167, 15,207,243, 56,125,250,180, 51, 31,136,206,176, 40,140, 92, 93,131,164,164, 36,191,121, 73, 42, -149, 78,249,249,231,159,101,223,126,251, 45,190,255,254,123, 48, 12, 3,185, 92, 14,149, 74,133,208,208, 80, 68, 68, 68, 56,183, -132,132, 4,230,127, 61,184,254,121, 0, 0, 32, 0, 73, 68, 65, 84,255,251,159,180, 91,183,110, 83,180, 90,237, 90,207,247,156, -132, 40,219,102,165,142, 28,242, 6, 0, 96,228, 27, 4,151,242,166,221,200,214,188,243,119, 94, 68, 54,181,107,215,174,219,119, -238,220, 25,164,215,235, 33, 8, 2,214,174, 93,171, 28, 50,100,200,182,130,130,130,126, 77, 21, 91, 73, 73, 73,171,118,238,220, -121, 75,100,100, 36,106,107,107,161,213,106, 97,181, 90, 33,145, 72,144,152,152,136, 15, 63,252,144,185,231,158,123,158, 31, 51, -102,140, 81,161, 80,136,206, 70,146,231,188,212, 56, 51,205,253,236,243, 80, 66, 26,242, 15, 17, 72,163,207,234,242, 66,188,244, -202,228,128,194,216,186,117,235,167,127,248,225, 7,181,171,179,228, 42, 2, 92, 69,150,184,249, 17, 6,108,155, 54,109, 30, 95, -178,100,137,147,179, 85,171, 86,224, 56, 14, 60,207,131,227, 56,176, 44,139,109,219,182, 97,198,148,137, 8,139,140,195,156,207, -230,249, 13,103,100,100,228,252, 97,195,134, 61,186,112,225, 31, 85,119,215,182,109,113,231, 45, 55, 35,170,149, 6,173,194,130, - 27,210, 73, 96,240,251,169, 2,191,207, 35, 0,108,235,214,173,159, 88,190,124,185,218,245,133, 80,140,171,248,242, 44,186,248, -102,179, 25, 61,123,246, 12, 40,238,174,156,162,219, 38,138, 54, 49, 61,197,235,136,229,213, 79, 56, 31, 23,133,176, 67,112, 54, -226,224,121, 30,203,215, 45,242,234,102, 95, 41,103, 83,239,187, 59,103, 97, 97, 33,166, 79,159, 14,241,165,205,181,171, 80,124, -124, 60,230,204,153,227,183, 94,114, 43, 3,189, 0, 68,186,236, 50, 3,144,185,124, 86, 48, 12,179,207,195,113,226,126,222,209, - 98, 21,137,134,126, 99,117, 0, 66, 61,240,121,227,169,116, 60,243, 34,221,142,111,116, 29,175, 66,107,245,234,213, 98, 41, 30, -152,153,153,185,213,241,189, 70, 46,151, 23, 41,149,202, 24, 0,117,107,215,174,197,127,254,243, 31, 56,172,213,187, 67, 66, 66, -142,121,112,117, 14,153, 76,166, 55, 0,148, 57,118,137, 67, 52,217,234,234,106, 97,227,198,141,236,226,123,135,194, 76,128,244, - 73, 51, 48, 44, 51, 19,235,227,101,144, 0,184,233,100, 37,148, 74, 37,167,213,106,173,174,253,182, 60,244,221,202,118,203, 80, -146, 32,142, 67,239,237,107, 48,126,251, 26,220,164,146,161,106,197, 50,212,237,200, 1,203, 50,232,175,106,133,215, 30,217,136, - 62, 26, 57,100, 38, 29, 88,150,245,148,179,157,156,121,121,121,163, 52, 26,205, 12,183, 4, 14, 4,249,104, 88,199, 9, 94,194, - 9, 66, 8,186,117,235, 6,134, 97,156,110,129,184,137,133, 78,220, 14, 30,244,216, 2,233,149,211,209, 4, 7,149, 74,133,223, -126,251,205,121,204,224,193,131, 97, 52, 26, 17, 30, 30, 30, 16,103, 69, 69, 5, 41, 41, 41, 97, 22, 47, 94, 12,158,231, 17, 17, - 17, 1,165, 82,201, 44, 90,180,104,162, 84, 42, 77, 48, 26,141,130,217,108,134, 76, 38,155, 35,222, 31,142,227,116, 90,173, 54, -194, 27,167, 68, 34,193,179,207, 62,139, 87, 95,125, 21,243,231,207,199, 83, 79, 61,117,153,227,101, 52, 26,209,170, 85, 43,167, -216,242, 80, 0, 91, 98,184,111,203,114, 10, 4,199, 14,174,199,241, 35,217, 16,236, 2,236, 2, 1, 33,118, 8, 54,224,192,198, -221, 29, 46,230,151,196, 19,144,134,174,183, 0,228,181,245,182, 1, 17,178,142, 0, 86,110,173, 50,207,246, 23, 78,142,227, 96, - 52, 26,241,243,207, 63,227,228,201,147, 88,187,118, 45, 12, 6, 3, 90,181,106,133,208,208, 80,220,124,243,205, 24, 51,102, 12, -146,146,146,252,198,157, 16,178,176,168,168, 40,189,111,223,190, 76, 77, 77, 13,106,106,106, 96, 48, 24, 96,183,219, 97,179,217, -192,113, 28,130,130,130,160, 80, 40, 16, 29, 29, 13,163,209, 72, 76, 38,211, 66,111,156,130,192,212,234,207, 78,200, 93,183,124, -194, 77, 35,223, 32, 88,241, 1,131,118,109,228,250,223,246, 7, 63,190,114,251,107,183, 1, 32, 2,113, 90, 11,196,106, 23, 42, - 95,157,248,201,243,127,250, 61,186, 92,100, 69, 24, 12, 6,212,213,213, 53,216,250, 50, 25, 86,172, 88,209,234,174,187,238,202, - 41, 41, 41,233,239, 67,108, 93,198, 25, 28, 28,156, 40,145, 72,112,244,232, 81,124,241,197, 23,248,237,183,223, 80, 86, 86,118, - 41, 46, 46, 46,100,224,192,129,236, 75, 47,189,132,244,244,116,124,253,245,215, 65,254, 56, 9, 33, 40,204,219,134,194,211,219, - 33, 8, 13,174,117,195,230,249, 59, 9, 48,238, 58,157,206,120,232,208, 33,245,151, 95,126,137,168,168, 40, 36, 39, 39, 67,169, - 84, 34, 40, 40,168,209, 67,214,245,193,235,175,108, 26, 12, 6, 99, 97, 97,161,250,187,239,190, 67, 68, 68, 4,146,146,146,160, - 84, 42, 33,147,201,192,113, 28, 24,134,193,226,197,139,177,244,221, 71, 80,120,234, 8, 70,220,121,155,223,112, 42,149,202, 71, - 23, 46, 92,216,200, 2,137, 14, 11, 3,199,179,144,240, 12,194, 6,223, 11, 0,184,180,233, 39, 95,179, 67,186,114, 50,117,117, -117,198, 61,123,246,168,247,239,223, 15, 65, 16,144,148,148, 4,189, 94, 15,141, 70,227,140,255,198,141, 27,113,207, 61,247,224, -219,111,191, 69, 70, 70,134,223,184,215,215,215, 27,143, 28, 57,162, 94,178,100, 9,194,195,195,209,186,117,107,103,220,197,141, -231,121, 72, 36, 18,164,164,164,160,182,182, 22,106,181,218,239, 61, 58,112,224,128,122,201,146, 37, 8, 11, 11, 67, 66, 66,130, -211,113, 19,197,209, 7,159,191,219,136, 32,136,137,189,106,206,166,222,119,119,206, 17, 35, 70,160, 93,187,118,208,104, 52, 80, -169, 84, 78,110, 95,156, 94,180,136, 83,111, 51, 12,179,218,165, 76,100, 50, 12,179,218,245,211,219,113,142,175,253, 39, 78,156, -216, 51, 43, 43,107,122, 70, 70,198,119, 59,119,238, 92,234,141,207, 27,207,196,137, 19,211,178,178,178,166,187, 30,239,225, 58, -222, 29,173,204,204, 76,198, 17, 73, 6, 64,114,143, 30, 61,246,109,218,180, 41, 60, 56, 56,216,121,240,249,243,231, 81, 83, 83, -131,224,224, 96,205,204,153, 51, 53, 3, 7, 14, 68,116,116,180,243, 13, 32, 47, 47,239,134,212,212, 84, 45, 0,119,223, 86, 96, - 89, 22,125,250,244,193, 49, 71,107,199,176,204, 76, 36, 36, 36, 56, 59,121, 4, 5, 5,225,249,231,159,103,198,143, 31,207,137, -110, 6, 33, 4, 6,131, 1,177,177,177, 10, 95,174, 14, 0,164, 25, 42,241,211,192,254, 96, 25, 64,127,112, 47,164, 50, 6,172, -132, 65,119, 82,133, 95, 7,245, 7, 3,192,124,120, 23, 2,112, 97, 14, 2,184,173,101, 28, 14,130, 51,103,206, 4,228,104, 57, -226,197, 92, 41,167,232,104,236,220,185, 19,118,187, 61, 80, 78,194,178, 44, 84, 42, 21, 98, 98, 98,160, 80, 40,160, 84, 42,153, -239,190,251,238,237,228,228,228,216,241,227,199,179, 90,173,150,237,211,167, 15,238,187,239, 62, 78,108,226, 76, 75, 75,243, 27, -151,173, 91,183,226,139, 47,190,192, 83, 79, 61,229,209,209, 98, 24, 6,145,145,145,208,104, 52,184, 86, 32, 0,176,216,172,208, -215, 27,156, 77,186,118,187, 29, 71,182, 28,238,144,127, 56, 47,109,245,119,223,242, 0, 96,220,242,147,235,105,177,247,125,190, - 44,117, 64, 24,191,103,235, 37,235, 30, 95,121,158,227, 56,140, 29, 59, 22, 89, 89, 89,120,244,209, 71,177,118,237, 90,188,243, -206, 59,248,247,191,255,125,153,171,229,239,205,209,106,181,254,247,177,199, 30,123,106,197,138, 21, 29,223,120,227, 13, 86,116, -180,148, 74, 37, 24,134,129,209,104,132,201,100,130,193, 96,192,169, 83,167,132, 39,159,124, 50,215,108, 54,255,215,107,115, 37, -163,248, 93, 41,215,175,109,155,192,182,211, 21,124, 20,220,247,230, 36, 3,163,232, 81,123,111,234, 16, 50,124,108, 82, 24, 8, - 1, 17, 0,129, 0, 38,147, 14,207, 63,255,162,228, 47,188, 85, 78,145,101, 52, 26,113,232,208, 33, 12, 26, 52, 8, 69, 69, 69, - 56,113,226, 4, 58,116,232,128, 69,139, 22, 69, 62,252,240,195, 57,229,229,229,253, 3,117,182,142, 28, 57, 50,241,198, 27,111, -252,180,190,190,190,186,190,190,254, 83, 0, 75, 1,212,156, 57,115,166,243,153, 51,103,230,174, 95,191,190,223,228,201,147, 37, -110,125,116, 36,222,236, 81,171,213, 6,131,193,228, 83, 96,137,191, 9, 17, 2,138, 56,195, 48,164, 99,199,142,184,235,174,187, -192,243, 60,148, 74, 37,212,106,117,163,102, 51,119,193,229,171,254, 0, 32, 48, 12,131,184,184, 56, 12, 31, 62, 28, 82,169,180, - 17,167,152, 15,135, 15, 31,142, 23,222,155,132,255,190,112, 43,190,120,172, 3,134,188, 95,230, 51,156,122,189,190,126,243,230, -205,138, 87,159,122, 10, 55,182,111,143, 86, 26, 13,218, 68, 71, 66, 33,151, 65,234, 26, 38, 38, 32,147,157, 0, 16, 36, 18, 9, -186,116,233,130,178,178, 50, 20, 20, 20,160,160,160, 0, 44,203,162,111,223,190, 78, 23,230,244,233,211,120,239,189,247, 96, 50, -153, 2,142,123,251,246,237,113,235,173,183, 66, 38,147, 65,169, 84, 54,106, 50, 20,211,180,174,174, 14,237,218,181,195,202,149, - 43,145,154,154,234,151,179, 83,167, 78, 24, 48, 96, 64,163,244, 84, 40, 20, 78, 81, 4, 0, 69,123,234,157,215,136,143,143,111, - 18,231,134,189,231,241,229,198,205, 48,153, 5,104,245,214, 70, 39,196,182,210, 96,251,146, 55, 2,138,187,200,185, 96,193, 2, -212,212,212, 56,141, 3,241,165, 92, 52, 81, 90,183,110,141,121,243, 60, 59,153,110, 90,196,211, 51, 47, 51,192,231,173,120,156, -152,185,228, 89, 89, 89,211,221,207,247,199,231,250,191,219,249,102, 55,113, 86,214,164,166, 67,185, 92,254,230,230,205,155,195, -107,107,107,113,250,244,105,176, 44,235,108, 83,231, 56, 14, 22,139, 5,103,207,158, 69,120,120, 56,202,203,203, 33,151,203, 33, -145, 72, 96, 54,155, 1,160,187,183, 7, 56, 33, 4, 47, 84, 52,116, 17, 90, 23, 39, 69, 33,128, 59, 43, 26, 10,134,216, 33,254, -135, 31,126,128, 90,173, 70,112,112,176,243,211, 95, 51,210,145,130, 51, 40,227, 25,176,187,182,129, 97, 1,150, 1, 24, 9,192, -178, 4, 44,195,128,221,149, 3,134, 1, 84, 17, 97, 77,173,128,253,117,140,247,217, 1,222,155,251,228,201,197,114,255,190,101, -203, 22, 4,202,217,174, 93, 59,168,213,106,231,182,126,253,250, 70,142,150,221,110, 71, 68, 68, 68, 32,156,164,193,141, 16, 16, - 21, 21, 5,158,231,153, 69,139, 22, 77, 76,249,127,246,174, 59, 60,138,106,125,191, 51,219,119,147,108, 54, 61, 33, 33,148, 0, - 82, 34, 77,225,194,165,151, 0, 66,104, 34, 69, 46, 4, 17, 81,138,168, 40, 17,129, 31, 42, 32,161, 73,147, 42,200, 37, 32, 72, -151, 46, 69,164,131, 5, 20, 36,129, 64, 8, 9,164,111,234,246, 50,237,247, 71,118,227,102,179, 73, 54, 33,194, 5,231,125,158, -121,118,167,189,115,206,156, 51,103,222,243,157,239,124,211,176, 97,200,244,233,211, 73,129, 64,128,235,215,175, 35, 33, 33, 1, -245,235,215,119,219,103,171,168,168, 40,235,147, 79, 62, 97, 62,249,164,100, 14, 69,100,100, 36,138,138,138,114,237,251, 53, 26, - 77,126,159, 62,125,202,248,109,228,229,229, 61,219,158,240,182,251, 72, 91,105, 24, 76, 38,232,180,134, 82,235, 80,110,102,142, -234,227, 15, 63, 16, 45,155,250, 6, 0,224,195,149,107,160,221,248, 87, 67,118,224,195, 81,129, 67,191,220, 53, 19,192,224,202, -248,117, 58, 29, 76, 38, 19, 34, 34, 34,112,249,242,101,104,181, 90,244,235,215, 15, 4, 65,148,206, 16,173, 6, 44, 25, 25, 25, -157,162,163,163,127, 93,177, 98, 69, 68,243,230,205, 9,189, 94, 15,131,193, 0,199,223,155, 55,111,114, 59,119,238, 76, 49, 24, - 12,255,182,153,206, 93,226, 68,198, 55,201,125, 67,223,220,251,227,117, 65,116, 96,163, 36,101, 70, 97, 4,157,159, 33,213,107, -140,119, 76, 12,151, 0,142, 1, 24,176,224,104, 22,140,109,216,235,105, 65, 46,151,127,117,241,226, 69, 63,147,201,132,107,215, -174, 97,204,152, 49,150,188,188, 60, 9, 0,252,231, 63,255,177,108,223,190, 93,210,168, 81, 35,108,219,182, 45,224,213, 87, 95, -221,163,215,235, 95,116,147,250,219,172,172,172,111,157, 55,250,249,249,173,126,248,240, 97,119, 71,159, 31,154,166, 75,147,227, -242,193,100, 1,138,162, 96, 52,154, 81, 92,172,133,197, 74,217,218, 76, 22, 12, 67,219,126, 89,208,182,118, 84, 34, 22,122,181, -125, 49, 88,199,113, 28, 72,130, 40,186,246,103,118,221,202, 68,187,171, 33, 46, 55,173, 89,206, 96,236,179,204,252,252,252, 32, - 18,137,240,237,183,223,226,198,165, 19,144, 8, 56, 48, 52, 5,154,178,130,161, 44, 16, 9, 4,248,241,250, 3, 68, 53,243,114, - 75, 16,250,251,251, 99, 64,199,142,136,238,216,177,100,122,155, 80, 8, 79,169, 20, 10,177,172,196,146, 5,128, 99, 72,119,131, - 8,176,246,116, 6, 5, 5,225,183,223,126,195,180,105,211,176,120,241, 98,200,229,242,210,217,207,183,111,223,198,238,221,187, - 17, 21, 21, 85,237,188,219, 45,120, 51,103,206, 68,102,102, 38, 86,174, 92,137,151, 94,122, 9, 34,145, 8, 69, 69, 69,248,247, -191,255,141,156,156, 28,183, 56, 29,135,247, 36, 18, 73, 25,235,147, 93, 0, 86,183,140, 28, 57,223, 24, 18,130, 67,151,118,130, - 0,129,171, 59, 62, 40, 35, 10,215,239,186, 80,109,206,185,115,231,150, 73,167, 59,214, 44,119,225,100,117,170,242, 56,130, 32, -174,217,141,173, 51,103,206,156, 69, 16,196,145,153, 51,103,206,138,139,139,187,229, 14,159,171,253, 4, 65, 28,181,137,176, 1, - 14,219,174, 85, 75,104, 41, 20,138,246,158,158,158,184,119,239, 30,250,245,235,103,201,207,207, 79, 18,137, 68, 77,242,242,242, -164,185,185,185, 48, 24, 12,186,249,243,231, 63, 0, 32,239,208,161, 67,163, 31,127,252, 17,143, 30, 61,194,246,237,219, 1,224, -128,107,159, 13, 18, 44,203,150, 86, 10,231,110,155, 64, 32,192,149, 43, 87,112,229, 74, 89,215,175,205,155, 55, 87,249,194,120, -245,251,195,184,126,253, 58, 28,195, 3,216,255, 59,110,147,201,100, 64,229, 51, 60,202,160, 42,199,248,170, 28,224, 93,193, 93, -223, 47, 87, 51,115, 42, 66, 70, 70, 70,133,231, 95,185,114,165,140, 69,171, 42, 78,129, 64, 0,134, 97, 32,151,203, 9,177, 88, - 76,136,197,226, 48,187,200, 18, 8, 4,165, 15,140, 84, 42,133, 84, 42, 45,211, 75,173, 8,153,153,153, 61, 50, 51, 51, 43,220, -175, 86,171, 59,169,213,106, 60,143,176, 82, 20,140, 6, 11,180, 58, 35, 62,143,251,111,201,198,207,241, 51,128,159, 59,189, 51, - 13,147,251, 70,245,172,238, 48,181,253,126, 7, 6, 6,226,220,185,115, 32, 8, 2,123,246,236,129,183,183, 55,250,246,237, 11, -165, 82,137,153, 51,103, 98,248,240,225,213,109,204,138,243,243,243, 59,189,255,254,251,191, 46, 93,186, 52,188,110,221,186,176, - 88, 44,176, 90,173,176, 88, 44, 72, 78, 78,198,206,157, 59, 31, 25, 12,134, 78, 0,138,171, 34, 59,145,241, 77,242,254,243, 31, -102,246, 30,249,170,241,118,206, 15,200,206,206, 7, 77,103,128,101,104, 88,105,166,196,194, 71,211,160,105, 6, 98,177, 64,185, -244,139, 15, 78,177,224, 64,146,132, 5,192, 43, 79,170,140, 84, 42, 85,164, 90,173,198,221,187,119, 17, 19, 19,147,157,159,159, -159, 8,160, 23, 0,228,231,231, 95, 28, 51,102, 76,243,248,248,248,224, 6, 13, 26,192,211,211, 83,169,215,235,171,162,244, 4, - 48, 25, 64, 31,148,248,129,216, 81, 0, 96, 62, 73,146,210,107,215,174,149,155,105,119,254,252,121, 0,248,217,117, 15,200,102, -209, 50,153,160,206, 47,196,132,119,230,252,213, 51, 2, 87, 70, 92,112,224, 48,233, 93,200, 0, 32, 47, 39, 25,111, 76,152, 38, -173,170, 67,224,234, 69, 88, 13, 31,157, 50, 29, 53,123, 29,245,244,244, 44, 25,126, 59,184, 19, 71,191,124, 7, 96,172,224, 40, - 35, 96, 53, 0, 86, 29, 88,139, 1,132, 88, 14, 80, 70,183,132,150,167,167, 39, 60,229,114, 4,170, 84,224, 56, 14, 66,129, 0, - 34,145, 16, 44, 5, 16, 12, 81, 42, 72, 89,247, 2,131,148,118, 42,229,114, 57, 82, 83, 83, 49,121,242,100, 88,173, 86, 12, 25, - 50, 4, 22,139, 5, 38,147, 9, 70,163, 17, 13, 27, 54,132,193, 96,112,139,207, 62, 91,209,211,211, 19, 98,177, 24, 31,124,240, - 1, 94,126,249,101,204,155, 55, 15,177,177,177,104,216,176, 33, 38, 77,154,132,157, 59,119, 34, 50, 50,178, 42, 94,206,177,140, -236,247,211, 46,182, 28,135,248, 0, 84,187,140,156, 57, 9,130, 44, 35,216,236,203,123, 99,123, 85,155,115,209,162, 69, 80,171, -213,229, 44, 89,246,255,161,161,161, 88,183,110, 93, 77, 71,134,236,214,163, 32, 23,251, 6, 56, 91,162, 56,142,107,103,243,157, - 50,199,197,197,221,138,139,139,139, 38, 8,226, 72, 92, 92, 92,116, 69, 22, 45, 87, 60, 46,246,187,253,210, 18, 58,141,141,118, -119,220,105,191,209,190,190,190,130,240,240,112, 82,169, 84,162,168,168, 8, 1, 1, 1,156, 90,173, 30,169, 80, 40, 62,251,238, -187,239, 26,233,116, 58,220,190,125, 27,171, 87,175,254, 25,192,170,202,132,214,177, 0,155,233,216,102,201,114, 92, 31, 56,112, - 32, 26, 52,104, 80,198,154, 37,151,203, 43,173, 60,246,125,118,139,144, 64, 32,192, 11, 47,188, 32, 79, 73, 73, 49,138,197, 98, -132,133,133,201,179,179,179,141, 98,177,184,218, 51, 93,170,114,140,175,202, 1,222,149,240,105,215,174, 93, 25, 11,150,227,175, -227,255, 67,135, 14, 85, 57,116,104,231,108,222,188,121,233,253,242,242,242,178,159, 11, 0,232,215,175, 31, 88,150,133,191,191, -191, 91,156,118, 81,107,115,128,135,201,100, 98,181, 90, 45,121,237,218, 53, 72, 36, 18,120,121,121,149,250,234,200,100,178, 82, -107, 38, 15, 87, 13, 2, 11, 11, 69,193,104, 52, 66,167,211, 1, 0,146,255,220, 87, 86,136,153, 53, 53,230,183, 55,176, 5, 5, - 5, 56,113,226, 4,126,248,225, 7,188,252,242,203, 46, 69,117, 53, 4,151,186,160,160,160,243,140, 25, 51,174, 46, 88,176,160, -142,175,175, 47,172, 86, 43, 30, 62,124,136, 45, 91,182,100, 26, 12,134,206,213,105, 96,192, 1, 20, 69,195,100, 48,163, 88,163, -197,103, 95,108,173,176,234, 1, 64, 65,238, 29, 12, 28, 52, 92,242, 36,203, 41, 51, 51,115,122,231,206,157,191,208,106,181, 69, - 6,131, 97, 56,128,101,142,253,169,252,252,252, 46,131, 6, 13, 90,225,235,235,251, 82,110,110,238, 44, 55, 40,103,166,166,166, -206,170, 87,175, 94,153,141,102,179, 25,245,234,213,123, 33, 55, 55,119,116,215,174, 93,255, 15,128,175,195,110, 47, 0, 39, 1, -172,171,168, 46,217,135, 14,117, 58, 35,148,170, 16,100, 60, 56, 87,101, 66,196, 2, 19, 56,150,173,180, 13,177,119,128, 43, 90, -170,152, 25, 87, 46,169,246, 99,237, 47,236, 87,134,141,197, 43,147, 23, 65, 33, 2, 22,190,209, 9, 13, 85, 0,228,190, 16,119, -253, 24,132,202,118,143, 38, 31,118,139, 60,118,195, 6, 92,183,181,199, 97, 1, 1,152, 49,114, 36, 56, 10,184,156,144,128, 93, - 63,253,132,145, 61,122, 64, 33,147,185,221, 97, 97, 89, 22, 98,177, 24,201,201,201,184,124,249, 50,154, 53,107,134,123,247,238, -149, 9, 67,193,113,156,187,249, 47,205,187, 84, 42,133, 72, 36, 66,118,118, 54,162,163,163, 33, 22,139,177,117,235, 86,156, 59, -119, 14, 51,102,204,192,248,241,227,209,189,123,119, 36, 38, 38,186,197,201,113, 92,185,217,138,206,195,185,213, 45, 35,103, 78, -231,247,126, 77,202,221,206,185, 96,193, 2,151, 19, 42,220,225,116,165, 69, 92,148,221, 53, 71, 49,100,183, 60, 57, 10, 35,231, -117, 0, 62,246,109, 51,103,206,156,229,238,121,142,235,118,139, 88,117,134, 48, 75,133, 86,116,116,116,153,156, 23, 20, 20, 92, -189,122,245,106, 11, 15, 15, 15,220,185,115, 71,162, 84, 42, 91,216, 27,116,146, 36,177,103,207, 30,175,254,253,251,159, 90,182, -108, 89, 24,203,178,200,201,201,193, 71, 31,125,164,163,105,122, 20, 0,186,162, 23,120, 85,150,169,195,135,203, 63,108, 7, 15, - 30,116,107, 8,196, 46,164,132, 66, 33,124,124,124,140, 70,163, 17, 10,133, 2, 62, 62, 62, 70,131,193, 0, 15, 15, 15,251, 88, - 49,137,191,102, 42, 84,101,125,170,202, 49,222,217, 1,190, 74, 36, 36, 36,184,117,156,109,168,213,173, 90,158,154,154, 90, 97, - 67,114,238,220, 57,176,182,134,214, 93, 78, 91, 47,143,179, 11, 63,133, 66, 1, 95, 95, 95, 72,165, 82,200,229,242, 50, 34, 75, - 42,149, 86,249,224, 84, 21,144, 84, 38,147,253,226,225,225,161,178,239, 23,137, 68,208,106,181, 69, 5, 5, 5,237,159,233,161, - 67,112,160,173, 52,140, 70, 19,116, 90, 99,173,243, 91, 44, 22, 72,165, 82,236,220,185, 19,157, 58,117, 66,135, 14, 29,202,137, -172, 26,154,231,211, 11, 10, 10,186,175, 90,181,234,231,229,203,151,251,232,116, 58,252,247,191,255, 45,214,233,116,221, 1,164, - 87, 75,108,178, 28, 40,171, 21, 6,147, 25,122, 93,201, 61,184,127,107,223,255, 90, 81,237,204,206,206,222, 89,201,254,251, 52, - 77, 71,219,227,190,185,129,127,213,171, 87, 15,217,217,217,101, 54,166,165,165,129, 97, 24, 51, 74,226,100,189,233,104, 72,198, - 95,209,179, 43,234,197,151, 88, 71,141,102,232,116, 37, 86, 16,147, 62,175,118,234,169, 77,108, 84,228,147, 85,147, 58, 68, 16, - 68,169,211,247,212,169, 83,113,243,198, 13,244,170,163, 65,195, 96, 47,112,154, 12,136,123,126,138, 63,212,114, 44, 91,113,172, -218,220,187, 29, 92, 32,150,237,222,237,114,223,253,193,131,171,149,247,164,164, 36,200,229,114, 48, 12, 83,238,125, 83,221,252, - 59, 10,152, 21, 43, 86, 96,198,140, 25,216,186,117, 43,110,222,188,137,214,173, 91,163,119,239,222,200,205,205,197,141, 27, 55, - 96, 54,155,221, 78,167,163,223, 92, 82, 74, 2, 78, 95, 62,142,180,244, 7,200,204,126, 84,227,114,119,228,116, 22, 90,251, 79, -255,142, 97, 81,109,107,196,249,217,103,159, 33, 55, 55,183,140, 37,203,177, 93,170,200,162,229,172, 69,156,144,231,228, 11,101, - 95,183, 56,137, 30,231,117,231,227, 1, 32, 23,128,160,138,243,156,215,243,226,226,226,206,218, 45, 97, 54, 94, 65, 85,254, 89, -101, 44, 90, 78, 88, 52,120,240,224, 65,171, 87,175, 14,144,201,100,165, 51,144,102,206,156,137, 25, 51,102, 32, 34, 34, 2,254, -254,254,161, 42,149, 10,249,249,249, 88,188,120, 49, 82, 83, 83, 39,194, 69,160, 61,103,161,213, 37, 69, 11,137,228,175, 14,171, -221,178, 5, 0,227,199,143, 47,103,209,178, 23, 80,101,160, 40, 10,126,126,126, 48, 24, 12, 16, 8, 4, 24, 50,100,136,224,207, - 63,255,100,250,246,237,139,161, 67,135, 10,110,220,184,193, 12, 24, 48, 0, 2,129, 0, 61,123,246,212,236,223,191,255, 67, 0, - 95,186, 33,182,106,205, 49,222, 94,201,220,141,125,228,142,184,172,140,147, 32, 8, 24, 12, 6, 8,133,194, 82, 71,121,119, 56, -237, 67,135,142, 15, 32, 73,146, 80,169, 84,165,141,135,221,162,101, 23, 90, 85,241, 86, 21,144, 84,161, 80, 40,239,220,185,211, -200, 62,241, 34, 47, 47, 15, 61,123,246,188, 91, 80, 80,240,108,155,180, 88,192, 74, 51,208, 25, 77,208, 25, 13,181, 70,107,127, - 30, 54,110,220,136,196,196, 68,152, 76, 38,124,245,213, 87,165,147, 10, 28, 69,214, 99, 8,174,100,185, 92,206,246,235,215, 15, - 87,175, 94,133, 84, 42,165, 80,131,248, 87, 44,199,194, 74,211, 48, 25,141,208, 85, 61,228,246,188,160, 84, 85, 39, 38, 38,194, - 98,177, 96,222,188,121,204,175,191,254,122, 22, 37, 1, 80,237, 22,188,209,221,186,117,155,239,225,225,161, 58,122,244,232,123, - 0,182, 86,246,242,166,104,155,104,175,197,251,232, 56, 34,224,202, 39,171, 38, 97, 86, 28, 95,172, 44,203, 98,226, 91,111,161, -119, 29, 13,134,190, 20, 0,125,214, 93, 40,188, 3, 64,168,234, 99,217,138, 99,184,149,226,182, 43, 38, 7, 0,253,186, 13, 70, -171,102,229,195,131,117,238, 85,210, 39,187,248,227, 47,200,201,203,172,118,222,245,122,125,133,150,171,106, 88,180, 74,159, 57, -251,253,107,211,166, 13,154, 52,105,130,179,103,207,162,109,219,182,184,119,239, 30,238,221,187,135,212,212, 84,220,188,121, 19, -133,133,133,213, 46,163,239, 79,238, 66,161,182, 0, 18,177, 4, 5, 69,121, 72,203,120,128, 32,191,224,199, 46,119, 59,154, 14, -248, 12, 0, 80, 39,192,187, 90, 66,203,145,115,201,146, 37,229,196,251,227,134,236, 33, 8,226,151,202,214,171,123,254,147, 68, - 69, 66,235,129, 90,173,238, 48,114,228,200,153, 0,218,217,182, 21, 3,216,125,234,212,169,193,129,129,129, 61, 58,118,236, 40, -148, 72, 36,184,124,249, 50,246,239,223,191, 21,192,174,202, 46, 36,145, 72,140,245,235,215,151,219, 43,162,253, 65, 84, 42,149, -130,197,139, 23, 19,155, 55,111,174,208,202, 85, 85, 1, 21, 23, 23, 67,175,215,195,219,219, 27, 86,171, 21,253,250,245, 99, 18, - 19, 19, 33, 22,139, 49,104,208, 32, 38, 33, 33,161,180,160, 55,109,218, 20,102, 52, 26,255,253,195, 15, 63,244, 1,208,181, 26, -247,202,238, 24,239, 9, 55, 29,224, 43,234,229,185, 3,119,135,227, 42,226,156, 54,109, 90,141, 56,197, 98, 49,109,143,252, 78, -146, 36,172, 86, 43,218,182,109,139,220,220,220,210,135,198,195,195,163, 84,100,185, 35,180,170, 10, 72, 42, 20, 10, 97,177, 88, -208,181,107, 87, 16, 4,129, 53,107,214, 60, 31,195,145, 44, 75,120,122,250,161, 78,157, 23, 16, 16,104, 2,203,214,238, 87,101, - 98, 99, 99,203,136, 41, 87,145,151,237,247,191, 38,176,115,185, 51, 75,182,178,183,163,125,200, 75,175, 55, 61,115, 69, 24, 24, - 24,216, 33, 55, 55,247,160,211,230, 2, 0,243, 43,233, 88,150, 22,244,163, 71,143,208,183,111, 95, 28, 63,126, 92,112,224,192, -129, 94,135, 14, 29, 74,184,123,247,238,163,182,109,219,214,125,251,237,183,165, 93,187,118, 69, 94, 94, 30, 94,122,233,165,207, - 51, 50, 50, 42, 17, 90,182,251,104, 50, 67,175,175,125,235,168, 43,107,214,227,188, 24,237,117,114,238,220,255, 67,239,144, 34, - 12,105,237,141,248, 35,151, 48,186,141, 28,176, 72,171,205,103, 79,139,111,157, 6,168, 31,217,161,220,126,169,178, 36,150,107, -253,200, 14, 32, 31,221,171,118,222, 29,211,236, 44,170,106, 98,209,115,188,159, 19, 38, 76,192,199, 31,127,140, 62,125,250,224, -222,189,123, 56,127,254, 60,238,221,187,135,105,211,166, 33, 50, 50, 18,173, 91,183,174, 22,231,161,211,123,161,209, 21,131, 36, - 72, 20, 20,231,195,100, 54, 34,118,210,220,199, 46,247,210,151,255,233, 56, 0,192,190, 83,215,107,204, 57,123,246,108,100,103, -103,151,177,100, 61,142, 95,214,179,142,202,162,165, 61, 0, 48,209,121,163,197, 98,241,154, 55,111, 94,148,191,191, 63, 8,130, -192,138, 21, 43,224,235,235,219, 9,192, 45,139,197,146,167,215,235,103, 56,136,144,222,176,197,218,200,201,201,113, 57,111, 95, -175,215, 91,163,162,162, 68, 33, 33, 33,101,102, 27,122,120,120, 84,100,221, 41,229,180,239,163,105, 26,177,177,177, 88,184,112, - 33,194,195,195, 49, 96,192, 0, 68, 71, 71,131, 32, 8,244,235,215, 15, 3, 6,252, 53,148,171, 82,169,196,199,143, 31,239, 70, -146,100,130,195, 11,164, 12,167, 43,216, 29,227, 41,138,114,215, 1,190, 12,167,189,178, 77,155, 54, 13, 11, 23, 46,196,172, 89, -149,187,122,108,216,176, 1, 40,239, 79,245,183,115, 22, 20, 20,148,105,236, 21, 10,197,154,161, 67,135, 10, 31, 61,122, 84, 70, - 92, 57, 46, 46, 26,162, 50,156, 85, 5, 36, 21, 8, 4, 8, 10, 10,194,130, 5, 11,224,231,231,135,224,224, 96, 87,129,252,170, - 44,163, 26,224,111,229,100, 56,246,218,210, 69,255,215,249,191,219, 15,137,164, 18,224,202,249,125,208, 20,150, 29, 78, 50, 91, -255,154, 74, 45,105,219, 11,150,235, 63,186, 85,151,236, 98,250,179,207, 62,195,103,159,125, 86,105,130, 54,110,220,248,216,121, -119, 83,108,149,231,100, 57, 66,225,225, 3,153, 71, 29,180,136,244, 1,203,209,255, 83,101, 84, 1,126,253,229,151, 95, 6,249, -249,249, 33, 61, 61, 61, 64, 36, 18, 13, 42, 99,174, 50, 26, 81,191,126,253, 23,212,106,245,191,171,226,156, 54,109,154,121,206, -156, 57,210, 81,163, 70, 97,232,208,161, 24, 53,106,148, 84, 44, 22, 55,230, 56, 14, 86,171, 21,233,233,233,248,241,199, 31,161, - 86,171,111, 87,150, 78,150,227, 8,185, 66, 5,153, 71, 8, 90,188,168, 2,203,210,181,146,119, 71,171,184,163, 53,171,154, 34, -203,101,253, 4,128, 95,127, 60,136,185, 31,188,136,173, 71,127,198,234, 95,128, 86,170, 92,180, 8, 80,131, 85,223,198, 71,163, - 95,198,178, 29,191, 1, 0,206,159,171,178,140,184,202,234,160,201,104,125,172,188, 59, 90,174, 28,175,227,134,143, 86, 57, 78, -123, 39, 81,171,213,162,168,168, 8,241,241,241,120,227,141, 55,144,155,155,139,212,212, 84,220,189,123, 23,223,125,247, 29, 20, - 10, 69,141,202,232,195,183,102, 99,206,178,233,224,192,161,105,163, 22,152, 57,249, 51,180,107,213,241,177,203,221, 25,110, 88, -179, 42,228, 92,185,114,101, 77,235,210, 63, 78,104,185,132,191,191,255,168,110,221,186,193,100, 50, 33, 32, 32, 0,169,169,169, - 32, 73, 50, 2, 40, 25,194, 11, 13, 13,221,173, 86,171, 35,220,229, 19, 8, 4,160,105,186,212,247,199,190, 0,192,192,129, 3, -113,248,240,225, 42,123, 20,193,193,193,168, 91,183, 46,222,127,255,253,114,179, 28, 28,103, 58,200,229,114, 28, 61,122, 52,187, -160,160,160,128,227,184,106, 77,115,179, 59,198, 95,188,120,209,109, 7,120, 71, 88,173,214, 71,119,239,222, 13,217,184,113,163, -160,146,151, 95, 41,206,159, 63, 79,163,138,161,154,191,131,211, 85,207,148,227,184, 10, 69,150, 59, 97, 4,170, 10, 72, 42, 20, - 10,145,148,148,132,185,115,231,130, 32, 8,236,219,183,239,185,120,184,254,188,147,191,153, 36, 73,159,129,175,116,110, 9,130, -128,213, 82,126,164,218,179, 80, 87, 42,178,134,126,185, 11, 7, 62, 28,233,142,232, 73,190,112,225,130,239,198,141, 27,133,238, -148,251,133, 11, 23,104,142,227,170, 61,236,103,127,225, 88,173, 86, 24,141, 53,179,162,112, 28,119, 57,238,139, 57, 81,219,190, - 61, 38, 34, 8, 11,174,156,219,135,226, 34,215,238, 12, 18,145, 16,155,227,247,211, 98,145,224,209, 83, 46,186,181, 67,134, 12, - 25,245,213, 87, 95,181,112,181,211,141, 73, 48,169, 38,147, 9, 25, 25, 25, 48, 24, 12,123, 63,249,228, 19,235,177, 99,199,222, -124,245,213, 87,209,186,117,107,132,132,132, 32, 43, 43, 11,201,201,201,136,143,143,231, 46, 93,186,180, 23,192,148, 42,238,227, -193, 69, 95,204,137,137,223,113, 76, 66, 18, 86, 92, 57,191, 15,197, 78,162,189,188,117, 90,132,111,182,238,183,138,197,162, 59, - 85, 89,139, 28,173, 89,181,249, 98, 28, 52,102, 50,134,174, 90,141,136,118,125,177,104,113,111,124,243,197,112, 44,239, 39,134, -117,207,104,180,122,109, 27,118,206,235, 15, 0,168,243,141,155,214, 18,161, 24, 15, 93, 88,172,138,138,101, 54,113, 83, 61,171, -169, 61,239,149, 89,174,170,107,209, 34, 73, 18, 13, 26, 52, 64, 68, 68, 4, 58,117,234,132,182,109,219,162, 71,143, 30,184,113, -227, 6,110,220,184,129,105,211,166, 85, 38,178,170, 44,163,238,255,142,194,207, 93,238, 60,118,217, 56,151,123,109,192,157,186, - 52,121,242,100, 0,248, 71, 89,183,170, 45,180, 52, 26,205, 13,150,101, 91,122,123,123,219, 45, 82,165,251,210,210,210,192,178, -172,161,186, 5, 99,177, 88,236,193, 49,203,196,101,178, 59,199, 87,246,224,115, 28,199, 20, 20, 20,160, 91,183,110,232,210,165, - 75,233,240,137,227,226, 32, 76,112,224,192, 1,112, 28, 87,109, 39,107, 7,199,120, 29,170,233, 0, 15, 0,185,185,185,125,187, -118,237,122, 74, 40, 20,186,245, 21, 77,150,101, 83,115,114,114, 94,121,210,156,174,202,135,101,217, 10, 69,150, 59, 13, 81, 85, - 1, 73,133, 66, 33, 60, 60, 60,240,253,247,223,195,223,223,255,185,122,192,110, 36,170,151, 84,182,191,155,159,228, 28,128,128, -161, 95,238,122,120, 46,223, 90,111,232,151,187,210, 14,124, 56, 50,188,178,115,178,179,179,251,140, 28, 57,242,184,187,229, 78, -211,244,131,236,236,236,106,135, 75,224, 56, 14,119,238,220, 97, 39, 76,152,144,167, 86,171,135,215, 36,255, 51,231,174, 94,190, -240,243,169,126,253,162, 58,180, 3, 9, 88, 42,118,254,229, 8,128, 19,138, 4,143,102,204, 90,249,214,240,225,195,159,102,177, -105,178,179,179, 59, 13, 27, 54,108, 10,254,114,157, 40, 35,164, 80,193,236,106, 27, 86,213,173, 91,247, 69,129, 64, 32, 5, 48, - 23, 64,218,165, 75,151,214, 94,186,116,169, 15,128,127, 9, 4,130, 16,134, 97, 50,108,157,158, 93, 0,254,168,186, 30,229,190, - 13,142, 13,235,215,251, 95,125, 65, 16,156,197, 98,174,162,131, 4, 14, 28,199,137,197,162, 59,191,222,200,106, 85, 89, 71,202, -225, 11, 28,181, 62,100, 63,101,202, 20, 76,153, 50,165,180, 62,173, 89,211, 5,123,255,188,136,215, 90,165,195,252,117,103, 16, -202,112,183, 59,124, 0, 48,251,255, 38,212, 90,218, 28,243,238,104,209,114,245, 28, 84,199, 71, 75, 32, 16, 32, 47, 47, 15, 73, - 73, 73,200,201,201,129,193, 96, 64, 98, 98, 34,172, 86, 43, 10, 11, 11,241,226,139, 47,214, 56,157,181, 85, 70, 79,147,243,159, - 56,124, 88,109,161,101,181, 90, 63,109,208,160,129, 72, 38,147,181, 96, 24, 6, 28,199,129, 97, 24,206, 38,106,170, 61, 11, 79, - 36, 18,153,154, 52,105, 66,184,154,157, 96,255,239,225,225, 97,172,196, 90, 18, 87,191,126,253, 79, 8,130, 16, 84,212, 11,177, -255,103, 89,150, 17, 10,133,113, 53,188, 87,143,235, 24,175, 87,171,213, 29,107,185,252,254, 14, 78,231,242,209, 55,107,214,172, -244,139,246,206, 49, 81,108, 31, 91,213, 87, 33,206, 43, 13, 72,170,215,235,179,250,246,237,203, 56,238,119, 12,104,250, 92,131, -224,210,250,143,122,179,222,185,124,107, 61, 0,176,139, 45,112, 92, 90, 37,103, 25,179,179,179,187,253,221, 73, 75, 73, 73,177, -252,235, 95,255,250, 86,171,213, 78, 6, 80, 99,111,254, 89,159,174,153,245, 12,150,140, 6,192,194, 26,158,155,150,159,159,223, -211,105,219, 31,118, 65,101,143,107, 87,109,209,126, 59,175,214, 99,139,209, 52,157, 30, 17, 17, 81, 45,203, 13, 69, 81,233, 85, -237,119,142, 17,230,136, 91,240,198,172,171, 64,201,228,239,124,183, 56, 77, 38, 83, 65,199,142, 29, 69,213,204, 91,174,187,121, - 15, 9, 9, 65,157, 58,117, 74,127,237,112,222, 94, 85, 58,105,154, 78, 15, 11, 11,131,191,191,127,133, 17,223,157,125,178,220, -225,172,237, 50,170,140,179, 78,157,109,181,206, 89,211,116,242,112, 15,189,121, 78,158,147,231,124,102, 57, 5,252,253,228, 57, -121, 78,158,243, 9,114, 62,151,224,189,212,120,240,224, 81, 17, 24,254, 22,240,224,193,131,199,227,129,168, 68,149, 86,103,166, - 79, 77,148,237,105,158,147,231,228, 57,121, 78,158,147,231,228, 57,255,113,156, 85,113,215,246, 76,227,231, 26,188, 89,149,231, -228, 57,121, 78,158,147,231,228, 57,121,206,127, 44,248,161, 67, 30, 60,120,240,224,193,131, 7, 15, 94,104,241,224,193,131, 7, - 15, 30, 60,120,240, 66,139, 7, 15, 30, 60,120,240,224,193,131, 7, 47,180,120,240,224,193,131, 7, 15, 30, 60,120,161,197,131, - 7, 15, 30, 60,120,240,224,193,131, 7, 15, 30, 60,120,240,224,193,131, 71, 9, 8, 0, 56,114,228, 72,233, 7, 1,163,163,163, - 9,254,182,240,224,193,131, 7, 15, 30, 60,158, 36,158,107, 45,226,152, 57, 30, 60,120,240,224,193,131, 7, 15, 94,139,212, 14, - 72, 94,108,241,224,193,131, 7, 15, 30, 60,120,177,197,103,140, 7, 15, 30, 60,120,240,224,193,139,172,103, 10,101, 44, 90,188, -224,226,193,131, 7, 15, 30, 60,120, 60, 77,177,245,140,106, 17,206,182, 56,174,243,224,193,131, 7, 15, 30, 60,120,240,120, 76, -129, 85,217, 47, 15, 30, 60,120,240,224,193,131, 7,143, 90, 18, 92,246,255, 79, 76,104,241, 95, 54,231, 57,121, 78,158,147,231, -228, 57,121, 78,158,243, 31, 11, 33,127, 11,120,240,224,193,131, 7, 15, 30, 60, 30, 27,142, 86, 44,130, 23, 90, 60,120,240,224, -193,131, 7, 15, 30,181, 39,178, 8, 87,235,252,183, 14,121,240,224,193,131, 7, 15, 30, 60,254, 38,240, 22, 45, 30, 60,120,240, -224,193,131, 7,143,199, 3, 1,126,232,144, 7, 15, 30, 60,120,240,224,193,227,111, 21, 91, 46, 55, 86, 52,115,224,116, 53,200, -107, 50,251,224, 52,207,201,115,242,156, 60, 39,207,201,115,242,156,255, 56,206,170,184, 79,227,217, 67, 55, 0,103, 1,116,183, -253, 86, 40,188,106, 27,252,212, 87,158,147,231,228, 57,121, 78,158,147,231,228, 57,159,119, 84, 24,168,148,119,134,231, 81, 21, -132,168,124,136,185,170,253, 60,120,240,224,193,131,199, 63, 77,108, 17,225, 72,218, 0, 0, 32, 0, 73, 68, 65, 84,113,142, 47, - 73, 87,104, 12, 96, 22, 0,111,135,109,191, 0,136,115, 58,110, 7, 0,133,195,186, 30,192, 60, 0,247,170, 76, 13,199,137,109, -252, 82,219,194, 2, 48, 1, 48, 3,208, 18, 4, 65,241,101,246,212,209, 17, 64,180,237,255, 17, 0, 87,170,185,255,185, 66, 72, - 72,136,220,199,199,167,207,245,235,215, 37,137,137,137,184,112,225, 2,183,121,243,102,107, 97, 97,225,201,172,172, 44, 35, 95, - 93,158, 11,244, 5, 48,211,246,127, 17,128, 19,143,201, 71, 40, 20,138,105, 30, 30, 30,253,165, 82,105, 29,154,166, 9,131,193, -144,169,215,235, 79,209, 52,253,165,173,221,171, 46, 6,251,250,250,190,217,180,105,211,198,169,169,169, 25,153,153,153, 59, 0, -236, 1, 48,188, 78,157, 58,163,235,215,175, 31,122,231,206,157,123, 5, 5, 5,223, 0, 56,248, 20,211,201,131,199, 63, 9, 68, -101,214, 8, 87,152,203,113,220,232, 50, 12, 68,121,142,158, 61,123, 14, 58,121,242,164,130,101, 89,216, 23,185, 92, 78, 3, 24, - 87,133,200,242,187,124,249,114,189,201,147, 39, 15,205,204,204,124, 89,171,213,182, 7, 0,133, 66,241,115, 96, 96,224,175,171, - 86,173,250,142,227,184,116,130, 32,180,213,204,168, 80, 36, 18,189,225,227,227,211,159,166,233,182, 28,199, 65, 36, 18, 93, 47, - 44, 44, 60, 65, 81,212, 55, 0,106, 34,222, 36, 66,161,112,138, 84, 42,237, 75,211,116, 75, 0, 16, 10,133, 55,205,102,243, 9, -154,166,215, 2,176,212,128, 83, 38,145, 72,166, 40,149,202, 40,139,197,210, 18, 0, 36, 18,201, 77,141, 70,115,202, 98,177,172, -181, 9,206,167, 13, 33,128,104,142,227, 68, 0, 32, 16, 8, 6,183,111,223,190, 30, 65, 16, 44, 65, 16, 28,199,113,196,207, 63, -255,220,134, 97, 24,210, 86, 63,162, 1,252, 10,128,126, 22,159, 16,127,127,255,133, 44,203,214,169,180,208,100,178,151,175, 95, -191,222,116,247,238,221,204,215, 95,127, 93, 52,126,252,120,207,201,147, 39, 11,215,172, 89,179, 54, 43, 43,235, 61,231,227,253, -252,252,150,147, 36,233,239,206,245, 89,150,205,203,207,207,159,254,180,242, 31, 19, 99, 42, 99,238,142,143,151, 53, 2,144, 94, -195,250,253,247,113,154, 98, 56, 0,136,151,197, 55,138, 49,197, 36,219,255, 63, 46,175, 3,102,174, 59,173,237,202,113,192,148, - 40, 47,242,113,133, 86,104,104,104,124, 76, 76,204,168,150, 45, 91, 10, 57,142, 3, 69, 81, 48,155,205, 77,175, 92,185,210,125, -223,190,125, 47,107,181,218,225,213,164,124,235,227,143, 63, 94, 48,127,254,124,127,145, 72, 68, 80, 20,213,104,247,238,221,109, -223,126,251,237,247, 55,110,220, 88,119,196,136, 17, 94,246,237,115,231,206,109,183,104,209,162,134, 0,190,124, 10,233,228,193, -227,159,134,110, 40,235,163,245, 57,128,207, 42, 19, 90, 30,182,151,103,142,205,146, 5,135,223, 82,156, 57,115,230,144, 80, 40, -180, 91,180,218,235,245,250, 32, 39, 43,152, 43,145, 85,127,204,152, 49, 29,247,238,221,187,112,196,136, 17,217, 10,133,162,201, -171,175,190,170, 37, 8, 66,176,123,247,238, 54, 17, 17, 17,242,129, 3, 7,142,233,217,179,231,135, 28,199, 93, 32, 8, 66,237, -102, 38, 91,248,250,250,238, 95,178,100, 73,189,190,125,251,138,253,253,253,193,113, 28, 50, 51, 51, 67,143, 30, 61,218,239,243, -207, 63,255,176,160,160, 96, 8,128,132,106,220,184,118,114,185,124,239,231,159,127, 30,210,175, 95, 63, 97,112,112, 48, 76, 38, - 19, 18, 19, 19,123,159, 56,113,162,235,198,141, 27,223, 51, 26,141,175,217, 4,134,187,104,239,237,237,189,239,191, 31,127, 28, -212,225,141, 55,132,190,190,190,224, 56, 14,106,181,186,247,197,109,219,186, 79, 90,178,228,189,226,226,226, 97,174,238,247,211, -132, 68, 34, 33,183,111,223,222, 90, 34,145, 0, 0, 44, 22, 11, 34, 35, 35,137,231,229, 9, 33, 8, 34, 44, 51, 51,211, 91, 44, - 22,187,220,207, 48, 12,186,118,237,218, 64, 44, 22,227,203, 47,191,164,242,242,242,218,124,245,213, 87,215,119,238,220,233,191, -118,237,218,215, 0,148, 19, 90, 36, 73,250,167,167,167,187,228,100, 24, 6, 86,171, 21, 52, 77,195, 98,177,160,121,243,230, 79, - 53,255,241,241,178, 48, 0,211, 99, 98, 76, 31,216, 54,125, 9,224, 67, 0, 41,168,225, 55,187,254, 6, 78,199,250,182,220,225, -255, 99,167,213, 1,245, 0,224,216, 13, 19, 0,248, 62,238,125,245,240,240,104,246,250,235,175, 11,213,106, 53, 68, 34, 17,172, - 86, 43,178,179,179, 17, 25, 25, 41,248,246,219,111, 95,168, 46, 95,163, 70,141,198, 47, 90,180, 40,224,216,177, 99,214,237,219, -183, 91,162,162,162, 68,227,199,143, 87,118,237,218,181,121, 88, 88, 24,185,101,203, 22,243,169, 83,167,168, 49, 99,198, 72,226, -226,226, 2,142, 30, 61, 58, 48, 33, 33,225,203, 39,157, 78, 30, 60,254,129, 56,139,191, 66, 60,216,127, 43, 21, 90,112, 16, 87, -131, 1, 64, 36, 18,181, 9, 10, 10,138,167,105, 58,216,102,213,201,206,201,201,249,146,162,168,223,109,199, 30,100, 89,118, 80, - 85,150,172, 49, 99,198,116, 60,126,252,248,178, 43, 87,174, 20,231,231,231, 7, 31, 58,116,200,244,225,135, 31,166, 2, 64, 74, - 74, 74,195,129, 3, 7,134, 78,157, 58, 53,189, 79,159, 62,171,122,244,232,241, 46,199,113,167, 8,130,208, 87, 37,178, 34, 35, - 35, 47,159, 63,127,222, 75,165, 82,149,217, 81,191,126,125,188,251,238,187,226, 65,131, 6, 69,244,234,213,235, 82,114,114,114, - 23, 0,127,186, 35,136, 26, 55,110,124,250,204,153, 51,158, 62, 62, 62, 40, 42, 42, 66,118,118, 54, 12, 6, 3,148, 74, 37, 70, -140, 24, 33,238,214,185, 83,221,169,211,222, 59,157,158,145,209,219, 77,177,213,190, 83,139, 22,167,119,198,197,121, 82, 15, 31, - 66, 46,151, 67,167,211, 1, 0,188,188,188,240,114,131, 6,194,223,182,109, 11, 29, 29, 27,123,250,215,164,164,222, 79, 73,108, - 73,109,191,102, 0, 71, 4, 2,193, 96,137, 68, 66, 14, 30, 60, 24,167, 79,159, 38, 76, 38,147,208,102,221,161, 7, 15, 30, 12, -185, 92, 14,139,197,194,162,100,232,144,126,150,159, 18,137, 68,130,228,228,228, 50,219,180, 90, 45,212,106, 53,242,243,243, 97, - 54,155, 81, 84, 84, 4,150,101, 9,185, 92,174,102, 89, 22, 36, 73, 58, 11,128, 50, 16,139,197, 72, 74, 74, 42,179,141,166,105, -232,245,122,152,205,102, 88,173, 86,104,181, 90,185,151,151, 87, 99,127,127,255,116, 0, 7, 11, 10, 10,190,204,201,201, 73,123, -194,217,207,179, 11,162,248,120,217,125, 0,146,255, 69, 78, 7, 75, 86,168,109,253,143, 90, 74,171, 29, 15,143,252,110, 10,183, - 89,199, 30,212, 2, 31, 11, 0, 23, 46, 92, 64, 78, 78, 14,242,242,242,160, 86,171, 17, 22, 22, 6,142,227,170, 61, 28,151,156, -156,188,238,197, 23, 95, 36,110,221,186,117, 2,192,154,221,187,119,143, 43, 40, 40,152, 57, 99,198, 12,223,165, 75,151, 22,196, -198,198, 46, 2,176,117,247,238,221,239, 52,107,214,172,255,237,219,183, 55, 62,141,116,242,224, 81,219,224, 56,174, 29,128, 0, -123,219, 98,107,119,253, 28,214,111, 16, 4, 97,113, 56,206, 98,107, 27,156,127,237,176,175,171, 9,130,248,213,225, 60, 53, 65, - 16,191,214, 52,153, 78,191, 37,157,110, 0, 56,114,228, 8,103, 95, 92,157, 25, 24, 24, 56,173,103,207,158,203,174, 93,187,214, - 60, 43, 43,203, 39, 43, 43,203,231,218,181,107,205,123,246,236,185, 44, 48, 48,112,154,195,141,112, 62,245,180,195, 62,241,229, -203,151,235,237,223,191,127,209,233,211,167,139,219,180,105, 99, 57,115,230, 12,221,167, 79,159, 92,219, 11,154,238,211,167, 79, -238, 79, 63,253,196,116,232,208, 65,126,252,248,241, 71,151, 46, 93, 90,190,119,239,222, 32,142,227, 4,174, 56,109, 16,169, 84, -170,239,207,157, 59, 87, 78,100, 57,162,110,221,186, 56,114,228,136, 82,165, 82, 29, 4, 32,174, 40,157, 54,200,100, 50,217,190, -159,126,250,201,211,203,203, 11,185,185,185, 16,137, 68, 8, 12, 12, 68,113,113, 49,178,179,178,144,118,247, 46, 72,139, 5, 43, -190,152,239, 37,151,203,247,186,104,236,203,113,122,123,123,239,219,185,112,161,103,254,233,211,248, 99,193, 2, 88,173,214,210, - 33, 87,171,213,138, 75,147, 39, 67,253,227,143,216, 50,119,174,167,183,183,247, 62, 0,178, 42, 56,107, 3,142,156,147, 1, 20, -216,150,201, 0,174, 68, 70, 70, 94, 75, 76, 76, 68,151, 46, 93,176,103,207,158, 86, 51,102,204,152, 60, 99,198,140,201,123,246, -236,105,213,165, 75, 23, 36, 38, 38, 34, 50, 50,242, 26,202,250,103,253,221,233,252,219, 56, 25,134, 41,179,176,236, 95,239,152, - 58,117,234,228,238,223,191, 31, 35, 70,140, 32, 37, 18, 73,214,200,145, 35,165, 23, 47, 94,228,108, 34,211,237,116,154, 76, 38, - 24,141, 70,232,245,122,164,164,164,200,151, 44, 89,210,249,179,207, 62,107,116,250,244,233,208, 89,179,102, 77, 10, 8, 8,184, - 30, 20, 20, 84,239, 9,231,221,234,244,127, 5,128,140,106, 90,136,254,110, 78,206,118, 62, 98, 76, 49,173, 29, 26,216,234,242, - 86,118, 63,179,109,105,213, 3, 72,123,156,186,212,179,103,207, 23, 27, 53,106, 20,180,251,150, 15, 10,197, 77,193,138, 85, 96, -197, 42, 48,126,237,144, 44,121, 5,225,225,225, 65,158,158,158, 29,171,153,206,237,183,110,221,250,151,173,167,156, 15, 96, 89, -108,108,236,231, 4, 65, 92,136,141,141,157, 15, 96,153,109,251,130,219,183,111,119, 0,176,243, 41,165,243,153,120,222,121,206, -255, 45,206, 42,180, 72, 0, 65, 16, 71, 8,130, 56,242,201, 39,159,244, 0,224,231,180,254,111,199,227, 0, 72, 92,253,218, 23, -135,237, 1, 28,199, 13,112, 56, 47,160,134,201, 39, 92, 44,127, 9, 45, 0,136,142,142, 38,162,163,163,237, 59,126, 33, 8,226, - 16,128, 95, 68, 34, 81,155,214,173, 91, 15,254,225,135, 31,188, 2, 2,254,186,126, 64, 64, 0,246,238,221,235,213,162, 69,139, -193, 34,145,168, 13,128, 95,148, 74,229,161, 74,172, 48,170,201,147, 39, 15, 29, 59,118,172,166, 77,155, 54, 0, 80,148,144,144, -160,232,208,161,131,158,166,105,130,166,105,162, 67,135, 14,250,132,132, 4, 5, 69, 81,218,118,237,218,121,244,234,213, 43,117, -250,244,233, 99, 92, 8, 14, 71,188,190,120,241,226, 48, 31, 31,159,202,148, 48,180, 90, 45,130,130,130, 48,121,242,228, 96,145, - 72,244,102,101,119, 75, 40, 20, 78, 89,188,120,113,160, 74,165, 66, 97, 97, 33,194,194,194, 96,177, 88,144,148,148, 4,147, 94, - 7, 74,171, 1,165, 41,130,250,254, 61,168, 68, 66,140, 25, 20, 29, 36, 20, 10,167, 84, 97, 45,153,242, 77,108,108,144, 37, 53, - 21, 41,123,246,128,161,203, 27,127,104,171, 21, 55, 55,109,130, 41, 61, 29,139, 38, 76, 8,146, 72, 36, 83,158,176, 37,107, 41, -199,113,114,142,227,228, 4, 65,172,234,216,177,227,183,114,185,124,114, 92, 92, 92,223,147, 39, 79,246, 59,127,254,124,119,154, -166, 69, 52, 77,139, 46, 92,184,208,197,100, 50, 9,165, 82, 41,132, 66, 33,135,231, 20, 34,145, 8, 98,177, 24,114,185, 28,157, - 59,119,190,191,121,243,102, 42, 44, 44, 76,180,111,223, 62,159, 58,117,234,120,172, 89,179,166, 72,171,213, 46,118,151,207,106, -181,194,108, 54,195,104, 52,194,100, 50,225,204,153, 51, 13,166, 78,157, 42, 52,153, 76,204,192,129, 3, 11, 40,138, 50,199,198, -198, 42,125,125,125, 63,124,146,249,140,137, 49,177, 54,203,211,109,155,104,121,128,199,244,121,250, 59, 56, 1, 88,108, 62, 89, -118,248,219,184, 45,181,116, 43,104, 0, 58,155,208, 50, 59, 61, 31, 45, 29, 44,190, 85,162,168,168,104,227, 55,223,124, 19, 70, - 74, 85,184,104,233,143,239,216,207,113,210,123, 13,114,235,125,132,192,176, 70, 24, 53,106, 84, 32,199,113,107,106, 33,205, 95, - 1,232, 10, 96, 85, 77, 78,126, 2,233,172,231,225,225,177,199,203,203,235,162,135,135,199, 30,216,134,103, 31, 7, 81,141,208, -123, 80, 51, 50, 61, 42, 2,220,160,102,100,122, 84, 35, 62,212,192,243, 2, 39, 45,226, 8, 53,199,113,209, 28,199, 69, 47, 90, -180,104,161,195,251,221,190, 46,119,211, 50, 22,205,113, 92,116, 25,133, 84, 34,176, 30,219,232,230, 98, 41,209, 20,142, 74,210, - 33,115,165,179, 11,131,130,130,226,227,227,227,189,156, 25,179,178,178,160,209,104, 48,103,206, 28,175,177, 99,199,190,151,158, -158, 30, 83, 69, 34, 36,217,217,217,109, 71,143, 30, 45,179, 90,173,133, 44,203,146, 26,141, 70,232,237,237,205,216, 15,240,246, -246,102,138,139,139, 69,122,189, 94,192, 48,140,121,236,216,177,146, 9, 19, 38,188, 12, 64, 80, 17,105, 64, 64, 64, 84,255,254, -253, 43, 28, 58,160, 40, 10,122,189, 30,122,189, 30, 86,171, 21,157, 59,119,150,110,222,188,185, 79,110,110,238,250, 10, 21,135, - 84, 26, 21, 21, 21, 37, 42, 40, 40,128,183,183, 55,210,210,210,240,224,193, 3,152,117, 58, 88,117, 26, 88,117, 90,208, 90, 13, - 56, 77, 49,242,239,221, 65,135,102, 77,197, 59,164,210,190,122,189,126,121, 69,156, 74,165, 50,170,195,184,113, 66, 15, 15, 15, -116, 31, 93, 50,207,224,120,179,102,224, 24, 6, 44,195,128,161,105,244, 77, 74, 2, 69, 81, 32, 73, 18,237, 10, 10,132,202,109, -219,162,212,106,245,178,167, 81,217,165, 82,169,112,251,246,237,175, 75, 36, 18,112, 28, 71, 88, 44, 22,156, 60,121,242, 31,247, -208, 75, 36, 18,200,100, 50, 88,173, 86,212,175, 95,223, 56,122,244,232,203, 95,124,241, 69, 56, 73,146, 30, 98,177,248,135,252, -252,252,133, 89, 89, 89, 41,238,242, 81, 20, 5,139,197, 2,139,197, 2,163,209,136,251,247,239, 7, 55,104,208,128,152, 60,121, - 50, 99, 48, 24, 26,174, 94,189, 58,249,228,201,147,138,197,139, 23,191, 10,224,221, 39,157,223,152, 24, 83, 51, 0,205,226,227, -101, 98,155,229,215,242, 63,198,201,161,196,241, 29,241,178,248, 68, 0,234, 90, 20, 89, 18, 0,222,225,126, 66,189, 72, 0, 29, - 0, 47,155, 40,120,149, 32,136, 14,205,155, 55,247, 73, 76, 76, 44,228, 56,238, 42,128,239, 0,100, 85, 70,198,178, 44,193,178, - 44,222,110, 95,132,201, 29, 5,160,168, 98, 20, 23, 23, 35, 45, 45, 13, 9, 9, 9,248,249,231,132,154, 62,155,111,122,122,122, -246,145,201,100,245,105,154, 38,117, 58, 93,154,193, 96, 56,205,178,236, 70,212,192, 71,237,239, 74,167, 29, 30, 30, 30, 75,102, -205,154,213,201,219,219, 27,191,255,254,123,195, 93,187,118, 45,209,235,245,143,229, 92, 47, 19,145, 91,150,175, 92, 19, 26, 26, -168,194,141,243,135, 67, 23,110,216,189, 5, 96,195,120,153,242,236,195, 73,139, 56,138,161, 95, 57,142, 27, 64, 16,196, 17,103, -161, 84, 45,179,211, 99,158, 95,133, 69,203,249,195,210,101,133, 86, 5, 10, 18, 52, 77, 7, 59, 90,178, 56,142, 67, 86, 86, 22, - 50, 50, 50,160, 86,171,225,227,227, 3,171,213, 26,236, 78,251,160,213,106,219,251,249,249, 25, 68, 34,145,217,104, 52, 66,161, - 80,176, 34,145,136,179, 93,135,176,205, 90,100,204,102, 51, 33, 20, 10, 41, 47, 47, 47, 79,179,217,220, 20,149,248,146,113, 28, -215,222,207,207,207,229, 62,179,217, 12,157, 78, 7,189, 94, 15,157, 78, 7,179,217,140,160,160, 32,208, 52,221,182,210, 46, 45, - 77,183, 12, 8, 8, 64,102,102, 38,228,114, 57,210,211,211, 97,209,105, 97,213,106, 65,235, 53, 96,138,139,193,106, 52, 96,245, - 26, 80, 22, 3, 66,155, 52,131,125, 70, 98,133,221,112,139,165,165,159,159, 31,244,250,191,220,205, 56,155,192,162,105, 26,180, -205, 57,218, 62,156,232,239,239, 15,251,140,196, 39, 4, 51,128, 25, 36, 73,174,146, 74,165,194, 73,147, 38, 33, 43, 43,171, 76, -157,152, 52,105, 82,169, 79, 86,215,174, 93, 47,200,100, 50, 90,173, 86,195,108, 54,139,158,215,135,158, 32, 8, 16, 4, 81, 82, - 70, 52, 13,127,127,127,125, 94, 94,222,207, 69, 69, 69,175,215,132,143,162, 40,251,140, 46, 24,141, 70,112, 28,135,223,127,255, - 29, 50,153, 76,196, 48,204, 45,154,166, 21, 34,145, 8,164,205,249,235, 73,193, 54, 35,240, 75, 0, 97, 54, 11,209,155, 40,113, - 56,207,112,209,144,184,117,235,220,228,172,190,112, 51,197,216, 45, 77, 25,168,217,112,164, 43,116,111,170,146, 44,143,235, 16, -168,106, 61,208, 67,175,144, 8,244,108, 90,235,250,255, 93,154,176,107,236,152, 55,189,230,205,155, 87,207,223,223, 95,150,156, -156,108,154, 63,127,126,131,237,219,183, 19, 40, 25,166,171, 16, 15, 31, 62, 60, 48,107,214, 44,223,254,253,251, 55,148, 74,165, - 68,113,113, 49,212,106, 53,114,114,114,240,224,193, 3,238,198,141, 27,247,205,102,243,158,234, 36, 50, 36, 36,100,243,235,175, -191, 62,246,165,151, 94, 18,217, 45,164,122,189,190,205,185,115,231, 6, 29, 63,126,188,139, 94,175,175,118,189,124,244,232,209, -158,217,179,103,123,188,242,202, 43, 77,165, 82, 41, 89, 27,233,116, 4, 73,146, 65,158,158,158, 56,125,250, 52, 84, 42, 21, 72, -146, 12,122,220,250,106,178,178,161,117,130,253, 96,186,180, 28, 77, 3,234,193,100,101, 67,121,137,242,252, 88,180, 42,120,215, -183,179, 91,164,170, 16, 75,198,153, 51,103,206, 34, 8,226,200,204,153, 51,103,185,178,104,217,254, 50,142,199, 57, 28,111,174, -109,177, 85,173, 64,147, 44,203, 34, 35, 35, 3,153,153,153,200,200,200, 64,126,126, 62, 72,146, 4,199,113,238,204, 62,227, 8, -130, 96, 79,157, 58,229,115,249,242,101,125,187,118,237,138,236,254, 47, 52, 77, 19, 20, 69, 17, 54,191, 24, 34, 45, 45, 77,124, -241,226, 69,213,237,219,183,131,108,189, 85,182, 10, 83, 96,185,109,118,129,229,184,152, 76, 38,200,100, 50,247, 84,135,237, 69, -248,251,181,107, 37, 34, 75,167,181, 13, 25, 22,131,209, 20,131,211,107, 33, 97, 40, 72,192,129, 48, 25,220,190,127,142,176,139, - 44,171, 77,104, 89, 44, 22, 80, 20, 5,150,101, 65,211, 79,197,175,124, 93,171, 86,173,218, 30, 56,112, 96,124, 70, 70,249,119, -225,144, 33, 67,240,238,187,239, 98,234,212,169,183, 7, 12, 24,112,227,240,225,195,152, 50,101, 10, 88,150,109, 13,160, 24,192, -241,231,237,161, 55,155,205,165, 22, 40,147,201, 4,171,213, 10, 84,227,179, 10,206,117,211, 94,182, 52, 77,219,185,137, 3, 7, -246,227,194,133, 11,100, 66,194,173,176, 73,147, 38,219, 29,238,159,116, 86,211, 81, 50,115, 79, 98,107, 40, 44, 40,241,127,170, - 40,164, 66, 4, 42, 31,178,227, 42,227,124, 28,180,218,208,106,196, 7, 31,124, 16,133,146, 25,206, 41,143,105,209,122, 69, 66, - 18, 95, 79,107,233, 43,251,176,149,159, 94, 34, 36,116, 73, 95,207,210, 61, 8, 87,234,131,234, 42, 44, 97, 13, 84,117, 22, 46, -252, 34,228,246,237, 59,230, 57,115,230, 36,142, 28, 57, 50,240,195, 15, 63,108,190,111,223,190, 46, 38,147,233, 27, 0, 69, 21, - 25, 93, 6, 13, 26,116, 53, 48, 48,176,193,134, 13, 27,114, 31, 61,122,228, 67, 81,148,135,213,106,101,245,122,253, 3,163,209, -120,218,106,181,158, 6,112,173, 58,137,245,242,242,106, 53,110,220, 56, 81, 81, 81, 17,132, 66, 33,172, 86, 43,114,115,115,209, -169, 83, 39,193,161, 67,135, 90,212,228, 6, 20, 22, 22, 46,255,230,155,111,206,238,220,185,179,143, 82,169,124, 73, 42,149, 6, - 3, 96,180, 90,109,142, 94,175,255,163, 38,233, 44,211,206, 49, 76,206,181,107,215, 34,148, 74, 37, 30, 62,124, 8,134, 97,114, - 30,183, 14,200,196,228,163,155,231, 15,213,109,230,223, 0, 23, 47, 95,133, 76, 76, 62,226, 67,125, 61,247,176,251, 80,193, 81, - 64,185, 16, 72,151,227,226,226,228,139, 22, 45, 66, 92, 92,220, 45, 87, 22, 45,187,224,138,139,139,187,101, 63,206,225,248,243, -143,145,198,138, 45, 90, 21, 41, 72,160,100,118,161, 90,173,246, 81,169, 84,165, 2, 43, 51, 51, 19,153,153,153,144, 72, 36, 72, - 75, 75,131, 68, 34,201,114,167, 19, 34,151,203,127,107,211,166,205, 11, 41, 41, 41,226,249,243,231,215,189,118,237,154,178, 83, -167, 78, 47,202,229,114,134,227, 56,152, 76, 38, 50, 49, 49,209,115,217,178,101,161,237,219,183,183,180,111,223,254,250,238,221, -187,141,168, 36,254, 21, 65, 16,191,100,101,101, 53,172, 95,191,190, 93,180,149, 17, 87,142,130, 11, 40, 25,242, 20, 10,133,215, - 43, 75,168, 80, 40,188,153,148,148,212, 91, 33,147,194,162,213,192,170,211,128,214,106,193,104,139,193, 20, 23, 3,122, 13, 36, - 52, 13, 17, 67, 65, 46,147, 33, 35, 61, 29, 66,161,240,102,101,156, 18,137,228,102, 78, 78, 78,111,149, 74, 85,250, 18,165,104, -186,100, 97, 24, 88,104,186,212,162, 37, 18,137,240,232,209, 35, 72, 36,146,155, 79,186, 38,147, 36,201,216, 67, 56, 84,144, 15, - 4, 5, 5,177, 29, 58,116,192,148, 41, 83,192, 48,140,173, 24,136,238, 0, 46,162,196,191,229,153,132, 43,113,107,119, 90, 55, - 26,141,208,233,116, 40, 44, 44, 20,202,229,242, 23, 66, 67, 67,175, 90, 44,150, 61, 52, 77,111,121,240,224,129,166, 34, 78,155, - 48, 43, 21, 93, 44,203,130,227, 56, 48, 12, 3,138,162, 32, 22,139,217,115,231,206, 99,217,138, 37,136,223,178,157, 27, 52,104, - 16,113,232,208, 33,176, 44,155,254,132,179,111,177,137,150,202, 26, 13,231,144, 10, 31,161,242,144, 10, 21,113, 58,246,254, 28, -183, 17, 46,142, 41,135, 15, 62,248,224, 4, 74,134, 12,243,108, 98,238,113, 56,191, 44,250,238, 11, 25,104, 70,111, 62,183, 83, -247,237, 93,141,126,222,183, 43,127,179, 72, 4,154,151,187, 5,181,108,216,224, 5,129, 74,229, 67,174,223,184, 42,127,199,246, -189,201, 15, 31, 62,212,172, 93,187,182,227, 11, 47,188,224,253,199, 31,127,132, 86, 36,180, 20, 10, 69,227, 55,223,124,115, 92, - 97, 97,161, 56, 62, 62,126,119, 86, 86,214,111, 40, 9, 45,227, 56,131,122, 0,128,173, 54, 33, 26,100,107,231, 46, 2,152, 95, - 89,127,141, 32, 8,252,244,211, 79,229,102, 7,178,143,167,206, 85,141, 26, 53, 26,145,146,146,114, 33, 39, 39,103,152,243, 78, -177, 88, 60,175, 73,147, 38,125,111,221,186,245, 57,128, 99,213, 33, 54, 24, 12,177,123,247,238, 93, 42, 16, 8,234, 48, 12,147, -105, 52, 26, 99, 31,219,162, 69,177, 19,226,214,239,218,100,180, 48,225,114,137,224,161,137, 98,223,226,117,200,243,107,205,178, - 65,237, 96,141, 82, 3, 32,156,214,255,176,189,140, 44, 28,199,217,143, 85, 59, 88,177, 44, 78, 86, 48, 87,251,212,143, 17, 44, -157,171,168,141,171,200,162,245, 9,128,246, 0,126,201,201,201, 89, 53,118,236,216,101, 59,118,236,240,210,104, 52,200,201,201, - 65,110,110, 46,132, 66, 33,148, 74, 37,214,173, 91,103,204,201,201, 89,229,120, 14,202, 71,144, 7, 0,147,191,191,255,111,219, -183,111, 15,254,250,235,175,133, 49, 49, 49,105, 3, 6, 12,104,186,110,221,186, 20,177, 88,204, 49, 12, 67,152,205,102,226,237, -183,223,142, 88,177, 98, 69,170, 64, 32, 80,140, 24, 49,130,240,240,240,248, 5,149,132, 13, 80,171,213,167,190,255,254,251,161, -211,167, 79,151, 90, 44, 22,151,150, 44,251, 54,149, 74,133, 75,151, 46, 89, 10, 11, 11, 79, 86, 97,197, 56,245,195,177,163, 93, -255, 51,114,164,152,210,106, 64,105, 53,160, 53, 26, 48,218, 34, 16, 58, 13, 68, 12, 13,185,152, 69,112,152, 12,180,209, 19, 71, -127,253,131, 50,155,205,149, 6, 54,212,104, 52,167, 46,198,199,119,111, 95,175,158,240,210,180,105,176, 82, 20, 94, 73, 74, 42, - 21, 87, 86,171, 21, 7, 91,182, 4, 67, 16,104, 61,113, 34,238,209, 52,173,209,104, 78,253, 47, 62, 12, 55,110,220,200, 29, 61, -122,244, 53,150,101,219,226, 9,125, 52,243, 73,128,162,168,114,214, 40,134, 97, 74,172,142, 37,150, 3,201,209,163, 71,187, 38, - 38, 38,138,255,252,243, 79, 92,184,112,161,245,142, 29, 59, 62, 9, 15, 15,111,249,240,225,195,236,170,196,155,171,160,191,176, -249, 31,238,222,185, 7,239,188,243, 14,145,157,157,141,239,190,251, 14, 85, 5, 79,253, 59, 16, 19, 99, 98,227,227,101,117,225, -228,247,228, 34,164,194,239,112, 51,164, 66, 69,156,166,152, 18, 43,153, 44,190, 36,216,168, 41,166,100, 56, 80, 22, 95,165,165, - 12, 49,166, 24,141,205, 33, 62,171, 22, 56,245,160, 25,185,229,220, 78,221,128, 99, 15,181, 87,178,140,243, 1,156,128,137,225, -238, 93,231,110,188,244,146,143, 63, 0,152, 77, 76,112,227,198,141,187, 9,133, 66, 9, 0,120,122,122,190,228,231,231,183, 46, - 63, 63,191,179,171, 50,141,142,142,238, 16, 24, 24,216,230,248,241,227,127,100,101,101,221, 2,240,179,243, 65, 17, 17, 17,115, -110,223,190,221, 78, 36, 18, 17, 85,212, 17, 0, 64,183,110,221, 94,144, 74,165,126,199,238,122, 67, 35,110, 4, 78, 80, 12, 8, -101, 96, 84,173,144, 38,110,142,176,176,171,126,133,133,133,173,139,139,139,255,168,102,209,247, 24, 58,116,232,150,248,248,248, -176,110,221,186,113,215,175, 95, 39,157, 71, 17, 34, 34, 34,250, 92,185,114,165,237, 91,111,189,181, 97,215,174, 93,147, 81,118, -166,109, 85, 72,179,197, 27,172, 53,156, 74,198,105,128,169,103,179,153,241, 10,229, 31,128,234,132, 92,120,140,240, 12,143,149, -196, 10, 13, 24, 21,108,111,111,139,137,213,158,162,168,223,111,220,184,113,112,196,136, 17,186,252,252,124,248,249,249,161,126, -253,250, 32, 8, 2,235,214,173, 51, 62,120,240, 96,159, 45,150, 86,251,204,204,204, 65, 54,177,229, 10,218,213,171, 87,239,218, -182,109,155,234,218,181,107, 2,154,166,149, 77,155, 54, 53, 92,190,124,217, 83, 36, 18,113, 98,177,152,189,118,237,154, 34, 34, - 34,194, 68, 16,132,244,199, 31,127,204,191,122,245,106,248,140, 25, 51,190, 65,217,105,226,206,216,185, 96,193,130,140,148,148, - 20,152,205,102,104, 52, 26, 20, 23, 23,151, 46, 69, 69, 69, 40, 46, 46,134, 72, 36, 66,118,118, 54,246,239,223,159,101,139, 18, - 95,153,101, 99,237,154,117,235,213, 89, 15,211,160, 84,200, 65,107,138,192, 20,231, 3,218, 98, 72, 40, 43, 60, 68, 12,234, 54, -146, 67,166, 80, 34, 71,163, 67,252,229, 95,179,109, 81,226, 43, 54, 23, 88, 44,107,223, 93,177, 34,135, 22,139, 81,111,248,112, - 88,109, 67,133,142, 66,139, 33, 8,132,247,234, 5,210,219, 27, 11,247,237,203,177, 69,137,127,162, 96, 89, 86, 96,177, 88, 42, -203, 7, 88,150, 77, 79, 76, 76,220, 5,224, 44, 65, 16, 28, 65, 16, 28, 74,130,181,233,158,229, 7,153,162, 40,204,157, 59, 23, - 98,177, 24,115,231,206,197,167,159,126,138,101,203,150, 97,253,250,245,248,246,219,111,113,244,232,209, 6, 23, 47, 94, 20,159, - 63,127,158,139,139,139,203,139,136,136, 16, 76,156, 56, 81, 37,151,203, 63,168,140, 51, 54, 54, 22, 94, 94, 94,136,141,141,197, -146, 37, 75,176,121,243,102, 28, 60,120, 16,151, 46, 93,130, 64, 32, 96,211,211, 31,193,100, 50,113,171, 87,175,206, 56,120,240, -160,113,213,170, 85, 16, 10,133,196, 83,106, 36, 62,176, 9, 42, 71, 75,144,115, 72,133,124, 0, 43, 81,181,111, 84, 69,156,144, -197,199,215,181,137,163,100, 7, 65,116, 24,192,116, 84, 62,189,218,206, 49, 25, 64,112, 45,112,206,150,143,254,191, 68,213,166, - 59,247,175,100, 25,103, 3,248,193,158, 39,165, 82, 41, 63,112,224,123, 33, 0,236,219,187, 95,148,148,148,228,253,253,247,223, -203, 2, 3, 3,241,237,183,223,202,228,114,121, 96, 5,156,204,193,131, 7,205, 18,137,196,111,194,132, 9,253,218,181,107,247, -190,173, 35,218, 11, 64, 11,148,204, 94,140,186,127,255,126,130,191,191,255,221,147, 39, 79,234,221, 41, 32,173, 86,251,205,214, -173, 91,235, 23, 48,190, 56,166, 31,138,120,118, 41,142,170,182, 32,173,222,167, 80,212,121, 25,175,191,254,122, 29,134, 97, 54, - 85,179,220, 95, 31, 50,100,200,214,248,248,248,176, 9, 19, 38,100, 95,191,126, 61, 7, 64, 60,128,237,142,203,237,219,183,243, -198,142, 29,155,181,105,211,166,144, 17, 35, 70,172, 7, 48,140,127,245,243,224, 81,182, 47,132,170,102, 29,186,120,225,150,254, -207,205,205, 93, 93, 88, 88,120,233,222,189,123,239, 89, 44,150, 16,130, 32, 56,177, 88,156,157,147,147,179,202, 33, 96,169, 43, -191,146,222,176,197,218, 32, 8,130,226, 56, 46,189, 71,143, 30, 31,244,234,213,235,171, 35, 71,142,152,186,119,239,142,189,123, -247,250,247,232,209,195,192,178, 44,119,236,216, 49,255,190,125,251, 26,206,158, 61,171,127,251,237,183,155, 54,105,210,100, 98, -108,108,172,154, 32, 8,214, 21,167,253, 93, 86, 84, 84, 52,164, 95,191,126,151,246,237,219,167, 84,169, 84,160,105, 26, 6,131, - 1, 6,131, 1, 28,199,193,219,219, 27,106,181, 26,243,231,207,215, 20, 23, 23, 15,118, 33,220,156, 57, 77, 38,147,105,216,228, -247,167,159, 90,245,249, 92,175,240, 6, 13,144,127,199, 4,218,100,128,136, 35, 81,247, 5,111,136, 37,114,220, 75,210,226,163, - 93, 7,180, 70,147,233, 53, 23,189,229,114,156,197,197,197,195, 98, 62,253,244,244,134, 25, 51, 60,219, 4, 5, 65, 32, 16,192, -108, 54,131, 97, 24,136, 68, 34, 68,198,196, 64, 28, 16,128, 57,187,118,233, 53, 26,205, 48,148,255, 20,143, 51,103,109,192,145, -115,242,141, 27, 55,198, 54,107,214, 12,147, 38, 77,194,144, 33, 67,202, 28,248,253,247,223, 99,253,250,245, 48,155,205, 99, 1, - 92, 7,176, 14, 37, 67, 29,112, 18, 89,127,119, 58,107,157,147, 97,152,194,164,164, 36,229,210,165, 75, 9,171,213,138,207, 63, -255, 28,118,193,105,175,215, 83,166, 76,169,227,229,229,133,207, 62,251,204,146,151,151,215,115,201,146, 37,103,182,111,223,238, -255,205, 55,223,188, 14, 32,214,153,147,101,217,220,155, 55,111,122,109,216,176,129,164,105, 26,203,151, 47, 47, 55, 60, 57,126, -252,120, 88,173, 20, 4, 2,161,197,100, 50,183,144,203,229,201,126,126,126,114,174,172,115,215,147,188,159,161, 40, 9, 97,224, -232,248,110,113,244,207, 66,197, 33, 21,170,195,169,150,197,199,119, 55,197,196,156,181, 9,162, 68,219, 49,123,237, 38,253,106, -112,218, 5, 97, 77, 56, 79,217,150, 42, 97, 50,153,160, 86,171,145,151,151, 7,149, 74, 5,129, 64, 64, 84,148, 78,179,217,252, -231, 71, 31,125,116, 99,211,166, 77,189,175, 92,185, 50,240,252,249,243, 61, 78,159, 62,109, 74, 75, 75,163, 41,138,226, 66, 66, - 66,132,157, 59,119,150,245,239,223,223, 67, 42,149,146,179,103,207,206,251,226,139, 47,252, 81,214,135,205, 57,239, 2,130, 32, -240, 97, 87, 45, 98,123, 8, 96,177, 88, 81, 84, 84,132,140,140,116, 36, 36, 36,224,202,149, 59,224, 56,142,172, 70,185,251, 1, -152,253,221,119,223,133, 74, 36, 18, 98,215,174, 93,117,118,237,218, 85,165, 37,117,199,142, 29,117,118,239,222, 61,207, 54,122, -145,254, 44, 62,239, 60,231,255, 44,231,179, 12,231,200,240,168, 82,104,217,218,249,246,176,125,148,148,162,168, 95, 92,132,112, -248, 4,192, 92, 7, 43, 88, 85,230, 60, 13,199,113, 23,122,247,238, 61,165, 87,175, 94, 43,250,244,233,147,149,149,149,213,112, -249,242,229, 97, 52, 77, 91, 19, 18, 18,200,228,228,228,180,223,126,251,173, 81,147, 38, 77, 38,222,190,125,251, 28, 65, 16, 86, - 55, 50,152,144,156,156,220,169, 71,143, 30,251, 39, 78,156, 24,222,161, 67, 7,137, 74,165,130, 80, 40, 68, 74, 74, 10,254,248, -227, 15,203,238,221,187,211,139,138,138,170,243, 9,158, 95, 82, 51, 50,162, 70, 76,125,111,223,196, 33, 3,253,255,213,244, 5, - 73, 72, 72, 8, 96, 52,226,206,195,108, 92,189,243,135,117,243,133,171,106,179,217, 60, 12,238,127,130,231,151,223,238,221,235, -221,115,198,140,125,243,254,243,159, 32,100,101, 9, 67, 66, 66, 32,145, 72,240,224,193, 3, 36,179, 44,189,120,227,198, 28,155, -200,122,210, 81,225,165, 0,150,178, 44, 43, 4, 0,185, 92,142,119,223,125, 23,142,159,220, 89,191,126, 61,140, 70, 35, 0, 8, - 9,130, 88, 10, 96,203,179,110,197,178,163,160,160, 96,206, 43,175,188, 18, 39, 20, 10, 43,140,122,235,227,227, 3,173, 86, 11, -154,166,153,140,140,140, 59, 62, 62, 62, 16,137, 68,224, 56,206,229,115,148,159,159, 63,103,216,176, 97, 11, 72,146,172,200,242, - 1,165, 82,153,118,230,204,153,198,111,189,245, 22,249,223,255,254, 55,101,194,132, 9,210, 51,103,206, 48, 28,199,237,127,210, -247,160, 75,151,157,192,134,152,215, 0,188, 6,148,115,120,207,176,109,171, 86, 72,133, 46, 93,118, 98, 3,254,226,116, 28,198, -179, 11, 34,155, 21,170,185, 44, 62,126, 5, 74,252, 44, 42,229,238,178,179, 11, 54,196,160, 86, 57,221,129,163,246,213,235,245, - 96, 24,166, 50,107,222,239,123,247,238, 93,241,219,111,191, 5, 76,153, 50,165,225,127,254,243, 31,101,143, 30, 61, 60, 29, 15, - 48, 26,141,236,225,195,135,245,235,215,175, 47,190,112,225, 66,234,248,241,227, 59, 84,150,206,135, 15, 31, 30, 93,184,112,161, -119,255,254,253,155, 0, 40,245,207, 82,171,213, 72, 75, 75,195,159,127,254,153,102,181, 90, 15, 85, 35, 75,249, 0,230,141, 26, - 53,106,233,182,109,219,234, 76,152, 48, 33,123,247,238,221,127,162, 36, 96,177, 51, 84, 67,134, 12,105,185,109,219,182,144, 9, - 19, 38,100,163,196,143, 44, 29, 60,120,240,176,163, 59,202,251,105, 85, 58, 50,177,213, 98,177,112, 38,147,137, 51, 24, 12,156, - 78,167,227,224,250, 43,240, 7, 51, 51, 51,185,244,244,116,238,225,195,135, 92,106,106, 42, 7,224, 91, 39,197,235,170,193,242, -216,177, 99, 71,163,208,208,208,207, 21, 10,197, 9,129, 64,160, 17, 8, 4, 26,169, 84,250,131,159,159,223,167,139, 23, 47, 14, -229, 56, 78, 92,137,138,174, 8, 66,145, 72,244, 86, 96, 96,224, 65, 95, 95,223,116, 31, 31,159,244,192,192,192,131, 34,145,232, - 29, 0,162, 42,148,121, 69,144, 9,133,194,143, 60, 60, 60, 78, 73,165,210, 92,169, 84,154,235,225,225,113, 74, 40, 20,126,132, -202, 3,169, 86,202, 41,145, 72, 62, 10, 8, 8, 56,165, 84, 42,115,149, 74,101,110, 64, 64,192, 41,137, 68,242, 56,156,143,211, - 43,177, 11, 45, 3,103, 3, 65, 16, 84,235,214,173, 55,180,109,219,118, 93,219,182,109,215,181,106,213,234,107,155, 85,146,179, - 89, 91, 12,168, 56,120,227,223,153,206,167,198, 25, 25, 25,185,125,219,182,109,236,156, 57,115, 52, 77,154, 52, 41,152, 51,103, -142,102,219,182,109,108,100,100,228,246,154,114, 6, 5, 5,213,139,140,140, 44,216,180,105, 19,157,148,148,196,109,218,180,137, -142,140,140, 44,112,138, 12,255, 36,242, 78, 0,136,176, 89,127, 14, 1,216,131, 18,231,247, 80, 0, 68,140, 41,134,179,205, 62, - 60, 1,160, 79, 5,101,239, 46,103,152, 41, 38,134,179,249, 84,157, 4,144,232,176,222, 13,101,253,191,158, 4,167, 75,180,104, -209,226, 30,231, 0,139,197,194,169,213,106, 46, 41, 41,137,187,112,225, 2, 23, 22, 22,118,207, 13, 78, 63, 0,111, 3, 56, 28, - 28, 28,124,187, 99,199,142, 15, 59,117,234,244,176, 94,189,122, 41, 34,145,232, 10, 74, 34,188, 71,218,150,165, 0,154, 84,193, -217, 81,165, 82, 45, 12, 11, 11, 59,212,184,113,227, 75,245,235,215,191,226,235,235,123, 68, 38,147, 45,194, 95,145,177,171, 91, -231,123, 12, 29, 58, 52, 77,167,211, 49, 47,189,244,210,109, 87, 39, 53,107,214,236,162, 78,167, 99, 70,142, 28,153, 14, 32,250, -159,240,188,243,156, 79,133,243, 31,133,198, 54,193,116,208, 97,249,196,197,113,159, 56, 29,179,213,118,110,149, 5,193,113,156, -128,227, 56, 15,142,227,188, 57,142,243,229, 56, 78,197,113,156, 39,199,113,210, 42,204,223,124,197,254,251, 56, 39,219, 4,148, -193,246,223, 25, 85,237,127,174,239,103,104,104,168, 79,187,118,237,166, 30, 56,112,224,163,251,247,239,127,116,224,192,129,143, -218,181,107, 55, 53, 52, 52,212,231,113,210, 25, 20, 20, 84,175,121,243,230, 95, 53,107,214, 44,189,121,243,230, 95, 57,137,172, - 39,153,119,137, 77,196, 52,179, 45, 13,109,219, 8,148,196,194, 90,107, 19, 54, 17, 21,244,212,170,195,105,231, 59, 4,160,175, -109, 57,100,219, 22,246, 20, 56,203,161, 65,131, 6,199, 91,182,108,121,175, 85,171, 86,201,173, 90,181,186,215,162, 69,139,123, - 77,155, 54,189, 23, 17, 17,113,175,110,221,186,247,252,253,253,143,215,160,140,124, 1,132,160,252,103,192,158,118,157,239, 30, - 25, 25,121, 85, 38,147,185,140, 13, 38, 20, 10,231,181,106,213,234, 38, 74,102, 74,242,237, 39,207,201, 11,173,255, 33,240,149, -240,217,227,148,162,242,207,140, 84,181,159,191,159,207, 54,167,203,111,117,217,132, 76, 67,155,192,145,212, 2,167, 35,159,189, - 78, 69, 56,136,166,167,193,201,215, 37,158,147,231,228,133, 86,173, 67,200,223, 2, 30, 78, 48, 63,230,126, 30,207,197,104, 60, -126, 0, 0, 32, 0, 73, 68, 65, 84, 54,170, 19, 19,235,113, 56, 93,241,221,127,202,156, 60,120,240,224, 81, 91,109,103,119, 0, -231,236,189,194,138, 84,105,117,102, 19,212, 68,217,158,230, 57,121, 78,158,147,231,228, 57,121, 78,158,243, 31,199,105,199,138, - 10,182,223,113, 90,255,250, 25, 21, 94, 79, 36, 76, 15,111, 86,229, 57,121, 78,158,147,231,228, 57,121, 78,158,179,166,152,248, -140,138,172,110,246, 21,126,232,144, 7, 15, 30, 60,120,240,224,193,163,246, 80,117, 28,173, 61,123,246, 8,236,255, 71,141, 26, - 53,158, 97,152,169,246,117,129, 64,176,230,187,239,190,219, 82,217, 21,134, 15, 31,206, 84,198,233, 10, 85, 93,199, 21,103,139, - 38,202, 73,126,222,138,247,138,138, 13, 43, 83, 50,153, 11, 38,147,169,185,125,159, 76, 38, 75,220,178,101,203,221,218, 78,231, -248,241,227,155, 56, 95,167,126,152,168,187,175,151,236,221,130, 34,221,242, 91,247,116, 95,243,117,236,169,192, 31, 64,180,151, - 76, 60,168,133, 74,220,241,207,124,211,101,189,149, 57,140,146,217,176,133,207, 99,134,131,131,131,155, 42,149,202, 49, 0, 90, - 24, 12,134, 64,133, 66,145, 11, 32, 65,163,209,108,207,206,206,190,227, 46, 79,183,250, 72, 3, 16,110, 91,125,120, 46, 21,245, -220,217, 87, 21,250, 68,192,196, 1, 82,130,128,245,100,242, 95,206,232,125, 27,193,196,114,229,183,247,105, 4, 11,199, 65, 76, - 0,230,147,247, 33,123,142,138, 74, 9, 32, 10, 37, 33, 28,110,160, 36,252,132,129,127,100,121,240,120,174,224, 60, 84, 88,186, - 46,172, 64, 76,116, 21, 11,137,175, 56,112, 42,128,243, 51,155,205, 34,137, 68, 2,139,197, 2,133, 66,190,246,237, 9,227, 63, - 7,137, 34,138,198,187, 91,182,108,169,241,151,174,171,115, 29, 0, 63, 57,159,239,163,148, 47, 56,123,248, 99,159,174, 3, 22, - 47,178, 60,200,139,213,106,181,164, 84, 42,133,217,108,134,183,183,119,167, 73, 19, 39,190, 68,138, 56,139, 88,236,113,121,197, -138, 21,217, 53, 77,231, 7, 31,124, 16,108,181,154,254,205,178,172,196, 98,177, 72,157,175,227,173,240, 88,124,246,240,199,138, -110,209,139, 62, 7,120,161,245, 20, 32,169,231,227,113,110,229,168,238,205, 58,182,104, 12, 54,225, 60, 76, 22,235,160,179,233, -186, 65,159, 94,201,156,158,174,179,182, 69, 45, 4,172,252, 31,130,160, 97,195,134, 83, 2, 2, 2, 70,110,220,184, 81,220,176, - 97, 67,200,100, 50, 24,141,198,144,251,247,239,135, 76,154, 52,169,155, 92, 46,223,149,146,146,178, 22,238,125, 8, 46,252,236, -214,255, 3, 0,116, 26, 51, 63, 28, 37, 31,139, 54, 56,239,235, 62,110,126, 56,128, 25, 40,251, 97,228, 44,148,132, 80,112,213, -234, 72,142,108, 91,134, 65, 99, 63, 18, 2,152, 84,154,120, 18,248,225,219, 85,232, 55,234,189, 50,219, 9, 14,194,195,219,150, - 33,122,236, 71, 21,126, 71,177,111, 99,130, 98, 89,174, 66, 75, 60, 73, 18,244,137,123,156,171, 15, 12,231,160, 36, 6, 88, 57, - 74,148,124,208,217,229,241, 3,154, 10,114,172, 20,227, 50,224,172, 88, 36,200, 61,122,135, 41,119,110, 76, 27, 80, 20, 83,210, -182,138,133, 96, 14,166,120,159,157, 61,123,182, 48, 58, 58, 26,155, 55,111,238,252,245,215, 95, 79,212,106,181, 63,218,238, 91, - 50,255,248,242,224,241, 92, 11, 46,215, 66, 75, 40,192,134, 67,251,182, 52,202,201,205, 67,204, 91, 31, 98,231,206,157, 40, 44, - 44,132,143,143, 15, 36, 98,177,104,229,210,255, 11, 86, 42, 61,130, 99, 38,198,110, 0,208,180,166,169,169,230,117, 26, 59,159, - 79,216, 62,165, 35, 20,144, 34,137, 68, 66,238,218,181, 11, 69, 69, 69, 80,169, 84,144, 72, 68,228,138, 69,159,200,149, 74, 79, -249,155,147,103,118, 70, 73,252,159, 26,193, 98,209,117, 62,176,115,139, 82,173, 86, 99,220, 59,177,112,190,142, 88, 44,102,236, - 47, 22,190,142, 61, 21,204,222,248,238,216,102, 47,122, 1,214, 91,151, 32, 18, 8,160,240,246, 65,148, 80, 0, 1,129,230, 49, - 39, 82,103, 1,248,244,121,201,108,195,134, 13,167, 12, 31, 62,124,228,130, 5, 11,196, 36, 89, 18,114, 78,175,215,195,104, 52, - 34, 52, 52, 20,103,207,158, 21,207,153, 51,103,228,247,223,127,143,148,148,148,213,213,229,191,117,235, 86,253,240,240,112, 19, - 0, 12,108,233,229,188,175,158,125, 31, 0,120,121,121, 85,201,231,167,242, 48,223,186,117,181,133,253,188, 41,189, 66,153, 10, -182,155, 0, 40, 42,227, 98, 89, 78,120,242,171, 73, 21,238,127,107,193, 14,250,198,158, 11, 77, 27, 54,108,104,116,220,238,233, -233, 89,209, 41, 65, 58,157, 46,220,121,163,253,120, 43,197, 4, 86,116,189, 62,239,174,119, 41,192, 40, 6,194, 29, 59,118, 0, - 0,190,252,104,180, 96,211,207,121, 66,161,176,164,169, 93,186,116, 41,230,205,155, 39, 57,113,226, 68,255,109,219,182,245, 63, -120,240,224,202,138,132, 42, 15, 30, 60,158, 73,145,229,248, 91,177,208, 34, 9,194, 75,233,229,137,215, 94,127, 27,199,143,255, -128,174, 93,187,150,238,107,208,160, 1,134, 15, 27,140,239,182,174, 0, 0,175,199, 73,209,227, 94,167,176, 88,255,105,191,145, - 95,205,127,152,173,187,114,228,200, 17,116,233,210,165,204,249,175,143,120, 13,223,126,179, 20,149, 68,153,119, 11, 4, 71,138, -189,148, 30, 24, 21,243, 14, 92, 93,103,226,184, 33, 71,250, 14, 95,213, 59, 39, 95,191,130,175,103, 79, 30,141,130,253,250,180, -108,214, 20,133,251,215,226,143, 34, 19,142,103,154,240,102,212,191, 16,233, 43, 71, 23,154, 65,176,135,168,103,182,158,122, 46, -132, 86,112,112,112,211,128,128,128, 50, 34, 75,171,213, 66,167,211, 65,163,209, 64,171,213,130, 36, 73,196,198,198,138,207,157, - 59, 55, 50, 56, 56,248,180, 27,195,136, 15,109,150, 44, 64, 32,210,205,157, 59,215, 28, 24, 24,104, 86, 40, 20,156, 80, 44,213, -118, 31, 55,223, 11, 0, 72,161, 88,187,114,229, 74, 75,104,104,168, 73, 40, 20, 74,222,123,239, 61,210,157, 52,155,205,102,206, -145,211, 98, 49,151,110, 95,188,120,177, 37, 40, 40,200,172, 80, 40, 56,171,213,125,163,227,205, 7, 5,144,138, 5,144,138, 5, -144, 73, 68,240,170,223, 14,210,194, 63, 65,211, 52,150, 44, 89, 98, 13, 14, 14,182, 40, 20, 10, 78, 34,145,136,167, 77,155, 86, -101, 58,199,143, 31,207,169, 84, 42,171, 66,161, 16,207,155, 55,175,220, 76,161, 51, 55, 50, 32,151,136,160,144, 10,209,184, 65, - 24,164,156,209,237,180, 10, 4,101,189, 17,164, 82, 41, 58,119,238,140, 22, 45, 90,224,224,193,131,221,121,161,197,131,199,115, -129, 10,103, 24, 10, 1,224,200,145, 35,221, 80,242, 65, 68, 68, 71, 71, 19, 37,103,112,152, 49,101, 24,222, 28, 55, 10, 12,195, -150,126,231,139, 32, 9, 76,126,163, 63, 88,214,157, 17,137,170,167,120,214,224, 58,165,156, 28, 65, 10, 0,160, 81,189, 16,110, -226,155,255, 1,195,178,127, 13,148, 8,128,183,199,245, 43,217, 86, 11,233, 20,128,193,135,147, 94,133,171,235, 52,109, 84,135, -164,173, 38, 16,101, 63,246,248,119,124,108,147,231,116,129, 22,117, 67, 34, 40,163, 17, 38, 19,133,248, 59, 5,198, 83, 25,250, - 64, 82,149,170, 94,245, 90, 7,153, 64,157,137,122, 94,146,198,217,122,234,185,200,187, 82,169, 28,179,113,227,198,114, 34, 43, - 39, 39,135,212,233,116,176, 90,173,172, 86,171, 5,195, 48,152, 57,115,166,104,206,156, 57, 99,178,179,179,231,217, 53,143, 43, - 78,155,223,213,140, 91,183,110,213,155, 61,123,182,181,103,207,158, 15, 27, 52,104,160, 23, 8, 4, 8, 9, 9, 89, 21, 21, 21, -229,187, 96,193, 2,107,255,254,253, 83, 5, 2, 1, 26, 55,110,172,255,243,207, 63,235, 1,144,187,155,119, 71,206, 45,103,214, -112, 0, 64, 16, 4,162,162,162,210, 26, 55,110,172, 23, 8, 4,184,123,120, 49,231,238,253, 20, 9, 73, 52, 9,245,182, 53, 34, - 4, 32,247, 44,245,196,139,138,138, 74,111,218,180,169,142, 36, 73,220,188,121, 51, 12,229, 63,107, 85,142, 83, 46,151, 83,175, -191,254,250,195, 59,119,238,184, 58, 30, 66, 1,137, 14, 77,109, 6,172,208,182, 64,250,197, 10,211, 41, 18,128,158, 51,101,180, - 80, 37, 3,164, 94,254,102,141, 70, 3,165, 82, 89, 98, 33,179, 90,241,251,239,191,163, 99,199,142,221,246,236,217,115,142,127, -222,121, 78,158,243, 47,184,210, 34,207,160, 53,203,241, 67,247,101,124,180,206, 58,103,138, 97,104, 52, 8, 15,194,226,255, 27, - 15,134, 97,193, 48, 12,104,219, 47,195, 48,160,172,214, 90, 73,217,227, 92,199, 71, 41, 95,240,195,174,119,125,122, 14, 89,218, - 43,110,246,184, 83, 12, 3,176, 44, 5,138, 2, 24,150, 2,203, 48,160,168,218,113,205,161, 88, 22,245,194,130, 17, 55,123, 28, -156,175,179,253,187, 61, 3,207, 28,138, 85,116,141, 94,244,225,221, 52,195, 18, 94,216, 63, 89,200,196, 82, 33, 39,148,193, 98, -161,161,181,176, 22, 0,122, 19,197, 90, 57, 15,127, 25, 0, 8, 73,226,121,154, 93,219,162, 97,195,134,101, 68,214,178,101,203, -252,215,173, 91, 23, 10, 0,195,134, 13,203,232,213,171, 87, 94, 82, 82, 18, 66, 66, 66,136,188,188,188, 1, 0,222,179,157, 59, - 3,192,186, 10,120,245,225,225,225,166,128,128, 0,179, 93, 16,145, 36, 9,161, 80,136,240,240,112, 83, 96, 96,160,185,113,227, -198,122,177, 88, 12,146, 36, 97, 23,122,110,117,243, 8, 2, 2,129, 0,118, 78,103,107,143,157,179, 58, 16, 9,201,242,205,155, - 3, 39, 73,146, 46,175, 87, 97, 29,146,201, 56, 0, 21, 30, 47, 32, 29,154, 71, 97,229, 30, 2,241,191, 67, 4,224, 44,199,113, -184,126,253, 58, 82, 82, 82, 32, 22,139, 17, 28, 28,140,121,243,230,193,108, 46,209,187,195,135, 15,239, 6,224, 38,255, 4,243, -224, 81,138,179,207,160,192,114,182,106, 85,238,163,117,228,200,145,110,209,209,209,231,236, 2,168, 68,236,184, 16, 63, 20, 13, -138,178, 2, 28, 87, 43, 66,171,162,235, 48, 12, 91,233,117,236, 62, 90, 44,203, 9, 93,138, 44,150, 5, 77, 81,181,114,247, 88, -134, 2,203, 82,112,117, 29,130, 32, 25, 91,131, 47,230,159,147, 39,143,224,240,122, 36, 21,222, 0, 23,104, 19, 66,253,164, 18, -228, 25,209,240,133,102,130,223, 13, 20, 46,221, 72,132,191,167,242,185, 41, 23,131,193, 16, 40,147,201,160,215,235, 75, 45, 89, -235,214,173, 11,181, 88, 44, 36, 0, 8,133,162, 48, 53, 27, 42, 99, 88,192, 91,153,133,194,194, 98, 63,142,227, 8,155,224, 89, - 10, 96, 11, 42,137,238, 47, 22,139, 75, 5,138,163, 0,146, 74,165, 53, 18, 48,118,216,197,153, 88, 44,118,185,221,121,120,173, - 42,136, 29,133, 22,184, 18,171,150,147,216, 18, 8, 4,176,251, 70, 85, 5,137, 68, 82,154,119, 87, 16, 10, 28,174, 39,168,190, - 43,166,213,106,133, 78,167, 67, 81, 81, 17,100,178, 18,131, 25,199,113, 32, 8,226, 61, 0,239,243, 79, 49, 15, 30,174,181,200, - 51, 44,182, 92, 11, 45,148,152,236, 8, 0,160, 41,171, 75,241,179,231,240, 37, 60,204,214, 35,216,255, 23,112,213,140,122, 58, -114,228,200,173, 33, 33, 33, 29,236,235, 82,185,167,223,196,119, 63, 3, 77, 91,225, 37, 39,241,214,152,126,101, 68, 86,137, 69, -203, 82,225, 55, 65, 10,139,245,159,246, 27,190,122,190,183,210,239,138,179,248,137,139,191,246, 90,161,198, 28, 70,146,191,162, -144, 8, 97,134,191,253,217,120,135,198,253,198,174,245,115,167,187,109, 15, 36, 72,209,107,147, 86, 77,228,132,158,205, 21,164, -246,252,199,227,254,117,192, 81,204,249,250,250, 30,233,243,218,202,222, 57, 5,188,143,214,211,128,151,183,138, 12,123,185, 59, - 94,126,239, 43,156,249,228, 99, 14, 40,132, 95, 72, 40,217, 99,202, 23,240,124,121, 32,174,190, 53,134, 5, 10,158,139,188, 42, - 20,138, 92,131,193, 16, 98, 52, 26,161,209,104,160,209,104,202, 10, 2,145,136,152,248,206, 84,127,145, 88, 2,202,106,193,241, -237, 95, 84,201,105, 15,225, 48,176,165, 23, 4, 34,137, 54,161, 97,195, 85, 66,161, 16, 36, 73,226,240,218,143,223,219,191,252, - 93, 47, 0,184,113,100,173,102, 84,236,154,213, 36, 73,194,108, 54, 75,171,147,238, 71,143, 30,133,153,205,102,147, 77,160,217, -133, 31, 30, 60,120, 80,215,108, 54, 27, 29,183,187, 3,185,194, 11, 80, 53, 0, 20,129,229,172,103,169,169,169,117, 40,138, 50, - 8,133, 66, 88, 44, 22,183, 84, 17, 73,146,226,155, 55,111,134,177, 44,235,242,248, 22, 17,117,128,224,150,128,196,219,237, 60, -115,110,116, 68,109, 98,235,137, 69,144,230,193,227, 89,177,108, 61,131,207, 4, 81,193,255, 82,161,213,253,200,145, 35,156, 99, - 15,145,166, 40,155,200,250, 75,244, 48, 12,139, 76,181, 9, 73, 73,119,177,114,229, 74, 92,186,250,145,247,130, 5, 11,164,115, -230,204, 49,143, 28, 57,114, 57,203,178,173, 72,146,188,129,191,134, 42,202, 90,133, 88,182,238,181,107,215, 26,218,215, 41,138, -130,151,151, 23,188,188,188,208,180,113, 88, 57,145,197, 48, 12,172,149, 12, 29,218,125,180, 8,142,229, 40,138, 1,195,178,165, -226,167, 80, 99, 14, 59,116,250,122, 35,135,195, 95,176,255,233,220,174,121,197, 98,112,210,188,210,124,236, 90, 63,119,250,130, -205,155,165,133, 76,192,180, 81,175,189, 25, 57,124,212, 24,188,254,234, 43,221,204, 22,203, 65, 1,201,177, 84,233,245, 64,130, -131,179,143, 22,143, 39,132,228, 34, 61, 37,146,202,225, 25, 92, 31,119,117,140, 88, 32, 16,252,114,191,200, 32, 38, 5, 66,144, - 66, 49, 18, 10, 77,212,115,148,221,132,228,228,228,144,186,117,235, 66,163,209,128,166,105,118,216,176, 97, 25, 66,161, 40, 76, - 40, 18, 17,209,163,166,178,217,217,153, 20, 73, 10,192,113, 12, 94, 25, 62,137,144,202,228, 98,171,197, 66,163,100,232,208,149, - 53,203, 49,132,131, 87, 84, 84,148,175,125, 38,224,254,229,239,122, 57,236, 83,190,244,210, 75,190,142,179, 14,221,180, 22, 17, - 35, 71,142,148,135,135,135, 19, 0,240,235,246,217,118,235, 25, 49,112,224, 64, 89,120,120,137, 31,254,143,107,223,117,155,211, - 95,193, 1,197, 15,128,226,212,114,150,172,129, 3, 7, 74, 27, 54,108, 88,173,103,209,230, 0, 95, 97,236, 46, 15, 33, 13,100, - 95,119,139, 43,166, 13,168, 80, 79, 8,151,191, 66, 66,226,233,103,238,240,241,137,159,121,177,197,131,135, 91,112,210, 34,207, - 20,186,217, 4, 98,119,219,111,169,224, 18, 2,128,205, 68, 71, 56,232, 44, 80,180,181,156,200, 98, 24, 6, 34,194,140,149, 43, - 87,226,253,247,223, 7, 0,241,244,233,211, 15, 44, 88,176, 96, 40,203,178,173, 56,142,235, 66, 16, 68,101,189,198,179, 33, 33, - 33, 57, 28,199,137, 72,146,236,178,118,237, 90,223,254,253,251,195,203,203, 11, 28,203,149, 19, 89, 12,195,194,106,181, 84,248, -153, 91, 31,165,124,193, 15,123,166,249,244, 28,188,180, 23,195,178,167,236, 34,139,101, 24,128, 45, 57, 41, 63, 55, 3, 39,143, - 31,196,134,245, 27, 10, 65,112,183,193,129,181,137, 65, 84, 32, 6, 91, 93,252, 53,177, 75,231,118,205,177, 96,243,102,233,173, -107, 89, 7,166,126, 48, 43,114,248,168, 49,216,243,221,118,144,116,209,117, 71,145,197, 80, 44,138, 11,243, 6,254,196,251,104, - 61, 45,248,158, 60,117,138, 24, 51,102, 12,171,213,106, 33,150, 72, 88,138,162, 4,255,254,247,191,153,247,223,127,159,204,206, -206,134, 70,171, 19, 2,240,197,115, 96,214,210,104, 52,219, 39, 77,154,212,237,252,249,243, 98,146, 36,161,209,104,208,163, 71, -143, 60, 53, 27, 42,155,248,206, 84,255,204,204, 12, 90, 41, 23,154,197, 98, 17,114,115,115,217,110,253, 71, 27, 71,141,127,191, -206,251,179,227, 54,102, 93, 94,191,206,157,107, 56,206, 4,116,222,183,105,211, 38, 75,104,104,168, 73, 42,149, 74,198,141, 27, -231,214,248,161,197, 98,225, 22, 47, 94,108,118,158, 93,104,177, 88,184,149, 43, 87, 90,194,194,194,204,114,185,156,163,168,170, -253, 62, 73,146,160,223, 90,176,131,166,105,186,140, 21,203, 46,178, 40,150,208,125,245,213, 87,214,176,176, 48,139, 66,161,224, -164, 82,169,216,157,116, 78,157, 58,149,243,241,241,177,122,120,120,136, 99, 99, 99, 31,107,214, 33,197, 64,184, 96,109,105,120, - 7,169,151,151, 23,180, 90,109,105, 90, 67, 66, 66,120,177,197,131,135, 11,148,211, 34,207,166, 21,206,189, 56, 90, 44,160,203, -201,205, 11,244, 15,170, 15,154,166,109, 11, 5,154,162, 48,237,237, 81, 88,190,254, 43, 0,176,139,173,168,233,211,167, 31, 0, - 80,101, 99,182,107,215,174,249,211,167, 79, 87,230,228,228,156,216,186,117,171,239,232,209,163, 49, 99,198, 12, 44, 93,186, 20, - 34,137, 12,190, 1,117, 75,175, 99,191,110,158,186, 0, 28, 56, 93, 5,118, 58,107, 73, 35, 5,161, 95, 64, 61, 80, 12, 5,150, -162, 64, 81, 20, 8, 65, 73,214, 78, 30, 63,136,209,111, 76,133, 72,170,244, 89,179,114,137, 49,242,229,144,161,115, 38, 76, 48, -187, 97, 4, 36,111, 93,203, 58, 48,245,253,216, 40,187,200,218,183,125,253,237, 47,103, 14,222, 41,149, 8, 75,175, 67,177, 44, - 72, 82,192,251,104, 61, 37,145, 37,149, 74,247, 30, 59,118,236, 94,219,182,109, 9,189, 94, 15,138,162,144,151,151,135, 3, 7, - 14, 36,112, 28, 7, 31, 31, 31, 28, 59,118,140, 29, 61,122,244, 94,179,217,252,218,179, 46,182,178,179,179,239,200,229,242, 93, -179,102,205, 26, 53,115,230, 76, 17,203,178, 72, 74, 74, 2, 8,130, 19,137, 37, 32, 73, 18, 34,145, 16,197,197, 26, 86,225,169, -202,178,114, 2,133, 72, 44, 1, 41, 16, 87, 54, 77,248,161, 45, 24, 41, 72,161, 88,107,159, 9, 40, 22,139,113,117,207, 50, 77, -247,113,243,149, 0, 32,150,202, 11,251,244,233,147,214,188,121,115,253,111,191,253, 86, 15,229,103, 29, 58, 63,159,244,144,113, -177, 2,133, 92,166,143,138,138,122,104,231, 76, 61,181, 70, 51,102,242,108,130, 16, 72,244,209,209,209,105,145,145,145,122,129, - 64,128,196,131, 75, 52, 67,198,197,202,136, 74,130,172,158,184,199,189,117, 99,207,133,166, 95,124,241, 5,213,191,127,255, 71, -118,127,177,212,212,212, 58, 3, 6, 12,144,174, 88,177,130, 26, 48, 96, 64,250,139,255,207,222,117,199, 53,113,254,225,231, 46, -155,189, 71, 16, 68, 69, 81, 20,112,139, 11,197, 58,107, 29,173,226,194,189, 71,157,173,179, 14,220, 74,221,168,117,214, 90,220, - 84,171,162,214, 81, 23, 42, 46, 16, 7, 67, 69, 1, 25, 97, 67,128,144,157,187,223, 31, 36, 52, 32, 35, 65, 91,107,127,121, 62, -159,124,146,220,189,247,220,123,251,185,239,251, 29, 94, 94,197, 36, 73, 34, 50, 50,210,185, 58, 75,149, 6, 70, 70, 70,138, 9, - 19, 38,188,123,254,252,121,109,163, 14,171,133,139,139, 11, 40,138, 66,183,110,221, 32,145, 72, 12,150, 45, 3, 12,248,111,162, - 98, 30,173,170, 51,195, 43,148,138,111,167,204, 94,185, 19, 32, 76,181,238, 2,127, 25,150,104, 16,223,127,255,157, 9, 0, 35, -141,216,154, 59,119,110,141,101, 78,180, 68, 86,155,128,128, 0, 44, 94,188, 24,155, 55,111, 86,253,248,227,143,140,248, 87,137, -242,177,211, 87, 20, 84, 88, 15,104,208,197,148,130,250,182, 50,190,124,161,104,133,239, 87, 27, 86,166,101,150,220, 25, 59,109, -105,217,221, 75, 5,160,144,224,171, 0, 96,207, 79, 63,137, 88, 92,115,147, 33,195, 71, 1, 64,207,157,219,130,206,172,193,129, -154,197, 22, 77,120,124, 59,119,129,149, 70,100,237,218,186,246,185, 5,145, 25, 60,243,187, 24,133,246,122, 0,192,218, 12,103, -124,191,218,208, 59, 43, 79,180,221,112,158,253,115,224,112, 56,171,175, 95,191,110,226,237,237, 77,228,230,230, 66,165, 42, 61, - 34,114,185, 28, 66,161, 16, 69, 69, 69,144, 74,165,104,221,186, 53,185, 99,199, 14,147,153, 51,103,174,150,201,100,211, 63,247, -237,126,251,246,237,174,115,231,206,225,214,173, 91,195, 22, 45, 90,196,114,116,116, 36, 44, 44, 50, 9,133, 92, 6,128,166,179, -179,179, 41, 99, 83, 75,129,173,131,243,187,244,140, 44, 15,133, 92, 6, 74, 37,175,210,219, 92,157,222,225,251, 23, 47, 94,212, -219,180,105,147, 76, 59, 18,112,248,130,157, 59, 90,183,110,109, 29, 28, 28, 44,235,215,175, 95,178,198,121, 93, 23,103,248, 43, -111, 48,251,197,139,103,205, 42,114,250, 77,222,116, 80,195,169, 29,141,216,255,187,189, 7, 27, 53,106,100,237,233,233,153, 92, - 29,111,131, 6, 13,196,124, 62, 95,214,164, 73,147, 98, 22,139, 85,106,201, 82, 40, 74, 26, 52,104, 64, 57, 56, 56,200,154, 54, -109, 90,172,175,211,190,145,145, 17,173,177,138, 85, 6,125,162, 14, 89, 12, 40, 3, 2, 2,202, 50,195,127,223,168,145, 96,212, -168, 81,252,121,243,230,225,224,193,131,184,123,247,238,123, 98,191,107,215,174,184,125,251,246, 74,252,135, 18,235, 26, 96,192, -255, 25,170,207,163, 85, 17,135, 14,133,252, 9, 45,159,166,202,176,102,205, 26,174,218,146,213,115,206,156, 57, 16,139,197, 86, -149, 52,235, 1,117,174,141,202, 68, 86, 80, 80,208, 49,154,166,157, 1,116, 86,169,168, 7,251, 15, 28,234, 86,213,250,134, 12, - 25,242, 30, 39, 77,144, 12,146, 36,138, 57, 44,250,201, 79,251, 14, 30, 41,215,190,212,249,189, 49, 8, 60,221,185, 45, 72, 12, -160,103, 69,177,133,191,202,140,148,113,106, 48,117,218,212, 50,145,181,115, 91,208, 85,207, 54,117,191, 89, 58,113,117,165,226, -108,245,138, 41, 38, 36, 73,116,172,224,163,245, 30,231, 71,128,129,243, 47,116, 11, 8, 8,104,238,227,227, 67,106,139, 44,153, - 76, 86,150,184, 83,227, 44,158,150,150,134,174, 93,187,146,205,155, 55,247,122,248,240, 97, 55,252, 85,206,233,115,221,118,213, -219,183,111,119, 56, 58, 58, 94, 91,190,124,249,168,156,156,156,175,242,243, 11,108,194, 14,173, 70,159, 33,211,136,174,125, 71, -136,100, 52,147,151, 42,200,108,114,243,226, 81,235, 75, 39,118, 65, 46,147, 77, 1, 16,135,191,210, 59, 84,228, 44,209,164,113, -104,210,164,137, 72, 91,168,212,173, 91, 87,226,228,228, 36,245,244,244, 44,155, 94, 69, 52,223,123,219,174, 47,167,218,255, 75, - 84,211,254,212,136,182,138,105, 35,140,141,141,161, 17, 95,250,244, 83, 59,218,178,210, 27,101,205, 81,135,101,156,234,244, 14, -229,116, 90, 72, 72, 72,143,144,144,144, 54, 0,158,160,180,214,161, 2, 40, 29, 74,212,114,154, 15, 84,127, 12,215,187,129,243, -255,149,243,115, 70, 87,252,229,155, 5,148,250,106,221,170, 82,104,213, 4,141,227, 59, 0,114,238,220,185,249, 98,177,216,106, -212,168, 81,213, 46,147,145,145,113,240,240,225,195,229, 68,214,160, 65,131,198,133,134,134, 94,203,202,202,170,213, 86, 89,153, - 27,173,185,117,126,161, 85,215,126, 27,230, 0,248,177, 10, 67, 30,229,217,134,255,205,206,109, 65,103, 42,136,173, 95, 1, 12, -170, 74,149,246,250,114, 32,142, 30,218,169,241,237, 50,122,254, 56,237,210,176,168, 85,149, 70, 43, 90,154,114, 87,169,251, 49, -207,224,163,245,207,128,205,102,251, 45, 90,180,136, 45, 18,137,222, 19, 89, 21,133, 86, 97, 97, 33,158, 62,125,138,177, 99,199, -114,163,163,163,253,228,114,249,141,255,194, 62,200,200,200,136, 87, 39, 35,157,173, 73,225,192,229, 25,177, 71,140,159,227, 92, - 22,117,120, 98, 23,164, 18, 49, 0, 48,117, 73,239,192,100, 50,217,209,209,209,174, 26,171,149, 92, 46,231,106,166, 63,126,252, -216, 85,147, 91, 75, 34,145,232, 28,117,248,119,113, 62,123,246,204, 89, 19, 29,169,137, 46,100, 50,153,236,200,200, 72,103, 13, -167, 84, 42,213, 41,234,144,195,225,176,163,163,163,157, 85, 42,213, 71,139, 58,212, 22,198, 40,173,179, 88,174,214,162,218,183, -140, 32, 8,130, 54, 12, 27, 26, 96,192,103,143,138,145,146,213, 23,149,174, 9, 26,199,119, 61, 22, 97,186,184,184,244, 26, 62, -124,120, 57,145,229,239,239,175, 58,125,250,244, 77, 62,159,159, 73,146,100,188,190,253, 40,243,209,194,123,111,144, 32, 73,242, -105,231,182, 77, 65,146,228,211,165, 19, 39, 74,215,224, 64, 57,177,117,246,204,201,222,169,249, 49,149, 75, 51, 0, 54,246,117, - 16, 48,238, 91, 4,140,251,214, 10, 64, 39,160,234,104,197,234,250, 97,192,223, 3,130, 32, 56, 78, 78, 78,207, 37, 18, 9, 8, -130,128, 84, 42, 45, 19, 88, 69, 69, 69, 16, 10,133,101,255,229,114, 57,178,179,179, 81,183,110, 93, 16, 4,241,159,246,163,147, -203,229,202, 69, 43, 55, 29,102, 48,217, 74,138,146, 19,114,185,124,188, 62,215,249,162, 69,139, 72, 84,226,123, 53,115,230,204, - 74,167,127, 42,206, 37, 75,150, 84, 26, 37, 56,115,230,204,106,163, 7,171,194,119,223,125,247,209,162, 14,117,191,125, 25, 96, -128, 1,255, 49, 84, 26,186, 87, 43,161, 69,146,228,211, 74,162, 11, 9, 0, 52, 73,146, 79, 43,201,114,160,124,247,238,221, 74, - 75, 75,203, 41, 34,145,232,143, 65,131, 6,205,245,247,247, 87, 1,165, 14,242,181,221,162,124,161,104,133, 95,255,141,243, 10, -138,165,193, 21,231, 85,180, 60,105,196,214,174,237, 65,187,207,132, 30,247,207, 72, 79,221, 93,213,182, 85, 37,168,170,138, 86, - 20, 22,138, 87,250,245,223, 56, 39,191, 80,108,240,209,250,135,160, 82,169,174, 24, 25, 25, 17,154, 98,202,218,214,171,194,194, - 66,148,148,148, 64, 93,146, 6, 0, 80, 92, 92, 12, 11, 11, 11,168, 84, 42,250, 63,182, 43,164, 0,230,171,173, 85, 0, 48, 63, -241,230, 14,237,115,251,153,246,188,106,172, 89, 2, 93, 10, 68, 87,182, 92,117,243,254, 6,206,204,106, 10, 68, 87,135, 76, 61, -249, 50, 1,128,205, 98,100, 85, 85, 60,154,205, 98,100, 85,227,183,175,231,123, 3, 65, 3, 88,105,184,178, 13, 48,224,243,125, -255,255, 84, 43,238, 97,224, 52,112, 26, 56,255, 17, 78,174,250,163,235, 60,195,254, 52,112, 26, 56, 13,156,255, 54,206,202, 48, -249, 51, 17, 90,116, 37, 31, 0,181,180,104, 25, 96,128, 1,255, 58, 72,107, 57,207, 0, 3, 12, 48,192,128, 15,199,123,197,164, -181,103, 84,165, 74,245,137, 38,168,141,178,189,102,224, 52,112, 26, 56, 13,156, 6, 78, 3,167,129,243,255,142,179, 38,110,237, -229, 39, 3,216,247,153,136,173, 79, 18,208, 98, 48,171, 26, 56, 13,156, 6, 78, 3,167,129,211,192,105,224,172, 45, 12, 67,135, - 6, 24, 96,128, 1, 6, 24, 96,128, 1,255,231,208, 47, 97,169, 1,149,160,238,192,165,160,176, 68,189, 59,131,144,114, 54,240, -191,182,137,254,254,254, 12,125,218, 39, 38, 90,146, 81,224,111, 54, 55, 97,247, 47, 22, 41, 54, 83, 81, 43,130,107, 58, 17,109, - 27,180, 26,109,204, 51,158, 46,147,201,234,155,154,153,101,229,229,102,239,201,123,247,108,151, 86, 27,243, 7, 15, 30,240,125, -124,124,210, 1, 20,105,189, 41, 24, 96,128, 1, 31, 19,150, 77, 93, 64, 16,227, 1,250,175,176, 75,138,142,129, 48,238, 80,185, -118, 22, 30,227, 64, 18,205,180,166,136, 65, 99, 63, 10, 98, 83,106,120,224, 88, 38, 36, 36,184, 54,108,216, 48, 25, 64, 65,197, -181, 87, 50,207,112,157, 27,240, 57,163, 43,202, 39, 44, 45,187, 22, 62, 92,104, 53, 26, 84, 31, 74,114, 12,104,140, 4,129,104, - 36,134, 14,174, 21,143,219, 55,117, 64, 49,219, 1,104, 5,208,173, 76,140,120, 45,197, 50,121, 22, 69,211,163,241,230,228, 19, -189,249,234,251, 79, 67,213,229, 44, 86, 34, 49,244, 39,189,248, 40,250,135, 71,183, 79,115, 45,141, 9, 52,108, 61,104, 1,202, -103,112,174, 45, 56, 0,124, 73,146,108,102,108,108,204, 47, 41, 41,201,166, 40, 42, 5,165,227,211,249,181,228, 36, 1, 76, 48, - 53, 49,233,227,106,198,105,245, 46, 71,152, 86,164, 80,133,163, 52,161,107,254,199, 58,163, 74, 69,150,227,190, 57, 35,124,198, - 6,205,234, 1, 75,191,141, 11, 74,128,234,132, 22,225,220,184,227,217, 97,195,135,248,205,152, 60,214,180,142,157, 41, 4, 57, - 34,155,159, 14,134,108, 10, 9, 57,218,111,226,176,158,125, 0, 96,245,234,213, 95,187,184,184,212, 99, 48, 24,137,203,150, 45, -251,117,197,138, 21, 52, 81,117,165,114,190,250, 28,214,220,240, 77, 0,120, 2,104, 0,224, 45,128, 23, 40,159,101,188, 54,248, - 44, 56,235,212,169,227, 68, 81,212, 68, 7, 7,135,175, 50, 51, 51, 47,144, 36,121, 32, 45, 45, 45,253, 83,222,117,104,154,222, - 75, 16,196,100,154,166,247,233,241, 61, 69,159,117,240,120,188, 76,137, 68, 98,175,254,157, 37,145, 72, 28,254,174,237,249, 39, -215,245, 15,189,127, 79,186,114,231, 69, 31,237, 73,189, 58, 55,171,228,142, 66, 52,187,114, 39,166, 75,249,118,158,170, 42,238, -129, 4, 77,211, 88,185,114, 37,177,106,213,170,113,110,110,110,141, 72,146,124,185,124,249,242,114,169,111, 42,206,211,186,206, - 13, 98,203,128,207, 21,250, 21,149,174, 17, 77,253, 77, 32,161,253, 1, 98,108,215,182, 45, 59, 79, 25,221,159,160, 25, 60,140, -152,180, 80,169, 55,151,235, 88, 46, 24,226, 53,222,205, 26,207, 29,210,191, 7,217,198,179, 30,248,118, 22, 0,201,194,222,139, - 73, 54,193, 65,203,118, 3,240,169, 69, 47, 87,188,137, 56,102, 47, 40, 80,129, 32, 0,130, 0, 72, 2, 40,150, 80,232,245,245, -152, 21, 0,126,210,243,174, 68, 90, 26, 19,152,123, 76, 2, 0,140,143,112, 80,234,217,217,217,141,155, 61,123,182,137,167,167, -167, 37,143,199,227, 72, 36, 18,135,132,132, 4,187,101,203,150,121,138,197,226,243, 0, 30,233,201, 89,183,161,179,211,201,224, -185, 19,218, 53,111,224, 10,150,172, 24,148, 84,228,242, 42,225,117,135,169,187, 79, 77,138,201,147, 12, 71, 45, 74, 38,228,228, -228, 16, 0, 96,107,107, 75,151, 23, 89,237,199,110,157,215, 11,115,183, 92, 65,137, 68,118,164, 58, 14,235,122, 45, 70,125,243, -205, 64,191,181, 63,204, 52, 77,203,149, 35, 58, 81, 12,107, 83, 54, 86,204,159,198,145, 74, 21, 29,118,255, 26, 50,121,231,134, -133,251, 85, 42,213, 23, 0,218,168, 84,170,199, 0,126, 93,185,114,101, 85, 55,223, 85, 0,150,168, 79,232,163, 12, 6,227,106, -183,110,221,234, 79,156, 56,145,104,221,186, 53, 34, 35, 35, 27, 28, 59,118,172,199,133, 11, 23, 18, 85, 42,213, 51, 0, 47,161, - 46,123,162, 3, 88, 0, 26, 51, 24, 12,239,127, 51, 39,159,207, 55,146,201,100, 99,156,157,157, 39,119,236,216,209,187,127,255, -254, 68,227,198,141, 17, 31, 31,223,250,210,165, 75, 43,194,195,195,159,165,166,166,238,227,112, 56,135, 5, 2,129,248, 31,127, -142, 19,196,100, 0, 78,106,157,188, 82,135,239,116,148,230,146, 18,232,186, 14,137, 68, 98,175, 41, 97, 67, 16,132,253,223,185, - 61,122,174, 43,150, 32, 8,107,117, 91, 84,247, 77,146, 36,148, 74,165, 72,165, 82,185,213,192,217, 88,253, 34,165,179,214, 5, - 80, 93, 34,104, 35, 0,232,213,169, 89, 30, 8,196,148, 89,180,222,127,201,140, 41, 19, 96, 52,154, 93,185, 27, 99, 93,206, 10, - 86,241, 45,118,229, 74, 98,197,138, 21, 8, 12, 12,236, 15,192,151,162,168,112, 15, 15,143, 29,229, 40, 41,170,108,222,138, 21, - 43,182, 87,115,157, 27, 96,192,231, 2, 63,232, 83, 84,186,202,247, 31,183,193, 93,160,194, 88, 87, 27,123,255, 89, 19,135, 26, -121,122, 52,132, 4,166, 72,202, 81,225, 98,216, 37, 0, 56,161,159,213,105,104, 27, 38, 83,114, 56, 40,112,126, 19,223,118,158, -120,158,166,192,227, 52, 21, 74, 18, 21, 96,144, 10,168, 40, 26,160, 33,169,237, 86,167,230, 43,113,231,165, 12, 36, 1, 48, 72, -128, 36, 9, 48,200, 90,146, 81,178, 87,171, 15, 69,121,230,100, 82, 0, 37,123,245,129, 7,164,153,187,187,251,168, 85,171, 86, - 89,102,100,100,152, 68, 70, 70,130,203,229,194,202,202,138,193,231,243,157,182,108,217, 34,158, 53,107,214, 87,114,185, 60, 9, - 64,142,142,156, 30,125,219,120,223,219, 23,180,218, 66,241,224, 18, 10,142,255, 6, 6, 73,131,109, 98,138,250, 70, 70,184,244, - 77, 67,107,255,176,196,211, 15, 51, 69, 30, 0,210,106, 34,139,139,139, 99, 72,165,210,225,230,230,230,237, 89, 44,150, 3,207, -170, 30,149,206,108,147,155, 77, 52,120,155,101, 95,210,101, 94, 15,135, 62,155,231,116,195,220, 45, 87,176,237,216,253, 95, 90, - 33, 99,121,117,121,179,141,141, 77,167,204,154, 62,209, 52, 53, 71,142, 53,167,115,112,232,118, 33,198,248,154, 97,238,151, 22, - 8, 24, 49,204,228,212,111,161, 83, 0,236,215, 90, 36,222,195,195,131,136,139,139,171,236,230,107, 5, 96,161, 76, 38, 35,217, -108, 54,193,227,241, 70,173, 93,187, 86, 62, 98,196,136, 84, 77, 3, 95, 95, 95,248,250,250, 18, 69, 69, 69, 13,110,220,184,209, - 32, 36, 36, 68, 25, 17, 17, 17, 11,224,108,213, 22, 11,163,119, 18,137,216,133,103,100, 84,242,211,238,221,155,187,116,233, 66, -113,185,127,165,159,170, 13, 39, 0, 88, 88, 88,236,183,183,183, 39, 22, 47, 94,156,254,177, 56,235,213,171,119,165, 93,187,118, -221,122,245,234,197,236,212,169, 19,156,156,156,202,230,217,218,218,194,215,215,151, 72, 73, 73,105, 30, 30, 30,190,251,202,149, - 43, 59,158, 60,121,114, 35, 41, 41,169,215, 63,108,209,218,167, 22, 19, 2, 61,219,127,246, 32, 8,194,116,239,222,189,246,154, -154,140, 10,133, 2, 42,149,170,236, 91,243,161, 40, 10, 42,149, 10,107,215,174, 85,137, 68, 34, 93,246,145, 72,235,173, 89,243, -161, 42,251,230,112, 56,182,154,132,189, 53,220,217, 99,248,220,130,166, 38, 38, 38,174, 0,250,194,174,209,194,242, 13, 74,223, -159, 69, 34, 81,178, 64,106, 25, 3,160, 75, 53,108,150,171, 86,173, 26, 19, 24, 24, 56, 80,203, 74,235, 61,100,200,144,138,101, -175,188,213,223, 34,130, 32,110,146, 36,121, 30,192, 33,124, 68,171,187, 1,255, 45,208, 52,221, 22,128,157,214, 36, 25, 74, 71, -133,160,126, 78, 18, 0,108, 42, 76,215,110,167,249,206, 86, 79,183, 83, 47, 71,107,241,102, 19, 4,241,168,150, 93,188,133, 42, -252,180,152, 0, 16, 22, 22, 70,247,235,215,143,208,124, 87, 46,138,252, 47, 78, 24, 49,160,207, 87,221, 59,130,228, 89,225, 85, - 22, 16,241,142, 6,147, 84,128, 4,141, 7,119,111,208, 96, 82,135, 43, 44, 85,181,245,164,222,224,239,188, 61, 61, 54, 30, 8, -154,205,136,205, 98,226, 80,120, 9,228,146, 98,100,103,188, 67, 86,122, 50, 4,169,111,145,246,238,237, 51,128, 88,161, 51,231, -123, 7, 6, 80, 81,234,119, 64, 10,168, 38,242,178,102, 78,185, 40,174, 65, 99, 79,207,124,142, 10,144,139,226,116, 88,125, 85, -156, 94,141, 26, 53, 26,241,195, 15, 63, 88,191,120,241,194,168,164,164, 68,122,233,210,165,248,164,164, 36,115, 62,159,159, 55, -109,218,180, 70, 78, 78, 78,230,131, 6, 13,226, 28, 63,126,252,107,148, 15,107,173,138,211,115, 64,251,150, 17, 7,119,108, 53, -201, 61, 21, 12, 89,194, 83, 92, 20,136,112, 55,179,132,110, 96,193, 37,190,109,110, 7, 83, 46, 19,171, 59, 57,153,246, 61,147, -176, 81, 65, 81, 1,213,113,222,187,119,143,111,108,108,188,101,228,200,145,252,153, 51,103,114, 85, 76, 75,102,104, 68,174,197, -194,221, 17, 78, 37, 82, 57, 99, 68,183,122,152, 55,210, 27,243,182, 93,215,136,172,201,245,235, 23, 80, 81, 81, 85,115, 42,228, -242,250,206,246,230,136, 78, 18,227,208,237, 66,252,249,131, 19,186,175, 77,199,160, 86, 76,120,212, 53,133, 82,174,104, 60,100, -200,144,195,234,183,246, 71, 0,190, 30, 50,100, 72, 19, 6,131,113, 29,192,239, 53, 29, 35, 30,175,242,234, 41, 86, 86, 86,232, -218,181, 43, 60, 60, 60,152, 93,186,116,241,174, 32, 96,202,113,202,229, 50, 62, 69,209, 48, 51, 51, 51,178,177,177,177, 50, 51, - 51,203,173,236, 65,165, 15, 39, 0, 88, 91, 91, 15,238,218,181, 43,243,216,177, 99, 57,137,137,137, 15, 70,140, 24,241,214,220, -220,188,156,245,215,196,196, 4,141, 26, 53,194,178,101,203,152,125,250,244,169,145,211,193,193,161,103, 72, 72, 8, 8,130, 40, -123,104,191,103, 44,118,117,133,163,163, 35,250,246,237,203, 28, 60,120,112,207,164,164,164, 90, 93, 71,122,224, 90, 37, 22,173, -149, 21,142, 83,149,195,111,149,181,215,225,184,103,105,172, 75,106, 62,124,192,181, 89,237,112, 39,143,199, 43,179, 66, 85,178, -174,247, 56, 73,146,196,210,165, 75, 65, 16, 4, 88, 44, 22,216,108,118,165,223,126,126,126,250,246, 51,133, 32, 8,146,205,102, - 47,100, 50,153, 19,165, 82,169, 51,143,199, 75, 87,169, 84,191, 72,165,210,181, 0, 20, 52, 77, 91, 86, 33,178, 42,229, 52, 49, - 49,113,125,245,234,149,123, 85, 29,145, 74,165,240,246,246, 6,164,136,173,142, 51, 33, 33,193,213,205,205,173, 49, 0, 77,137, -182,219, 52, 77,119,209,250,175,141,219, 52, 77,127,169,254,253,242,205,155, 55,174, 13, 27, 54,204,255,167,206, 79, 3,231,191, -143,179, 6, 45, 98, 71, 16, 68,152,113, 48, 25,151, 0, 0, 32, 0, 73, 68, 65, 84,214,181,218, 79,243,127,209,162, 69, 75,214, -175, 95,255,130, 32,136, 48,237,233,218,237,180,191,213,247,155, 48,154,166,251, 45, 94,188,216,115,195,134, 13,235, 52,109,255, - 14,145,168,143, 69,203, 60, 91, 98,130,240,119,230, 96, 50, 84, 96,146, 4,152, 12, 0, 52,129,228,164, 4, 20, 21, 22,220, 65, -226,233, 68,221, 44, 89,254,157, 90,180,240, 10, 58,186,109, 1,249,115,120, 9, 10, 68, 18,196, 61,185,137, 71, 55,127,207, 80, - 41, 85,191,131,160, 31, 3,100, 36,222, 82,241, 64,104,237,106, 92, 16, 52,179, 84,104,169,197, 85, 57,177,245,201,208,188, 73, -147, 38,195,150, 45, 91,102, 27, 21, 21,197, 19, 10,133, 69, 71,143, 30, 77,151, 74,165, 73, 0, 46, 39, 39, 39, 55,217,190,125, - 59, 39, 40, 40,200,203,203,203,139,127,242,228, 73, 89, 37,229,140,222,227,156, 63, 54, 32, 98,226,172, 57,188,216,147,187,192, -137,141,196,210,167, 57,170, 63, 5, 37, 63, 0,216,134,148,226, 78,217, 18,229,213,173, 93, 93,200,122,102,108, 52,180,228,248, -197,229, 73,170,181,100, 25, 27, 27,111, 9, 9, 9,113,109,219,182, 45, 9, 0,225, 47,149,220,133,187, 35,156, 46,175,239, 68, -116,106,102,131,172, 2, 41,102,239,138,198,165,136,172, 63, 52, 34,171,166, 78,154,153,153,101,167,102, 21, 58,216,152,242, 48, -186,179, 41,186,175, 77,135,127, 27, 46,184,108, 2,241,137, 25,104,232, 86,143,136,190,115,182,141, 90,100,181, 21, 8, 4, 0, -208, 6, 64, 98, 74, 74, 10,223,199,199, 71,168, 69,151, 15, 96, 35,135,195, 89, 74, 16, 4,221,182,109,219,104, 47, 47,175, 98, - 43, 43, 43,136,197, 98, 72,165, 82,176,217,108,136,197, 98, 36, 39, 39,227,193,131, 7,176,178,178,210,235, 64, 21, 23, 23,195, -204,204, 12, 20, 69,125, 48,167, 74,165, 34,246,236,217, 99,242,226,197, 11,147,208,208, 80,135,185,115,231,230, 54,109,218,244, -241,176, 97,195, 94,219,219,219, 75,159, 62,125,138,123,247,238, 33, 63, 63, 31,237,219,183,215,137, 83, 38,147,129,201,100, 66, - 44, 22,131,203,229,130,201,100, 66,169, 84,130,162,168, 50,241, 85, 92, 92,140,188,188, 60,176,217,108,200,100,178, 79,241, 6, -250,158,133,170,186,225,183,218, 88,180,180,133,154,142, 34,171, 38, 75, 84,149,195,157, 5, 5, 5, 70,150,150,150, 11, 1, 8, -106, 90, 23, 65, 16, 96, 48, 24, 96,179,217, 32, 8, 2, 93,186,116,193,132, 9, 19,208,170, 85, 43, 36, 36, 36,224,248,241,227, -120,244,232, 17, 88, 44, 86, 89,123,157,199, 39,252,252, 24, 60, 30,239,222,128, 1, 3, 60,127,248,225, 7, 94,189,122,245, 16, - 27, 27, 91,119,195,134, 13, 11,175, 93,187, 54, 80, 36, 18,181,209,220,237,170,183,210,171,135, 4, 75,135, 11,251, 74,165, 82, -196,198,198,234,179,204,123,104,216,176, 97, 50, 73,146,175, 41,138, 10, 7,224, 77,211,116, 23,130, 32, 46,161,212, 47, 81, 27, - 34,154,166,191, 36, 8,162, 16,192, 51,146, 36, 95, 82, 20,149,108,176,219, 24,160,195,125,165, 95,197,255, 4, 65,132,173, 95, -191,190, 95,101,226,170,146,107,179,220,244, 13, 27, 54,172,211,250,255, 33, 22,213,174, 40,239, 12,239,167,182,114,253, 37,180, -194,194,194,170, 87, 32, 20, 6,133,157, 62,118,191,187, 28,174,158,173,125,181,172, 67, 52, 34, 31,220, 3, 64,255,162, 83, 87, -248,253,140, 72, 6,243,151, 61,235,102,146,123,111,150, 32, 37, 61, 11,247, 46,254,130,108, 65,210, 33,128,158,139,196,208,194, - 15, 62, 18,245, 6,121,217,219,216, 90, 74,228, 52, 40, 26,192,123, 98,235,147,160, 85,227,198,141, 7, 71, 68, 68,216, 74, 36, - 18,222,157, 59,119, 74, 66, 66, 66, 50,228,114,249, 77, 0,119,213,109,162,178,179,179,135,168,133, 9,131,201,100,114,228,114, -121,117,190, 11,173,230, 79, 28,115,103,227,158,131,188,215,207,163,177, 61,244, 34, 10, 74, 74, 84, 55,179,196, 95, 3,208, 40, -250,235, 81, 57,226, 52, 26,180, 11,139, 36,192, 55, 97, 57,198,229, 73,120, 64,229, 67,178, 82,169,116,196,200,145, 35,249, 26, -145, 5, 0, 57, 69, 10,102,137, 84,193,232,212,204, 6,173,187, 13, 65,228,141, 83, 56,121, 59, 13,110,118,198,183,235,155, 20, -232,180, 71,179,179, 4,123,182, 6,239,221,186,113,229,124,206,188,190, 22,240,111,195, 2,143, 77,192,220,152,133,181, 59,246, - 43,162, 30,220,126,202,231,243,195, 0,124, 45, 16, 8,192,231,243,139, 1,188,100, 48, 24,137, 42,149,170, 50,167,238,229, 0, - 28, 14, 31, 62, 76, 42, 20,138,226,132,132, 4, 56, 58, 58,194,193,193, 1, 22, 22, 22,136,139,139,195,159,127,254,137,248,248, -120, 80, 20,133, 22, 45, 90,232,117,176,114,115,115,241,244,233, 83,244,237,251,213,220,236,236, 44,115, 43,107, 27,209,157,240, -219,155,106,195, 73, 81, 20, 1, 0,158,158,158,240,244,244,228,165,165,165, 57,135,133,133,217,175, 89,179,230,157,171,171,235, - 81,177, 88, 92,206,114,160,171,208,210,136, 11,141, 8,228,241,120, 96,179,217, 40, 44, 44, 68,102,102, 38,138,138, 74,131, 54, - 45, 45, 45, 63,137,208,170,194, 66,245,209,218,255,205,226,240,189,225, 78, 75, 75,203,145, 0, 22,234,184, 45, 80, 42,149, 96, -179,217,240,241,241, 65,112,112, 48, 30, 61,122,132,223,127,255, 29,117,235,214,197,216,177, 99, 65,146, 36, 94,188,120,161,111, - 23,169,136,136,136,133, 95,127,253,181,231,225,195,135,121,201,201,201,136,143,143,135,165,165, 37,130,131,131,185,147, 39, 79, -110,120,227,198,141,229, 40, 13,126,169, 30, 90,209,133, 34, 35,254, 80,111,111,239,247,154, 56, 58, 58, 90, 92,190,124,217,190, - 76,128, 85,140, 72,124, 31, 5,203,151, 47,223,234,225,225,177, 77, 61, 92,232, 11,192,132,166,105,191,208,208, 80, 2, 0,252, -253,253,105,130, 32, 52, 15,164,103,167, 78,157,234, 22, 23, 23, 71, 7, 6, 6, 26,124,180, 12,168, 74,139, 76,214, 92,147, 85, - 9, 40,125,132,154,182,197, 75,131,197,139, 23,123,174, 95,191,254,225, 7,138, 44,237, 55, 38, 90, 35,182,202, 30,166, 85, 14, - 25,150,217,190, 72,190,163,189,141,245,162,177,157, 64, 81,128, 82, 5, 40, 85, 52, 68, 37, 98,196, 62,127, 84, 2, 30, 17,170, - 83,119,184,156,160, 53, 63,204,105, 16,157, 74, 34, 61, 95,142, 91,103,247,210,217,130,164,193, 72, 60, 53,254,227,136,172,161, -222,142, 14,246,183,142,237, 93, 77, 62,122, 43,131,138, 42,213, 89, 20, 69,151,253,254, 4,112,180,179,179, 11,184,127,255,190, - 29,151,203,229,189,122,245,138, 58,117,234, 84,190, 92, 46,191,166, 37,178, 0,160, 83,155, 54,109,148,166,166,166, 16,137, 68, -114,185, 92, 46,169, 70,100, 57,251,181,106,126,123,227,158,131, 60,137, 76, 6,161, 88, 10,134,141,125, 69,145, 5, 0, 29,187, -185,215,169, 67,240,204, 64, 3, 72, 42,148,167, 87, 37,178, 0,128,203,229,246,152, 57,115,102,185,186,120,182,102, 44,165, 49, -151,165,186, 27,147, 67, 69,222, 56,133,240, 23, 57, 20,143,205, 80,217,209,111, 27,232,186, 3, 10, 82, 99,246,252,126, 46,236, -234,119,203,130,138, 75, 68, 69,112,115, 50, 66,113,145, 16,107,215,111, 84, 68, 68,132,223, 92, 56,119,106,135, 83,167, 78,109, - 64,169, 51, 56, 0,188, 60,117,234,212,152,101,203,150,253,138,191,210, 60, 84, 68,122, 64, 64, 64,106,179,102,205,132, 30, 30, - 30,194,220,220, 92,196,196,196, 32, 63, 63, 31,219,183,111, 71,108,108, 44, 52, 22, 65,157,124, 85,222, 23, 72,200,207,207, 51, -165,105, 26,249,121,185, 38, 63,252,240,131, 69,109, 56, 85, 42, 85,185,107,171, 78,157, 58,152, 54,109, 26,187,164,164,196,242, -221,187,119,230,218,243,116,229,148,201,100,208, 88,134,104,154,134, 76, 38,131, 80, 40,132, 76, 38,195,235,215,175,203, 68,150, -122,253,159,204,162,165,249,205,227,241, 50, 53,231,178,102, 8,142,199,227,101, 85,213,254, 67,160,181, 46, 90,253, 91, 95,113, - 88,227,246,232,120,220,193,102,179, 49, 97,194, 4, 60,124,248, 16, 9, 9, 9, 96, 48, 24, 16,137, 68, 40, 41, 41, 65,207,158, - 61,193,225,112,244,181,104,209,108, 54,123,228,146, 37, 75,120,137,137,137,200,201,201,209, 56,211, 67,165, 82, 97,238,220,185, - 70, 92, 46,119,164,190,166,123,129, 64,208,251,245,235,215,141, 43,126, 50, 50, 50,132,218, 62,133,181, 69,104,104, 40,225,239, -239, 79,251,251,251,211, 26,193,101,128, 1,149,161, 10, 45,178,175, 42,139,214,199,176,138,105, 44, 91, 80, 7,136,212, 2, 26, -145,213, 85, 75,120, 17, 26, 11,151,110, 67,135,110, 67, 91, 58,216, 88,223, 56,188,107,149,105,216,115, 2,169, 41, 73,200, 22, - 36,163, 77, 7, 63,196, 62,143, 6,165, 80,157,198,235,208,154, 61, 57,235,249,187,123,120, 52,157,222,181,131, 23,130,194,138, -241, 42,242, 50, 10,178, 5, 59,145,116,234,244, 71, 57, 66,174,254,205, 29,236,173,111,252,186,107,149,229,165, 24, 18, 41, 41, - 73, 56,251,235, 86, 90, 33,151, 22,160,124, 36,151,222,111,205, 70,148,140, 83, 92,144, 9, 89,145, 10, 60,178,132,167,231, 32, - 69, 6,128,240,173, 91,183,118,111,223,190, 61, 39, 32, 32, 32, 35, 63, 63,255, 44,128,251, 90,109,154,185,187,187,247, 13, 14, - 14,118, 72, 73, 73,193,181,107,215, 50, 80, 26,250, 95, 21, 82,111, 71, 63,223,253,231,175,251,231, 27, 53,104,130,237, 75,190, - 83,134, 62,138, 25, 0,224,146, 86, 27,143, 30,222,238, 97,107,190,159, 65, 82, 81,127,224,105,114, 38,222, 10,165,127, 86, 69, -152,147,147, 67,148,148,148,184, 90, 90, 90,106,159,144,224,155,136,164, 11,134,186,167,247, 92,120,199, 73, 34, 87,129,203, 34, -233,217, 3, 93,211, 31,158, 13,181,201,145,228, 16,154,104,196,154, 48,105, 88,143,129,187, 66,206,140, 14, 11,187, 48, 93, 46, -149,120, 53,105,210,152,126, 28,113,227,233,194,185, 83,251,212,242,136,155, 62,124,248,144,100, 48, 24,229, 4,186,182,133, 72, - 95, 75,145, 62,208,149,179,162,208,210, 64,169, 84, 18,181,229,148, 74,165,101, 66,171,226,195,189, 50,193,248,119,108,191, 62, - 22, 42,237, 33, 67,141, 63,157, 68, 34,177, 87,251,108, 57,124, 76,139,214,135, 68, 34, 86, 55,124,169, 79,255, 72,146, 4, 69, - 81, 96,179,217,104,209,162, 5,194,194,194, 96,109,109, 13,115,115,115,152,155,155,195,200,200, 8, 54, 54, 54,101, 66,139, 36, -117,142,210,161,165, 82,105,221,186,117,235,226,245,235,215,224,241,120,101, 31, 46,151, 11, 79, 79, 79,136, 68,162, 58,248,148, -182,123, 3, 12,248,123,239, 43, 97,218, 98,137, 32,136,176, 69,139, 22, 45,169, 45,223,162, 69,139,150, 84,102,225,250, 64,193, - 85,206,186,197,212, 86,144,149, 42, 73,181,200, 58,180,115,165,249,153, 39, 64,106,106, 34,174,158,220, 81,164,144,203,242, 41, - 74,225,250, 54, 62, 26, 32,241,139, 78, 93, 32,233,118, 3,251,118, 35,174,190,144,161,176, 32, 27, 47, 31, 95, 78,130,152,179, -248,163,137, 44, 7,219, 27,135,119,173,180, 60,255,156, 64, 74, 74, 18, 46, 29,219, 94,168,144,203,123, 32, 49,244,241,135, 80, -143,100,179, 7,178, 93,222,245,155,232,155, 14, 21,161,194,200,216,184, 47,179, 50, 48, 80,112,167,250,200, 48,109,100,103,103, -159,221,186,117, 43,241,227,143, 63,118,149, 72, 36,191, 1,208, 54, 81,122,185,185,185, 13,223,183,111,159,117, 74, 74, 10,235, -206,157, 59,162, 27, 55,110,208, 0,206,215, 96,113, 89,208,115,252, 52, 70,171,122,117,102, 70, 37,165, 13, 0,240,135,214,108, -207,126,173,155,221, 61,184,126,185,153,226,110, 40,138, 5, 41, 88,124, 55,181, 16,128,206,251, 91,161, 80, 64, 40, 20, 66, 81, -156,171,108,195, 23, 9, 3,135,216, 75, 51,243, 37, 76, 22, 85,162,244, 48,207,146,222,200,125,203, 48, 54, 54,214,107, 95,238, - 90, 63, 63, 4, 64,200,144, 33, 67, 14, 63,139,184,208,134,207,231, 95,240,240,240, 32, 0,160,138, 8,195,170,176, 10,192,220, -142, 29, 59, 18, 62, 62, 62, 15,182,109,219,118,165, 58,177, 82, 27,139, 86, 77,208,149,147,162, 40,178,138,253, 75,212,150, 83, -219,162, 85,147,208,250,148, 22,173,202, 68,139,182, 72,212, 22, 66,255,134,168,195,234,196,148, 62,253,211,248,201,177,217,108, - 68, 71, 71,195,197,197, 5,114,185, 28,102,102,102, 48, 51, 51,131,169,169, 41,138,138,138,192, 98,177,160,231, 54, 83, 60, 30, -239, 93, 76, 76, 76, 99, 59, 59, 59,168, 84,170,114, 98,235,213,171, 87, 48, 49, 49, 73,211,215,162,197,231,243, 47,171,163, 14, -203,193,209,209,209,226, 99,236, 87,109, 75,150,191,191,191, 97,136,208,128,106,173, 89, 85, 88,181,178, 43, 88,162,100, 90,255, -179, 81,154,195,173,159,250, 55, 42,249, 45,171,100, 90,238,250,245,235,111,104,249,119,101,127,224, 38,104, 82, 60,148,139,112, - 97,214,100,201,178,183,182,186,113, 96,123,160,249,201, 72, 32, 45, 37, 17,183, 78, 7, 11,149, 42,249, 23,160,104, 65,196,181, -211,161, 32, 80,130,183,161,183,116,187, 69,160, 85,171,166,174,248,253,133, 2,217,169,175, 64,211,212, 33,100,133,148,124,240, -209,113, 27,212,194,222,218,246,198,161,224, 64,139, 51,209, 4, 82, 83, 18,113,245,100,112,161, 82, 81,210, 29,137,167, 35,107, - 75, 59, 1,176, 98,152,240,118, 15,246,107, 53,212,213,205, 25, 20,173, 0,197,166, 49,104,129, 45,243,101, 84,201,239,225, 60, -225, 73,170,152,154,158,118, 95, 55, 7,186,226,226,226,223, 1, 60, 70,249,244, 10,205, 27, 53,106, 52,116,247,238,221,118,169, -169,169,188,168,168, 40,241,222,189,123,179, 40,138, 58, 3, 64,151,161,212,239,162,146,210, 14,160,124,190,156,230,243,199, 7, - 68, 4,140,155,200, 75,188, 22, 2,171,196, 88,124,127, 55, 93,245, 50, 95, 54, 66,109, 93,171, 20,182,182,182,116, 78, 78, 78, -114, 65, 65, 65, 99, 19, 19, 19,228,230,230, 34, 47, 47, 15, 66,161, 16,210,194, 60,165,141,170, 64, 68, 40,243,192, 98,177,144, -149,162,128, 74,165,202,208,213,154, 5,192,106,213,170, 85,147, 40,138,210,100, 68, 44, 23, 93,168,213, 78,115, 62, 52, 30, 50, -100,200, 97,173,168, 67,109,103,120, 77,122, 7, 66,157,222,161,253, 31,127,252, 17,215,167, 79,159,212,202,196, 10,151,203,213, -219, 81,186,170, 40,198,218,112, 86,101,209,170, 56, 93, 31, 78,205,240,165,198, 9,190,226,116, 13, 24, 12, 6, 40,138,130, 14, - 65, 21,127,171,104,209,142, 14,172,141,200,169,112,108,170, 77, 28, 90,203, 72,196,143,106,209,210, 28, 11, 54,155,141,115,231, -206, 97,220,184,113, 80,169, 84, 48, 54, 54,134,169,169, 41, 76, 76, 76,112,250,244,105,104,210, 63,232,163, 95, 21, 10,197,145, -245,235,215, 47,217,179,103,143, 17, 77,211,224,112, 56,101, 66, 43, 48, 48, 80, 44,151,203,143,232, 36,180, 52, 25,223, 41, 58, -198,196, 68, 89,109,212, 97,101,203, 84,225,175,101,185,106,213,170, 49, 20, 69, 13, 68,133, 20, 14, 21,218,149, 75,253, 96, 72, -239, 96,128, 14,247,147, 71,255,226,238,105, 4, 22,161,101,201, 42, 19, 92,100,117,226,197,206,202,242,198,254,237,129,230, 71, - 31, 17, 72,124,251, 22, 55,127,219, 81, 42,178,222,156,124,130,228,208, 76, 36,134,118,198,219,208,222, 58,191, 61, 17, 68, 43, - 39,123, 75,228,137, 40, 20,230,188, 3,104, 68,125, 12,145,101,103,101,119,227,231,224, 64,139, 83, 79, 72, 36, 38, 38,226,234, -201, 29, 66,165, 82,242,197,135,136,172,145,108,246,192, 70,238,206, 9, 75, 39, 13, 28,234,211,208, 17, 54,239,226,112,126,236, - 80,172, 62,254, 13,204,236, 24,104,215,215, 12, 19,214, 58, 14,229,123,114, 95,243, 59, 99,160, 30,212,218, 34,171, 85,253,250, -245,135,222,191,127,223,214,219,219,155, 23, 31, 31, 47,217,187,119,111,150, 88, 44,190, 2, 32, 90, 15, 78,109,145,213,106,209, -228,177, 17, 27,247, 31,230,145,108, 14,130,142,156,199,172,219,169,170, 11,201,133, 67, 80,126, 88,177, 82, 72,165,210,107,193, -193,193, 82,146, 36,145,151,151,135,156,156, 28,100,101,101,149,125, 23, 20, 20,128,193, 96,224,250,245,235,178,194,194,194,251, -186,118,240,222,189,123,245,211,210,210, 60, 4, 2, 65, 27,245, 39, 30,165,209,133,166, 90,211,218, 8, 4,130,174, 0, 30,105, -166,167,166,166,214,123,240,224, 1,191, 38,126, 51, 51, 51,176,217,236,114, 22, 45, 46,151, 11, 7, 7, 7, 40,149, 74,156, 56, -113, 2, 0,242,170,227, 96,179, 57, 2,146, 36, 64,209,148,148,199,227, 81,124, 62,191, 82,129,165, 15,167, 26,169, 95,126,249, -165, 36, 50, 50,178, 82,139, 86,109, 56,105,154, 46,233,213,171, 23,210,211,211,193,227,241,202, 30,214, 26, 65, 69,146, 36,184, - 92, 46, 50, 50, 50, 48,101,202, 20,208, 52, 93,242, 79,223,121,180,125,154,212, 98,136, 0, 64,168,133,208,123,126, 90,186,250, - 64,105,134, 6,105,154,134, 70,112, 85,152, 95,182, 46, 93,178,183, 87,240,233,154, 92, 80, 80,176,177,180, 59,244,222, 10,223, -251,244,120, 40,148, 9,173,216,216, 88, 28, 62,124, 24, 5, 5, 5,224,112, 56,200,207,207,199,193,131, 7, 17, 19, 19, 3, 14, -135, 3,205,190,208, 85,191,249,248,248,108, 12, 15, 15,143, 25, 49, 98,132, 56, 58, 58, 26, 98,177, 24,209,209,209,232,221,187, -183,228,238,221,187, 9, 98,177,120, 21,116, 25, 58,212,100,124, 87,151,215,145, 74,165,136,138,138,170,244, 83,213, 50, 21,145, -144,144,224,170, 82,169, 26,211, 52,237, 75,211,180, 57,212, 41, 28,212,255,181, 63, 95,170,231,153,211, 52,237,171, 82,169, 26, - 37, 36, 36,184, 26,228,132, 1,159, 41,110,105,137, 45, 90, 75,100,221,170,222,162, 69,145,193, 7,118,172, 52, 63,242,144, 68, - 74,114, 2, 30, 95,220, 45, 84, 81,138, 47,244, 44,135,211, 3, 90,185, 54,120, 70, 38, 94, 20, 81, 26,206, 92,152,147, 2,208, -140,218, 8,173,114,156,160,200,224,131, 59, 2, 45,142, 61, 38,144,158,242, 6,119,207,238, 18, 42,149,210,238,120, 27, 26, 85, - 27,206,145,108,246, 50, 22,131, 88,218,171, 83, 75,118,231,150,238, 48,201, 74, 66, 70,106, 58, 78,196,102,231, 37,228, 75, 39, -222, 37,228, 72,126, 35, 61,208,119,146,181,181,149, 35, 11,253,166,218, 88,223, 63, 95,248, 59,193, 18,201,105, 57,189, 94,112, -183,172, 44, 69,249,126,190, 15, 71, 51, 51,179, 17,143, 31, 63, 54,231,241,120, 70,143, 31, 63,166,246,238,221,155, 43, 22,139, - 47, 2,136,208,105,219,223,135,115, 91,119,183, 91,235,118,237,231, 21,139, 74, 32,146,201,193,117,224,171,206, 68, 60, 31,140, -170, 19, 96,150,227,228,114,185,199,142, 29, 59,214,183, 75,151, 46,174, 94, 94, 94,100, 94, 94, 30,138,139,139,203,156,171,237, -236,236, 16, 27, 27, 75, 37, 38, 38,166,115,185,220,227,186,246,179, 99,199,142,137, 36, 73,198,171,135,209,226, 81, 33,186, 80, -171,105, 99,129, 64,208,150,207,231,223, 2, 96,172, 21,117,168,205,169, 73,239,176, 4, 0, 73, 16,196,163,232,232,232,226, 62, -125,250,192,200,200, 8, 34,145, 8,117,235,214,133, 82,169,196,197,139, 23, 17, 25, 25, 41,162, 40,234, 86, 37,226,181, 92, 63, - 37, 18,113, 93, 0,164,184,164,164,197,152, 49, 99,186,206,155, 55,175, 92, 72,186,189,189, 61,172,173,173,245,226, 4,128,188, -188,188,166,127,252,241,199,156,232,232,232,239,250,246,237,107,177,100,201, 18,110,253,250,245,161, 82,169,200,218,114,230,231, -231, 91, 68, 69, 69,109,234,220,185,243,140, 62,125,250, 48,215,173, 91, 7, 11, 11, 11,168, 84, 42, 24, 25, 25,161,176,176, 16, -171, 86,173,194,157, 59,119,148, 52, 77,239, 18, 10,133,223,235,121, 46,225, 67,175,205,170, 44, 64, 85,165,100,168,162,253,223, -222,207, 10, 62, 93, 80,167,112, 88, 88, 69, 6,123,232,122,206,107,132, 22,131,193, 64, 82, 82, 18,246,238,221,251, 94, 30, 45, - 77,250,135, 42,184, 43,219,118,250,230,205,155, 42,130, 32, 58, 60,126,252,120,225,232,209,163, 39,138, 68, 34,103, 19, 19,147, -116,133, 66,241,139, 88, 44, 94,139, 82,127, 84,182, 62,247, 16,145, 72,148, 92, 89,212, 97,197, 54,128,101,181,156, 21,210, 59, -148, 75,225, 80, 97,153,114,169, 31, 42, 73,239,240,183, 31,119, 3,231,191,146,243,115, 23, 91, 85, 39, 44,125, 15,173, 38,179, - 88, 98,133,119,120, 2,241, 33, 34,235,125,107,137,164, 36, 97,249,177,119, 45,101, 82, 9, 68,194,204,151, 72, 58,145,245, 65, -155,165,238,231,237, 4, 2, 73,137,111,240, 48,108, 87,105, 63,223,134,214,186,159, 4,176,248,167, 75,161,108,194,194, 26, 79, -231,140, 67,122,129, 8,151,222,230,159,164, 75,164,211,143, 0,249,184, 3,144, 74,105,248,193, 31, 50,118,251, 14,178, 24,106, - 91,135,133, 45,243,127, 1,111,145, 13,187, 93,247, 46,250,212, 64,204,224,241,120,225,219,183,111,239,225,235,235,203, 29, 50, -100, 72,101, 14,242,250, 34,245,209,171, 55, 63, 93,216,179,121,190,141,119,123,236, 92,182, 64,117, 44,226,121,197, 40,196,106, -225,225,225,161,186,119,239,222,188, 41, 83,166,108,233,209,163,135,211,128, 1, 3, 56,117,235,214, 5,151,203,197,155, 55,111, - 16, 30, 30, 46,123,251,246,109,122, 73, 73,201,188,230,205,155,235,147,227, 44,127,249,242,229, 27,213,235, 32,212,195,133,109, -160,142, 46,212, 52, 82, 39, 45,109, 3,192, 56, 48, 48,112, 52, 0, 84, 17,246,189, 28,192, 30, 0, 76,154,166, 51, 66, 66, 66, - 58,156, 61,123,182,195,220,185,115,217,125,251,246,197,253,251,247,113,245,234, 85,185, 92, 46,143, 80, 11, 87, 93, 75,229, 80, - 0,162,148, 74,229,243,160,160,160, 14, 12, 6, 99,185,102, 70, 76, 76, 12, 14, 29, 58, 84, 27, 78, 37,128, 77,153,153,153, 63, -133,132,132, 44,191,118,237,218,248, 49, 99,198,152, 43, 20, 10,196,198,198,226,231,159,127,174, 21,167, 80, 40,156, 99,107,107, -187,244,226,197,139,191, 92,185,114,229,235, 81,163, 70,145,179,102,205, 66,112,112, 48,126,251,237, 55, 74,165, 82,157,101,177, - 88, 99,114,114,114, 68,159,226,174,163, 30,134, 75,215,179,214, 97,141,188, 31, 50, 52,168, 35, 4, 31, 74,160,217, 14, 63, 63, -191, 50, 43,163,198, 10,167,221,134, 32, 8,189,135, 14, 1, 88,210, 52, 77, 1,216,133,210,250,162,218, 89,225, 25,248, 43,115, -188,174,140,205, 4, 82,203, 24, 72, 17, 91,125, 81,105, 75,128, 70,179, 26,216, 10,150, 47, 95,190,117,197,138, 21, 91, 43,166, -112,208,110, 84, 49,245,195,202,149, 43, 97, 72,239, 96,192,127, 21,149, 11,173,168,125, 10, 69,131,193, 75,182,175, 91,176, 66, -169,144, 9,105,200,253,241,230,116,244,135,174,140,166,232, 69,215,143, 6, 6,131, 70, 62,173, 82, 46,252,224,222,255, 77,253, - 36, 44,172, 81,180,106, 26,126,123,145, 78,103,136, 20,223, 28,145,203,203, 89,131, 74,125,178,168, 97, 55, 36,249, 39,172,156, - 88,103,230,124, 97, 67, 92,200, 27,173,247,122,178,178,178,206,109,221,186,149,220,188,121,115,215,146,146,146,138, 14,242,181, -197,130,254, 51, 23, 49,218, 53,114,157,249,240,117,242, 64,232, 48, 92, 88, 17, 29, 59,118, 20,196,197,197, 5, 92,185,114,101, -196,237,219,183,123,136, 68, 34, 87,130, 32, 96,108,108,156, 44,149, 74,175,113,185,220, 99,122,138, 44, 0,192,138, 21, 43,232, -149, 43, 87, 18,113,113,113, 52,131,193,248, 19, 64, 34,131,193, 72,210,118,130,215,158,174, 89, 38, 48, 48, 80,151, 7,226,237, -226,226,226,200, 85,171, 86,117, 89,181,106, 85, 11,181, 85,232, 54,254,242,249,210, 23, 10, 0,183,217,108, 78, 58, 65, 16,206, -108, 14, 87,116,239,222,189,107, 31,200, 89, 34,151,203, 23,166,164,164,108,217,178,101,203, 90, 19, 19,147,182, 49, 49, 49,127, -126, 8,167, 90, 68, 13,182,182,182,118, 58,124,248,240,169,131, 7, 15,182,103, 50,153,247, 9,130, 24, 34, 20, 10, 63,105, 81, -105,117,129,232,149,122,212, 58,212,137,247, 99, 39, 41,253, 59,132,155, 74,165, 42, 94,186,116,105, 86, 69,225, 85,209,122,165, -249,175, 78,229,162,203, 62,213, 39,138,178, 6,225, 66, 20, 3, 64,105,237,194,210,178, 58,186, 22,149, 6, 32,174,233, 58, 39, - 73,242, 44,128,151, 36, 73,190,174, 24,232,162, 61,111,229,202,149, 53, 93,231, 6, 24,240, 89, 67,135, 59, 91, 32, 9, 4,214, -214,147,246, 31, 52, 87,126,156,126, 6,176,217, 43, 73, 96, 62, 0,130, 6,182, 28,145,203,127,168,110, 65,199,142, 88, 75, 19, -152,171,222,153,235, 50,238, 98, 77, 45,182,189, 14,116,168, 63,168, 39,103, 19, 84, 95, 80,246, 61, 78,127,127,127, 70, 21, 15, -243,114, 69,165,171, 66,104,104, 89, 22,255,170,250,169,125,190,153, 61,120,240,192,201,199,199, 71,128,242, 78,255,149, 77,167, -245,220,118, 6, 0,213, 71,222,159,159, 5,167,155,155, 27,231,205,155, 55,178,127,215,181,105,224,252, 87,114, 90, 54,117, 1, -129, 73,208,206, 29, 84,173, 69, 75, 75,160,209,244,207, 40,136, 77,169,162,159,154,235,220, 50, 33, 33,193,181, 97,195,134,201, - 0, 10, 42,244,163,178,121,180,225, 24,253,223,115, 86,134,201, 40, 95,138,206,128, 74, 14,132,129,211,192,105,224, 52,112, 26, - 56, 13,156, 6, 78, 3,103,109,133,214,103, 13, 18, 6, 24, 96,128, 1, 6, 24, 96,128, 1, 6,252, 45, 32,170, 81,165,250,152, - 4,107,163,108,175, 25, 56, 13,156, 6, 78, 3,167,129,211,192,105,224,252,191,227,172,137, 91,123,249,207,117,232,240, 31,235, -183,193,172,106,224, 52,112, 26, 56, 13,156, 6, 78, 3,167,129,243, 67, 4,203,103, 13, 38, 12, 48,192, 0, 3, 12, 48,192,128, -207, 6, 61,220,193,103,170, 64,254,241, 70,167, 32,170, 26,209,199, 13,117, 0,224, 99,241,253,159,130, 15,224, 43,173,255, 23, -160,142,140, 55, 8,173,207, 23,141, 0, 44, 1,160, 93,139,236, 33,128,245, 21,218, 29, 5,160, 93,144, 80,132,210, 58,129,175, -245, 89, 25, 73,146,235,187,116,233, 50,253,206,157, 59,155,149, 74,229,170, 90,244,215,149,207,231,111, 36, 8,162, 53, 0, 22, - 65, 16,111, 50, 51, 51,215, 43,149,202, 15,137, 90,105,224,232,232,184, 1, 64, 75,146, 36, 89, 4, 65, 36,100,102,102,174, 81, - 42,149, 55, 63,128,211,204,193,193,161, 19, 77,211,142, 0, 24, 44, 22, 43, 55, 45, 45,237, 1,106,153, 91,201, 63, 48,150, 93, - 40, 82,178, 0,192,220,132,169, 8, 13,108, 42,215,117,154,225, 20, 55,192,128,255,111,208,165,145,201,229,208,219, 13,107,105, - 37,190, 87, 1, 68,175,250,216,113, 57, 17,223, 87,181, 60, 81, 73, 84,115, 69,206,222,110, 88,171,162, 75, 57,122,185, 97,211, -229, 55,168, 54,210, 94, 23, 78, 13,246, 1,228,100, 29,170, 20, 16,186, 69, 95,255,219,241, 21,202, 15, 21,150, 13, 29, 86, 43, -180,134,185,131,175, 98,130, 25, 26, 11, 77, 24,175, 25,128, 22,234,135,252,107,148,230, 42, 42,250,192,206,125, 46,156,255, 54, - 44,167,105, 58,160,220,201, 90, 73, 30,162, 47,190,248, 98,192,149, 43, 87,140, 53,245,238, 40,138,130,145,145,145, 18,192, 88, - 61,214,101, 63,108,216,176, 69, 7, 14, 28,192,208,161, 67,151,134,133,133,109, 5, 80,172,235,194, 86, 86, 86,254,150,150,150, -193,251,247,239,183,107,223,190, 3,193,225,112,240,230, 77,130,243,148, 41, 83,188,226,226,226,206,102,101,101, 77,212,119,227, -173,173,173, 71, 90, 90, 90,110,217,187,119,175,109,231,206,157, 65, 16, 4, 34, 35, 35,157,231,204,153,211,226,221,187,119,199, - 51, 51, 51,103,232,203,105, 99, 99,227,110, 97, 97,209,109,231,206,157, 70,157, 58,117, 2,143,199, 67,116,116,180,233,212,169, - 83, 29,211,210,210, 98, 51, 51, 51,111,233, 43,178,158, 69,158,255, 90, 41,151, 6, 1, 0,147,205, 93,208,126, 75,196,249,103, - 55,206,247,175,105,154,127, 96,236,239, 6,177,101,128, 1, 6,104, 99,164, 19, 28,105, 26,243,175,252,188,140, 4,128, 94,227, - 87,207, 26,233,132,205, 71,210,171,174, 97,171, 39,223,247, 99,234, 32,248,112, 26, 50, 63,164,159,251, 0,114, 14,147, 57,171, -157,143,143,237,183,119,239, 38,200,129, 95,254, 79, 14, 81,165,195,156, 85, 10,173,193, 77,177, 74, 89,106, 49, 33,250, 52,196, -241,171,137,140,240, 47,190,248,162,225,132, 9, 19,136, 86,173, 90, 33, 50, 50,210,253,248,241,227, 95, 93,184,112, 33, 65,165, - 82, 69, 2,120, 1,221,179, 90,179, 0,120, 50, 24,140,214,255,114,206,127, 51, 76,212,226, 42, 19,127, 37, 58,125, 47,225,233, -245,235,215,207, 49,153, 76,141, 69,171,157, 72, 36,114,168, 96, 5,211, 5,245, 20, 10, 5,226,227,227, 65,146, 36, 11, 64,125, -188, 95, 82,163, 42, 56, 27, 27, 27,239,142,120, 24,105, 67, 48,141,144, 47, 1, 32,145,131, 99,234,128, 3,135, 66,172,231,205, -158, 49,248,230,205,155,225, 69, 69, 69,191,234,209,159,250, 38, 38, 38, 91,159, 62,125,106, 99,108,108, 12,138,162, 80, 84, 84, - 4, 71, 71, 71,236,223,191,223,114,222,188,121, 1,133,133,133, 55, 37, 18,201,111,250,136,115, 11, 11,139,110,207,159, 63, 55, -210, 20,148,150,201,100,112,118,118,198,209,163, 71,185,179,102,205,106, 90, 80, 80,144, 42,147,201,222,234, 74, 88, 40, 82,178, -148,114,105,208,225, 93,129, 46, 0, 48,102, 70, 96, 16,167,200,252,162, 46,211, 10, 69,202, 11, 0, 12, 66,203,128,127, 26,173, -109,109,109, 67,115,114,114,110, 1,152,136,143, 99,105,112,231,241,120,205, 41,138,114, 36, 73, 18, 12, 6, 35, 67, 36, 18, 61, - 5,240,170,182,132, 54,110,126,253,193, 53, 30, 7,154,106, 65, 2, 32, 72, 50, 90, 37, 47, 57,148,251,234,230,249, 15,226,228, - 24,141, 7,232, 22, 36, 64, 17, 36,249,148, 82,150,236,207,137,191,121,233,223,114,112,238, 11,209,216,205, 81,247,194,152, 31, -131,111,120, 3,240, 73, 10,228,209, 36,221,135, 21,103, 2,125,103,207,158,237, 56, 99,250,116, 98,220,216,177,141,110,221,185, - 67,116,213,167, 90,193,231,137, 42, 29,223, 43, 21, 90,254, 77, 97, 69, 3, 11,143, 7, 47, 33,153, 12, 6, 49, 98,246,250,128, -131,187, 54,145, 61,251, 15, 41, 27, 62,241,245,245,133,175,175, 47, 17, 20, 20,212,232,207, 63,255,108,116,244,232, 81,101, 68, - 68,196, 83, 0, 39,170, 90, 89,111, 55,136, 41,128,199,102, 49, 69, 35,150,253,186,215,199,199, 7, 92, 46, 23, 31,194, 9, 0, - 61, 27,146,111, 89,214, 13,158,142,152,185, 60,185,125,251,142,244,199,224,252,140,240, 16, 40, 43,106,109,229,226,226,210, 73, -169, 84,242, 0,128,201,100, 74, 82, 82, 82,102,162,180, 54, 32, 0,156,165, 40,106,128, 30,220, 36,128, 21, 3, 6, 12, 88,250, -237,183,223,162,110,221,186,152, 53,107, 22, 20, 10, 69,228,165, 75,151,150, 3,216,128, 26, 46, 30,123,123,251,229,187,119,239, -182,102,114, 76,208,106, 97, 34, 4, 5, 74, 0,128, 41, 23, 56, 55,141,198,172, 89,179,204, 31, 63,126,188, 70, 31,161,101,111, -111,191,106,255,254,253,214,198,198,198,160,105,186,172, 22, 99,113,113, 49,138,139,139, 49, 99,198, 12,243,216,216,216,141,250, - 8, 45, 7, 7,135, 78, 59,119,238, 52,226,241,120, 40, 46, 46,102,203,229,114,162,168,168, 8, 37, 37, 37,180, 76, 38,147,207, -156, 57,147,251,226,197, 11, 63,129, 64,240, 22, 6,252, 91,192, 0,240, 13,139,197, 26,212,176, 97,195, 54,175, 95,191,126,162, - 84, 42, 79, 3, 56,253, 17, 94,166,186, 59, 57, 57,173, 77, 79, 79,223, 9, 32,228,255,101,135, 58, 56, 56,156,190,119,239,158, -203,238,221,187,199,110,222,188,249, 34,128,223, 62,128,142,205,102,179, 7,119,237,218,213,101,204,152, 49, 28, 7, 7, 7, 72, -165, 82, 36, 38, 38,154,159, 60,121,210, 53, 58, 58, 58, 85, 93, 17, 67,231, 23, 10, 27,247,142,166, 96,154, 31,239,208,177, 83, -231,161,131,191, 49,115,176,177,128, 88,166,194,235,100, 65,221, 63, 46,158,235, 26,199, 54,186, 39,151, 11,135,231,190,186, 87, -172, 47,103,183,110,221, 59,247,232,222,221,204,194,210, 2, 66,145, 28,111,146,210, 92,111, 92, 61,239,203,100, 26,221,166, 8, -197,168,172,231, 87, 75, 62,229,177,153, 5, 48, 69, 60,155,230, 45, 58,182,122,220,107,194,154, 54, 52, 77,131,164,177,163,162, - 53,107, 22,192,220, 81, 90,246, 75, 47, 62,208, 52, 77, 16,216,164,109,205,234,237,134,181, 52,141,239, 65,130,232, 93,195, 48, -165, 6,189, 0,174,165,181,181,207,212,201,147,137,162,194, 66, 68, 71, 71,151, 84, 20, 89, 91,235,128,125,155, 68,189,179, 41, -181, 23,219,255, 82,107, 86,165, 67,135, 58,231,209, 50, 54, 54,174,116,186,133,133, 5,186,117,235,134,245,235,215, 51, 1,180, -174, 48,187,124,145, 85,128, 27,182,103, 49, 44, 76,184,100,221,186,117,205,204,205,205, 63,152, 19, 0, 64, 83,245, 59,214,165, -191,124,244,235,146,177,215,142,110,241, 20, 21, 21,176, 42, 54, 49, 53, 53, 69,227,198,141,177,116,233, 82,221, 56, 63, 28,255, - 40,167,163,163, 99, 19, 95, 95,223,214,215,111,221,178, 76, 79, 79,231,166,167,167,115,175, 92,191,110,217,161, 67,135,214,142, -142,142, 77,202,118, 21, 77,235,211,207,213,187,118,237, 90,126,246,236, 89,210,215,215, 23, 86, 86, 86,232,214,173, 27, 46, 94, -188,200,220,188,121,243, 58, 0, 75,107,234, 39, 73,146,157,125,125,125, 9,208, 52, 50,132, 74, 60, 88,223, 4,209,155, 60, 80, - 36,161,145, 39, 44,132, 88, 44,129,177,177, 49, 15,165,195,189,186,110,123,199, 14, 29, 58, 16, 0,202,196, 85, 81, 81,233,167, -184, 88, 4,153, 76, 14, 46,151,107, 6,128,167, 43, 39, 77,211,142,157, 58,117, 2, 0,200,229,242,178, 55,188,130,130, 2, 66, - 40, 20, 66, 38,147,129,197, 98,177, 81,179, 95, 99, 25,167,185, 9, 83,193,100,115, 23,140,153, 17,152, 50,102, 70, 96, 10,147, -205, 93, 32, 51, 43, 84,233, 50,205,220,132,169,248,196,231,167, 29, 73,146, 63,187,185,185,197,146, 36,121, 24,128,227, 7,114, -182, 5,176,206,200,200,232,154,135,135, 71,138,177,177,241,117,181, 80,239, 80, 75, 78,142,177,177,241,245,117,235,214,157,122, -242,228,201,208, 63,255,252,179,254,179,103,207, 6, 7, 5, 5, 29, 55, 53, 53, 13, 71,121,191, 68,189,175,205,250,245,235, 31, -124,240,224, 65,219,142, 29, 59, 30, 0,192,253, 72,215, 59, 3, 64, 75,232, 84,145,227,147, 28,119,167, 86,173, 90,185,240,120, - 60,244,232,209, 3, 0,252, 62,132,147,205,102, 15, 94,186,116,169,219,178,101,203, 56, 2,129, 0,215,175, 95,199,195,135, 15, -161, 84, 42, 49,109,218, 52,238,152, 49, 99, 26,152,153,153, 13,214,171,159, 76,243,227,179,231,204,237, 51,127,214, 36,179,167, -239,228, 56,116,237, 29,126,143, 16, 32,171,132,131,254,131,199, 88,244, 30, 56,172, 55,135,107,113, 92, 95,206, 69, 11, 23,246, -153, 60, 62,192, 44, 70, 64,225,220,253, 12,220,143, 23, 66,201,178, 68,223,193, 19,173, 90,116,234,243, 21, 19,172, 95, 62,245, - 49,218, 15,180,159, 61,123,182,221,130, 77, 71,238, 58,181,253,102, 71,118, 62,124,181,133,143, 59, 96,105,109, 98,242, 77,124, -215,174,147,140, 74,235,197, 86,203, 89,142,175,245,192,224,172,124,116,209,246,207,234, 98,141, 70,234, 97, 69,198,149,159,151, -145, 52,129, 89, 35,157,202,221, 7, 42,237,231, 77, 96,232,236,185,115, 89, 22, 86, 86,216,181,107, 23,164, 34, 81, 57,159,217, -238, 46,232,115,205,152,153,218,192,195, 57,182,155, 43, 17,254, 31,124, 95,153, 92,165, 69, 43, 44, 44,140,238,215,175, 31, 1, - 0,161,177,200, 31,220, 20, 27,135,125,187,110, 41, 65, 18,116, 61,207,142, 49,117,220,154,137,108,108,108, 80, 82, 82, 2,169, - 84, 10, 54,155, 13,137, 68,130,119,239,222,225,254,253,251,176,178,178,210,171, 39,133,133,133, 48, 53, 53,133,169,169,233, 71, -225, 92, 60,182, 7,247, 77, 74, 54,247,242,253,155, 93,183, 79,255,173,189, 91, 75,191,103,221,135,205,122,110,110,231, 36,121, -246,236, 25,238,221,187,135,252,252,124,248,248,248,252, 87, 14,230, 67,181, 79,214, 67, 0, 86, 13, 27, 54,116,190,124,237,182, - 85,177,132, 50, 79,202, 84,176, 40,138,130,177, 49, 95,121, 34,244,156,112,232,224,254, 68, 70, 70, 70, 22,128,135,106,113, 91, - 83, 77, 69, 30,128, 38,254,254,254,139,166, 79,159,142,132,132, 4, 76,154, 52, 73,252,240,225,195,220,142, 29, 59,218,236,223, -191,223,104,222,188,121,184,117,235,214,138,176,176,176, 51, 0, 18, 1, 84, 90,171,141,166,105, 54,155,205,134, 82, 45, 27,228, - 42,170, 76,223, 23, 22, 22,130, 22,231,131,205,102, 51, 0,216, 65, 71, 63, 58,138,162,216, 44, 22,171, 76,100,189,203, 44,196, -187,172, 18, 20, 22,203, 32, 22, 43, 33, 19,211, 96, 24,219, 48,129, 36, 7, 0, 73, 80,170, 87, 0, 0, 0, 32, 0, 73, 68, 65, - 84,186, 90, 71,120, 60, 30,148, 74, 37,138,138, 74,187,161,177,148,201,100, 50, 8,133, 66, 48, 24, 12, 83, 0,230, 0,242,116, - 33, 84, 59,185,255,174, 30, 6,196,163, 35, 3,108, 95, 95, 88, 92,110,154,185, 9, 83, 17, 58,175, 41,195,198,185,197,157,150, - 67,127,241, 40,155,246,105,253,179,184,118,118,118, 55, 78,157, 58,213,180, 81,163, 70, 72, 76, 76,244, 24, 50,100,136,143, 64, - 32,104, 9,253,107, 50, 26,147, 36,185,113,204,152, 49,211, 71,140, 24, 65,184,187,187,131,201,100, 66,169, 84, 58, 39, 36, 36, -116, 59,121,242,228,194,131, 7, 15,238, 87,169, 84,223, 65,119,191, 63,146,195,225,156,216,187,119,111, 23, 31, 31, 31, 28, 62, -124, 24, 15, 31, 62,164,218,182,109, 75,142, 30, 61, 26,174,174,174, 62,163, 71,143,254, 93, 42,149,246,173,165,101,203,181, 67, -135, 14, 46, 12, 6, 3, 29, 59,118,100,223,187,119,175, 21,128,123, 31,184, 79, 77,157,157,157,111,249,249,249,181,188,118,237, - 90, 84, 70, 70,134,159, 30,219, 11, 0, 3,157,156,156,130, 44, 44, 44,172,244,184,199,150,164,165,165,125, 15, 32, 84,199, 69, -218,183,110,221, 26,201,201,201,104,210,164, 9,216,108,118, 7,185, 92, 62, 5, 64, 31, 0, 63, 0,136,213,163,191,238,221,187, -119,119,241,243,243, 35, 66, 67, 67,203,252, 67, 73,146,132, 82,169, 4,155,205, 70,251,246,237,201,200,200,200, 58,143, 30, 61, -114,135, 14,195,136, 54,110,126,253, 59,118,238,218,185,139, 79,115,114,115,232,107,168, 40, 21, 24,132, 18, 76,130, 2,165,224, -130,203,102,192,221,179, 13, 35,254,197, 83, 31,153, 84,222, 63,247,213,181,243,186,112,246,233,213,211,183,105, 19,119,114,251, -239,111, 80,144, 22,171, 74,139,187,157, 67, 50, 72, 52,109,253,133,173,123,179,150,140,150, 62,126,172,244,196, 23,221, 36,146, - 46, 61,242, 19,110, 95,251, 20, 23,228, 74,128,225, 92,199,246,155,126, 61,253,216,130,244,116,209,201,208,243,207, 75, 20,184, - 15, 0,183, 0,162, 47,208,220,187, 93,187,174,251, 55,108,176,225,243,249,172, 81, 35, 70, 40,247, 69, 69, 69,161,138,161,223, -149, 0,195,214,209,177,199,212,169, 83, 25,130,244,116,250,228,233, 11,207, 52,124, 40,125, 75,241,110,238,236,209, 15,162,120, -189,134, 41,251, 3, 28, 7, 71,199,166, 83,166, 76, 65, 70,122, 58, 14,135,132, 20, 75,128, 8,141, 21,235, 28, 3, 59,155,185, - 57,142, 91, 48,113, 0,225,194,183,197,212, 21,251, 58,116,147,103,185, 65,240,215,241,215,214, 34,159,177,200,154, 92,169,208, -170,136,223, 98,177,220,140,141,250, 39, 79, 30, 35,179,139,228,162,132,132, 4,216,218,218,130,207,231,195,194,194, 2, 49, 49, - 49,184,126,253, 58, 94,190,124, 9,138,162,208,162, 69, 11,189,122,147,147,147,131,167, 79,159,194,202,202,234,163,113,186,185, -216,225, 91, 23, 59,118,102,110, 33,251,218,195,151, 62,251, 22, 15,110, 70,122, 12, 62,168, 93, 36, 86, 38,147,225, 63,130,178, -232, 66, 23, 23,151, 78,135, 14, 29, 98, 75,149, 48,115,159, 18,241,163, 72,162, 50, 1, 0, 19, 30, 67, 20, 25,212,248,187,213, -171, 87,139,198,143, 31,239,145,146,146,178, 94, 7, 91,255,218,238,221,187,207,167,105,154, 53,123,246,108, 0,192,152, 49, 99, - 10,239,223,191,239, 14, 32,235,250,245,235, 78, 19, 38, 76,120,117,227,198, 13,227,185,115,231, 50,148, 74,101, 12,147,201,164, -195,194,194, 86, 1, 8,124,239,137, 72,146,143,163,162,162,234, 57,185, 54,134,171, 13, 9,223,165, 47, 75,111,112,198, 20, 82, -147,222, 32,238,217, 67, 56, 58, 58, 90,240,249,252,216,212,212, 84,121, 90, 90,218, 66,145, 72,180,187,134, 62, 70, 71, 70, 70, -242, 93, 93, 93, 81, 92, 92,140,212,236, 18,204, 58,109,140, 66,113,169, 17,131, 5, 49, 90,186, 52, 54, 51, 34,101, 15,179,178, -178,228, 50,153,108,153, 80, 40, 60, 84, 29, 39,139,197,202,125,246,236,153,105,221,186,117, 33,145, 72,232,188,188, 60, 66, 36, - 18,161,168,168,136,184,112,225,194,215, 2,129,160,109,253,250,245, 9,103,103,231, 85, 2,129, 64,156,150,150, 54, 73,151,161, - 73,181, 96, 82, 49,153,204,205,147, 39, 79, 30,122,230,204,153,199,161,129, 77, 7,106, 13,151, 88,120,122,122, 94,110,222,188, -153, 83,200, 38,239, 29, 0,126,252, 23,156, 91,227,150, 44, 89,210,212,218,218, 26, 83,167, 78,197,202,149, 43,177,124,249,242, - 70, 83,167, 78,157, 12, 96,171, 30, 60, 70,142,142,142,143,182,111,223,238,209,169, 83, 39, 92,188,120, 17,199,142, 29,195,219, -183,111,149,245,235,215,103,250,248,248, 96,197,138, 21,232,221,187,247,164,153, 51,103,118, 77, 79, 79,111,165,163,248, 24,191, - 98,197,138,129,157, 59,119,198,216,177, 99,165, 55,111,222, 28, 10,224,202,213,171, 87,191,184,117,235, 86,232,145, 35, 71,140, -214,173, 91,215, 99,222,188,121, 83, 1, 4,215, 98,251,191,238,210,165,180,134,114,231,206,157, 17, 20, 20,212,251, 3,133, 22, -199,198,198,230,194,225,195,135, 91, 54,110,220, 24,163, 70,141,106, 53,116,232,208, 11,249,249,249, 61, 1,232,116, 67,170, 83, -167,206,198,179,103,207, 54,172,106,100,161, 50, 72,165, 82,235,111,190,249,102, 67, 82, 82,146, 94, 66,235,232,209,163,248,254, -251,239,209,162, 69,139,230,237,219,183,223, 51,101,202, 20,248,251,251,119,143,137,137,113, 64,105,212,114,141,224,241,120,205, -135, 15, 31,206,121,240,224, 1, 0,192,211,211, 19, 45, 91,182, 68,114,114, 50, 30, 63,126, 12,169, 84, 10, 7, 7, 7, 12, 26, - 52,136,151,148,148,212, 60, 39, 39,167, 70,161, 69,114,141,199, 13,236,215,215,236,220,125, 1, 84,148, 18,109, 26,154,195,199, -195, 30,241,169,133,136,140, 77,133, 74,198,134,185,181, 13, 58,116,237,101,157,145,246,118, 92, 46, 80,179,191, 22,215,120,220, -160,129, 95,153,158,139, 72, 71, 65,122, 28,253,250,225,153,235, 10,137,104, 18, 0, 60,254,243,248, 30, 71, 27,163,158,238,173, -219, 48,252,122, 14,176, 58,125, 44, 99, 92,254, 63, 83,219,239, 61,220,114,193, 94, 87, 86,206,152, 5, 1,190, 52,203,202,249, -161,153, 66,177, 83, 51,175, 55,208,107,225,146, 37,237, 39, 78,158,204,163, 40, 10, 71,126,253,181,240,105, 84, 84,252,100,128, -154, 82, 5,223, 78,192,117,232,192,129, 92, 51,115,115,204,153, 53, 11,102, 10,197,141,178, 93, 2,116,159, 51,127,126,167, 25, - 51,102, 24,237, 89, 53,253,113,239, 9,107, 90, 83, 52, 77,104,134, 41,143, 86,111,138,107, 59, 97,224, 64,152,153,155, 99,246, -236,217, 32,228,242,203,101, 2,138,137, 27,227,191,246,245, 9,232,223, 25, 4, 8, 28, 11,187,131,215,201,217,207,110, 8,240, -230,115, 85, 85, 21, 80,165,143, 86,181, 67,135, 69,114,100,118,255,106,176,192,221,221,189,168, 81,163, 70, 69,185,185,185,120, -254,252, 57,242,243,243, 17, 28, 28,140,184,184, 56, 80, 20, 85,107, 1, 67, 81, 20, 62, 54, 39, 0, 56,216,152, 99, 84,223,118, - 76,169, 68,196,203,206,206, 46, 55,124,244, 31, 18, 90,101, 80, 42,149,188,250,245,235,131, 4, 8, 97,137,194, 52,227,104, 23, - 34,227,104, 23, 66, 88,162, 48,149,201,100,164,169,169, 41,164, 82, 41, 79, 7, 42,214,151, 95,126, 57,255,204,153, 51,172,181, -107,215,194,203,203, 11,114,185, 28,247,239,223, 79, 5,144,165,110,147,126,251,246,237,116,141, 16, 94,191,126, 61, 78,159, 62, - 77,244,232,209, 99, 97,101,231,147, 64, 32,216, 56,101,202,148,188,146,162, 60,236, 29, 38, 70,232,168,108,252, 60,240, 45, 70, -216,156, 66, 94,230, 59,236,219,183, 15, 87,175, 94, 35,174, 92,185,202,190,121,243,166,201, 87, 95,125,181,163, 78,157, 58, 97, -213,117, 50, 61, 61,125,237,140, 25, 51, 10,138,138,138, 80, 84, 84, 4,177, 88,130, 60, 17,240,108, 75, 83, 60,219,210, 20, 18, -202, 8,187,118,238, 38,159, 61,123,102,251,246,237, 91,167,254,253,251,111,225,243,249, 7,171,227, 76, 75, 75,123,240,237,183, -223, 74, 10, 11, 11, 33,147,201,228, 42,149, 74, 38, 22,139, 21,199,143, 31,159,107, 99, 99,211,225,226,197,139,172,171, 87,175, - 49,111,222,188,197,190,126,253,186, 69,183,110,221, 78, 56, 56, 56,252,162,139,165,140,193, 96,108, 11, 9, 9, 25,183,107,215, - 46, 7, 31, 31,159,102, 21,134,162,248, 61,123,246,172,247,235,175,191,214, 9, 10, 10, 90,136,210, 0,148, 79, 10, 91, 91,219, -153, 3, 7, 14,196,174, 93,187,112,254,252,249,121, 59,118,236,192,151, 95,126, 9, 39, 39,167,111,161,251,176, 23, 0,252,184, -117,235, 86, 15, 15, 15, 15,140, 25, 51, 70, 54,105,210,164,239, 14, 29, 58, 84, 63, 60, 60,156,253,203, 47,191,212,155, 58,117, -234,236,128,128, 0, 73,131, 6, 13, 16, 28, 28,220,144, 36,201,109, 58, 93,223, 14, 14,115, 71,140, 24,129, 77,155, 54,225,230, -205,155,131, 81,250, 64,149, 1,184,116,247,238,221,254,235,214,173,195,224,193,131,225,236,236, 60,187, 54,150,167,166, 77,155, - 46,235,211,167, 15,194,195,195,209,170, 85, 43,116,232,208, 97, 30, 0,219, 90,238, 78,210,212,212,244,196,161, 67,135,124,235, -213,171,135, 53,107,214,192,205,205, 13, 7, 15, 30,244, 53, 49, 49, 57, 1, 29,221, 55, 44, 44, 44, 76,141,141,141,177,112,225, - 66,122,240,224,193,121, 53,125,230,205,155, 71,115,185, 92, 88, 89, 89,233, 26,248, 98,196,227,241, 58,122,121,121,225,254,253, -251,184,122,245, 42,150, 46, 93,138,185,115,231, 34, 59, 59, 27,195,135, 15, 55, 6,224,175,199,118,219,219,217,217,161,176,176, -180, 46,188,151,151, 23,158, 60,121,130,236,236,108, 56, 59, 59, 35, 35, 35, 3, 54, 54, 54,104,220,184, 49, 40,138,178,215,141, -146,246,178,181,182, 64, 86,190, 20, 76, 40,209,218,221, 22, 55,158,231,226, 93,182, 12,246, 54,150,200,200,202, 70, 29, 27, 30, - 92, 92,234,130,166, 41, 47,157, 20, 48,131,108,205,229, 25, 33,175, 72,142,180,216,155,185,114,149,116, 74, 65,226,221,148,130, -196,187, 41,114,169,100,202,227, 59, 87,115,235, 57, 24,193,197,197, 5, 4, 77,181,251, 20,215,227,144,186,112, 49, 49, 98,142, -185,250,243, 50, 34,108,255, 98, 66,154,251,174,109, 31,135, 82,203,178, 29, 80,127,200,240,225, 29,191,251,238, 59, 94,102,102, - 38, 21, 48,108, 88,222,218,192,192,107,127,212,240, 98, 80, 12, 52,234,217,179, 39, 72, 0,127, 92,185, 34,202, 0, 82, 1,192, - 1,112, 25,240,205, 55, 93,150, 44, 90,100,148,147,155, 75,221, 79, 40, 62, 23,151, 69, 15,178, 86,161,190, 46,254, 89, 42,192, - 91,195,123,249,242,101, 90, 12, 60, 6, 0, 63, 23,124,219,171,147,167,207,232,129, 93, 32,200,202,199,236,181, 63, 99,207,201, - 91,151, 45, 20,244, 23,255,161, 71,241,228, 90, 9, 45,245,208,207,123,211, 74, 74,222, 31, 61,248, 80, 1,243,119,112, 86,134, -255,162,208,210, 64,161, 40, 29, 37,145, 41, 40,200, 20,148,230,173, 22, 98,177, 88,103,138,203,151, 47, 31,158, 53,107, 22,182, -108,217,130, 87,175, 94,129,205,102,195,203,203,139, 15,192, 84,115,207,111,221,186,181, 61, 73,146,136,143,143,199,230,205,155, - 49,126,252,120,250,222,189,123, 7, 81,121,190,148, 39,121,121,121, 59,167, 76, 26, 95,144,159,249, 14, 10,113, 62,178,210,222, - 64, 42, 42,192,154,245, 27, 81,162, 96, 34, 67, 40, 71,134, 80, 14,146,107,141, 61,251, 15, 49,154, 54,109,218,135,193, 96,244, -171,166,159,247, 51, 51, 51,247, 79,155, 54,173, 32, 35, 35,163,108,251,100, 10, 26, 50, 69,249,243,213,216,216, 24,219,182,109, -179,112,119,119, 31,200,100, 50,187, 85,195, 41, 72, 73, 73,137,155, 54,109,154, 44, 51, 51, 19, 66,161, 16,231,206,157,235, 95, -175, 94, 61,171, 13, 63,110, 33, 68,114, 38, 50, 10,228,200, 40,144,131, 99,106,143, 19,161,103, 24,141, 27, 55, 14, 96, 50,153, - 29,106, 18, 89, 71,142, 28, 25, 61,108,216, 48,179, 31,127,252, 49,239,236,217,179,187, 0,104, 31,144,248,109,219,182,157, 60, -113,226, 68,209,252,249,243,173,131,130,130,230,125, 98,177,213,109,216,176, 97, 77, 40,138,194,169, 83,167,158, 1,216,122,230, -204,153, 71, 82,169, 20,195,135, 15,175,175, 30, 70,210, 5,109, 3, 2, 2,166,251,250,250, 98,206,156, 57,242,107,215,174,181, - 6,176, 5,165, 67,185, 52,128,100, 0, 59,110,221,186,213, 98,230,204,153,210,118,237,218, 97,236,216,177,227, 1,248,214,192, -219,113,196,136, 17, 30, 20, 69,225,248,241,227, 79, 1, 92,172, 48,255,122,104,104,232,125,153, 76,134,145, 35, 71, 54, 0,160, -207,141,156,205,229,114, 79,173, 94,189,218, 50, 45, 45, 13,163, 71,143,150,198,199,199, 35, 48, 48,208,200,194,194,226,162,214, - 53,160, 51,184, 92,238,190,159,126,250,105,160,183,183, 55,166, 77,155, 38,219,189,123,247,172,233,211,167,203, 90,183,110,141, - 93,187,118, 13,228,112, 56,122,149,232, 72, 79, 79, 47,136,141,141,181,169,233,147,154,154,170,107,120,190,177,169,169,105,132, -167,167,103,161,151,151, 87, 27,165, 82,137,152,152,152, 55,135, 15, 31,166,188,188,188,176,115,231, 78, 4, 5, 5,161, 95,191, -126, 96, 48, 24, 58, 11, 45, 6,131, 1,185, 92, 14, 99, 99, 99, 48,153, 76,188,121,243, 70,147, 90, 6,108, 54, 27, 0, 96, 98, - 98, 2, 35, 35, 35,144, 36,169, 83, 52, 26, 65,128, 46, 44, 81,128,197, 34,193, 36, 41,196, 37, 11, 33, 87, 80,224,177, 25, 96, - 49, 9,128,166, 96,105,194, 2,143,195, 0, 73, 16,148,142,156, 16,138,228,224,176, 73,176,216, 28,130, 84,170,140,202, 30,142, - 76,149,145,145, 17,135,176, 53,231,130,199,254, 23,149, 5, 38, 74, 29,203,199, 1, 44,147,186,117,135,110,218,188,153, 83, 88, - 92,140,193,131, 7,231, 37, 61,122, 20, 34, 6, 30,117,173, 33, 72,137,100, 50,221,253,186,118, 69,100, 84, 20,138,242,243, 95, - 3,165,206,241, 28, 39,167, 97,219,182,109,227,136, 37, 18, 12, 30, 52,168,224,213,157, 59, 71, 82,138, 17,118, 60,185, 84,136, -213,120,220,217,108, 71, 13,175, 48, 63, 63, 31, 40, 77, 33,225, 96,103,186, 97, 70, 64,111, 20,149, 72,176, 96, 99, 8, 21, 21, - 39,248, 54, 60, 21, 95,157, 73,135,240, 63,246, 24,158, 92,225, 3, 64,135,132,165, 26,235, 82, 77, 98, 69, 42,149,126,116, 1, -244,161,156,149,137,196, 15,229,252, 55,130,201,100, 74, 94,190,124,201, 49,183,113,162,108,204, 88,249,245,198,223,177, 0, 0, -107, 83,166, 80,174, 82, 80,233,233,233,224,114,185, 18, 29,135, 27, 38,237,219,183,111, 13,128,102, 76, 38, 51,236,208,161, 67, - 68, 72, 72,136,213,136, 17, 35, 18, 98, 99, 99,211, 60, 61, 61, 93, 15, 29, 58,100, 14, 0, 59,118,236,160, 79,156, 56,209, 27, -165, 41, 51,170,204,227,146,153,153, 25,152,155,155,123,111,198,140, 25,193, 28, 14,199,202,196,196,196, 38, 60, 60,156,144,200, -105,180, 93,146, 92, 22,137,104,110, 68,226,246, 98,115, 76,158, 60,153, 17, 27, 27,187, 62, 45, 45, 45,172, 26,206,133, 5, 5, - 5,225,175, 94,189,218, 98,225,220,210,206,196,117,137,133,207,226,120, 0,128,171, 45, 11,164,250,190, 88, 80, 80,128,236,236, -108, 76,159, 62,221, 42, 33, 33, 97, 97, 90, 90,218,141,106,172, 90,183,114,114,114, 82, 95,188,120,225,199, 98,177, 56, 38, 38, - 38,109, 35, 34, 34, 8,137,140, 66,243,133,201,200, 43, 46,237,167,181, 41, 19,143, 87, 59,224,219,111,191,101,190,126,253,122, -163, 64, 32,232, 92,233,205,140, 36,131,180, 69,214,130, 5, 11,162, 1, 52, 0, 80,110,104, 84,165, 82, 17, 35, 71,142,124, 14, -192,107,254,252,249,214, 52, 77,207, 91,184,112, 97, 30,128,189,255,244,185,100,110,110,190, 97,202,148, 41, 56,113,226, 4,242, -243,243,183, 1, 64, 97, 97,225,214,163, 71,143, 30,159, 52,105, 18,126,253,245,215, 13,217,217,217,127,160,230, 80,237, 47,135, - 15, 31,142, 75,151, 46,225,207, 63,255, 92, 6, 32,166,138,118,175,194,195,195, 23,158, 61,123,118,251,136, 17, 35,240,243,207, - 63,247, 1, 80,157,131,108,207,222,189,123,227,226,197,139,200,205,205,221, 85, 89,131,130,130,130,221,231,206,157,107,223,187, -119,111,172, 95,191,190, 39,128,235, 58,108,186,135,133,133,197,161,237,219,183,183,245,246,246, 70, 64, 64,128, 68, 46,151,247, -153, 63,127,254,249, 99,199,142,153, 29, 62,124,184,205,228,201,147, 31,168,115,190,221,215,201,148, 69,146,235, 54,111,222, 60, -193,207,207, 15,243,230,205, 83, 94,190,124,121, 0,128, 43,127,252,241, 71,194,130, 5, 11, 46,108,222,188,153,177,105,211,166, - 9,179,103,207,206,166, 40,234, 83,137,235,213, 59,118,236,104,223,171, 87, 47,188,121,243, 6,247,239,223,135, 92, 46,255, 53, - 34, 34,226,118,163, 70,141, 86,203,100,178,243, 38, 38, 38, 99,204,204,204, 60, 91,182,108,249,197,227,199,143,141,161,155,159, - 94,102, 98, 98,162,165,133,133, 5,148, 74, 37,158, 61,123,134,186,117,235, 66, 46,151,227,237,219,183,240,246,246, 6,155,205, - 70,102,102, 38,180,172,229, 53,136, 34,242, 89, 66, 82,122, 3,107, 51, 19, 64,197,195,147,248, 84,216,217, 90, 65, 69,144,200, -200, 16,160,101, 19,103, 16, 4,129,130,220, 12, 16, 4,241, 92, 23, 78, 21, 77, 69,190, 75,207,170, 99, 99,198,133,119,251, 94, - 54, 17,127,100,135,152, 55,232, 52,153,201, 32, 24, 28,174,233,222, 9, 99,199,218, 82, 20,141,130,220, 76, 48, 73,242,225,167, - 56, 64,167,222, 33,165,171, 27,239, 73,175, 9,107, 90, 18, 52,104,177, 28,135,127,206, 68,190, 49,208,114,199, 15, 63, 88,218, -216,218, 34, 32, 32,128,202, 77, 75,187, 86,162, 99, 98,229, 6,141, 26, 57,152,154,153,225,238,221,187, 96,148,250,216,226, 32, -224, 17,180, 96,129,141,189,163, 35,198, 79,152, 64,101,190,123,119, 93, 12,164,235,211,215, 6,110,110, 44, 13, 47,169,230, 21, - 48, 48,107,254, 0, 95,174,137, 17, 23,235,246,156, 65, 74,142,232,120,132, 0,123,254,163,246,142,125,213, 90,180,170,114, 62, - 43,117,170, 54,174, 86,172,240,120,188, 50,107,138, 30,111,122, 31,157,179, 38,252, 29,156,159, 16,139, 1,156, 5,176, 56, 37, - 37, 37,110,194,132, 9,114,165, 92, 90,116,111, 77,131, 69, 81,235,235, 77,139, 8,228, 79,251,125,150,197,162, 18, 97, 94,209, -142, 29, 59, 20, 41, 41, 41,113,218,203,212,192,253, 14,192,197, 95,126,249,101,247,169, 83,167,224,229,229,133,152,152, 24,123, -145, 72,212,234,249,243,231,214, 30, 30, 30, 8, 9, 9,193,137, 19, 39,182, 0,184, 90,157,200,210, 64,169, 84, 94,203,200,200, -104,156,156,156,220,208,210,210, 82, 97,105,105,137,138,145,136,133, 98, 10,185, 5, 66, 88, 91,219,192,220,220,188,190, 14,226, -252, 98, 70, 70,134, 59,101,213,164,139,123,206, 54, 97,228, 58, 23, 68,174,115,193,197,133, 78,224, 91,114,144,159,159,143,236, -236,108,100,103,103,131, 32, 8, 40, 20,138,166, 58,112,190, 21, 8, 4, 7,222,189,123,119,214,193,193, 1,102,102,102,160, 1, -100, 20, 40, 16,189,201, 3,209,155, 60,144, 81,160, 64, 97, 81, 17,234,213,171, 7, 51, 51,179,170,134, 40,200, 58,117,234,244, - 29, 54,108,152, 25, 0,168, 5, 84,119,154,166,167, 85,242,153,170, 84, 42, 59,105,218,126,255,253,247,214, 0,122,255,195,231, - 19, 3,192,140, 73,147, 38,181,225,241,120,216,185,115,231, 91, 0, 71, 52,247,250,221,187,119,199, 3,192,172, 89,179, 60, 1, -204, 67, 21,153,160,203, 76, 67,108,118,235,166, 77,155, 34, 34, 34, 2, 0,206,212,176,238,208,123,247,238,161, 81,163, 70,224, -241,120,109,107,104, 91,223,197,197, 5,241,241,241, 0,240,164,138, 54, 79,226,227,227, 75,135,123, 8,162,190, 14,219, 62,176, - 87,175, 94,207,110,220,184,209,182, 99,199,142,152, 48, 97,130,236,193,131, 7,125, 1,220,126,242,228, 73,183,145, 35, 71,138, -220,221,221,113,235,214, 45,143,145, 35, 71,222, 35, 73,114,141, 14,156,227, 87,173, 90,181,248,235,175,191,198,170, 85,171,232, -147, 39, 79, 6, 0,184,162,158,119,249,248,241,227,163,215,174, 93, 75, 15, 26, 52, 8, 43, 87,174, 92, 12, 96, 90,117,100, 34, -145, 72,168, 82,169, 32, 18,137,116, 50,201,235,218,222,214,214,246,203, 94,189,122, 97,233,210,165,168, 83,167, 14,206,159, 63, - 79, 3, 8, 3, 16, 46,147,201,186, 0,216, 44, 18,137,126,143,136,136, 64,207,158, 61,217, 40, 95, 98,164,186,245, 63, 59,122, -244,168,212,194,194, 2,174,174,174,104,208,160, 1, 50, 50, 50,144,148,148, 4,111,111,111,180,110,221, 26, 74,165, 18, 7, 14, - 28,144, 20, 21, 21,233,148,147, 79, 41, 19, 29,190,122,225,180,208,198,140, 11,103,123, 11,212,171, 99,141,226,130, 28,100,103, -164,163,117,211,186,232,218,186, 30,114,132, 50, 92, 14, 59,157, 95, 84, 84,114, 88, 39, 19,190,180,228,208,181, 63,206, 11,173, -204,216,104,220,196, 19, 35, 39,204,106,217,178,149,207,213,118,237, 58, 93,254,113,195,186,230,221, 59, 52, 37, 82,115, 36,184, - 20,118, 38, 95, 88, 88,120,232, 83,220,232, 87, 2, 12,137,133,251,237, 93,103, 35, 15, 52,235, 51,233, 64, 92, 42,182, 1,128, -130,193,240,232,251,229,151, 72, 77, 77,197,233, 83,167, 4, 37,192, 83, 93,249,140,140,140, 72, 0, 16, 10,133,224,170,253,238, -148, 64,147,175,190,250, 10,217, 57, 57, 56,122,228, 72,246, 37, 32, 74,159,126,246, 7, 56,198, 70,165, 6, 65,161, 80, 8, 2, - 40, 4, 0,130,137,190,237,188, 26, 33, 59,175, 16, 55, 30,198, 21,215, 19, 99,122,117, 60,159,177, 35,124,237,124,180, 0,228, -204,155, 55, 15, 92, 46, 23,124, 62,191, 76, 28,105,196, 10,135,195, 1,159,207,135, 82,169,196,241,227,199, 1, 32,167,218, 55, - 60, 64, 58, 96,218,122, 74,170,160, 75, 88, 44,214, 71,225, 84,191, 57, 74, 7, 47,248,153,250,227, 94,229, 65, 49,181,225,252, - 12,208, 78,157, 19,171, 29,128,252,164,164,164,212,161,131, 7, 8,147, 19, 94,100,136, 10,210, 5,133,185, 41,130,148,183,207, - 51,150, 44,156, 39, 76, 77, 77, 77, 65,105, 46,173,118,233,233,233,154,101,116,193,188,161, 67,135,254, 52,105,210, 36, 58, 58, - 58, 26, 0, 16, 25, 25,137,177, 99,199,210,163, 71,143,222, 6, 96, 81, 45,250, 45, 18,139,197,229,172, 33,114, 21, 85, 54,228, - 87, 88, 88,136,244,244,116,200,100, 50,157, 21,241,171,203,155, 94,230, 37, 61, 86,120,186,154,192,211,213, 4, 30, 46,198, 32, -148,197,101, 34, 43, 59, 59, 91,243,230, 44,209,163,159,133, 82,169,180, 92, 63,181,135, 38, 11, 11, 11,145,145,145, 1,149, 74, - 85,213,131,140, 74, 75, 75,187,124,226,196,137, 34, 0,248,241,199, 31,243, 8,130,248,147, 32,136,159, 42,249,236, 97, 50,153, -119, 53,109, 55,109,218,148,135,247,135,196,254, 78,124,237,237,237,157,191,120,241,226,157,179,103,207,198,158, 61,123, 32, 16, - 8, 22,225,175, 92, 60, 84, 78, 78,206,130, 93,187,118, 97,220,184,113, 88,190,124,249,166, 86,173, 90, 21, 2, 24, 89, 21,161, -157,157,157, 51,147,201, 68, 84, 84, 84, 33,128, 55, 53,172, 63, 35, 42, 42, 42,147, 32, 8,240,249,124,183,234, 26, 90, 91, 91, - 55, 52, 51, 51, 67, 90, 90, 26,160,126, 99,174, 4, 73,233,233,233, 52,135,195,129,147,147, 83,163,154, 54,222,202,202,106,193, -129, 3, 7,152, 47, 94,188, 64,247,238,221, 83,111,221,186,213, 19,128, 38, 36, 61, 42, 50, 50,210,183, 91,183,110, 47,175, 94, -189,138,141, 27, 55, 18, 45, 90,180,152, 86, 19,167,171,171,235,212,241,227,199, 35, 56, 56, 24,123,247,238,157, 6,224, 84,133, - 38,199,118,237,218, 53,107,239,222,189,152, 48, 97, 2,234,215,175, 63,178, 58,190,228,228,228,133,126,126,126,145,175, 94,189, -210,169,226,129,142,237,187,249,248,248, 52, 20,139,197, 56,116,232,208,155,134, 13, 27, 62, 58,117,234,212, 60,188,255,192,254, -253,244,233,211, 24, 53,106, 20, 90,180,104,113, 8,192, 8, 93, 46,203,216,216,216,148,235,215,175, 83,108, 54, 27,174,174,174, -232,215,175, 31, 2, 2, 2,208,188,121,115,200,229,114,156, 62,125,154,122,254,252,121,170, 76, 38,211, 41,151, 82,238,171,155, -231, 19, 19,255,199,222,121,135, 55, 85,253,127,252,125,179,119,210,180,105,210, 69, 75, 89,157,172, 2,101,143, 66, 41, 83,150, - 40, 34,130, 56, 0, 25,162,130,226, 96, 8,178,100, 15, 89, 21, 20, 68, 80, 64, 4,164, 44, 21,191, 32,155, 22, 40, 5,218, 2, -221, 51,233, 94, 73,155,117,207,239, 15, 90,126,165,118, 36, 45, 78,238,235,121,238,147,228,220,220,119,206, 93,231,190,243, 57, - 43,254,226,141,171,231,205, 28, 54, 11,158,174,142, 24, 29,218, 17,111,140,237,137, 78,126,238, 72,209, 25,112,246,236,207,230, -164,164,132,203,182,244, 56,172,210,140,189, 27,125,233,206,141, 11, 22, 46,135,130,159,111, 27,204,255,248, 3,229,178, 69,243, - 28,218,180,244, 68,116, 98, 17,126, 62,115,210,156,153,158,246,219,223,213,227,240, 28,192,147, 10, 40, 9,155,197,130,149, 37, - 40, 99, 87,118,164,105, 27, 16,224,163,113,113, 65, 68, 68, 4, 88,118,244, 8, 61, 7,240,164,210, 71,181,224,165,165,165,168, -210,107,229,235,235,235,233,229,133, 19, 17, 17, 96,211,244,189,190,118, 14, 48, 26,247,168, 26,250,177, 46, 5,148, 79,111, 6, - 89,171,102,106, 95,165, 66,130,171,209, 15, 80, 97, 38,215,190, 45,192,223, 58, 30,217,159,200, 20, 52,178,234,112,245,246,237, -219,131,119,238,220, 57,240,189,247,222,147, 78,154, 52, 9, 66,161, 16,122,189, 30, 30, 30, 30,176, 90,173, 56,117,234, 20, 34, - 35, 35, 75,105,154,254, 25,127, 28, 54, 32, 20,213,122,105,156, 78,128,232,145,223,210, 7, 31,125,225,133,167,162, 9, 0,210, - 7,180, 60,175,185,113,239,166,131, 23,198,236, 59,125,131,122,103,124, 95, 86, 39,223,102, 0, 0,141, 70, 3,185, 92,110,183, -230, 83,224, 79,215,172, 94,173,155,157,157, 29,151,157,157,173,123,243,205, 55,253,170, 26,190, 11, 4,130,242,202, 72, 86, 65, -109,219,216,144, 79, 19,128,233, 59,119,238, 60, 86, 84, 84,116,250,253,247,223,199,178,101,203,240,211, 79, 63,245, 6,112,177, -145,251,110, 45, 40, 40, 40,188,118,237,154,166,181,127, 16, 90,168,185,232,179,224, 62, 8, 33,112, 18, 19,148, 20,230,227,230, -205, 27, 40, 41, 41,185,106, 79, 62, 77, 38, 83,161, 78,167, 83,169,213,106,228,231,231, 35, 55, 55,247,177,201, 42, 40, 40, 64, -126,126, 62,161,168, 63,140,217, 82,159,102,153, 78,167,211,199,198,198,242, 53,205, 90,163,165,154,135,174, 31,199, 1,132,192, -211,145,133,146,226, 66, 92,190,124, 25, 69, 69, 69,255,171, 75,147,166,233, 57, 19, 38, 76, 96, 3,152,248,254,251,239, 59, 2, -232,240,193, 7, 31,252,140, 26, 61, 11, 57, 28,206,250,189,123,247,182,173,170, 98,156, 55,111,222, 58, 0, 59,255,170,107,201, -201,201,105, 78, 68, 68,132,204,100, 50, 97,211,166, 77, 88,183,110,221, 46,252,113,160,202,136, 47,190,248, 98, 11,139,197,154, - 49,115,230, 76, 76,157, 58, 85,220,185,115,231,247,178,178,178,190,173, 77, 51, 35, 35, 99,126,167, 78,157, 22,234,116,186,229, - 54,153,229,251,247,167,116,234,212,105,190, 78,167, 91, 85,223, 57,146, 72, 36, 18,171,213,138,164,164,164, 2,160,206,246, 29, -229, 73, 73, 73, 25, 86,171,213, 67, 44, 22, 59, 54,116,125, 22, 20, 20, 44,239,220,185,243,167, 90,173,246, 12,128,165,181, 24, -242, 91, 89, 89, 89,129,179,103,207,158,181,114,229,202, 49,217,217,217,223, 53,164,153,146,146,178, 60, 36, 36,100, 65,124,124, -252,110,212, 93, 5,252,197,226,197,139, 77,123,247,238,125, 43, 41, 41,105, 69, 3,154,199,115,115,115,143,219,113,126,235,250, -254, 99, 77, 54,155,253,193,202,149, 43, 89,219,183,111, 7, 33,100,141,213,106,173, 43,159,209, 71,142, 28,217,211,179,103,207, - 73, 7, 15, 30, 20, 6, 6, 6, 78,173,168,168,216,223,208,245,169,215,235, 15, 31, 60,120,112, 76,116,116,180,199,164, 73,147, -132, 62, 62, 62, 48,153, 76,200,202,202,194,246,237,219,203, 99, 98, 98,210, 11, 11, 11, 15,219, 83,134, 88,140,197,227, 47,157, - 61,186, 63,249,126, 76,247,126,131, 71, 42,141, 38, 15, 8,242,216, 40,204,203,198,169,227,135, 11,146,146, 18, 46,235,245,133, -227,237,209, 52, 85, 20,189,116,249,183, 99,223,165, 39,197,118,235, 19, 50, 84, 89,110,244,130,128,199, 66,158, 54, 3,167, 34, -142,230, 39, 37, 37,254, 94,110,174,120,245,239, 42,231,217,222, 88,202,206,142,124,115,218,115, 29, 33, 82,122,220,228, 2,155, -122, 2, 34,149, 70,195,171,188,119, 32,125,212,230,209, 38, 77, 45,192,111, 93, 89, 75,165,215,235,193, 5,140,147, 1,174,179, -179,179, 8, 0,226,227,227, 33,126, 84,171, 97, 87, 62, 75, 1,137,184,154, 46, 11,208,231,113,224,222, 74, 46,161, 0, 32, 61, - 59, 15, 70,115,189,207,141,127, 59,225,213, 12, 87,120, 99, 4,120, 0, 66,165, 82,233,178,133, 11, 23,174,185,122,245,234,154, -225,195,135,175, 17, 8, 4,203, 42, 15, 54,175,158, 19,241,151,105,118,113,131, 99, 72, 75,234,124, 88, 43,138,158,214, 91,105, -125,181,171,196,216,191,127,255, 45, 77,204,103, 83,110,150, 63, 83,243,168,217,108, 38,120, 84,109,119, 20,117, 87, 9,126, 84, -109,125,118,106,106, 42,169,124,111, 79, 62, 85,227,198,141,163, 75, 74, 74,200,139, 47,190, 72,208,240, 20, 62,245,106, 10, 4, -130,144, 62,125,250,152,181, 57,249, 36, 46, 49,131, 92,137,186, 75, 78,159,189, 68,190, 59, 28, 65, 54,111,217, 65,218,183,111, -111, 4,224,101,143, 38,135,195,233, 31, 18, 18,146,167,213,106, 73,108,108, 44, 57,127,254, 60, 57,116,232, 16,217,177, 99, 7, -217,182,109, 27,105,214,172,153, 22,128,198, 30, 77,145, 72, 52,114,200,144, 33,230,194, 98, 61, 73,202,200, 35,183, 99,147,200, -197,107,183,201,169,179, 23,201,183,251, 15,146,128,128,128,114, 27, 52,217,108, 54,123,243,119,223,125, 87, 76, 8, 33, 35, 71, -142, 76,199,147, 3,169,182,152, 51,103,142,142, 16, 66, 86,173, 90,149,135,218, 27,194,255,217,215,210, 96,119,119,247, 56, 30, -143, 23, 1, 96, 98, 3,219,189,196,225,112,126,114,113,113,185, 14, 96,244,223,112, 31, 13, 87,171,213, 87, 0, 52, 52,195, 65, -213,247, 70,253, 71,238,247, 63, 67,179, 63,135,195, 57, 15,212, 63,137,112,181,242,250, 51, 54,155,125, 2,192, 0, 59,243,217, - 70,165, 82,189,168, 84, 42,223, 81, 42,149,239,168,213,234, 23,249,124,126,155,166,236,187, 83,155,208,231, 60,131, 70, 28,105, -214, 97, 88,138,103,199,225, 41,222,157, 70, 30,113,106, 19,250, 92, 83, 53,189, 58,141, 60,234,217,113,120,170,103,199,231,146, - 91,116, 25,121, 68,229, 27, 58,228,239, 60, 71, 19,221,225, 54,176, 5, 44,228,252, 2, 66,206, 47, 32,161, 45, 64,119,119, 64, - 64, 48, 32, 27, 20, 26,186,150, 88,173,107,199,140, 26,181,182, 53,224, 68, 0,118,205,165, 54,205, 32, 64,254,120,219,145, 35, -215,182, 4, 84, 3, 1,113,223,222,189,215, 16,171,117,237,132,151, 94, 90,235, 9,184,212,166, 87,151, 38, 1,216,238,128, 91, -117, 93, 21,208,106,172, 55, 2, 63,122,206,155,144,243, 11,200,226, 23,124, 72, 39, 13, 38, 54,160, 89, 87,164,232, 95, 29,209, -178, 23, 73,101,225,186,162,242, 85,242, 20, 46,194,167,174,217,205, 21, 62,161,173,168,216,161,190,156,124, 60,234,146, 44,249, - 15, 22,146,187,141, 70, 35, 41, 47, 47, 39,122,189,158,148,150,150,214, 52, 80,143, 13, 89,102,102, 38, 73, 79, 79, 39,169,169, -169, 36, 57, 57,153,224,255,219,222,216,156, 79,185, 92,190,243,133, 23, 94,176,114,185,220,205, 79, 99,223, 29, 29, 29, 87,116, -237,218,213,180,113,227, 70,114,228,200, 17,242,229,151, 95,146,153, 51,103,146,182,109,219, 86, 56, 56, 56,140,111,140,166,139, -139,203,124, 95, 95,223,188, 93,187,118,145,111,191,253,150,108,216,176,129,124,242,201, 39, 86, 15, 15,143,108,153, 76, 54,168, - 49,154,106,181, 58,188, 87,175, 94,166,240,240,112,242,243,207, 63,147,125,251,246,145, 57,115,230, 16, 63, 63,191, 10,137, 68, -242,188,141,154,108, 14,135,179,118,218,180,105,217,110,110,110, 17, 53,214,137, 3, 2, 2,174, 79,152, 48, 33, 19,192,188,255, -208,245,201,104, 50,154,140,230,159, 96,180, 94,118,131, 59, 1,216, 98, 30,239,165,190,189,123,175,225, 1, 47,217,107,138,132, -108,246,216,158, 93,187,174,225, 1,227,171,190, 43,100,179,199,246,237,221,123, 13,151,205,126,165, 46,189,250, 52, 9,192,230, -113, 56,243,122,118,239,190,150, 3,124, 92,149,214,191, 5,117,111,206,224,102,164,183, 23,245,224, 21, 53,196,255, 97,163,245, -212,225,252, 9, 23,225,191, 69,243,159,114, 83,183,174, 52, 76, 71,237,136,104, 29,197,163, 89,212, 91, 55, 50,159,162,167,188, -239,237, 84, 42,213,201,214,173, 91,231, 52,111,222, 60, 83,169, 84,238, 7,224,209, 68,205, 64, 23, 23,151,111, 52, 26,205,125, - 87, 87,215,104,149, 74,181, 30,143, 70,157,111,180, 38,151,203,237,170,209,104,254,231,237,237, 93,232,229,229,165, 85,169, 84, -223,213, 18,201,178, 69,211, 21,181, 23, 42,188,202,117,204, 67,135,209,100, 52, 25,205, 39, 12, 76, 88, 75,172, 28,216, 2,150, -129, 45, 96, 13,243,198,250,234, 6,101, 56, 32,106,172, 41,122, 21, 16,212,252,126, 67,122, 13,105, 18,128,221, 3,144,214,220, -102,168, 7, 2,108,212,252,183, 71,180,170,202,121,251,134,119,168, 3,203,159,144,201,127,139,230, 63,133, 7,168,167, 49,114, - 53, 86, 60,197,223, 52, 60,229,125,184,157,155,155, 59, 36, 55,247,169,246, 77,184,147,157,157, 61,241,105, 10,154,205,230,171, - 90,173,182,223, 83,144,170,171,235,181, 9, 54,118,203,102, 96, 96,120,118,160, 0, 43, 18,240, 97,104, 27,108,226, 88,193, 58, -149,136,140, 26, 93,242, 12, 84, 99, 52, 31, 97,221, 93, 75, 25, 79, 53, 54,159,255, 79,233, 31, 52,210,113,151,122,118, 78, 91, - 22, 30,181,209,106,178,209, 98, 96, 96, 96, 96, 96, 96,248, 11,248,229, 62,243, 71,236, 95, 64, 4,158,140,190, 69, 84, 51,162, -117,134, 62,237,233, 73,209,152,240,233, 47,140, 38,163,201,104, 50,154,140, 38,163,201,104, 62,115,154, 85,212, 53,119,106, 92, -141,207,141,234,197,247,172,192,212,179, 51,154,140, 38,163,201,104, 50,154,140, 38,163,249, 95,167,209,227,104, 49, 48, 48, 48, - 48, 48, 48, 48, 48,212, 79,157, 81, 55,198,104, 49, 48, 48, 48, 48, 48, 48, 48, 52, 13, 87, 60,154,162, 42, 2,255, 63, 85, 85, - 56,208,240, 20, 60, 79,176,114,229, 74, 86,235,214,173,165,124, 62,191,109, 66, 66, 2,107,250,244,233, 77,238, 72,176,102,253, -102,150,151,151,151, 20, 64,219,188,130, 18,214,107,111,188, 79, 49,231,139,129,129,129,129,129,129,225, 95,196,176, 74, 99, 85, -245,250, 56,194,101,151,209, 90,186,116, 41, 82, 83, 83, 37, 0,198, 5, 6, 6,242,183,110,221, 74, 14, 28, 56,208, 36, 99,244, -241,188, 57, 72, 73, 73,145, 0, 24,167, 86, 57,240,191,218,185,154, 28,252,233,194, 83, 55, 91, 42,149,202,233,175,220,142,129, -129,129,129,129,129,225,153, 98, 74,181,215, 41,141, 50, 90, 28, 14,135,205,231,243, 91,178, 88,172, 33, 66,161,176, 11, 0, 84, - 78,201,210,104, 56, 28, 14,155, 47, 16,180,100,179,217, 67, 4,130, 71,154, 47, 60,215,171,169,154, 3, 36, 18, 73,154, 88, 44, -142, 4, 32,146,201,100, 55, 76, 38,211, 93,153, 76,118,201, 30, 29,153, 76,118,169,114,187, 27, 0, 68, 98,177, 56, 82, 34,145, -164,113, 56,156, 1,204,245,196,192,192,192,192,192,192, 80, 73,120, 45,203, 31, 57,126,252,120,157, 6,135,207,231,179, 2, 3, - 3,123,121,121,121, 93,244,247,247, 55,122,120,120, 28, 18,139,197,146, 38,102,140,213,218,199,175,151,155,171,230, 98,199,150, -174, 70,181, 90,125,136,203,229, 54, 69,147, 45,147,201, 54,132,133,133, 21, 93,188,120,145,200,229,114, 45, 0, 7,103,103,231, - 76, 66, 8,113,113,113,161,237, 17,115,113,113,161, 9, 33,196,217,217, 57, 19,128,131, 92, 46,215, 94,188,120,145,132,133,133, - 21,201,100,178, 13,104,120, 68, 91, 6, 6, 6, 6, 6, 6, 6, 59,168,207,139,252,131,169,138, 98,185, 54,122,231,248,124,126, -144, 74,165,138,121,247,221,119,173,225,225,225,196,203,203,235,154, 90,173,238,174, 82,169,158,104, 80, 63,121,242,100,123,170, -253,130,100,114, 69,204,238,217,131,173,134,175, 70, 18,119, 87,245, 53, 7, 7,135,238,114,185,252, 9,205, 9,175, 77,181, 69, -211,142,216, 78, 12, 0, 0, 32, 0, 73, 68, 65, 84, 77,161, 80, 68,175, 92,185,178,188,176,176,144, 16, 66,136, 66,161,208, 2, - 80,106, 52,154,204,196,196, 68,162, 82,169, 8,108,143,226,177, 84, 42, 21, 73, 76, 76, 36, 26,141, 38, 19,128, 82,161, 80,104, - 9, 33,164,176,176,144,172, 92,185,178, 92,161, 80, 68, 3,112, 99,110, 11, 6, 6, 6, 6, 6,134,103,218,104,213, 52, 92,182, - 85, 29,118,233,210, 69,160,209,104,186,203,100,178, 81, 82,169,116,203,136, 17, 35, 2,199,140, 25,195,170,168,168,176, 6, 6, - 6,186,121,123,123,207, 82, 42,149, 19,133, 66, 97,123, 62,159,255,138, 92, 46,119,221,191,127,127,235,250, 52,219,117,232, 44, -112,112, 80,118,231,243, 5,163,164, 82,217,150,105, 99,251, 7, 78,124,239,121, 22,207,152,108,237,223,222,211,173,109, 75,215, - 89, 46, 74,201, 68, 14,155,213,158,162,168, 87,132, 66,161,235,183, 95,237,104,221,192,142,181,116,115,115,187,177,127,255,254, -182,227,198,141, 19,196,198,198, 2, 0,172, 86, 43, 31,128,153,205,102, 67, 32, 16,192,100, 50, 21, 0,176,245, 4, 18,147,201, - 84, 32, 16, 8,192,102,179, 1,192, 92,169,135,216,216, 88,140, 27, 55, 78,176,127,255,254,182,110,110,110, 55, 0,180,100,110, - 13, 6, 6, 6, 6, 6,134,103,150, 42,115, 21,129, 26, 85,135,156, 42,247, 56,124,248,240, 39,162, 70,124, 62,127,107,124,124, -124, 79, 71, 71,199,150, 92, 46,215,250,210, 75, 47, 9, 38, 76,152,128,156,156, 28,186,180,180,148, 29, 20, 20,164,185,126,253, -250, 16,139,197,210,219,193,193, 65, 95, 88, 88,168,170,168,168,120, 0, 96, 86, 61, 25,217,122, 63, 46,166,167,147,210,177, 37, -159,203,182,206,124,125,130,224,227,121,131, 65, 85, 68,209, 86, 93, 30,251,179, 78, 14,154,245,151,202,134,196,155,172,189,203, - 20, 66,125,118, 81, 69,131,154, 42,149,170, 19,143,199,139, 60,121,242, 36,196, 98, 49,138,138,138,192,231,243, 1, 0,165,165, -165, 10, 0, 28,138,162,192,231,243, 81, 92, 92,172,180,231,168, 21, 23, 23, 43,249,124, 62, 40,138, 2, 0, 78,165, 30,248,124, - 62,138,138,138,208,186,117,107,234,228,201,147,234, 33, 67,134, 60, 52,153, 76,157,115,115,115,163,152,107,141,129,129,129,129, -129,193,126,106,243, 34,255, 34, 26, 28, 71,171, 95,101,168,174,250,196,185,123,156,157,157, 93,164, 82,169,255,148, 41, 83, 88, - 42,149, 10,145,145,145,116, 89, 89, 25,139,203,229,130,203,229,178,251,247,239, 47,181, 88, 44,226, 19, 39, 78, 80, 15, 31, 62, -204, 49,155,205,159,229,229,229, 93,175, 39, 35,123, 90, 57, 8, 92, 68, 14,124,255,159,222,239,195,114,110,157, 7,156, 94, 76, -147, 82, 29,139, 67, 19,168, 36, 52,123,109,111, 74,154,173,240, 22,207,252, 46,135,250,253, 97, 97,142,217,108,254,172,164,164, -164, 62,205, 12, 0,168,204, 19,228,114, 57,172,214,234,243, 91,130,176, 88, 44, 8, 4,130, 70, 29, 57,129, 64, 0, 22,139, 5, - 84,139,132, 41, 20, 10,176,217,108,176, 88, 44,112,185,220, 39,242,193,192,192,192,192,192,192,208, 40,106,243, 34,255, 22,170, -143,163,101,219,220,148, 26,141,134,146,203,229,174, 29, 58,116,248, 52, 44, 44, 44,113,244,232,209,250,141, 27, 55,146,117,235, -214,145,181,107,215,146, 93,187,118, 89,127,251,237, 55,243, 27,111,188, 81,222,166, 77,155, 7, 91,182,108,241, 7,128,161, 67, -135,214, 89, 29,233,160,116,164,164,124,142,107,128,127,187, 79, 95,238,215, 54,113,193, 40, 31,189,105,119, 16,161, 23, 54, 35, -214,205,222,196,122,112,128,149,196,175, 54, 47,127,115, 64,121,115,175,230, 15,182,237,250,222, 31, 0, 66,195,134,214, 91,197, -169, 82,169,186,120,120,120,104,207,156, 57, 67, 23, 20, 20,144,188,188,188,170, 54, 90,133, 0, 20, 94, 94, 94,153, 22,139,133, - 40,149,202,124,123,142,154, 82,169,204,183, 88, 44,196,203,203, 43,243,145,191, 82, 20, 18, 66, 72, 94, 94, 30, 41, 40, 40, 32, -103,206,156,161, 61, 60, 60,180, 42,149,170, 11,115,127, 48, 48, 48, 48, 48, 48, 60,179, 76,169,241,218, 48, 61,123,246,164,228, -114, 57,171, 93,187,118, 82, 55, 55,183,110,110,110,110, 87,215,175, 95, 79,214,173, 91,103,217,190,125, 59,249,230,155,111, 44, -175,190,250,106,177, 68, 34,137,224,243,249, 74, 0,240,246,246,174, 55,228,215,165, 91,119, 74, 36, 20,176,124,125, 3,164, 42, - 39,167,110,206, 78,142, 87, 77,235,218, 18,178,216,221, 66,118,118, 36,228,224, 96,203,234, 23,131,139,185, 92, 94, 4, 0, 37, - 0,120,184,185,218, 26, 70,116, 83,171,213,209,139, 23, 47, 46, 51,153, 76,164,178,151,161, 22,128,131,151,151, 87, 38, 33,132, -120,120,120,164, 1, 80,217,168,167,242,240,240, 72, 35,132, 84, 25, 45, 7, 23, 23, 23, 45, 33,132,152, 76, 38,178,120,241,226, - 50,181, 90,205, 52,134,103, 96, 96, 96, 96, 96, 96,168,115,174,195, 58, 35, 69, 23, 47, 94, 36,197,197,197,116, 70, 70,134,181, -180,180, 84, 30, 20, 20,164,100,179,217,208,104, 52,108, 54,155, 77,151,149,149,177, 85, 42, 85, 38,151,203,253,214,104, 52, 22, -140, 26, 53,138, 74, 74, 74,170,183,161,249,245, 43,151,137,161,188,130, 78, 79, 79,179,234, 75,139,229, 19,219, 59, 42, 57, 22, - 19,232,160,158,236, 98, 81, 27,154, 54, 20,176,253, 92, 5,153, 60, 30,247, 91, 0, 5,163,135, 15,163,210, 51,179,108,109,188, -158,169,211,233,130,182,110,221,186,179, 79,159, 62, 5,122,189,190,170,109, 85,205, 33, 24, 28,108,212,171,249, 61, 54, 69, 81, -208,235,245,232,211,167, 79,193,214,173, 91,119,234,116,186, 32, 0,153,204,245,197,192,192,192,192,192,240, 76, 83,231, 56, 90, - 13, 14,117,160,215,235,149, 60, 30, 47, 52, 56, 56,184,121, 89, 89, 25,189,116,233,210,180,141, 27, 55,238,125,240,224,129,217, -193,193,161,165, 72, 36,122,103,220,184,113,170, 35, 71,142,144,222,189,123,215,140, 62,213, 58,187,183,193, 80,170, 20,240,184, -161,239,116,149, 53, 79, 51, 41,105,255,119,174,165,245, 93,120,105,239,143,119, 56,230,118,142,134,150,142,124,234,157,113,227, - 94, 84,253,120, 60,130,116,239,222,205, 38,205, 74,172, 58,157,238,157,200,200,200, 23, 91,180,104,145,110, 54,155,211, 1,228, - 25, 12, 6,173,155,155,155,206,100, 50,165, 3, 48,213,178, 93,109,154, 38,147,201,148,238,230,230,166, 51, 24, 12, 90, 0,121, -102,179, 57,189, 69,139, 22,233,145,145,145, 47,234,116,186,119, 0, 88,235,201, 11, 51,171, 59,163,201,104, 50,154,140, 38,163, -201,104, 62, 59,252, 33,154, 5,216, 48,169,180, 64, 32,232,227,233,233,217,235,206,157, 59,214,203,151, 47, 23,177, 88,172,109, - 67,135, 14, 61,116,248,240,225,174,142,142,142,234,102,205,154,105,126,253,245,215, 16, 0, 7,126,255,253,119,155,162, 79, 34, - 1,175, 79, 71, 15, 69,175,240, 91,196,250, 85,228,253, 34, 43, 91,176,173,255,243,207, 31,122,123,239,190,174,110, 42,153,186, -163,171, 92,115,226,196,169, 16, 0, 7, 46, 95,190, 98,247,120, 26, 22,139,229, 87,157, 78,215,172,234,115, 78, 78, 78,144, 74, -165,242,199,163,232, 83,145,141, 50, 41, 52, 77, 15,165,105,218, 45, 55, 55,247, 30, 0,228,230,230,118,102,174, 35, 6, 6, 6, - 6, 6, 6,134, 90, 76, 86,120,109,159,235,141,104,241,249,124,119, 54,155, 29,144,158,158,158,114,226,196,137, 59, 93,186,116, - 25,146,146,146,178,146, 16,146, 44, 22,139,167,164,165,165,221, 79, 75, 75, 51, 26, 12,134,105,118,100,198, 29, 44, 94, 64,100, -166, 33,229,243, 95,239,222,105,215,125,208,144,236,236,204,149, 86, 66,146,249, 98,249,148,248,212,156,251, 87,116, 21,198,242, -114,187, 52, 27, 36, 55, 55,247, 94,110,110,110,145,157,219, 20, 85,153, 44, 6, 6, 6, 6, 6, 6, 6, 6,123,105, 40,162,101, -178, 90,173,171, 43, 42, 42,148, 63,254,248, 99, 70, 88, 88, 88, 5, 0,108,221,186,149,126,253,245,215, 47, 36, 36, 36, 12,184, -119,239,222, 16, 23, 23,151,179, 0,168,196,196, 68, 91,162, 79, 38,154,182,174, 54, 26, 43,148,191,254, 22,149,209,167, 87,187, - 10, 0,216,254,197, 38,250,165, 41,179, 47, 36,196,222, 25, 16, 31,115, 99,136,139,139,203, 89,171,133, 67,101,101, 39, 19,230, - 52, 49, 48, 48, 48, 48, 48, 48,252,131, 9,199,147, 85,134,225, 54, 25, 45,163,209,152, 99, 52, 26, 1,160, 32, 44, 44,236,137, -117,187,118,237, 34, 0,202, 0, 28,204,203,203,179, 39, 51, 57, 6,131, 1, 0, 10,250,244,106,247,196,138,239,194, 55, 62,214, - 44, 45, 41,102, 78, 27, 3, 3, 3, 3, 3, 3,195,191,201,108,253, 1, 22,115, 92, 24, 24, 24, 24, 24, 24, 24, 24,154,196,148, -186, 62, 83,168,187,231,192, 47,118,252, 64, 99,122, 31,252,194,104, 50,154,140, 38,163,201,104, 50,154,140,230, 51,167,217,144, -246, 47,248,247, 81,103, 99,248, 63, 27,166,235, 43,163,201,104, 50,154,140, 38,163,201,104, 50,154,255,117, 92,241,228,240, 14, -174, 85, 43, 56,204,177, 97, 96,248,119, 67, 14,130,141, 2, 95,111, 16,226, 6, 54, 63, 11, 89,183, 19,168, 79, 65, 55, 89, 83, - 27,224, 5,145, 89, 3,139, 48, 7,218,232,196,166,106, 50, 48, 48,252,247,112,233, 49,125, 52,197, 98,111,163, 8, 13,131, 54, - 86,192, 51, 36,139,117, 89, 41,207,162,183,200, 66, 29, 17, 44,198,104, 49, 48,252,219,201,241,243, 1, 7, 43,192,130, 43,136, -233, 33,156, 3, 86, 0,119, 99,154,172,201,163,151,194,202,242, 0, 49,197, 67,237,187, 18,136,187,203, 28,236,255, 30,179,102, -190, 69,238,197, 92, 69,106,106, 38, 90,182,114,133,143, 95, 15,108,220,180,133, 98,142, 12,131,109,255,202,168,240,208,231, 38, - 56,138,196, 50, 0, 0,109, 49, 99,215,123, 29,127,182, 88, 44,123, 0, 28, 1, 96,120,214, 15,209, 95,222, 24,158,203,229,106, - 1,208, 66,161,240, 48,170,133,214, 24, 24,254, 4, 92, 43,175, 51,186,242,186,179, 7, 41,135,195, 89, 40, 22,139,127, 19, 8, - 4, 58,129, 64,160,147, 72, 36,191,113, 56,156,133, 0,164,255,152, 50,238,155,182, 98,176,172, 67,140,102,218,253,212,237, 66, -181,190,194,234, 3,150,101, 40,217,213, 70,218, 36, 77, 14, 21, 86,110,162, 61,191,189,166,215,148, 25, 45,254, 32,104,146,102, - 53, 28,120, 60,222, 41,216, 62,231, 40,195,159, 76, 74, 98, 12, 78, 28, 95,139,165, 75, 38,225,235,240,105,136,187,119,165, 73, -122,254, 64,231,206, 28,206, 92, 63,160, 63, 30,181, 3,102,248, 47, 67,145, 41,191,252,244,109,206, 79,251,191,200,249,126,237, - 52,114,116,197,112,108,218,180, 41,116,210,164, 73,223,122,122,122,230, 0,120,129, 49, 90,127, 49,102,179, 89,157,155,155, 75, -237,217,179,103,132, 66,161,120,200,225,112, 62, 2,192,123, 86, 14,184, 84, 42,189, 36,151,203,181, 10,133, 66, 43,151,203,111, - 52,148,254, 31,197,199,217,217, 57,197,209,209, 49,190,122,162,115,251,209, 61, 90,247,156,184,200, 41, 96,100,223, 38,234,243, - 56, 28,206, 71, 10,133,226,225,158, 61,123, 70,100,100,100, 80,102,179, 89,109,199,246,125,148, 74,229,189,171, 87,175, 46,200, -205,205,237,155,118,101,151,115,246,213, 29,206, 41,255, 91,219, 47,242,196,230, 5, 14, 14,138,187, 0,250,252, 35,142,100, 57, -173, 1,139, 29,114, 39, 75, 47,206, 42, 54,107,162,146,245, 50,128,221, 15,198, 38,252,137, 41,162, 53, 0,233,127, 43,221, 32, -185,148,239,172,249, 61,161, 66, 14, 22, 43, 4,229,148, 75,147, 11, 28, 22,235, 45,154,166, 7,242,120,188,119,152, 39,212, 63, - 3,129,128, 7, 16, 2,169, 68, 8,128,128,213, 68,107,196,103,177,122, 94, 26, 49, 98,233,188,246,237,103,249, 1,207,213, 97, -182, 40, 0,111,251,249,249,157, 4,240,210, 83,220,157,207,125,125,125, 51, 0,204,126, 90,229, 82,167, 78,157,122,132,132,132, - 44,234,216,177, 99,223,167,165,249, 95, 34,251,210,214, 31,179, 46,108, 86,103, 94,220,162, 46, 76, 60,255,182,171, 70, 73, 39, - 38, 38, 98,216,176, 97,248,226,139, 47,196,129,129,129,123, 1,184, 61, 3,183, 82, 80,213, 31,124,212,104,163,101,179,209, 26, -235,141,158,227, 91,224,220,139,222, 40, 25,215, 2,165,175,180,192,133,231,189,209,191, 49,185,113,114,114, 66,159, 62,125,216, - 25, 25, 25,162, 57,115,230, 44, 18, 10,133, 73, 0, 6, 53, 70, 75, 36, 18, 69,138,197,226, 52, 14,135,243, 68, 94,196, 98,113, -164, 68, 34, 73,227,112, 56, 3,170,167,203,100,178, 75,114,185, 92, 43,147,201,110,212, 97,132, 34,229,114,185, 86, 42,149, 70, - 86, 79,231,112, 56, 3,164, 82,105,186, 76, 38,171,153,222, 95, 38,147,165,213, 76,175, 11, 46,151,235,145,150,150,166, 78, 79, - 79, 87,243,249,124, 77,245,244,212,212, 84,117, 90, 90,218, 19,233,246,192,225,112,250, 75, 36,146, 52,177, 88, 28, 89, 91,122, -205,125,170,139,106,199,174,191, 45,233,246, 22, 60, 97, 97, 97, 23,178,178,178, 60, 29, 28, 28,158,152,184,219, 81,225, 48,232, -155, 93, 91,222, 27, 57, 52,236, 45,103,255, 81,237, 26,169, 63, 72, 40, 20, 38,205,153, 51,103, 81, 70, 70,134,168,123,247,238, -108, 22,203,174,255, 19,161, 35, 71,142, 60,170,213,106,221, 59,116,232,192,182, 88, 44,184,115,108, 33,196,209,239, 64,152,180, - 29,205, 68, 57,156,135, 63,175,244, 8,235,215,249, 40,254,230,198,160,228,160, 63, 15, 20,221,135, 38,196,249, 94, 70,185,243, -176, 17, 47,112,110,166, 25,156,205, 86,171, 35,192,238, 71,190,246, 18, 52, 74,147, 99,238, 77, 19,162,249, 53,153,235, 28,242, -226, 44,246,217,100,142,179,217,106,117, 2, 11,125, 27,163, 89,253,242,103,179,217,239,173, 93,187,150, 5, 96, 38, 0,254,179, -100,104,130,221,224,222,191, 21,251, 90,144, 43,122, 62, 69,217,192,202,251,221,167,169, 66, 59,191, 62,137,215,167,134,163,141, - 95,183, 38,233, 24,105, 58,238,187,196,196,211,175,180,106, 53,124, 94,251,246,147,107, 49, 91, 20,128,121, 43, 87,174,156,120, -231,206, 29,231, 22, 45, 90, 76,125, 74,127,250, 55,172, 92,185,242,131, 59,119,238,184,121,123,123, 47,182, 83,179,206,114, 73, -169, 84, 14,218,185,115,231,123,195,134, 13,123,171, 83,167, 78,237,158,134,230,127,152, 47,110,221,186,229,185,118,237,218, 15, - 95,127,253,245, 98, 0, 24, 48, 96, 0, 15, 64,247, 38,151,119,132,240, 9, 33, 33,132,144, 97,132,144, 1,132,144,224,202,247, - 93, 42,151, 97,132,144,208, 26,175, 93, 42,183,173, 90,223,181, 14,141, 97, 53,183,171,182, 77,205,207, 79,188,175,197,104, 13, -195,163,182, 90,195,158,216,129,227,199,143,147,234,175, 53, 25,231,141, 79,103,245,112,215,223,251,105, 31, 41, 77, 75, 36, 5, -177, 55,201,205,240,229,100, 86, 23,103,253,203, 45,240,185,253,199,139,144,139, 23, 47,146, 59,119,238,144,210,210, 82,114,255, -254,125,210,181,107, 87,131, 88, 44,254, 21,128,183, 61, 98, 50,153, 76,251,235,175,191,146,176,176,176, 34,169, 84,186,166,234, -230,146,203,229,218,139, 23, 47,146,176,176,176, 34,153, 76,182, 1, 0, 27, 0,158,127,254,121, 29, 33,132, 56, 59, 59,103,214, -166, 55,114,228,200, 2, 66, 8, 81, 40, 20, 85, 85, 77,108,153, 76,182, 97,198,140, 25,165,215,175, 95, 39, 74,165,178, 42,157, - 37,151,203,215,204,156, 57,179, 52, 42, 42,170,122,122,189, 56, 58, 58,166, 89,173, 86,242,211, 79, 63, 17,181, 90,157, 89,237, -102, 78,179, 90,173,228,232,209,163,117,230,173,190, 64,129, 84, 42, 93,253,202, 43,175,148, 36, 39, 39, 19, 39, 39, 39,109,181, -244, 53,147, 38, 77, 42, 73, 77, 77, 37, 42,149,202,166, 60, 58, 57, 57,105, 47, 93,186, 68,198,140, 25, 83, 92,253,152, 58, 57, - 57,105, 47, 95,190, 92,149,190,218,150,130,204,205,205,109,170, 90,173,206, 84,171,213,153, 14, 14, 14,203, 92, 93, 93,179,115, -114,114, 8, 33,132,180,108,217, 82, 87, 61,146,165, 14, 28,241,238,246,131,151,175,158,143,201,203,105, 63,240,173,213,138,246, - 35, 21,118, 28, 3,111,177, 88,252,107,223,190,125, 13,105,105,105,164,172,172,140, 68, 71, 71,147,139, 23, 47,146, 7, 15, 30, - 16, 0,182,204, 48, 32,147, 74,165, 25, 21, 21, 21,116, 69, 69, 5,157,147,147, 99,213,233,116,214,216, 53,174,132,124,197,125, -188, 20, 30,125,142,100,159, 95, 65,203,165,226,116, 0,178,191,205,104,109, 9,240, 32, 59,124,191,187,187,208, 51,246,252,202, -193,102,146,124,150,236,155,236,108, 62,247,174,251, 67,178,205,239, 7,178,195,191, 89,163, 52,183,249,239,139,254,196, 51,110, -243,226,183,205, 41, 41, 41,100,238,164,193,150, 51,179,220, 19,200,118,191,131,141,209,172,198,248,209,163, 71,151,166,166,166, -146,128,128,128, 50, 54,155,253,250,179,100,178, 66,125,248, 25,209,223,206,165,159, 11, 20,231, 61, 37,179, 21,168, 86,171,115, -119,239,222, 77,100, 50,153,174,177,102,107,236,168,126,196, 80,244, 43, 25, 53, 60,184,222,123,228,197, 23, 95, 36, 33, 33, 33, -100,214,172, 89, 13,221, 75,148, 31, 48, 98, 79,251,246, 71,233,177, 99,173,123,218,183, 63,234, 7,140,168, 52, 88, 20,128, 15, - 87,173, 90, 21,101, 54,155,163,190,254,250,235,168, 17, 35, 70, 68, 1,152,219,196, 99,177,241,243,207, 63, 39,102,179,153,124, -253,245,215,100,196,136, 17, 4,192,166,166,148, 75, 85,145,172,160,160,160,119,143, 28, 57,114, 53, 46, 46, 46,103,248,240,225, -171,219,183,111,175,104,172,230, 63, 17,169, 84,218,186, 93,187,118,123, 3, 2, 2, 82, 59,116,232, 96,244,247,247, 47,247,241, -241, 73, 14, 12, 12,220, 45, 16, 8,188, 27, 41,219,173,103,207,158,214,115,231,206,145,209,163, 71,147,106, 38,164, 94,234,243, - 34,132,144,224, 15, 63,252,240, 35, 0,228,195, 15, 63,252,136, 16, 50,172,210, 79, 12,171,254,190,230,107,149,121,170,250, 92, -155, 70,213, 82,155,102,109,191, 81,227,119, 80, 71, 36,107,202, 31,118,238,248,241,227,125,143, 31, 63,126,174,230,206,189,208, - 2, 61,102,245,112, 55, 24,114,178, 72,204,242,119,200,111, 33, 30,228, 98, 63, 23, 18,255,222,104,146,245,237, 6, 50,189,163, - 82, 63,182, 5, 66,236, 53, 90, 81, 81, 81, 36, 42, 42,138,220,184,113,131, 36, 37, 37,145,162,162, 34,242,253,247,223, 91,157, -156,156, 12, 2,129, 96, 37, 0,145, 45, 98,114,185, 92, 75, 8, 33, 21, 21, 21,100,217,178,101,229,149,145, 42,141, 66,161,208, - 18, 66, 72, 97, 97, 33, 89,185,114,101,185, 66,161,136, 6,224,166, 82,169,210, 18, 19, 19,137, 70,163,169,213,204, 40,149, 74, -109, 92, 92, 92,149,113,114, 87, 42,149, 49,199,142, 29, 51, 17, 66, 72,122,122, 58,113,116,116,212, 2,208, 56, 57, 57,221, 60, -126,252,184,137, 16, 66, 50, 51, 51,171,210,109, 50, 90, 6,131,129,156, 57,115,230,137, 60, 84,165,159, 60,121,242, 9, 3,102, - 3, 26,133, 66, 17,245,253,247,223, 27,173, 86, 43,137,137,137,169, 50,137, 26, 7, 7,135, 27, 7, 15, 30, 52, 90,173, 86, 18, - 27, 27,107,179, 25,108,222,188,185,142, 16, 66, 44, 22, 11,217,190,125,123, 69,213, 49,173, 74, 55, 26,141,100,235,214,173, 21, -114,185, 60, 10, 64,189,209, 55,149, 74,149,105, 52, 26, 73, 97, 97, 33,233,218,181,107,233,197,139, 23, 73,113,113, 49, 33,132, -144,230,205,155,235, 0,192,183,239,235,159, 93,189, 95, 90,252,218, 7, 91, 14,120, 7,191,188,252,244,181,140,244,157, 71, 34, -163, 84,129, 35, 7,219, 18,212, 20, 8, 4, 43, 93, 93, 93,203,127,255,253,119,171,201,100, 34,169,169,169,228,198,141, 27,143, -175,177,219,183,111,219,100,180, 56, 28,206,194,171, 87,175,154,172, 86, 43,157,155,155,107,213,233,116, 86,157, 78,103,169,105, -180,200, 87, 92,146,123,242, 77, 18, 17, 62,219,200,227,241, 22,254, 61,209, 44,176,201, 14,223,145,100,135,111,212,238, 87, 84, -185, 37, 55,246, 19,242,243,108,146,240, 89, 11,178,112,176,172,132,222,225, 27, 69,118,248,141, 37,159,246,229,216,165, 25,238, -255, 28,217,225, 27,245,249, 11, 94,121, 55,163,174,147,115,231,206,145,173, 27, 86,145, 89,161,238,101,244, 14,223, 40,178,205, -127,140, 61,154,213, 17, 8, 4,247, 47, 92,184, 64,206,159, 63, 79, 22, 47, 94, 76,196, 98,113,234,211,136,234,145,109, 62, 94, -228, 75,159,190,100, 87, 27, 87,242,191,190,255,184, 14, 62,193,110,112, 31,232,195, 79,207,189,121,132,144,252, 7, 36,123, 77, - 0, 25,236,203,109,170,217, 10, 84,171,213, 57,201,201,201, 36, 59, 59,155,172, 91,183,142,200,229,242, 70,153,173,177,163,250, - 17, 67,225, 47,245, 26,173,145, 35, 71,146,245,235,215, 19,179,217, 76,186,117,235,102,203,159,150, 63,152, 45, 95, 96, 36,128, -143, 86,175, 94,253,216,100,109,217,178, 37,234,246,237,219, 81,158,158,158, 39,154,112, 44, 54,173, 94,189,250,177,201,218,178, -101, 11,185,125,251, 54,241,242,242, 74,107, 74,185, 52,112,224,192,207,146,146,146,138,231,207,159,127,160, 79,159, 62,203,111, -222,188,153, 30, 17, 17, 17, 21, 20, 20, 52,184,177,154, 79, 33,170,195,169,140,236,240, 9, 33, 92, 66, 72,149,121,229, 0,224, - 86, 5, 20,108,225,149, 87, 94, 17,247,232,209, 35,106,194,132, 9,250,221,187,119,147,228,228,100, 18, 29, 29, 77, 86,175, 94, - 77, 22, 45, 90, 68,190,250,234, 43, 50,102,204,152,178,174, 93,187, 94, 29, 59,118,172,208,142,108, 6,120,123,123, 23, 29, 61, -122,148,236,219,183,143,240,120,188, 8, 91, 55,172,207,139,212,101,166,234, 50, 88, 53,215,213, 99,196,234, 53,108, 54,252,222, - 31, 77, 85,205, 72, 72,181,247,255, 27, 62,124,120,223, 63, 60,124, 8,150, 76,153,243,153, 48,105,247, 58,104,191,255, 2,236, - 66, 45,184, 37,121,168,184, 16, 1,243,133, 99,152,216,189,187, 72, 68, 81, 75,237,189, 96,248,124, 62,248,124, 62,120, 60, 30, -244,122, 61, 50, 51, 51,209,171, 87, 47,214,141, 27, 55,132, 83,167, 78,157, 45, 18,137, 82, 1,140,106,240,110,166, 30, 69,164, - 47, 93,186,132, 55,223,124, 83,176,119,239,222, 14,206,206,206,183,172, 86, 43, 31, 0, 98, 99, 99, 49,110,220, 56,193,254,253, -251,219,186,185,185,221, 48,153, 76, 98,129, 64, 0, 54,155, 93,167, 30,159,207,135,217,108, 22,180,105,211, 38,250,214,173, 91, -129,195,135, 15,231,166,164,164, 32, 49, 49, 17,102,179,153,239,227,227,115,251,198,141, 27, 29,134, 13, 27,198, 77, 75, 75, 67, - 74, 74,202,227,124,216,146, 95,163,209, 8,129, 64,128,234, 85, 90, 20, 69,161,162,162, 2,124, 62,223,102, 45, 14,135,211,223, -207,207,239,246,173, 91,183,130, 70,142, 28,201,187,126,253, 58,210,211,211, 97,181, 90,249,254,254,254,183,111,221,186,213,113, -196,136, 17,188,232,232,104,104,181, 90,216, 90,133, 86,245,189, 91,183,110, 97,194,132, 9,252, 83,167, 78,117,116,117,117,141, -182, 88, 44,124, 0,184,125,251, 54,198,141, 27,199, 63,125,250,116, 80,179,102,205,162, 27,168, 74,100, 3,128,217,108,198,212, -169, 83, 37,114,185, 28,105,105,105,160,105, 26, 86,171, 21, 0,144, 87,144,119,251,214,237,152,216,137,227, 95,232,107, 48, 85, - 84, 92,190, 22,121,175,101,115, 47, 15,138, 34,205, 27,200,234, 40,137, 68,146,186,102,205,154,119,147,147,147, 5,126,126,126, -172,132,132, 4,148,148,148,128,199,227, 61,190,198,108,221,111, 62,159,223, 47, 32, 32,128, 83, 94, 94, 14,154,166, 1,128,176, - 88,181,183, 88, 17, 22, 94,128,191,198,194, 21,137, 68,253,254,150,167,119,113,128, 19,104, 12, 76,201, 49, 10, 4, 14, 30, 50, -169,171, 15,144,122, 30, 45,156, 5, 96,179,216,194,235,137,122, 9, 64, 6,194, 51,215,201, 62, 77,122, 96,162,206, 40, 48, 59, -182,149,186,121,120, 34, 47, 47, 15,205, 90,250,161,156,239,204,191,244,160, 76, 10,202, 78,205,255,167,119,155, 54,109, 92, 90, -183,110,141,220,220, 92, 4, 5, 5, 65,169, 84, 42, 1, 12,108,244, 67,231,107, 47, 1,138,209, 19, 96,173,129,149, 90, 12, 51, -103, 5, 30,228, 4,145, 29, 65,220,127,146,201,146, 75,249, 87,246,127,247,189,187,147,167, 63, 16,241, 26, 52, 14, 2,236,122, - 43,200,209, 89, 33, 56,218, 72,179, 21,168,209,104,206, 94,189,122, 85, 37, 20, 10,113,227,198, 13, 4, 4, 4, 96,221,186,117, -206, 74,165,242,124,227, 34, 91, 4,132,170,219,100,245,233,211, 7, 51,103,206,196,222,189,123,225,232,232,136, 9, 19, 38, 52, -100,182, 72, 44,240,211,231,209,209, 95,239,125,248,240,248, 43,173, 90, 13,159,224,227,179,108,218, 75, 47,189,254,246,219,111, - 99,213,170, 85, 56,122,244, 40,122,246,236,137, 41, 83,166,152, 83, 83, 83,247, 52,182,170,106,205,154, 53,179,102,207,158, 93, - 83,211,148,146,146,242,121,147,202,165,188,188,219,209,209,209,177,227,199,143,239, 91, 94, 94, 94,113,237,218,181,123,222,222, -222, 30, 0,154, 55, 86,179, 9, 6,139, 34,132, 8, 1,136, 43, 23, 9, 0,241,254,253,251, 21, 35, 71,142,148, 87,166,137, 42, -151, 6,171,247, 3, 2, 2, 60,238,223,191,159,241,222,123,239, 5,237,221,187, 87, 36, 22,139, 81, 88, 88,136, 47,191,252, 18, - 31,125,244, 17, 40,138, 2, 33, 4, 95,125,245,149,120,242,228,201,193, 15, 31, 62,204,240,242,242,178,165, 73,139, 64, 42,149, - 30, 92,182,108,153,156,166,105,204,155, 55, 47,215,100, 50,205,172, 92, 55,223,193,193,225, 10, 30, 25,238,250,168,213,139, 84, -123, 86, 30,175,113,108,134,215, 76,171,185,142, 16, 50,188, 62, 13, 59,207, 69,109,191, 23, 81,159,217,170,254, 4,234, 87,171, -139, 4,218,187,120,251,162,232,231,131, 16,113, 40,136,216,149, 11,135, 2, 43,225, 54,154, 9,185, 48, 19, 18,216, 88,163, 85, -181,112,185, 92,232,245,122, 88,173, 86,124,244,209, 71,130, 51,103,206, 56,177, 88,172, 31, 26,210,169,110,152,226,227,227,225, -239,239, 79,253,244,211, 79,154,153, 51,103,138,170,126,167,168,168, 8,173, 91,183,166, 78,158, 60,169,254,228,147, 79,164,245, -153, 25,138,162,192,227,241, 48,123,246,108,209,181,107,215, 28,221,220,220,144,144,144,128,252,252,124, 72,165, 82,204,158, 61, - 91,116,245,234, 85,103, 55, 55, 55, 36, 39, 39,163,168,168, 8, 82,169,212,110,163,197,227,241,158,216,134,162, 40,152, 76, 38, -187,140,129, 66,161,216, 23, 21, 21,229,172, 80, 40, 16, 29, 29, 13,139,197, 2,133, 66,129, 89,179,102,137,162,162,162,156, 29, - 28, 28, 16, 27, 27, 11, 66, 8,228,114,185, 93,121, 4, 0,154,166, 17, 27, 27,139,230,205,155,227,252,249,243,234,105,211,166, - 9,171,210, 31, 60,120, 0, 15, 15, 15,156, 63,127, 94, 45,145, 72,246,213,165, 69,211, 52,178,178,178,112,231,206, 29, 36, 36, - 36, 32, 39, 39, 7,185,185,185, 40, 41, 41,129,197, 98, 1, 0,136, 75,138, 35,246, 31,248,233,150, 72, 36, 18, 7,248,180,241, -188, 29,115, 87, 39, 18,137,196, 94,158,158, 62,192,167,172,122, 12,225, 15, 41, 41, 41, 78,147, 39, 79,230,101,103,103,163,160, -160, 0, 28, 14,231, 15,215, 22,159,111, 91, 83, 32,139,197,226, 47, 20, 10, 41,147,201,244, 56, 2,198,231,243,241,238, 62, 61, - 2, 22,226,137,229,165, 13, 58, 16,171, 25, 70,163,209,255, 47,143,102, 1, 20, 40, 99, 27, 80, 84,208,149,132, 50,199,222,195, -199,243,144,120, 10,160,205, 0,139,131,126,237, 61, 56, 71,111,151,105, 64,208, 30, 21,240, 35,164,225,158, 95, 4,160, 0, 83, -107,128,234,124,230,190,197,169,231,232,183,120, 25, 25, 25,224,241,120, 16, 8, 4, 8,234,255, 60,103,255, 45,179, 11, 40,116, -128, 9,190,182,104, 62, 17,118, 20,137, 22, 44, 90,180, 72, 82, 93,243,245,215, 95,151, 40, 20,138, 69,141, 54, 89,101,226,238, -176,144,217,119, 50,244,205,151, 69,100,251, 63,212, 25,124, 65,200,123,128,185,227, 83, 48, 91,253, 4, 2, 65, 34,128, 94, 77, - 50, 89, 50,254,229,239,190,251,222,221,177,217, 35,147, 5, 75, 57,192, 21,193,197,217, 1,187,222, 13,113,116,118, 16,217,107, -182, 2, 53, 26,205,175, 87,174, 92, 81, 9,133, 66, 68, 69, 69,129,199,227, 65, 40, 20,162, 93,187,118,216,177, 99,135,179,163, -163,163,221,102,139,128,212, 26,243, 29, 53,106, 20,233,211,167, 15,102,204,152,129, 61,123,246,192,104, 52, 98,217,178,101, 72, - 73, 73,177, 73, 54, 22,248,105,101,116,244,238, 21,119,238,196,127, 24, 24,232, 55, 74, 34,113,156, 49, 97,130,226,147, 79, 62, - 57,126,236,216,177,175,135, 13, 27,150,123,237,218,181,245, 0, 14,218,121,120, 41, 0, 91,214,174, 93, 59,163,202,184,125,242, -201, 39, 95, 29, 59,118,108,197,176, 97,195,178,174, 93,187,246, 30,128, 45, 77, 41,151,104,154,142,248,225,135, 31,110,137, 68, - 34,177,175,175,175,103, 76, 76,140, 78, 36, 18,137, 61, 61, 61,125,250,246,237,203,106,140,102, 99, 80,171,213, 3,174, 92,185, - 18,128, 71,157,198, 4, 85, 70, 43, 38, 38,198,161,184,184,216, 65, 42,149, 58,184,186,186,202,170,204,214,232,209,163, 29, 56, - 28, 78,189,215,109,105,105,233,177,249,243,231, 43, 70,143, 30, 93,245, 25, 23, 46, 92,192,158, 61,123, 32,145, 72,158,248,238, -136, 17, 35,240,230,155,111, 42,141, 70,227, 15, 54,100,119,210,212,169, 83,125, 53, 26, 13, 22, 44, 88, 80,145,145,145, 49, 0, - 64, 10, 0, 69,104,104,232,103, 49, 49, 49, 93,131,131,131, 15, 0,232, 84,223,189, 87,155, 23,169,110,116,108, 73,107,236,247, -109, 53, 91, 53,146,234, 28, 67,235, 9,163, 53,124,248,240,115,168,163, 39,149, 41, 95, 11, 1,172, 16,177, 41,136,217,213,204, - 22,104,112,138,116,160, 26,209, 75,165,182,135, 33,159,207, 7,155,205,134,209,104,132,173, 19, 85, 87,153, 2,185, 92, 14,169, - 84, 10,131,193, 0,139,197, 2,161, 80, 88,101, 70, 32,151,203,193,229,114,193,229,114, 33, 20, 10,255, 16, 77,170, 25,205,225, -241,120,144, 72, 36,200,202,202, 66, 74, 74, 10,104,154,134, 84, 42,133, 68, 34, 1,159,207, 71,102,102, 38, 50, 51, 51, 65, 8, -129, 68, 34,129, 68, 34,129, 61, 13,174,173, 86,107,173, 15,127,179,217,108, 87, 68,203, 98,177,224,222,189,123, 72, 77, 77,133, - 80, 40,124,188,175, 2,129, 0, 15, 30, 60, 64,118,118, 54,196, 98, 49,228,114, 57, 20, 10,133,205,186, 85,251, 34,147,201, 32, - 18,137, 80, 80, 80, 0,189, 94,255,248,152,202,229,114, 72, 36, 18, 20, 21, 21, 65,167,211,213,187,239, 86,171, 21,153,153,153, -200,201,201, 65, 90, 90, 26,114,115,115, 31, 23, 64,149, 81,163,166, 5,118,138,139,145,151,151,247, 56, 18, 89,215, 98, 11, 52, - 77,163,164,164, 4, 87,174, 92,161,104,154, 70, 97, 97, 33,157,147,157,109,157,158,201,199,209, 79,183,145,239, 79,221, 44,223, -127, 34,202,112,248,215, 59,134, 45,135,111, 27,132, 93, 23, 91,240,119,176, 53, 80, 1, 51, 55, 44,183,212, 44,200, 49,241, 20, -154,192, 80, 32,241, 36,192,226, 0, 66, 37,186,181,109,129,148, 2,171, 36, 78,107, 20,130,194, 32,108,241, 81,218,164,105,229, - 14,204, 41, 49, 11,146, 77,206,114,255,246,157,160,213,106, 33, 16, 8, 32, 16, 8,208,185,103, 40, 18,243,172,226,187, 25, 6, - 49, 8,194,108,210,252,127, 90, 74,165,210,238,189,122,245,162,170,107, 14, 29, 58, 20, 20, 69,181, 3,224,103, 87, 33,183,169, - 37, 31, 38,113, 55,112,200,236,187, 89,122,183,163, 49,229, 62,207,141,122,222,113,227, 47, 58,255,123,217, 21,222, 32,230, 57, - 32,166, 78, 77, 48, 91,125,101, 50,217,241,205,155, 55,123, 11,133,194,147, 0,122, 55, 70, 68, 42, 98,111, 95, 48, 99,188,187, -178,202,100,153,245, 0, 71, 4,112, 69, 0, 71, 4, 23,181, 10, 75,223, 28,232, 40, 22,114, 15,219, 97, 88,247,111,217,178,197, -185,166,201,170, 90,130,130,130,176,112,225, 66,103, 71, 71,199,125,182,232,173, 89,189,138, 20, 22, 21, 1, 4, 40, 46, 46,197, -154,213,171, 10,170,214,141, 30, 61,154,244,238,221, 27, 51,102,204,192,138, 21, 43,112,226,196, 9,116,235,214, 13, 83,166, 76, - 65,112,112,112, 67,210, 97, 10,133, 98,111,104,104,232,149, 76,153,236,205,172, 78,157,248,191, 42, 20, 69, 3,138,138, 20, 94, - 49, 49, 38, 95,224, 54,128,173,233,233,233,131,237, 48, 89, 47,201,229,242,168, 1, 3, 6,152,100, 50, 89,234,186,117,235,166, -207,156, 57, 19,171, 86,173,194,252,249,243,191, 4,240, 6,128,143,211,211,211,221,234, 51, 89,127, 86,185,244,103,149,117, 86, -171, 53,237,224,193,131,193, 38,147,201,163,178,122, 80, 80, 88, 88, 40,207,207,207,151,153, 76, 38, 9, 77,211, 18, 7, 7, 7, - 41, 0,241,196,137, 19, 57,119,239,222,245,183, 88, 44, 25,245,105,102,103,103,191, 60,111,222,188,220,220,220, 92, 0, 64,187, -118,237, 80, 88, 88,136,185,115,231,226,157,119, 30,117, 8,238,216,177, 35, 8, 33,208,106,181, 88,179,102,141, 54, 59, 59,251, - 85, 27,178,219,170, 77,155, 54,136,137,137,193,189,123,247,126, 1, 64,227, 81, 59,214,162,155, 55,111,222,202,201,201,193,190, -125,251,120,238,238,238,199, 80,199, 16, 47,245,121,145,198, 64, 81, 84, 68, 99,182,171,138, 92,213, 22, 17,171,131,250, 35, 90, -195,135, 15,167,170,191, 62, 17, 49,162, 16,157, 26,121, 30,142,129,157,158,136,102,137,217, 20, 68,114, 5, 18,211, 82,192, 3, -117,231,105, 25,173,130,130, 2, 76,159, 62,221,240,242,203, 47,231,209, 52,253,188,173,166, 64,161, 80, 64,161, 80,224,238,221, -187,100,204,152, 49,218,117,235,214, 25,170, 27,173,248,248,120, 18, 22, 22,166, 91,180,104, 81,105,125, 70,171, 42,162,181,114, -229, 74, 67,191,126,253,114,238,220,185, 67,170,204,148, 84, 42,197,154, 53,107, 12, 33, 33, 33,218,235,215,175,147,170, 52,123, - 34, 90, 44, 22,235,177,209,170,190, 13,139,197, 2, 77,211,118, 25,173,178,178,178,151,135, 13, 27,166,141,141,141, 37, 85,251, -169, 80, 40,176,110,221, 58,195,192,129, 3,181,119,238,220, 33, 85,105,114,185,220,102, 51, 88,245,251, 50,153, 12,114,185, 28, -119,239,222, 37, 97, 97, 97,218, 77,155, 54,149, 87, 79,191,119,239, 30, 25, 49, 98,132,182,164,164,228,229,250,204, 75, 85,117, -158,197, 98, 65,121,121, 57,114,115,115,145,150,150,246, 56,156,110,144,200, 7,143,127,241,185, 14, 6,131, 65,127, 55,254,126, -106,187,182, 1,106,131,193,160, 79, 73, 77,141, 7, 62,165,235,209,126, 62, 48, 48, 48,111,250,244,233,134,130,130,130, 38, 27, - 45, 62,159, 31,203,225,112, 72,239,222,189,137,209,104, 36,105,105,105,230,220,130, 2,139,223,242,229,228,206,187,239, 82,162, -200, 72,129, 84, 42,165, 42, 53, 89, 9, 9, 9,180, 72, 36,138,253,203,141, 22,139,118, 1, 69,122,253,126,191,212, 97,224,115, -227,248, 84,246, 53,192, 84, 10, 8,148,128, 64, 9,142,196, 9, 67,122,119,100,239,190, 82,236, 2, 66,247, 0, 79,224,209,160, - 38,151,104, 0,186,247,207,241,229,202, 94, 99,103,241,243,243,243,193,102,179, 31,155, 34,177, 68,130, 1,163, 38,178,190,186, - 86,225, 2,144,158,160,216, 30,118,220,235, 31, 44, 88,176,128, 87, 80, 80, 0, 22,139,245,255,154, 98, 49,166, 77,155, 38,144, -203,229,243,109, 46,252, 14,250,243,192, 21,116, 3,200, 59,113,217,229,110,199,110, 27,124,231,172,220, 37, 10,236, 24,140,169, -253,212,162,149, 17,186,192, 91,105,134, 22,128,245, 93, 88,140,157, 27, 97,182,122,203,100,178,136,200,200, 72,241,208,161, 67, -177,102,205, 26,137, 72, 36, 58,217,152,130,191,172,212, 58,115,201,166,111,180,209,235, 7, 1,166,178, 71, 6,171,218,162, 43, -165,177,112,215,217, 34,179,153,140,183, 85,211, 96, 48, 76,122,227,141, 55,242, 14, 31, 62,252, 7,147, 37, 20, 10,145,148,148, -132,101,203,150,229,231,231,231, 55,248, 80, 92,183,118, 77, 84,204,173,223,240,213,151, 75, 0, 16,108, 94,247, 22, 46,255,254, -157, 67,191,190,125, 72,243,230,205, 73,112,112, 48,166, 79,159,142,165, 75,151, 34, 46, 46, 14, 42,149, 10,111,189,245, 22,250, -246,237,139,181,107,215,214, 87, 72,133,205,156, 57,115, 89,122,122,186,239,207, 63,255,204,201,201,201, 81,175,221,185,179,232, - 80, 81, 81,254,138,152,152,184,143,219,182,109,243, 97,251,246,175,214, 51,244, 67,173, 38,107,198,140, 25,251,211,211,211,131, -126,249,229, 23,110, 78, 78,142,199,140, 25, 51,176,122,245,106,204,159, 63,127, 7,128,169,176,173,195,139,205,229, 18,155,205, - 30,252,252,243,207,119, 48, 24, 12,250,184,184,184,212,182,109,219,170, 13, 6,131, 62, 53, 53, 53,254,220,185,115,116, 99, 52, - 27, 67, 94, 94,222,195,125,251,246,197,207,154, 53,125,217,169,123, 0, 0, 32, 0, 73, 68, 65, 84, 43, 40, 61, 61,221, 31,128, - 83, 73, 73,137,164,164,164, 68, 96, 52, 26, 69, 74,165, 82,217,177, 99, 71,213,148, 41, 83,164, 55,111,222,244, 79, 79, 79, 47, -173,140, 34,213,137,201,100,138, 43, 40, 40, 24, 62,104,208,160,194,130,130, 2,180,111,223, 30,207, 61,247, 28, 92, 92, 92,224, -230,230,134,145, 35, 71,194,199,199, 7,121,121,121, 24, 63,126,124,126, 78, 78,206, 32, 0, 9, 54,100,247, 97,118,118, 54,122, -244,232,129, 37, 75,150, 12,127,225,133, 23,238,244,238,221,187,184,109,219,182,122, 15, 15, 15,191,141, 27, 55,194,221,221, 29, - 7, 15, 30,116, 21, 8, 4,251,106, 49, 89,117,122, 17, 0, 57,149,134,199, 88,227, 53,167,129,117,182,110, 91,235,123, 27,190, - 87,211,108, 85, 95,254, 80,117, 88,251, 9, 1, 22,238, 57,184,187,156,239,217, 26, 10,223, 14, 16, 11,133, 16,241,249, 16, 41, -157, 80, 65,211,216,153,148,173, 47, 35,100,190,189, 23, 79,205, 7, 33, 69, 81,248,226,139, 47, 44,221,187,119, 47, 63,123,246, -236,102,131,193,224,137, 71,163,202,218,108, 10, 54,109,218,164,159, 61,123,246, 45,157, 78,215, 65, 40, 20, 26,171,210, 55,111, -222,172,159, 56,113, 98, 76,122,122,122,144, 88, 44,214,215,213, 62,171,186,209, 18, 8, 4, 21, 58,157, 46,248,245,215, 95,143, -221,186,117,107,153, 88, 44,134, 68, 34,129, 64, 32, 48,234,116,186, 14,211,167, 79,191,181,122,245,106,189, 72, 36,130, 68, 34, -177,171, 90,142, 16,242, 7, 67, 85, 61,221, 86, 44, 22,203, 89,157, 78,215, 97,246,236,217, 55, 55,110,220, 88, 86,101,128,170, -231,113,237,218,181,122,169, 84,106, 87, 68,171,234,123, 18,137, 4, 27, 54,108,208,207,154, 53,235,150, 78,167,235, 32, 16, 8, -140,213,210,203,102,206,156,121, 83,167,211,117,176, 88, 44,103,235,249, 55,102, 45, 46, 46, 6,135,195, 65, 76, 76, 76, 5,143, -199, 3,139,197,194,131, 7, 15, 30, 23, 62,142,142,142, 1, 29,218,181,245,251,102,255,193,115, 34,158, 64,208, 61,184,179,127, - 66,114, 74, 58, 33, 84,114, 3, 89, 61, 98, 48, 24, 60,207,158, 61,187,185,123,247,238,229, 95,124,241,133,165,174,200,150, 45, - 84, 84, 84,156,187,113,227,134, 89, 40, 20, 82, 89, 89, 89, 22, 54,155, 13,171,213, 74, 42,130,131, 43,218,109,220, 72,238,126, -248, 33, 37,151, 72, 56, 60, 30, 15, 98,177,152, 58,117,234,148, 81,175,215,159,251,235,141, 22,196,160, 32,186,175,171,144, 9, - 89, 22, 10,241, 71, 30,153, 44,161, 3, 32, 84, 2, 66, 37,220,221, 61,112, 45, 73, 47, 3, 11,124, 88,109, 24, 67,140, 16, 9, - 40,136, 99,180,144,113,249, 34, 42, 59, 59,251,177, 33,170, 90,188, 91,251,227, 70, 74,169, 20, 20, 17,128, 13,123,134, 32, 25, -238,228,228,196,201,202,202,250,131,102, 64, 64, 0,219,108, 54,219, 62,180, 75,166,213, 21,160,103,196,103,151,187,254,120,171, -204,247,221, 21, 95,137, 68,214, 66, 32,114, 19, 2, 91,186,225,221,177, 29,249,159, 28,203, 9,188,158,172,111, 9, 54,153, 10, -186,212,217,142,124,246,146,201,100, 39,175, 95,191, 46,150,201,100, 72, 72, 72, 64,112,112, 48,194,195,195,197, 98,177,248, 4, - 0,187,218,227, 93,213, 34,165,180,196,218,253,131,131,169,217,209, 89,150, 39, 76, 86, 78, 25,193, 27,159, 31, 43, 44, 40, 46, -127,254, 74, 90,221,247, 79, 45,220, 44, 44, 44, 12,155, 63,127,126, 94, 78, 78,206, 19, 38, 43, 37, 37,165,234,161,216, 15, 64, -131,127,126,255,247,219,233,160,229, 75,103,227,122,228, 29, 12, 25,254, 14,110, 68, 63,196,199,243, 70,193, 65, 46,194,217,179, -103, 49,122,244,104, 44, 89,178, 4, 15, 30, 60,192,247,223,127, 79,133,135,135, 83, 87,174, 92,161, 62,255,252,115,170,129, 38, - 13, 19, 86,172, 88,129,235,215,175, 99,232,208,161, 56,127,254, 60,242,243,243,241,221,201,147,247,247,221,191,255,113, 85,155, -173, 58,134,126,168, 21,185, 92, 62,103,197,138, 21,136,140,140,124,172,153,151,151,135, 21, 43, 86,164, 3,120,203, 30,147,101, - 79,185,212,190,125,123,191,253,251,247,159, 19, 10,133,130,224,224, 96,255,164,164,164,116, 0,201,141,208, 44,110, 74, 77, 85, -110,110,238,165,240,240,240, 43,253,251,247, 23, 79,154, 52,201,249,232,209,163, 78,122,189,222, 77, 32, 16,168,141, 70, 35,255, -222,189,123,236, 67,135, 14,185,220,189,123, 55,169,188,188,252,154, 45,199, 67,167,211, 93,139,139,139, 27,212,190,125,251,123, -155, 55,111, 78,119,117,117,165,167, 76,153,130, 55,222,120, 3,206,206,206,214, 13, 27, 54,164,246,238,221, 59,230,225,195,135, -161,122,189,254,182,141,121,253,122,249,242,229, 23,247,239,223,143,231,158,123, 14,159,127,254, 57,190,251,238, 59,252,246,219, -111,162,223,127,255,157, 31, 30, 30, 14, 30,143,135,110,221,186, 33, 44, 44,108, 64,101,117,167,173,207,165,235, 20, 69, 69, 80, - 20,245, 75,141,215,235,245,173,179, 99,219,186,222,215,251,189, 26,217, 12,175,177,216,206,132,150,248,116, 90, 91,153,254,210, - 43,221, 72,246,148, 94, 68, 59,206,159, 92,232,235, 72, 94,111, 69,149, 77,106,228,240, 14, 6,131,225,241,114,248,240, 97,226, -226,226, 82, 38,147,201,236, 30,222,193,197,197, 69, 91, 92, 92, 76,186,116,233,146,239,236,236,252,120, 40, 2, 87, 87, 87,109, - 89, 89, 25,233,214,173, 91,190, 90,173,126, 60,188,131,135,135, 71, 26, 33,132,120,121,121,101,214,165,103,177, 88,136,139,139, - 75, 85, 15, 61,174,163,163,227,182,174, 93,187,230,107,181, 90,226,234,234,250,120,232, 4,103,103,231, 53,193,193,193, 53,211, - 27,202,111, 90,122,122, 58, 73, 79, 79, 39,205,154, 53,203,172,158,158,146,146, 66, 82, 82, 82,136,135,135,135,221,195, 59, 56, - 59, 59,175,174, 37, 47,141,202,163,167,167,167,214, 96, 48,144, 30, 61,122, 60,113, 76, 61, 61, 61,181,229,229,229, 85,233, 54, - 13,239, 32, 18,137,166, 10,133,194, 76,161, 80,152, 41, 16, 8,150, 53,111,222, 92,119,224,192, 1,178, 97,195,134,170, 46,233, -112, 14, 24,209,189,117,143, 87, 63,118, 14, 24, 57,167, 41,195, 59,200,100,178, 95, 93, 92, 92,202, 14, 31, 62,252,196,245,101, - 48, 24,108, 30,222, 65, 36, 18,165,151,150,150,210, 90,173,214,124,241,226, 69,125,100,100,164, 62, 38, 38, 70,159,148,148,100, -200,211,233, 76, 90,173,214, 80, 84, 84, 84,113,235,214,173, 10,177,248,239, 25,222,129,132,251,180, 38,219,252,142, 61, 92,226, -125,119,118, 31,113,249,237,165, 29, 8,249, 97, 52, 33, 39,222, 32,228,236, 7,228,218,142, 41,164,135,183,192,122,113,110,179, -120,178,221,247, 71, 91,134,100, 32,225,237, 90,147,109,126, 39,238, 47,246,190, 59,169,183, 91,249,206,173, 27,200,213,171, 87, - 73, 76, 76, 12, 73, 72, 72, 32, 39,142, 28, 32, 61, 90,138, 31,105,110,243, 59,102,231, 48, 15, 61, 5, 2, 65,233,186,117,235, -200,149, 43, 87, 30,107, 30, 59,118,140,136,197, 98, 61, 96, 91,175,101, 2, 80,100, 91,192, 40,203, 86,223,223, 63, 25, 40, 45, -201, 59,254, 1, 33,183,119, 19, 18, 30, 72,200,215, 93, 9, 57, 48,140,144,159, 94, 37, 87, 54,140, 37, 61,189,121,102,178,221, -247, 60,217, 17, 96,115, 99,123, 46,151, 91,124,248,240, 97,146,153,153, 73,206,159, 63, 79, 34, 35, 35, 73,108,108, 44, 73, 77, - 77, 37, 17, 17, 17,132,203,229,150,163, 17,211,150,117,213,192, 43,180, 13, 47,235,214,202,158,132, 28, 29, 79,114,246, 77, 32, -195,219,202,242,187, 53,107,210,120,116, 29,157,156,156,114, 35, 34, 34, 72, 82, 82, 18, 57,119,238, 28, 81,171,213,185, 0,108, -110, 47, 59,124, 72,111, 66,140,183, 72, 72,159,182,164,125,251,182,164,111,207, 54, 36,227,225, 38, 18,220,169, 57,217,182,109, - 27,209,106,181,164,121,243,230,196,222,140,133,134,134, 94, 37,132, 68, 13, 29, 58, 52, 10,192,169,208,208,208,168,196,196,196, -168,224,224,224, 43,168,127,232,135, 58, 25, 48, 96,128,137, 16, 66,134, 14, 29, 74, 0,100,134,134,134,146,196,196, 68, 18, 28, - 28,108,108,204,193,179,165, 92, 10, 10, 10,234,222,191,127,255,143,131,130,130,230,216, 50,188, 67, 3,154, 79,107, 16,106, 54, - 30, 13,254, 25, 0,160,115,229,226, 95,153,198,110,130,230,171, 92, 46,119,167,163,163,227,111, 74,165,242, 44,155,205, 14, 7, -240, 10, 26, 55,190, 25,171, 50,194,120,198,217,217,249, 65,251,246,237, 13,131, 6, 13, 34, 67,134, 12, 33, 51,102,204, 32, 52, - 77,147, 3, 7, 14,144, 37, 75,150,144, 86, 78, 78,150, 13, 64,238,118, 96, 50, 24, 30, 13, 88, 58,185, 37,117,238,229, 22, 40, - 25,223, 2,165,175,181,162,108, 25,176, 52,180, 46,163, 69,211, 52,137,143,143, 39, 33, 33, 33,101, 18,137, 36, 3,182, 15, 88, -250,132,166, 74,165,138, 84,171,213,127, 24, 68,179, 90,250, 19, 3,150,170,213,234, 75,174,174,174, 90,103,103,231, 27,181,105, -170, 84,170, 72, 87, 87, 87,173, 74,165,122, 98,112, 79, 54,155, 61, 84,165, 82,101,212, 76,231,112, 56,253,213,106,117, 90,205, -244, 58,246, 29, 46, 46, 46,105,153,153,153, 36, 39, 39,135,120,122,122,102,214, 52, 96,217,217,217, 79, 24, 48, 91, 52, 27,202, - 75, 61,121,172, 85,211,134, 99,218,152,243, 94,133,143,187,187,187,110,237,218,181, 68, 42,149, 62,209,229,217,183,207,107, 11, -174,222, 47, 45,126, 99,222,182, 3,181, 12, 88,106,235,224,160,131, 36, 18, 73, 70, 72, 72, 72, 89,124,124, 60,161,105,154,208, - 52, 93,151,209,170, 77,115,112,231,206,157,243,114,115,115,173, 37, 37, 37,150,180,180,180,138,196,196, 68,195,210,165, 75, 77, - 57, 57, 57,229,165,165,165,198,232,232,232, 10, 87, 87,215, 28, 0,131,237, 61, 71,141, 36,180,102,245, 25,217,225,223,147,108, -247,143,136, 93,228,117,239,213,174,146,138,168,181, 67, 9, 57,251, 1,185,178,237, 13,210,221,155,255,200, 16,237,240, 59, 73, -190,242,233, 67, 54,181,228,219,164,185,179, 85,111,178,195,239,228,221,133, 94,247, 70,119,114, 54,238,223,189,131, 60,120,240, -128, 28, 59,180,143,116,107, 81,105,178,182,251,159, 33,219,252, 67,108,209,172,205,108,237,218,181,139, 60,120,240,128,252,248, -227,143,182,154,172,208,218,140,214, 71,161,210,194, 55,186, 10, 43,198,119,228, 27, 71, 6,242, 76, 97,173,121,150, 30, 94, 28, -107, 7, 87, 22,237,239, 12, 18,230, 43,170, 32,219,125,207,147,237,254,131,108,205, 39,159,207, 79, 69,181, 49,117,106, 46, 2, -129, 32,167, 30,163, 21,218,160,217,242, 17,100,253,186,164, 63,121,174,189, 44,207, 70,147,213,208,181,212, 81,165, 82,229,126, -253,245,215, 68,163,209,228,216,104,178, 30,107,142, 24, 30, 70, 82, 30,158, 32, 63, 30, 88, 65, 66,250,248,147,189,187,102,147, -171,231, 23,145, 97, 67, 66, 72,104,104, 40,201,205,205, 37,253,251,247, 39,246,230, 83,161, 80,236, 45, 45, 45,141, 58,125,250, -116, 84,104,104,104,212,222,189,123,163, 46, 92,184, 16, 37, 22,139,247, 86, 5, 39,106,154, 45,255, 63,150,255,161, 53, 34, 90, - 81, 37, 37, 37,228,244,233,211, 36, 52, 52,148,236,221,187,151, 92,184,112,129,136,197,226,168,198,222, 71,182,150, 75, 3, 7, - 14, 92,144,148,148, 84,188,112,225,194, 3,181, 12, 88,106,171,230,131,167,148,207,167, 82,134,252, 13,154, 50,145, 72, 20,117, -235,214, 45, 82, 80, 80, 64,218,106, 52,100, 57,155, 77,210,121, 60,146,201,227,145,109, 64,254,127,192, 38, 77,169,171,234,240, -207,166, 86,163, 85, 94, 94, 78,230,206,157,107, 20, 10,133,122, 30,143,103,239, 20, 60,255,234,139, 80,165, 82, 93,210,104, 52, - 90,141, 70,243,132,217,171,158,174, 82,169,110,252,199,111, 64, 31, 30,143,151,194,229,114,159,156,130, 39, 96, 68,247, 86, 61, - 39,205,215, 4,142, 24,210,196,124,242,120, 60,222, 71, 66,161, 80, 63,119,238, 92, 99,105,105,169, 61, 70, 11, 0, 6,138,197, -226,140, 61,123,246, 24,238,223,191,111,206,207,207,183, 92,189,122,213, 28, 25, 25,105,252,244,211, 79, 75,196, 98,113, 6,234, - 30,150,224, 47, 57,158,100, 83, 75,126,149,217,186, 61,223, 43,246,185,182, 98, 83,248,123, 97,164,123,243, 26, 38,171,238,145, -220,107,215,172, 52, 91, 55, 63,241,140, 13,241,145, 90, 86,204,127,151,116,107, 33,122,210,100,217,161, 89,211,108,137,197,226, -146, 69,139, 22,217, 19,201,122,210, 16,238,244,245, 36, 59,252,246, 62, 50, 81, 13, 44,219,124,191, 36, 95,248,122,254, 83,238, -163,174, 26,120, 13,240, 17,220,177, 35,146,101, 75, 62, 59, 42,149,202,123,118, 68,178, 30,107,126,241,197,102, 50, 97,220, 64, -242,240,222, 97, 82,154,119,130,220,184,188,142,140, 25, 17, 68,186,117, 11, 38, 59,118,236, 32,113,113,113,164, 75,151, 46,164, - 17,249, 12,155, 54,109, 90, 84, 98, 98, 98, 84, 66, 66, 66,212,133, 11, 23,162, 70,141, 26, 21, 5, 32,172,122, 77, 80,149,217, - 50,141, 25, 83,209,145,197,122,183, 1,205,151,166, 77,155, 70, 18, 19, 19, 73, 66, 66, 2,185,112,225, 2, 25, 53,106, 20,129, -125,211,247, 52,170, 92, 10, 10, 10,234, 30, 18, 18, 50,191, 83,167, 78, 67,158,150,230, 51,104,180, 36,163, 71,143,166,173, 86, - 43, 25, 50,100,136,117, 35, 80, 24, 78, 81,218,112,138,210,238, 0,114,254,235, 17,173, 63,123,194,207, 80, 0,191, 84, 79, 16, - 10,133,218,242,242,114,103,169, 84,122,164,180,180,116, 22, 30,117,139,108,146,230,159,145, 79, 70,243, 63,161,233, 42,149, 74, - 55,151,150,150,142, 18, 10,133, 57,229,229,229, 26, 59, 52, 29, 4, 2,193,187, 66,161, 48, 68,175,215,251, 0,128, 68, 34,137, -175,168,168,248,205, 96, 48,172, 7, 80,248,119,239, 59,217,212,146, 15, 62,191, 51, 8, 62,140, 74, 45,107,177,226,116,190,215, -123,253,149,169, 61, 90, 73,146,192,165, 63, 7, 85,113,141,154,156, 82, 97,183,166,136, 10,134,149,251,225,181,100,125,243,207, -127, 46,241,154, 19, 34, 77,237,209, 82,154, 10,130,207, 33,208, 95,182, 87,179,166,217,146, 72, 36,123,202,202,202,222, 4,240, -155,189,251, 78, 14,250,243, 80,102,118,135,153,221, 22,164,158, 41,124, 8,209,131,197,142, 65, 54,180,212,167,247, 76,204,125, - 84,187,230,214,173, 91,200, 47, 63,159, 64,133, 62, 31, 89,186, 98, 76,120,229, 53,116,236, 24, 4,149, 74,133,229,203,151,163, -117,235,214, 88,178,100, 9,213,136,124,134, 73,165,210, 9,126,126,126, 45,239,222,189,155,160,215,235,191, 5,112,166,230,243, -199, 15, 8, 17,115, 56, 29, 12, 22,203,249,123, 64,100, 3,154, 47, 73,165,210, 57,126,126,126,129,119,239,222,189,163,215,235, -215, 2,248,142, 41,235,254, 29,154, 44, 22,107,189,151,151,215,152,164,164,164, 15, 1,236,199, 51,196, 95,110,180, 24, 77, 70, -243, 95,168, 89,117,159,144,127, 90, 62,255,223,108,209,179, 64,161, 5, 8,149, 14, 30,189,161, 1,147,213,176,166,136, 10,134, -133,243, 14, 40, 52, 3, 65, 54, 8,107,125, 3, 38,235,175, 53,153, 0,133, 79,235, 41,191, 62, 5,161,234, 62, 95,204, 53, 95, - 11, 11, 22, 44, 32,167, 78,157,130, 88, 44,134,193, 96,192,160, 65,131,240,217,103,159, 81, 76, 25,194,104,254,133,154,255, 73, - 56,204, 33, 96, 96,104, 16,242, 79,205, 24,245,118,130,145, 28,244,191,142, 92,246, 92,176,208, 2,176,164,160,204,146, 77,189, -157, 98,108,162,230, 85,228, 82,179,193,134, 15,248,150,135, 40, 53,102, 83,111, 53, 94,243, 79,248,135, 72,240,233, 63,247,188, -252, 27,169,105,170, 34, 35, 35,153,131,194,192, 96, 59, 83,240,100, 79,195,199,159, 25,163,197,192,240, 47,135,122,225,158, 9, - 64,122,229,242,143,213,100, 96, 96, 96,120, 6, 13, 23, 40,212,221,160,205,158,144, 96, 99, 26,218,253,194,104, 54, 74,147, 13, - 64, 1,192, 1,143,198, 32,169,234,210,219,208, 48, 27, 67, 0,152,153,227,201,104, 50,154,140, 38,163,201,104,254,205,154, 13, -105,255, 27,171, 36,107,235,101, 24,254, 87,252,112, 40,163,249, 84, 25,244,159,217,119,130, 14, 32,216, 80,185,116, 96,206, 59, -163,201,104, 50,154,140,230, 51,175,249,159,132,169, 58,252,119, 33,252,215,230,156, 16, 87, 0, 85,131, 92,198,160,156,242,131, - 16,179, 1, 0, 37,184, 65, 8,238, 3,104, 91,185, 62,141,162,236,238,141,202,192,192,192,192,192,240,119, 17, 4,224, 6, 0, - 87, 0,195, 0, 68,160,114, 84,133,191,213,104,137,156,218,184,130,195,106, 79,209,196, 15, 0, 8,139,138,133,133,142, 54,228, -221,111,242, 67, 86,234,230,227, 72,192, 63, 72,193,248, 66,105,102,124,147, 7, 67,107,235, 35, 31,163, 81,201, 38,100,231, 21, -237,185, 19, 87,122,212,158,109, 21, 10, 47,133,208, 81, 57,182,194,100,110,203,231,241, 82, 77,133,197,225, 5, 5, 9, 37,141, -200,134, 99,125, 43, 63,253,148, 80,199,179,110, 80, 60,177,137,229, 36,231, 81,165, 40, 37,165, 89, 82,218,187, 48,137, 28, 58, -244, 2,177,247,220, 80, 44,244,147,200,100,157, 4, 66,113,176, 88,166,108, 67, 19, 32, 95,155,145,108, 52, 91, 46, 88,141,250, - 40, 66,227,127,118,156,171,137, 0, 86, 0, 0,250,247,255, 5,109, 33,199,250,170,140,227,173,254,183, 49,241,236, 89, 84, 13, - 46,251, 17,128,149,118,100,215, 1,128, 23,128,162,182,109,219,234, 99, 98, 98,114,158,214, 53,218,148,243,206,192,192,192,192, -240,204, 25,173, 97,120, 84,101,216,112, 99,120,175,128, 94,215,133, 66,145, 55, 0,208,132,128, 38, 64, 89,113, 97, 84,118, 66, -228, 32, 0, 80, 53, 15, 58,205, 21,202, 59,209,228,209,122, 43, 13, 88, 76,229, 73,197, 41, 87,187,216,146, 35,137,179,207,232, -254,161, 3,198, 12, 31, 62,204,183, 93,219,118,173, 0,224,118,204,237,135,199,143, 71,196,157,253,133, 58, 92,150, 19,255, 99, -147, 2, 40, 16,126,214,185,115,199, 94,145,145, 55,150, 0,152,209,212, 35,232,228, 36,157,117,230,135,185,125, 6,140, 89, 35, - 1,236,123,224, 10, 29,149, 99, 71, 62, 55,184,227,251,111, 79, 99,189, 49,119,185,247,245,139,255, 91, 37,117, 13, 44, 36,180, -249, 76,153,118,220,239,245, 77,156, 92,211, 63,214,101,176,190,205, 63,197,218,240,117,119,165, 33,255,225, 56, 66, 91,199, 81, - 20, 5, 54, 95,124,200,185,101,175, 3, 14,253,222, 43, 0, 96,115,143, 49,185,107, 64,168,218,213,227,240,184,215,222, 21,138, - 21, 26, 14,216, 60, 0, 20, 50,147,239,225,236,119, 43,148,239, 44,222, 21,116, 49, 58,197,242,235, 15, 91,202, 41, 30,119,140, - 62,235,110,195,245,233, 41, 41, 14,240,242,122,244,254,203, 47, 23,192,187,197,109, 60,106,107, 6,172, 67,209, 55,153,104, 11, - 60, 50, 90,201,201, 80,218,154,215, 65, 67, 95, 28,152,154,114,127, 73,102, 70,234, 81, 22,135, 67, 23, 20,149,189,231,228,164, - 46,205,203,211,133,160,178, 33,183, 74,165,146,228,230,230,154, 0,152,254,202,243,206,192,192,192,192,240,204, 16, 81,105,174, - 34,106,174,168,211,104, 9,133, 34,239, 43,255, 59,238,248,227,133, 52, 0, 64,104,144, 11, 62, 94,186, 57,108,239,166,200, 56, - 0,232,222,127,184,207,146,143,222,198,165, 59, 58, 16, 66,208,177,181, 19,134,140,124,193, 54,227,161,241,239, 50,118,236,243, - 47,207,157, 59,103,196,131, 7, 15,146,247,239,223,255, 59, 0,244,238,211,167,245,242,229,203, 95, 92,163,116, 20,124,127,232, -135,140,114,237,189,235,141,217, 91,161, 91, 75,119,223, 54, 45, 38,124,255,213,102, 86,191, 65,207,143, 79, 70,217,138,242,204, -132, 12, 91,182, 85,169, 84,179,185, 92,174, 2,120, 52, 27,123, 21, 38, 19,113, 1, 0,139,149,150, 41,221,124, 75,216, 60,161, - 85, 32,224,221, 45, 41, 45,221, 83,156,113,111,103,125,154, 21,102,115,224, 59,111, 77,102,221, 76,200,131,119, 96,111,246,134, - 21,159,128,182,154,149,239,126,180,116,108,228,213,239, 81,166,197, 57, 27,119,141, 91, 51,193,221,189, 27,251,179, 21,210,129, - 20,133, 87,189,186,191, 54,106,201,238, 67,220,206,173,229,168, 48,211, 56, 25,149,215,125,219,250,207, 86, 95,220, 54,236, 39, - 0, 59, 0,252, 10,160, 65, 83,231,232,228,248,237,236,249,235,165,101,198,255,239,237, 93,105,178,240,229,158,131,184,149, 70, -195,207,215,143,227, 50,123,149,116,199,210, 41,187,245,143,230,217,170,205,238,182, 4,208, 19,136,117,196,212,197, 3,240,205, -202,101, 80,171,203, 32,147,165,130,130, 6, 64,155,202, 47,222,231,231, 34, 13,192, 71, 58, 29, 36, 75,166, 97,208, 77, 96, 94, - 7, 64, 7,224, 34, 85,223,172,241,196,178,226,157, 15, 87,183,117,110,209, 54, 56, 38, 46, 3, 87, 34,182, 32, 39, 59,197,161, -160, 32,119, 79,179,214, 29,136, 68,225, 28, 84,152,157, 8,185, 3, 18, 41, 98, 29, 89, 84, 84,144, 13,192, 98,203,193,118,113, -113, 89,228,238,217,181, 79,213,121,119,244,234, 88, 80,181,142,197,230,124,155,155,120,253,109,166,108, 97, 96, 96, 96, 96,192, -163,106,194,234,141,223,195, 27, 52, 90, 0, 32, 21,113, 16,151,152, 13, 0,112, 16, 1,179,166, 78, 66, 94,110,142,143,209, 66, -227,181, 73,175,224, 70,108, 22,226,146,114, 64, 8,129,143,135,205,147,112,131, 13,186,243,107,175,191,214,247,244,153, 51,215, - 22,204, 95,240, 13, 69,225, 50, 0,236, 8,255,178,251,194, 69, 11,223,124,101,210, 43, 3, 15, 29, 58,116, 7, 64,163,140, 22, -135,146,109, 94,189,114, 25, 63, 61,183,188,124,246,220, 15,233, 57,239,205,222, 0,224,121,155,156, 12,151,171, 72, 79, 79,151, -178, 88, 79,206,165,249,249,178, 15,207, 15, 28,179,230,126,114,106,225,205,211,199,142,117, 9, 8, 8, 64,122, 70,118,207, 85, - 27,183,119, 56,121, 90, 52,185,164,216, 48, 70,159,123,175,214, 73,155, 5, 92,238,157,197,171,182,117,164, 29, 90,179, 62,126, -115, 40, 2, 91,185, 33, 67, 87,136, 62,131, 70,112,162,174, 95, 15, 3,108, 54, 90, 53, 7, 15, 28,107,164,117, 29,150,239,185, - 58, 96, 84, 15,183,206, 44, 22, 27,165, 6, 51,114,138, 42, 96,165,129,222,254, 10, 12,222,187,145,147, 95,102, 30,189,244,135, -180,209,151, 55, 13,215,150, 23,101,206, 4,112,184,254,159, 33,142, 30,106, 57,226,210, 74,106, 53, 89,101,229,143,124, 10,143, -109, 5, 5,226, 84,143, 80, 79, 0, 95, 3,126,192,207, 51, 95,134, 70,179, 95,163,209,140, 85,107, 92,162,124, 94,158, 76,185, -123,251,203, 74, 13, 38,220,189,115,187, 36,160, 83, 12, 41,201,215,189, 91, 94, 86,112,232, 30, 16,227, 7, 28,168,212,152,140, -122,140,214,253,251,247, 10, 39,191, 20,194,185,249,176, 4, 9, 18, 9, 2,123,140, 66, 81, 78, 58,119,240,228,197, 93, 13, 37, - 69, 66, 39,141, 23,238, 93, 58,136,156,212, 7, 29,203,141, 21, 63, 58,122,118, 15,249,233,235,121,198,134,162, 91, 46, 46, 46, -139,166, 78,157,250,105, 78, 86,236,103, 3,199,172,105,159,156, 90,120,243,229,197,191,117,153, 62,186, 53, 78, 70, 23, 99,217, -235, 33, 19, 0, 48, 70,139,129,129,129,129, 1,168,167,215, 33, 11, 0,142, 31, 63, 94,107,251, 29,171,149, 32, 46, 41, 11,113, - 73, 89,184, 22,155, 3, 19,225, 98,195,170,197, 88,187, 98, 17,242, 13, 44,252,120, 41, 13,241, 73,217,136, 79,202, 70,110, 65, -105,109, 18, 79, 84, 41,173, 89, 33, 10, 90,191, 94,190, 58,172,143,164,159,163, 82,169,188,127,231,155,178,133,239,105,253, 23, -191,147,198,227, 26, 5,233, 18,169,164,199,193,131, 7, 2, 52,206,106,137, 84, 42,251, 64,236,222, 97,151, 66,241,135,153,210, -235,173,166, 18,169,253, 70,140, 24, 54,184,191,139,139,134,158,182, 33, 42,182,173,191,159,185, 77,235, 54, 61, 69,234, 54, 35, -234,217,236,177, 38, 77,211, 96,177, 88,208,106,181,200,204,204, 68, 98, 98, 34,226,227,227,145,150,150,172,165, 9,225, 90, 65, -179, 92, 93, 61,192,225,240,225,221,220, 11,219, 54,172, 16, 47,253,244,227, 96,161,132,127,180,134, 17,122,172, 89,158, 95,112, -232,196,169, 51, 25, 39,247,111,179, 2,128,174,160, 20,103,175, 63,192,141,187,105,246,158,200,154, 67, 56, 52,207, 72,121, 80, -108, 73,138, 96, 47,249,100, 78,218,133, 11, 23,147,139, 74,140, 40,209,155,160, 47, 55,163,194,104,133,217, 74,195,203, 89,136, - 35, 31,182,197,177,223,162, 53, 20, 69,173,111,232,120, 86, 84,152,173,189,252, 36, 24, 31,210, 12,126, 30, 18,100,196, 93,198, -236,249,235, 17,153, 88,129,130,130, 66,152,203,114, 65,151,166, 35, 55,233, 6, 44, 86, 43,105,232,188, 63, 34,168, 0, 0, 4, - 2,193, 71, 63,254,116,202,109,225,178, 13,174,131, 71,191, 34,233, 61,228,101,201,232, 41, 75, 92,199,190, 27,238,198,226, 10, - 62, 2, 0, 63,160,196, 6, 77, 1,128, 33,201,137,241,102,163,209, 74,151,155,172, 8,244, 84, 32, 57,238, 58, 60,218,245, 45, -151,201,157,133,154,102,173,192,225,114, 17,216,231, 37, 72,100,142,112, 86, 55,235, 36,149, 11, 58, 84, 59, 79,191,212,103,178, - 22, 45, 90,244,232,154,168, 60,239, 0,176,245,199, 6,231,134,253, 51,186, 37, 51,154,140, 38,163,201,104,254,231, 53,235,242, - 34,255, 18,194,107, 89,240,216,104,213,197,195,180,124,196, 37,102,163,147,159, 59, 90, 53,119,197,181,248, 2,124,123, 54, 13, -187, 78,167,224,236,173, 28,208, 28, 25,178,139,129,251,201, 90,220, 79,201,109,112,252,108,182,128, 59,238,157,119,138,230,182, - 11, 40,238,246,191,147,179,224,238,124, 63, 96,222,188,194, 89,108, 1,119,156,178,153,108,255,135,115,223,157, 32, 19,139,249, -198, 10, 35, 90,182,240, 18,190, 61,115,214,100, 74, 41,176,121, 78, 36,153,187,191, 82, 32, 18,237, 92,250,233, 7,130,245, 63, -222, 79, 45, 51,162,236,240,101,109,194,156, 15, 23,230,115,184,194,109, 50,119,127,155,219,254,152,205,102, 84, 84, 84,192,104, - 52,194,100, 50, 33, 35,237,222,136, 95,127,124,127, 80,139,102,142,131, 4, 66, 33, 8,128, 98,131, 5,137, 89,122,132, 12, 24, -200,238, 20, 20, 20, 40,117,245,127,189, 54,173,162,162,148, 34,154,176,101,199,143,236, 99, 31,248,249, 38,190, 57,126, 29, 71, -127,187,137,107,231, 78, 90, 8,109,126, 60,255,151,212,181,181,143,212,181, 93,138,212,173,189,246,241,226,222,182,222,225,153, -217,108, 22, 9, 25, 16,250,203,212, 25,111,255, 79, 95,146,167,219,185,121,113, 70, 78,102,242, 61, 1,143,178,136, 5,108,148, -150, 91,176,251,215, 76,140, 93,113, 11,119, 83, 75, 65, 8,105,112, 2,111, 26,120,111,220,235,239, 91,205, 38, 19,124, 61,165, -216, 23,190, 18, 35, 66, 58,160,127, 59, 37,186,180,146, 64,204,169,192,157,216, 56,124,183,111,183,133,166, 89,115, 26,184, 17, - 7, 87, 46, 81, 0, 80, 90, 90,250,254,188, 15,230,228, 24, 45, 52, 76,102, 26,166,202,215, 95,191,251, 60,199, 90,174,127,191, -114,187,168,106,219,213,117, 51,111,122, 99,250,188,144,157,223,254, 50,240,240,249, 44,150, 54,207,132,179,167, 14,193,181, 89, - 75,240,216, 44, 17, 40, 0, 20, 5, 80, 20, 8, 33,112,246,242, 71, 57, 77,227,135,237,159,184,163,158,246,106, 85, 38,107,202, -148, 41,184,119,239,222, 19,231,253,225,131, 36, 60,124,144,132, 95, 78, 95, 1, 0, 56,122,117, 44,112,244,234, 88,160,106,209, -101, 7,243,103,142,129,129,129,225,153,143,104, 85, 45,174,213, 87,212, 89,117, 88, 94,110, 72,122,126,220, 43,112, 85,187, 72, - 71,246,123,149, 23,245,176, 16, 57, 89, 41,120, 16, 31, 3,125,185, 25, 60,101, 11, 64,232,130,230,222, 94,136,142, 59,106,218, -180, 58,162,148,182, 84, 36,213,165, 55, 98,132,171,199,131, 88,138,181,122,149,231,149,248,184,130, 78,251,230,127,141,151, 95, -150,170, 86,175,242,188,146,156, 32, 97,137,133,164,199,228, 73,227, 41, 22, 69, 48,111,222, 92,140, 28, 62, 24,175, 77,158, 72, -237,217,179,187, 91,161,141,123, 73,131,251,197, 71,159, 44,230,107, 11, 45,198,107,241,165, 21, 98,137, 72,116,241,126,105, 89, -160,183,167,104,232,152, 87, 51, 35, 14,238, 92, 15, 96,146, 45, 90, 85, 6,203,108, 54,195,100, 50, 1,128, 21, 0, 88,172, 71, -175,121, 37, 70,232, 10, 43,160, 45,172,128,197, 74, 99,204,184, 73,162,235,145,183, 38, 1,168,163,189, 22, 77,155, 45,102, 28, -254,249, 6, 50,174, 31,162, 41, 22,187,168, 90, 99,120, 72, 93, 91,251,184,184,120,158, 31, 62,102,162, 51, 95,248,168, 26,182, -164,172, 2,123,182,175,170, 55,159, 44,138, 34,180,213, 82,104, 49,155,203, 90,182,104,153,225, 23,208, 65,120,225,127,167, 71, - 92,252,229,112,169,165,229, 68,135,135,201, 89, 96,115, 5, 96,243,132,168, 48,217,246,103, 65,251,224,202, 22, 0,212,235,211, -231,110,248, 63,246,190, 59,172,138,227,109,251,222,221,211, 11, 29, 14, 77, 64, 65, 4, 59,118,236,177, 19,107, 52,177, 68,141, - 70, 99, 77, 52, 49,106, 98, 18, 19,123,137,189,198,196, 22, 99,239,189, 70,177,198,222, 65, 5,165,119, 56,212,211,203,182,239, -143, 3,138, 74, 57,104,222,239, 45, 63,238,235,218,235,156, 93,206, 62,204,236,204,206,220,115, 63,207,204, 76,153,254, 35,245, -237,154,171,176,152, 12, 48, 27,245,208, 20, 21, 64, 38,160, 17,125,253, 24,195,179,244, 20,125,230,131,245,229, 91, 34, 50, 0, -100,148,190,146,159,159, 31,121,253,234,149,227,183,174, 95, 29,229, 21,212,140,180,208, 28, 94, 68,221,226,210,159,223, 61,110, - 54,107, 34, 97,147,155,242, 0,156,173, 72,184,116,112,116,118, 26,245,229,244,209,206, 50, 5, 25,149, 86,136,228, 76, 13, 88, -153, 47,188,106,212,126, 37, 43,114,182,252,182, 12,245, 64,247,176, 65,184,246, 56,133, 61,187,111,125, 55, 0,199, 0, 24, 42, - 34, 89,247,238,221,131, 72, 36,122,173,220,107, 7,215, 66,137,235,176, 48,127,146,243,182,165, 35, 1, 0,157,219,117, 24, 11, - 96, 92,117, 59, 83,141,106, 84,163, 26,255,177,120,115,251,157,151,215,202, 37, 90,201, 79,174,181, 0,128,144,230,221,243,148, - 82,129,171,128, 36,144,157, 22,135,191,150,125, 13,142,227,209,115,204, 82, 56,212,242,130, 76, 68,193,172,203,211,229,199, 93, -174, 40, 86, 7, 4, 65,119, 91,255, 71,122,173,137, 19,130, 28,119,237,210, 9, 1, 96,215, 46,157,112,194,120, 63,199,223,254, - 72,172,213,170, 93, 51,240, 44,139,222,253, 62,198,224, 33,131,145,148,101,192,193, 43, 41,208, 27, 45,118,205,150,147,185,215, - 13,115,119,243,136,248,102,100,132, 66, 64, 17, 68,157, 0, 39, 42, 85, 77, 51, 20, 37,100,143,223, 41,202, 24, 48, 96,136,123, -228,169,125,157, 89,247,186, 97,198,220,103, 15, 43,179,103, 54,155,193,178, 44,204,102, 51,104,154,134,171,123,224,169,110, 31, - 47, 75,203,204,210,158,204, 42, 48,181,210,211, 12,178, 11,205,200, 41, 52,163, 80,111,133,151,131, 11, 24,218,210,168, 60,123, - 60,207,111,255,232,227,225,159, 1, 32, 9,146,249, 83,151,249, 44,214,246,151, 87, 36, 43,162,223, 80,143, 43,247,226,240,226, -238,233, 2,158, 99,108,171,184, 19, 92, 90,197,207, 21, 60, 69,128, 19, 9, 8,154, 34, 73,206,106,213,209, 42,149, 71,228,229, -200, 51,125, 76, 76, 60, 40,145,228,229,111,141, 22,214,238, 26,147,253,226,230, 58, 0, 88,189,102,213,242, 54,221,134,138, 46, -223, 79,132,145, 6, 90, 55, 13,193,145,189,155,204, 60, 79, 79,215,103, 62, 88, 87,133, 74,232,236,231,231,247,181, 80, 44,238, - 44,147, 59,248,121,120,251,147, 86,134,133,149,102,161,112,243, 37, 37, 74,215,110, 28, 41,186,198, 88, 45,145, 86,189,122, 53, -128,114,249,245,223, 55,159,116,254,125,245,242, 79,188,221, 20,240,115, 23,225,248,229, 2,150, 22,112,164, 42, 32,148, 0, 0, -127,149, 35,158,220,191,132, 71,143, 30,163, 81,235, 8,184, 57,212,128, 82,196,242,185, 47,254,201,247,244,242,109,146,157,149, - 46,122,147,104,121,121,121,205, 26, 62,124,248,108,111,111,111,172, 90,181,234,229,245,210,229,222, 16,104,245,219,225, 23, 8, -168,165, 2, 96,151, 27,177, 26,213,168, 70, 53,170,241,159,165,106, 1,165,214,208,122,141,104,149,248, 70,123,247,238,253,214, -110,237,233,217,249,112, 83, 10,224,225, 83, 11,195,190, 94,142,237, 43,191, 5,203,210,224,121,128, 97,237, 91,153,128,231,133, -127,127, 57,161, 86,221,154,181, 40,143, 97, 67,229,198,157,187, 12,178, 97, 67,229,198,134,141,220,138,190,156, 80, 43, 81,107, -242,111,203,176, 44,254,137,206, 65, 84, 98, 17,162,146, 52, 80,202,236, 95,230,139, 18,139, 38, 44, 89,188, 72, 36,160, 8, 34, - 58, 89,167, 75,203, 99,116,148, 80,104,149,203,196,188,133, 23,152,147,114,249,188, 46, 31,125,110, 60,190, 99,245,104, 0, 95, -149,171,138, 21,207, 52, 44, 81,178, 74, 62,121,158,231, 9,128,227, 8,150, 77,203, 53, 65,103,165,145, 93,240,138,104, 17, 76, -249,158, 83,165,119,112,136,163,131,242, 12, 69, 81, 18,158, 7,104, 43, 51, 8,222,193, 61,116,153, 47, 98, 75,147,172,155,209, - 25,136,123,112, 62,155,181, 26,134, 27,114, 98, 46,216,155,119,130, 0, 79, 81,224, 40,146,224, 8, 2,156,144,228, 45,224,121, -238,205, 20, 25,170, 64,180, 74,200,150, 88, 72,205, 60,183,103,165,106, 84,175,122,216,123,197,198,249, 76, 90,181, 70,159, 94, - 37,146, 5, 55, 55,183, 17,223,125,247,221,172,190, 31, 15, 69,145,137, 64,118,129, 77, 13,180,208, 28, 68, 10,119,116,251,114, -171, 95,166, 90,227,247,226,246,241,182,185, 15,118, 21,209,166,162, 85,229,166, 43, 46,227,182,209,160,135,198,104,203,207,180, - 17,161,212,207,235,255, 6,195, 11,224,234,225, 11, 15, 71, 17, 70, 14,250, 16, 87, 2,106,226,233,179,103,152, 57,231, 36, 60, -157, 29,163,110, 92, 58, 86,187,105,120,251, 21,167, 14,239,126,139,196,101,101,101,205,217,177, 99, 7,194,194,194,102, 55,107, -214, 12, 89, 89, 89, 37, 4,249,101,185,199,189,176, 9,182, 37, 68,235,254,253, 71,104,218,180,113,117,211, 82,141,106, 84,163, - 26,255, 18, 42,226, 34,255,139, 84,173,215, 20, 45,178, 36, 67, 37,199,219, 4, 9,120,158,156, 11,177,128, 67,141,154,181,193, -151,234,188,121, 0, 12,107,159, 59,234,216,177,204,180,160, 96, 61,247,221,119, 41,173, 27, 54,114,123, 52, 97,188,223,179,134, -141,220, 30,125,247, 93, 74,235,160, 96, 61, 71, 51, 66,150, 47, 94,175,171,100,109, 46,158,175, 74, 92, 28,217, 50,172,126, 32, - 53,103,215,243,148,137,191,197,198,136, 68, 34,186,134,187,156, 8,240,148, 83,254, 30, 50,177,153, 38,205, 33, 13,154, 90, 64, - 18, 77, 43,178, 82, 66,180, 44, 22,203,107, 71,158, 58,174,239,185,131,211,250,249,122,186,140, 76, 87, 27,145,146, 99, 64,170, -218,128, 20,181, 1, 6, 51,131,199, 79,227, 1, 74, 20, 85,150, 77, 71, 7,215,179,187,119,110,247, 15,171, 23,164,170, 31, 82, - 83,181,121,219,118,127,169,212,249,172,210, 59, 56,196,191, 86,232,189, 91,231,247,121,220,140,206, 64,114,204,221, 44,198,172, -217, 93, 21,146,245,146,108, 1, 60,199,115, 68,126,129, 70,105,102, 32, 69, 25,188,207,108,229,222,169,230,232,140, 12,142,223, -202,194,137,195,123,112,237,194,137,119,178,225,228,228, 84,175, 67,135,142, 32, 4, 98, 88,104, 14, 22,134,131,165, 84,140,150, -149,230, 64,243, 66,200,189, 27,131, 20,201,234, 85,100,235,179,207,186,231,167,167, 38,237,255,233,219, 49,216,121,228, 34, 18, -178,105,196, 60,186, 14, 93, 97, 46,172,180,133,191,145, 88, 64,251,186,203,248, 17,253, 90,160,123,247, 62,232,222,239, 11, 72, - 92,253, 27,137, 68,162,184,148, 23,207,202,117, 73,102,101,101,205,121,248,240,225,236,123,247,238,193,203,203, 11, 86,171,245, -181,114,175, 29, 92, 11,181,131,107, 33,246,153,109, 18, 67, 9,201,226, 56,190,186,117,172, 70, 53,170, 81,141,247, 68, 69, 92, -228,127,137,154, 85,114,156,132,189,203, 59,148, 32,160,134, 39,110, 69, 37,162, 81,221, 64, 56, 57, 58,224, 89, 92, 26, 40, 82, - 8,146, 0,104,198,254, 78,134,183,210,123, 87,172,112, 66,114,162,130,252,109, 67, 98,173, 47, 39,212, 74, 92,177,194,233, 6, -111,165,247, 2, 24,206,243,128,141,108,217, 8, 23, 91, 5, 94,192,115,180,159,167,171,156,186, 27,175,207, 35, 73,202,236,230, - 36,229,220,156, 36,164,155,131, 88, 40, 18, 82, 28,195,147,214, 26,170, 90, 38,158,227,236,217, 87,239, 53,215, 33,203,178, 32, - 8,146, 45, 38, 98,138,212, 60, 35,138, 76, 20,178, 11,205, 40,208, 90, 81,199, 87,129,243,145, 7, 12, 44,109,220, 85,166,218, - 38, 20, 57,213,174, 85, 3, 63,206, 91, 1,163,153,197,243,116, 29, 68, 18,137,151,167, 87,131,135, 6, 52, 92,103, 0, 0, 32, - 0, 73, 68, 65, 84,195, 39,206,144, 76,222, 24,135,209,157,221,240,237,213,184,116, 67,182,116, 70, 85, 74,150,101, 89, 24, 77, - 22, 81,118,110,129,139, 70,171,119,148, 73, 37, 70, 15, 87,167,220,178,126,107,170,162,162, 85, 2,185, 84,128, 62,225, 94, 48, - 89, 63,133,209,204,224,250,133, 67,239, 98, 38,208,211,167, 6,116,150, 82,228,170,152,108,149, 38, 93, 66,165, 7, 0, 34,176, -178,108, 63,121,124,111,208,147,199,247,230,222,185,113,121,247,146,205, 23, 26,238, 88,247, 11,214, 30,141, 3, 69, 81, 4, 79, - 51,194,213, 71, 19, 81,195,153,226,117,180,144, 48,177, 4,244,249,106,132,182,252,176,193,238,245, 63,205,128,109,201, 8,115, -121,100,171,248,235,236,102,205,154,161, 32,251,238,203,114, 63,115,250,229,188, 5, 20, 60,220, 86, 24,119,113,173,141,226, 83, -130, 3,213, 77,100, 53,170, 81,141,106,252, 71,163,220, 13,164,237, 34, 90, 74,185, 20, 60, 37,197,213,123,113, 8,173,223, 24, -219,142,221, 70,112,163,112,100,106, 25,240, 32, 43,157,109, 88,130,105, 63, 24,239, 3,184,223,183,175,188, 70,255,254,190,221, -120, 94,248,247,134, 63, 52,105, 0, 16,216,208,102,134,227,120,240, 60,192,115, 54,194,101,191,164, 35, 72, 78,204,212,212,172, -229,165,192,147, 52,171, 89, 33, 17,145, 46, 10, 49,229,225, 36, 22,137, 4, 2,176, 60, 97,206,204,140, 51, 19, 64,146, 61,230, -222,116, 29,202,149,222,167,186,124,180, 84,157,148, 82,116,183, 78,190, 33,172,200, 42, 6,207, 3,117,124, 21,136,186,121,146, -205, 78,127,241,220,152, 29,243,123,217, 42, 25, 40, 43,195,225, 97,124, 17, 10,245, 52, 10,117, 86,180,237,212, 71,212,182,107, - 95, 92,141,202, 5,199,208, 88,178,233,164,150,229,233,193,192, 83,186, 10,153, 38,111,221,143,174,161, 46,208, 75,132, 2, 65, - 97,221,224,128, 4,177, 72,200,104, 52, 26,241,235,191,162,160,144,137,145,175,163, 1,128,174,106,237, 41,210,211, 56,118, 51, - 11,199, 15,237,134, 76, 38,195,187,232, 55, 34,145,200, 89, 40,146,194,170,183,185, 11, 75, 14,235, 27, 7, 41,144, 0,164,192, -217, 78,179, 79, 45, 22,227,245,196,152,155,245,216, 78,193,212,136,174,181,240,217,216, 41,240,173,221, 8,125,250,244, 71,227, - 90, 14,196,161, 27, 41,160,105, 70,235, 21,212,192,129,183, 41,184,207, 1,132, 1,184, 89,145,178, 85, 66,182, 28, 74,149,123, -189,182, 65, 97,175,136, 22,144,159,252,192,165,186,109,169, 70, 53,170, 81,141,106,224,245, 61, 14,123,149, 38, 95,164, 93,170, - 9,199,195,221,205, 21, 82,133, 35, 18,179,173,208, 18, 42, 20, 24,120,176,172, 77,209,170, 64,120, 42,115,119,239, 99,199, 50, -211,142, 30,205,221,114,236, 88,102,169, 64,239, 87, 74,214,203,207,178, 93, 50,101,218, 36,120,246,252,177,211,151,138,250,182, -242,112, 33, 41,202, 40, 18,146,102,129,136,178,138, 4, 36, 45, 18,144, 22, 79, 71, 33,117,233,248, 30, 49, 79,224, 82,101, 54, - 77, 38, 19,186,118,237,138,158, 61,123,162, 95,191,126, 24, 56,112, 32, 66, 66,234,169, 72,138,176,240, 4,199,121,136,181,168, -237, 65, 64, 96, 74,197,133, 61,191, 26,162,254, 57,242,144, 53,155,250,224,117,202,249,202, 38,207,115,249, 69,102,152,172, 44, - 10,116, 86, 20,232,173, 96, 60, 90,227,200,245, 12, 24, 45, 44,146,239, 29, 48,170,179,210,190, 54,231,188, 72,172,164, 40,190, -127, 67,199, 75,251, 98,212, 8,181,131,148,124,209,190, 77, 11,181,187,155, 43, 67, 16,175, 20, 87,130, 32, 32,117, 84,193,197, -217, 1,137,247, 79,227,220,146, 46, 70, 0, 63,217,243, 60, 75,195, 81, 46, 64,223, 86, 94,232, 51,224, 83, 52, 10,239, 97, 15, -177,126,203,166, 92, 46,151,149,168, 87,165,151,117,176,148, 82,181,216,226,242, 38, 5, 18, 89, 25, 54,187,149,245,143, 52, 69, - 69, 39,239,223, 56, 79,153,104, 30,217,133,102, 24,243,226,240,215,146, 9, 23, 14,238, 92,196,169,156,133,152,210,175, 54,154, - 4,121, 56, 56,170,252,224,228,238,135,136, 79,167,125, 2, 64, 93, 89,222, 75,220,136, 4, 37,159, 89, 82,238, 37,127,203,200, -200,168, 82,222,255, 5, 84,219,172,182, 89,109,179,218,230,127,130,205,255,205, 40,217,227,176,228,179, 42,174, 67, 30, 65,222, - 10, 4,251, 42, 96,178,170, 96,178,176,208,155, 88,104, 12, 86,104, 12, 52, 18,179, 12,136, 58,246,254, 41,180,169, 88,182,149, - 36,121, 30, 0, 97, 35,120,246,170, 39, 98,171,101,222,242, 37, 11, 7,237,105,218,196, 50,185,151,183,223,163, 68, 75, 6, 65, -144, 70,146, 18,208,174, 14, 2,225,179,103,143,212, 55,174,156,234, 32,101,216,207, 12, 21,216, 97, 24,166,200,215,215,183, 88, -137,122, 69, 33,235,213,150,245,251,231,228,247,129, 29,251, 46,241, 88,185, 96,154,129,164, 68, 28, 33, 16, 69,177,180,113,183, - 49, 59,102, 3, 42,160, 31,164, 72,250,244,214,131, 39,225,206,174,126,120,145,174,135,222,196,192,202,112,112, 81,138,144,246, -248,172, 53,241,217,221,125,186,140, 71,219,222,225,177,237,138,125, 26, 85, 35, 34,162,199,199,225,225,173,169, 95,126,249, 25, -161,161,161, 48, 26,141, 32, 73, 18,126, 53,107, 35, 49,246, 1,110,158,156,199, 26,242,146,126, 7, 48,183, 20,201,176, 27,185, - 26, 11, 78,223,205,193,201,195,123, 65, 9,197,239, 82,188,164, 76, 38,147,150, 69,174, 74,147,174,151, 63, 22,138,165,197,131, - 0,238,181,138, 88, 54,206,196,197, 62,121, 58,114,216,144,122, 14, 78,206,232,217,127,112,206,141,171, 23,122, 31,254,235,143, - 85,121, 73,169,131,126, 94,180,198,177, 91,115,111,194, 85, 41, 70,161,158,195,174,228,167, 65,176, 83,131,205,202,202,154,147, -154,120,119,248, 63, 39,191,239,211,177,239, 18,143,187, 7,103,190, 12,162, 39, 41,193,206,234,118,165, 26,213,168, 70, 53,170, - 81, 10, 99,223,248,220,104, 23,209, 50,153, 76,137,237,186,246, 1,199,241, 96,121,128, 99,139,149, 39,238,149,250,196,210,166, -196,247, 77, 29,199,177,183,215,109,220,210,179,105,203,142, 84,125,127, 37, 52,121, 89,184,249,207, 69, 6, 28,127,195,158,251, -243,242,158,235,100,158,193, 31, 15,250,164,255,254, 17,163,198, 23,118,232,212, 73,161, 82,121,153,211,210,211, 12, 91,119,236, -164,207,158, 58,218,129, 3, 51, 36, 47,239,133,174, 34, 59, 69, 69, 69,171,203,186, 46, 17, 43,219, 2, 8,164, 4,132,197,168, -126,174,168, 18, 81, 73, 79, 29,176,112,222,236,164,161, 99,166,136,131,124,107, 35,167,136, 66, 98, 90, 22,158, 93, 57,106, 78, -143,189,115, 88,147,118,127,180,157,166, 50,203,184,150, 6, 96,229,205,155, 55, 26, 68, 68, 68,244,232,220,185, 51, 63,118,236, - 88,240, 60,112, 97,227, 4, 62, 63,241,230,129, 98, 21, 43,254, 29,203, 37,249,202,141, 7,174, 3, 59, 52, 23,184, 57,140,198, -150,189,167,104,240, 92,114, 21,205,120,214,240,175, 41,176,185, 11,109, 75, 58,188,121, 88,232, 87,241, 99, 34,165,167,192,128, - 40,207,114,242,251, 22, 71,127, 17,251,164,209,139,216, 39,163, 0,228,236,223,185,233, 56, 0,152,141,198,241,145, 23,142, 37, - 63,137,190,251, 89,223, 97, 83,107, 55, 8,107, 33, 56,176,109, 37,172, 38,253, 33, 0,118,215, 87,137,152, 74, 42, 41,247,106, - 87, 97, 53,170, 81,141,106, 84,163, 28,188,123,140, 86,234, 83,219,122, 90,255,213,208,102,229, 12,223,182,109,251,252,237, 59, -246,180, 53, 89, 44,190, 60, 68,169, 44, 99,185,172, 99,241,139,189, 54,140,217, 47,238,186,185,213,105,184,117,211,186,159,182, -110,249,173, 35, 56,182, 46, 1, 36,241, 4, 46, 73,105,118, 68,101, 36,171, 66,178,148,171,253,163,219,199,203,140,121,121,186, -237, 85,189,215,152, 23,147, 69, 82, 86,191, 63, 86,205, 91, 74,146, 84,119,150,229,132, 28, 75,191, 96,173,166, 95,141,234,152, - 99,176, 59,202, 13,249, 21,252, 45, 26, 64,116,100,100,100,251,200,200,200,150, 0, 86,195,182,135,226,221,247, 41, 23,115,158, -182,203,244,105,211, 47, 76, 5, 17,192,113, 60, 24,150, 75, 22, 25, 13, 93,170,104,198, 47, 40,168,182,220, 74,179,111, 5,192, -151, 14,132,127, 73,180,156,106,200, 1,248,217, 73,180, 0,219,162,162,155,222,186,200, 48,139, 51, 51, 82,247,110,248,245,235, -113, 0,106, 1,184, 6, 96,221,255,175,114,175, 70, 53,170, 81,141,106,252,199, 96, 44,222, 94,180,212, 62, 69,235,255, 23, 10, - 10,226,181, 40,120,255, 77,122,243,242,158,235, 0,188, 53,115,207,240,158,118,163,158,107, 14,226,185,230,224,187,222,175,207, - 73, 80, 3, 9, 35,222, 51, 25,246, 4,178, 95, 45, 62,254, 21,228,230, 62,213, 35, 23,173,222,183, 88,118,237,220,241,108,207, -158,189, 66,158,164,132, 28, 79,137, 24,158, 16, 50, 28, 33,164,105, 14,102, 43, 77, 91, 25,134, 6,203, 88,193,177, 52,207, 89, -105,216, 86,135,255, 55,144, 12,224,135,255,174,114,175, 70, 53,170, 81,141,106,252, 71, 19,174,255, 57, 68,171, 26,255,167, 17, - 31,247, 34, 54,188,250, 49, 84,163, 26,213,168, 70, 53,254,143,147,172,210,159, 0,108,177,231,229,205, 28,168,202,206,220,239, - 50,251,224,124,181,205,247,182, 41, 4, 32, 6,160, 4, 80,153,107,171, 7,138,247,237,251, 31,158,247,239, 1, 60,168, 46,247, -106,155,213, 54,171,109, 86,219,252, 63,107,179, 50,219,231, 81,141,255, 82, 2, 86,109,179,218,102,181,205,106,155,213, 54,171, -109, 86,219,252,207,179,249,191, 25, 99,203, 56, 0, 84,187, 14,171, 81,141,106, 84,163, 26,255,129,112,115,171,163, 4, 94,198, -245, 86, 10,185,123, 61, 79, 0, 48,228, 62,205,174,126,122,213, 40, 3,165,247, 57,124, 45, 70,139,124, 71,131, 66, 82, 32,158, - 46,119,112,123,170,112,114, 75,255, 15,127,184, 68, 72, 77,197,164,110, 29,106, 29, 9, 13,148,245,171,202,141,114,143,144, 63, -189,106,183, 74, 81,168, 66, 38,193,187,169,236,125, 18,161, 80, 5,122, 40,253,154,255,227,224,219,224,195,255,130, 60, 74,234, -215,175,223,186,126,253,250,173, 1, 72,254, 13,131,114, 85,200,167, 53,130,195,175,168,130,154, 92, 84,120,214,249,228,223, 78, -176,210, 59,216, 77,233,215,236,160,210,167,113,129,210,187,177, 70, 89,163,217,101, 7,247,122, 65,149,221,231,215,119, 97,221, - 57,187,163,118,251,245, 93, 88,183,172,191,187, 68,172,113,152,181,231,249, 2,183, 62,191, 42,171,219,149,119,131, 95,219, 79, -157,189, 59, 78,117,171,234,125,190, 33,225,209, 53, 27,180,207,241,169,211, 42,202,222,123,106,132,182,190, 31, 80,191,109,118, -141,144,214,119,171,159,188,125,144,122, 4,182,150,186,248,159,148,184,248,159,146,184, 6,118,122, 95,123,222,222,222,178,186, -117,235, 70,132,135,135,143,235,210,165,203, 55, 77,154, 52, 25, 27, 16, 16,208,253,191,115,160, 47, 87,133,252, 96, 22, 18,185, -102, 33,145, 43, 87,133, 84, 58, 89, 70,161, 10,157, 79,144,108, 6, 65,178, 25, 10, 85,232,252,255, 41,101, 37,241, 12, 9,144, -171, 66, 86, 56,120,213,191, 45, 83,213,233, 83,213,251, 93, 92, 92,186,123,120,120,124, 84,114,184,184,184,116,175,126, 3,222, - 25,165, 85,172,247, 86,180, 40,161, 68,126,109,232,168, 47, 27, 46,158, 61, 67,186,106,203, 17,172, 90, 48,237,137, 89, 95, 88, -255,127, 98,206,221, 3, 91,222,165, 72,170, 70,233,107, 44,199,166,229, 38,220,110,254,111,216, 15,173, 41, 27,253,211,119,195, -191,253,116, 80,215,128,174,189,191, 38, 98, 18,140, 71,237,167,104, 8,219,119,240,176,223,149, 75, 23,215,108,217,178,113,174, -154, 9, 93, 33,148, 8,214,105, 82,163, 11,171,146, 6, 71,143,160, 64,129,194,253, 74,187,126, 95,122,221, 59,191,115, 27,107, -225,186, 25,114,159, 62,250, 23,178,231, 81,187,118,237, 22, 20, 69,185, 77,154, 52, 73, 4, 0, 43, 87,174, 12,102, 89, 54, 47, - 46, 46,238, 14,222, 97,241, 83, 27,193, 12, 29,190,122,233,156,237, 31,126,216, 19, 25,185,122, 44, 89,177,254,131, 51, 39,246, - 13,212,103, 63,255, 87,246, 12,116,118,174,229, 8,145,195,227,175,191,155,171,138,248,160, 5,165, 51, 49, 56,115,229, 65,251, -157,235,231,222, 6,234,181,212,230, 62, 45,119, 77, 49,206, 80, 52,211, 83,201, 71,112,134, 34, 0,248,244,173,206, 94, 73,119, -245,144,177, 17,222, 18,193,131, 60,160,210, 77, 31,157,107,182, 61, 43,148, 72, 2, 72,146, 4, 73, 0, 36, 73,128, 34, 8,219, - 62,161, 86, 99,114,250,179,171, 61,254, 39,188, 39, 14,254, 45,179, 64, 9,220, 72,226, 85,250, 8,178,248,147,231, 53, 89,207, -175,185,253, 11,255,198,169, 97,176,115,131,182,193,250,173,151, 19,242, 21,130, 14,223,156, 36,120,242,183,148,171, 43, 30,218, - 69, 0,164, 82,151,227,199,143,123, 68, 68, 68, 56,169, 26,244,187,108,207, 61, 98, 74, 87,255,196,137, 99,162,136,136, 30, 85, -168,159, 33,221, 64,146, 59, 8, 64,200,113,252, 74,138,227,247,233,242, 98,227,128,170,237, 62, 37, 83,133,142, 38,193,219,221, -206,112, 32,238, 26,115, 98,182,188,235,195, 21, 72, 28,187, 8, 69,162,111, 2, 67, 26, 53, 77, 79,122,113, 87,175,211,174, 96, -204, 69,151,171,108,136,102,166,159,191,122,239, 67,129, 80, 72, 68,116,105, 69,153,129,139,239, 83,232,158,158,158, 31,173, 93, -187, 54,168,117,235,214, 0, 0,134, 97, 28,247,239,223,239, 53,111,222, 60, 69,108,108,236,161,119, 52,235,235,225,225,225, 47, - 22,139,125, 1,192, 98,177,164,171,213,234, 20, 0,149, 14,252, 21,158, 65,238,224, 49,247,234,149, 43, 2, 0,104,223,190,195, -124,255,118, 95,185, 80, 34,165,177,204,199, 97,209, 42, 10,227, 46, 78,185,121,235, 6, 1, 0,225,173, 90,207,144,187,215, 91, -247,223,169,108, 73, 85,161,173, 72,224,219,240,246, 93, 7, 12, 30, 50,156,108, 80,199, 31,221,187,117,254,222, 8, 28,175, 82, -157, 17, 8,100,183,111,223,174, 77,146, 36,197, 48,140, 41, 60, 60, 60,229,125,210,229, 19,210,250, 58, 1,210,207,202, 88, 54, -169,227,239,206, 7,222,218, 56,134,114,242,107,250, 19, 40,193, 24,142,227, 82,181, 41,119,219,252, 31, 84,180,222,126,206, 85, -181, 68, 10,196,223,124,250,249,196,134, 83,166,254, 40,253,122, 85, 36, 78,174,159,145,251, 63,149,100, 1, 0, 69, 82, 53,206, -158, 59,171,146,139, 41, 0,128,206,196,224,195,136,136,202,123,132,154, 45, 47,145, 4, 17, 90,178,161, 13,203, 88,165, 2,161, -216, 68,216, 8, 18, 8, 0,238, 62, 53, 35, 61,153,107,242, 79, 7,117, 13,216,177,231,239,180,148,180,188, 42, 55,106, 4, 37, - 66,120,135,238,232,218,173,135,211,237, 91,215,231,110,252,125,195, 15,140,149,222,192,209,220, 10, 83,254,139,140, 74, 27,115, -175, 58,205,196, 74,247, 51, 3,198,205,115, 51,145,174,248,101,193,106,247, 43,167,119, 93, 78, 79, 13,227,146,147, 83, 77, 60, - 65, 60, 41,200,207,252, 70,159, 21, 23, 99,239, 35, 83, 42,149, 65, 74,165, 50,172,113,227,198,210,105,211,166, 9, 63,248,224, -131, 87,148,125,236, 88,209,165, 75,151,188,151, 45, 91,214,243,209,163, 71, 38,157, 78,247, 80,167,211,197,163, 10,129,246, 94, - 94, 30, 95,125,220,191, 15, 58, 15,248, 18, 44, 71, 96,236,196, 41, 56,123,250,208,120, 0,255, 10,209,162,229,142,243,198,140, -155,230, 17,222,162, 9, 53,119, 87, 12,100, 98, 1,122, 52, 15, 37, 62,159, 52,211,121,203,154,185,155,145,139,142,101, 41, 89, -156,161,104,102, 67,119,203,144,190,173, 3,113,108,183,101, 8,186,124, 7, 82,238, 52, 63,245,216,143,207, 0, 32, 40, 98,146, -131,132, 85,175,245,113,166, 84, 18, 86,189, 54, 40, 98,210,249,248, 51,107,181, 21,165, 69, 40,145, 4,236,222,181,171,142,139, -131, 8, 2,146, 0, 69, 17, 16, 80, 36, 76, 22, 22, 3, 7, 13,249,215,170,185, 76, 85,167, 39,105,219, 44, 27, 28,240,167, 49, -231,249,169,170,148, 9, 65,137,220, 78, 28, 59, 44, 80, 57, 73, 64, 81, 4, 40, 18,160, 72, 2, 73,217, 70,140, 30,253,185,211, -251, 18,246, 15,219,170, 90, 76, 31, 28,218, 35,188,161,107,227,189, 55, 8,167,240, 15, 7,187,229,154,228, 35,247, 28,189, 56, -132,111, 63,229, 22,207,115, 75,211,174,173, 62, 87,145, 17,179,217,156,221, 35,226, 67, 71, 66,160,144,159, 63,178,173,131,128, - 36, 64,179, 60, 24,150, 7, 91,188, 55, 42, 81, 60,130, 33, 73, 2, 60,199, 99,204,152,209,232, 17,241,161,129, 99,184, 52,251, - 27, 57,114,199,153,243,255,120,152,105, 14,203,214,110,153,171, 47, 82,207, 77,120,230,150,164, 43,202,157, 98,204,121,110,247, - 62, 24, 36,248,230,169,241, 81,227,118,157,184,137,134,245,235,129,229,108,233, 12,173,161,192,174,147, 55, 81, 55,180,174, 45, -221, 28,143, 16, 63, 37, 90, 52,111, 1, 0,239, 68,180, 4, 18,135, 95, 58,246, 26, 62,167,247,192, 81, 80,121,120,128,228,233, -222,231, 79,238,234,253,231,111, 75,167, 51, 38,205,178, 42, 25,227,217,151,253, 2,207,113,239,173, 58,249,248,248,120,180,104, -241,106, 57, 70,134, 97, 80,171, 86, 45,164,167,167,135,190,203, 56,205,219,219,187,215,172, 89,179, 84, 61,123,246, 20,122,121, -121, 1, 0,178,178,178,124,207,156, 57,211,116,214,172, 89, 57,153,153,153, 39, 81,193,138, 62, 44, 77,138, 72, 1, 40,169, 84, -110,203, 35, 8,114,218, 87,159, 53,246,244,246, 41,115,163,121,181, 58, 75,252,221,151, 23, 9,129, 64, 84,252,123,144, 60,207, - 17, 21,168, 68, 93,133, 66, 97,153, 30, 10, 43,229, 24,206, 11,157,190, 32, 41,210, 86, 89, 25, 90, 93,144,114,191, 94, 21,148, -184, 6, 66,177,104,195,199,131, 71,181,249,100, 64, 63,120,123, 56,225,252,181, 71, 24,255,213,183, 52, 99,165, 87,188, 83,227, - 65, 81,130,156,156,156, 36, 23, 23, 23,175,247,239,111,137,192,191,207,158, 86,157,191, 16, 57, 99,249,170, 53, 19,172, 22,134, -230,120,254,229, 62,198, 50,153, 68,216,173,247, 32, 71, 85,237,112,233,154, 89, 95, 8,255, 15, 42, 90, 27,255, 21,162, 37,150, - 57, 12,250,249,187, 73,210,121, 59,111,226,228,250,241,185, 6, 77,174,199,203,145,130,163,243,125,189,166,176,233,187,164, 80, -233, 17,210,154,160, 4,227, 8,138, 82, 16, 36, 33,230, 88, 46,149,177, 88,230, 27,243,158,103,190,111,238, 57,142,199,193,235, - 57, 85, 35, 64, 60,130,119,236, 61,172,242,116,150,192,100,101, 49,248,211,225,216,190,125,187,131,135,147, 24, 38, 11,131,165, -203,151,107,117, 73, 39, 85, 73,169, 5,233, 93,251,124,123, 46, 62, 49, 39, 42, 37,211,180,175,170,105, 51, 91, 89,104, 12, 12, - 12,102, 18,117, 26,180,192,210, 21,117,165, 41,201, 9,223,110,251,115,243,228, 39, 79,168,237, 28, 69,206, 49,101, 62, 77, 45, -243,165,243,106,216,195,209,197,109,119,255,113, 11,156,159,231, 8,192,195,138, 56, 71, 41, 6,141,156,236, 24,228, 37,131, 66, - 74, 57, 39, 36,167,123, 79,155, 62,253, 90, 60,203,183,212,168,227, 19, 42, 75, 79,205,154, 53, 7,244,238,221, 91, 62,117,234, - 84,161,159,159, 31,254,220,181, 63,160,125,143,129,125, 50, 50,179,253,120,158,135,167, 74,149, 58,230,243,129,199, 79,157, 58, -149,156,154,154, 42, 92,178,100, 73,171,195,135, 15,215,207,202,202,178,123,100,202,242, 60, 76,102, 22,108,113, 7,169, 46, 50, - 87,153,159,250,250,250, 74,210,211,211,205,165, 84, 6,226,149, 80, 72,244,232,210,177,149,224,143,211,137,208,153, 88, 40,164, - 66, 36,102, 27,208,188, 73, 35, 98, 19,203,132,149,101,112,244,160, 94, 51, 61,149,124, 68,223,214,129, 80,185,200,177,117,221, - 2, 28,187,145, 16,145,173, 35,176,150,167,198,121, 75, 4,221, 20, 92,230,218, 15,154,215,246,234,220, 44, 0,119,154,215,246, -186,114, 47, 38, 86, 54,112,249,164,116,157,240,124,193,153,201,218,178, 27, 30, 18,174, 14, 34,108, 57,155, 12,185, 84, 0,133, - 84, 0,133,196,246, 73,146,196,251,141,106,189,235,249, 81, 28, 59,154,162, 4,163,135, 12, 26,232, 51,116,200, 64, 30, 20,137, -253, 7,143,247,219,185,115, 71, 38,109,181,108,102, 73,106, 75,121,245,231,181, 7, 74, 2, 42, 39, 49,166,111,142,130,163, 76, - 8, 7,185, 16,142,114, 33, 58, 55,246, 0, 69,190,115, 18, 93,198,247, 11,234, 57,190,127,205, 78,161,254,202, 58, 15,227,138, -158,140,158,127,119,213,165,194, 78,223,172, 91, 89,223, 77, 87,104, 17,252, 50,109,140, 32, 45, 35,163,211,254,227,151, 59,179, -150, 81, 49,140, 85,255,163,250,209,254, 50, 85,225,180,152, 27, 77,125,195, 63,145, 90,117,244,227,135, 49,105,181, 11,204, 18, - 68, 39,105,160,144, 10,160, 44,121,182, 82, 1, 20, 82, 33,148, 82, 1, 50,210, 18,145,175,167,174,165,187,145,157,112,249, 6, - 83,149,132,155,172, 44, 30, 36,232, 80, 51,180, 9,188,189,125, 96,233, 57,172,230,173,200,131, 71,111, 95, 62,178,200,144,245, -236, 71,123,237,236, 58,113, 19, 51,166,140,187, 71, 0,247,139, 59,233,166,191, 44, 94,223,108,238,140, 47, 95,187, 54,109,206, -154,102,239,174,100, 57,204,236,220,127,226,156,246,221,250, 67,155,159,141,235,231,246,161, 71,239,143, 49,108,212,215,112,118, -118, 95,186, 98,254,119, 15, 25,179, 38,242,173, 54,215,171,110,187, 70, 13,235,237,244,245,241,241,227, 56,219, 46, 31, 60, 15, -232,180, 69,248,238,155, 49,224,120, 30, 97, 77, 91,118,150,182,239,198,243,197,187,129,228,230,229,234, 99,158, 61,233,106,202, -137,185,101,247,179, 52,153,104,181, 90,141, 7, 15, 30, 32, 54, 54, 22,209,209,209,200,203,203,131,147,147,147, 78,175,215, 87, - 73,188,111,220,184,241,208,200,200, 72,169,139,203,171, 77, 26, 44, 22, 11, 28, 28, 28, 48,116,232, 80, 97,247,238,221,125,123, -245,234, 53, 34, 42, 42,106, 23, 0, 77,153,233,201,127,145,225,224, 25,250,123,199, 15, 58, 78, 0, 0,153,163,119,194,218, 63, -143, 71, 87, 56,160,117,242, 9,104,211,166,109,109,240, 60, 8,240,171, 13,121,177, 89, 21,168, 68,138,155, 55,111, 6, 81, 20, - 37,120,213, 7,113,248,109,235,222,186,127, 95,125, 60, 96,241,210,101, 82, 71,133, 4,234, 34, 11,190, 24,214,223,238, 62, 88, -230, 25,218,179, 77,155, 14, 71,231,206,249, 89,160, 84, 40,112,238, 86, 60, 38,125, 51,221,148,153, 20,181,140,231,132,235, 13, -234,216,156,247,236, 42,121,252, 11,168, 83, 67, 9,135,190, 61,164,227, 63,235, 43,181,208, 44, 10,245, 52,204, 86, 22, 44,199, -163, 72, 79,227, 73,138, 22,238,142, 85,223,202,141,231,249, 22, 0, 60, 0,168, 9,130,184, 83,250,188,100, 64, 87,194,141,223, - 56,207, 45,238, 31,220, 0, 88, 96,155,169,255,178,250, 20,159,151,119,189,228,254, 39, 0,234, 21,219,100, 1,220, 38, 8,162, -160, 28,178,245,150,202, 37, 56,113,226, 4,223,187,119,239,151, 45,254,155,231,111, 66, 34, 18,250, 40,156, 60,192,243, 79, 81, -122, 3, 99,149,151,111,222,178, 21,171, 92,191,154, 56, 46, 89, 83,152, 31, 80,124,249,188, 61,157,133,128,160, 86,116,108, 27, -222,125,194,196,137, 8, 13,170, 33, 98, 89,150,143,138, 77,160,183,109,217, 58,242,202, 13,241, 42, 77, 90,212,204, 82, 18,100, -149,166,125,178, 28,155,246,166,130,197,114,236,155,163,219,183,108, 18, 4,224,172, 20,227,247,211,137,224,121,128, 0, 15, 39, -133, 16,123, 46,165, 33,225,222, 33, 77,239, 48,141,126,232,226,217,157, 59,245,156, 28,249, 36,206,180, 47, 39,199,116, 22, 64, - 86, 69, 54,203,110,208, 57,152,173, 44,104,134,193,129,227,199, 17,209,185, 21,218,180,105,133, 14,237,219, 8,238,222,123, 52, -106,226,132, 49,126,120, 53,187,227,165, 77,169,103,112, 11,165,147,251,190, 1, 19,150, 56, 60, 78, 99, 32,160,128, 64, 47, 25, - 92, 29, 68,176, 48, 4,146,212,214,226, 55,199, 25,147,166,205,113,157,241,237,132, 83, 26,181,184, 33,240,212, 90, 81,222, 13, - 6,131,120,248,240,225, 66,154,166,173, 67,191,248,186,123, 86,150,186,223,111,171,127,149,168, 84,158, 48,152, 24,220,139,126, - 81,111,238,220, 57,129,199,207, 92, 58, 50,123,250,248,163, 17, 17, 17, 78,123,247,238,229, 42,123,158,175,141, 16,179,115,215, -109,221,121, 96,251,202,101, 11, 17,147, 92,128, 45,127,172, 7,207, 50,191, 87,242,168, 74,219,228,135, 15, 31, 46, 59,114,228, - 72,141,180,180, 52,141,193, 96, 80,191,166, 71,144,132, 32, 59,223, 0,119, 7, 49, 68, 2, 18,158, 46, 82,168,156, 36, 16, 82, - 0, 73, 16,108, 89, 54,183,236, 59, 57,159, 51, 20,225,216,110,203,144,173,235, 22, 96,212, 87, 63, 33, 42, 87,124,134,148, 59, -205,255,114,200,128, 25, 30, 50, 54,194,199,153, 84,117,110, 86, 19, 10,169, 8, 63, 76, 30,142,150,247,146, 84,233,133,220, 79, -106, 35,213,100,206,153,151,155,117,159,127, 93, 28,177, 41, 88, 14,114, 33,206,236, 92,154,163, 47, 82, 23,149,184,228, 44,102, - 83,178,157,213,248,124, 25, 35,219, 25, 77, 26, 53, 88, 48, 97,236,104,178,109,235,150, 60, 73, 10,145,171,181, 16, 60, 15,124, - 51,105, 60,190, 28, 63,198, 43, 53, 35,231,151,245,235,127,159, 25,249, 55, 63, 79,175,126, 54,187, 34,155, 36, 97, 83,129,148, - 82, 1,148, 50, 27,113, 81, 74, 5, 48, 89, 88, 16, 4, 40,103,255,166, 69,132, 77,201,205,200, 79, 46,119, 4,254,154, 77, 87, -255, 6, 23,254, 78,112,168, 91,176,175,224, 70, 98, 70,244,252,123,143,178,111, 3,200,247,235,224, 60,194,202,240,208,153, 24, - 36,102, 27,192, 88,121, 98,212,135, 1,168,245, 9, 17,186,112,235,253,237,167, 31,193,177, 84,163,255,154,205,244,155, 7, 76, -110, 13,251, 15, 94,185,230,143, 59,203, 22,252, 68,229, 22, 89,192,241, 60,164, 98, 10, 50,177,160,248,160, 96,212, 23, 97,253, -134, 77, 89, 12,136, 1,184,124,153,169, 74,253, 4,199, 15,235,223,179,195, 30, 2, 16, 19,164, 40,205, 39,160,102, 64,151, 62, - 35,165, 93,250, 14, 7,203, 88,102,220,187,202, 95, 52,228,196, 92,176,199,102,195,250,245, 64, 0,247,245, 57,177,227, 1, 64, -161, 10,249,189,110,104,221,102,111, 94, 11, 14, 14,109,102, 79,185,191, 84, 74,165, 14, 95,185,184,122,252, 20,218,160,137, 42, -187,192, 76, 56,184,213, 64,226,243, 7,216,189,225,151, 29,156,201, 50,231,194,201,125, 11, 86,109, 57, 60,168, 75, 68,127,108, -253,237,215, 31,242, 50, 95, 18,173,243,165,212,170, 97,219, 54,111,244, 19,138, 37,160, 25, 14, 52,203,219, 62, 25, 22,249,249, - 5,160, 25, 14, 82,185, 3, 24,142, 0,205,114,160, 25, 14,102, 11,163, 24, 63,188,215, 68, 19,112,171,172,116,250,214,237,120, - 86, 36,145, 4,240,176,237, 93,203,243, 60, 18,179,140,164,183,183,247, 46, 0,144, 72, 36,144, 72, 36,224, 56, 14,247, 98,212, - 95,185,135,134, 76, 64, 49,193, 99,173,150,228,194,164,127,122,148,151,119, 47, 47,175, 62,111,146, 44,147,201, 4,157, 78,135, -171, 55,238, 56,109,222,126, 32, 34, 49, 57, 45,136,227,157,204, 14,170,160, 30,218,156,248, 62,229, 61, 79,109,118,204, 68,199, -240, 49,228,212, 47, 71, 4,175,217,118,226,246,139,179,243, 43,140,211,170,213,229,123,203,212,113, 31, 55, 95,188,122,203,243, -130,127,126,159, 82, 89, 25, 9, 4, 2,161, 90,173,126,249,126,175,221,180,187,249,253,152,244,143, 86,173, 92, 37,189, 23,175, -197,227,196, 12,140,232,234,111, 27,225,216, 81,238, 10,207, 32,247,192,218,181,119,173, 95,189, 88,240, 60,195,132,117,135,110, - 35,242,232,239, 87,179,114,110, 69, 32, 59,211,248, 46,109,200,191, 64,180,202,181,121,241, 81, 46,116, 38, 6,102, 11, 3,154, -227,161, 49,208,200, 41,180, 64, 99,176, 66,103,100, 48,162,155,127,153,247, 85,194, 71, 60, 8,130, 56,193,243,124,111,158,231, -187, 2, 16,151,156,219,250,108,226, 68, 49, 33,123,237,124,198,140, 25, 63, 46, 90,180, 40,186,228,183, 37,215, 75,126, 91,209, -245, 82,247,187,253,240,195, 15, 13, 23, 47, 94,188,176,117,235,214,123,174, 95,191,158, 0,160,192, 94,247,161,160,116,102, 78, -156, 56, 81,217,131, 14,178,210, 86,137,163, 76,136,192, 90,254,248,252,199,173,238,127, 45, 30,157, 35, 21, 11,168,211,167, 79, -187,230, 89,148, 32, 73,202,238, 33,138,210,163, 78, 27,145, 72,124,114,249,242,229, 24,210,167,189, 44, 37,151,214, 61, 74, 49, -102,235, 45, 96, 84, 30, 33,226,249, 11, 23, 43, 23, 47, 89,250,229,137, 99, 92,161, 46,251,201,210,178, 93,124,205,239, 82, 68, -169, 24, 44,130, 0,207,177,105, 5, 73,119,154, 3,192,251,196, 98,233, 76, 52,168,226,216, 26,130, 0, 12, 38, 6, 20, 69,228, - 20,198,236,123, 50,116,222,252,206, 59,246,252,157,193,147,206, 90,189, 62, 81, 14,219,158,131, 85,134,201,194,194, 76,179,136, -126,120, 15, 29,194,235,163, 77,243,186, 48,152, 88, 24,204, 12,106,213, 14, 5, 0,247, 50, 11,142, 34, 19,120,150, 54,241, 60, -235,208,187,133, 7, 84,206, 98,120,187, 72, 32, 17, 11, 64, 51,128,209,194,193,100, 97,145,148, 99,132,214, 40, 67,163,142, 3, - 3,221,188,239,154,179,146,100, 71,242, 83,238, 14,168,144,156,178, 44,182,237, 58, 16,156,145,145,221,239,212,145,157, 18,181, -134,198,163, 36, 61,114, 10,205, 0,229,129, 89, 11,215, 73,190,159, 50,246,163,109,187, 15, 38,119,105,223, 42,185,170,121, 54, -168, 99,118,236,219,127,224,247,222,189, 63,146, 69,223, 58,133,231, 15, 46, 44,208,231, 84, 41, 62,139, 12, 11, 11, 99,198,142, - 29,171, 93,184,112,161,223,177, 99,199,106,169,213,234, 7, 0,104,103,103,231,186, 33,193, 1, 15,207,157, 57,237,219,235,163, -129,194,180, 92, 35,156,228, 34, 4,168,228,184,113,245, 44, 45, 22, 11,203,140, 55, 41,118, 15,126,138, 46,223,225,216,141,132, -136,232, 60,233,165, 49,163, 71, 36,159,187, 18,147,183,118,251,185, 95,125,149,244, 3, 41,167, 94,123,183,121,109,175, 25,147, -134, 99,209,154, 29,184,124, 47, 38, 71, 79,122, 47,200, 52, 51,127,151, 47,165, 3, 2,138,128,131, 76, 8,189, 70, 93, 20,119, -255, 76,200,191, 36, 83,143, 56,119,100, 7,153,175,165,145,154,107, 34, 50,242,181, 96, 57, 30,206,114, 17, 24,142, 71, 97,126, - 46,177,115,199,118,220,185,115,131, 4, 69,126, 1, 96,118,133, 15,148,176,185, 10,149, 82,161, 77, 17,146,217, 62,105,150, 67, -104,112,109,108, 92,187,194,209, 93,229,137,118, 29,236,143,141,118,112, 11, 8,219,243,231, 90, 92,186,126,255,131,203,171,214, -181, 80,250,120,172, 33, 8,118, 25,120,152,204, 86, 22, 69,133, 5, 16, 91, 82,209,210, 87, 13, 87, 57,139, 36,141, 55,162,178, -158, 43, 43,107,240,243,162, 14, 63, 32,248,143,102, 30, 56, 30,185,168, 71,183, 15, 16,149,164,129, 76, 44,128, 84, 76, 65, 42, -166, 32, 36, 88,172,216,240, 59, 93, 80,164,237,157, 23,125, 52,247, 29,234,231,249,226,209,175,141,220,177, 58,143, 29,107,102, -254, 53,230,187, 37, 61, 34,250,143, 36,162,238, 92,252,209, 0, 92,176,111,160,199,219,117,141,227,236,239,227,164, 14,238,171, - 39,127, 63,127,114,247,222, 3, 65, 81, 2,208, 52,141,131,123,119,224,207,117,179,158, 89,116,121, 35, 1,112,150, 28,106,236, -190, 29, 27, 6,126,247,203, 10,162, 97, 88,203, 86, 23, 51,223,222,222,147,163,136, 63, 62, 27, 61,110,176,167,167,167,195, 43, - 69,139, 71, 72,104,125,244,236,251, 49,206, 30, 61,140, 39,209,143,192,241, 54,194,196,113, 60, 10, 11,242,178, 24,218,178,173, - 92,143,135, 84, 26,176,245,207,237,117, 72,146,120,185,129,252,148,137,159, 91,198,127,243, 99,187,158,221, 59, 70,139, 41,104, -146, 82, 50,157,111,220,127,218,136, 19, 42,253, 70, 79, 91, 33, 50,153, 89, 20, 25,104,156,218, 82, 62,215,145,186,248,183,174, -217,172,231,232,241, 63,111,148, 72, 40,210,218, 32,196, 47,161, 99,120,131, 84,127, 31,119,237,220,197,235, 90, 94,187,117,191, -231,160,161,163,165, 35,234, 54, 35,124,220,100, 14,159, 15,237,223,152,101,172,159, 25,242, 83,203, 93, 95, 80, 40,119, 41,244, -175, 21,108,120,165, 24,133, 28, 34,120, 4,190,198, 60, 8, 36, 24,179, 99, 7, 0,128,183,143,191, 73, 40,113,212, 86, 65,129, -225, 1, 96,205,166,221,205, 31,198,102,140, 89,185,114,149,252, 94,188, 22, 15,226,139, 32, 17,145,176,210, 28, 8, 59, 69,109, -142,167,198,253,244,195, 12,199, 2, 61,139, 75,143,212,136,190,123,145,183,232, 76, 67,229,140,227, 0,168, 28, 62, 3, 80, 27, - 64, 28, 65,240,127,232,179,189,142, 2,151,153,170,214,123,142,179,141,151, 29, 61,130, 2, 89,129,164,167, 80,172,104, 77, 16, -124, 3,130,135, 11,192,167,231, 23,247,169,246, 50, 53,125,118, 44,150, 44,252, 5,171, 55, 31, 70, 70,158, 9, 78,108, 42,142, -110,153,143,169,139,118,193,104, 46, 63,170,161, 50, 62, 82, 22, 49,122,147,112,149,124, 47,249,221,162, 69,139,122,191, 81, 54, -189,203, 41,179,183,126, 87,114,255,226,197,139, 23,150,250,187,193, 94,146,245,146,104,149,100,170, 18,178, 21,226,225, 29,112, -253,232,145, 67, 46, 5, 58, 43,164, 34, 10,254,181,130, 49,123,237, 81,143, 15,155,187, 35,215,234,132,221, 27,151,229,155, 12, -218,189,118, 53, 22,170,208, 86, 50,165,226,212,161,131,135, 17,228,175, 18,237,188,154,159,120, 63,193,248, 82,234,213,168,147, -197,181, 28, 13,130, 1,253,251,203, 47, 68, 94,252, 70, 7,148, 73,180, 40,130,170,177,105,251, 65,149,131, 76, 8,130, 0,180, - 70, 6, 99, 62,251,248,253,187, 49,158,163, 70,143, 28, 1,162,152,100,105,242,178,240,227,247, 19, 77, 10,250,249,147,148,164, -148,244,174,125,166, 94,208,232, 8,211,224,225, 19,239, 60,137, 93, 84, 96, 48,188,219, 38, 63,102, 11, 11,179,149, 67,124,124, - 28,166,140,232, 6, 33, 69,130,162, 56, 91,176, 52, 83,126,101,212,101,196,230,195, 75,244,201,142,229, 95,109,242,241, 84,185, - 41, 21, 50, 94, 41,151, 16, 13,234,214, 17,133,135,183, 17,215, 10,109, 44,186,250,212,136, 20,181, 17, 9, 25, 69,144,120, 54, - 17, 12,233,252, 33,118,172,154,246, 65,126,202, 93, 18,111, 7, 41,190,134,191, 47,221,236,179,121,195, 74, 73,118,161, 21,207, - 82,116,200, 42, 48, 33,179,192,140,172,124, 19,148, 50, 33, 58,244, 29, 43, 57,121,244,143, 62, 93,218,183, 90,243, 46,249, 78, - 72, 72, 60,153,148,158, 57,176,113,211,150,216,241,215,159,237,157,157,107, 57, 22, 22, 38,106,236, 45,157,249,243,231,139, 23, - 47, 94, 44, 88,187,118,173, 38, 60, 60,220,235,135, 31,126,232,145,147,147,115,187,102,205,154,161,103, 15,109,139,108,210,161, - 95, 11,112, 86,143,246, 29, 59,137, 36,156, 0,231, 78,156,176,238,219,187, 51,207,104,212,142,175,144,112,200,157,230,103,235, - 8,120,248,250, 70, 43,197,108, 55, 1, 89, 24, 91,112,102,242,246, 2,224, 80, 80,196,164,243, 23,239,198,196, 54,191,151,164, -138,188,247, 34, 39,223, 96, 13,137, 63, 51,181,194,134,151, 34, 8, 8, 41, 18, 14, 50, 1,200,226, 86, 85,233,211,248, 5, 8, -194,163, 68, 57, 37, 64, 20,127, 2, 4,129,140,130,148, 7,118,196,108, 16, 60,199, 3, 49,105,122,232, 76, 54,105,190,134,187, - 28,234,236, 52,252,182,102, 27,238,223,189,131,238, 31,246,197,250, 77, 59, 49,230,179,129,166,202, 70, 63, 36, 89,172,104,149, - 82,179,148, 50, 1, 0, 2,133,122, 26, 7,175,165,162,118, 32,105,119,199, 0, 0, 14, 74, 57,138,180, 70,144, 34, 7,196,221, - 59, 37, 63,125,241,214, 15, 51,231,173,156, 94,144,249, 40,229,197,227,171, 8,117, 47, 66,160,175, 21,209, 89,142,184,155, 87, - 11,161,193, 65, 32, 69,119,236,178,157, 27,221,104,201, 81,242, 96,239,230, 77,234,183, 14, 80, 57,195,104, 97,139, 85, 45, 10, -127,110,221,142,164,196,180,209,121, 79,142,222,255, 55, 24,173, 62, 39, 65, 45, 81, 5,127,249,248,214,133,132,254, 67,191,132, -183,175,127, 88, 97,202, 3, 59, 59, 47,251, 72, 21,107, 39,209, 18,201,157,127,152,242,211,175,147,187,247,250, 4, 55,175, 94, -192,131,232, 56,180,106,213, 2, 31,126, 52, 4, 90, 77,126,221,253,219, 87,117, 99, 12,218,179, 2, 9, 51,185,101,155,206, 4, -199,178,120,254, 44, 42,174, 44, 91,198,204,152, 7, 55, 50, 99, 28, 95,115, 79,185,215, 13, 83, 58,185, 62, 48, 91, 89,164,167, -167,225,159,235,151,154, 26, 51, 99,170,180,128,176, 68, 68,225,220,253, 28, 88,139,247, 48,237,208,177,155, 69, 68,154,219, 47, - 88,185, 53, 60, 51, 35,147, 84, 56,186,115,174,190,245, 68,222, 18,171,249, 97,124,145,200, 74,115, 8,242, 81, 84,104,211,195, - 39,120,225,180,105,171, 35, 12, 6, 0, 0, 32, 0, 73, 68, 65, 84, 83,234, 81, 34, 25,180,122,179, 37, 51, 35,221,107,227,238, -139,186,167,207, 30,251,214, 80, 57, 57,254,186,234, 15,145,198, 68, 32,167,200,140,124,173,134, 24, 58,238, 59,159,205,235, 22, - 13,171,136,104,149, 17, 46, 18,120,242,220,213,186, 46, 14, 34, 66,103, 98,184, 60,141,149, 29,250,209,251, 77,186, 44, 38, 89, - 99, 87,174, 88, 37,191, 31,175,197,195,248, 34, 72, 69, 20,196, 34, 18, 22,154,131,157,175, 19,233,165,242, 26,223,166,121, 35, -156,125,144, 11,138, 34, 97,212, 22, 24, 4,200,139,109,254, 65,119,121,179,150,225,232,244, 65, 71,188,136,141,241, 63,113,236, - 96,151, 27,255, 92,206, 98,172, 33, 95,233,213,177,135,171, 36, 44, 24, 12, 20, 45,246,250,220,219,183,102,219, 1, 67, 62,119, - 10,240,247, 37, 84,238,110, 96,120, 1,198,126,246,177,221,111,190,141,152, 3,139,231,253, 0,179,217, 2, 15,103, 49,120, 30, -216,186,102, 54, 44, 22, 11,124,220, 36, 40,210,151,191,155, 92,101,124,164, 60, 21,170, 74,177, 39,165,200, 88, 69,215, 9,130, - 56, 49, 99,198,140, 31, 1,240, 51,102,204,248,177,228,124,209,162, 69, 70, 0, 25,149,184, 14, 55,190, 70,180, 74, 50, 87,254, -219, 45, 10,117,119,243,190,113,238,236, 25,167, 35, 15, 57,220, 60,124, 23,189, 90,121, 67, 36, 32, 33,119,242,193,195,196, 34, -156, 60,180,161,240,232,158, 63,210,205,102,243,210,202,125,205,193,205,149,114,197,217,191,118,236,229,220,221,220,200,223,206, -169,227,243,180,204, 75,151, 86,236,173, 99,220,221,179, 27,189,121, 16,103,164, 82,105,176,197, 98,113,169,172, 96,183,158, 75, - 46, 14,226, 37,254,141,182, 21, 4, 69,177, 59,118,238,128,187,163, 24,102,154,195,140,233, 95, 27, 71,116, 87, 22, 14, 29, 52, -164,115,167,158,147, 35,133,138, 58, 23,218, 52,173,195, 55,105,210,164,144,162, 40,187, 66, 41, 84, 42,213,108,146, 36, 63, 21, -139,197, 14, 22,139, 69,107,225, 76,114,189,201, 2,147, 21, 48, 24, 76, 16,138,108,100, 81, 72, 17, 48,154, 44, 48, 24, 45, 21, -191, 24, 89, 81,215, 0,132,104, 74,105, 74, 23,158, 6,137,119,237, 63,250,245, 39,131, 6,207,244, 13,251, 72,153,152, 89, 4, - 17, 97, 69,139,122,222,184,120,230, 48,159,150, 20, 59,165, 50,146, 5, 0, 57,234,124, 63, 15, 15, 79,220, 79,208, 33, 61,207, -136,172, 98,146,149, 89, 96,134,214,168, 69,227, 0, 31, 20, 22, 21,249,189,243,243, 5, 14,159, 61,123,118, 96,207,126,131, 49, -121,250,156,118, 91, 54, 44,123,164, 16, 11, 71,233,179,159, 95,178,135,104, 69, 69, 69,229,127,255,253,247,181, 55,109,218, 68, - 14, 27, 54,204,216,168, 81, 35,233,240,225,195,219,109,223,190, 93, 42,151, 75,141, 15,175, 30,155,249,197,164, 25,253, 54,174, -158, 31, 86, 80, 80, 64, 48, 52,125,218, 90, 80, 48, 67, 87, 9,153, 75, 61,246,227,179, 89,241,214,145,221,218,123, 28,115,149, -147, 13, 36,188,101, 8,234,205,222,139,167,179,173,241,103,214,106,101, 3,151, 79,202, 40,228,126, 50,145,170, 5,149,145, 44, - 0, 32, 41, 2, 22,134,133,131, 76, 8,146, 36, 75, 72,188,247,159,123, 79,203, 61,156,196, 16, 82, 36, 4, 20, 1,141,129, 70, -174,198,138, 47, 63,183,119,133, 16,158, 99, 88, 30, 70, 11, 3, 67,241,232, 80,171,201,197, 15,211,191,197,135,125,250,227,139, -241,223,162,192, 8,220, 77,208,194, 74,211,149,190, 20, 36, 65,194, 96,102, 48,170,123, 0,242,117, 86,232,141, 12, 44, 12, 7, -185, 88, 0,161,128,132, 66, 42,128,163, 92, 8,240,188,168,164, 49, 17, 10,133, 38,154,166,119, 84, 48,162, 71, 45, 63, 79, 24, -105, 18, 45, 7, 47, 67,215,214, 33,136,190,118, 80,112,249,230,227,192,111,166,255,132,175,199,244,193,129,103,181,225,170, 10, -128, 82, 33, 3,205,147, 0,120, 59, 3,246,102,115,164,181,255,167,191,111,218, 26, 51,247,151, 25,210, 66, 61, 1,137,136, 66, -228,133,243,184,113,235,238,234,220, 39, 71,119,224, 95,132,144, 39, 61, 29, 29, 29, 33, 21, 83,176, 88,205, 22,251, 67, 23,120, -240, 64, 83,133, 42,228,247,226, 17,127, 83,150, 67, 25,215, 42, 39, 90, 2,169,227,140,175,166,207, 93,216,189,215, 39, 56,119, -226, 0,246, 31,216,203,182,142, 24, 77,237,252,115, 3,218,117,237,139,118,221, 7,227,244,225,237,223,234, 57,162,254,216,201, - 51,231,117,232,220, 19,231, 78, 30, 64,118, 86,218,114,123,211, 75, 9,137,201,157,187,245,129,201,194,162,125,151,222, 56,115, -252,240, 36, 20, 79,178,176,191, 19,123,163,125, 6,201,124, 59,101,178, 48,167,208, 34, 84,107, 44, 72, 83, 27,144,152,109,192, -209, 61, 91,120,251,219, 11, 75,139, 14,141,107, 8,199, 46,137, 76,245,171,225,109, 22,154,141,178,216,184,248,186, 95,124, 62, - 66, 24, 24, 92,151,204, 41, 50, 67, 93,100, 70,110,145, 25, 58, 19,131,224, 26,117, 72,154, 33, 90, 87,181,156,221,157,196,194, -245,199, 19,224,168, 16,162, 77,221,119,159,104,203,113,220, 43,146,181,210, 70,178, 30, 37, 20, 65, 34,162, 32, 17,145,144,136, - 40, 48, 44,111,215,192, 69,166, 10,233,249,229, 87, 19,125, 44, 12,144, 87,100,129,128, 34,160,114,119, 81,180, 8,251, 20, 91, -151, 77, 2, 0,140,249,254, 55,124, 49,106, 56,234, 53,104,132,194,130, 2,175, 79, 63,233,185, 18,192, 97,123,211,122,234,220, - 37,255,115, 87,238,127,255,229,180, 89,202, 65,125, 58, 81, 15,226,139,144,153,111, 70, 92,172,182, 74,202, 27, 0, 48, 44, 7, - 30, 60,182,237, 61, 1,153, 88, 0,117,145, 21, 60,207, 99,254,218,125,112,144, 9,145, 89, 96,115,247, 87,132, 10,249, 72, 5, -138, 84, 21,212,198,222,176,197,114,121,216,171,104, 45, 90,180, 40,122,209,162, 69,101, 42,100,165, 72,214,187,109, 42, 45, 18, - 41,234, 58,186,185,223, 60,119,230,148,195,225,135, 44, 46, 62,204,195, 39,237,107, 64,151,159,130,165,211, 7,229, 19,224, 45, - 36, 69, 21,154,141,134, 67, 70,163,126, 1, 0,107,133,149,198, 43,164,169, 66,170, 60,191,126,227, 95,140,187, 74,133, 29, 87, -243,211, 10,244, 12,253,202,109, 69, 19,119,207,110, 12,100, 56, 58,194,148,253,226, 78,101, 35,113,142,135,104,209,134,163, 0, -120,112, 28, 7,158,227, 32,148, 42, 21,238, 65,225,217,197, 13,157, 84, 64, 18,166,210, 45, 0,207, 49,105,185, 9, 21,203,160, - 4, 0, 39,185, 16,123, 47,167, 3, 64, 54,165,189,247,116,232, 32,155,187,208,100,145,106, 26,212,174,205,183,104,209,162, 80, - 38,179,107,249, 43,202,211,211,243,246,204,153, 51,235,126,241,197, 23, 18,177, 88, 12,134, 97, 92,255,216,184,145,219,184, 96, - 12, 6, 76, 90, 15,145, 88, 2,163,201, 10,161, 80,128,130, 34, 29, 10, 53, 6,104, 13,116,213,107, 80,124,188, 69, 13, 44, 57, -114, 88,220,191,135,178,113, 75, 49, 41, 66,179, 80,111, 92, 60,123,132,191,121,102,235, 24, 99, 78,236, 95,118, 86, 68,232, 76, - 52, 50,242, 76, 72,207, 51, 33,171,192,132,172,124, 51,178, 10, 76, 32, 8, 2, 38, 11,243, 94, 29,151, 62, 39,102,255,142,191, - 54,247, 53, 91, 49,164, 67,247,254,248,118,214,250,128, 29,191, 47, 62,159,192,147,109,237, 12,180,101,163,163,163,147, 62,255, -252,243,176,221,187,119, 83, 13, 27, 54, 52, 62,125,250, 84, 94, 76, 34,173, 74,165, 92,182,101,221,162,179, 45, 91,182,220,155, - 30,251,236, 66,177, 63,189,210,134, 61,160,227, 72,137,204,122,127,172,191,162, 77,143, 32, 47, 57,252, 21,218, 30,117,149, 15, -151,230,117,254,122,161, 58,114,117, 78,166,153,249, 91,109,164,154,164,235,132,118,197,224,209,102, 83,242,128, 79,134,128, 34, - 72, 88, 77,134,228,146,202,165,114, 18, 99,246,206,103, 80, 74,133,112,144, 9,160,148, 9,209,174,190, 43,170,208,158,241, 52, -203,193, 96,102, 97, 52, 51, 48, 89, 24,184,251,185, 96,211,142,253, 72,201, 49,226,232,157, 92,196, 36,107, 81,167,134, 2, 60, - 95,121, 51,201,177,180,190,207,199,195, 28, 40,146, 0, 69, 18,100,253,186, 33,200,215, 89, 33, 18,144, 16, 73,101, 80, 72, 4, -112,148, 9, 33, 18, 9,145,147,147, 3,179,217, 12,127,127,127,105,197, 84,144,135,131, 82,134, 58,129, 62,176,210, 12, 78, 93, -121,130, 5, 83, 6,160, 91,135,230, 32,132, 74, 60, 51, 55,133,131,171, 3, 56,146,132,149,225, 96,177,178, 0, 72, 83,121,246, -252,252,252, 58, 43, 20, 10,133,193, 96,208,166,164,164, 92,202,138, 57,156,194, 82,253,198,158, 57, 23,185,163,247,135,221,112, -255, 81, 52, 14, 28, 62,118, 53,215,173,104, 90,201, 61, 13, 26, 52, 8,119,119,119, 87,230,229,229,105,162,162,162,110,191,235, -184,128, 39,201,111, 90,183,251, 0,186,194, 28,100,167, 38,218, 61,138,174, 23,224,128,159, 23,173,111, 22, 26, 18,218,140,229, -109,196,171,190,191, 3,166,206, 90,211,172,118,157,144,102, 37, 19, 66,234,249, 87,188, 44,155, 64,238,208,253,179, 47,190, 93, -212,247,147,145,136, 60,119, 12, 43, 22, 76,223,161,112,242,168,231,234,226,212,164, 97,120,119, 92, 61,127, 12, 82, 7, 47,184, -184,121,181, 27, 54,234,171,174,159, 12, 27,135, 27, 87,207, 99,245,226, 31,183,179,102,237, 46,123,210,170, 80, 5,122,132, 53, -109, 57,212,193,213, 19,133, 69, 90, 56,184,168, 80,175,113,139,161, 79, 30,154,191,215,231, 36,168,223,153,116,240, 60,204, 86, - 30, 5, 58, 43, 82,213, 70, 36,101,217,136, 22,199, 85, 33, 38,136,229, 8,165, 84, 32,112,165, 95,248, 63, 62, 31,201, 7,248, -121, 18, 75,230, 77,167,172,144, 66, 93,104, 35, 89,106,141, 5,234, 34, 11,116, 38, 26,174, 10, 1, 56,150,171,242,168,187, 64, -103,133,131, 92, 8, 39,185,200,110,149,177, 44,108,248,115,111,232,195,216,140,143, 86,172, 88, 37,127,144, 80,138,100, 9,109, -106,150, 68, 68,129,229, 56,192,142, 55, 94, 40, 16, 78,238,215,179, 43, 82,115,141,182, 89,203, 36,129, 58,141, 90,194, 93,198, -161,203,224, 25, 0,128, 62, 61,109,161,109, 9,153,122, 28,191,169, 6, 94, 15,236,174,184, 45, 54, 26,169,141, 59, 79,126,179, -127,223, 30, 39, 19, 43,192, 31,167,147, 96, 48, 51,144,138, 40, 72, 68, 20,100, 34,234,181,120,236,202,137,150, 45,230, 46, 37, -151,134,193,100,130,198, 72,131, 7,112,251,133, 14, 70, 11,131, 34, 61,141,240,186, 46,239, 39,132, 16,196, 73,158,231,123,189, - 73,136,222, 36, 75,165, 20,169,178,108,220, 41,109,163,228,247,229, 17,185,210, 49, 91, 0,170, 52,131, 75,240, 38,115, 44,125, - 46, 82,184,212,115,114,112,186,121,230,244, 9,229,225,135, 28, 46, 61,178,145, 44,218,152,139,229,223,127,154,166, 41,204,237, - 4, 32,222,222,127, 38,119,175,215, 88, 42,150, 68,254,186,234, 15,171,202,211,151, 59,116,179, 48,167,200,192,190,198, 38, 88, -179,153,228, 57, 94,100,202,126, 97,151, 15,129, 36, 9,235,172, 73,253,193,241, 60,102,175,218,143,133,211, 6, 67, 41, 27, 38, - 39, 8, 66,174, 55, 49,152, 50,103, 51,150,255, 60,218, 65, 46, 17,128, 32,108, 49, 81,159, 13,233,111, 95, 5, 52, 49,136,187, -181, 91,167, 77, 56,241,180,180,187,176, 85,187, 15,239,182,106,213,170,208,197,197, 5, 50,153,236,149, 82, 81, 14, 60, 61, 61, -127,158, 53,107, 86,232,248,241,227, 95, 46,246, 41, 16, 8,240,229,196,137, 36,203,242, 56,125,122, 43, 60,106, 54,197,177,191, -111, 34,162,115, 11,232, 12, 38,228, 23,106,193,129,122,231,138,168, 45,204,141,204, 74,122,220,178,109,167, 62,184,116,246, 8, -127,243,244,150, 49, 85, 89,163,199,197,213, 37,245,222,227,184,122, 4,225,106, 83,180,138, 73,150,133,230, 16,224, 41, 71,106, - 82, 28,156,157,156, 82,237,181, 39,243, 8,237, 71,144,252,120, 2,252, 86,125,246,243,253, 0,120,125,230,211, 79,247,239,218, -248, 40, 58,234,193,130,222, 67, 39, 11,186,127, 50,145,250,125,209, 87, 63, 2,176,119,225, 61,107, 76, 76,204,147,209,163, 71, -183,185,113,227, 6, 11,192, 64, 16, 4, 77, 81,148,220, 98,177,136, 58,117,234, 84,244,236,217,179, 75, 40, 59,104,241, 53,180, -251,124,191, 59, 33,209,126, 40,230,172,159, 6, 56,104,187,117,106,223, 26,173, 27,248, 33,181,125,107, 0,152,156,172, 83,134, -154,106,111,222, 75, 51,178, 83,191,255,121,124,225,152,193, 93,167,236, 16,204, 94,145,121, 98,118,133,129,168,169, 79, 47,247, - 40,139,198, 11, 40, 18, 14, 50, 33,148, 50, 1, 28,100, 66, 56, 72,133,160, 25,190, 42, 35, 71,158,102, 56,155,162,101, 97,160, - 51, 50,136,124,144,141,172, 34, 11, 10,181, 86, 24,173, 44,120,240,182,209,168, 29,173,185,250,197, 63,206, 37, 61,169,179,127, -211,162,141,107,151, 57, 30,188,150,246,114, 70,159,147, 92, 12, 7,185,109, 54,246,149, 43, 87,224,230, 86,249,104,159,227, 56, - 28, 56,115, 27, 43,182, 69,226,204,214,239, 32, 21, 81,104,220,111, 14, 70,126,212, 10, 28,207, 33, 46, 38, 58,187, 78,253, 48, - 79,146,148,129, 36, 8,152,105, 14, 0, 95,238,243,180, 88, 44,110, 41, 41, 41,154,224,224, 96, 47, 31, 31,159, 79, 40,138,226, -161,125, 96, 62,178, 39,223,112,225,196, 46,185,222,104,102,229, 76,209,214,224, 76, 99, 47, 4, 7,131, 32, 8,222,209,209, 81, - 20, 25, 25,169,107,212,168,145,199, 59,190, 74,164, 76, 21,178,250,139, 9,223,124, 82, 59, 40, 8,251,119,109, 5,207, 19, 7, -237,189,121,231,241, 27,152,247,195,235, 51, 12,167,206, 90,211,108,249,156,201,175, 93,155,240,195,138, 10,103, 29,202, 36,202, -105, 3, 62, 29,139,187,183,175, 99,233,156,169,123,204,186,252,145, 52, 67, 15,204,207, 76,216, 19, 88,191, 21,120,171, 22,231, -246, 45,195,224,225, 99, 36,221,123,127,130, 27, 87,207, 99,225,143, 19,118, 26, 10,115, 62,135,157, 65,206, 28, 47, 28,223,169, -199, 71, 66,163,217,138, 53, 75,126,193,184,105, 11, 16,222,185,143, 48,234,193,205,241, 0,230,218, 29, 14, 97,101,209,169,145, -187,141, 60,211, 28,142, 37, 80,130,178,106,160,128, 34,200, 38, 65,206, 48, 90, 24,104, 42, 25, 84, 10, 68,194,172,194, 34, 77, -205,117, 11,191,161,244, 38, 6,234, 34, 11,114,138,204,200, 45,124, 69,176,114,139,204, 80, 23, 89, 32, 20, 16,136,141, 79, 6, - 41, 20, 84, 57, 62,175, 64, 71,163,101,136,139,237, 29,125, 71,239, 8, 45,112,108,117,230,242,195, 1, 43, 86,172,148, 62, 76, -212,226, 81,130,166, 88,201,162, 32, 17,146, 16, 23,127,103, 57, 91,108,100, 69,112,244, 8, 10, 28,241,217,176, 46,142, 74, 25, - 50,158,231, 64, 64,217,150,136,113, 82,249,193, 73, 98,194, 87, 19,198,194,221,205, 25, 41,185,102,172, 62, 28,139, 71, 79, 94, -128, 51, 86, 45,219,107,254,216, 19,241,197,151, 83,157, 73,161, 24,219,207, 38,218,210, 73,177,120,118,243,184, 41, 35,238,177, - 94,167,201,227,193,179,118,198, 32, 19, 60,195,218,170,219,194,217, 51,176,103,219,111, 56,123, 47,231,101, 13,188,118,112, 57, -190,249, 97, 62,114, 53, 22,148, 85, 47, 43,226, 35, 0,212,165,148,168,183,206, 75,145,163,178,206,137,226,115, 75, 57, 54, 44, -111,144, 43,203, 27,215, 45,111,216, 43,107,237,191,141,149,186, 14,223, 34, 69,206, 30, 13,229, 82,197,245,211,167,143, 43,142, - 60,226, 95,146, 44,171, 33,151, 95, 48,185, 79,154,166, 80,221,189, 74, 36,203,163, 78, 67,137, 92,114,121,230,252,213,102, 79, -223,154,204,169, 7,154, 60,173,137,101,222,142, 65, 80,176, 10, 39, 15,147, 64, 44, 89, 33, 52, 90,126,201,205,125,170,175, 76, -121,226,120, 30, 39,110,101,129,231,109, 67,164,125, 87,210, 81, 60, 50, 7,203,217,220, 42,127, 63,200,129,160, 56, 14,197, 94, -249,123,195, 31,191,105,122, 53, 42,210, 15, 93, 56,251,165,187, 48, 60,204,166,100, 57, 58, 58,194,217,217, 25, 74,165, 18,149, -185, 14, 9,130,248,236,139, 47,190,120,107,244,159,147,147,131,174, 93, 58, 97,237,111,155, 16,214,101, 4,254,254,231, 44,172, - 52,135,198,245,131, 80,211,199, 5,169,217,218,119,122,209, 21,158,161, 95,182,236,244,209,143,237, 58,247, 65,228,153, 67,252, -205, 51,127,142,173,234, 66,136,189,186,182, 57, 62,111,222,236,192,153, 11,214, 73, 28,164, 2, 60,213, 89, 64, 18, 4, 2, 60, -229,112, 83,144,184,116,100,187,105,112,159, 54,118, 47,142,231,231,231,187, 99,249,218,141,138,229,139,231,116,186,123,143,136, -212,101,196,230, 3,128, 33, 59,102,201, 51,224, 73,141,235,231, 78,133,117,236, 15, 79,159,160,110, 9,217,207,236, 38, 27, 0, - 12,241,241,241, 9, 51,103,206, 12, 93,188,120, 49, 79, 81, 20, 7, 64,178,106,213, 42,195,243,231,207, 31,192, 54, 53, 23,149, -117, 54, 93,186, 53,152,162, 20,179,225,174,114,178, 65,144,151, 28,173, 27,216,188,162,131,123,181,131,159,191, 63,226,179, 12, - 77,242, 13,156, 80,103,161,130,214,255,241,232, 78, 45,119,106, 12, 99,180, 60, 1,112,180,170,229, 67,224, 85,128,124,137,154, -229, 32, 19,130,179,213,149, 42, 17, 45,179,149,133,209,204,194,104, 97,160,183,176, 48, 88, 88,112,188,237,157, 32, 8, 2, 86, -134,131, 93,195,230, 55,234,190,163,171, 59,130,106, 17,112,148,219,210,230, 88,188,220, 3, 1,192,205,205, 13, 42,149,202, 46, - 85,212, 98,181,189,226, 22,154,123,233,214,183, 88, 25,240, 60,143,216,216,152,239,146, 18, 18,250, 5,215, 9,238, 80,191,113, -152,171, 92, 66, 2, 64,185, 68,203, 96, 48,176, 14, 14, 14, 42, 87, 87, 87, 50, 61, 61,253, 37,121, 14,110,210,137, 57,124,232, - 32, 6, 12,232,175,123,122,251,225,203, 41,238, 70,163,145,104,219,182,173,163,159,159, 31,105, 54,155, 53, 85, 45, 38,133, 71, -200, 71, 46,110,174, 11, 62,251,124, 92, 72,167,174, 17,184,120,225, 28,142, 30,218,253,151, 65, 29,123,206, 94, 35,161,161,117, -223,154,117, 88,187, 78,200, 91,179, 14,107, 6,214,169,144,104,213,111,220,162, 21, 79, 8,112,246,196, 62,222, 68, 90, 39, 0, -224, 88,147,118,223,222, 13, 63,207,253,116,252, 15,181,123,246,253, 20,159, 13, 31, 9,129,128,194,165,191,143, 99,249,156,111, - 79,234,138,114, 70,216, 19, 38, 96,147,222,234,137,124,101,126, 95,251,215,110,136,123, 55,175, 34, 46, 54, 42,250,225,157, 27, - 13,130, 27,133,195,195, 39,224,235,100,119,106, 49,158, 62,181, 86,102,198, 98, 50, 37,143, 28, 49, 28,165,103, 29,182,110, 26, -234, 70,188,249, 2, 0, 48,104,115,172, 91,150, 77,121, 94, 50,235,144,179, 90,146,203,179, 91, 84,160, 62,112,233,159, 91,211, -250,245,138, 32,115, 53, 22,155,130, 85,100, 41, 62,204,200, 45,249,174, 49,163,142,143, 18, 49,209,247, 56, 83, 81,238,193, 42, -190,151,166,145, 3,123, 60, 41,169,187, 28,199,131, 0, 76, 85,118, 75, 9, 29,199, 46, 89,186, 66,250, 48, 65,135, 71,137, 26, -155,171, 80, 72,217, 8,150,144,124, 73,186,108,179,217, 43, 81,135, 8,106,225,168, 17, 67,144,171,177,130,227, 0, 1, 69, 22, - 31, 34,164,104, 9,164,106, 13,200, 45, 80, 35, 33, 41, 25,133, 89,113, 32, 73, 18,238, 62, 33,118,175, 36,205,242, 98,111,131, -133,111,244, 73,175, 14,130, 67,215, 51, 33,151, 8, 96,214,102,227,244,222,101,106,179, 78,179,192,104,208, 29,178,103, 61,199, - 87, 33, 8,132, 90,163, 51,121, 74,132, 20,246,111, 91,135,129, 35, 39,188,214,250,126,247,211, 60,128, 36,144, 95,160, 5, 65, - 16,234,170,181, 75,196,157,138,206,223, 81, 25,123,111, 27,101,144,173,183, 7, 10,229,143, 70,249,211,231,206, 28, 87, 92, 75, -146,224,118, 76,102, 49,201, 82,115,243, 39,245, 74,211, 22,229,247, 0, 16, 91,181,113, 33,217, 99,240,168,105,209, 65, 33,245, -205, 23,163,116,137,133,122,186,220, 56,135,214,159,204,140,190,123,114,109,207, 34, 58,126,162,194,187, 62,203, 49,204, 18,163, - 58,118, 78, 57,174, 67,241,156,213,251, 95,186, 13,191, 95,188,221,246,157,101,193,242, 28,120, 14,248,234,231, 13, 96, 56, 22, - 28,203,130, 99,121,208, 44, 47,175, 44,185, 42,159,154,135, 10,158,237,171, 59,116,238,219,238, 66,103,103,103,184,185,185,193, -205,205, 13,142,142,142,149, 18, 45,161, 80,168, 20, 8, 94,127,212,201,201,201, 72, 74, 74,130,163,163, 35,120,142,134,133, 6, - 26,134,119,199,227,184, 40,156,191,246, 0, 60,199, 66,161,172,250, 46, 47, 10,207,208,137, 45, 62,232,183,174,115,223,209,248, -251,208, 31,252,157, 43,199,199, 25,115, 98, 55,219,173,208,179, 44, 65,211, 52,122,117,255, 32,249,126,244,139, 51, 63, 77, 27, - 31,209,166,247, 56, 73,235, 80, 95,152, 44, 44,210,146,226,112,233,200,159,166,144, 64,239,179, 93,218,183, 74,166,105, 26, 44, -203, 86,218,145,155, 44,214, 92, 74, 40, 83, 12, 25, 50, 84,120,231,246,237,131, 10,143, 58,251, 89,130,124, 72,240, 92, 99,130, -231, 7, 52,110, 92, 15, 86,154,131,193,160, 41,168,106,158,181, 90,109,194,214,173, 91, 3, 71,140, 24, 33,175, 95,191,190, 48, - 46, 46, 14,203,151, 47,207,211,106,181, 9,246,218, 56,119, 37,102,149,128, 40,120, 94,162,104,165,180,107,141, 33,189,219, 97, -207,201,107,184,116,245, 6,146,117,202, 7, 58, 70,112, 36, 53, 57,195,220,192, 85,115,176,111,235,154,212,254,109, 5, 7,163, - 63,152, 49,136,231, 37,231,114, 47,207,214,219,255,114, 3, 90, 35, 13, 71,185,109,189,167, 18,101,139, 34, 8,187, 25, 17, 1, - 36, 92,189,113,175, 97,243, 58,245,113, 63,161, 8, 57,133,102, 24,205, 12, 56,142, 7, 7, 30,110, 14, 98, 72, 69, 36, 82,146, - 18,192,241,214,196, 42,118, 21,234,142, 29, 58, 10, 0, 2, 4,193, 11,132, 2, 1,120,216,214, 87,148,201,100, 58,149, 74,101, -151,162,101,101, 24, 12,136,104,133,240, 22,141,209,111,156,109,205,204, 11,127,205,128,139, 82,136, 61, 59, 54, 35,245,202,170, - 29,129,173,199,159,139,122, 28,253,113,244,253,235, 67, 63,108, 38,107,226, 37,200, 16,149, 39,147,234,245,250,131, 0,196, 34, -145, 40,162, 67,135, 14,174, 7, 15, 30, 44,116,119,119,231,196, 34,145,186,111,159,222,156, 80, 36,202, 47,249,237, 63,255,252, - 35, 28, 55,110,156, 67, 65, 65, 65, 74,118,118,246, 13, 0,116,197, 3,193,208,174, 32,177, 27, 4, 33, 85,202,228,201,181,106, - 5,249,180, 8,111,229,244,209,128,129,144,136, 37,248,251,220, 25,172, 89,185,120,159, 46,243,233,168,170, 60,201,127,107,214, - 97, 90, 74, 98,130,193,104,110,212,176,249, 7,196,213,115, 71, 38, 91,225,190,146,146, 88,151,117, 29, 48,161,118, 66,134, 14, -107, 22,125, 7, 23, 39, 5, 18,227,158, 25,159, 63,125,188,129, 54,105,190,179,155,100, 1,144,231,177, 31,183, 30, 30,225, 98, -182,178,184, 18,121,210,196, 49, 92,196,141,203,167,226,106,132,180,144, 54,108,209,197, 37,247,232,230, 1, 6, 96, 79,101,118, -210,159,189,173,224,242,150,194,196, 11,145,231,157, 60, 3, 26, 80, 4, 8, 88,205, 38,168,227,239, 48,134,236,103, 26, 77,122, -148, 93,179,112,243, 82,241,243, 15,179,126,157,216,162,121,115, 5, 15,233,107, 10, 86, 9,193,202,213, 88,224,238, 32,134, 81, -163,198,243, 59,103, 76, 6, 53, 85,225,122,103,140, 69, 47,207,205,201, 22,191, 10,103,136, 13,175,232,247,185, 57,217, 98,198, -162,151, 87,222,213, 81,112, 84,136,241, 56, 49,253,101,224,187, 68,104,139,205, 18, 11,169,151,113, 90, 37,109, 65, 37,248, 64, - 36,117, 70,122,158, 9, 4,120,112, 44, 3,134,182, 64,171,209, 32, 61, 35, 11,217, 89,217,208,106, 11, 33, 87,186,160, 97,147, -150,112, 80, 72,241,240,210, 62,240, 60,111,215,186,134, 52, 33, 12,109, 17,222, 94, 18,149,100,139,197,146, 10,121, 28,223,189, - 56, 79,167,201,105,175,203,124,254,188,170,109, 49,195,178,231, 31, 61,121,222,160,134,119, 45,226, 65, 92, 17,118,108, 90, 11, - 75,177,178, 73,211, 44,162, 82,244,200,204, 55, 32, 37,254, 41,207,177,236,121,252,135, 64, 80,190, 0, 8, 65,227,134,245,208, -125,216, 71,248,237,183, 13,136, 79, 72,226, 22, 76,238,153,162,211, 22,126, 88, 5,146,213, 21,197,107,109, 24,178, 99,150, 24, - 93, 90,164, 29,187,159, 79, 26, 45,124,133, 1, 62, 82,143, 0,180, 31,181,252,172, 81,155, 47,102,205, 6,193,241, 29,163,118, -151,101,211,198,160, 97, 89, 48,117, 48,148, 50, 1, 8,130, 64,137,187,112,253,188,177,144, 75,108,190,101,163,153,193,176, 41, - 43,176, 99,197,183,224, 1,124, 58,240,154,161,188,116,194,182,119,225, 87,222,184, 93, 35, 57, 41, 39,189,107,159,169, 23, 76, - 86,137,185,119,255, 17,119,155, 55,111, 94, 40,147,201, 32,147,201,224,232,232, 8, 23, 23, 23, 56, 59, 59, 87,154,119,154,166, -117, 22,139,197, 77, 44, 22,131,227, 56, 36, 38, 38, 34, 49, 49, 17, 69, 69, 69, 80,171,213,208,235, 52,204,237, 11,251, 5, 13, - 91,247,132, 79, 80, 35, 4,212, 9,131,144, 34, 32, 16,144,184,116,108, 83,121,233, 44,155,100,117,236,187,190, 75,191, 47,240, -247,161,141,252,157, 43,199,199, 27,115, 98, 55,217, 91, 70,197,238,158,135, 3, 6, 12,104, 52,110,220, 56,209,172,105,227,206, -158, 60,119, 41,118,255,137,141,125, 10, 10, 10,253,120,158,135,179,147, 83,234,224, 62,109,142,119,106,219, 34,249,194,133, 11, -220,238,221,187,205, 4, 65, 60,174,200,166,173,145,202,249,235,194,249,200,217,237, 59,126,128,205,219,118,119,140,126,242,180, - 99, 92,220,115,248, 5, 4,161, 86, 96, 29, 24, 8, 23, 68, 94,190, 10, 93, 97,206, 95,246,164,243, 13, 85,139, 40, 40, 40,184, - 62,120,240,224,238,215,174, 93, 35, 7, 15, 30,108,200,205,205,253,167,148,138,197, 87,102,243,198,239,253,213, 0,254, 10,232, - 56,114, 95,186,181,240,107, 0,139,253, 3,252,113,233,234, 13,220,184,118,107, 67,174,220,127,206,168, 97,159,143,173,217,151, -250,162,111,235,154,148,202, 69,142, 93, 27,151, 83,199,110, 36,173, 72,202, 99, 55, 47,190, 60,123,158, 61,101,244,178,227,208, - 90,209,182,158, 43,104,150, 7,199,219, 26, 92, 7,169,176,188,134,247, 45,155, 2,139,100,212,248,113,227,226, 26, 54,110,242, -205,176,207,199,139,154, 4,249,225,246,139, 66,128, 32,224,234,165, 64,102,102, 38,174, 28,216,200, 20,164, 63,219, 64, 81,220, -220, 42, 60, 79, 20, 36, 63, 8, 46,117, 58, 54, 55, 55, 23,151, 46, 93, 66, 9,193,242,240,240, 40,143,104,189,102, 51, 47, 59, -227,159,121, 75,255,104, 59,230,179,254,232,253, 65, 3, 92,190, 19, 7, 75,241,122, 77, 37, 83,201, 19,110,252, 46,254,122,112, -144,101,226,128, 16,141,145, 22, 39,253,156, 88,116, 5,182, 61, 88,185,114,210,105,201,207,207, 63, 22, 19, 19,211, 46, 44, 44, -172,230,169, 83,167,242,163,111,157,157, 92, 58, 17, 83,167, 78, 85,254,246,219,111,114,158,231,255,177, 88, 44,241,118,229,157, -196,174,123,119,239,186, 89,105, 14, 87,111, 61,172,215,165,109, 19,112, 60,112,231,206, 29,108,222,178,217,244,248,209,131,101, -250,108,175,185, 21,144,151, 50,159, 39,251,126,179, 14, 95,218,204, 76, 79, 90,246,247,201, 3, 59, 90,116,236,131,161, 95,205, -157,123,233,228,238,217,205,218,247, 38,235,181,232,142,123, 55, 34,113,254,212,153, 95,173,186,252,217,168, 60,118,164,204,116, - 74,100,242, 73,245,155,117, 68, 74,114, 18, 18,159, 71,253,101,202,127,145,145, 28, 71,253,149,145,150, 60, 62,176, 65, 91, 92, - 59,187,103,114, 5, 68,171,194, 58,239,231, 33,219,120,234,196,177, 33,105,105,191,123,233,141, 38, 9,207,243, 38,137, 88,144, -165, 36,181,123, 53,118,167,243,169, 85,157, 81,115,192,192, 97,227, 79,174, 89,179, 82,232,233, 44, 71, 86,129, 9, 26,163, 21, - 90,131, 21, 36, 65, 32,216, 71, 1,131, 54, 31,151, 15, 44,165, 45,186,130,193, 64,156,181, 60,155, 10, 85,232,252,130, 23,145, - 95, 77,157,112, 17, 98, 39, 63,159, 90,157,127,168, 80,173,211,166, 63,232, 51,117,194,241, 80,158,231,187, 40, 84,161, 90,125, - 78,204,204,242,242, 78, 16,182,247,123,104, 39, 63, 88, 25,219,250, 99, 12, 7,176, 28, 87,172,242, 1,252, 75,127, 62, 81, 73, -222, 9,110,239,201,127,144,145, 93, 8,163,133,134,217,194,192, 74,179, 32, 41, 10,206, 46,206,168, 83,171, 41,156,156, 29,145, -157,149,129, 27, 23,142, 33,246,209,229,127, 8, 30,115,140,234,231, 23,236, 41, 35,145,204, 57,212,219,199,139,204,212, 88, 32, - 19, 83,120,112,249,148,149,182,152,151,217, 73,178,222,178, 89,152,151,191,226,155,105,211, 63,253,115,235, 54,175, 70,129,142, - 72,203, 53, 34, 77,109,130,214, 68, 23, 19, 49, 14,102, 93, 46, 30, 69,110,203, 98, 77,218, 21,248, 15, 65,185, 68,139,177,154, -180, 7,207,220,118,155, 49,123, 41,245, 34, 46,158,158,255,117,175, 52,163, 78,211,179,202, 74, 86, 41,252,249,101,224,158,255, -138, 76,188,229, 46,228, 57,112, 60,143,227,183,178, 94,186, 11,185,226,200,203,251,113, 21,111, 35, 88,122,239,194, 15,122, 78, -254,251, 81,140,118,167,209,152,237,244,236,197,178, 2, 0,160, 40,234,229, 81, 18,155,101, 50,153, 44,149,184, 80,182,111,218, -180,233,251,241,227,199, 75, 82, 83, 83, 17, 23, 23,135,194,194, 66, 72,165, 82,156, 57,115,134, 6,199, 44,123,116,237,112, 98, -204,189,115,191,132, 54,239, 94,163, 81,235,158,144,203, 21, 16,240,246, 7, 99,202, 85, 33, 67,154,119,236,187,174,203, 71, 99, -112,254,240, 38,254,206,229, 99, 19,140,234,216,141, 85,125,150,133,133,133,209, 0,158, 47, 91,182,172,201,230,205,155, 3,167, - 77,155, 22,191,125,221,236, 53, 0,144,151,151, 7, 0,184,127,255, 62, 63, 97,194, 4,179,201,100, 74, 40, 40, 40,184,135, 74, - 38, 64, 0,128, 81, 45, 95,184,121,253,226,134,169,233,153,253,131, 26,182,132, 71, 96, 75,120, 5,183, 66,129,214,138,219, 47, - 50, 16,255,244, 2,158, 94, 61,112,202,160,100,102,163,138,235, 27,135,133,133,249,145, 36, 89, 75,167,211,121,213,175, 95, 63, - 76,161, 80,220, 15, 11, 11,107, 42, 16, 8,210,238,222,189,155, 84, 21, 91,201,151,183,153, 3, 58,142, 92,157,172,117,232, 20, -159,101,104,154,172,117,184,111,144, 56,125,171,142, 92,109,254,147,242, 93,193, 91,115,163,247,111,211, 28,220,181,113, 57, 53, -108,236, 84, 54,170,200,229,107,129, 76,252,119,213,228,106, 50,115,226,136,126,175,150,119, 40, 86,178,138,191,219, 37,211, 23, - 21, 61, 42, 2,240,253,163, 39,194,117, 81, 95,143,155,215,184, 69,219,225, 29, 62, 28, 76, 50, 34, 37,206, 30,254,157, 79,120, - 20,185, 95,192,179, 63, 25,237,216, 13,160, 82,119,144,197, 98, 15,201,122, 59,141,169,138, 15,246,239,222, 50,242,224,225, 67, -139, 62,234,219,207,109,253,207,131,176,244,143, 35, 80,200, 36,224, 57, 14,131, 58,249,125,242,203, 23,117,251,248,121, 74,125, - 15, 94, 76,187,242,213,202,168,239, 13, 6,107,172, 29, 74, 12,159,155,155,123, 85,169, 84,170,219,181,107, 23, 46,145, 72,136, -220,220, 92,129, 74,165, 98,156,156,156, 44,105,105,105, 6,179,217,124, 16, 64,149,150, 29,183,210, 28, 18,179, 77, 56,122,232, - 32, 30,222,186,128,167, 79, 99,180, 79,159, 60, 93, 75, 8,248,149,250,236,231,249, 64,149, 7,248,224,202,156,117,200, 87,121, -214, 33,107,214,238,218,190, 97,126,103,131,201, 60, 50,172, 77, 47,212,172,215,150,180,210, 44, 30,223,185,136,139, 7, 86, 46, -181,234,242,103,188, 79, 25,251,212, 8,172,195, 83, 98, 92,191,116, 18, 60,199,109,192,255, 99,239,190,227,154,186,250, 63,128, -127,178,200, 32, 64, 88,178,135,149, 33, 46, 80,180,214,137,179,106, 43,173, 86,173, 90, 87,221,181,250,211, 71, 31,235,168, 86, -176,142, 86,251, 88, 87,109,107,235,170,163,238, 58,112,219,170,168,197, 21, 20, 21, 21, 16, 4, 68,246, 8, 33, 9, 25, 36, 57, -191, 63, 24, 69,203,116,180,213,126,223,175, 87, 94, 26, 72, 62,185,247,230,222,240,205,185,231,158, 3,128,153,205,223, 69, 95, - 56,250,209, 27,111,143,131,189, 83,195,150,138,212,104, 14,158, 98,244,112, 11, 62, 87,125,108,223,230, 95, 30, 60,120,128,187, -119,239, 34, 33, 33, 1,249,249,249,216,177,227, 65,189,222, 31, 77, 65,242,169,184, 88,110,239,129,131,135, 29, 30, 52,116,164, -184,145,127, 32, 55,192,195, 14, 14, 86,124,220, 75, 72, 70,220,181, 24,243,189, 43, 71,181, 6,101,118,255,226,130,228,106, 11, - 63, 75,199,166,206,128,105, 78,249,220,133,237,219,119, 12,248,100,201, 23,237, 28, 26, 56, 85,249, 57,158,151,147, 45,156, 53, -229, 80, 64,212,165,223,235, 52,215,161,217,100,202,155,240,225, 16, 51,175,116,162, 80, 84,180, 83,151,109,189,210, 47, 83,165, - 63,103,102, 99,173, 45,248,163,223,235, 12,163,217, 12,117,177, 1, 74,181, 14,133, 69, 90,100,100,231,225, 70, 76, 12,206, 29, - 62,132,251,247,110, 36,149,232,245, 39,185, 92,206,222,226,172,184,115,245, 59,211,196,111,228, 96,111,143,164,124, 21,196, 66, - 62,146,227,174,233,212,202,194,237, 79,187, 31, 21,231,197,103,100,243, 56,189,134, 12, 25,122,188,123,239,119,101,175,119,232, -105,233,104, 99, 11, 11, 62, 67,252,131,116,200, 47, 30, 87, 39,222,136, 84,150,232, 85,125,158,199,172, 47,255,112,181, 95,117, -104,208,169,223,249,160, 95,151,253, 60, 30, 95,104, 54, 27,117, 6,189,110,224,179, 20, 89, 47, 10, 99,166,180, 15, 63,120,239, -177,239, 6, 70, 51,147,124,240,254,137,226,202,223, 21, 74, 76,204,242,131,247, 47,106, 74, 63, 64,170,239,216,231,234,106,223, -183,124,238,194,148,148,188,171,249,249,186, 51, 0,210,180, 90,237, 83, 47, 99, 86, 86,214,162, 37, 75,150,132,106, 52,154, 38, - 93,187,118, 21,217,216,216, 32, 47, 47, 15, 39, 79,158, 44,137,136,136,136,205,206,206, 94, 0,100, 27,139, 17,252, 83,140,246, -151, 81,247,174,157, 92,208,164, 77,111,143,192, 14,111,215,253,195, 76, 36, 25,223,253,221,177,156,211, 7,126,100, 87,206, 30, -248,184, 56, 39,126,253, 51,108, 86,131, 86,171,189,172,213,106,111,205,155, 55,239,117,103,103,103,231, 5, 11, 22,136,149, 74, -165, 96,221,186,117,218,220,220,220, 76,165, 82, 25,133, 26,250,211,252, 89,116, 73,225, 35, 12, 56,182,239,199,110,108,223,143, -111,218, 58,186,247,146, 53,240,240, 85,228, 60, 74, 42,204, 73, 63, 9,224,116,217, 64,145,245,210,170, 85, 43, 31, 14,135, 51, - 4, 64, 11,169, 84,234,103,101,101, 37, 98,140, 53,225,112, 56,183,205,102,115, 76,179,102,205, 34, 98, 99, 99,235, 53,152,108, -202,185, 45, 58,207,128,142, 63,231,107,204, 22,122,174,197,207, 41,231,182,232, 0, 32,251,212, 39, 26, 0, 7, 99,187,206, 30, -112, 40, 42,121,205,237, 2,217,212,156,179, 95, 28,170,239, 50, 23,166,221,240,123, 94,251,191, 54, 35, 54, 13,192,135, 49,215, -176,226,102,116, 84, 24,135, 65, 96,130,113,113,113,118,194,181,231,145, 47, 16, 8,180,238,238,238, 85, 94, 93, 40, 18,137,180, - 58, 93, 77, 13, 40,231,140,170, 12,108, 0,186,108,217,191,123,203,135, 7, 14, 29,252, 34,164, 71,127, 7,177,135, 7, 94,115, -226, 96,203,156,214, 83,127,141,206,185,242,238, 39,145,223, 38,166,107, 99, 80,207,254, 48, 42,149, 42, 14, 64,129, 74,165,234, -199, 24,123,200,225,112, 60, 11, 10, 10,174,151,148,148,220,172,119, 65, 96,198,176,246,237,219,238,224,112, 56,124,102, 52, 47, -143, 18,240,126,214,102,220, 73,195, 51, 78, 75, 18,248,154, 13,166, 47, 88,221,218,215,175,113,235,242,185, 14,155, 55,180,198, -196,217, 43, 90, 55,108,228,223,250,143,249, 15,107,237, 38,192, 74, 52, 5, 99,246,111, 92, 30, 25,125,233,204,167,142,174, 13, - 27,102,166, 37,222,121,152,112,125,145, 73,171,220,255,172,239,243,131,132,219, 43, 55,252,111,246,204,140, 71, 73, 27, 52, 57, -241,183, 0, 64,147, 19,127,235,142, 28,159,229,102,166,205,204,203, 78,252,223,211,110, 11,181, 90,157,190,125,251,118,219,142, - 29, 59,114,157,157,157,145,147,147,131, 51,103,206,152,205,102,243,163,122,103,229, 39,157, 81,231,115,236,127, 90,255,205,114, - 11,169,245,219, 70,163,209,141, 49,128,207,231,103,232, 53,202,227, 69, 92,233, 39, 40, 72,214,214,252, 55,195,204, 1,192, 45, -159,187,208,108, 54,115,150,175,217,146, 44, 16, 91, 87, 57, 24, 98,137,182,200,210,108, 54,215,121,174, 67, 69,170,220,247,121, - 29,223, 28,198, 22,182,108,211,238,211,146, 18,131,182,236,248,208, 2,208, 50,134, 60, 46,151,115,142,103, 46, 57,161,124,134, - 47, 83, 28, 14,108, 24,135, 15,107, 9, 31, 28,112,160, 42,204,103,243,204,163,222, 0, 0, 32, 0, 73, 68, 65, 84,245,233,147, - 85,101, 65,156, 29,119, 91,147,221,197,251,152,126,247,168,223, 78, 29,125,223,100, 50,189, 86,214,102,240, 64, 87,172,222,163, -202,176,251, 9,184,102,196,171,239, 72,121,177,197,121,193, 47, 84,167,211, 40,255,164,204,128, 70,146,126, 30,238,206,163, 30, - 36,103, 95, 73,124,168,249, 9,143, 79,171,243, 44,203,201,115,118,118,254,140,195,225,140, 16, 10,133, 86,122,189, 94,205, 24, -219,154,149,149,181, 8,127,154,252, 55, 88, 32,113, 42, 30, 37, 20, 91,206, 55,104,213,191,107,178,227,134,213,182,238,150, 13, - 26,247, 18, 75,165,179,181,197,234,173,154,172,184, 45,207,121,123,202, 68, 34, 81,176,149,149,149, 32, 55, 55,247, 50,128,194, -127,210,251,222,178,101, 75, 47, 46,151,251,154,217,108,118, 6, 32, 67,233, 85, 33,185,124, 62,255, 81, 89,139, 22,171,111,102, -167,209,123, 28,123,188,217,124,250,201,200,123,171,202, 78, 43, 86,112, 31,244,181,120,196,219,221,254,251,211,254,131, 85, 93, -117,248,210,237,243,127, 93,102, 23,190,149,107,238,135, 92,161,108,113,143, 0,173, 38, 55,253,209,164,243, 55,115, 46, 3, 40, -122,150,229,180,176,176, 24,110, 48, 24, 36, 22, 22, 22,197, 6,131, 97,251, 63,101,221, 37, 78, 1, 99,185, 96,117,158,153,194, - 12,206,181, 39, 46, 90,121, 85,246, 37, 94, 96, 96, 96,103, 11, 11, 11, 47,147,201,100,169,215,235, 53,197,197,197, 15,146,147, -147,127, 71,245, 19,159,191,208,229,148, 58,249,175,180,176, 16, 77, 3, 0,131, 65,183, 90,157, 29, 63,189,166, 39,214,240,248, -151,250, 61,114,124,173, 77, 60,159, 39,104,128,178,129,185,205, 70, 99, 78, 86,210, 85,255,191,113, 57,201, 83,190,185,148, 73, -153,148, 73,153, 79,226,210,246,164,204,191, 51, 83,236,218,212, 83,236,218,180,206,131, 46, 87,243,120,218,158,164,220,132, 42, -110, 0,234, 48, 96, 41, 33,132,188, 0,102,218, 4,228,239,164,205,184,243,240, 69, 62,158,252,235, 84,219, 39,154, 83, 67, 85, - 90,159, 38,193,167,169,108, 79, 83, 38,101, 82, 38,101, 82, 38,101, 82,230,191, 46,179,182,236,151,241,148,228,132, 39,238, 31, - 1,240,151,116,248,167,102, 85,202,164, 76,202,164, 76,202,164, 76,202,252,183,169, 40,188,184,180, 45, 8, 33,132, 16, 66, 94, - 12,234,163, 69, 8, 33,132, 16,242,108,170, 58,117, 72,133, 22, 33,132, 16, 66,200,115, 80,109,103,120, 58,117, 72, 8, 33,132, - 16,242,108,202, 91,180, 92,241,196,240, 14, 84,104, 17, 66, 8, 33,132, 60, 31, 25,168,170,117, 43, 34, 34,130, 85,245,127, 66, - 8, 33,132,144,191,194, 75, 94,139, 84,110,201,154, 80,118, 31, 64,165, 22, 45, 42,176, 8, 33,132, 16,242, 79, 41,182, 94, 50, -229, 45, 89,229,183,140, 63, 21, 90,161,161,161, 28, 42,182, 8, 33,132, 16,242,119,121, 21,107, 17,238,147, 43, 72,111, 51, 33, -132, 16, 66,254,206, 98,235, 85, 90, 31, 26,222,129, 16, 66, 8, 33,228,217,184, 2,232, 91,233,254, 95, 54, 5, 15, 33,132, 16, - 66,200,171,110, 66,117,247,169, 69,139, 16, 66, 8, 33,228,249, 23, 91,132, 16, 66, 8, 33,228,101, 70, 51,155, 83, 38,101, 82, - 38,101, 82, 38,101, 82,230,171,174,124, 28, 45,160,186,113,180, 8, 33,132, 16, 66,200, 83,233,139,210,241,179, 38,148,253,219, -151, 10, 45, 66, 8, 33,132,144,231,235, 79,211,239, 80,161, 69, 8, 33,132, 16,242,124, 11,172, 31,168,208, 34,132, 16, 66, 8, -121,193,168,208, 34,132, 16, 66, 8,121, 65, 56,168,254,202,129,211,245,200,121,154,171, 15, 78, 83, 38,101, 82, 38,101, 82, 38, -101, 82,230,191, 46,179,182,236,211,120,249,148,143, 12,127, 4,127,116,132,255,225,175,120, 97,186,244,149, 50, 41,147, 50, 41, -147, 50, 41,147, 50, 95,117, 19,158,248,183, 2,157, 58, 36,132, 16, 66, 8,121,190,197, 22, 77,193, 67, 8, 33,132, 16,242,156, - 84,123,154,144, 90,180, 8, 33,132, 16, 66,158, 77,181,147, 74, 83,161, 69, 8, 33,132, 16,242, 98, 10, 46, 42,180, 8, 33,132, - 16, 66,158, 99,145, 53,161,202,223, 70, 68, 68, 48,218, 70,132, 16, 66, 8,249,187,188,178,181, 72,249,138, 81,177, 69, 8, 33, -132, 16,170, 69,234,205, 21,127, 92,109, 56,161,236, 62, 0,186,234,144, 16, 66, 8, 33,228, 89,245,197,227, 87, 30, 78, 40,191, - 79,133, 22, 33,132, 16, 66,200,179,155, 80,227,111,233,180, 33, 33,132, 16, 66,254, 78,175, 98, 45,194,161,183,149, 16, 66, 8, - 33,228,153, 84,213,154,245, 3,109, 22, 66, 8, 33,132,144, 23, 91,112, 17, 66, 8, 33,132,144, 23, 81,100,189,232, 1, 75,105, -102,115,202,164, 76,202,164, 76,202,164, 76,202,252,183, 20, 89,149,135,120, 0, 64, 87, 29, 18, 66, 8, 33,132, 60, 43,154, 84, -154, 16, 66, 8, 33,228, 5,161, 73,165, 9, 33,132, 16, 66,254,226,130,139, 10, 45, 66, 8, 33,132,144,231, 88,100, 61, 86,108, - 81, 31, 45, 66, 8, 33,132,144,103, 83,109, 31, 45, 14,170,191,114,224,116, 61, 94,224,105,174, 62, 56, 77,153,148, 73,153,148, - 73,153,148, 73,153,255,186,204,218,178, 79,227,229, 55, 1,127,209,128,165,116,233, 43,101, 82, 38,101, 82, 38,101, 82, 38,101, -254,219,208,240, 14,132, 16, 66, 8, 33,207,187,176,122, 18, 21, 90,132, 16, 66, 8, 33,207,134,198,209, 34,132, 16, 66, 8,121, - 65, 92, 81,218,170, 85,254,111, 48, 21, 90,132, 16, 66, 8, 33,207, 71, 95,148,182,106,149,255, 75,133, 22, 33,132, 16, 66,200, -115, 84,229, 56, 90, 28, 0,136,136,136, 96,101,247,187,134,134,134,158,163,109, 69, 8, 33,132,144,191,210,171, 90,139, 84,180, -104,133,134,134,114, 0,156,165,183,154, 16, 66, 8, 33,127,135, 87,177, 22,225, 62, 81, 73,118,165,183,153, 16, 66, 8, 33,127, -135, 87,177, 22,225, 63, 81, 69, 18, 66, 8, 33,132,252, 45, 94,226, 90,196, 21,165, 29,225,143,148,253, 11,148, 13,249, 64,227, -104, 17, 66, 8, 33,132, 60,155,242,171, 13,255, 52,245, 14,181, 98, 17, 66, 8, 33,132, 60,155,170, 70,134,255,129, 54, 11, 33, -132, 16, 66,200, 11, 68, 45, 90,132, 16, 66, 8, 33,207,174,114,171,214, 95,214,154, 69, 51,155, 83, 38,101, 82, 38,101, 82, 38, -101, 82,230,191,169,200,122,236, 62,141, 12, 79, 8, 33,132, 16,242,130,208, 85,135,132, 16, 66, 8, 33,207,166,252,138,195,202, -247,169,208, 34,132, 16, 66, 8,121,142,197,214,159,208,169, 67, 66, 8, 33,132,144,103, 51,161,186, 95, 80,161, 69, 8, 33,132, - 16,242,130, 10, 46, 14,170,191,114,224,116, 61,130,159,230,234,131,211,148, 73,153,148, 73,153,148, 73,153,148,249,175,203,172, - 45,251, 52, 94, 62,127,219,128,165,116,233, 43,101, 82, 38,101, 82, 38,101, 82, 38,101,254,107,209,169, 67, 66, 8, 33,132,144, -127, 64,161,213,128,207,231,127, 42,145, 72,190,149, 72, 36,235,249,124,254,255, 0,216,213,247, 5,165, 82,233, 84, 23, 23,151, -187, 46, 46, 46,105, 94, 94, 94, 71,173,173, 45,255,227, 35, 66, 8, 0,193,115, 90,159, 0, 0,255,145, 72, 36,119,196, 98,113, - 50,128,109, 0,254, 3,192,241, 89,130, 23,185, 97,224,173,105,253, 14, 44,114,195,192, 39,126,213,215,217,217,249, 60,128, 94, -207,235, 77, 25,106,137,158,131,164, 72, 29, 36, 69,234, 80,203,167,255,214, 96,109,109, 61,194,213,213, 53,202,193,193,225,145, -171,171,235, 69,177, 88, 60,168,158, 17, 78,206,206,206, 95,121,122,122,198,185,185,185,173, 66,233,236,228,255, 88,157, 69,232, -220, 78,132,156,246, 66, 20,117, 20,226,219,246, 66,188,249, 38, 96,249,148,113,157, 0,236,181,177,177,185,206,231,243, 35, 0, - 12, 40,219,191, 6,240,249,252, 8, 27, 27,155,235, 0,246,150, 61,238,105,246,211,175, 0, 60, 2,176,180,236,254,255,121,122, -122, 22, 5, 5, 5, 37, 7, 5, 5,109,246,243,243, 27, 89,215, 48, 75, 75,203, 55, 61, 61, 61,247,121,121,121, 37,183,111,223, - 62,223,221,221,253,158,135,135,199, 22,145, 72,212,149, 62,226, 8, 33,228,159,239, 29, 0, 95, 0, 88, 27, 19, 19, 35,103,140, -201, 25, 99,242,152,152, 24, 57,128,111, 1,124,137,234,155, 16, 31,251,185,131,131,195,194,197,139, 23,107, 51, 50, 50, 88, 78, - 78, 14,139,139,139, 99, 43,231,207, 54,247,182,231, 51,159, 6,118, 26, 87, 87,215,251,222, 30, 30, 59,155, 91,113,103, 3,240, -173, 75,102, 37,118, 18,137,228,242,252,249,243, 85,231,207,159, 87,233,245,122,149,217,108, 86,165,167,167,171, 78,159, 62,173, -234,216,177,163, 10,192,116, 0,188,122,100, 86,248,220, 13,231,216,198,207,216,231,110, 56, 87,249,231, 77,154, 52,137, 53,155, -205,108,224,192,129, 58, 0,238,245,201,124,146, 59, 32,110,110, 3,219, 65, 86,200, 50,110, 89,196,216,186,153,108,144, 20,169, - 79,147,233,228,228,116,112,234,212,169,202, 71,143, 30, 49,157, 78,199, 82, 83, 83,217,196,137, 19, 11,157,156,156,182,215,113, -221, 29, 2, 3, 3,179,162,162,162,204, 10,133,130,157, 61,123,214,220,162, 69,139,172, 58, 22, 91, 61,159, 88,150, 31,220,220, -220,142,214,231,230,228,228,180,161,190,239,209, 27, 34,164, 26,228,103, 24,187,122,146, 29, 26,216,158,173,108,227,193, 6,216, - 11, 21,157,132,248,191, 46, 85, 15,101, 82, 93,230,251, 93,186,116, 81,223,188,121,211,148,151,151,199, 98, 99, 99,205,227,199, -143,215, 2,184, 61,126,252,120,109,108,108,172, 57, 47, 47,143,221,188,121,211,212,165, 75, 23, 53,128,113,245, 88, 78, 46,128, - 77,225,225,225,140, 49,198, 22, 47, 94,204,130,130,130, 88,247,238,221,153, 74,165, 98,140,177,100,198,216,102,163,209,248, 97, - 93, 50,101, 50,217,136,169, 83,167,170, 52, 26, 13, 43,103, 54,155,153, 66,161, 96,107,215,174, 85,187,184,184, 28,173,230, 75, - 6,157,242,160, 76,202,164,204,127, 90,230,203,204, 21,165,253,180,202,111,117,110,152,248, 96,246,236,217,229, 69,213,177, 78, -157, 58, 93,249,240,195, 15,229, 31,126,248,161,188, 83,167, 78,103, 1,156,184,118,237,154,124,214,172, 89,114, 0, 31,212,242, - 70,216,117,232,208, 65,145,153,153,201,252,253,253, 89,195,134, 13, 89,102,102, 38, 99,140,177,171,239,183,102,191, 54, 5,123, - 24,121,140,157,252,101, 47, 27,239,202,103,157, 93,101, 37,174, 46, 46,121,142,142,142, 75,240,248,156,140, 85,189,185,239, 53, -109,218,180,232,246,237,219,170,248,248,120,213,194,133, 11, 85,221,187,119, 87, 5, 6, 6,170, 6, 12, 24,160, 90,179,102,141, -202, 96, 48,168, 54,108,216,160,178,177,177,185, 93, 69,177,245,212,133, 22,159,207, 95, 29, 19, 19,195,238,223,191,207,202, 90, - 41,170,203,148,217,218,218,246,177,179,179,155,110,107,107,219, 7,128, 12, 0,252, 1,171,150, 50,120,253, 95, 75,159, 38, 17, - 31,244,244, 93,219,243,245,214,131,172,185,138,146,111,102, 50, 54,208,235,169, 10, 45,153, 76, 54,226, 63,255,249, 79,145, 78, -167, 99, 26,141,134,169, 84, 42,166,209,104, 88, 81, 81, 17,251,224,131, 15,148, 98,177,248,189,218, 50, 29, 29, 29, 23, 69, 70, - 70, 26, 51, 51, 51, 89,100,100, 36, 59,122,244, 40, 91,183,110,157,217,201,201,233,235,250, 30,128, 46, 46, 46,167, 78,158, 60, - 41,143,142,142,150, 95,190,124, 89, 94, 82, 82, 34, 55, 24, 12,114,131,193, 32,143,136,136,144,239,223,191, 95,190,107,215, 46, -185, 94,175,151,235,245,122,185, 78,167,147, 55,106,212,232,120,125,223,163,182, 34, 60,212,159, 63,196,216,215,147, 89,225,178, - 73, 76, 49,227,109,150, 61, 49,132,125,251,186, 7, 11,145,224, 48,254, 60,183,103,149,153, 2,129,224, 92,114,114,178,121,238, -220,185,250,102,205,154, 21,142, 25, 51, 70,171,211,233, 24, 99,140,233,116, 58, 54,102,204, 24,109,179,102,205, 10,231,206,157, -171,127,240,224,129,153,207,231,159,174,199,114,126, 89, 94,100,157, 59,119,142, 85,166, 82,169, 88,247,238,221,147,131,130,130, - 54,191,246,218,107,195,106,203,180,178,178,234, 55,103,206, 28, 21,171, 66, 73, 73, 9, 43, 42, 42, 98, 15, 30, 60, 48, 55,108, -216, 48, 29,128, 3,125,152, 83, 38,101, 82, 38, 21, 90, 47,204,132, 90,238, 87,189, 17,103,205,154, 37,103,140,201,231,205,155, - 39, 47,107,217,178, 0, 96, 85,118,227, 3, 24, 58,103,206, 28, 57, 99, 76, 62,123,246,236,242,199, 84,247, 70,188,179,103,207, - 30,195,170, 85,171,152,179,179, 51,115,113,113, 97,171, 87,175,102,102,179,153,101, 70,108,103,191, 54, 5,187,243,233, 40,198, - 24, 99,113, 75,166,176, 95,155,130, 37,126,247, 57, 27, 62,124,184,198,210,210,242,131, 26,222, 92,251,214,173, 91, 23, 21, 23, - 23,171,182,108,217,162,178,180,180,188, 10,160, 25, 74, 79, 69,114,202,150,117,100,179,102,205,148,183,110,221, 82,253,252,243, -207, 42, 0, 11,235,184,195,248, 2,232, 38,149, 74, 7,204,113, 23,196,179,141,159,177, 57,206,184, 9,160, 5,128, 6,101,143, -113,155, 61,123, 54, 99,140, 49, 79, 79,207,200,106, 50,101,129,129,129,179,227,227,227,195, 74, 74, 74,194,162,163,163,195, 26, - 55,110, 60,247,221, 70,174,237, 15,124,240,102,112,225,231,147,130,217,138, 25,129,255,123,171,109,207,157, 67,186,126, 48,250, - 53,199,243, 99,156,196,154,193, 50, 94,209, 19,167, 14,235,180, 99,187,187,187, 95, 78, 77, 77,173, 40,174,138,138,138,216,163, - 71,143, 88, 82, 82, 18, 59,127,254, 60,115,117,117,253,181,182, 76, 23, 23,151,216,212,212, 84,246,221,202,149,108, 96,139, 38, - 44,196,214,154,117,177,179,102,109,172,196,234,166, 64,155,250, 22, 90,215,175, 95,151, 3,144, 3,144,231,229,229,201,243,242, -242,228, 5, 5, 5, 21, 63, 3, 32, 47, 44, 44,148, 23, 22, 22,202,245,122,189,220,199,199,167,222,133, 86, 71, 49, 58,190, 33, - 70,126,123, 17,138,223,113,119, 76,159,212,200,209,116,233,131,246,172, 96,114,119,182, 42,216,157,117, 18,226,255,234,152,249, -142, 80, 40, 60, 11, 96,102, 89, 81, 62,170, 79,159, 62, 26,198, 24,235,211,167,143, 6,192,168,178,159,255,167,172,200,234, 83, -199,229,228,250,249,249,169,203, 91,178, 0,252,238,231,231,167, 14, 10, 10, 98, 65, 65, 65,204,211,211,179,168, 44,187, 78, 31, -104,190,190,190,113,197,197,197, 21, 5,160, 66,161, 96,233,233,233, 44, 49, 49,145,221,190,125,155, 93,189,122,149, 37, 39, 39, -179,221,187,119,155,108,109,109,143,208,135, 57,101, 82, 38,101, 82,161,245, 66, 11,173, 39,111,143,139,136,136, 96, 79,252,104, -217,181,107,215,228,115,230,204,145,215, 82,153, 77,152, 55,111, 94,121,171,215, 23, 53,252,241,223, 16, 23, 23,199, 70,141, 26, -197, 2, 2, 2, 88, 64, 64, 0,251,240,195, 15, 89, 97, 97, 33, 83, 37,220, 98,191, 54, 5,187, 58,184, 13, 99,140,177,162, 59, -209,236,215,166, 96,242,225, 29,216,141, 27, 55,152,135,135,199,201, 26, 94,255,240,197,139, 23,115,182,111,223,158,137,210,254, - 88, 2, 0,237, 0,172,150, 72, 36,155, 80,122,186,176, 33, 0, 59,127,127,255,124,141, 70,163, 26, 56,112,160, 10,128, 87, 13, -153, 93, 2, 2, 2,238,111,216,176,129,101,103,103,179,252,252,124,182,188, 99, 99,198, 54,126,198, 22,183,105,104,254,238,187, -239,116, 51,103,206, 84,219,219,219, 71, 0,112, 27, 56,112,160,145, 49,198, 66, 66, 66,178,170, 10,179,181,181,237, 19, 31, 31, - 31,166,213,106,195, 20, 10, 69, 88,126,126,126,216,161, 3, 7,194,122,183,104, 60,170,240,243, 73,193, 7, 62,120, 51,248, 45, -119,187, 1, 95,247,122,253,163, 71,115,199, 13,156,215,161,217, 29,237,151,211,206,188,223,200,249,171,167,121,183, 27, 52,104, -144,161,211,233, 24,128, 63,221,238,223,191,207, 28, 28, 28, 82,107,203,176,183,183,159,247,159,161, 67, 76,239, 53,116,103,247, - 87,205,103, 37,167,126,102, 37, 71,183,176,132,101, 51,216,187, 46,142,202,118, 22,220, 57,117, 93, 30, 23, 23,151, 83,151, 47, - 95,126,172,208, 42, 40, 40,168,178,208, 82, 42,149,114,189, 94, 47,247,243,243, 59,254,172,123,125, 59, 33,124,186, 72,120, 87, -163, 71,117,102, 57,147,186,179, 62, 50, 65,242, 51,196, 13, 5,112, 22,192,240,122, 62,143, 11,224,203,242,130,106,217,178,101, -140, 49,198,252,252,252,212,120,182,139, 81,100, 77,154, 52, 73, 26, 55,110,156,177,105,211,166,217, 29, 59,118, 84, 92,185,114, -133,157, 59,119,142, 29, 61,122,148,237,221,187,151,221,186,117,139, 61,122,244,136,197,197,197,177,190,125,251, 42, 0,116,161, -207, 66, 66,200, 63, 89, 21,181,200, 75,143, 91,190, 98,161,161,161,156, 74, 43, 40, 3, 32,110,211,166, 77,206,151, 95,126,185, - 2,165, 99, 65,112, 2,121,120,191,187,132,127,163,187,132,127, 35,144,135,247,203, 90,140,126, 88,178,100,201,162,160,160,160, - 12, 0, 18, 0, 46, 85,189, 16, 99,172,179,131,131, 3, 82, 83, 83, 33,147,201, 32,147,201,144,154,154, 10,198, 24,140, 12, 40, - 97,128,206, 96, 64,113,113, 49,180,102,134, 98, 51,160, 84,169,224,226,226, 2,131,193,224, 83,205,242,183, 28, 60,120,176, 79, - 96, 96, 96,206,172, 89,179,210, 81,218, 87,102,211,216,177, 99, 79,253,254,251,239,129, 42,149, 42,255,246,237,219,218, 22, 45, - 90,244, 1,224, 18, 31, 31, 63, 98,237,218,181, 24, 53,106, 20,106,248,163,211,162,111,223,190, 71,111,221,186,229, 51,124,248, -112,156, 61,123, 22,203,151, 47, 71,110,110, 46, 3, 0,157, 78,199, 76, 38,147,161, 67,135, 14,134, 85,171, 86,181, 13, 9, 9, -185,220,168, 81, 35, 30, 0, 36, 37, 37, 37, 84, 21,200,225,112, 26,123,123,123, 67,167,211, 33, 39, 39, 7,183,110,221,130,181, - 76,134,152,244, 92,231,174, 95,127,151,247,233,129, 83,130,161,109, 3,237,167,191,217, 81,183,244,228, 89,255,102,110,206,206, -122, 67,137, 75, 92, 70, 86,250,211,188,169, 22, 22, 22,169,185,185,185,208,235,245, 40, 46, 46,134, 82,169, 68, 94, 94, 30,114, -115,115,145,158,158, 14, 11, 11,139,251,181,101,216,228,231, 71, 38, 93, 60,199,217,253,253, 50,248, 24,243,193,223,183, 26,252, -131,223,194, 87,159,131,245,243, 39, 90,235, 29, 26,132,219, 88, 91, 23,216,218,218,254, 0,192,175,182,188,224,224, 96,228,229, -229, 33, 47, 47, 15, 14, 14, 14,176,179,179,131,157,157, 29, 20, 10, 5, 10, 11, 11,161, 84, 42,225,239,239,143,150, 45, 91, 98, -235,214,173,207,101,231,190,164, 71,162, 17,166, 73,167,238,165,195, 66, 42, 69, 35, 59, 43,239,215,173, 96, 95,195, 83,186, 11, - 4,130, 61,246,246,246, 39, 1, 76, 6, 32, 5, 48,217,222,222,254,164, 64, 32,232, 15, 96, 49,128,237,245, 92,140,165,225,225, -225,179,227,227,227, 45,111,220,184,129, 89,179,102, 97,225,194,133, 72, 72, 72,248, 6,128,185,236, 49, 31, 59, 56, 56, 68,112, -185,220, 31, 1,188, 13,160,143,171,171,107,143, 90,114,251,207,156, 57, 83,219,186,117,235,184, 59,119,238,244,191,120,241, 98, -155, 25, 51,102, 20,166,164,164, 32, 46, 46, 14,174,174,174,240,244,244,132, 74,165, 66, 65, 65, 1,250,247,239, 47,179,177,177, -249,128, 62,198, 9, 33,255,228, 34,235,137, 90,228,101,107,209,170,242,126,149,223,168, 45, 45, 45,195,229,114,121,251,160,160, - 32, 62,128,221, 0, 16,200,195,160,254, 29, 90,109, 58,240,195,178,160,253,171,230, 7,245, 14,242,223, 20,200, 67,249, 85,108, - 17,109,218,180,177,147,203,229, 29, 68, 34,209,255, 85,179, 16, 12, 0,236,236,236, 32,147,201, 96,107,107, 11, 59, 59, 59,152, -205,102,168, 52, 90,168, 77, 64,145, 86,143,194,194, 66, 20,149,221, 87,233, 12, 80,171,213, 21,207,173, 66,215,113,227,198,229, -172, 93,187, 54, 59, 35, 35, 99, 25,128, 22,163, 70,141,234,183,102,205, 26,252,246,219,111,218,183, 3,124, 29,150,116,110,181, -168, 89, 70, 66, 88,128, 0,227, 1, 68, 70, 70, 70,162, 67,135, 14,224,112, 56, 67,170, 10,148, 72, 36,223,238,220,185, 83,114, -251,246,109,248,250,250,222, 30, 50,100,200,251,203,150, 45,243,145,170,242, 47, 0,128, 49, 47,243,246,148, 41, 83, 62, 91,178, -100, 73, 78, 78, 78,142, 65,163,209, 56,189,251,238,187, 72, 77, 77,197,163, 71,143,126,175,166,200,140,139,142,142,102,133,133, -133, 72, 76, 76, 68,116,116,180,228,179,207, 62,107,107,226,114,251,165,193,122,244,168,142,109,218, 14,111,215, 10,219,163,110, - 88,156,191,151,100,219,166,161,187,221,245,135, 25,175,149,112,112,255,105,222,237,162,162,162,213,139, 22, 45, 82,169, 84, 42, -164,165,165,225,230,205,155,184,115,231, 14,146,147,147,177,124,249,114, 85,126,126,254,154,218, 50,220,196,252,255,126, 53, 99, - 44,135, 31,251, 59,112,227, 28,160, 41, 2,138, 85,208,221,149, 99,243,221, 76,172,219,247,139, 48, 37, 53,213,118,215,174, 93, -227,188,188,188,228, 0,252,107,202, 99,172,244, 45,228,114,185, 79, 22,161,224,114,185, 69, 0, 50,165, 82,233, 67,107,107,235, -135, 92, 46, 55,147, 49,166,126, 46,223, 36,140, 48,128,199, 3,132, 18,112, 5, 53, 78,237,249,254,144, 33, 67,118, 62,124,248, -176,119, 98, 98, 98,251, 53,107,214, 44, 18,139,197, 49,107,214,172, 89,148,152,152,216,254,225,195,135,189,135, 12, 25,178, 19, -192,200,250,188,190,159,159,223,148,176,176, 48, 44, 95,190, 28, 45, 91,182,132,191,191,191, 38, 60, 60,124, 53,128,249, 0,254, -207,207,207,239,194,148, 41, 83,198,100,103,103,187,164,165,165,181,252,230,155,111, 38,174, 94,189,250,245,244,244,116,113, 45, -209,157,122,245,234,133, 99,199,142, 1, 64, 6,128,196,188,188, 60, 99,122,122, 58,154, 52,105,130,182,109,219, 66,165, 82, 65, -165, 82, 65,161, 80,192,219,219, 27,102,179,185, 61,125,148, 19, 66,200, 95, 90,112, 85, 93,104,137,197, 98,187,224,224, 96, 52, -106,212,200, 14,101, 87,107, 57, 8,249,115,167,143, 27,106,105, 37, 63, 14, 78,244,175, 24,210,185,185,165,131,144, 63,183,236, - 41,124,111,111,111, 81,112,112, 48,164, 82,169,123, 53, 47,126, 54, 51, 51, 19,193,193,193,176,181,181,133, 76, 38, 67,112,112, - 48, 12, 6, 3, 10,139,138,160, 54, 1,154, 18, 51, 10, 11, 11,145,159,147, 5,141, 9, 48, 90, 59, 32, 57, 57, 25, 60, 30, 47, -169,154, 76, 87, 95, 95,223,156,152,152,152, 28, 0,145, 0, 62, 90,184,112, 33,230,204,153,131, 5, 11, 22,236,180,204,120,208, -107,231,177,131, 14, 59,194, 63,110,224, 47,228, 12, 5, 96,120,248,240, 33,108,109,109, 33,149, 74,171, 44, 12, 66, 66, 66, 90, - 75,165, 82,108,217,178,133,165,165,165,117, 68,233, 37,252, 73, 28, 78,105,177, 39,225,162, 16,192,106,185, 92,254,198,103,159, -125,118,175,103,207,158,130,118,237,218, 97,241,226,197, 0, 16, 81, 85,166, 66,161,184, 52,114,228, 72,253,153, 51,103,112,247, -238, 93,233,129, 3, 7, 6, 45, 94,188,184,121, 74, 74,138,232,240,209,227,111,109,123,168, 28,180,236,228,121,241,146, 19,103, - 47, 57,218, 72,155,189,230,104,143,232,148, 71, 22, 38, 30,174,212,246,142,190, 33,224,141,235, 42,230, 71,119, 22,113, 51,186, -138,249,242,215, 5,188,177, 69, 69, 69,187, 14, 29, 58,116, 98,198,140, 25,170,236,236,108, 88, 91, 91, 35, 47, 47, 15, 75,151, - 46, 85, 69, 71, 71,239,211,235,245,135,107,203, 53,153, 89,107,207,134, 94,192,253,152,138,159, 25,204, 12, 87,244, 22, 8,253, -104, 26, 2,154, 52,129, 94,175, 71,139, 22, 45, 56, 11, 23, 46,148,202,100,178, 79,106, 45,122,184,127,218,221,140, 28, 14, 39, -147, 49,246, 72,165, 82,165, 73, 36,146, 20, 11, 11,139,148,252,252,252, 52,198, 88,214,243,168,179, 24, 23,255,237,208,194, 15, - 16, 73,144,146,167, 74,191,170, 66,126, 85, 15,180,182,182, 30,187,110,221, 58,241,198,141, 27, 75,166, 76,153,162,155, 56,113, -162,160,184,184,216,105,226,196,137,130, 41, 83,166,232, 54,110,220, 88,178,110,221, 58,177,149,149,213,128,167, 89,144,146,146, - 18,196,196,196, 44, 75, 72, 72,144,162,116,184,145,105,225,225,225,163,226,227,227,197,107,215,174,197,222,189,123,177,119,239, - 94,244,235,215, 15, 83,167, 78, 69, 88, 88, 88, 77,113,150, 65, 65, 65,193, 14, 14, 14, 56,119,238, 92, 58,128, 20, 0,173,173, -172,172,172,251,245,235,135,222,189,123, 67,171,213,194, 96, 48, 84, 20, 90, 60, 30, 15,182,182,182, 14,244, 25, 72, 8, 33, 47, -188,200,122,172,216,226, 3, 64,121, 83, 93,104,104, 40,167,166, 63,140,166,130,108, 40,212, 26, 36, 23,106,144, 90, 96,126,236, -119,102,179,185,198, 87, 79, 79, 79, 63, 28, 21, 21, 53, 54, 56, 56,152,159,158, 94,122, 70, 44, 56, 56, 24, 26,141, 6,233, 55, - 46, 67,109, 6,164,190,129, 80,171,213, 40,184,115, 29, 86, 65,237,225,208,119, 56,190, 94,187, 86,151,151,151,247,125, 85,153, - 66,161, 80,224,225,225,145,147,148,148,100, 4,144, 47,147,201,122,121,121,121,225,236,217,179, 0,176,157, 1, 95, 33,250, 12, -112,110, 63, 88,105,147,138,149,183,183, 55,178,179,179,161, 82,169,206, 86,149, 25, 21, 21, 21, 95, 82, 82,210,226,221,119,223, -229,252,244,211, 79,187,149, 74,229, 2, 0, 55,117,102,240,110, 60,204,130,218, 4, 49,128, 55,237,236,236,254, 19, 22, 22,214, - 99,202,148, 41, 56,116,232, 16, 78,158, 60,105, 64,105, 95,176,168, 42, 98, 11, 19, 19, 19,215,207,156, 57,179, 29,151,203,253, -232,212,169, 83, 70,127,127,127,165,193, 96, 48, 53, 14, 8,224, 46, 88,248,185,197,228,143, 38,216,230,105, 16,219,187,177,107, - 7, 14, 7,136,125,148,157,146,160, 66, 94, 77,219, 52, 68,200,139,232,223, 49, 40,100,236,144,119,172,164,190,205,160,190,117, -217,101,253,158,163, 95, 75,162,227, 67,207,101,103,247, 59,116,232,208,160,179,103,207, 78,214,235,245,141, 68, 34,209,125,133, - 66,177, 74,165, 82,213, 90,100,241,120,188,190, 58, 87, 15, 59, 69,126, 62,196,101, 45, 81,202, 18, 51,114,117, 70,220,181,245, -199, 7, 30,158, 21,167, 65, 51, 51, 51,225,226,226,194, 49,153, 76,239,212,148,121,242,228, 73,132,134,134,150, 23,158,224,112, - 56,224,112, 56,185, 1, 1, 1, 89, 34,145, 40,207,194,194, 66,249,213, 87, 95,105,181, 90, 45,248,124,190,216,100, 50,241,158, -101,111,111,107, 9, 39, 17,227,124, 59,241,221,110, 61, 91, 54,107,194, 34,175,222,224, 20,104,180,155,107,104, 5,252,198,207, -207,143,159,159,159,127, 24,192,221,146,146,146, 29,187,119,239, 22,143, 24, 49, 66,187,103,207,158, 97, 0,124, 86,172, 88, 49, - 72,165, 82,213,107, 74,133,132,132,132,111,150, 44, 89, 50,123,222,188,121,216,186,117,235,148,132,132,132, 57,101, 45, 93,253, -194,194,194,240,213, 87, 95, 97,235,214,173,230,187,119,239, 30, 53,155,205, 9, 51,102,204, 8,114,118,118,206,205,200,200, 72, -168, 33,182, 77,159, 62,125,116, 23, 46, 92, 16, 22, 21, 21,157, 7,240,159, 73,147, 38,141,123,227,141, 55,148, 67,134, 12,177, -202,207,207, 87, 88, 90, 90, 10, 55,108,216, 96,199,231,243,161, 86,171,193,225,112, 80, 84, 84,164,167,207, 65, 66,200, 63, 85, -117,181,200, 75,162,218,191, 13,252,170, 86, 80,163,209,100,165,166,166, 54,121,244,232,145, 17,128, 17, 0,242,244,198, 47,150, -108,216,191,113, 64, 59, 63,105, 70, 73, 9, 14, 92,189,173,201,211, 27,203, 59,191, 27, 31, 61,122, 84,148,146,146, 98, 93, 92, - 92,172,170,230,181,126,255,246,219,111,139,207,156, 57, 99,157,152,152, 8,147,201,132,214,173, 91, 35, 46, 46, 14, 5,119, 99, - 32,109,210, 26,210, 46,161,184, 45,191,138,232,147,167,241, 64,165, 55,222,155,191,164, 80,165, 86,135, 25, 12,134, 3, 85, 5, - 10, 4,130,124, 0,140, 49,102, 2, 0,165, 82,121, 83,165, 82,117,118,118,118, 70,108,108,172, 84,109,194,212, 65,115,191, 94, -195, 24, 51, 89,148, 94,205, 53,125,200,144, 33,184,118,237, 26, 0, 92,171, 42, 83,169, 84, 78, 25, 63,126,252,153, 45, 91,182, -240, 19, 19, 19,123,111,220,184,177,247,189,123,247, 24, 39, 63,213,116, 65, 35,128,207,168,169,175,127,231, 29,112, 50, 52, 52, - 20,174,174,174,216,176, 97, 3, 86,173, 90, 85,242,241,199, 31,199,175, 90,181,234,245,236,236,236, 29,213,172,127,161, 66,161, - 56,238,224,224, 48,185,121,243,230, 69,106,181, 26,121,121,121, 72, 79, 79,135,189,131, 3,215, 8,110,135, 6,182,182, 59, 14, -103, 22, 73,249,199, 47,225,114, 90, 70,141,173, 89,237, 4,188,145, 3, 66, 90,133,252,223,188,185, 86,184,112, 0,156,241, 97, - 96, 27, 23, 97,218,135,131,172,181,186, 29, 93,212, 55,146, 71,200,149,202,109, 74,165,114,111, 61,119,150, 62, 29, 58,116,216, -185,100,201, 18,201,167,203,151, 96, 69, 19,119, 24,243,242,144,163, 51, 33, 87,103,132,178,224, 46, 98, 99,111,195,193,193, 17, - 15, 30, 60,128, 86,171,197,157, 59,119, 24,143,199, 59, 92, 91,139, 78,185, 74,167, 11, 21, 34,145, 40, 79, 32, 16,100,241,249, -252,252,196,196, 68,181, 86,171, 5,151,203,149,154, 76, 38, 73, 29,150,213,195,209,209,113, 6, 74, 7, 19, 61, 84,148,155,187, - 58, 88, 0, 91,240,209,213,219,209,225,173,249, 19, 71, 56,122,185, 57, 41, 18,227,239,151,124,127,226, 98,174, 86, 87,253,197, - 26, 0, 34,242,243,243, 43, 90, 36,247,236,217, 51,109,207,158, 61,227, 0,108, 66,233,188, 91,167, 21, 10,197,119, 79,113,240, -205,223,183,111,223,236,121,243,230, 65, 34,145, 84, 12,158, 42,145, 72,196, 0,240,243,207, 63, 35, 54, 54,246, 13,148,245,215, - 50,155,205, 59, 51, 50, 50,106,203,244, 9, 12, 12, 76,220,191,127,191, 16,128,219,164, 73,147,218,175, 89,179, 6, 31,126,248, - 97,206,237,219,183,219, 1, 72, 2,224,243,209, 71, 31, 93,217,186,117,171,157,217,108, 70, 65, 65, 1,244,122,125, 18,125,148, - 19, 66,168,216,122, 33,130, 1, 68,163,116,252,172,190, 0,142,160,180, 91, 71,181, 60,203,170,179, 19, 0,222, 45,255,251, 88, - 77,103,120,160,244,138,172,227, 0,126, 4,224, 92, 93,168,131,131,195, 39,163, 70,141, 42, 73, 75, 75, 99,153,153,153,108,239, -222,189,108,250,216, 81,166, 55,125,221,204,190,110,206,234, 6, 13, 26,196,185, 58,218,111,110,101,137,233, 0, 60,234,176, 98, -163,238,221,187, 55, 97,212,168, 81, 99,203, 94,119,236,206,157, 59, 85,167, 78,157, 82,241,120,188, 8,148, 14,237, 80, 94, 80, -142,124,231,157,119, 84, 58,157, 78, 21, 16, 16,144,143,210,142,251,213, 25,212,181,107,215,130, 99,199,142, 49,147,201,244,167, - 49,138,114,114,114,216,201,147, 39, 89,199,142, 29, 21, 0, 70,244,232,209,227,236,197,139, 23,207,118,234,212,105, 95,109, 11, -236,232,232, 56,247,198,141, 27,215,146,147,147,229, 71,142, 28,145,239,216,177, 67,254,209, 71, 31,221, 12, 10, 10, 42,142,143, -143, 55, 27,141, 70,118,227,250,117, 22,208,184,177, 26,128,119,117, 57,221, 37,252, 43,202, 13,139,152,118,241,135, 76,219,223, -147, 1, 96, 69, 95,127,194,178,166,244,100,113,147,223, 98,221,196,188,168,167,217, 83,236,237,237, 79, 92,187,118,141, 21, 21, - 21,177, 91,183,110,177,145,161,189, 89,212,184,158,236,120,111, 63,182,181,203,107,236,235, 94, 65,172,119,151,206,236,219,111, -191,101,251,247,239,103,115,231,206, 53, 59, 58, 58, 22,161,134, 62, 90, 46, 46, 46,167,118,239,222, 45, 7, 32,231,241,120,114, -165, 82, 41, 47, 42, 42, 58,252,240,225,195,117, 1, 1, 1,179,155, 55,111, 62,172, 73,147, 38,221,187,189,230, 61,187,135,181, - 40,174,167,141,248,126, 99, 43,203,175,241,231,113,175, 42,200, 0,111, 95, 31,159,162,115,231,206,153,117, 58, 29, 59,127,254, -188,185,105, 99,127,237,138,193,125,246, 61,216,240,229, 62,237,177,159, 78,104, 14,254,112,113,207,232,208,152,174,150,220,159, -218, 75, 43,134,227,120, 90, 67, 1, 28,192, 31, 87, 29,142, 2,112, 16, 53, 95,133,200, 5,176,105,241,226,197,149,175, 52, 4, - 0,110, 80, 80,144,156, 49, 38, 15, 10, 10,146,215,119, 65, 44, 45, 45,103, 28, 58,116, 40,220,203,203,107,249,144, 33, 67, 54, - 40, 20,138, 35,195,134, 13,139, 65,233,197, 32, 28,148,206,142,240,142,135,135, 71, 78,116,116, 52, 59,123,246, 44, 27, 56,112, - 96,145,133,133,197,112,250, 24, 39,132,144, 23, 98, 66, 53,255,214,104, 73, 76, 76, 76,249, 24, 90,147,106, 10,159, 51,103,142, -252,218,181,107,114,148,142, 18, 95, 35, 62,159,255,203,199, 31,127,204,156,157,157, 85, 78, 78, 78,191, 8,120,188,113,158, 18, - 4,227,233, 46,117,239,188,109,219,182,126,223,124,243, 77, 95, 0,111, 0, 16,184,187,187,167,103,102,102,170, 46, 94,188,168, -234,216,177,163,202,209,209, 49, 59, 48, 48, 80,181, 98,197, 10, 85, 73, 73,137,106,198,140, 25, 42,252,121,188,175,170,136, 1, - 76, 22, 10,133,191, 52,109,218, 52,102,254,187,221, 75,150, 79, 29,199, 70,249, 53, 80, 1,248, 6,192,199, 0,108, 1, 8, 6, - 13, 26,244,235,157, 59,119, 78, 4, 6, 6,174,175, 67,174, 91,243,230,205,127,219,185,115,231,181,253,251,247,203, 63,249,228, -147,107, 14, 14, 14,105,241,241,241,102,173, 86,203, 10, 10, 10,152, 66,161, 96, 71,142, 28, 49,217,219,219,175,173,118,197, 69, -188, 12,118,114,123,149, 67, 56, 60,156, 55,156,117, 20,114, 31, 61,205,158, 34,149, 74,243,243,242,242, 88,102,102, 38, 75, 76, - 76,100,251,246,237, 99,125, 58,180,101,187, 62, 26,192,182,143,237,199,190,234,211,150,189, 97, 45, 86,187, 88, 91, 93,179,182, -182,206,174,203, 85,135, 46, 46, 46,167,116, 58, 93,197,240, 13, 30, 30, 30,242,128,128,128,253,129,129,129, 95, 31, 58,116,104, -218,202,149, 43,251,117,123,205,123,246,210,222, 29,138, 53,167,247,176,162,221,223,176, 57,173,253,181,101,197,124,149,220, 29, -236,183,157, 59,123,214, 92, 94,252, 26,141, 70,118,224,151, 95,216,224,183,222,140, 41, 60,254,243,143,231,195,166,236,156,209, -218,255, 64, 71, 49,134,214, 84,176, 85,124, 21,177,130, 67,136, 13,119,221,219, 94,246, 25,157,101,220,111,218, 89, 63, 54,189, -212, 96,127,127,255, 68,198, 88, 70,147, 38, 77, 18, 1,108,111,210,164, 73,229,251,163,171,137,173, 24,156, 52, 60, 60,156,149, - 29, 31, 92, 0, 11,150, 44, 89, 34,103,140,201,253,252,252, 46, 0, 64, 75, 41, 28,187,200,184, 63,190,235,227,156,215, 69,198, -253,177,165,180,234, 41,163,188, 45,208,184,115, 3,203,243,253,252, 92,139,186,186,203, 34,183,111,222,184,252,237,183,223,222, - 0, 96, 45,128, 69, 14, 14, 14,231,135, 14, 29, 26,187,117,235,214,216, 21, 43, 86, 24,226,227,227,217,152, 49, 99,212, 34,145, -104, 17,125, 14, 18, 66,200, 11, 83, 62, 50,188,107,125, 10,173,119,102,207,158, 45,103,140,149,143,165, 53,162,138,199,188, 59, -111,222, 60, 57, 99,172,124,116,248, 39, 7, 48,171,106, 64,179,240,117,235,214, 49,145, 72,244,227, 83,174, 76,229, 76,151,254, -253,251,183, 83, 42,149,175, 59, 59, 59,191, 94,214,114,229,233,232,232,152,184, 99,199, 14, 85,113,113,177,138, 49,166, 50, 26, -141,170,107,215,174,169,186,118,237,170,170,244,173,191,182,229,124,204,167, 46,184,112,117,254, 88,246,169, 11, 46, 60,241,171, -225,155, 54,109, 58,150,148,148,116,216,198,198,102, 86, 29, 51, 61, 27, 52,104,176,192,222,222,254,132,163,163,227,167,246,246, -246, 25, 6,131,129, 21, 20, 20,176,184,184, 56,118,246,236, 89, 22, 21, 21,197,236,237,237,211,170, 91,206, 30, 18,254,165,130, -229,147,153,121,211, 18,166, 95, 51,151, 1, 96,138,149,115, 88,238,183, 11,217,213,241,189, 89, 87, 49,239,247,167,216,158,176, -181,181,253,225,151, 95,126, 49, 39, 36, 36,176,136,136, 8,118,228,200, 17, 54,117,234, 84,214,216,205, 85,215, 78,200,205,234, - 44,226,159,120,154, 1, 75,117, 58,157, 92,169, 84,202, 85, 42,149,188,105,211,166,242,182,109,219,238,111,215,174,221,215,123, -246,236,153,182,116,233,210,126, 61,172, 69,113,154,211,123, 24,251,228, 45,198, 38,119, 98,247,199,117,101,221, 37,252, 27,213, -102, 58, 59,167,149,143,214,174, 86,171, 89,100,100, 36,251,237,183,223,152,139,163,163, 50, 68,194,155,208, 81,132, 46, 29,109, - 96, 91,215,229,236, 38,227,110,190,244,237, 23,166,226, 99, 91,217,207,163,222, 50,118,181,229,174,171,244,184, 93,140,177,140, -129, 3, 7, 62, 96,140,101,236,219,183,239, 33, 99, 44, 99,192,128, 1, 15, 24, 99, 25, 0,118, 86,149,249,196,224,164,155,202, -138,172,201,225,225,225,114,198,152, 60, 60, 60, 92, 14,148, 14,162,218, 69,198,221,114,121,253, 87,102,221,145, 45, 36, 55,135, -125, 0, 0, 32, 0, 73, 68, 65, 84,108,207,152,190,166, 46, 50,238,150, 42,151,211,150,127, 56,122,211, 74,166, 63,177,157,253, - 50,117,152,169,147,139,205, 57,127,127,255,175,166, 77,155,182, 63, 42, 42,234,166,201,100,138, 77, 76, 76,140, 93,187,118,109, -108,251,246,237, 47, 56, 56, 56,196, 8,133,194,143,107,123,143,158, 19,202,164, 76,202,164, 76,242,100, 3, 83, 13,191, 59,188, -108,217, 50, 41, 99,108,198,160, 65,131,240,229,151, 95, 14,110,222,188,249, 80,119,119,247, 6, 0,144,158,158,174,185,117,235, -150,114,208,160, 65, 88,176, 96, 1,150, 47, 95,254, 53, 74,251,178,252,149, 50, 15, 28, 56,224, 49,101,202,148,236,165, 75,151, -154,199,140, 25,211, 4,192,173,220,220,220,198,195,134, 13,155,204,231,243, 7,121,123,123, 7,102,100,100,228, 20, 23, 23,111, - 7,176, 30,181,156, 51,173,142,136, 11, 83,155,134,174, 56,193,133,169,210,143,223, 90,176, 96,193,144, 1, 3, 6, 24, 86,174, - 92,105, 84, 42,149,135,234, 24,247, 48, 39, 39,231,243,242, 59,246,246,246, 46, 55,110,220,248,216,201,201,137,155,152,152, 8, -157, 78,135,132,132, 4, 51, 74, 79, 77, 85, 73,101,100,171,191,219,119, 42, 96,198,240, 80, 27,205,221,235,176,224,241, 80, 34, - 16, 34,243,210, 9,108,138,188,171, 84, 27,176,230,105,214, 83,161, 80,252,111,234,212,169,195,102,205,154, 37,246,246,246,230, -252,254,251,239,216,189,123,183, 46, 59, 59,187, 15,128,115,127, 12,253, 84, 63,102,179, 25, 66,161, 16, 0, 48,103,206, 28,112, -185, 92, 65,118,118,182,144,195,225,136, 56, 28,142, 37,135,195,225,149, 36,197,194,172, 44, 64, 86,129, 2, 15,179, 20, 53,230, -153,204,230,221,151, 47, 95,158,222,170, 85, 43,238,213,171, 87,145,147,147,131,132,132, 4,102, 98,108,103,100,177,169,180, 83, -162,174,238,203,103,105,239,208,191,165,157,136, 43,220,188, 0, 33,122, 46,239,123, 51, 6,162,116, 44, 45, 0,216,196,225,112, - 44, 0,228, 53,109,218,180,219,157, 59,119, 36, 77,155, 54, 45,190,123,247,238, 49, 14,135,227, 14, 96, 75, 85,153, 18,137, 36, - 23, 64,238,190,125,251, 0, 96, 60, 74, 55, 94,235,176,176,176,140,200,200, 72,132,135,135,103, 1, 88, 7, 0, 86,118, 14,239, - 6,202, 44, 56,194,159,194,209, 94, 7,238, 26, 51,171,178,213,213,202,201,185,123,115, 41, 23,130,141,159,225,117,151, 0,174, -208,104,104,177,112,225,194, 72,149, 74,165,219,181,107,151,126,244,232,209,188,248,248,248, 43, 0,206, 3,216,135,178, 62,150, -132, 16, 66, 94,168, 39, 91,176,106,237,163,245,100,213,250, 37,128,239,238,221,187, 87, 49,169,244,189,123,247,228, 0,190, 71, -233,104,240,239,212,163,226,157, 95,214,162,181,254, 41, 87,230,201, 76,113,112,112,176,228,206,157, 59, 22,168,122, 18, 71,206, - 83,100,254, 73, 85,115, 29,250,251,251,175, 42, 41, 41,217,255,253,247,223,239,225,241,120,195,158,161,218,247,246,243,243, 43, -216,177, 99,135, 57, 34, 34,130,205,159, 63,223,228,234,234, 90,128, 63,247,209,122, 44, 51, 68,200,219, 59,179,137,187,242,218, -136, 78,236,254,180,119,217,249,225, 93,217, 4,119, 43,101,136,152,183,251, 25,191,149,248,201,100,178, 77, 18,137, 68,105, 99, - 99,115, 10, 64,135,103,121,143, 28, 28, 28,182,186,184,184,156,170,124,115,118,118,222,223,160, 65,131,111, 28, 29, 29,231,219, -218,218, 78,244, 17, 11, 87, 78,107,236,166,141,233,223,148,157,238,216,128, 13,119, 20, 62,121,234,240,201,229,116,245,241,241, -201,219,182,109,155,249,240,225,195,108,238,220,185,230,134, 13, 27, 42, 81, 67,191,182, 26, 91,180,108,121,187,247, 14,104,103, -206,234,235,206,190,108, 98,109,238,102,199,171,238, 10,197,225,101, 5,240,168,218, 50,125,125,125,191,103,140,109, 94,188,120, -241,102,252, 49, 23,232,155, 11, 23, 46, 12, 99,140,133, 45, 92,184, 48, 12, 64,111, 0, 8,145,113,183,109,239,215,198,148,254, -182, 27,251,162,137,149, 41, 68,198,221, 86,101, 75,166, 61,255,192,193,113,125,205, 25,227, 58,178, 5,126, 82, 83, 59,123,209, -175, 66,161,112, 26, 74, 91,156,219, 2, 16,210,183,102,202,164, 76,202,164, 22,173,127, 92,225, 85, 39, 46,246,246,246,155, 26, - 53,106,180,199,219,219,123,143,149,149,213,215, 40,237, 52, 95,223, 55,194,103,201,146, 37, 74,153, 76,214,242, 57,190,185, 78, - 0,220,241,231,137,115,159,219, 14,243,185, 43,166,196,207, 26,124,227,115, 87, 76,169,244,227,182, 77,154, 52,249, 2,165,163, -121, 63,235, 78,232,109,111,111,191,214,222,222, 62,173,172,111,150,119, 93, 50,219,240,120,195,186,137,121,191,119, 16,114, 51, -187,137,249, 23, 95,231,241, 62,120, 73, 15,192,154, 46,182,168, 46,211,195,209,209,113,165,189,189,125,186,163,163,227,218,122, - 22, 89,143,101,182,148,192,181,187, 45,239, 64, 7,107,142,186,187,140,183,175,141,101,245, 23,117,212, 99,221,131,195,195,195, - 63,100,140,125,232,230,230, 54,168, 82,225, 31,184, 96,193,130, 80,198, 88,104,249, 8,240,109, 45,225,212,213,150,183,163,163, - 13, 71,209,213,150,183,163,173, 37,156,170, 91,206,110,182,188,221, 29,109, 56,138, 16, 27,238, 14, 47, 17, 26,210,135, 57,101, - 82, 38,101, 82,161,245,106, 20, 90,180,195, 80, 38,101, 82, 38,101, 82, 38,101, 82, 38, 21, 90, 85, 23, 86,149,111, 21,103,216, -248,180,109, 8, 33,132, 16, 66,158, 73,181, 3,150,114,106,168, 74,235,211,177,253,105, 42,219,211,148, 73,153,148, 73,153,148, - 73,153,148,249,175,203,172, 45,251,175,190,176,238,165, 70,205,170,148, 73,153,148, 73,153,148, 73,153,148,249,175,197,165, 77, - 64, 8, 33,132, 16,242, 76,130,203,254,125,114,224,210,170,251,104,241,219, 46,206, 50, 26,141, 78, 0,192,231,243,179, 75,174, -204,119,173, 41, 93, 0,244, 48,150, 78,191, 3, 62, 48,222, 8,156,170, 34,243,148,209,104,180, 43,203, 44, 40,185, 50,191,119, -141,153,109, 23,159,168,252,120,227,149,249,111, 62,249, 24, 6,240, 4,109, 23,167, 63,177,172,110,117,221, 42, 28, 60, 54, 38, -214, 11, 91,206,151, 37,243,223, 76,240,198,226,172,146,146,210,253, 72, 32,224,103, 27, 46,215,188, 31, 89,188,177, 56,189,242, -227, 75, 46,207,119,174, 41,211, 82, 34,202,243,117,111,240,117, 77,153,137,233,185, 51,212, 26,173, 67, 77,153,245, 61, 54, 61, - 93, 93,123,152,202,142, 77, 30, 48, 62, 45, 35,227,212, 63,108, 95,106, 3, 96, 62, 0,155, 74, 63,139, 1,240, 31,218, 43, 9, - 33, 47, 89,161, 21,141,210,121, 14,127, 40, 43,182,126,168,182,208, 50, 26,141, 78,242, 95,194,160,214, 1, 61, 70, 46,118,242, -233,191,254, 79, 19, 37, 27,181, 5, 66,197,237, 93,129,188, 18,165, 93, 3,190,193, 38, 61, 61,157, 3, 0, 28, 14,231, 71, 0, - 94, 85,100,218,201,127, 9,131, 70, 15,132, 12, 93,104,231, 5,216,228, 88, 88,252, 87, 34,149,118, 43, 46, 46,110, 14, 0, 18, -137,228,118,177, 90,125,166,129,193,176,226,201,199, 87,183,102,149,151,181,251,136,197, 78, 77,250,175,159,106, 50,155,133,143, -174,126, 31,162,205,141,231, 11,140,186,117,159, 2,199,194,170, 40,170,170,201,251,227,117,223,159,235, 32, 0,186, 11,197,226, -150,182,118,118,157,205,140, 53, 53,155,205, 28,147,209, 24,171, 44, 44, 60,111, 54, 26,111, 24,245,106, 7,249,161, 47,204, 53, - 45,231,147,235,242, 62,192,255, 5, 24, 36,181,178,234,198, 19, 8, 58, 0,128,169,164,228,119,181, 74,117,230, 61, 96,111, 93, -214,189,174,219,231,105, 31,255,111, 83, 82, 98,116, 74, 58, 17, 6, 93, 9, 16, 60,240, 11,167,160, 97, 63,237, 0, 0,125,246, - 13,103, 85,252,161, 55, 0, 64,234, 27,122, 89,228, 18,156, 5, 0,252,148, 12,167,184,136,121,208,149, 0, 77, 67, 23, 58,213, -150, 57,122,193,110,135, 89, 19, 6,136, 0,224,228,190,111, 26,255,182,255,187,183, 0,160,251,128, 73,199,122, 13,156, 18, 7, - 0,203,127,216,239,176,243,139,193, 53,102,214,237,216, 44,180, 40,140,143,240,211, 43, 51,108, 61,165,124,151,248,248,120, 46, - 0,184,185,185,213,233,216,244, 0,100, 25,192,100, 46,143,215,217,215,207, 47, 24, 0, 75,188,127, 63,218,100, 52, 94,112, 5, -214, 61,231,125,105, 42, 99,143, 15,206,202,225,112,104,135, 36,132,188,108,142,148, 21, 87, 71,254,244,101,182,186,103,168,117, -192,185, 4,160, 75,187, 32, 76, 24,246,182, 85,229,223,237, 93,191,208, 43,254,234,193, 38, 27,127, 90,193, 13, 10, 10, 66, 82, - 82, 82,157,150, 66,163, 7,206,198, 3, 80,220,177, 46,144, 74,239,175,252,234, 43,155, 55,223,124,147,239,230,230, 6, 14,135, -131,204,204,204,118,167, 79,159,110, 51,125,250,244,143,160,184, 83,160,209,163,232,108,124,237,185,229,203,218,188,113, 67,204, -159, 50, 88, 6, 0,159,142, 92,215,230,234,189, 44,251,251,247,239,247,152, 61,123,118, 30,239,204,153,239, 28,129,205, 89,192, -195,186, 44,231,214,195,151,197,178,140,159,125,134, 79,153,178,207,207,207,207,202,219,219,155, 99,109,109, 13, 30,143,135,130, -130, 2,175, 91,183,110,189,117,229,202, 21,245,233,115, 63, 10,175, 93,121, 55, 49, 91,252,134,182, 78,235, 94,156, 46, 62,105, -109,125,123,196,123,239,121, 12, 30, 60, 88,236,235,235, 11, 0,184,127,255,190,255,222,189,123,135,238,219,183,111, 1,138,211, -141, 26, 61,180,181,173,123, 69, 38, 0, 49,208,193,214,201,105, 56, 79, 32,104,110, 52, 26,221,203, 90, 27, 30,153, 74, 74,110, - 43,178,179,183, 63,249,120,242,103,186, 18,224, 78, 6,208,179,115, 48, 70, 12,232, 41, 5,128,217, 67,150,180, 75,121,144, 96, -161,215,235,209, 56,160,105,199, 69, 95,124,125, 2, 92, 46,182,237, 63, 93,241,248,186,100,198,220, 73, 66,216,162,149, 72,191, -185,183,157,169, 48,161, 91,145,178,144, 7, 0, 54, 50,217,128,189,187,126, 62,227, 22, 56,232, 82, 66,174,161, 78,153, 53, 29, -155,199,119,173,117, 77,187,117,166,217,183, 39, 55, 9,188,188,188,112,243,230,205,250, 29,155,133,247,172,205,174,174,177, 43, - 62,249,196, 37, 36, 36, 4, 86, 86, 86,224,243,249, 48, 26,141, 61, 47, 92,184,208, 51, 44, 44,108, 18, 10,239,169,235,122,108, -214,193, 10, 14,135,211,109,244,132,169,174,111,247, 27,132, 1,125, 58,210,142, 72, 8,121,217,148,183, 94, 85,190,242,240,135, - 26, 11, 45, 62,159,159,253,230,168,165, 78,157,223,104,129,171, 55,226, 10,147, 83, 51, 84,229,191,203,191,189,183,113,191,142, -238,205, 34, 35,207, 65,167,211,225,247,223,127,199,141, 27, 55,240,224,193, 3, 76,156, 56, 81, 87,118,234,176,170,204,130,144, -161, 11,237, 80, 24,111,229, 47,188,247,218,233,187,119,121, 90,173, 22,145,145,145, 40, 40, 40,128, 80, 40,132,135,135, 7,122, -245,234,197,191,123,247,174,125,143, 55,251,200, 66,250,124,144, 4,153,191,138,207,231, 23, 84, 55,143, 8,159,207,207,238, 49, -114,177, 83, 51,255,134,184,159,156, 94, 56,255,139,141, 42,179,153,241, 19, 31,164, 24,206,157, 59,135,224,224, 96,156, 58,117, -202, 33, 63, 63,255,179,117,235,214,205, 23, 44,251,118,117,137, 62,111, 38,170,207, 43, 8, 25,186,208,206, 33,123,143,247,111, -199, 15, 88,220,190,125,219,226,251,239,191, 71, 94, 94, 30,132, 66, 33,108,109,109,225,226,226,130,198,141, 27,115, 62,253,244, - 83,171,208,208,219,248,191,241,131,188, 13, 62,227,238, 85,183,156, 21,235,174, 74,177,116, 84,158,244,221,127,228, 8,183, 83, -167, 78,143,125,109,111,212,168, 17,122,247,238, 45, 30, 62,124,184,239,224,161,195,204, 33,125, 71,223,135,149,183,166,214, 76, -245, 67,137,131, 38,202,173,231,208,161,135, 22, 46, 92,104,235,226,226, 2,169, 84, 10, 0, 40, 44, 44,244, 72, 78, 78,110,183, - 96,193,130,129,151, 99,118,241, 67, 66, 31,166, 67,234, 89, 92,211,246,252,183, 18, 8,248,217,229,173, 72,214, 82, 73,193,195, -180, 44, 53, 0,232,245,122,232,245,122,232,116, 58,124, 60,105, 34,111,252,192,182,126,222,157,167, 94,127,240, 40, 43,191,233, -233, 75,246,229,207, 45,169, 37,147,175,121,160, 80,164,254, 58, 62,236,147, 79, 92,156,157,255, 56, 35,184,109,235, 86, 94,126, -126,126,207,176,176,176,102,204,178,171,162,105,232, 66,219,154, 50,107, 58, 54, 21,113, 71, 94, 91, 52,165,119,203,245, 95, 68, -192,100, 50, 33, 42, 42, 10,145,145,145,248,250,235,175,217,177, 99,199, 10,109,164,210,241,168,241,216,188,103,221,201, 53,211, -103,217,178,125, 28,145, 72,132,131, 7, 15,226,238,221,187,224,114,185, 8, 10, 10,194,136, 17, 35,208,179,103, 79,151, 9, 19, - 38,178,144, 62, 67, 18, 33, 11, 40,122,198,125,137, 11, 96,234,220,176,101,174, 35,199, 77,198,242, 69,159, 82,161, 69, 8,121, -153, 91,179,170, 29,226, 1, 17, 17, 17,172,236,214, 5, 0, 24,192,109,212,127,253,206, 61,215,204, 71, 26,245, 95,191,147, 1, - 92, 6,112,109,128,134,173, 90,181, 42, 81, 40, 20,236,202,149, 43,236,227,143, 63, 86,175, 94,189,250,204,145, 35, 71,246, 26, - 13,134, 13,110,174,174,255, 99,213,116,176,103, 0,215, 27,144, 89, 90, 90,230,164,166,166,178,163, 71,143,178,240,240,112,182, -125,251,118,118,236,216, 49,118,250,244,105,118,236,216, 49,182,115,231, 78, 22, 19, 19,195,226,226,226,152, 84, 42,205,241, 6, -100, 53,100,242, 24,192,107,220,255,251,153,251,174,150, 44, 12,232,191,126, 58, 3,120,118, 64,147, 86,173, 90,153,246,238,221, -203,182,109,219,198,126,250,233, 39, 22, 19, 19,195,114,115,115, 25, 95, 36,205, 41,127, 94,117,203,201, 0,174,187,187,123,142, - 66,161, 96,158,158,158, 76, 40, 20, 50,103,103,103,214,184,113, 99,214,174, 93, 59,246,214, 91,111,177, 97,195,134,177,207, 62, -251,140, 41, 20, 10, 38, 22,139,179,202,159, 87, 93,102, 48, 32,145, 74,165,169,114,185,156, 85,167,184,184,152,229,230,230,178, - 19, 39, 78, 48,169, 84,154, 26, 12, 72,106,202,148, 0,173, 3, 3, 3,115,114,115,115,153,193, 96, 96,169,169,169,236,214,173, - 91,236,238,221,187, 44, 53, 53,149, 21, 23, 23, 87,100,199,197,197, 49, 31, 31,159, 28, 9,208,154,209, 69, 16,213,238, 75, 79, -222,188,156,157,223,114,113,113, 41,222,183,111, 31,123,244,232, 17,219,178,101, 11,227, 2, 75,158,124, 92, 77,153, 66,160, 87, -167, 78,157, 76, 81, 81, 81,236,250,245,235,108,206,156, 57,172,119,239,222,172, 79,159, 62, 44, 44, 44,140,165,165,165,177,180, -180, 52,246,214, 91,111,153,132, 64,175,218,246,207,170,142, 77, 25,224, 21, 26, 26, 90,108, 48, 24, 88, 98, 98, 34,107,222,188, -121, 26, 15, 24, 46, 5,154,117, 1, 68,181,237,159,238,128,157,171,171,107, 70, 84, 84, 20,219,191,127, 63,243,246,246,206,225, - 1,163,109,128, 70, 54, 64, 35, 30, 48,186, 81,163, 70, 57, 81, 81, 81, 44, 47, 47,143,121,121,121,101,184, 3,118,207,176, 47, -113, 1,108,154, 27,182,140,221, 75, 83,179,185, 97,203, 24,128, 84,198, 24, 67, 21,125, 60, 9, 33,175,190, 39,107,145, 87, 69, -197,135,100,104,104, 40, 7,192,217,154, 30, 92,204,227, 45, 93,190,124, 57, 95,171,213, 98,227,198,141, 69,239, 15, 28,184,167, - 75,231,206,137,175,121,123, 43, 56, 92,110,173,179, 13,231,136, 68,211,150, 47, 95,110,171,215,235,113,237,218, 53,180,105,211, - 6, 46, 46, 46,176,178,178,130,149,149, 21,156,156,156, 16, 16, 16,128,236,236,108, 88, 91, 91, 99,214,172, 89,178, 28,145,104, - 90,109,185,102, 51,227, 3,128,201,108, 22, 90, 0, 19,124, 94,127,253,218,130, 5, 11,184, 14, 14, 14,176,183,183,135,149,149, - 21,238,222,189, 11,189, 94, 15, 75,137,101,157, 6,105,229,114,185, 92, 43, 43, 43,252,246,219,111,152, 58,117, 42, 58,116,232, - 0, 91, 91, 91, 88, 91, 91,163,121,243,230,232,213,171, 23,198,143, 31,143,196,196, 68,112,234,208,169, 36,150,207,159, 60,126, -252,120,167,224,224,224, 42,127,175,213,106,161, 80, 40,144,147,147, 3, 15, 15, 15, 12, 26, 52,200, 41,150,207,159, 92, 93,158, - 3,224,226,225,239,127,232,202,149, 43,142, 82,169, 20,219,182,109,195,129, 3, 7,112,252,248,113, 28, 61,122, 20, 17, 17, 17, - 56,120,240, 32,114,114,114, 0, 0,254,254,254,216,189,123,183,163,149,147, 83,132, 3,224, 66,135,116,221,164,100,101,157,108, -158,153,233, 56,124,216,176,243, 42,149, 10,195,135, 15,199,210, 47,191,252, 84, 0, 76,175,203,243, 3, 0,153,189,171,235,230, -101,203,150,113, 51, 51, 51,241,222,123,239,229,174,248,242,203,177,209, 39, 78,248,202,143, 31,247, 93,186,112,225,216, 46, 93, -186,228,166,165,165, 97,235,214,173, 92,103, 47,175,205, 1,128,172,190,203, 89, 4, 76, 93,181,106,149, 88,171,213,226,205, 55, -223, 76, 52,223,190, 29, 96, 4,126, 86, 1,119,207, 2,134,218,158,159, 1, 76,158, 53,107,150,139, 72, 36,194,127,255,251,223, - 92, 77, 74, 74, 11, 35,240, 83, 33,144, 92, 8, 36, 27,129,159,138,146,146, 90,140, 28, 57, 50, 87, 36, 18, 97,229,202,149, 46, - 25,127, 76,186, 93, 87,109, 0, 28, 2,112, 14, 64,250,232, 9, 83, 71, 7,183,109,143,173, 27,214,225,139,133,179, 55, 3,120, -159,195,225,108, 7, 48,147,246, 60, 66,254,157,234, 82,139,252, 67, 85, 59,229, 14,191,114, 37, 9,160,107, 77, 41,118, 14, 14, -109, 90,180,104,129,200,200, 72, 4, 6, 6, 94,177,181,181, 53, 90,136, 68, 16, 8, 4, 96,230, 90,235, 44, 72,164,210, 30, 61, -123,246,228, 95,186,116, 9, 62, 62, 62,144, 72, 36, 16, 8, 4,143,221, 44, 44, 44,224,234,234, 10,165, 82,137, 30, 61,122, 8, -214,172, 89,211, 3, 58,221,162, 90,255, 32,198,223,178,202,185,180,108,216,143, 91, 54, 55, 10, 9, 9, 65, 97,161, 18,102,179, - 25,150,150,150,208,235,245,224,243,249,165,167,128, 74,152,178, 46, 91,204,100, 50,153,120, 60, 30,124,124,124,176,116,233, 82, -104,181, 90, 88, 88, 88, 0, 0,148, 74, 37, 20, 10, 5,110,221,186,133,228,228,100,148,125, 11,175,145,181, 76,246,246,224,193, -131,171,156,240, 87,167,211,161,176,176, 16,133,133,133, 80, 40, 20,208,106,181,104,223,190,189,240, 72, 68,196,219,200,203, 91, - 81,229,115,196,226,129, 91,183,110,117, 18, 10,133, 40, 46, 46, 70, 81, 81, 17, 30, 62,124,136,148,148, 20,109,118,118,182,209, -218,218,154,235,237,237,205, 21,137, 68,162,254,253,251,115,148, 74, 37, 56, 28, 14, 66, 67, 67, 29,118,108,219, 54, 24,122,253, -215,116, 72,215,205, 73, 64,215, 90,175,127,231,141,182,109,127,187,114,245,106,240,180,105,211, 16, 19, 19,179,204,114,215,174, -115, 26,224, 70, 77,207, 77, 4, 38,255,175, 82, 1,195, 82, 82, 2, 13, 64, 78,165,135, 36,123, 39, 37, 29, 31, 57,114,228,205, -152,152, 24,199,149, 43, 87,186,188,255,222,123,147, 1, 44,169,207, 50, 90,203,100,175,187,186,186,226,216,177, 99, 72,125,240, - 96,182, 17, 40,174,215, 55, 46, 30,175, 83, 72, 72, 8, 14, 30, 60,136,180,148,148,217,198,199,151,177,244,139, 18,144,195, 79, - 76,156,189,121,243,230, 77, 99,198,140, 1,143,207,239, 4, 99,189, 78, 28,254,169,227,251,152,137,211,176,249,135, 53,155, 1, -140, 3, 96, 6,112,133,246, 56, 66,254,221,173, 90,181,213, 34, 47, 81,177,245, 67,189, 91,180,156,156,156,220,173,172,172,144, -158,158,142,166, 77,154,100,139, 68, 34, 8, 5, 2,136,133,194, 58, 45,129, 70,163, 9,116,115,115, 67, 97, 97, 33, 28, 29, 29, - 97, 97, 97, 81,113, 19, 10,133, 21,255,183,182,182, 6,151,203,133,151,151, 23, 52, 26, 77, 96,173,185, 89,183,156,118,173,153, -244,113,212,185, 99,141,222,123,111, 0,236,236,236,225,233,233, 1, 39, 39, 39, 72, 36, 18,120,122,122,194,215,215,151,173, 88, -177, 2,150, 78, 65,117,250, 32,175, 92, 60,241,249,124,152, 76, 38,100,101,101,225,222,189,123,136,137,137, 65, 84, 84, 20,174, - 95,191,142,162,162, 34,212,161,206,130,166,184,184, 37,159,207,175,178,200, 82, 40, 20, 80, 40, 20, 21,133, 86, 78, 78, 14,146, -147,147,161, 82,171, 91,213, 80,244, 14,104,209,162, 5, 15, 0, 36, 18, 9, 90,181,106,133,245,235,215, 27, 15, 31, 56, 48,164, - 89, 84,148,189,231,137, 19,182, 63,126,255,253,144, 65,131, 6,153, 46, 93,186, 4,165, 82,137, 59,119,238,160, 65,131, 6,124, -161, 88, 60,152, 14,231,250,145, 3,106,199,162,162, 62, 29, 58,116, 72, 42, 44, 44,196, 87, 95,125,197, 21, 88, 91,255,176,176, -154, 83,124, 21,120,188,142, 33, 33, 33, 56,116,232, 16,210, 83, 82,230,164, 84, 81,192,164, 0, 57,169,137,137,115, 54,111,222, -140, 94,189,122,129,195,231,215,187,163, 82,187,118,237, 90,152,205,102,220,188,121, 19,182,192,229,250, 62,223,215,207, 47,184, -188,229, 87, 10,156,175,238,113, 82,224,124,116,116, 52, 36, 18, 9,154, 54,107,214,186,158, 47,179,130,195,225,100,140,153, 56, - 13,251,143, 95, 4, 0,108,254, 97, 77, 86,165, 34,139, 16, 66, 45, 90, 47,107,139, 86,121, 97, 85,249,134,199, 10,173, 58, 22, - 31, 0, 0,129, 64, 0,161, 72, 4,161, 80, 88, 90, 32,137, 68,117,206,224,112, 56, 16,139,197, 21,133, 85,229, 2,171,242,255, - 45, 45, 45,235, 84,192, 0, 64, 65,194,241,206,227,198,142, 17,138, 68, 34,232,245, 58, 48,198, 32, 18,137, 97,107,107, 11, 31, - 31, 31, 40,149, 74,116,232,216, 69,247, 80, 97, 17,225,208,180,127,204,211,108, 61,163,209, 8,181, 90,141,130,130, 2,228,231, -231, 67,169, 84,162,184,184,184,206,151,162,155,205,102,222,195,135, 15,241,243,207, 63, 35, 47, 47, 15, 64,105, 71,235,242,226, -170,252,223,164,164, 36,108,219,182, 13, 15, 30, 60,168,215,251,211,185,115,103, 68, 68, 68,240,186,246,232,177,225,148,183,119, -250, 41,111,239,244,174, 61,122,108, 56,116,232, 16,207,221,221, 29,201,201,201,184,118,237, 26, 10, 10, 10,192, 24,163,235,231, -159,194,125,160, 64,147,159, 63,230,211, 79, 63,101, 86, 86, 86,248,234,127,255,107,185, 4,248,160,174, 5,140,172,134, 2, 70, -246,108, 5, 12, 24, 99, 48,155,205, 48,153, 76, 79,181,110, 28, 14,135, 35, 16, 8,234, 59,180, 66,125, 30, 92,209,241,125,214, -103, 75,113,244,224,222,242,159,199, 83,145, 69, 8,121, 5, 84,219, 17,158, 95,169,130,172,248,183, 58, 89, 89, 89,143,212,106, -117, 35,111,111,111,164,165,165, 57,121,121,121,165, 8, 5, 2, 88, 8,133,224,112,107,175, 9, 44, 45, 45,111,166,167,167,119, -116,119,119,135,209,104,172, 40,170,158, 60,117, 88,222, 74,115,253,250,117, 88, 90, 90,222,132,182,198,145, 19, 96,210, 23, 52, -108,221,186,117, 69,203,144,173,173, 45,108,109,101, 16,137,196,152, 55,111,158,121,229,138, 21,235,188,186, 47, 44,252,112,250, -167,236,211, 37, 27,158,235,150,173,235, 31, 38, 75, 75,203,155,158,158,158,237,101, 50, 25,246,239,223,143,228,228,100, 20, 20, - 20, 64,163,209, 64,167,211, 65,163,209, 64,175,215, 67, 44, 22,163, 89,179,102,176,177,177,193,233,211,167,111, 66,167,171,186, -184,204,203,219,127,243,230,205,246,109,219,182,173,104, 81,233,214,173, 27,167, 91,183,110,142, 21,173,104, 26, 13,114,115,115, -113,229,202, 21,156, 62,125, 26, 28, 14, 7,241,241,241, 38, 93,113,241, 78, 58, 38,158,142, 22,248,157,183,121,243,166,143, 62, -250,104,108,199,142, 29, 97, 2,222, 2,176,237,111, 44, 96, 0, 0, 81, 81, 81,183, 76, 38, 83,199,198,141, 27, 67, 1,188, 1, -224, 96,189,138,200,132,132,104,163,209,216,163,101,203,150,216,191,103, 79,103, 0,201, 85, 61, 78, 13,116, 14, 14, 14, 70,113, -113, 49,238,196,198,202,235, 81,100,109,152, 27,182,108,244,200,113,147,177,117,195, 58,108,254, 97,205,195, 77,235, 87,123,162, - 14,253,199, 8, 33,255,170,214,172, 90,107,145,127,168, 9,213, 21, 95,252,250,164, 20, 22, 20,200,163,163,163, 27,181,110,221, - 26, 27, 54,108,104,219,161,125,251, 71, 22, 66,161, 81,104, 97, 1,110, 29,254,144, 20,171,213,191,254,250,235,175,111,244,239, -223,159,127,233,210, 37,184,184,184, 84, 20, 90,229,255,242,249,124, 48,198, 96,105,105,137, 95,126,249,197, 80,172, 86,255, 90, -107,107,145,201,108,226,150, 21,122,140, 49, 40, 20, 10, 88, 88, 88,224,235,175, 87, 98,237,138, 21,195, 76,192, 94,127,105,131, - 79, 0,136,255,182, 63,208, 26,205,111, 71,143, 30,109,179, 96,193, 2,129,135,135, 7, 20, 10, 5, 10, 10, 10,144,151,151, 7, -165, 82, 9,165, 82,137,130,130, 2, 40, 20, 10,136,197, 98,196,196,196,148,104, 53,154,223,170,203, 19,105,181,251, 70,141, 26, - 53, 43, 58, 58,218,149,207,231,163,164,164, 4,102,179, 25,102,179, 25, 6,131, 1, 9, 9, 9,184,125,251, 54,238,222,189,139, -252,252,124, 8, 4, 2,240,120, 60, 92,191,126,189, 64, 90, 82,178, 71, 79,199,244, 83, 19, 0,251, 47, 92,184, 48,118,196,136, - 17,112,243,240,232,130,180,180, 58, 21, 48, 7,106, 40, 96, 10,159,174,128,249,163, 0, 42, 42,186,154,148,148,212,177,107,215, -174,112,245,240, 88,214, 44, 45,237, 84,108, 61,250,105,153,140,198,243, 23, 46, 92,232, 49,114,228, 72,108,216,176, 97, 89,131, -164,164,227, 57, 79,156,230,108, 0, 52,120,205,215,119,217,232,209,163,113,242,228, 73,152,140,198,243, 53, 68, 86, 30,241,189, -225,232, 9, 83, 61,159,232,248,190,158,195,225, 76, 1,240, 21,237, 81,132,144, 87,185, 69,171, 94,167, 14, 37, 38,211,220,153, - 51,103,150,112,185, 92, 12, 24, 48,192,250,224,161, 67,131,174,223,184,225,147,157,157,109,107, 50,153,106,205,106,160,211,173, -158, 57,115,166, 66,175,215, 35, 32, 32, 0,249,249,249, 48,153, 76,224,243,249,224,243,249,224,112, 56,224,114,185,176,178,178, - 66,116,116, 52, 54,109,218,164,108,160,211,173,174,245,143,132,201,116,115,219,182,109,224,241,120, 76, 44, 22,131,195,225,128, -207,231, 99,229,202,149,217,107,129,253, 0,192,227,114,245, 0,192,229,114,234,218,123,183,214,243,150, 66,161, 16,230,210,139, - 0,106,125,172,157, 78,183,106,249,242,229, 69,119,238,220,129, 90,173,174,104,125, 83,169, 84, 21,157,235, 21, 10, 5, 56, 28, - 14,212,106, 53, 14, 29, 58, 84,100,167,211,173,170, 46, 47, 15,200, 76,139,143,127,183,109,219,182,121, 73, 73, 73, 40, 44, 44, -196,205,155, 55,113,250,244,105,236,222,189, 27, 39, 79,158, 68, 66, 66, 2,140, 70, 35,220,221,221,193, 24,195,129, 3, 7, 10, -141, 69, 69,111,229, 1,153,116, 76, 84,175,161,139, 75, 15,103, 39,167,212, 6,142,142,105, 13, 93, 92,122, 60,249,123, 25, 16, - 23, 23, 23, 7,163,209, 8, 31, 31, 31,251,154,250,105, 49,163,241,194,133, 11, 23, 48,114,228, 72,120, 54,106,244,165, 55,208, -224,201,199,120, 3, 13,188,125,125,191, 44, 47, 96,152,209,120,161,190,203,108, 13,172,249,228,147, 79,138, 45, 44, 44,176,107, -215, 46,159, 18, 63,191,187,124,224, 3, 43,160, 73, 87,192,162,182,231,187, 2,235, 62,251,236,179, 76, 14,135,131,237,219,183, - 59,202,124,125,111,241,129, 81, 50,160,161, 12,104,200, 7, 70,201,124,125,111,237,218,181,203,209,104, 52, 98,250,244,233,153, -174,192,186, 26, 34,167, 50,198,222, 97,140,133, 48,198, 60, 55,173, 95,141,163, 7,247,150, 23, 89,227, 80,218,233,125, 4,128, - 91,180,199, 17, 66, 94,101, 85, 54, 67,241,219, 46,206, 2,152, 83,151,118, 65,184,122,227, 94,161,163,157,205,137,242,223,229, -223,222,219,184,123,160, 77,208,183,223,126, 11,129, 64,128,135, 15, 31, 34, 54, 54, 22, 54, 54, 54, 24, 54,108,152,174,184,168, -232,221, 74,115, 29,246, 4,112,186, 44,179,116, 62,181,194,120, 43, 95,126, 76,163,227, 71, 35,120, 50,153, 12, 42,149, 10, 92, - 46, 23, 98,177, 24,150,150,150,144, 72, 36,184,118,237, 26,250,190,211,207,148, 99, 25,242,199,128,165,127,204,167, 86,145, 89, - 62,214,208, 27,128,101, 52,240, 95, 39, 55,183,153,243,231,207,151,244,238,221, 27, 22, 22, 22,240,104,232,159,233,211,231,171, - 53, 92, 46,199,152,150,167,156,231,219,208, 77, 22, 27,159, 12,128,147, 93,114,101,190, 91,165,185, 14,255,180,156, 94,250,115, - 62,191,252,180,194,166, 85,171,210,254,232, 10,133, 2, 89, 89, 89,200,206,206,134, 66,161,128, 90,173, 6, 0, 68, 68, 68,224, -104,228, 93,101,177,199,160,196,234,150,243,143,117,191,103,237,102,184,252,218,142,109, 63,241, 26, 52,104,128,172,172, 44,228, -228,228, 64,161, 80,160,184,184, 24, 38,147, 9,249,249,249,216,184,249, 39, 83,158, 85,200,131,138, 1, 33,107,202, 84, 63,148, -216,171, 46,186, 7, 55,243,102, 99,199,142,181,182,177,177,129,217,108, 70, 65, 65, 1, 82, 83, 83,145,148,148,132,200,200, 72, -117,182, 66, 15,181,227,155,105, 21, 3,150, 86,145,249, 28,189,116,153,149,199,173,114,115,117, 77, 79, 73, 73,113, 50,153, 76, -112,119,119, 55, 42,242,243,191, 20, 2, 39,173,129, 12, 0, 44, 23,152,191,106,205,154, 49,253,250,245,195,235,175,191,254, 48, - 51, 43,235,181,170,246, 37, 6,240, 2, 0,153,198,195,227,246,149, 43, 87, 92, 82, 83, 83, 49,114,228,200,220,148,251,247,231, -148,247,215, 42, 4, 58,123,251,250,126,185,107,215, 46,199, 70,141, 26, 33, 48, 48, 48, 83,156,154,218,252, 30, 80, 88,205,254, - 89,237,177,169,136, 59,242,218,164,247, 90,188,254,241,199, 31,195,104, 52, 34, 50, 50, 18,151, 47, 95, 70, 74, 74, 10, 46, 94, -188,168,176,145, 74,135, 84,154,235,176,202,253,243, 45,127,181,207,246,237,219, 56, 22, 22, 22,216,188,121, 51,162,163,163, 1, - 0,193,193,193, 24, 61,122, 52,140, 70, 35,134, 15, 31,193,142,220,147, 36,214,180,127, 2,104, 1,224,127, 40, 45,242, 94,103, -140,137, 57, 28, 78, 58, 0, 79,212,175, 79, 22,237,159,148, 73,153,255,158,204, 87, 82,173,115, 29, 46,254, 14,178,199,167,249, - 24,159,190,119,253, 66,126,167,206, 33, 77, 22,134,135,113,219,182,109, 11, 79, 79, 79, 4, 7, 7, 35, 53, 53, 85,100,107,107, - 91,219,124,106,170,144, 62, 31, 36, 5, 5, 5,217,206,153, 51, 71,214,171, 87, 47,129,167,167, 39, 24, 99,136,142,142,198,254, -253,251, 13, 27, 54,108, 80,106,156,223, 81,200,207,252,172,170,203,124,106,151, 1, 13,128,207, 61,210,211,127,152, 60,105, 82, - 88,171,214,173,199,134,135,135,115,173, 44, 37,130,165,243,198,137, 1, 96,241, 55,187,101,253, 6, 13,195, 42, 63,160,203, 7, - 85,207, 35, 87,121, 57, 83,211,198,167,188,253, 94, 15,191,255, 78, 25, 99, 26, 60,120,176,212,198,198, 6,158,158,158,176,179, -179, 67, 98, 98, 34,210,210,210,216,225,195,135, 85, 81,215,227, 4, 7, 78, 94, 77, 17,203, 92,235, 50, 47, 97, 81, 72,239,247, - 31,188,253,246,219,118,163, 70,141,178,110,211,166,141, 64, 36, 18, 65, 36, 18, 33, 43, 43, 11, 9, 9, 9,134,195,135, 15,171, - 52, 78,111, 21,200,207,236, 42,170,227, 92,135,197, 33, 67, 23, 38,156, 63, 21, 62,253,246,205,155, 35,204, 64, 75,131,193,224, -110, 50,153, 56, 92, 46, 55,195,108, 54,223, 52, 20, 21,109,210, 5,135,175,164,185, 14,235,198,100, 50, 89,152, 76, 38, 40, 20, - 10,156, 58,117,138,127,255,254,253,249, 55,110,220,152,159,158,158,142,146,146, 18, 12, 28, 56, 16,193,193,193, 56,115,230, 12, -114,178,178, 14,215,148,117, 15, 40, 20,165,165,141, 30, 63,126,252,177,109,219,182,113,111,220,184,225,184,121,243,230,141, 85, - 21, 48, 35, 70,140, 48,103,165,166,142,214, 1,133, 53,236,159, 53, 29,155,185,199,119,173,189,209,127,192,160,102,225, 11,230, - 11, 58,116,232, 0, 71, 71, 71,116,238,220, 25, 6,131,193,182,105,211,166,181, 29,155, 69, 33,125,134, 36,182,108,217, 82,186, -114,229, 74,151, 49, 99,198, 96,202,148, 41, 0,128,226,226, 98,156, 60,121, 18,211,167, 79,207, 76,229,191,161,174,109,255, 44, -107,169, 42, 47,192,206, 1, 8, 1,144, 8,234,248, 78, 8,121, 53,149, 79, 42,237,138,210,137,165,143,160,244,203,121,237,115, - 29,158,191,124, 11,149,167,249, 40,229, 26,107,244, 26,117,127,226,204, 47, 3,121, 37, 74, 59, 1, 71,107, 19, 31, 23,199,169, -109,206,195,138,249,212,100,254, 42,135,164,157,109,151, 46, 94, 60,109,213,170, 85, 61,202,135,112,176,180,180,188, 89,172, 86, -255,218, 64,167, 91,173,145,249,255, 90,223,185,249,210,128, 44, 0,147,236,228,242, 53,161,253, 6, 46, 23,219,251, 8, 62, 93, -178, 65,203,227,114,245, 9,233, 57, 88,229, 7, 72,235,112,129,164, 70, 15,220, 86,184, 26,179, 28, 6,221,251,236,147, 79,254, -187,248,243,207,219, 90, 89, 89,117, 49, 24,141,254,102,179, 25, 48,155,227, 53,106,245, 57,102, 48, 92,209, 5, 47, 88, 33,150, -185,178, 58,207, 75,104,219,180,200,254,193,222,182, 91, 54,109,154,186,103,207,158, 63,173,187,131, 78,183, 70, 99,219,244,116, - 93,214,189,242, 99,180,192,239,200,206,254,189,166,166, 75,154,235,176,142,223, 62,204,230, 9,118,118,118, 91,123,244,232, 33, -238,217,179, 39,250,246,237,139, 14, 29, 58,192,108, 54,131, 49,134,162,162, 34,236,222,189, 27,203,151, 47,143,127, 13,248,188, -182, 60, 29,240,171,232,232,209,183, 90,182,108,185,185,166, 2,166,172,200,170,181, 79, 98,205,199,166, 40,222, 40,123, 55,121, -232,228,165,126,122,101,134,173,131,165,209,229,246,173,155,220,186, 31,155, 1, 69,166,232,221,111, 12,124,239,189,201, 60, 62, -191,115,217, 21,144,236, 78,108,172,188,124, 82,105, 4,143, 62, 85,207,125,169,124,236, 58,234,248, 78, 8,121,213, 11,173,190, - 40,237,175, 85, 49, 37, 79,181,115, 29,150,183,250,240,249,252,236,196, 3, 19,135,213,148, 46, 0,122,148,181,100,161,214,185, - 14,203,254,159, 12, 20, 65,167, 91,244,216, 96,164,149,174, 46, 20, 60,241,248,250, 12,139, 88, 0,220,131, 81, 23,138,236, 88, -224,208,164,210,188,182,139,103, 87, 94,167,106,255,200, 62,246,186, 22,249, 90,224, 60, 84,170,243, 80,169,170,236,180, 43,224, - 91,228,215,182,156, 79,174,123, 42,160,124,214,117,127, 50,179,214,226,225, 25,182,231,191,205,163,220,220, 3, 0,172, 60, 34, - 34,156,143, 71, 68, 12,254,239,140, 25, 3, 93,221,220,124, 29, 29, 29,237,172,173,173,185,151, 46, 93, 74, 50,106,181,107, 90, - 1, 91,202, 90, 83,107,165, 3,126, 13, 72, 77,109,254,254,123,239, 77,230,240,249,157, 42, 23, 48,204,104,188,232, 3,172,171, -169, 37,235,105,143, 77, 79,145,107,143,178,150, 44,240,128,241,117,217, 55,210, 74,151, 99, 9,140,198, 37,136,137,169, 98,159, -175,247,190,180,152,195,225, 20,129, 58,190, 19, 66, 94, 93,229,243, 29, 30,249,171, 95,184, 39,101, 82,230, 43,148,201, 67,233, - 85,116,180, 61, 41,147, 50, 41,147, 50, 73,157,240,105, 19, 16, 82,103, 38,252,113, 26,140, 16, 66, 8, 41, 87,222, 55,171,178, - 31,128,210,174, 59,213, 85,165,245,185,154,224,105, 42,219,211,148, 73,153,148, 73,153,148,249,183,100, 90,226,207,167,189,105, -123, 82,230, 95,149, 89, 91,246,203,120, 53, 99,121,159,172,138,190, 89,127, 21,106, 86,165, 76,202,164, 76,202,164, 76,202,164, -204, 87,157,107, 89,145, 85,249, 6,160,158, 3,150, 18, 66,200,171, 42, 60, 28, 92,198,192, 97, 44,156,203,216, 30, 30, 99,131, -120,140,225,153,166, 2, 25, 52,168,234,193,108,255,111,152,157, 53,109,113, 66, 94, 41, 25,168,102, 82,105,234,163,245,247,242, -114,113,113, 89, 15,128,147,153,153, 57, 1, 64, 42,109,146,127, 30,123,123,251, 30, 70,163, 17, 74,165,242,215, 87,113,253,154, -249,226, 61,198, 69,211,255,103,239,187,227,154,186,254,247,159,123,115,179, 19,194, 76,216, 40, 34, 32, 32,184,112,212,189,112, -129,179,106,181,182,218,186, 91, 91, 71,173,173,181,117,213, 85,107,171,118, 56, 91,181,138,173, 11, 71,113, 15, 20,247,194,193, - 6,145,165,140,132,149,132,236,117,127,127, 8,124,208, 50,130, 31,251,249,214,254,242,188, 94,121, 17,146,123,159,156,115,239, -185,231, 60,231,125,222,231,253,174,249,128, 70, 94, 74, 38,118,215,117,108,176, 63,222, 5,241,159, 88, 92,132, 5, 41,201,143, -112,184, 9, 63, 71, 14,238,239,253, 51, 0,156, 60,151,255, 33,254,158,184, 90,129, 98,177,248, 52, 69, 81,148,217,108,158, 41, -149, 74, 99,235, 23, 66,163, 25, 0,192,164,227, 22, 86, 20, 73, 62,159, 51,131, 96,170,117, 59, 42,116, 26,149,156,193,100,100, -115,152,110, 87,166,191, 79,158, 44,148, 27, 2,109, 0, 0, 32, 0, 73, 68, 65, 84,175,124, 35,185,174,243, 15, 30, 60, 88,111, - 22,239,214,254, 24, 76,154, 67,134,182, 15,125,156,181,110, 99,167, 13,189,252, 92,152,143,243,239, 9,191,217, 34,223,202,118, -104, 54,244,221,177, 68, 44,197, 39,222,217,177,163,180,242,223,250,236,172, 2, 72, 35,147,217,138,176, 88,252, 64, 16,124, 2, - 0,109,177, 88, 8,146,124,204, 53,153,210,231, 3,149, 47,193,233,100, 0,194,152, 28,142,183,217,100,114, 37, 0,154, 65, 81, -197, 70,157, 46,159, 5, 60, 88, 8, 84,252,219, 57, 89, 28,142,151,217,100,114, 5,128,127, 98, 57,109,120, 30,245, 10, 45,161, - 80,120,135, 36, 73,175,218,201,112,171,243, 9, 86,127, 86,251, 59,130, 32, 96, 54,155,159,148,151,151,135, 55,225,247, 69, 0, -198, 2,168,222,162,190, 23,192,126,188,188,195,177,136,197, 98,205, 23, 8, 4,125, 53, 26, 77,107, 0,224,241,120, 73, 42,149, -234,130,193, 96, 88,247,146,188, 20,128, 49, 66,161,176, 15, 73,146,125,104,154, 38,104,154,142,171,172,172,188, 0,224, 0,128, -151,137,148,192,147, 72, 36, 43,157,156,156,198, 47, 92,184,176,212,217,217,185,213,220,185,115,111,151,149,149,253, 94, 82, 82, -178, 8, 77,200, 81,247, 55,163,165,155,155,219, 94, 38,147,201,200,207,207,239, 3, 0,222,222,222,113,122,189,222, 44,149, 74, -223, 6,240,168,137,124, 2, 0, 93,132, 66, 97,184, 80, 40,236,105, 54,155,131,171,242, 51,166, 84, 86, 86,198, 27, 12,134, 59, - 0,110, 0, 80,253,131,158, 17, 59,138,162,246, 84,181,245, 0, 0,202,127, 91, 39, 64,147, 8, 78, 78, 74,109, 85, 35,188, 90, - 7,213,127, 48, 1,159, 58,142,181, 90,104,245,237,229, 62,116,216,176, 8, 18, 0,244,198,147, 67, 47, 92, 42, 60,250,138,171, - 19, 56,106,212,168,107,123,246,236,113,212,233,116,152, 54,109,218,222,115,231,206,253,172, 80, 40, 22, 54,216,113, 8, 29,231, -126,187,254, 12,159, 32, 72, 0,144, 88, 44,102,201,211,167,143, 2,146, 19,175, 13, 74, 74,186,190, 74,147,122,225,134,133, 96, - 78, 55,160, 71,170, 53,133, 8,246, 67,212,208, 55, 71, 70, 46, 95,190, 20,227,223, 26,223, 60, 41, 73,203,243, 20,101,177,203, - 52, 2,127,103,177,100,216,242, 21, 7,137, 43,151,143, 12,219,179,115,217,133,247,223,119,238,251, 47, 20, 91,196, 18, 54,219, -199,104, 54, 15, 34,129, 66,202,206, 46, 11, 44,150, 26, 0, 72,179,153,161, 87, 40, 90,170, 41,106,194,215,192,173,175, 76,166, -123,214,114,174,160,168, 46,246,254,254, 61,223, 58,114, 4, 66,111,111,138,226,112, 72, 0, 48,233,116,222,149,249,249,238,251, -134, 13,235,188, 52, 61,253,226, 82,224,166,141,243,255,132,211,134,166, 8, 45,146, 36,189,158, 62,125, 42, 17, 8, 4,207, 58, - 99,154,134,217,108,134,217,108,174, 73, 94, 76,211,116,205, 95,147,201,132,160,160, 32,171,102,180, 0,250, 2,152,212,187,119, -239,209,235,214,173, 99,134,133,133, 85,167, 12,233,241,197, 23, 95,252,148,144,144,112, 8,192, 46, 60, 11,222,104,237,140,119, -160, 64, 32,136,254,246,219,111, 69, 17, 17, 17,148,135,135, 7, 8,130, 64, 81, 81, 81,151,115,231,206,133,207,157, 59,119,166, - 74,165,154, 0,224,116, 19,174, 79,168,157,157,221,193,145, 35, 71,122,245,234,213,139, 27, 18, 18, 2,179,217,140,123,247,238, -189,127,231,206,157,113,135, 14, 29, 90,162, 84, 42, 71,195,250,124,109,132, 80, 40,156, 40, 18,137, 86, 46, 94,188,216,105,194, -132, 9,236,196,196,196,114, 63, 63, 63,226,202,149, 43,226,253,251,247,207, 92,179,102,205, 24,133, 66,177,168,178,178,242, 55, - 88,145, 67,209,206,206,238, 14, 73,146, 94,214, 8, 97, 0, 77, 17,195,237,124,125,125,247, 95,190,124,217, 55, 39, 39,199, 60, - 98,196,136,221, 0,112,225,194,133, 48,163,209, 72, 12, 24, 48,224,228,147, 39, 79,198, 2,176,182,147,108,227,228,228,116,116, -252,248,241, 78, 45, 91,182,228,251,250,250, 18, 2,129, 0, 12, 6, 3,114,185,220, 35, 49, 49,177,255,205,155, 55, 53,231,206, -157, 43,211,233,116,195, 0, 60,104,194,125,234, 42,145, 72,222, 97, 50,153,161, 38,147,201, 19, 0, 40,138,122,106, 52, 26, 19, -165, 82,233, 30, 0,215, 94,246, 1,113,117,117,253,113,229,202,149, 46, 82,169,148, 94,179,102,205,143, 74,165,114,226,191,181, - 51,216,251,251, 1,220,185,125, 19,120,150, 54,135,168,163,253, 17, 0, 88,115,230,204, 67,120,199,206,120,123,252,152, 70, 57, -135,244,243,250,150,201,102, 57,107,181,218,107,114,181,238,128,128,207, 29, 59,126, 92, 84, 6, 0,156, 60,117,113,108,167, 78, -142,113,246,124,206, 24, 46,151,219,213,168, 55,148,158, 56,255,228,211,166,136, 42, 79, 79,207,211,142,142,142,252,178,178,178, - 34,153, 76,182,121,232,208,161, 43,118,237,218,229,248,248,241, 99,228,231,231, 99,246,236,217,194, 39, 79,158,124,248,224,193, -131,235,122,189,190, 94,203,150, 82, 89,182,241,139,207,135, 47,182,183,119, 97, 8,248, 34,216,217, 59,193,175,101, 91,116,233, - 58, 20,131, 35, 39, 35, 51, 35,161,203,174,157,203, 19,158, 62, 61,183, 90,232,212, 98, 69, 69,133,111,189,253, 82, 72, 32,122, - 13, 27,249, 76,100, 45, 94,188, 20,233,169,169,202,156,108,242,163,227, 71, 40,254,224,126, 65, 28,147,190, 40,231,202,229, 35, -190,221,123,140, 0,128,240, 61, 59,151, 93,248,232,109,199,126, 63,238, 45,255,183,136,120, 98, 57,147, 25, 10,147, 41,208,217, -221,125,159,214, 98,161,141,114,185,183, 69,173,118, 7, 0, 19,147,169, 23, 8,133, 15, 61,252,253,227,211,239,222,237,249, 53, - 69,245,248,170,225, 4,229,213,156, 19, 7,174, 95, 47,105, 63,115, 38,171, 50, 59,219,144,181,101,139,186, 56, 62,222, 76,113, - 56,180,247,160, 65,132,184, 79, 31,238,204,148, 20,214,213, 53,107,122, 50,151, 45,243, 91,100, 48, 68,219, 56,255,167,156,255, -191,163,218, 9,190,246,238,195,109, 13, 10, 45,130, 32, 32, 16, 8,176,111,223, 62, 48,153, 76, 80, 20, 5, 38,147, 89,239,123, - 31, 31, 31,107, 10, 50,202,205,205,237,167,159,127,254,217,117,224,192,129,224,114,185, 53, 95, 48, 24, 12, 68, 68, 68,160,127, -255,254,204,130,130,130,113,251,246,237, 27,183,106,213,170,226,138,138,138, 89,168, 74, 12,221, 0,250,180,106,213, 42,230,204, -153, 51, 60,173, 86,139,248,248,120,148,151,151,131,205,102,195,203,203, 11, 3, 6, 12,160, 82, 83, 83,157, 34, 34, 34, 98,210, -211,211,163, 0,196, 89, 81,214,112,137, 68,114,233,192,129, 3,220,182,109,219, 18,153,153,153,104,223,190, 61, 0, 64, 46,151, - 99,196,136, 17,220, 9, 19, 38,180, 28, 55,110,220, 13,169, 84,218, 11,192,157, 70,248, 58,184,185,185,253, 54,114,228, 72,143, - 85,171, 86,137,236,236,236,144,147,147, 83,232,230,230, 22, 80,125,189,199,141, 27,199, 30, 58,116,168,251,218,181,107, 55, 30, - 60,120,240, 83,169, 84, 58, 17,192,221, 6, 85,107,149, 32,230,243,249, 40, 46, 46,198,222,189,123,241,225,135, 31,130,193, 96, - 64, 42,149, 98,255,254,253,248,232,163,143,170, 5,141, 85, 98,152,207,231,247,247,247,247,255,245,194,133, 11, 94, 14, 14, 14, -240,240,240, 32,191,250,234,171, 80, 63, 63, 63, 94,243,230,205, 25,133,133,133,136,137,137,241,123,231,157,119,142,230,229,229, -189,175,211,233, 26, 93, 82,115,117,117,221,113,252,248,113,159,164,164, 36,108,217,178, 5,101,101,101, 96,179,217,112,112,112, -128,155,155, 27, 2, 2, 2,136,207, 63,255,156, 63,116,232, 80,254,172, 89,179,118,232,245,250,118, 86,220,163,182, 18,137,100, -107,159, 62,125,252,150, 45, 91,230,224,230,230,134,234,137,129, 92, 46,247,202,201,201,233,178,120,241,226,209,119,238,220,121, - 44,149, 74,167, 3,184,223,196, 7,167, 93, 72, 72, 72,212,136, 17, 35, 24,133,133,133,216,179,103, 79,148, 82,169,108,215, 4, -113,249, 90,225,206,237,155,152,246,193,236, 74, 15,111,111,214,153,211,191,142, 58,120, 56,240,182, 3,239, 89, 66,234, 10, 13, - 12,163, 71,166,119, 28, 48,112, 50,107, 72,228,136,202,109,155, 54, 10,173, 17, 90, 76, 54,203,121,111,244,247,121,151,175,220, - 9, 61,123,238,230,160, 81,195,134,209, 44,150,131, 31, 0,124, 58,119, 14, 51,230,216,177,157, 17,253, 59, 23,244,232, 30,158, -247,246,132,121, 62, 77, 40,110, 96, 96, 96,224,197,132,132, 4, 87, 14,135,131,178,178, 50,231,109,219,182,125,223,189,123,119, - 50, 43, 43, 11,169,169,169,200,206,206,134, 92, 46, 71, 68, 68,132,240,238,221,187,155, 1,212, 43,180, 12,100,223,149, 30,205, -141, 63, 56,243, 4,190, 6,179, 66, 66, 27, 11, 67,206, 30, 63,219,230,143, 61,154,246,174,238, 65, 1,147,222, 91,130,229, 43, - 14, 49,127,223,251,205,226,243,231,254, 0, 72,223,250, 51, 2,208,232,250,197,162,133, 80, 40,117,152, 48,126, 42,222, 25, 63, -213,153,134,222,157, 54,107, 5,122, 77,185,131, 29, 43, 37,246,231, 95,190, 31, 9,192,171,150,216, 58,255,111, 17, 91,203, 89, - 44, 95, 88, 44,126, 1, 35, 70, 28,201, 58,117,170, 5,109, 48,184, 48,216,236, 39,118, 78, 78,197, 38,157,142, 54, 26, 12, 44, -141, 70,227,153,149,148,228,222,253,243,207,207, 95, 89,179,166,215,215, 12, 70,199,175,204,230,219,245,114, 82, 84,231,168,159, -126, 18,135, 78,153,194,185,191,108,153,170, 36, 62, 94,227, 63,100, 72,121,251, 25, 51,116, 0,160,204,206,102,165, 47, 89,194, - 23,247,236,201,123, 99,254,124, 71,179, 94,239,182,124,249,242, 78,139,159, 37, 47,111, 18,167,207,216,177,230,197, 59,119,118, -140,159, 55,175, 55, 97, 52, 50, 6,189,241,198,189, 53,123,246, 60,253,111, 56, 95,101, 57, 11, 46, 93,210,149,249,249,161,253, -136, 17,165, 62, 18,137,238, 85,214,253,191, 41,167, 13, 53,168,246,213,154, 86,123,134,138,216,216,216, 94, 0, 46, 2, 88, 22, - 21, 21,181, 20, 0,236,237,237,139, 43, 42, 42, 36, 49, 49, 49,141,138, 44, 38,147, 9,119,119,119, 4, 4, 4, 72,165, 82,169, -107, 3, 5,200,183, 88, 44, 94, 52, 77,215, 88, 95,234,131, 78,167, 67, 70, 70, 6,218,180,105,243, 4,207, 18,209,214,107,212, -225,243,249, 89,169,169,169, 46,201,201,201,184,115,231, 14,252,252,252,224,232,232, 8, 38,147, 9,163,209, 8,133, 66,129, 86, -173, 90,129,195,225,160, 67,135, 14, 37, 42,149,202,175,145, 37, 32,142, 64, 32,200,184,116,233,146,119,251,246,237,113,235,214, - 45,120,123,123,195,205,205, 13, 0,144,157,157,141, 43, 87,174, 96,200,144, 33, 72, 72, 72,192,155,111,190,153,175, 82,169, 2, - 0,232,234, 35,116,114,114, 42,188,112,225,194,147,176,176, 48,173, 74,165, 34,139,139,139,153,241,241,241, 38,165, 82, 41,148, -203,229,204,138,138, 10,166, 66,161,160, 84, 42, 21,147, 36, 73,150, 70,163, 97,158, 63,127,158, 97, 48, 24, 26, 12,144, 89,125, -159,142, 29, 59,134,176,176, 48,196,196,196,224,147, 79, 62,193,213,171, 87,225,237,237,141, 3, 7, 14, 96,254,252,249, 72, 75, - 75,131,139,139, 11, 66, 66, 66, 26,187, 71,104,217,178,101,230,195,135, 15, 91,178, 88,172,234,188,142,213,249,242, 32,147,201, -240,232,209, 35, 60,125,250, 20,254,254,254, 24, 63,126,252,163,167, 79,159,250, 55,214,242, 60, 61, 61,101, 73, 73, 73, 46,109, -218,180, 65,113,113, 49, 28, 28, 28, 96,111,111, 15, 7, 7,135,154,247,126,126,126,152, 55,111, 30,220,220,220,164, 90,173,214, -181, 49, 17, 20, 22, 22,118,250,252,249,243, 46, 34,145, 8, 69, 69, 69, 80, 40, 20,160, 40, 10,124, 62, 31, 46, 46, 46, 53, 66, - 62, 35, 35, 3,145,145,145, 37, 89, 89, 89, 3,155, 32,146, 72, 87, 87,215,212, 7, 15, 30, 4,208, 52,141,188,188, 60,164,165, -165,225,131, 15, 62,200,208,106,181, 65,248, 23,229,236,171,229,119,197,154,248,222, 52,214,200,225, 93,245, 41, 73,177, 4,199, -146,134,118,161, 34, 57, 0,220, 75, 84,216,235,200, 86, 8,110, 29, 69, 31, 62,122,141,253,219,174,109, 76, 88,224, 10, 2,105, - 41, 25,248,186, 62,238, 1,125,220,167,204,153,243,126,104,239,238,189, 72,165, 74, 37,217,188,121,125,135,172,172, 20, 9, 0, -248,249, 5, 75,103,206,156,123,215, 78, 32,144, 94,188,114,201,178, 97,195,142,196, 51,113,133,191, 88, 81,100,191,128,128,128, -235,199,142, 29,115,145, 72, 36,176,183,183,135, 74,165,130,193, 96, 64,114,114,178,118,223,190,125, 70,145, 72,100, 87, 84, 84, -132,138,138, 10, 16, 4,129, 99,199,142,229, 1,104,246, 34, 81,181,143, 22, 0,124, 48, 56,152, 25,210, 55,192,145,197, 49,241, -120,204,116,119, 16,102, 14, 65, 11, 93, 79,158,190,215,230,228,217, 91,111,143, 28,245,137,184, 71,175,145, 88,252,229,104, 99, - 65, 65, 94,123, 3,122,164,214,229,163, 21,228,143,190, 35,222, 28, 57,102,249,242,165, 88,186,120, 25, 98,143, 29,145, 11, 5, -164, 78,228,192,180,239,217,165,155,118,222,135,195,243, 43, 43, 11,188,151,175,221, 55, 62,114,248, 60,175,238, 61, 70,224,202, -229, 35,216,179,115,217, 29,130, 71,191,214,203,136, 75, 0, 22, 73, 81,147, 61,124,125,163,165, 5, 5,158,124,161,144, 57,251, -220, 57,137,217,108,190, 61,102,254,124,229,225,243,231,107,172,164, 95,145,164, 7,131,193,240, 8,136,140,124,144, 25, 27, 59, -153, 99, 50,197,124, 6,200, 94,228, 92, 10, 56, 58,248,249, 77,255, 56, 35,131,117,127,233,210, 74, 83, 65, 65,121,248,220,185, - 37,117,253,254,147,179,103, 5,108, 15, 15,145,227,176, 97, 78, 27,155, 53,163,141, 82,233,214,186,124,140,234,226, 60, 39, 20, - 58,252,113,242,100, 63,154,201,236,181,224,179,207,120, 81, 81, 81, 80, 40, 20, 56,116,232, 16,182,110,217,162,115,119,119,127, -232,145,152,152, 16,170, 80,124,105, 45,103,248,220,185, 37,102,179,153, 24, 51,127,126, 68, 82,118,118,223, 34,169,180, 57, 0, -184, 59, 57,229,135,251,249,221,217, 17, 27,155,246,163,175,175,197,218,114,110, 63,117,202,245, 96, 78,206, 20, 39, 39, 39, 94, -177, 84, 74,113,216,236,210, 46, 33, 33, 7, 54, 45, 90,116,209,244,224, 1,139,235,229, 37,178,143,138,106,114,221,195,231,206, - 45, 41, 83, 42,169,143, 87,172,232,150, 91, 92,220,188, 82,167,243,175, 80, 42,221,204, 70, 35, 41,226,243, 75, 91,180,106, 37, -213,196,199, 23,182, 80,171,103,255, 2, 72,255,174,246, 83,151, 22,121,141,240, 98, 28,173,191,228, 58,188, 24, 21, 21,245,151, -221, 53, 52, 77, 91,101,205, 98, 50,153,207, 45, 83, 53, 0, 22, 65, 16,184,123,247, 46,156,157,157,225,230,230, 6, 14,231,249, -228,131, 50,153, 12, 87,175, 94, 69, 74, 74, 10,218,182,109, 91,189,140, 81,191, 34,226,112,230,172, 93,187,214, 65,175,215,227, -206,157, 59, 8, 15, 15, 7,135,195, 1,139,197,122, 78, 4, 74,165, 82,180,110,221, 26, 11, 22, 44,176, 95,181,106,213, 28,157, - 78, 87,239,140,148,162,168, 89, 83,167, 78,149, 84, 91,176,242,243,243,209,161, 67,135,154,239,197, 98, 49,238,221,187,135,240, -240,112,120,121,121, 97,244,232,209,146, 61,123,246,204, 50,153, 76,235,234,227,100,179,217,100, 88, 88, 88, 71, 0, 16, 8, 4, - 32, 73, 50, 93, 36, 18,137, 93, 93, 93, 5, 34,145,232, 47,117,220,185,115,103, 5, 73,146,198, 70,213, 0, 73,162,168,168, 8, -161,161,161,144,203,159,101,112, 81,169, 84,240,247,247,135, 66,161,168, 17,173, 30, 30, 30,208,104, 26,118,253,106,211,166,205, -210,160,160,160, 1, 2,129,128,195,100, 50,113,255,254,125,180,111,223, 30,251,246,237,131,143,143, 15,248,124, 62, 50, 50, 50, - 16, 22, 22,134, 75,151, 46, 65, 44, 22,163,117,235,214, 28,137, 68,114,185,172,172, 44, 46, 55, 55,119,105, 3,229, 36,133, 66, - 33, 46, 93,186,132, 29, 59,118, 32, 59, 59, 27, 5, 5, 5,176,179,179, 67,187,118,237, 16, 18, 18,130,174, 93,187, 34, 35, 35, - 3, 68,227,141,201, 45, 32, 32, 32,246,214,173, 91, 46, 52, 77, 99,207,158, 61,168,172,172,132, 94,175, 7, 73,146,224,114,185, -112,116,116, 68,223,190,125, 33, 22,139, 17, 16, 16,128,253,251,247,187, 12, 30, 60,248,132, 84, 42,109, 7,160,168,177,235,234, -232,232, 56,123,201,146, 37,222, 18,137, 4, 57, 57, 57,144,203,229,112,117,117, 69,239,222,189, 61,207,157, 59, 55,219,104, 52, -174,255,183, 8,173, 90,142,239,196,153,211,191,142, 10,104, 81, 30,214,182, 21,223, 59, 38,214,213,123, 95,172,180, 53, 0,132, - 6,187, 38,141,138,226,231,223, 79,138,205, 63,115,250,200,157,148,116,196,192,138,165,109,185, 90,119,224,236,185,155,131,218, -183,237, 96, 89,251,205,252,200, 15, 63,152,194,145,184, 78, 70,113,222, 17,156,187,112,215,103,254, 39, 83,197,235,190,219,126, -242,236,185,155,164, 92,173,251,210, 58, 83,150,207,143,187, 54,117,117, 81,150, 28, 68,102, 42, 27, 60,187, 80,248,249, 5, 66, -161, 80,128,203,229,114,199,143, 31,111, 94,184,112,161, 90, 36, 18,241, 9,130, 64, 92, 92,156, 20,192,192,198,120,181, 18, 71, -218,108, 48,154,104, 54,195, 66, 19,118, 26,194, 92,198, 78, 76,126,140, 1,253,251, 20,119,239, 28,186,106,225,242,239,190, 8, - 8,108, 47,126,127,202, 50,230,138,165,111,111, 1,129, 30,117,241,164,102,226, 2,113,224, 48, 15, 64,228,242,175,151, 34, 43, - 43,195,113,218,164,138,101, 20,135,231, 17,212,172,155,221,150, 29,113,131,252,253,125,155,207,155, 53,250,248,247, 63,125, 31, - 89,219,178,181,107,231,146,163, 0,250, 89,115,109,255,137, 32, 41,170, 21, 73, 16,249, 10,181,154, 65, 27, 12, 46,179,207,157, -211,156,185,113,227,252,131,105,211,236,218,176, 88,129,109, 88, 44, 48, 12,134,210, 69, 64,201,215, 22, 75,193, 18,138, 18, 61, - 62,122,212,131, 98,179, 19,180, 22, 75, 24, 44,150,186,226, 39,181,121, 39, 54, 22,149,121,121,198,178,203,151,181,253,126,250, -169,196,123,224,192,245,122,131,193,165,186,171, 32, 9, 2, 68,181,235,132,197, 66, 80, 11, 22,144, 52, 69,193,232,232, 56, 9, -229,229,129,141,113,126, 82, 88, 56,234,237, 41, 83, 34,143,158, 58, 5, 95, 95,223,154,241,204,193,193, 1,243,231,207,199,220, -185,115, 57,247,238,221,235,116,240,224,193, 78,235,190,253,214, 21,192, 40,107,202,121,230,198, 13,199, 25,203,151, 47,106, 27, - 30,238,179,123,239, 94, 78,203,150, 45, 1, 0,143, 30, 61, 10,248,102,205,154,102,161, 97, 97,197,171,230,204,217,149,180,112, - 97,107, 0,151, 27,226, 44,138,143,215, 31,204,201,153,114, 33, 46,206, 33, 52, 52, 20, 0,144,150,150, 38,217,184,113,227,212, -214,163, 71, 79, 88, 62,115,230,151, 81, 90,109,133, 72, 38,227, 68,253,248, 35,245,199,152, 49,141,114, 86,151, 19, 0,122,191, -255,254,156, 30,125,250,132,140,154, 50,197,201,199,199,135, 16, 10,133, 48, 24, 12, 40, 40, 40,112, 76, 74, 74,106, 25,171, 84, - 42, 14,223,184,177, 7,102,115,196,223,216,132,234,212, 34,175,153, 37,235,175,207, 69,213,223,222,177,177,177,116,149,154,172, - 25,192,205,102,179, 85, 34,139,162, 40, 16, 4, 97,173,216, 2, 77,211, 40, 41, 41, 65, 98, 98, 34, 30, 61,122, 4,149, 74,133, -199,143, 31, 99,219,182,109,248,230,155,111,112,251,246,109, 24,141, 70, 24, 12,141,231,160, 21, 8, 4,253,251,247,239, 79,221, -184,113, 3,126,126,126,224,241,120, 96,179,217, 96,177, 88, 53, 47, 46,151, 11,119,119,119, 40, 20, 10,244,235,215,143, 41, 16, - 8,250, 55, 98, 37, 26, 50,118,236, 88,118,245,255,149,149,149, 96, 48, 24, 53,162,165,178,178, 18,101,101,101,168,168,168, 64, - 97, 97, 33,222,120,227, 13,182,189,189,253, 16,107,239,134, 90,173,174,148, 74,165, 14, 61,122,244,112, 76, 73, 73,249, 75,182, -223,139, 23, 47,106,181, 90, 45,147, 36, 73,171, 28,237,163,163,163, 17, 19, 19,131,243,231,207,227,201,147, 39,216,178,101, 11, -118,239,222,141, 99,199,142, 33, 35, 35, 3, 63,252,240, 3, 54,111,222,140, 93,187,118, 53,120,143,130,130,130, 6,239,217,179, -167,115,151, 46, 93,248, 12, 6, 3,105,105,105,152, 55,111, 30, 42, 42, 42, 32, 22,139, 1, 0,197,197,197, 88,191,126, 61,116, - 58, 29,132, 66, 33, 60, 61, 61,185,203,151, 47,239, 46, 22,139, 7, 52, 84, 70,179,217,108,102, 48, 24,104,214,172, 25, 22, 47, - 94,140,205,155, 55,227,244,233,211, 56,112,224, 0,102,206,156,137,144,144, 16, 36, 36, 36,224,246,237,219,160,105,186,193, 65, -134,203,229,142,222,189,123,183,132,205,102,195, 98,177, 64,169, 84, 34, 47, 47, 15, 55,111,222,212, 30, 57,114,164,242,248,241, -227,234,203,151, 47,107,175, 93,187, 70, 3,168, 17,156, 81, 81, 81,206,108, 54,251, 45, 43, 46,169,216,205,205,237,139,169, 83, -167,114,107,183,217,162,162, 34,140, 26, 53,138,207,227,241, 22, 2, 16,255, 11, 77,222,244,193,195,129,183, 57,150, 52,196,196, - 62,245,206,125, 98,238, 54,255,211,239,156,230,127,250,157, 83,238, 19,115,183,152,216,167,222, 28, 75, 26, 14, 30, 14,188,109, -133, 16, 32,251,246,114, 31,238,234,236,176,117,212,176, 97,244,230,205,235, 59,124,248,193, 20, 78,179,192,249,224,218,143,135, -167,223, 12,244,235,233, 67,180, 9, 33,185,155, 55,175,239, 48,106,216, 48,218,213,217, 97,107,223, 94,238,195,209, 72,216, 25, -137, 51,215,147,207, 81,161,101, 64, 8,122,247,106, 11, 38,145,137, 67, 7,118,160,176,176, 16, 5, 5, 5, 40, 46, 46, 22, 12, - 29, 58, 20, 69, 69, 69,218,184,184, 56,169, 70,163,233, 5, 32,189,177,202, 63,121,146,108,209, 86,154, 13, 22, 51,211,164,148, -179,212, 51,103, 31,236,127, 59,137,245, 94, 81,133,231, 80, 54,199,145, 61, 56,162,211,222, 29,191, 44, 70,139, 22,161,232,216, -105,192, 27,142,194,235, 33,245,138,215, 44,196,254,121,232,240,209,241, 99,199,155,178, 31,231, 60, 14,116,229,234,105,154, 54, -206,254,124,123, 4, 83,224,221,166,101,112, 79,113, 74,166,217,125,241,130,183,126, 63,126,244,251, 39, 87, 46, 31, 65,247, 30, - 35,224,233, 17,208,107,210, 36,176, 95,215, 6, 68,208,180, 31, 83, 40,204, 50,202,229,205, 40, 14, 39,207,108, 54,187,220,154, - 62,221,193,192, 98,185,155, 13,134, 2,179,193, 80, 96, 96,179, 69, 63, 7, 7,123,209, 52,237,236,224,229,245,148,102,179,125, - 76, 6, 67, 38, 65,146, 45,234,156,157,115, 56, 94,194,102,205,168,162, 51,103,244,126, 67,135,150, 3,128,222, 96,112,201,206, -201,177, 47,150, 74,237,139,138,139,237,115,243,243,237,179, 30, 63,182,207,200,204,180, 79,205,204, 20, 61, 76, 76, 20,222,123, -248, 80, 72, 48, 24,174,214,112,102, 23, 20,180, 89,176, 96, 1,120, 60, 30, 76, 38, 83, 93,125, 54, 84, 42, 21, 38, 77,154, 4, - 53,208,197, 26, 78,179,217, 76,204, 88,190,124,209,103,139, 22,181,140,137,137,225,116,238,220, 25, 78, 78, 78,112,114,114, 66, -231,206,157,113,240,208, 33,246,204, 89,179,188,190,248,229,151, 73, 36,135,227,221, 24,103,137,191, 63,156,156,156,120,213, 34, - 11, 0, 90,181,106,133, 45, 91,182,112, 78,157, 62,109,255,245,175,191,126,183,236,218,181, 48, 93,110,174,202, 57, 48,144,102, -115, 56, 94,214, 94, 79, 0, 80,106,181,161,235, 55,110,116,118,113,113, 33,138,139,139,145,153,153,137,220,220, 92,152, 76, 38, -116,236,216,145, 56,112,232,144,189,158,193,232,244, 55, 55,161,191,104,145,215, 8,211, 80, 79, 28, 45,170,106, 0,186, 4,128, -136,141,141,165,171,151, 19,171, 6,199, 26, 49,101,141,208,122, 25, 84, 84, 84,160,162,162, 2,191,252,242, 75,141, 48,170,134, - 94,175,183, 70,180,132,121,120,120, 64, 46,151, 35, 48, 48,240, 57, 75, 22,139,197, 2, 69, 81, 96,177, 88,224,112, 56,208,233, -116,240,241,241,129, 90,173, 14,107,136, 83,163,209,180,115,114,114,170, 25, 96,117, 58, 93,141,200,170, 46,175, 94,175, 71,121, -121, 57, 42, 43, 43,161, 84, 42,161, 82,169,218, 91, 83, 95,139,197,130,196,196,196, 71,173, 90,181,106,199, 96, 48, 32, 20, 10, - 5, 42,149,170,198,183,168,172,172, 12,191,253,246,155,234,221,119,223,117, 57,118,236, 88,163, 9,139, 9,130,192, 71, 31,125, - 4, 14,135, 3,181, 90,141,205,155, 55,227,227,143, 63, 6,139,197,130, 82,169,196,150, 45, 91, 48,111,222, 60, 80, 20, 5,189, - 94,143,141, 27, 55,214,203,149,156,156,156,125,227,198,141,246, 29, 58,116,112, 60,124,248,176, 44, 34, 34, 66, 60,112,224, 64, -240,120, 60,104, 52, 26, 24,141, 70,116,233,210, 5, 65, 65, 65,144, 74,165, 56,121,242,100, 73, 64, 64,128,203,205,155, 55, 45, - 69, 69, 69,185,141,136,107,186,150,197, 16,102,179, 25,197,197,197,168,168,168,128, 76, 38, 67, 65, 65, 1,158, 60,121, 2,138, -162,208,136,206,130,179,179,243,155,161,161,161, 12, 0,224,241,120,104,215,174, 29, 22, 45, 90,100,210,104, 52, 99, 1,156,172, - 58,108,240,246,237,219, 15, 95,185,114,133,242,240,240, 64,106,106, 42,196, 98, 49,197,229,114,223,210,235,245, 13, 90,163,220, -220,220,118,254,249,231,159, 78,213,226,186,250, 58,171,213,207,110,199,168, 81,163,156,118,239,222,189,211,100, 50, 13,193,191, - 12, 14, 60,176,218,133,138,228,251, 98,165,173,231,127,250, 29, 21, 20,250,108,242, 58,109, 58,168,117,223,126,210,122,194,112, -209,113, 7,158,130,213, 24,207,224,254,222, 63, 15, 27, 22, 65,142, 31, 23,149,193, 98, 57,248,109,221,182, 76, 34,113,157, 92, - 75,134,137,224,236, 34,130, 95, 51, 54,113,240,120,138,228,243,133, 95,235,162,119,127,159,245,251, 31,177,131,216,204,179, 3, - 78,158,203,159, 89, 31,119,250,163,138, 99,106, 29, 55, 88, 81,250,128,112,114,237,134,118,109, 91, 65, 34, 46,199,246,157,251, -224,219,162, 35,116, 58, 29, 68, 34, 17,223,108, 54, 27, 24, 12, 70,180, 53, 34, 11, 0,206,159,175,176,180,110, 93,161,103, 40, - 45,166, 15, 63, 94, 55, 50, 98,240,176,144,190,125,251, 91,206,156, 61, 99,232,214,222, 80, 56,120, 96,187,226, 83,103,127,206, - 40, 44,120, 28,208, 58,172, 59,146,147,226, 6,209, 52, 18, 9,162,110,209,153,148,137, 83, 90, 75,114,220,190,125,211, 44, 26, - 75, 2,111,197,202,135,131, 35, 35, 39,134,246,236,209,211,114,246,220, 5, 61, 27, 37, 41,162,238, 93,159,126, 56,101,240,225, - 95,163, 55, 14, 56,117,114,167,191, 92,145, 27,187,107, 87,253, 46, 8,255,120,165, 78, 16, 98, 59,129, 64, 86,170, 84,182,125, -115,217, 50,197,152,249,243, 79,183,161,168, 16,179,193,240,120, 25,160,161,105,154,176,152, 76, 11, 31,238,221,203, 88, 74, 16, -159, 47, 3, 44, 43, 25, 12,230, 19,139, 69,237, 73,146,252, 37, 0,181,236,133,157,220,102,147,201,149,226,112, 72, 89, 92,156, - 41,108,242,100, 93,245,243,200,231,243,113,244,232, 81,176,217,236,154, 23,139,197,170,121,239,234,234, 10,162,106, 27,233, 95, - 38,126,117,112, 2, 64, 97, 97, 33,138,138,138, 96,111,111, 15,177, 88,140,162,162, 34, 92,187,118, 13,233,233,233, 96, 50,153, - 24, 52,104, 16,200,122,124,155, 95,228, 28, 51,127,126, 68,112, 88,152,207,244,233,211,201, 23,199, 71,131,193,128,178,178, 50, - 12, 31, 62,156, 60,121,242,164,219,169,188,188, 97, 0,162, 27,226,108, 31, 25, 89, 90,124,240, 96,157,191,221,161, 67, 7,226, -234,213,171,156, 65, 3, 7,206,253,100,229,202,159,127,220,189, 59,223,108, 50,185, 53,165,238, 36, 73,146, 4, 65,192,219,219, - 27,101,101,101,168,172,124,182,130, 45, 20, 10,225,232,232, 8,163,209, 8, 11, 77, 51,255,206,246, 83,159, 22,121, 77,176,173, -150,224,122,206,178, 69, 85,173,139, 86,119, 20,189,107, 15, 44, 22,139,197, 42,145,197,100, 50, 27,245,185,178,198,202,245, 34, -172, 17, 90,213,101,229,114,185,207, 89,178,170, 5, 86,117, 57, 73,146, 4,131,193,104,116, 16,175, 18, 67, 12,165, 82,137, 67, -135, 14,161, 87,175, 94, 53,203, 82,114,185, 28, 21, 21, 21,144,203,229,208,106,181,200,206,206,198,249,243,231,225,239,239, 15, - 88, 25,252, 53, 43, 43,235,142,175,175,111,120,245, 32,222,167, 79, 31,175, 93,187,118, 21, 12, 25, 50,196,131,166,105,124,249, -229,151, 37, 93,186,116,113,169, 61,200, 55, 6, 6,131,129,107,215,174,193,223,223, 31, 52, 77,131,197, 98, 33, 45, 45, 13, 18, -137, 4, 22,139, 5, 20, 69, 65, 38,147,193,206,174,225, 24,137,137,137,137,239,189,255,254,251, 5,246,246,246,109, 74, 75, 75, - 11, 57, 28, 78,143,248,248,120,111,131,193, 0,145, 72, 4,145, 72,132, 19, 39, 78,192,193,193, 1,115,230,204,201,211,104, 52, -215, 4, 2,129,171, 70,163,121, 80, 84, 84,244,101, 83,238,183,201,100,130, 74,165, 66,121,121, 57,202,202,202,160, 80, 40,160, -213,106, 27, 45, 99, 93,232,209,163, 7, 98, 99, 99, 25,171, 87,175,254, 53, 43, 43, 11, 0,224,231,231,135, 57,115,230, 48, 60, - 61, 61,145,157,157,141, 59,119,238,192, 96, 48,128,166,233, 6, 31, 94,138,162,250,188,251,238,187,221,125,124,124, 8,131,193, - 0,139,197, 2,157, 78,135,234,247,121,121,121, 8, 14, 14, 38,155, 53,107,246, 70, 86, 86, 86, 31, 88,183,177,194, 6, 0,197, -121, 71,224,201,148, 0,164, 8,180,230, 8, 74, 75, 94, 46,138,139, 84, 42, 93,185,224,171,171,147,127, 92,107,112,125, 82, 8, -180, 10, 29,129,128,144,126,120,239, 29, 19, 86,127,123, 8, 62,205, 90, 33, 55, 55, 23,125,250,244, 97, 21, 20, 20,188, 95, 89, - 89, 57,223, 90,238,179,103,111,152,207,156, 56, 57,122,204, 91, 19,195,251,247, 31, 98, 58,125,250, 4, 18, 31,156, 78,122,255, -173, 55,165,180,165,146,112,114,224, 37,164,165,222, 14,104,211,174, 55,244, 38,115, 15, 96,233, 90, 96, 41, 93,255,243, 14,253, -241,227,238,228,241, 35, 59,223, 25, 63, 97, 82,219,126,253, 6, 24, 79,159,253, 19,119,174,159,189,255,221,218,169,151, 86,111, -220,223, 39, 98,208,155,173,197,174,215, 78,132, 6,234,166,120, 59,219, 63,218,190,171,236,117,190,205, 20,139,203, 53, 1, 32, - 29,154, 53,243, 58,124,254,124, 78, 59, 38,147, 33, 2,204, 52, 77,183, 2,224, 66, 82,212, 23,199,166, 76,105, 31, 92, 53,144, -154, 0, 75, 48, 64,202, 1,189, 0, 96,163,158,144, 57, 20,151,107, 65, 85,191, 72, 18, 4,104,154,126, 78,100,189, 40,180, 72, -146,108,212, 0, 80,155,179,246, 88, 84, 61,161,222,186,117, 43, 56, 28, 14,216,108, 54,152, 76,102,163,238, 23,181, 57,147,178, -179,251,254, 22, 29,205,169, 75,100,149,150,150,162,180,180, 20,149,149,149, 24, 55,110, 28,107,217,237,219, 29, 80,229,250, 81, - 31,167,143,187,187, 78,192,227, 21, 39, 39, 39,123,132,132,132, 60, 87, 94,133, 66, 1, 30,143,135,232,189,123, 89, 81,145,145, - 31,244, 59,113,226, 59, 52, 18,255,170,174,186, 19, 4, 1,137, 68, 2, 71, 71, 71, 16, 4, 1,147,201,132,162,162, 34, 36, 37, - 37,225,246,237,219, 96, 16,132,233,239,108, 60,117,105,145,215,208,170,245,151,229,195,106,139, 22, 81,159,245,197, 90,161,197, - 96, 48, 94,218,170, 85, 31,172, 89, 58,228,243,249, 15, 11, 10, 10,186,121,122,122,194,100, 50,213, 8,173,218,150,184,106, 43, - 25,143,199,195,189,123,247,192,231,243, 31,106,181,218, 6, 57,105,154,126,163, 83,167, 78,136,137,137, 65, 92, 92, 28, 30, 63, -126, 12,181, 90, 13,157, 78, 7,141, 70,131,164,164, 36, 88, 44, 22,132,134,134, 66, 32, 16,128,207,231, 63,172,182,124,213, 7, -149, 74, 85,200,100, 50, 91,241,120,188,154,207,220,221,221, 81, 90, 90,106, 49, 26,141,248,237,183,223, 20,110,110,110, 2, 30, -143,103,181,112, 37, 8, 2, 82,169, 20, 94, 94, 94, 53, 62, 90, 74,165, 18, 18,137,164, 90, 88, 64,167,211,193,206,206, 14, 52, - 77, 55,118,143,180,153,153,153,159,212,250,191,227,152, 49, 99,126,223,183,111, 95,139,115,231,206,225,230,205,155, 16,139,197, - 88,181,106,213,227,156,156,156,241, 0,110, 75,165,175,214, 47,210,154, 54, 84, 90, 90,122,232,225,195,135,111,116,234,212,169, -166,151,232,211,167, 15,209,167, 79, 31,151,218,166,126,153, 76,134, 91,183,110,225,220,185,115, 32, 8, 2, 25, 25, 25,102,141, - 70,243,123, 3,212, 44, 79, 79,207, 93,139, 22, 45, 18,154, 76,166,154,182,205,227,241,192,229,114,193, 98,177,192, 96, 48,144, -147,147,131,225,195,135,219,255,244,211, 79, 59,117, 58, 93, 75, 0, 6,252, 75, 80,161,129,225, 94,162,194, 62, 52,216, 53,105, -219,214,213,221,166, 77,127,214, 71,108,219,186,218, 20, 26, 44, 73,186,151, 88,108, 31, 46,105,188,190, 39,207,229,127,168, 55, -158, 28,122,242,212,197,177,159,206,157,195,244,243, 11,150,158,187,112,215,167,159,233,107,194,217, 69,132,210, 18, 5,114,242, -138,145,149,171,167,253,252,130,165,119,110, 61,228,124,187,126, 67,128, 74,173,221,127,225, 82,225,159,141,208,107, 47, 95,123, - 60,226,187, 31, 56,151, 38,190,223,145,205,227,121,160,172,228, 33,124,124,196, 24, 30,213, 6, 59,118, 95,131,189,189, 19, 92, - 93, 93, 65,146,164,192,218,186,151,148,148, 16,135,254,184, 60,249,221, 73, 83,187, 12, 28, 16,105, 58,117,250, 56, 21,119,230, -216,181,157,219,190, 56, 76, 51, 84,124,130, 86,242,154,251,186, 61,120,148,121,111,124,223,254,227,192, 99,217,249, 3, 65,117, - 54,216,154, 13, 6, 52,242, 98,246, 45,229,190, 59,105, 90,215,129, 3,135,153, 78,159, 62,130,211, 39,118,223, 88,178,164,249, -137,199, 79,247,178,174,223,126,194, 29, 49,122,102,121,236,201, 20,253,155, 67,125,211, 61, 4,237, 52,192,227,215,182,253,144, - 4,161, 40,145,201, 68, 76, 38, 83,179,243,237,183, 51, 0,192, 72, 81,165, 74, 6, 67, 76, 16, 68, 26,128,180,149,128, 11,216, -108,249, 24,147,201, 60,223,199,135, 69, 21, 22, 50,202,205,102, 51, 3, 96,127,250,215,252,139, 96, 80, 84,177, 73,167,243,246, - 26, 56,144,161,206,205,101, 10, 93, 93, 77, 0, 96, 52, 26, 27, 21, 90,168,103,211,202,139,156,214,214, 79,173, 86,195, 82,143, - 16,124,145,179, 72, 42,109, 94, 53, 9,175,129,209,104,172, 17, 89,165,165,165,168,168,168,128, 64, 32,128, 76,167,115,181,134, -115, 64,231,206,191, 45, 91,186,116,254,193, 67,135, 88,181, 69, 86,245,139,201,100,226,155,181,107, 89, 31,127,250,233,204, 15, - 40,106, 54,234, 88, 6,173,239,122, 86, 79,218, 25, 12, 6, 40,138, 66,110,110, 46,242,242,242,144,155,155,139,220,220, 92,240, -120, 60,208,127,243, 38,160,215,216, 63, 11,181,150, 10,167,189,104,229,106, 48,188, 67, 83,156,225,173, 21, 6,102,179,249,149, - 10, 45,149, 74,117,238,252,249,243,157, 71,140, 24, 65,221,184,113, 3,110,110,110, 53, 66,171,250,111,245,114, 20,159,207,199, -225,195,135, 13, 42,149,234, 92, 35, 15,211,249, 19, 39, 78,132, 47, 94,188,152,249,222,123,239, 33, 57, 57, 25,211,167, 79, 71, - 69, 69, 5, 20, 10, 5, 74, 75, 75,161, 86,171,209,185,115,103,112,185, 92, 60,120,240,192,168, 86,171,207, 55,182,116, 38,149, - 74, 43,197, 98,177,251,139,223,141, 30, 61,218,117,211,166, 77,234,212,212, 84, 99,183,110,221, 68,214, 10,142,106,252,241,199, - 31, 53,150,186,244,244,116,108,218,180, 9, 52, 77,131,166,105,220,189,123, 23,235,214,173,171,137,125,214, 68,220, 46, 41, 41, - 49, 25,141, 70,248,251,251,195,211,211, 19, 90,173, 22, 27, 54,108, 48, 1,184,253,127,213,154,181, 90,237,193,137, 19, 39,126, -150,144,144,224, 78, 81,212, 51,147,118, 85,253, 12, 6, 3, 50, 51, 51,145,148,148,132,212,212, 84,148,149,149,213, 76, 4,238, -221,187, 87,110, 52, 26,247,215,199, 43, 22,139,191,220,177, 99,135, 27,159,207,127,174, 61, 87, 91, 67,171,173,164, 50,153, 12, - 14, 14, 14,232,215,175,159,228,252,249,243, 95,234,116,186,197,255, 18,157, 69,140, 30,153,222,241,227, 15, 71, 96, 84, 20, 63, - 63, 38,246,233,213,117,223,126, 82,229, 12, 47, 73, 26, 21,229,153,127, 63,205, 1,163, 71, 30,233, 8,224, 9, 26,246,211,178, - 92,184, 84,120,180, 83, 39,199,184,152, 99,199,118, 46, 92, 48,247,238,252, 79,166,138,213,154, 71, 92,191,102,108, 2, 0,178, -114,245,244,131,100,139,118,221,119,115,239,174, 94,251, 19, 89, 92, 90, 49,253,214,173,250,195, 27,212, 22, 47, 36, 9,174, 95, - 80,175,130,128,192,238,190, 55,174, 69, 67,200,215,160, 85, 80, 71, 12, 28,240, 6,226, 46,222, 67,145, 76,139,194,194, 66,232, -116,186, 6,195, 37,164, 62, 56,252, 14, 77,208, 62, 4, 77,228, 17, 36,205,125,103,174,143,163,171, 0, 0, 32, 0, 73, 68, 65, - 84,226,148, 30,145,145,195,232,216,216, 99,166, 35,135,163,175,236,223,243,195, 65,146,197,164, 52,122,123, 61, 65,104,229, 32, - 19,147, 43, 85,207, 38, 52, 76, 14,171,126,243,107, 85, 96,215,144,214, 65,110,239, 76,156,110, 63,100,240,112,250,196,137, 35, -150,253,251,126,139,219,255, 75, 88,180,133, 84,176, 10,243,213, 28,185,194, 40,167, 9,182, 67,165,194,162, 46,206,106,169,245, -136, 28,109, 0, 14,190,182, 13,136,182, 88,114,105,189,222, 23, 76,102, 62,109, 50,185,193,104, 44, 91,166,213, 62,253,154,205, -110,190,132,162, 58,128, 32, 44, 6,130, 80, 65,175,207, 2, 0,167,188, 60,119,189, 72, 84,196,208,106, 91,194,108,174, 51, 0, -178, 65,167,123, 82,153,159,239,238,212,171, 23, 39,115,233, 82,190,107,231,206, 90,162,202,135,184, 33,161,197, 96, 48, 0,146, -180, 88,195,105,109,253, 52, 26, 13, 44,128,241,101, 56, 77, 38,211,115, 34,171, 90,104, 85, 63, 47,214,112,110, 91,178,228,134, -207,192,129,101, 23, 47, 94,116,237,221,187, 55,161, 84, 42,161, 84, 42,159, 19, 91, 30, 30, 30, 68, 72,104, 40,255,143,184, 56, - 63,107,175,167, 85, 34,154, 36,255,118,161,245,154,163,222, 68,210, 84, 35, 75,104, 86, 11, 45, 43, 45, 90, 70,163,209, 8,137, - 68,130,146,146,146,122, 7,126,146, 36,193,227,241,170,215,136, 27,220,121,167,211,233, 54,204,159, 63,127,214,224,193,131, 93, - 90,181,106, 5,153, 76, 6, 87, 87, 87,112,185,220, 26,223,177,106,190,187,119,239, 98,199,142, 29, 10,157, 78,183,161, 17,206, -245,107,215,174,253,112,212,168, 81, 78,110,110,110,112,116,116,196,131, 7, 15,224,232,232, 8,133, 66,129,180,180, 52,216,217, -217,213,248,237, 28, 59,118, 76,169,211,233,214, 55, 34,222,232,248,248,120,131,157,157,221, 3,153, 76,198, 40, 43, 43,163,202, -203,203, 41,133, 66,193,148,203,229,204, 83,167, 78,185,216,219,219,171, 47, 92,184, 32,243,241,241, 97, 60,126,252,152, 97, 52, - 26, 27, 85,175, 4, 65, 96,246,236,217, 96,177, 88,208,233,116,216,176, 97, 3,230,207,159, 95,227,147,181,118,237, 90, 44, 90, -180,168, 70, 56,111,223,190,189,105, 29, 39, 77,195, 96, 48,192,104, 52, 90,189, 65,225,191,154, 17, 91, 39,216,139, 50, 50, 50, -162, 58,117,234,116,230,192,129, 3,206, 85, 49,201, 80, 92, 92,140,226,226, 98,200,100, 50, 84, 86, 86,194,100, 50,193,211,211, - 19,197,197,197, 56,114,228,136, 92,169, 84, 14, 68, 3, 59, 14, 25, 12,198,196, 30, 61,122, 80, 47,150,161,122,150, 87, 45,222, - 57, 28, 14, 10, 10, 10,208,167, 79, 31,246,197,139, 23, 39, 2,120,173,133, 86,237,240, 14, 3, 6, 78,102, 5,183,238,170,191, -159, 20,155, 31,228, 91,156, 63, 97,184,232, 56, 0,220, 75, 44,182,191,159,230,128,224,214, 81,244,128,129,142,225,197, 69,219, -194, 0, 24, 26, 74,215, 3, 0,246,124,206,152,136,254,157, 11,236, 4, 2,114,221,119,219, 79,110,222,188,190,195,193,227,255, - 9,239,176,238,187,103,225, 29, 34,250,119,182,164,166,164,142, 1,240,139,181,226, 37, 42,106,104,194,142, 93, 59,144,154,116, -193,227,179,217,109,216,101,197, 70,240,132,222, 8,111,231,138,109,187, 30,226,254,253,251, 69,122,189,190, 79,131,237,155,160, -125,146,146, 19, 3,195, 90,135,184,189, 51,113,154, 40, 42,106, 56, 98, 99,143, 98,207,111,191,196,191, 57,110,212,175, 79,203, - 21, 12, 9,147,207,226,211, 22, 54,131,101, 79,177, 56, 60,169, 94,255, 44, 2, 1,147,201, 21, 1, 99, 26, 28,120,102, 76,155, - 96,223,183,255,112, 28, 63,113, 20,123,126,219,118,233,171,214,163,127,241,109, 31, 76,116,238,240,237, 76,223, 22,190,205, 84, -149,197, 10,146, 96, 27,180, 90,139,221,183,191,229,124,159,181,104, 98, 22,128,239,240,154,238, 58,100,155,205,247,117, 6,195, - 4,239,240,240,219, 5,183,111,135,173, 50, 26,157,190, 0,202,190,210,235,115, 14, 0,249, 21, 0, 57,189,170, 79,255, 14,224, -106, 40,202,221,158, 36,239, 41,205,230,193, 96, 48,146, 80,247, 68,252,193,158, 33, 67, 58,125,252,232, 17, 75,220,189, 59,175, - 32, 46,142, 95,149,137,164, 65,161, 69, 81, 20,232,250,151,186,158,227, 36,118,239, 38, 1,128,197, 98,213,219,199,177, 88, 44, -168,213,106, 24,235,183, 96, 63,199,233,126,250,116,254,163, 71,143, 2,156,156,156,158, 19, 89,101,101,101, 53,239,181, 90, 45, -212,106, 53,120, 60, 94,146,166,238, 21,145,231, 56,139,227,227,181,107,102,207, 94, 60,126,220,184, 31,206,157, 63,207,117,118, -118,134, 92, 46,127, 78,104,233,245,122,244,237,215,143,181, 54, 33,225, 29, 40, 20, 75,172,185,158,174,125,250, 52,234, 15,204, - 96, 48, 96,249,155,151, 14,255, 5,152, 86,151,240, 34, 27, 91,194,177,118,215, 97, 61, 3,228,139,187,251, 22,133,135,135,107, -211,211,211,225,227,227, 83, 35, 86,106,255,166, 72, 36,130,131,131, 3,238,222,189,139,149, 43, 87,106, 0, 44,106,132, 83,169, - 86,171,223,138,136,136,208, 80, 20,133,160,160,160,154,248, 89, 22,139, 5,108, 54, 27, 2,129, 0, 9, 9, 9, 24, 58,116,168, - 90,173, 86,191,133,191,198,208,122,145, 83,174, 86,171,223, 30, 48, 96,128, 58, 57, 57, 25, 61,122,244,192,253,251,247, 81, 89, - 89,137,202,202, 74,100,103,103, 35, 36, 36, 4,106,181, 26,155, 54,109,210,168,213,234,183, 1,200, 27,226, 84, 42,149, 67,231, -207,159,207,248,253,247,223,125, 61, 61, 61, 91,119,236,216,177, 85,191,126,253, 90,142, 28, 57,178,217,144, 33, 67,220, 3, 2, - 2,180, 3, 7, 14, 20, 15, 30, 60, 88,172, 86,171,153, 87,175, 94, 45, 52, 26,141,131, 27, 41,103,141, 56, 73, 79, 79,175, 89, - 42,164, 40, 10, 37, 37, 37, 53,145,251,171, 59,165,122,132,112,255,198,196,118,181,192,170, 22, 92, 86,248,185,213,197,217,232, - 73,108, 54,187,218,226, 73, 91,193,121, 47, 37, 37, 37,162, 87,175, 94,247, 38, 79,158,172, 44, 42, 42,130,157,157, 29,252,252, -252, 16, 24, 24, 8, 23, 23, 23, 24, 12, 6, 28, 62,124, 88,117,228,200,145,135,114,185,188, 15,254, 26, 67,171,255, 11,215, 49, -187,174, 78,182,218,154, 85, 45,180,184, 92, 46, 60, 61, 61,171,175,109,118, 83,174,231, 75,226,239,229,172, 18, 48,253,250, 14, -108, 49, 36,114,132,253,225,163,215,216, 63,252,124,228, 97,120,127,108,119,110,174, 56,230,220, 92,113, 44,188, 63,182,255,240, -243,145,135,135,143, 94, 99, 15,137, 28, 97,223,175,239,192, 22,201, 73,169,173,106,231, 61,172,171,156, 92, 46,183,107,143,238, -225,229, 23,175, 92,178,172, 94,251, 19,217,183,207,155, 9,191,252,122,248,240, 47,191, 30, 62,220,183,207,155, 9,171,215,254, - 68, 94,188,114,201,210,163,123,120, 57,151,203,237,106, 77,221,103, 76,155, 96, 31, 57,100, 56, 98, 99, 15,155, 14,254,177,105, -237,190, 67, 25,189,166,204,138, 47, 78, 79,191, 79, 75,159,156, 6,147,204, 69, 74, 74,138,188, 74,100,165, 91,195, 57,125,234, -132,218, 34,235,178,179, 91,143,237, 41, 41, 48,159, 61,251,167,241,252,249, 4,205,229,123, 82,249,157,228,146,178, 2, 89,217, - 99,133,162, 84,111,177,152, 97, 54,155, 25,203,150,213, 56,236,214,121,143,186,117,235,141, 11,231,246,226,183, 93, 91,229, 22, - 11,180, 99, 14, 30, 52,143, 25,179,148,110,214,188,121,179,232, 63,246, 18, 81,195, 70,216,211,128,101,232,168,225, 14,191,239, -251,157,104,225,223,162,185,159, 95, 77, 72,155,215,174, 45,125, 6, 84, 18, 64, 74,225,173, 91, 29,133, 61,122, 60, 48, 49,153, -129,203, 89,172,150, 27, 1,246, 24,192, 60, 29, 48, 46, 1,200, 37,128,167,134,162,218,242, 76,166,251, 74,181,218, 11, 0,190, -166,233,199,117,113, 46, 5,202, 21,185,185,151,238,254,244,147,206,245,173,183,156,216,174,174, 34,152,205, 68,117,255, 94,223, -139,162,168, 23, 45, 48,245,114,122,186,184, 60, 61,118,236, 24, 2, 3, 3,225,233,233,137,218, 62,178,213, 1,185,157,157,157, -113,232,208, 33,208,207, 7,167,174,151,179,189,175,239,221,111,214,172,209, 91, 44, 22,148,151,151,255,197,154, 85, 94, 94, 14, -139,197,130, 19,199,143,235, 21,207, 50,129, 88, 85,247, 62, 12, 70,229,248,158, 61, 87, 71, 70, 70, 26, 30, 61,122, 84,179,243, -186,218,178, 37,149, 74, 33, 20, 10,161,213,233,188, 1,240,173,225,148,158, 58, 37, 64, 35,253,122, 29, 22,173,191,163, 45,189, -238, 34,171,118, 66,233,105, 86, 89,180, 76, 38, 19,188,189,189,159, 75,233, 66,146,228,115,175, 38,238, 56,220,157,156,156,124, -122,224,192,129,139,187,116,233, 50, 99,241,226,197,140, 86,173, 90, 65, 46,151,195,209,209, 17, 18,137, 4,105,105,105, 56,118, -236,152,185,164,164,100, 11,128,229,168, 35,128, 93, 29,136,203,200,200,136,106,211,166,205,190,207, 63,255,220,126,192,128, 1, - 76,111,111,111,208, 52,141,132,132, 4,196,196,196, 24,126,249,229, 23, 69,149,200,178,214,121,249, 76, 65, 65,193,155,131, 7, - 15,142,158, 56,113,162,157,217,108,102,102,103,103, 67,167,211,193,104, 52, 34, 47, 47,207, 16, 27, 27, 91,169, 86,171, 39, 0, - 56, 99, 5,223,221,138,138,138,144,179,103,207, 78,188,122,245,234,202,201,147, 39, 59,247,235,215,143,101, 50,153,112,229,202, - 21, 89,251,246,237, 37, 82,169,212,112,232,208,161, 82,173, 86,187,200,108, 54, 91,149,130,135, 32, 8, 40, 20, 10,184,184,184, - 64,167,211,193, 98,177, 64,175,215, 67, 40, 20,214,164, 77,162,105, 26, 77,113,174,127,161, 13, 48, 12, 6, 3,198,141, 27, 7, -139,197,130, 13, 27, 54,192,100, 50, 53,153,204,222,222,254,206,189,123,247,162,218,181,107, 87, 35, 94,170,219, 16,135,195,129, -139,139, 11,156,157,157, 17, 27, 27, 11, 38,147,121,167, 49,127,183, 42,220, 47, 41, 41,105,127,246,236,217,174, 15, 31, 62,124, - 23, 64, 59,131,193,224,105, 54,155, 9,146, 36, 11,105,154,126,160, 80, 40,126,133,149, 41,120,164, 82,233,202, 73,147, 38,181, -223,187,119,175,144,162,254,243,104, 80, 20, 5, 14,135,131,234,224,152, 52, 77, 67,175,215,227,203, 47,191, 84,168, 84,170,149, -255,150, 94, 34,188, 99,103,108,219,180, 81,120,254,194,105, 89, 74, 6, 98, 28, 29, 83, 94,108,127, 79,138,139,182,133, 21,228, -231, 11,195, 59,118,182,138,211,168, 55,148,190, 61, 97,158, 79, 85, 10,158, 47,179,179,115,182, 70,239,254, 62, 11, 0,190, 93, -191, 33,160,184,180, 98,122,106, 74,234,152,173, 91,255,232,106,212, 27, 74,173,225,252,143,120,137,150,131,134, 22,192,205,132, -135,197,190, 67,223, 58,181,200,191,133,104,152,180, 84,243,180,178, 82,253, 17,128, 44,107,235,222,189, 91, 47, 92, 56,243, 59, -246,252, 22,173,160, 45, 12,173,139,139, 11, 13, 0, 41, 41, 46,116, 74, 74, 5,253, 31,191, 98, 7, 21,147,190,191,124,222, 71, -253,230,201, 21,101,235, 55,108,106,120, 41,165, 77,219, 46,104,211,182, 11,102,125,244,133,125, 72,235, 32, 31, 0, 56,120, 16, -230,214,254,201,127, 46,254,106,233,176,229,203,151, 66,161,212,161, 58, 93, 79, 90, 98,242,241,172, 44,232, 95,231,118,180,216, -100,186,178,156,166, 71,170,227,227,195,186,126,250,233,173,203,235,214,249,202, 25,140,110,203, 0, 11, 73, 16,102,208, 52,143, - 36,201, 66,129,209,152,160,100,179,221, 9,139,165,131,157,217,124,216,104, 54,211, 13,112,222,196,188,121, 1,234,178, 50,113, -247,207, 62,115,161, 62,253,148,108,200, 25,190,246,243,107, 13,231,237, 7, 15,142, 79,159, 50,229,233,146,197,139, 7,110,217, -186,149, 23, 22, 22,134,162,162, 34, 4, 5, 5,193,211,211, 19,103,207,158,197,161,253,251, 85, 21, 74,229, 34, 0,155,173,225, -220,125,226, 68, 90,171,214,173, 75,182,110,221,234, 17, 25, 25, 73,168, 84, 42,200,229,114,200,229,114,232,116, 58, 84, 5,132, -166,211, 51, 50, 82,140, 70,227, 22,107,235,110,150,201,184,203, 59,119,126,194,178, 88,190,121,115,212,168,249,203,191,254,154, -211,162, 69, 11, 66,167,211,213, 88,181, 12, 6, 3,132, 66,161, 65,175,215, 59,163, 14,191,183,186, 56, 57,191,252, 98,146,201, -100, 16,139,197, 53,225,154,106,199, 37, 84, 42,149,160,105,250, 95,155, 0,253,239, 68,189, 10,201,209,209,241, 14, 69, 81, 94, -181,173, 91,117,229,206,171,253,153,209,104,124, 82, 82, 82, 18,254,130,226,173,207, 31,202, 15,192,170,190,125,251,190,249,201, - 39,159, 16, 23, 47, 94,196,145, 35, 71,232,172,172,172,131, 85, 86,172,172, 6,102, 79,245,113,218,113, 56,156, 57, 2,129,160, -127,117, 8, 7, 62,159,255, 80,165, 82,157,171, 90, 46, 84,190, 4,167,136,195,225,204, 22, 8, 4, 17, 85,233, 87, 96,103,103, -119, 79,165, 82,157,213,233,116, 27, 81,127,162,234,134, 56,121,246,246,246, 43, 93, 92, 92,222,254,244,211, 79,157,227,227,227, - 11, 47, 92,184,192,170,168,168,216,171,215,235, 27, 74, 42,253, 23, 78, 39, 39,167, 59, 12, 6,195,235,111,186, 71,104,211,166, - 77,236,208,161, 67, 35, 39, 76,152, 0,163,209,136,205,155, 55,227,236,217,179,199, 51, 51, 51,163, 26,153,225,190,200,233,226, -229,229,117,113,198,140, 25,205,198,141, 27,199,119,116,116, 4, 69, 81, 80,169, 84,200,204,204, 68, 66, 66, 2,125,244,232,209, -202,187,119,239, 62, 81,171,213,189, 1,148, 52,225,122,254, 55, 51,241,231, 56, 41,138,234,229,237,237,253,199,146, 37, 75,236, - 34, 34, 34,120,206,206,206, 96, 48, 24, 48, 26,141, 40, 44, 44, 68, 98, 98, 34, 78,159, 62,173, 58,120,240,160,170,180,180,116, - 28,128, 75,255, 23,229,124,149,156,193, 1,248,234,133, 68,209,245, 70,123,111,228,216, 70,203,217,183,151,251,240, 49,111, 14, - 30, 4, 0, 7, 14,157, 60,101, 69, 82,233,122,203,217, 88, 89,173,225, 12,242, 39,151, 36, 37, 39, 62, 23,208,178,117, 72,104, -122,112,216,168, 21,214, 16,213,138, 12,255, 92,221,107, 45,199,214,182,233, 62,183,204, 26,236,135,168,225, 99, 70, 70,126,177, -104, 33, 86,173, 92,141,163, 7, 14, 31, 79,201,122, 46, 77,208,107,215,150,106,143, 45,203, 24,140,190, 36, 73,122, 19,108,246, - 45,163, 74,149, 97, 7, 48,149, 0, 99, 25,160, 90,206, 98,181,132,217,220, 26, 52, 77, 41, 9, 34,118,157,217,236, 8,160,160, - 49,206, 21, 20,213,133,239,238,222,115,131,197,178,240,126, 98,162,176,246,132,173,218,242, 92,123, 82,233,225,225, 33, 45, 44, - 44,116,181,134, 51,234,199, 31, 13,106,129,128,179,240,155,111,122, 85,106,181,189,150, 47, 95, 78,221,190,125, 27,155,126,250, -201,164,125,242, 36, 90, 6,204,174,103, 53,164, 94,206,102,179,103,115, 23,108,218,244,158,159,191,191,228,221,119,223,101, 50, -153, 76,168, 84, 42,228,231,231,227,204,233,211,250,228,148,148,100,133, 66, 49,172, 41,117,143,250,241, 71,131,131,159, 31,248, - 98, 49,125, 62, 46,206,126,250,156, 57, 51,154,251,250,218, 15, 28, 52,136, 41, 18,137, 80, 94, 94,142,236,236,108, 28, 62,124, - 88, 90, 89, 89,233, 1,192,108, 13,103,244,213,171,109, 78, 92,186, 52,122,197,138, 21,236,208,208, 80,216,219,219, 67,169, 84, - 34, 49, 49, 17,151, 46, 93,210,109,217,178, 69, 46,151,203,103,152,205,230, 99,127, 99, 91,250, 87, 46, 29,254,221, 30,254,214, -220,136,112, 0, 95, 85,189,255, 26,141,231, 12,124,157, 59,159, 23,225,227,228,228,180, 77,171,213,210, 26,141,102, 58,128,188, -127, 96, 57,169,240,240,240, 77, 82,169,180, 43, 77,211,176,183,183,191,150,148,148,244, 1,234,217,121,211, 8, 39, 3, 64, 87, -161, 80,216,217,206,206,174,151, 78,167, 11,174, 90,126, 75, 81,169, 84,151, 12, 6,195,205, 42,235,147,249,255,184,238, 12, 0, - 17, 30, 30, 30, 83, 44, 22,139, 63, 65, 16, 14,102,179, 25, 70,163,177,194, 98,177,100,202,229,242, 95, 0,156,253, 7,148,243, -149,112,134,180,196, 72,154, 68,112,125,130,224, 57,161,245,130,128, 32, 44, 72, 73,126,132,195, 77, 40, 39, 57,184,191,247,207, -192,179,157,137,104,220,185,246, 63, 66,203, 10,241,210,100,145,217,146, 49,137, 38,232,231, 56, 9,154,200, 11,106, 51,114,207, -127, 35,180,172, 69, 72, 32,122,129, 70, 87, 11,141,155,169,153,184,240,111,235,235,150, 0,174, 36, 73,118, 34, 72,178, 37, 13, -168, 8,130, 48,129,166,157, 64,211,143,192, 96, 36, 45, 54, 24, 30,161,238, 4,230,245,114,174, 2,156,126,114,116,188, 70, 82, -148, 27, 0,178,202,250, 98,177, 16,132,153, 38, 8, 83,237,229,173, 23, 38,150, 13,114, 26,128, 48, 38,135,227,109, 54,153, 92, -139, 0,225, 9,179,185,131,150,166, 43,189,128,175,238, 1,105, 77,173,123, 53, 39,131,195,241, 57, 65,211,195,101, 2, 65, 27, -169, 70, 35, 6, 64, 11, 5,130, 20,133, 74,245,155, 86,171,253,185,169,117, 55, 0, 97, 44, 14,199,203,108, 50,185, 2, 0, 73, - 81,210,125, 58,157,247, 19,145,232, 93,173, 78,215, 76, 40, 20, 26,245,122,189, 66,171,213, 78, 48,153, 76,231,155, 82,247, 76, -147, 41,228, 42, 73,246, 48, 8, 4,206, 6,130, 16,232, 77, 38,131,222, 96,200,215,106,181, 15, 1,124, 15,224,209,223,220,150, -108,120,201, 7,208,198,105,227,180,113,218, 56,109,156,255,159,115,174, 1, 68,171, 0, 39,219,245,252, 91, 57,249, 0,124,170, - 38,139,175, 99,221,255,149,214, 45,202,118, 45,108,176,193, 6, 27,108,248,187,241,121,253,110, 22, 54,188, 58,168, 81,135, 79, -150, 13,255,183, 32, 26, 80,165, 77, 49, 9,190,140,178, 61,103,227,180,113,218, 56,109,156, 54, 78, 27,167,141,243,255, 59,206, -198,184, 95,199, 37,201,105,117,124,182,237,127,241,195, 54,243,175,141,211,198,105,227,180,113,218, 56,109,156, 54,206,255,111, - 65,218, 46, 65,189,112,173,122,189,234, 99,109,248,119,183,133,255, 5, 60,171, 94, 77, 57,222,221,118, 27,109,176,193, 6, 27, -254,255, 16, 90,214, 14, 90,255,205,224,246,223, 14,140,171, 9, 2, 5, 4,129, 2, 0,171, 95,225,177,141,193,195,197,197,229, -227,144,144,144,104, 87, 87,215, 89, 0, 36, 77, 60, 63,128,207,231,111, 20, 8, 4, 23, 5, 2,193, 69, 62,159,191, 17, 64,192, - 43,186,111, 4,128,233, 28, 14, 39,206,221,221,253, 41,155,205,142, 3, 48, 3, 47,191,115,181, 21,158,197, 73,251, 26, 64,155, -166,156, 40,105, 61,124,191,184,245,240, 7,226,214,195, 19,157, 67,135, 6,136, 91, 15, 79, 20,183, 30,254, 64,210,122,248,254, -191,161,189,190,202,251,251,170,202,147, 71, 16,200,179,178, 60,223, 19, 64, 62, 65,224,201, 63,164,252, 54,216, 96,131, 13, 54, -212,171, 2, 60, 60,222,116,119,119, 63,231,238,238,126,214,195,195,227, 77, 43, 78,233, 95,199, 32, 97, 38, 8,152, 27,233,244, - 27, 58,174, 49,115,101,237,115,215, 89, 89,181,218,156,174, 4, 1, 51, 93, 5,130,128, 69, 34,145,252,224,238,238,190,250,197, -151, 68, 34,249,129, 32, 96,169,117,172,185,150,192,107,170, 89,213,245,157,119,222, 57, 80, 94, 94, 30,171,215,235, 99, 51, 50, - 50, 98,123,247,238,189,239, 5, 75, 68,189,156, 92, 46,119,124,167,206, 93,239, 94,186,114, 51, 35, 61, 51,167, 32, 57,237,113, -206,159,167,206,223, 14, 13,107,115,139,203,229,142,111,194, 61, 34, 0, 76,167, 40, 42, 78, 40, 20, 62,161, 40, 42, 14,192, 76, - 6,131,113,108,205,154, 53, 57, 73, 73, 73,197, 87,175, 94,173,184,116,233,210,211,201,147, 39,103, 18, 4,241,103, 29,130,189, -191, 21, 22,152,197,185,185,185,167, 10, 11, 11, 79,243,120,188,149, 86, 28, 95,195, 41,110, 61,252,129, 84,110,160,165,114, 3, - 45,110, 61,156,174,245,254, 65, 19,175,121, 99,247,232, 47,109,129,195,225,248, 52, 34,232,255, 78, 19,253, 95,202, 3,192,173, -234,187,112, 0, 63, 86,189,170,183,179,187,113, 57,156, 87,213, 62, 95,197,245,180,113,218, 56,109,156, 54,206,127, 43,218, 87, -253,117,199, 51,127,173,154,177,187,169,187, 14, 63,204,200,200, 16, 2, 64, 96, 96,224, 7, 0, 14, 53, 69, 72, 16, 4, 22, 88, - 44, 52, 9, 0, 36, 73,124,214,167, 79,223,246, 60, 30,239,185, 40,200, 26,141,134, 29, 23,119,161,159,197, 66, 19, 85,199, 45, -160,105,108, 4, 80,108,237,111,232,245, 58,146,201,100,131, 36,137,121,161,161, 97,205, 75, 74, 74,226, 73,146,140,126,250,244, -105,121,147,205, 56, 4,129,237,219,183, 7,186,187,187,255, 37, 90,115, 97, 97, 33,123,248,240, 97, 77,226,155, 4,112,116, 28, - 78,103, 22, 65,184,155, 77, 38, 7, 0,160, 40,170,252, 54,155, 29,190,106,197, 10, 62, 65, 16,150,210,210, 82,104, 52, 26,204, -157, 59,151,151,156,156, 60,162,164,164,228,231, 70,104, 3,219,180,109, 63,247,244,233, 83,193,138,178,114,237,246,245, 91,239, -106, 40,150,218, 55, 36,136,181,105,219,111,142,211,222,155,240, 81,106,106,210, 61,212,157,142,164, 54, 72, 0,135,231,204,153, -211, 58, 42, 42,138,173, 84, 42,185, 26,141,166,121,116,116,244,151,225,225,225,194,118,237,218,177,255,248,227, 15, 66, 46,151, -131,166,105,126, 80, 80, 16, 61,118,236, 88,237,190,125,251,102, 1,248,161, 1,225,187,224,217,181, 36, 55,180,106,213,106, 9, - 0,100,100,100,176,106, 93, 99,102,112,112,176, 0, 0,210,210,210,150,209,180,101, 14, 0,208, 52,214, 2, 88, 88,135,105, 45, -163,117,247, 49, 0, 1,255,164, 43, 7,184,173,123,140,209,130, 70, 38, 1,100, 84, 77, 8,150, 3,181,226, 66, 61,143,148,130, -130,130,151,202, 77, 24, 25, 25, 69, 16, 4,113,240,238,221,187,135,164, 82,169,175,197, 98,158,218, 80, 57,235,187, 87, 98,177, -248,180,217,108,214,149,149,149,213, 4,202, 20,183, 25,217,213,217, 78,208, 79, 86,174,140, 47, 77, 62,122,201,202,182, 73, 56, - 59, 59, 79, 42, 41, 41, 89, 13, 96, 74, 74, 74, 74,123, 0, 8, 14, 14,102, 1,184, 35, 18,137,186, 25,244,122,194,214,255,217, - 96,131, 13, 54,252, 79,132, 86, 2,128, 72,252, 39, 5,207,182,151, 17, 90,108, 0,136,143,143, 7, 0,206, 75, 20,132,168, 45, - 96,102,207,158, 13,119,119,247, 23,197, 11, 46, 94,140,251,111, 42,251,220,111,124,253,245,215,194,138,138,138,254,191,254,250, -107, 79,154,166,215, 21, 20, 20,220,104,228,252, 98,154,198, 90,146, 36, 62, 35, 8, 2, 28, 14, 55,125,198,140, 25, 9, 85,223, - 53,255,243,207, 63,249, 67,135, 14, 85, 3,200, 1, 0, 14,135,235,201, 96,144,129, 52, 77, 87, 15,184,245, 10,194,209,128,159, -137,205,238, 59,253,199, 31, 77, 29,134, 14,165, 4, 98, 49, 1, 0, 57,169,169,206,107,191,253,182, 91,121, 86, 22, 91,227,236, - 92, 90,170, 82,105,210,211,211,193,225,112, 8, 6,131,209,161,177, 10, 11, 4,130,143, 87,172,250, 70,160, 40,171,208,104, 21, - 74, 61,195,100,212,217,241,248,230,226, 34,105,169,144, 39, 80,127,246,213, 82,246,135, 83, 39,126,172, 82,169, 62,104,132,106, -214,188,121,243,130, 59,117,234,228,185,127,255,126, 66, 46,151,131,162, 40, 97,187,118,237, 16, 30, 30,110,190,112,225, 2,225, -235,235,139,208,208, 80, 92,185,114, 5,215,174, 93, 35,218,183,111,207,143,137,137,121,199,104, 52,254,208,152,184,102, 48,200, -185, 65, 65, 65,237, 4, 2,129, 62, 48, 48, 16, 83,167, 78, 5, 77,211,232,223,191,127,168, 80, 40, 60,164, 82,169,216,105,105, -169, 61, 27, 19,217,210,164,163, 99,171, 45, 91, 0,194, 64, 35, 83,150,116,180,246,242, 99,112, 90, 90, 90,151,242,242,114, 60, -187, 47,116, 77, 2,243,158, 61,123, 54,165, 45, 21,211, 52,214, 14, 29, 26,245, 25, 64, 16,253,251,247,175,152, 53,107, 22,153, -154,154,250,246,200,145, 35, 66, 51, 50, 50,209,196,201, 64,224,128, 1, 3,174,156, 56,113,194, 57, 48, 48, 80, 86, 86, 86, 86, -243,133,155,179,195,192, 75, 49, 27, 62, 94,185, 49, 58,104, 55, 77, 84,200, 82,142, 60,108,164,109, 18,147, 38,189, 87, 44, 20, - 10, 71, 29, 60,120, 48,173,176,176,144, 98,177,106,180, 43, 67, 34,145,136, 3, 3, 3,103, 58, 57, 57, 73, 25, 36, 41,161, 65, -211,141,181, 79, 27,108,176,193, 6, 27, 94, 26,199,171,196,213,241, 23,191,160, 0, 32, 54, 54,182, 38, 50,109, 84, 84, 84,189, - 51, 96,154,166,139,239,223,191,239,173, 86,171, 65,211,180, 53, 29,118,237, 45,154,197, 4, 65,110, 34, 73,226, 3,130, 32, 16, - 26, 26,246,120,195,134, 13,117,229,244,210,135,134,134, 61,102, 48,200, 22, 52, 77,131, 32,200,205, 52,109, 41,174,135,179,206, -129,136,205,230, 44, 0, 0, 55, 55,247,172,147, 39, 79,234, 71,143, 30,141,111,191,253,150,245,249,231,159,207,167, 40,106, 86, - 94, 94, 94, 81, 3,229, 4,128,133, 98,177,132,191,125,251,246,192, 25, 51,102, 36, 20, 22, 22, 46, 4, 0,119,119,247,213, 0, - 66, 0,228,212,250, 12, 91,182,236,123, 58,117,234,212,116,169, 84,186,176, 62,206, 81, 64, 75,239,160,160,190,203,227,227,105, - 82,167, 35, 74, 46, 95, 86,200,138,139,141,143,100, 50,254,174, 59,119,162,190, 92,189,154,233,237,227,131,139,199,142,185,148, -168,213, 50,185, 78,167, 45, 46, 46,166, 77, 38,211, 53, 43,234,222, 90, 34,150,240,183,126,191,249,182, 29,147, 97,145,120,121, - 18, 76, 39, 39,138,228,139,216, 12,138,212,181,104, 30,192, 6,208,186,177,123,196, 98,177,222, 25, 48, 96, 0,127,223,190,125, - 68,104,104, 40, 28, 28, 28,112,249,242,101,220,187,119, 15,229,229,229,164,209,104, 68,199,142, 29,241,205, 55,223,192,199,199, - 7, 21, 21, 21,200,203,203,115, 97,179,217, 98,163,209, 88,223,245,124,174, 61, 45, 88,176, 0,238,238,238, 48,153, 76, 40, 43, - 43,131,201,100,130, 80, 40, 4, 0, 60,121,242, 4,199,142, 29,181,166, 45, 53, 10,154,166,241,198, 27,111, 40, 9,130, 72,121, -209,162,213, 20, 78, 79, 79,207, 63,100,178,146,193,125,251,246, 69,121,121,185,113,233,210,165,104,211,166, 13, 2, 3, 3, 27, - 45,167,135,135,199,116,147,201,180, 24, 0, 12, 6,195, 46, 46,151,251,254,158, 61,123,156,107,167, 8,169,182,100, 21, 75, 75, -203,175,221, 78, 74,155, 55,125,116,239,248, 27,137,249, 6,230,240, 60,249,131,163,242, 58,202,185,144,197, 98,255,218,172, 89, -179,239,103,207,158,237,238,228,228, 4,157, 78,247,101, 81, 81, 17,102,206,156, 9, 0, 24, 50,100, 72, 27, 38,147,121,114,242, -228,201,240,245,245,125, 90, 86, 86,150,119,247,238,221,169,106,181, 58,241,101,175,167,149,176,113,218, 56,109,156, 54,206,151, -134,181, 90,228, 31,138, 66, 60, 31,206, 97,219,115, 66, 43, 42, 42,138,136,141,141,165,173,168, 88,169,151,151,151, 55,143,199, - 3,128,210,166,150,194, 98,177,204,114,118,118,150, 46, 92,184,176,123, 96, 96,160,126,214,172, 89,137, 57, 57, 57,139,106, 31, -211,188,121,243,149, 63,253,244, 19,210,211,211,115, 86,175, 94,125,165,180,180,180,169,121,204, 62,167,105,108,168,178,142,149, - 28, 59,118,172, 77,124,124,252, 7,235,215,175, 23,127,248,225,135,172,143, 63,254,120, 2,128,111, 27, 35, 97, 48, 24,234,186, -150, 11,235,130,187,187,187,158,193, 96,212, 27, 36, 46, 10,224,113,217,236, 62,203,227,227,105,125, 78,142,122,199,119,223,217, -109,189,117,107,137,145,166, 93, 37, 18, 9,122,116,235, 86,201,101, 48, 74,164, 69, 69, 22, 73,203,150,140,236,147, 39, 93, 52, -108,118,193,190,125,251,228,165,165,165, 71, 26, 53,225, 17,132,194, 66,211,122,161,151,143,113,244,136,136,208,219, 55,239,165, -218, 73, 92,200,246,237, 66,219,164,166,231,220,133,197, 98, 32, 8,162,209, 96,129,246,246,246,129,165,165,165, 80, 40, 20, 16, -139,197,216,176, 97, 3,220,220,220,160, 86,171,145,148,148, 68,123,121,121, 17,241,241,241,240,242,242,130, 76, 38,131, 94,175, -135, 82,169,148,234,116,186,250,114, 51, 22,147, 36, 99, 39, 73, 18,239, 17, 4,129, 22, 45,252,114,127,254,249,103,189,197, 98, - 65,112,112, 48, 70,142, 28,137,152,152, 24, 36, 37, 37, 85, 91,158,244,205,154, 53,207, 37, 73,162, 89,149, 86,122,105, 11, 76, -117,106,159,130,130,130, 81, 47,249,208,144, 30, 30, 30, 19,252,253,253, 63, 24, 63,126,188,145,205,102, 67,165, 82, 85, 95, 11, -227,224,193, 67, 42,134, 14,141,178, 63,126,252,120,189,229, 52, 24, 12,139,159, 62,125,234,174,209,104, 48,104,208,160,143,215, -173, 91, 39, 96,179,217, 0, 0,179,217,252,156, 37,107,197,250,221,167,231, 44,254, 57,238,244, 31,223,120,172,248,252,253,222, - 19,102,173,140, 3,112,170,174,130,233,245,250, 44,185, 92, 62,101,222,188,121,209, 91,182,108,113, 92,180,104, 17, 44, 22, 11, -104,154,134,201,100,170, 73, 36,110,177, 88,112,248,240, 97, 60,122,244,104,229, 11, 34,203, 6, 27,108,176,225, 31,135, 38,104, -145,127, 34,220,241,108,217, 16, 47,138,173,255,121,100,120, 6,131,177,245,204,153, 51,237,122,246,236, 73,245,235,215, 47,244, -212,169, 83,161, 79,159, 62, 77,172,178, 30,132,246,235,215, 47, 84, 34,145, 96,227,198,141,106, 6,131,177,245, 37,127,166,102, -208, 43, 42, 42, 74, 0,176, 46, 38, 38,102,237,244,233,211,225,230,230, 22, 82, 88, 88,248, 63,173,179,136,195,105, 63,121,195, - 6, 19,211,104, 36,127, 92,183, 78,244, 93, 92,220,218,253, 7, 14, 80,111,188,241, 6, 65,211, 52, 30, 62,120,192,251,230,135, - 31,248,227, 70,140,200, 73,203,202, 50, 29, 61,125,218, 88,252,244,105,217, 83,153,108, 49,128,178,198,248,141, 70,227,245,140, -140, 12,143, 30,189,222,240,188,116, 43,241,222,232, 17, 67,250, 50, 41,146,200,204,121,114,199,221,205,197,254, 98,220, 57,141, -209,104,188,222, 24,143, 74,165,202, 54,153, 76, 78, 52, 77,139, 47, 94,188, 8,177, 88,140,242,242,114, 24,141, 70,232,245,122, -189, 90,173,230,150,150,150, 66,171,213, 66,167,211, 65, 36, 18,225,225,195,135,197, 38,147,233, 66,125,156,102,179,121, 50,135, -195,249,154,201,100,178, 89, 44, 86,193,157, 59,119,160, 80, 40,154, 59, 56, 56,124,107, 50,153, 80, 80, 80,128,248,248,248, 79, - 69, 34, 81, 14, 0,112,185, 92,176,217, 28,103,157, 78,103, 2,240,244,101,175, 57, 77,211, 47,125,191,220,220,220,124,120, 60, -222,242,207, 62, 91, 16,220,182,109, 59,200,100, 50, 88, 44, 22, 8, 4, 2,168,213,106,136, 68, 34,116,237,218, 53,123,249,242, -229,133, 52,141,105, 13,136, 65, 70,213,253,193,244,233,211, 5, 34,145, 8,249,249,249, 8, 10, 10,170, 17, 90,133,178,210,135, - 87,111, 39,166,206,155, 49,166,215,222, 99,113, 41,167, 47,222, 73, 25, 49,168, 91, 91,130,160,155, 55, 84, 70,169, 84, 42,163, - 40,106,214,244,233,211,191, 14, 12, 12,108, 65,211, 52, 2, 2, 2, 48, 96,192, 0,156, 60,121, 18,233,233,233, 80,169, 84,230, - 27, 55,110,252, 94, 88, 88,248,167,173, 11,183,193, 6, 27,108,248, 91,241, 23,223,172,231, 44, 90,255, 75, 72,165, 82, 89,106, -106,234,169,187,119,239, 70,141, 29, 59, 22, 23, 47, 94,156, 4, 96, 30, 0,112, 56,156, 73, 99,199,142,197,221,187,119,145,154, -154,122, 74, 42,149,202, 94,197,111,178,217,108,173, 94,255,204, 56,197,229,114,185, 77, 60,189,121,213,146, 33, 0, 52,111,224, -179,250, 77, 35, 20,229, 30, 54,104, 16, 85,126,239,158, 98,251,205,155, 95, 71, 71, 71, 83,221,187,119, 39,140, 6, 3,204, 22, - 11,252,252,252,136,126,253,251, 11,118, 70, 71, 59,153, 85,170,248, 21,159,125,118,121,219,228,201,149, 25, 85,126, 96,141, 65, -167,211,253,240,193,204, 41,253,227, 46, 94,246, 12, 9,106,233,116,234, 76, 92,130,179,179, 61, 63,208,223, 95, 80, 90, 94,102, - 94,244,249,167,148, 78,167,251,177, 49, 30,141, 70,115,248,220,185,115, 35,188,189,189,197,137,137,137,208,235,245, 48,155,205, -232,215,175, 31,104,154,230, 0,176, 80, 20,133,212,212, 84, 24, 12, 6,105, 70, 70, 70, 65,102,102, 38, 7,192,154, 70,202,151, -171,211,233,144,146,242,108,213,206,203,203, 43, 34, 50, 50, 18, 38,147, 9,131, 6, 13,194,209,163, 71, 35, 82, 82, 82,190,171, -173,249,254,219,123, 94,101, 33, 11,246,240,240,136,169,250,200, 42, 39,120, 79, 79,207, 80, 63, 63,191, 45,107,214,172, 97,121, -121,121,129,166,105, 56, 58, 58, 64,173, 86,163,164,164, 20, 33, 33, 33,240,246,246,198,154, 53,107, 0,224,247,134, 44,110, 22, -139, 5,133,133,133,200,206,206, 70, 86, 86, 22,188,189,189, 65, 16, 4,148, 74, 37, 76,166,103, 57,185,249, 74,197,241,159,118, -254,217,231,192,150,197,173, 59,135, 5,248,220, 76, 72,150,190, 51, 42,130, 31,224,235, 19, 40, 75, 92, 74, 2, 75,235, 77,186, - 92, 80, 80,144, 89, 80, 80, 48, 86, 42,149,178, 42, 42, 42,194, 35, 34, 34, 54,246,239,223, 31, 9, 9, 9,184,124,249,242, 56, - 14,135, 35, 53, 24, 12, 38, 55, 55,183,105, 4, 65,136, 12, 6,195,222,210,210,210, 66, 91,127,104,131, 13, 54,216,240,202, 81, -237,163,133, 90,127,155,102,209, 10, 14, 14, 22,228,228,228,188,219,188,121,115, 54, 0,240,120,188, 16, 63, 63,191,249, 89, 89, - 89,202,166,150, 70,173, 86,239,143,142,142, 30,240,253,247,223,179,134, 12, 25,210, 50, 38, 38,166, 19, 0, 12, 25, 50,164,165, -157,157, 29,162,163,163, 13,106,181,250,149,197, 68, 50, 26,141, 61, 59,118,236,136,178,178, 50,228,228,228, 52,105, 9,229,207, - 63,255,228,227,153, 95, 86,131,159, 53, 4,147, 94,239,232,224,233, 73, 62,141,139, 51,148, 41, 20,238, 61,123,245, 34,140, 6, - 3, 72,146, 68,105,105, 41,242,242,242, 96,239,224, 64,164,102,100, 8,127, 89,176,224,207,230,109,219,178,205,122,189,115, 19, -138,169, 42,145, 22,191,247,209,172, 15, 15,239,221,251,187,184, 66,161,120,196,227,241,117, 28, 14,203,109,246, 71, 31,153,203, -202,202, 38, 2,168,180,130,103,205,222,189,123, 7, 13, 26, 52,232,129,143,143,143, 68, 38,147,185, 85, 84, 84,152,203,202,202, - 24,120,230,107, 69, 0, 64, 92, 92, 28, 20, 10,133,201,108, 54,199,227, 89, 44, 44,189,181, 5,109,214,172,153,125,120,120,120, -111,177, 88, 12,185, 92, 14,103,103,103,180,107,215,174, 55,131,193,248, 53, 55, 55, 87,254, 42, 91,253,217,179,103,237,104,154, -238, 66,211, 52, 6, 13, 26,100,213, 57,102,179,249,253,200,200, 72, 22, 65, 16,208,104,212,224,114,121, 16, 8,132,176,179, 19, - 33, 48,176, 21, 10, 10, 10, 48,112,224, 64,253,163, 71,143, 54, 21, 22, 22,238,111,132, 11, 5, 5, 5,144,201,100,200,203,203, - 67, 73, 73, 9, 0,160,164,164,164,198, 57,255, 85, 64, 46,151, 15,239,218,181,235, 39, 51,103,206,132,201,100,194,240,225,195, -145,159,159,255, 93,118,118,246, 62, 15, 15,143, 9,239,191,255,190,216,217,217, 25,159,124,242, 9, 15,192, 50, 91,127,104,131, - 13, 54,216,240,202,241,162,143,214, 95, 45, 90, 13,173,137,186,185,185,245, 32, 8,226, 75,141, 70,195,174, 94,146, 33, 8,130, - 45, 22,139,143,106, 52,154,213,133,133,133, 77,114,138,171,168,168, 80, 60,126,252,248,232,245,235,215,199,140, 26, 53, 10,103, -207,158,157, 8, 0,163, 70,141,194,245,235,215,241,248,241,227,163, 21, 21, 21,175, 36, 1,169,167,167,231,224, 94,189,122,141, -234,216,177, 35, 98, 99, 99, 97, 54,155,175, 53,229,252,218, 59, 12, 81,199,174,195,234,207,172, 34, 99, 48, 64, 16, 68,141, 53, -163, 68, 38, 67,122, 90, 26,202,202,203,161,211,106,161, 82,171,205,129,190,190, 26,185, 94,207, 36,128,166,174,125,229,222,189, -125, 35, 79,173, 82, 73,156, 29,157, 52,124, 62, 7, 21, 10, 57,235,206,237, 27,149, 0, 30, 89,201,161,167,105,186,215,201,147, - 39, 23, 51, 24,140,177, 66,161, 16, 31,124,240, 1,163,119,239,222, 96,177, 88,208,233,116,168,168,168, 64,116,116,180,204,108, - 54,183,168, 58, 71,200,231,243,127, 99, 48, 24, 79,148, 74,229,151,141,254,128, 94, 63, 36, 42, 42,138,210,235,245, 88,177, 98, - 5,150, 44, 89,130, 65,131, 6, 81,183,111,223, 30, 2, 96,239,171,106,241, 22,139, 5, 17, 17, 17,181,157,225, 83,172, 57,143, -201,100,134,250,251,251, 67, 38,147, 65, 38,147, 65, 44, 22,195,195,195, 3,110,110,110,248,238,187,239,232,141, 27, 55,158, 50, - 24, 12,155, 74, 74, 74,138,173, 41, 67, 86, 86, 86,141,101, 80,171,213, 66,165, 82, 33, 63, 63,191,102,233, 80, 35, 16, 13,154, -245,222,208,182, 42,141, 70,125,243, 97, 70,222,151, 31, 79,120, 67,165,209,168, 51,178,243,210,129, 31, 44, 86,180,239,105, 19, - 39, 78,156, 54,102,204, 24, 84, 86, 86,226,250,245,235,232,214,173, 27,214,174, 93,235, 30, 31, 31, 63,175, 99,199,142, 96, 50, -153, 29,185, 64, 0, 0, 0, 32, 0, 73, 68, 65, 84,184,120,241, 34, 76, 38, 83,190,173, 47,180,193, 6, 27,254,201,120, 77,253, -179, 26, 68,131, 22, 45,111,111,111, 7,179,217,252,105,100,100,100,196,136, 17, 35, 48,112,224,192,231,190,223,187,119,175,221, -161, 67,135, 86,255,240,195, 15,131, 12, 6,195,154,166, 44,245, 89, 44,150,195,123,247,238, 29,242,198, 27,111,240,251,244,233, -227, 7, 0, 28, 14, 71,191,119,239, 94,181,197, 98, 57,252, 18,117,169, 14,196, 88, 12, 0, 30, 30, 30,109, 40,138, 26, 53,120, -240,224, 54,239,189,247, 30,146,146,146, 16, 29, 29,157, 25, 24, 24,120,165,184,184, 73,254,213, 57,141,236, 58, 92,221,152,117, -139,193,102,151, 86, 20, 21, 57, 8,125,124,152,142,118,118,133,177,177,177,222,253,251,247, 39,242,243,243, 81, 94, 94, 14,173, - 86,139,219,183,111, 91, 40, 32,151,114,116, 36,114,175, 95, 39, 24,108,118, 41,158,223,201,215, 40,188,221, 29, 3,190,250,124, - 70,115,173, 78,219, 90, 46,151,155, 40, 38,147,233,229,230,144,159,246,168, 73, 43,113, 58, 62,159, 31, 14,128,178, 88, 44,106, - 39, 39, 39,254,153, 51,103,192,102,179, 65, 16, 4,194,194,194,192,229,114, 89, 52, 77,231, 1,128,157,157, 29,123,235,214,173, -246, 19, 38, 76,184,220, 24,113,251,246,237,153, 28, 14,103, 88, 96, 96, 32,174, 95,191,142,196,196,196,220,235,215,175, 55,107, -223,190, 61,124,124,124,134,185,187,187, 31, 72, 72, 72, 48,190,138,134,253,108,199,106,211,157,225,205,102,179,133, 32, 8,144, - 36, 9,139,197, 2,153, 76,134, 22, 45, 90,224,231,159,127,198,134, 13, 27, 86, 20, 22, 22, 30,107, 2,151, 89,161, 80, 64, 32, - 16, 32, 49, 49, 81, 23, 25, 25,201, 33, 73, 18,153,153,153, 53, 66, 75,226,226, 20,210,173, 99,104,208,138,245,187, 79, 11, 56, - 28,206,192,222,225,193,201, 25,185, 79,104,154,104,116,217, 56, 56, 56,152,213,162, 69,139,137, 99,198,140, 65, 86, 86, 22, 86, -175, 94, 93, 82, 88, 88, 24,119,250,244,233, 55,103,206,156,201,232,214,173, 27, 74, 75, 75,177,115,231, 78,211,157, 59,119,118, - 20, 21, 21,237,182,117,227, 54,216, 96,131, 13,255, 16,161,229,237,237, 61,134,197, 98,125,242,214, 91,111, 49, 90,181,106,133, -226,226, 98,136, 68, 34, 35, 65, 16, 76, 0,112,112,112, 48,242,120, 60,204,152, 49, 3,109,219,182,237,177, 96,193,130,255,199, -222,121,135, 71, 81,181, 81,252,204,246,205,166,151, 13, 41, 36, 1, 2, 36,129, 80,165,247, 94,131,116, 65,138,130, 82, 68, 20, -145, 34,160, 2,130, 10,168, 52,165,131, 74,147, 46, 45, 32,144, 40, 4, 34, 1, 37, 64, 66, 66, 8, 36,144,186,155,222, 55,219, -166,220,239,143, 20, 19, 72,217, 77,176,192, 55,191,231,153,103,118,103,103,206,220, 41,123,231,204,123, 91,119,145, 72,180, 85, -165, 82,237, 51,101,199, 25, 25, 25,197, 2,129,224,248,156, 57,115,214,222,185,115,187, 9, 0,252,241,199, 31,143, 85, 42,213, -146,140,140,140, 98, 51,143,163,172, 83, 76, 74, 38,147,223,108,222,188,249,147, 14, 29, 58,216,140, 26, 53, 10, 74,165, 18,225, -225,225, 88,183,110,221, 67,131,193,176, 60, 36, 36,132,249,167, 79, 50,163,215,167,221, 58,117,202,186,207,164, 73, 54,243,134, - 15,255,230,221, 57,115, 54,124,250,233,167, 34, 95, 95, 95,170,184,184, 24, 55,111,222, 36, 39, 78,156,160,127, 92,189,122, 19, - 44, 45,197, 97, 39, 78, 72, 13, 6, 67,162,153,145,187,222, 61,122,245,244,253,102,195,183,208,105,139,112,243,250, 57,228,230, -102, 98,231,174,159,125,221,221, 73,239,212,212,212, 16, 83,181, 40,138,242, 9, 10, 10,114, 38,132, 64, 42,149, 98,213,170, 85, -112,115,115,131,141,141, 13, 10, 11, 11,241,225,135, 31,218,126,240,193, 7,182, 0, 16, 21, 21, 85,222, 61, 67,109,168, 84,170, -110,179,103,207,182,102, 24, 6, 23, 46, 92, 48, 80, 20,245, 73,112,112,240,247,173, 91,183,150,246,236,217,211,122,255,254,253, -221, 1, 92,121, 94, 70,171,142,219, 61,186,116,233, 82,199,215, 94,123,141,136,197, 98, 42, 47, 47, 15,118,118,118,216,186,117, -171, 70,173, 86,159, 51, 83,107,213,146, 37, 75,150,151,126,222,251,201, 39,159,188,189,118,237, 90,101, 90, 90, 90,121, 84, 51, - 35, 43,231,183,110,195,223, 99,179,243,242, 13, 63,108, 92, 60,206, 66, 46,147,126,178,246,135, 43,180, 16, 55,106,189,175, 24, - 70,170, 80, 40,164,132, 16, 28, 63,126, 28,137,137,137,211,179,179,179,211, 88,150,253,121,209,162, 69, 11,125,125,125, 27, 63, -120,240, 32,177,176,176,240,171,140,140,140, 39,124,118,199,195,195,195,243,183, 81, 86, 9,190,172,245,225, 57,148, 20, 39, 86, -111,180, 88,150,157,125,241,226, 69, 33,199,113,216,181,107, 23,110,221,186, 69, 20, 10,197, 39, 10,133, 98,139,133,133, 5,171, -213,106,103,205,152, 49, 99,242,138, 21, 43, 4, 61,123,246, 68, 88, 88,152,160, 73,147, 38,111, 0,168,104,180, 6,160,134,190, - 54,242,243,243,255, 76, 79, 79,107, 82,161,131,202, 38, 50,153,252,207, 90, 14,230,105,205,167, 59,197,236,188,106,213, 42,141, -171,171,171,225,222,189,123,216,177, 99, 7,119,235,214,173,203, 82,169,116,167, 90,173,214,155,168,249, 60, 40,215,148, 50, 76, -248,129,133, 11, 91,188, 50,114, 36,247,246,130, 5, 69, 18, 11,139,247,191,249,246,219,197,121,133,133,110,160, 40,226,104,107, -155,184,107,213,170, 53, 67, 94,125,181, 40, 42, 36, 68,126, 39, 40, 72,172,164,233,187,230,164, 51, 53, 53, 53,228,202,149,107, -216,187,123, 3,140, 70, 61,212,169, 37, 62, 45, 43, 59, 31,181,152,172,103, 52, 25,134,201, 31, 59,118,172, 4,128,197,148, 41, - 83,164, 25, 25, 25,104,218,180, 41, 0,160,160,160, 0,231,206,157,131,159,159, 31, 0, 32, 50, 50,178,252,115,109,233,180,180, -180,124,181,123,247,238, 72, 76, 76, 68, 84, 84,212,175,106,181, 58, 27,192,175,201,201,201,195, 58,118,236,136,147, 39, 79,142, -168,193,104,153,117,141, 76, 52, 90,207,104, 90, 88, 88, 44,249,249,231,159,167, 95,191,126,253,181,133, 11, 23,138,251,247,239, - 15, 0, 40, 44, 44, 44, 6,192,154,163,169,213,106,119, 2, 40,111, 57,155,144,144,112, 96,193,130, 5, 87,231,207,159,175, 44, - 75, 95,102,244,153,176, 76, 32,204,191,207,244, 79,187,117,244,247,253, 98,243,193,139, 73,201,233, 7,243,239,159,206, 55,229, -216, 9, 33,160,105, 26, 28,199,193,193,193, 65,147,157,157,141,140,140,140, 39, 25, 25, 25,115,226,226,226,204, 58,246,231,121, -207,243,154,188, 38,175,201,107,254,159, 98,122,207,240,132, 16,134,227, 56, 92,185,114, 5, 63,255,252, 51,107, 52, 26,103,170, -213,234,138,189, 85,127, 27, 30, 30, 30, 52,118,236,216,125, 15, 30, 60, 16, 70, 71, 71,131, 16,194,154,147, 26,157, 78, 71, 83, -212,179,203,234,123,148,123,247,238, 69, 90, 90,154, 49, 57, 57, 57,152, 97,152,147,245,108,189, 88,239, 86,135,123, 1,253,235, - 6, 67,240,138, 30, 61, 6, 46, 15, 10,146,189,189,108,153,254,205,105,211, 22,177, 6, 3, 45,148, 72, 56,169,165,165,128,149, -201,196, 81, 33, 33,242,205,239,188,227,160,213,235, 47, 28, 52,163,130,121, 89, 68,171, 79,159,158,120,243,237,249,208, 86,136, -104,133,253, 25, 11,189, 17,102, 69,180,244,122,189,191, 90,173,134, 92, 46, 79, 2,224, 50,117,234, 84,112, 28, 7,173, 86,139, -194,194, 66,168, 84,170,252,105,211,166,177,165,230, 73, 52,102,204, 24, 27, 83,116,189,189,189,221,196, 98, 49, 46, 92,184, 0, -177, 88,124, 14, 0,196, 98,241,185,160,160,160, 97, 19, 39, 78,132,187,187,187,119,124,124, 60,133, 90,234,167, 57,251,143, 60, - 74,128,230,160,208,172, 36, 4,135,102, 74,255,145, 17, 20,240,176,180,215,248,251,237,219,183, 7, 76,172,151, 85,145,210,198, - 29,155,104,154, 62,182,120,241,226, 57,157, 59,119, 30,180, 98,197, 10, 10,165, 93, 53,212,147,216,212,212,212, 94, 75,151, 46, -189, 72, 8,169,100,250, 51,178,114,126,235, 26, 48,151,228,229,229,223,201,188,127, 38,210,172,136, 41,195,212,171, 59, 11, 30, - 30, 30, 30,158,231, 22,213,122,134,106,141, 22, 69, 81,187,122,247,238, 61, 19,128,144,162,168, 29, 42,149,234,153,204, 95,173, - 86,199,186,185,185,125,221,184,113,227, 89, 0, 8, 69, 81,187,204, 76, 84, 58, 33, 88, 39, 16, 80,139, 75,204, 93,157, 58,168, - 44, 27,150,100, 49, 0, 74, 32, 16,238,187,125,251,246,178,164,164,164, 76, 19, 35, 16, 53,242, 60, 90, 29, 2,192, 33,224,201, -132,196,196,139, 11, 90,181, 26, 48,228,157,119,208,102,200, 16, 27, 55, 47, 47, 86,107, 52,114,145,161,161,212,245,227,199, 37, -119,130,130,196, 90,189,254,194, 73, 32,201,220,116,166,166,166,134,252,118, 57,228,210,184, 49,195, 6,121, 55,118, 43, 49, 13, - 79, 84,200,202,201,191,100,142,201,122,202,244,142,220,186,117,235, 25,137, 68, 34,170, 56,148,141,209,104,204,209,235,245,254, - 0,144,155,155,235,182,107,215,174,195, 2,129, 32,177, 54,189,232,232,232,211,203,151, 47, 31,147,144,144,112, 41, 57, 57, 57, - 1, 0,146,146,146, 18,104,154,222,167, 86,171,199, 36, 38, 38,158,128, 9,141, 0, 8,208, 60, 42,244, 88,107, 0,240,239, 49, - 30, 81,161,199,228, 0, 90,251,247, 24, 15, 0,168,235, 88,134, 21, 41,237, 6,225,147,176,176,176,159, 6, 13, 26, 52, 3,245, -232,211,235,105,179,101, 52, 26,189,158, 94, 88, 22,217, 50, 71,200, 96, 48,208, 90,173,150, 97, 89, 86,100, 52, 26,137,193, 96, -160,249,124,142,167, 22,248,177, 47,121, 94, 88, 8, 33, 29, 1, 40,203,178,205,210,185,242,169,207, 6,148, 14, 23, 88,150, 85, -150,126,207,164, 40,234,207, 10, 26,229,203, 77,216, 22, 0,178, 0, 68, 80, 20, 85, 93, 16,100, 87,117,223,171, 53, 90, 42,149, -234, 4, 76, 24, 52,218,212,245,106, 96,105,233, 56,113, 64,221,199, 97, 43,215, 96, 89, 54, 61, 41, 41,169,222, 23, 84, 32, 16, - 60, 25, 49, 98,132, 89,235,215,182,206, 17, 32,241, 61,189,126,127,224,119,223,181,187,176, 99,135, 59,203, 48,142, 20, 64,132, - 82,105,182,193, 96, 72, 80,210,244, 93,115, 35, 89,149,162, 49,143, 83, 7,199, 63, 78, 69,179,102,205,200,163, 71,143,158, 71, -166,122, 87,163,209,120,212,118, 11, 20, 23, 23,247, 52,209, 12, 30, 74, 77, 77, 61, 84,133, 97, 63,172, 86,171, 15,155,241,164, -120, 88,106,170, 4, 28,197,141,243,239, 49,254, 56, 0,174,108, 80,233,231, 73, 90, 90,218, 3,148,246,243,246, 95, 35, 49, 49, - 81, 79, 81,212,129,117,235,214, 77,185,115,231,206, 17,149, 74,165,231,179, 98, 30, 30,158,151,217,100, 81, 20, 21, 88,250, 61, -160, 52, 40, 20,248,244,231,178,117,202,214,171,184, 78,153,198,211,203,107,218, 22, 0,150, 44, 89,178,108,205,154, 53, 10, 0, -166, 14,198, 92,231, 65,165,255, 46,210,255, 35, 26, 21, 77,193,238,191,227, 64,191, 3, 12, 96,152, 27, 96, 42,212,201,167,159, -111, 32,226,209,163, 71, 47,245, 91,107,217,160,210, 21,104,245,255,154,249, 36, 36, 36,108,245,244,244,220,169, 82,169, 24,240, -240,152,240,188,226, 79, 1,207, 11,138,178, 42, 99, 84,141, 41, 11,168,233,247, 74, 47,238, 85,172, 87,213,119,138,162, 2,215, -172, 89, 19, 96, 70,122,203, 35, 90, 2,254,218,241,240,188,216,252, 27, 45,105,121,120,120,120, 94,138, 55,143,167,162, 88,101, -230,235,233,239, 75,150, 44, 89,134,154, 75,156, 92, 81, 18,197,114, 45,253, 94, 94, 95,139, 66, 73,203,129,170, 48,167, 53,193, -128, 58, 28, 95, 48,175,201,107,242,154,188, 38,175,201,107,242,154,255,119,154,181,105, 7, 87, 97,136,134, 87, 87,212, 87, 83, - 49,226,211,159,107,219,182,182,117, 41,138,170,174,155,159,178,162,194,167,231,127, 59, 3,120, 77, 94,147,215,228, 53,121, 77, - 94,147,215,228, 53,235, 3, 33,164, 35, 33,100, 56, 74,138,191, 9, 33,100, 56, 33,100,200,146, 37, 75,150,150, 45, 91,178,100, -201, 82, 66, 72,255,178,245, 74,215, 41,223,166,108,217,211,243,167,151,213,180,110, 13, 73,156,249,212,231,242,239,255,149, 58, - 90, 60, 60, 60, 60, 60, 60, 60, 60, 85, 82,214, 98,176, 66,180, 41, 19, 64,228,154, 53,107,114, 43,212,157,202, 4,112, 23, 64, -219,210,245, 50, 75, 77, 90,197,186, 85,134,210,239,134, 42,214, 49,152,178,110, 53,236,170,230, 51,111,180,170,163,173,139, 96, -181,103, 67,231, 14,165, 23, 0,164,116, 16, 96,174,180,191, 34, 82,214,113, 17,199,129, 16, 2, 85, 70, 94,120,100, 6, 62,173, -235,254,124,220,224,224, 44,151,111,226, 8,233, 81,186, 40, 36, 63, 91, 63, 63,170, 0,121,166,106,248, 53, 64, 11,185, 0,139, - 56,130, 54, 0, 32,160, 16,161,227,240,117, 76,186,249,253, 73, 85,117,159,251, 43, 49, 83,106,161,152, 96,107,103,223, 44, 55, - 55,235,161, 81,167, 63, 22,157,137,157,168, 67, 5, 91,111,123,116,225, 8,150, 1, 16,136, 5, 88,255, 48,199,228,150, 28, 60, - 60, 60, 60,245,141,142,212,171, 95, 60,138,162,216, 42, 52,169,122,106,242, 13, 21, 76, 48, 91, 85, 44,254,163,138,101,127,254, -151,210,109,150,209,106,169,196, 59,160,176, 18, 0, 1,193,103,209,153,216,110,214,246,174, 24, 32, 23, 10,247, 0, 16,234,140, -236, 2,194,225,106,149, 39, 83,128, 94,114,137,112, 61, 0, 78,199,178,111, 69,171, 77,175, 47,230,239,142, 33, 34, 78,112,128, - 35, 68,204,114,100, 31, 8, 2,173, 36,248,253, 70, 42,116,230,164,213,179,161,115,135, 83,127,168, 7, 93,222, 62, 15,157,219, - 52, 5, 97, 25,128,163,161,232,185, 8,191,110,156,138,206, 45, 60, 65, 56, 26,224, 24, 88, 13,253, 6, 67, 91,217,146,200,140, -186,141,131,237,227, 6, 7, 47, 39,231,123,187,119,239,113,113,243,110, 73,113,140, 17, 15,254,184, 52,249,131,197,203,251,249, - 35,191,149, 41,102,171,141, 43,222,246,108,228,187,104,254,202, 13, 66, 87, 55, 15, 75,142,214, 51,105, 79,238,183,255,246,171, -229, 39, 36,130,196,245, 17,106,236, 49,245, 94,110,169,196, 44,145, 76, 58,222, 66,110,217,172,184,184,240, 17,107,164,143, 9, -196,162, 33, 95,127,179,169, 93,159,129,195,172,216,194, 52, 1,205,161,229,209, 35,135,189,190,219,186,109,216, 61, 53,251, 42, - 0,206,156, 99,230, 8, 22,199,238,159, 57, 76, 44, 18, 82, 45,166,239, 22, 2, 76,157,140, 86, 11,103,188, 78, 17,212,218,189, - 4,161,112,237,126, 6, 14,213,101, 31,126,206,248,158, 34,240, 1,133,227, 20,193,225,232, 76,100,240, 89, 30, 15,207,203,133, - 64, 32,184,204,113, 92,223,231,108, 12,186, 16, 66,110,240,103,247,255, 27,243, 34, 90, 20, 62,143,138, 75,182, 7,107,132,191, -143,247,106,192, 60,163, 37, 23, 10,247,253,249, 48,221, 5,140, 17,187,191,152,115,196, 64, 3, 12,109, 4,203,208, 96, 25, 26, - 12, 99, 4, 75,211, 32,180, 30,203,127,184, 12, 24, 10,209,161, 85,243,125, 0,235,106,234, 62,196, 68,112, 32, 60,244,146, 3, -101,200,199,161,237,107,222, 75,206, 44,122, 47, 56, 66,149,213,210, 89,187, 52, 58, 3, 63,154, 99, 8, 46,239,152,135,131, 39, -207,165,108,254, 94, 19,195, 17, 2, 7, 27, 11,223,201, 1, 81, 30,251, 79, 95, 78,222,180, 79, 23, 3, 0,182,150, 82,223, 55, - 34, 30,122,214,231, 34, 56,203,229,155,118,110,251,206,197,213,209,130, 98,174,175, 5,195,178,240,240, 26, 46, 92, 58,119,178, -235,231, 27,247,108, 68,129,254,205,154,182,247,117, 70,203, 70,141, 91, 44,216,119,238,186,167,166, 32,195,112,233,167,101,113, -208,131,118,113,111, 33, 94,189,102,131,240,227,143,230,125,104, 96, 83,110, 62,200, 64,116,109,121, 77, 11,103,156, 94,179,246, -155, 54,253,134, 6, 88,113, 69,153, 66,157,166,200,103,247, 15,123, 86,250,181,233,164,232,217,170,161, 36,227,216,108, 74, 91, -152, 3,163, 64, 46,235,231, 63,192, 70, 59,101, 34,189,123,239,193,185,209, 25,248,214,156, 99,102,201, 95,247, 30,199,213,189, -215,117,138,160,231,157, 27,151,103,177,170, 63, 65, 88, 26, 96,141,229,115,176, 52, 8, 87, 50,239, 60,251, 7, 0,117, 51, 90, - 2,130, 65,193,161,127,186,166,167,169, 59,110,252,230,203,165,228,207, 63,127, 1,139, 3,247,115, 16, 98,174,193, 4,224,211, -196, 81,120,145,102,161, 79,206, 99,125,202, 22,246,243,145,117,115,181,162,250, 39,229, 83, 87,175,197,105, 67,248,172,137,135, -231, 95,137,152, 48,132, 16,209,115,214, 28, 70, 8, 57, 95, 79,153, 69, 0,222, 46,253,188, 7,192,215,207, 33,105, 13, 1,184, -148,126, 78, 3,144,194,223, 1,245,226,233,202,239,117,238, 71, 75, 14,194, 1,199, 71, 1,128,133,185,169, 32,128, 28,148, 16, -160, 53, 24, 57,116, 32,156,156, 93, 0,186, 24, 48, 22, 3,180, 22,160, 53, 0,173, 69,150, 58, 17, 48,106,128,248, 95,192, 16, - 34, 51,251,112,245,249, 64,236, 49,244,111,239, 9,165,173, 28,243, 70,182,116,218,117, 33,118,207,158, 75, 15, 6, 68,103, 96, -130, 73,105, 37, 4,157, 91, 55,195,230, 61,154,152,179,183, 51, 7, 3,192,176,182,142, 23, 58,183,244,242,216,180, 79, 23,115, - 62, 50,119, 8, 0, 12,241,183,249,165,147,175,171, 39, 87,143,238,105, 56, 66,122,186, 53,106, 70,177,119,118,130, 43, 72, 65, - 65,129, 22, 41, 79,246,195,222,253, 21, 1,203,161,119,109,219, 91, 8,177,228,253,143,215,137,139, 11,210, 13,156, 49,147, 85, - 10,115,133, 34, 41, 71, 33, 53, 68, 95,196,229,177,243,103, 78,101, 22,124,250,197, 18, 0,147,107,210,105,233,140,185,235,215, -111,106,221,189,131,159,115,218,137,121, 84, 81,110, 58, 24,161, 66, 54,178,107,119,216, 53,111,201,165, 95, 89, 79, 73,189, 7, -192,206,209, 27,169,215,127, 66,194,141,159,169, 30,237,199,200,126, 60, 36,153, 2, 24,171, 52, 90,205,156,208, 99,112,175, 78, - 71,188, 61,221, 92, 9,225,192,113, 4,132, 99, 81,164,163,177,244,104, 60, 88,150,197,216,193, 61,250, 91, 74, 41,194,113, 28, - 8,225,144,156,150, 93,252,219,205,152,254,241,185,184,105, 74,164,170,109,151,190, 61, 34,194,111,248,209,177,103,209, 97,242, -154, 24, 10, 8,173,112,207,245,184,125,241, 71, 63,224,135,186,123, 57, 10,108,194,133,181,240,236, 53, 83,184,243,208, 5,101, -126,102,234, 27, 39,246,111, 27,183,125,231,206,131, 49, 25,152,109,142,201,250,160,151, 52,116,227,111, 5,142, 93,189, 45, 51, -147, 43,196, 41,155,216, 11, 6,239, 56, 31,253,126,216,170,206,126, 31,159, 35,121, 87,227,116,145,124,190,197,195,243,207, 66, - 8,121,238,102, 43, 49, 49, 81, 85, 31,179,229,238,238,222, 43, 53, 53,245,171,178,218, 42, 20, 69,125,213,168, 81,163,229,127, -189,168, 86,122,215,203,103, 89,118,114,106,106,234,213,154, 52,135, 15, 31,238,118,238,220,185,198, 21, 52, 27, 3,104, 92,213, -186,118,118,118,108,183,110,221, 18,206,157, 59,167,226,239,144, 58, 25, 46,179,141, 86, 76,210,177,121,237,245,234, 34, 0,136, - 49, 97,253, 74, 69,126, 58,154, 93,187,119,229,212,181,254,141, 28, 80,168, 49,224,210,173, 4,176, 44, 13,150, 97, 74, 35, 91, - 12, 88,134,198,224,182, 78,232,166,155,141,111, 3, 31,128, 97,185, 53, 53,105, 62,141,145,112,175,183, 27,240,218, 81,142, 35, - 82,153, 88,144,239,227,225,232,188, 96,108, 91,193,188,145,254,208, 26,153,215,126,186, 18,247,219,253, 12,236, 54, 73,147,123, -182,123, 34, 82,213, 50,150,169,245,216,107,136, 70,117, 30,208,167,167, 13,209,231,131,206,138, 71, 97, 49,141,248,108, 26,105, -186, 60,200, 40,181, 73,154, 28, 65,155,134,238,174,138,223,143,124,244,196, 81, 88, 32,114, 22, 50, 18,169,128, 1,203, 17, 33, -201,139,214, 59,248, 13, 20,151,213,219,170, 41,157, 22, 10,235,169,189, 6, 13,183, 77,250,105, 38,101,225, 51, 24,206,237, 61, -240,228,234, 94,100,220, 10, 68,182, 42,129,178,209,229,161,129, 99, 83, 12,157, 60, 1, 95, 79,232,136,194,130, 66, 8,213,113, -182, 82,177,204, 14, 48, 86,169, 73, 88, 76, 94,191,238, 11, 87,145, 80, 80,114, 62,203, 38,150,134, 86,175, 7, 88, 6,114, 17, - 7,138,148,253, 70,131,165,141,138, 54, 99, 62,154, 3,176, 55,107, 59,246,251, 25, 56,212, 82,137,158,224,104, 63, 66,107, 65, - 1,161,209,153,127,153,159, 22,206,120,253,149,193,211,122, 18, 10,215,234,114,141, 90, 57, 34,160, 67, 99, 43, 75,203,130, 24, -164, 28,127, 15,113,144,147, 6,221,223,198,235,211,231, 42,118,237,218, 53, 2, 32,239,160,114, 29,181,114, 77,191, 6,194, 89, - 52,139,229, 0,160,165,201, 94,107, 41, 53,125,253,225, 48, 71, 8,255, 26,225,161, 44,146, 21,151,205,229, 26, 47,127,242,160, -203,130,192, 62,173,239,244, 73,166, 40, 89, 82,200, 35,125,190, 57,247,146,153,240,154,188,230,223,174,105, 99, 99,211,164, 81, -163, 70,203,105,154,238, 37,145, 72, 26, 24,141, 70,112, 28,151, 38,149, 74,175, 37, 36, 36,172, 42, 40, 40,120,252, 95, 59,246, -136,136, 8,115,204, 86,173,154, 98,177, 24, 15, 30, 60,120,100,134,217, 10,126,106,251, 3,161,161,161, 56,122,244, 40, 0, 32, - 54, 54, 22,205,155, 55,183,172,106,195, 39, 79,158, 88,246,233,211,231, 0, 0,143,154, 52, 35, 35, 35,155,156, 61,123, 22,199, -143, 31, 7, 0, 60,120,240, 0, 62, 62, 62, 85, 38, 38, 52, 52, 84, 56,105,210,164, 38, 0, 84,255,192, 53,122, 25, 76, 86,197, -249, 95, 70, 43, 48, 48,144, 4, 4, 4, 80, 79,127,174,130,120, 79,123,105,123,232, 88, 0,136, 55, 55, 5,247,211,177,110,243, -254,139, 67,126, 61,190,181,151, 92, 34,192,138,221, 11,146, 51,115, 10,187,136,168,146,226, 23,134, 64, 96,111, 37, 13, 91,243, - 70, 91,207,220, 34, 29,206,252,145,122, 53, 58,195,188, 16,105,180, 26, 65, 0,103, 87,242,141,133, 78,155,225,243,198,215, 65, -135, 15, 47, 25,210,102,254,200, 54, 56,125, 61, 97, 62,192,212,218,235, 59,225, 56, 16,142, 41,175,252, 94,250,234, 0,112,149, - 7,240,229, 64, 74,150,113,230, 69,180,122, 3,162, 92,103, 12,181, 86, 72,183,204,154, 53,195,134,206,124,136, 28,131, 4,201, -185, 58,164,105,197, 40, 18, 57, 35, 53, 38,146, 21, 80, 8,170, 53,228, 66,161,128, 48, 58, 59,123,169,149,160,213,192, 57,238, - 5, 23,150,229, 74, 41, 70,104, 51,250,115,187,172, 95, 55, 36, 48,154, 76, 13, 69,161,214,238,231,109,109,237,154,235,178, 19, -132,249,185, 89,176,115,241,199,144,215, 2,240,217,240,150, 40, 44,208, 32, 51, 39,140, 52,115,181,161, 18,175, 29,196,199, 67, - 91, 32, 59, 93, 13, 61, 13, 80, 26,125,142,206,160, 43,170,246, 60, 10,176,243,131,133,139, 95,247,114, 85, 90,150, 53, 42, 32, - 28,139,182, 45,188, 49,176, 87,103, 4,133,254,142, 63, 35, 99,193,149, 54, 42, 32, 28,135,148,140,220,116,157,145,221,107,214, - 9,101, 25, 16, 90, 87,165, 17, 67, 29,138, 12, 91, 57, 67,193, 2,159,118,108, 98,253,214,146, 0, 47,107, 75, 25, 5, 29,205, - 66,103,160, 81,248,251, 22, 56, 54,106, 13,133, 92, 78,181,135, 86,116, 27, 85,159, 91, 29,141,229,143,213,121,174, 40, 74,195, -164,129,254,239,239, 91,243,174, 37, 37, 47,185, 53,105,182,114, 36,235,247,149, 29, 47, 78, 90,125,234,242,209, 99, 19,221,190, - 94, 52,181,207,224, 15,247, 94, 6,112,129,207,183,120, 94, 68,198,141, 27, 39, 79, 79, 79,191,226,225,225,209,114,224,192,129, -138,158, 61,123, 66,163,209,224,210,165, 75,208,104, 52, 94, 30, 30, 30, 94,151, 46, 93, 26,147,148,148, 20,221,176, 97,195, 62, -199,143, 31, 55,185, 14,109,169, 1, 18,150,103,193, 0, 67, 81, 20, 74,151, 81,165,203,234, 60,206,173, 84, 42, 69, 98, 98,226, -115,143,108,165,166,166, 62,170, 75,100,171,168,168, 72,226,238,238, 14,165, 82, 9,150,101,161,209,104,112,234,212, 41,228,231, -231,131,227, 56, 88, 88, 88,224,243,245,187, 17,115,251, 10,110,222,188,137,252,252,124, 73,109,154, 41, 41, 41, 84,219,182,109, -161,215,235,193, 48, 12,116, 58, 29,130,131,131,203,191,139, 68, 34, 44, 94,189, 17,177,183,174,224,206,157, 59, 72, 73, 73,249, - 71, 70, 27, 49,195,139,252, 23,169,182,207,172,127,188,213, 33,203, 50, 75,119,237, 59, 28,182,116,246, 4,204,157, 56,192, 99, -213,214,159, 7,220,207,194, 62, 0,104,225,132, 55,166,244,109,230,105,167, 16,227,179,159,110, 1,132, 44,173,239,254,162,114, - 16,219,178, 1, 55,255,228,205,196, 43,203, 38,180,135,183,171, 77,243, 92,105,142, 52, 62,222,132, 49, 5, 57, 6,246, 86, 50, -223, 97,109, 29, 47,128,227, 96,103, 45,243, 3,203,192,206, 74,230, 59,196,223,230, 23, 0,176, 81,136,253,170,138,124, 85, 71, - 7, 15,241, 76,133, 76, 52,211,210,218,206,243,205, 17, 3, 45,134,141, 24, 99, 97, 37,102,144,125,243, 18, 10,196, 13, 65, 59, -120, 65, 79,231, 32,229,113, 28,251,235,141,251,169, 89,133,250, 5,181, 38,147,224,106,234,227, 7,202, 38,109, 6,218,103, 5, -126,156,209,100,218, 79,141, 5,224, 4,133, 7, 71,167, 91, 58,119,178,248, 35,254,113, 17, 71,170,140,232, 84,162, 32, 63, 63, -129,102,225,170,101, 69,214,113,151,127,196,146,161,173,145,155,147, 1,157,145, 65,190,150, 49,186,216,201,101,250,199,247,160, - 55, 50, 48,208, 28,196,118,238,184, 20, 22,153,197,209,244, 47,213,105,198,103,227, 78,252,169, 59, 86, 21,151,121, 59,161,237, - 71, 54, 22,119, 64,107,145,152,162,194,190,115, 97,237,227,179,113,167, 62,215,153,112, 76, 73,241,115,133, 72, 22, 69,208,179, - 46,149,224,253,156,209, 73, 34,151,124,247,213,252, 73, 45,187,250, 56,200,184,148, 48, 80,156, 17,150,172, 8, 90, 41, 11, 91, - 15,111,112,134, 66, 82,172,211,229, 69, 1, 53, 93,124, 33, 0, 16,163, 6, 95, 79,245,183,164,236,189,193,198, 95,128,168,221, - 76,208,165,209,254,184,108, 46,210,120,249,147,152,110, 11,207,246, 94, 29,212,247,190,234,220,138,251,238,227,182,180, 5,246, - 54,226, 31,215, 60, 47, 34,190,190,190, 46,169,169,169, 81, 11, 23, 46,116, 24, 61,122, 52, 78,158, 60,137,130,130, 2,236,221, -187, 23,155, 54,109,194,202,149, 43, 65,211, 52,118,237,218,165, 56,113,226, 68,167,109,219,182,165,120,122,122,250, 39, 37, 37, -165,213, 98,176, 40, 0, 50, 0,226,210,103, 23, 5,128, 59,127,254, 60,134, 13, 27,134,243,231,207,115,165,203, 88,148,188,252, -212,105,236, 79,169, 84, 10,169, 84,138,252,252,252,231, 98,182,196, 98, 49,172,172,172, 32,149, 74, 81, 88, 88,104,182,217, 98, - 24, 70,152,146,146,130,252,252,124, 12, 28, 49, 2, 27,215,172, 65,223,190,125, 49,112,224, 64, 16, 66, 16, 28, 28,140, 1,221, - 91, 97,194,171,125,112,255,254,125, 48, 12, 99, 82,122,211,210,210,144,158,158,142, 33, 35, 70, 96,247,182,109,232,220,185, 51, -124,125,125,193, 48, 12,174, 92,185,130,113,131,187, 67, 62,106, 0, 98, 99, 99,249,155,218,244,104,214,115,169,163, 85,111,162, - 50,113,131, 59, 29, 18, 56,113,112,167,128, 17, 61, 90, 98,247,145, 95,191,128,178,224, 48, 0, 56,234,101,159, 79,237,235,141, -232,164, 92,252,122, 71, 21,120, 63, 11,207,165,181, 6,199,194,201,209, 70, 1, 8,165,208, 26, 57,198, 38,190,246, 10,204, 28, - 33, 80,244,250, 8, 83, 70, 68,123,116,110,233,225, 81,214,234,208,106,216, 6,188, 17,249,200,179,163,175,139, 39, 88, 26, 96, -105,216, 76,248, 9, 88,109, 89,107, 58,186, 55,150, 6,125, 48,111, 94,183,161,163, 94,179,144, 42,108,193, 22, 36,131, 78,139, - 68,246,195,171,208, 40,154, 35, 45, 49, 30, 71, 47,222,204,127,152,146, 93, 32, 16,224, 82,122,190,126, 81,124, 46,138,106,211, -213,209, 88,179,252,227, 5,195,143, 30, 62, 98, 45,243,238, 65,197,109, 25,150, 47, 21, 49, 50,101,227, 87, 4,197,114, 39,242, -229,222, 35, 54, 26, 3,214,214,166, 83,172, 41,248, 57,248,210,133, 9,205,154,244,176,126,242,231, 57,104,117,122,232,105,192, -191, 83, 31,176, 44,145, 82, 2,138,179, 17, 10,169,140,236, 92, 80, 52,155,126,237,238, 19,117,232,221,120,161,222, 26,107,107, -236, 93,228,105,119, 79, 9,223, 31,209,167, 29, 64,107,241,106,175,214,216,120,240,215,247, 0,118, 90,253, 46,114, 73, 68,139, - 0, 61, 90, 42,177,131, 16,244,184,117,106,147, 95,135, 81, 31,192,156,136,150,191, 19,134,182,104,226,246,227,198,207, 63,114, -112,108,216, 92, 72,113, 52,136, 75, 27,160, 32,133, 80, 41, 97,176,117,239, 12,214,173, 59,118,125,251, 77, 17,199,145,195,168, -161,107, 11,150, 3,184,164, 16,176, 49, 39, 17, 31, 31, 15, 39,175, 91, 0, 37, 0,105,244, 4, 70,166,100, 51,189,145,156,219, -188,247,108,223, 69,253,214,248,143,240, 19,121,134,221,141,203,120,109,186,155,162,139,167,208, 39, 90,109, 41,200,210,104, 56, - 62,255,226,121,145,208,233,116, 63,175, 91,183,206, 33, 32, 32,160, 44, 34,131,176,176, 48,236,217,179, 7,150,150,149,243,201, - 97,195,134,129, 16,226,176, 98,197,138,159, 1,116,173, 78,179, 91,183,110, 35,238,220,185,163,106,215,174, 93,124,169,217,146, - 0, 16,220,187,119, 79,144,156,156, 76,217,219,219, 19, 55, 55, 55, 90,165, 82,113, 0,216,233,211,167, 11,143, 29, 59,214, 76, -163,209,132,212,213,104, 73,165,210,231, 82,103, 75, 44, 22,131,162, 40, 72,165, 82, 72, 36, 18, 16, 66,204, 50, 91, 44,203,138, -206,159, 63,143, 91,183,110, 97,101,187,118,152,239,238, 14, 7, 7, 7, 92,185,114, 5,132, 16, 88, 90, 90, 34, 39, 39, 7,135, - 15, 31, 70,191,126,253,192, 48,140,196, 20,221,227,199,143, 35, 60, 60, 28,171, 59,116,192,124, 91, 91, 88, 89, 89, 33, 56,184, -164, 52, 80, 38,147, 33, 49, 49, 17,193,193,193,232,211,167, 15,127, 83,215, 19,147,111,158,222,128, 40,135,130,139,209,160, 5, - 97, 8, 64,193,173, 69, 11, 72,238,223,175, 92, 57,199, 20, 4, 2,124,252,237,190,192,225, 27, 62, 24, 65,205, 28,217,222,109, -213,143,151,223, 1,128,183,198,250,184, 43,100, 34,108, 62, 29, 77, 4, 2,124,252, 60, 14,176, 69, 11, 72,168,108,188, 51,176, -179, 47, 84,121, 6,196,169,242,126,187, 15,152, 52,138,243,175, 27,166, 96,255,153, 43,201,155,246,235, 98, 8, 33,176,179,146, -249,190, 17, 17,231,249,227,249,240,164,245, 71,117, 49,132, 35,176, 83,136,253,166,221,239, 94,107,171,195, 14, 30,226,153, 31, - 46, 88,208,125,228,180,133,114, 38,230, 24, 12,113, 23,193, 25,181, 40, 48, 74,144, 39,116, 65, 74, 82, 18,190,220, 21,152, 92, -160, 49, 76,136,202, 52,207, 96, 62,204, 70,145,136, 42, 24,253,229,103,203,130,214,124,190,194, 74, 27,127,165, 72, 72, 49, 90, - 97,163,222,162,207, 87,110,160, 10,245,134,215,226,115, 81, 88,155,142,222, 26,107,215,173,255,118,248,140,201, 99, 98,124,154, -247,118,100, 85,143, 29,117, 5, 5, 25, 63, 93, 8,119, 41,125, 83,164, 0, 32, 46, 37, 27,153,249, 26,134,101,232, 16,107, 49, - 86, 69,155, 18, 29, 44,165,137, 51,148, 1, 61,252, 39, 41,173, 37,208, 22,229,193,217, 90,140,193,157,155, 78,162,255,136,253, -232,113,134, 57,118,237,105,163, 69,131,208, 90,220, 88,219,207,143,176,180, 31, 88, 26,198,136, 3,230, 71,198, 40,204,159,219, -203,202,198,222,240, 68, 0,141, 37, 96,225, 4,202,198, 11,176,109, 76,137, 91,188, 6, 85,124, 20,243,222,164,201,217,143, 19, - 82,190,119,178,168,185, 88,155,230, 8,184,132, 43, 40, 74,143,195, 61,149, 17,254, 25, 37,165,237, 54,233,183,193,242, 61,230, -240,188,164, 36, 38, 38, 78, 93,186,116,105,104,231,206,157, 27, 56, 57, 57,161,117,235,214, 56,115,230, 12, 22, 46, 92, 88,190, - 78,187,118,237, 64, 8, 65, 78, 78, 14,214,173, 91,151,166, 82,169,166,214,248,130, 30, 21, 21,179,127,255,254, 94, 45, 91,182, - 52, 74, 36,146, 60, 0,178,188,188, 60,121, 78, 78, 14,165,211,233,192,113, 28,103,107,107,203,170, 84, 42,122,194,132, 9,250, -235,215,175, 55,213,104, 52,137,245,137,104,121,120,120,220,203,206,206,206,167, 40,170,222, 93, 63,148,153, 44, 39, 39, 39,101, - 81, 81, 17, 7, 32,183, 46, 93, 63, 48, 12,131, 14, 29, 58,224,226,213,219, 56,255,235,117, 20,168, 30,224,157, 25, 83,209,186, -117,107, 92,188,120,177,206,215,172,109,219,182,184, 16, 28,138,208, 91,119,145, 24, 27,129,247,222,153, 1,127,127,127, 92,184, -192,215, 94, 48,131,115,168, 92, 55,235,220,211, 70,171, 79, 96, 96, 96, 89,214,255,140,125,245,115, 66, 91,177,157,244,192,138, -161, 77, 91,136, 7,174, 0, 37,182,192,177,230, 23,186,127,252,229,150, 24,161,115,226,228,123, 25,181,183, 14,171,244,167,201, - 64, 20,185, 25,115,232,238,125,191, 73,175,118,246,192,238, 51,138, 79, 1,224,181,158, 77,240,199,195, 76,220,140,205, 56, 20, -157,137,168,250, 30,117, 43,103, 40,216, 44, 28, 90,247,254,200, 62, 94, 13, 93,176,231,100, 40, 40, 10, 63,155,244,192, 37,132, -116,110,233,133, 77,251,159,110, 97,232,226,185,254,168, 46,230, 82, 84,225, 80, 0, 24,232,167,248,165, 99, 83,123, 79, 82,177, -226, 86, 21, 88, 72, 69,179,134,142,153, 34,103, 98,207, 0, 9,193,160, 24, 61,180, 70, 14,234,172, 66, 20,219,122,224, 74,216, - 93,109,190,206,240, 65,116,102,221,162,120,247,179, 16, 47,249,243,110, 82,145, 70,235,170, 80, 54,213, 9, 5, 28, 87,164, 39, -248, 35, 58,161, 32, 58, 13, 15, 76,209,136,143,135,161,139, 59,211,115,199,190,163,203,197, 18,233,107, 66, 10,148,179,157,165, -114,199,134,213,176,182,182, 2,103, 40, 2, 52,153, 24,253,238,151,153,247, 84,116, 19, 0,104,238, 8,171,158, 77,196,251, 68, - 2, 42,229,114,156,241,147,218,246, 65,209,152, 61,121,112, 59, 49,103,208,224,253,117, 71,176,243,163,145,152,210,191,133,248, -220,239,177,179, 1,172,170,235,181, 38, 44, 3, 66,107,209,117,217,213, 24, 10, 8, 37, 64,143, 91, 71, 63,247, 3,110,155,172, -209, 30, 16,179, 34,170, 69, 27, 79, 75, 9,151,242, 59,184,148,223,137,208,163, 59, 40,207, 94, 20,229,210,129,124,247,213, 74, -205,238,221,123, 46,113, 2,124,102, 66, 87, 25, 96, 57, 32, 43, 54, 20, 6,131, 1, 52, 11,232,116, 58,104, 52, 26, 88,198, 93, - 40,175,163, 37, 17, 83, 67,230,189, 57,162, 45, 41, 82, 21,159,141, 97,146,246,204,240,235, 74,138, 84,197, 55,146,216,216, 44, -141,158,143,102,241,188,136,196,171, 84,170, 33,195,134, 13,251,245,226,197,139, 14,173, 90,181, 2, 0,220,186,117,171,228,165, -179, 67, 7,248,248,248, 32, 61, 61, 29, 19, 39, 78,204, 82,171,213, 67, 80, 75,157,223,194,194,194,199,199,143, 31,111,160,209, -104,218,125,242,201, 39, 25, 94, 94, 94, 5, 58,157,142,202,203,203,227, 24,134,129,189,189,189,180, 93,187,118,232,214,173, 91, - 81, 88, 88, 88,163,228,228,228, 66, 0, 9,117, 73,252,200,145, 35,113,245,106, 73,163,189,231,209,175,150, 68, 34, 65,171, 86, -173,220,227,227,227, 83, 75,159, 45,102,231,241, 21, 31, 47,119,239,222, 69,200,237, 20,136, 12, 90, 72, 51, 85,184,113,242, 56, - 70,204,154, 3,134,169,251,216,242,119,239,222,197,169,224, 27,176,148,137,240,224, 65, 20,142, 31, 63,142,119,222,121,167, 94, -154,117,164, 70, 47,242, 31, 71,141,106,234,105,137, 0, 32, 32, 32, 32,164, 44, 90, 81, 17,111,111, 72,101, 69, 88, 49,176,189, -251,226,215,122, 52, 21,210, 5, 42,112, 44, 7,161, 24,112,118,178,193,129, 3,135,154, 28, 58,114, 36,108,219,214,109,223,114, - 12,243,241,189, 12, 20,155,145,168, 21, 27,142,132,190,118, 96, 65, 31,209, 59, 67,253, 28, 0, 64, 34, 18, 96,243,153, 40, 6, -192,138,250, 28,109, 23,119,200,139,104,204,116,118,180,253,116,233,219,195, 29,250,116,240, 65,200,205,123,248,246,120,216, 85, -105, 6,246,155,124,115,115, 52,158,246, 79, 85,181, 58, 4, 87,123,189, 75,150, 37, 46, 18, 75,123, 24, 19, 46, 3, 70, 29,116, -122, 35,146,179, 89, 36,231,232, 32, 82, 72,112, 43, 54, 69,235,152,134,192,122, 28, 54,101,169,144,187, 45,255, 98,125, 67,157, -182,136, 41,200,205, 98, 36,210, 27, 98,133,133, 76,109, 78, 85,133, 27,169,208,245,106, 44,126, 5,224,132, 82, 57, 41, 94,246, -225,155,150,169,209, 23,209, 76,160, 2, 69, 8, 44, 90, 12,135,181,133, 80,210,163,145, 56, 9, 0, 44, 45, 21,210,117,159, 45, -180,253,224,163,207,106,173, 3,214, 2,144,248,120,187,124,208,202,203, 30, 87,195, 99,112, 53, 50, 49,234,234,173, 7,254,125, - 91,187,193,167,161,221, 60,105,110,222,218,251, 48,160, 45,129, 83, 0, 0, 32, 0, 73, 68, 65, 84, 63, 66, 90,114, 97, 24,128, -214,149,183, 58,108,225,140,215, 59,190,246, 73,117,173, 13,171,164, 49,192,197,178, 4,148, 80, 8, 80,130,146, 22,144,201,191, - 67,100,231, 77, 14, 29, 61, 85,188,103,207,254,213,247,179, 76,111,156, 65,179, 96, 11, 10, 10, 96,105,105,137, 11,177,140,126, -202, 96,137, 76, 32, 16, 32, 57,246,246, 95,149,225, 29, 4, 45, 37,125, 63,247,251,125,101,199,139,214, 82, 74,230, 54,252,179, - 22, 76,228,254,148,186, 62, 36,120,120,254, 11,228,231,231, 71,220,191,127,127,112,155, 54,109,246,190,255,254,251,214,147, 39, - 79,118,155, 49, 99,134, 0, 0,210,211,211,185, 77,155, 54,169,190,251,238,187,252,172,172,172,105, 52, 77,155,210,149, 9, 81, -171,213,215,191,255,254,251,204,107,215,174,249,119,234,212, 73,246,202, 43,175,112,246,246,246, 34,153, 76,198, 26, 12, 6, 93, -108,108, 44, 27, 31, 31,239,154,151,151,247, 8, 64, 28,234, 48, 98, 69,105,244,106,149, 80, 40, 92, 78, 8,105,245, 60,234,104, - 41, 20, 10, 55, 0,143, 40,138,106,102,110,177,225, 51, 15,108,145, 8,185,185,185, 40, 78,139,130, 60,229, 33,218, 88, 10,208, -210,222, 10, 54, 54, 54,245, 50, 69,249,249,249,128, 38, 21,161,161,119, 1,134,129,173,173, 45,108,109,109,255,113,163, 85,157, - 23,121, 65,152, 89,197,178,154,235,104,181, 84,226, 29, 11, 3, 54,205, 26,222, 84,210,216,179, 33,244, 41,183,112, 55,185, 8, - 31,119,233, 20, 45,148, 89,235,102, 77, 29,217, 97,204,184, 70,232,211,173, 35,213,216,213,118,222,218, 13,219,223,109,137,172, -133,209, 25,216,108, 74,138,162, 51,241,152, 67,198,158,203, 17, 41,179, 27, 42,180,224, 56,130,203,145,106, 68, 38,228,238,137, -201,196, 99,115,142,174,165, 43, 6,136, 32, 56, 66, 8,145,219, 90, 90, 22,182,244,105,232, 52,160,107, 91,193,144,222, 29, 32, - 17, 2,161,127,220,197,252, 13, 63,223,224, 56, 50,252,182,137,197,134, 37, 45, 12, 43, 27,168,146, 22,134,116,165, 22,134,132, - 16, 82,210,234,176,230,224,131, 80, 72,165, 21, 39,254,233, 34,118,108, 14,109,220,101, 36,228,114, 72,204, 40, 68,129,200, 5, -250,212, 84,128,112, 73, 33, 53, 87,172,174, 17, 39, 39, 39,231, 38, 45,125,154,110,217,119, 28,198,226,124, 60,190,178, 23, 69, -185,106,124,190,227, 76, 83,119,119,199,222,169,169,169, 33,102,100, 54, 62,191, 6, 30,114, 6, 1,132, 98, 25,206,109, 59,138, - 44, 71, 11, 56, 41, 36,224,180,153,152,245,193,100,219,161, 3, 39,219, 2, 64,226,131, 59,240, 82,104, 77,210, 53, 58, 98,204, -107,125,125,237, 64,107,177,239,194, 29,157, 0, 24,178,255, 82, 84, 92, 95, 63, 59,249,107, 61,188,236, 87,169,242,198, 34,187, -110,157,138,150, 69,180,202, 35,124,117,104,109,120, 28, 96,253, 56,196, 29,185,158, 97, 57,110,224, 43, 10,137,136,162, 72, 81, - 42,136,133, 19,182,239, 59, 86, 36,165,205, 27,137,157, 3, 86,117, 94,243,120,121,201,125,130,189, 67,215,220,122, 59,232,211, - 46,202,180,180, 52, 24, 75,203, 14, 31,231,112,191, 77, 29,216,146, 77,201,231, 12,151,214,142, 30, 71, 89, 40,165,139,190,222, -127,133, 0,124,111,210, 60, 47, 52, 90,173, 54, 92,171,213,182, 94,180,104,209,235,203,150, 45,235,101,105,105,217, 4, 0, 52, - 26,205, 99,154,166,175,150,254, 63,205,105, 29, 72, 0, 60,138,139,139,123, 28, 23, 23,215,224,224,193,131,118, 0,228,165,191, -233, 0,228, 1, 72, 71, 61, 90, 28,150,153, 42,138,162,150, 63,175,243, 80,102,170, 40,138,106, 86,151,237, 5, 2, 1, 75, 81, - 20, 40,138,130, 76, 38,195,181,107,215, 48,126,248, 64,220, 63,151,135, 86,118, 86,232, 52,109, 22,142, 4, 5, 65, 40, 20,130, -162, 40, 8,133, 66,179,158, 35, 34,145, 8,161,161,161,152, 50,113, 28,100, 34,192,214,214, 22,139, 22, 45,194,233,211,167, 33, - 18,241,163,244,153,193,174, 10,134,203,196,126,180, 40,172, 10,218,251,165, 4, 44,141,179,123,191, 65,224,189, 34,195,131, 76, -124,236,155,137, 77,199, 81,200,101,110,216, 63, 59, 40,244,222,215,211, 39, 4, 40,250,245, 29,136,126,125,250,138,252, 59,246, -254, 20,168,100,180, 6,160,134,190, 54, 88, 14,171,119, 93,136,153,117,228, 74, 44, 5, 99, 33, 38, 12,234, 72, 88, 14,171,107, - 57,152,103, 52,109, 45,172,142,132,134,133,217,195, 88,132,132, 59,191,201, 27, 53,105, 10,176, 70, 60,122,244, 16,223,237, 59, -201, 93,249,227,193, 1, 3,131,247,227,115,161, 49, 85,179,228, 73,201,192,214, 82,234, 59,196,223,230, 23, 14, 4,118, 10,137, - 31,225, 88,216, 41,196,126, 3,253, 20,191, 16, 66,136,181,133,216,143,176,116,173,154, 90, 3,179,115,223, 15,123,214,191,245, -214, 91,150, 89, 41,105, 80, 21,220, 67,145,212, 29,180,194, 3,113,119,174,106,139,245,140, 41, 15,241,106,207,103, 86, 86, 86, - 70,248,205, 28, 28,217,177, 6,180, 65,143,140,148, 18,175,170,202, 42,128,141,147,123, 88,106,106,170,201,154, 70,134,203, 31, - 51,121,166,196,194, 26, 22, 83,198, 4, 72,227,178,245,104,239,102, 93,146,105, 20,101,226,126,112, 40,250,148,214, 49,141, 79, - 22,192,171,173,155, 73,233,180,150, 75,222, 31,250,138, 59, 30, 39,169,113, 45, 42,117,223,227, 28,168,216, 24,245,190, 56, 85, -222,236,145, 93, 60,177,241,116,244,123, 0,125,200,156, 99,111,225,140,215, 9, 65,143,146,202,240, 90, 16,160, 71, 11,103,188, -110, 98, 75,195,103, 52, 69, 18, 76, 90,255, 75,226, 39,199,254,204, 26,185,120, 82, 79,155,110,221,134, 73,193, 24, 80,168,213, -211,247,243, 80, 96,142,102,129,150,219, 9, 96,103,217, 15,225, 41,220,129,158, 43,194,174, 30,154,225,161, 44,243,234, 87,227, -244, 97, 0,194,166,119,182,248, 84,210,247,115,223,176, 85,157, 47, 70,170,185,131, 87,227,202,251,208,170,245,127, 84, 71,120, - 77, 94,243,159,208,100, 1, 28,160,105,250, 64, 94, 94,222,243,212, 84,225,217,126,157,234,117,236, 21,139, 9, 9, 33,162,210, -104, 86,109,149,225,107,212,172, 88, 76, 72, 8, 57, 95, 26,205,170, 45,170, 85, 73,147,227, 56, 85,135, 14, 29, 28, 70,140, 24, - 1,150,101,241,240,225, 67, 36, 38, 39, 99,192,236,247, 96,103,103,135,171, 17, 17,120,240,224, 1,150, 47, 95, 14,154,166,113, -234,212,169,148,218, 52, 69, 34,145,177,105,211,166,146, 81,163, 70,129, 97, 24,196,199,199, 35, 53, 53, 21,243,231,207,135,173, -173, 45,194,195,195,203, 53,179,178,178, 32, 18,137,140, 85, 68,183,254,142,123,233, 69,231, 25,147, 85,179,209, 2, 88,176, 52, -242,131, 86, 96,243, 53, 24,141, 52,252,162, 51,241, 36,250,175,136,212,118,225,205,136,179, 17,247, 98, 30,135,255,222, 79,138, -140, 72,152,251, 38,241, 48, 27,106,107,121, 97, 33,140,133, 54,136,255, 5, 79,210, 11,139, 30,102, 67,109,246, 27, 3,199, 82, - 48, 22, 3,234, 91,184,126, 53, 4, 87,110,220,197,159,145, 49,236,245,240,216, 35, 2, 14,171,239,103,227, 97, 29,222, 66, 96, - 53,124, 35,222,140,124,228,217,209,167,129, 39, 88, 6,132,163, 97, 59,225, 16,166, 69,119,243,236,232,109,231, 89, 18,201,162, - 97,255,246,111,192,122,121,141,122,183,146,233, 93,210,211, 23,199, 22,230,101,119,233,223,187,171,165,109,139,161,200,122, 20, -139,135,119, 67,181,225,247,226,174,223, 74,166,119,213,231,234,186,187,187,247,234,223,219, 23, 19,102, 45,133,177, 56, 31,241, - 87,126, 64, 81, 78, 26,174,133, 89, 33,166,160,160, 43, 0,147, 35, 90, 97, 73,140, 63,146,114,209,189,145, 56,201, 26,122,151, -169, 1, 35, 32,163,116,224,244, 5,160,138,179, 16,151,106,200, 31,187, 35,153, 5, 0,133,140, 18, 89,146,124, 27,147, 34,143, - 94,142,205, 21, 66, 26,251,131,162,192,113, 37,195, 55,113, 28,182,239,255, 45,110,246,234, 41,237,209,210,211,190,237,157,212, - 12, 10,102,132,252, 41,130,158,127, 30,249,204, 79,247,235,167, 0,103, 68,232, 60, 7,191,158,155,115,122,162,142,195,237,220, - 83, 33, 21,192,108,136,138,119,206,219,124,225,211, 14, 65,209, 61, 22,188, 61,210, 6,228,185,180,208,141,141, 78, 99,123,117, - 94,155,120,145, 35,149,203,115, 75, 34, 91, 45,136,170,128,220,185, 26,167,231,123,133,231,225,225, 1, 0, 20, 21, 21,205,154, - 54,109,218, 78,177, 88,172, 4, 64,113, 28, 7,142,227, 68, 95,127,253,181,152,101, 89,129, 64, 32, 96,133, 66, 33,115,254,252, -121,154,101,217, 76,157, 78, 55,171, 54, 77,134, 97,226,230,204,153,211,180,182, 22,138,135, 15, 31, 46, 51, 89,113,252,149, 48, -201,100, 85,156,151, 71,185, 68, 53, 4,105, 63,235, 62,101,197, 10, 0, 20, 8, 86, 70,103,226,201,211,171, 68,230, 64,213, 82, -104,156,239,223,177,247,138,178,109,204, 77,153,142,101,199,117,108,237,115, 24, 0,244,132,157, 82,151,163, 43,208,107, 95,107, -215,177,235, 17,142, 16, 17, 67,200, 30, 1,135, 19, 58, 6,247, 77,105,105, 87, 29,170,140,188,240,161,173,108, 9, 80, 82,100, - 88, 94, 92, 88,218,141, 3, 33,132,148, 23, 23,126, 35, 71, 86,190,190,214,126,160,126,127, 98, 24,104, 96,254,156,121,233,247, - 59,179, 88,150,184, 8,133, 84,154,214,192,236,172,175,201, 2,128,212,212,212,144,224,160,212, 75, 17,109, 27, 12,114, 82,148, - 70,185,138,129,172, 98, 92, 74,205, 44, 10,169,139,102,174,134, 30,185,108,211,233, 51, 82,177, 80, 4, 66, 74, 58, 20, 37, 4, - 58, 35,155, 19,150,196,248, 3, 64,107, 7,184, 45, 58,197, 28, 22, 10,169,196,218,244,110, 62, 80,111,156,176, 54,120, 97, 84, - 66,238,158,132, 60,220, 3,128,132, 60,220, 59, 26,250,228,211,184,180,194,133,247, 18,115,191,129,153,245, 42, 8,133,107, 29, - 39,172,120,102, 89,125,207,103,140, 26,119, 1,140, 6, 82, 6, 78, 88,240,221, 2,138,194,243, 26,126, 34, 86,107, 36, 94, 79, - 47, 44,139,108,241,121, 21, 15,207,127,131,178,168,150, 64, 32, 88,245, 28, 53,207, 83, 20, 53, 12,192, 35, 51, 54,187, 89, 84, - 84,212,250, 57, 31, 94, 54,195, 48,217,166,172,248, 47, 84,136,127, 81,217,245,111,237,120, 0,175,249,207,107, 54,107,214,140, -152, 97, 88,248,243,201,107,242,154,188,230,255,149, 38, 33, 68, 88,159,169, 26, 77,170, 62, 19,127,141, 94,120,102, 86,247,157, -175,233,246, 18,242,232,209, 35,138, 63, 11, 60, 60, 60, 60, 85, 67, 81, 20,251, 55,104,242,189,227,241,148, 25,172, 74,209, 45, - 1,127, 78,120,120,120,120,120,120,120,120,158,139,201,170, 56, 47, 49,225,168, 62,252,103, 78,107,130,186,132, 16,131,121, 77, - 94,147,215,228, 53,121, 77, 94,147,215,252,191,211,172, 77,155,111,205,248, 55, 27, 48, 94,147,215,228, 53,121, 77, 94,147,215, -228, 53,255,255, 52, 95,100,170,173,163,197, 23, 29,242,240,240,240,240,240,240,240,252, 77,240,149,225,121,120,120,120,120,120, -120,120,234, 71,173,131, 74,243,240,240,240,240,240,240,240,240,212,141,154, 7,149,230,225,225,225,225,225,225,225,225,169, 51, -230, 15, 42,205,195,195,195,195,195,195,195,195, 99, 18,187,248, 83,192,195,195,195,195,195,195,195,243,207, 80,185,213, 97, 96, - 96, 32,169, 56,231,225,225,225,225,225,225,225,249, 39,121, 89,189, 8, 95,116,200,195,195,195,195,195,195,195, 83, 63,102,242, - 70,139,135,135,135,135,135,135,135,231,239,161,218, 58, 90,101, 29,150,246, 41, 13,213,245,225,207, 21, 15, 15, 15, 15, 15, 15, -207,191,192,203,237, 69,248,250, 89, 60, 60, 60, 60, 60, 60, 60,188, 23,225,225,225,225,225,225,225,225,225,249, 47,193,143,117, -200,195,195,195,195,195,195,195,243, 15, 27,174,191,221,104,241, 35,155,243,154,188, 38,175,201,107,242,154,188, 38,175,249,255, -100,178, 42,153, 45,190,213, 33, 15, 15, 15, 15, 15, 15, 15, 79,253,168,181,213, 33, 15, 15, 15, 15, 15, 15, 15, 15, 79,221,152, - 9, 32,160,244,115, 0, 42, 68,181,248,136, 22, 15, 15, 15, 15, 15, 15, 15, 79,253,216, 5,192,181,212, 96,157, 3,160,230,141, - 22, 15, 15, 15, 15, 15, 15, 15,207,243,161, 98,189,172,225, 21,204, 23,111,180,120,120,120,120,120,120,120,120,234, 73,181,117, -180, 40, 84,223,114, 32,216,140, 29,212,165,245, 65, 48,175,201,107,242,154,188, 38,175,201,107,242,154,255,119,154,181,105, 7, -227,197, 99,166, 57,230,235,121,194, 55,125,229, 53,121, 77, 94,147,215,228, 53,121, 77, 94,243,255,150,231,222,234,176, 61, 96, -193,159,214,151,146, 6,165, 19, 15, 15, 15, 15, 15, 15, 79,205,252, 61,173, 14, 91, 0,111, 79,110,165,220, 65,223,203,180,185, - 7, 20,215,180,174, 82,169,220,169, 80, 40, 38, 23, 23, 23,107, 40,138,226,202,150, 19, 66, 0,160,226, 88, 71,241,153,153,153, - 61,107,219,183, 84, 42,221,212,160, 65,131,183,139,138,138,138, 41,138, 34, 20, 69,129,162, 40, 0,120,102,206,178,108, 74,118, -118,118,135, 23,250, 18, 18, 34,116,106,208,224, 15,177, 80,232,110,238,166, 44,199, 61,201, 72, 79,239,106,198, 38,107, 40, 10, -139, 75,118,139,175, 0, 44,125,217,254, 17, 4, 16,154,178, 94, 43,192, 58, 22,152,192, 10, 4,239,137,129,173,122,142,219, 1, - 0, 20,192,214,117,223,250,155,104, 74, 17,180,165, 40,216, 18,130,124, 66,225,174,172, 51,226,254,165, 83, 49, 70, 44, 22,143, -180,177,177,177,202,206,206, 14, 1,112, 24,192, 68, 71, 71,199,222, 5, 5, 5, 69, 52, 77,159, 6,240,115, 93,132,123,182,197, - 71, 82,137,120,186,206, 72,175,251,253, 46,126,232,221, 30,142, 12,135,181,114,137,168,167,222,192,124, 21, 26,129, 61,102, 74, - 82,165, 83, 89,158, 97,246, 24,105,199, 76,188,238, 0,112,202,222,222, 71,166,180,249, 85, 44, 21, 62,201, 75, 47,154, 60, 46, - 35, 35,121,124, 61,174,251,127, 17, 39, 39,167, 55, 5, 2,193, 23,132, 16,176, 44,251,113, 78, 78,206,222,231, 36,253, 49, 0, -187,210,207,121, 0,190,168,167, 94, 34, 0,207,210,207, 73, 0,188,248,231,122,157,217,126,242,228,201,217,125,251,246,197,198, -141, 27,177,125,251,246,132,204,204,204,181, 0,246, 1, 48,252, 11, 58, 60,213,209, 18, 24,246,245,224,206, 44,253,227,106,174, -194,226, 1,213,252,153,191,159, 58,117,170,145, 16, 66, 30, 60,120, 64, 12, 6, 3,161,105,154, 48, 12, 67, 24,134, 33, 52, 77, -151, 79,238,238,238,169, 79,109,254,140,166, 64, 32,216, 60,118,236,216, 66, 66, 8,185,117,235, 22,209,106,181, 68,175,215, 19, -131,193, 64,116, 58, 29,209,106,181,149,166, 6, 13, 26,164,215,164,105, 99, 99,115,203,222,222, 62,221,222,222, 62,221,193,193, - 33,221,193,193, 33,221,209,209,177,124,114,114,114, 42,159,148, 74,101,186, 82,169, 76,119,112,112,184, 85, 91, 58, 75, 25, 12, - 32,196,132,105,112, 21,219, 14,168,104,180, 92, 93, 93,211, 73, 29,104,216,176, 97,178, 9,233, 44,163, 1, 69,129, 45,219,150, -162,192,201,100, 50,207,138,191,227,217, 72, 87,173, 33,101, 55, 55,183,177,174,174,174,193,174,174,174, 65,110,110,110, 99, 77, -184,197, 42,105, 90, 91, 91,223,114,114,114, 74,119,113,113,201, 40,155, 92, 93, 93, 43, 77,110,110,110,229, 83,131, 6, 13,210, -237,237,237,171,189, 70, 4, 16, 86, 55, 93, 1, 68, 50,160,159, 72, 40, 12,108,208,160, 65, 65,100,100, 36, 75, 8, 33, 2,129, - 32,181,108, 29,115,142,253,105,147, 85, 28,138,143,179, 46,203,110, 22, 61, 89,155,159,117, 89,118,179, 56, 20, 31,235,111,162, -105, 93, 53, 77,164, 42,205, 55,222,120,227,141,187,233,233,233,169,121,121,121,234, 29, 59,118,196,202,229,242,208, 29, 59,118, -196,230,229,229,169,211,211,211, 83,223,120,227,141,187, 0,230,152,161, 9, 0,232,218, 22, 93,222, 26,227, 90,124,247,212,148, -226,126, 29, 69,119,186,183, 66,192,192,174,146,212, 45, 75, 90, 20, 95,221,221,163,184,239, 43,130,123,102,106, 82, 34,145,168, -155,167,167,231,116,165, 82, 57,181,116,154, 82, 54,185,184,184, 76,113,113,113,153, 98,111,111, 63,190, 38,205, 99,128,208,148, -201, 67, 46,239, 54,190,137,103,113,226,170,149, 36,242,131,247,200,116,111,143,130,113,206,206,141,254,133,107,244,183,106, 58, - 59, 59,171,104,154, 38, 70,163,145, 56, 58, 58,170,158, 99, 58,191, 33,132,124, 67, 8,249, 6,192, 55,207, 65,179, 60, 63, 51, -195, 96,215,164, 41, 23, 9, 4, 11, 20, 82,105,144, 76, 36,202,144,137, 68, 25, 10,169, 52, 72, 36, 16, 44, 4, 32,255, 47, 93, -163,191, 65,211, 74,169, 84, 62,222,180,105, 19, 41, 46, 46, 38,197,197,197,100,211,166, 77, 68,169, 84, 62, 6, 96,101,134,102, - 93,117, 94,166, 8,214,211,211,243,139,104,181, 0, 58,244,107,219,236,196,188, 55, 39,128, 59,190,137,170,229,141,233,251,174, - 29, 58, 76,223,183,111, 31, 0, 96,242,200,145, 24,212,169, 19,172,173, 44, 33,149,150, 36,135, 34, 20, 36, 98, 9, 70,205,255, -208,148,221,127, 53,106,212,168, 73,199,143, 31,183, 2,128,237,219,183, 99,204,152, 49,112,112,112,128, 66,161,128, 68, 34,129, - 88, 44,174, 52,175, 13,161, 80,216, 48, 53, 53,213, 89, 46,151,151, 71,217, 56,142,171, 52, 17, 66,202,162,111, 96, 24, 6,205, -155, 55, 55,245,116, 45,201,207,207,239,165,209,104,202, 53,170,154,154, 52,105, 2, 0, 23, 77, 17,252,226,243,213,224, 24, 13, - 68, 34,128, 97, 0,189, 81, 0,142, 84,105,110, 48,103,206,156,242,116,215,133,225,195, 3, 40,138,162,142,135,135,135,159,200, -200,200,104,204,113,236,140, 58, 70,186,222,125,248,240,161, 21, 0,248,248,248,204, 1,112,194,156,116,136, 68,162,134, 17, 17, - 17,206, 50,153,172,218,200,101,133, 8, 38,140, 70, 35,218,183,111,207,152,179,143, 6,128,103,142, 64, 48,163,221, 43,175,204, - 92, 49,106,148,252,143, 63,254,144, 11, 4, 2, 48, 12,131,175,191,254,154, 33,132,216,181, 4,108,162,129,130, 26,100,150, 1, -120,179,244, 97,176, 7,192,215,149,220, 2, 65, 91, 45, 45, 11,136, 47, 26,213,169,115,163,143, 16, 29, 21,217,201,219,234, 20, -172, 69,250, 56,224,159,141,106,217,216,216,140,220,184,113,163,114,207,158, 61, 5, 15, 30, 60, 48,238,216,177, 67, 57,107,214, - 44,107,163,209,136,217,179,103,103,250,250,250, 74, 54,110,220,168,252,249,231,159,251,105, 52,154,109,102, 93, 47, 10,171, 39, -142, 28, 4, 29, 45, 0, 77, 51, 74, 87,165,245,129,121,111,244, 17, 19, 98,192,254,211,225,160, 25,238, 7, 51, 35, 89, 93,199, -141, 27,231,125,232,208, 33, 81, 76, 76,140,200,207,207, 15, 28,199,129,101, 89,208, 52, 13, 0,224, 56, 14,205,154, 53,171,247, -121,153, 14,248, 56, 53,112, 8,234, 58,108,168,133,171, 92, 6,135,220, 76,188, 37, 17, 89,239, 85,232, 15, 2,232,246, 82, 69, -118, 9,129, 72, 36, 66,114,114, 50,156,157,157, 45, 56,142, 83, 3, 88,153,155,155,187, 11, 47, 47,157,164, 34,209,137,253, 63, -108,118,233,220,173,155,176,129,171, 51, 98, 31, 38, 65, 68,177, 3, 34,254, 12,239, 51,253,157, 5,243, 12, 12, 51, 22,192, 31, - 47,219,129,187,116,155, 51,154, 18, 8,183, 83,132,195,103, 91,206, 20,174,249,106,147, 98,246,140, 55,132,243,231,207,135,135, -135, 71,227,209,163, 71,127, 5,224,157, 90,117, 58,207, 25, 13,161, 96, 59, 8,193,138,239,206, 20,126,249,213, 38,197, 59,117, -208,121,193,169,246, 63, 82,111,163,213, 2,240,246,247,112,190,180,102,241, 59, 98,242,203,143,130,226,236,140,106,215, 85, 42, -149, 59,135, 12, 25, 50,121,239,222,191,162,209, 93, 91,181,194,232,126, 61,224,236,104, 11,133,165,180,228,113,196, 81,184,251, -224,137, 73,134,192,195,195, 99,246,137, 19, 39,172, 42,154, 9,137, 68, 82, 62, 85, 52, 89,101, 83,217, 3,184, 38,228,114, 57, -130,131,131, 33, 18,137, 32, 20, 10, 33, 18,137,202,167,138,223,133, 66, 33, 26, 52, 48,171,234,210, 90, 91, 91,219, 54,133,133, -133, 54,121,121,121,240,244,244, 44, 0, 16, 81,225,247, 54,153,153,153, 54,230, 8,114,140, 6,243,223,106, 1,177,225, 6, 12, -226, 78,208,138,186,227,250,159,247, 17,120, 49, 4,169,170, 52,244,232,210, 14, 83, 95, 31,135,160,160, 32,176,172,217, 37, 29, -233,132,224,171, 17, 35, 2, 62, 2, 40,106,192,128, 1,121,115,231,206, 21,196,196,196, 76, 26, 61,122, 84,171,135, 15, 31,149, - 70, 21,169,197,132, 96, 51,128,116, 19,117,165, 0,112,245,234, 85, 0,144,213,229,222,147,201,100, 8, 11, 11, 67, 89, 49,177, - 64, 32,128, 64, 32,128, 80, 40,196,217, 71, 78,208, 24, 4, 40, 78,191,135,247, 2, 60,209,164, 73, 19, 8, 4,181, 87, 73,236, - 3,200,175, 3,163, 41,177,120,190,171,155, 91,227,222,222,222,138,224,224, 96, 33, 0,120,121,121, 17,181, 90,157,119,250,244, -233, 66, 17,176,221,139,144,125, 53,153, 44, 15, 15,143,238,169,169,169, 95,148,157,115,138,162,190,106,212,168,209,242,242,235, -198,113, 88,249,131, 70, 60,111,222, 7,146,206,125, 62, 1, 0,116, 30,113, 8, 5,241,107, 90, 80, 57,203,108,255,233, 92,162, -160,160,224, 72,179,102,205,132,217,217,217,215, 1, 36,210, 52,189,228,192,129, 3,206,111,189,245, 86,198,193,131, 7,215, 2, -112, 91,183,110, 93, 31,141, 70,115,212, 28,221, 30,109, 48,236,149, 54,173,186,120,122,120, 32,228,250, 31,144, 72,197,118,115, -222, 12,128,149,149, 8,223,236, 57,199, 37,166,228,204, 13,141,192, 62, 51, 76, 86,167,113,227,198, 53, 62,116,232,144, 20, 0, - 34, 34, 34,144,150,150, 6,165, 82, 9, 11, 11, 11,136,197, 98, 8,133, 66,136,197,226,231, 98,178,108, 61, 28,111,158, 58,117, -218,194,193,193, 14, 91, 62,156,135,169, 25,233,176,179,182, 2, 93,164,105,252,146, 61, 40,124,122,246,236, 41,103, 89, 22, 26, -141, 6, 87,174, 92,177,181,176,176,176,109,216,176,225, 10,152,209,122, 74, 46,151,167,235,116, 58,231,210,207, 25, 58,157,174, - 1,128, 2,153, 76, 86,150, 79, 23,149,206, 77, 45, 78, 76,196,179,197,132, 73, 20, 69, 85, 92, 86, 87, 58,118,234,216, 38,248, -231,227, 63, 89,229, 23,166,193,206, 62, 3, 2,228, 99,215,174,173,176,176,176,193,138, 21,203, 68, 79, 6,244,115, 31, 60,108, -108,112,212,253,216, 1, 47,157,217, 34,212,174, 1, 35, 38, 59, 88, 40,172, 75,159, 37, 52,246,238,158, 7,129, 64,128,229,203, -151,195,223,223,127,102, 84, 84,212, 39, 0,114,106,150,193,174,214,189, 94,115,144,202, 75, 46, 49,199,210,216,113,120, 97,137, -206,210, 89,152, 56,162,201,204, 69,227, 30, 95,240,247, 70, 97,233,139,185, 86, 44, 64, 18,213, 25,229,134, 33, 48, 48,176,119, - 64, 64, 64, 72,117,223, 95, 0, 92,241, 87,255, 89,149,204,151, 40, 48, 48,144, 4, 4, 4, 80, 21, 14,174,210,247,154,104, 11, - 56,217,219, 42,130,183,175,156,103, 37,186,113, 78,168, 77,122, 4,149,174,210,131,188, 82, 19, 77,133, 66, 49,121,239,222,189, -149, 66, 74,158, 13,156, 33,145,136, 33,150, 80,176,235, 89,210,123,125,222,181, 64, 80, 84,181, 38,171,146,166, 70,163,209,221, -185,115,199,106,207,158, 61,112,118,118, 70,227,198,141,161, 80, 40, 32,151,203, 43,153,171,138,134,171, 10,163, 85, 73,179,236, -119,145, 72, 4,129, 64,128,160,160, 32, 48, 12,131,113,227,198, 61, 99,178, 68, 34, 81,117,198,173,186,230,169, 23, 1, 68, 16, - 66,122,149, 62,128, 35, 0,244,174,240,251, 96,165, 82,185, 4,192, 90, 83, 53,133, 66, 2,161,238, 58,184,134,155, 32, 74,158, - 7,131,184, 45, 46,135,134, 99,239,206,141, 0,128,198,126, 29, 49,126,116, 64,121, 52,206,196,116,150,227,238,238,126, 56, 51, - 51,107,104,191,126,253,144,155,155, 75,175, 92,185, 18,109,218,180,129,143,143,143, 73,215,168,154, 55,231,244,136,136, 8, 15, -173, 86, 11, 66,136, 41,230,236, 25, 77,138,162,112,224,192, 1,232,116,186,103, 86,182,239,253, 37, 22,142,241,194,180,247,246, -225,171, 7, 71,177,109,219,182, 26,143, 93, 1,180,209,217, 54,219, 44, 21, 50,109,214, 46,123, 87, 54,117,234, 84,225,180,105, -211,144,148,148,132,183,222,122, 75, 23, 20, 20,100, 72, 83,171, 79, 75, 57,110,139,177,178, 49,174, 86, 83, 38,147,237,191,120, -241, 34,142, 30, 45,241, 37,177,177,177,104,222,188,185,101, 37,147,156,115, 12,133,137, 91,112,243,108, 12, 58,143, 56,132,155, -103, 95, 7,155,119, 78,220,161, 57,242,205, 57,159,117,160, 42,205,163,217,217,217,229, 38,234,224,193,131, 22, 7, 15, 30, 28, - 5,224, 12,128,163, 0,144,147,147,179,193, 76, 77,128,194,180,215,198,140,130, 72, 98,141,152, 71, 41,232,221,181, 61, 26, 56, - 59, 35,226,126, 28, 18, 83,115,210, 41, 10,111, 14,238, 38, 93,171,213, 26, 62,185,118, 23,223,215,162, 73, 53,108,216,208,231, -216,177, 99,146, 10, 17,232,242,255,184, 80, 40, 44,255, 94,102,188,235,114,127,150,153, 44,235,134, 86, 55, 87,111,237,110,121, - 51,242, 32,154,123, 13,131,253,176, 0,124,127,233, 18, 30, 70, 69,235, 12,197, 76,255,127,225, 26,253, 93,154, 62, 99,198,140, -185,254,211, 79, 63,217, 37, 39, 39,227,234,213,171,104,220,184, 49,138,139,139, 77,121,225,173,164,169,211,233,156,203,182,161, - 40,202,185, 44,240,110, 48, 24,202, 46, 70,217, 31,209,174,194,122,118, 53,104,122, 86, 88,175,204, 92,121, 61,135, 99,151,202, - 37,146, 99,167,126, 62,108, 21, 29,115, 21,237,218,118,129,149,109, 75,112,108, 26,178,115,138,144,251, 72,133,207, 63,255, 10, - 43, 86,126,140, 51, 39,143, 91,249,182,104,123,194,192, 48,205, 0,232, 94,154,235, 78,145,153,193,103, 15,110,167, 8, 7,109, -122,140, 76,172,121,172,152,252,250, 88,225,132, 9, 19,112,230,204, 25, 68, 69, 69,109,175,193,100, 5, 87,136,204,207,188,119, -245,232,118, 16, 2,109, 70,140, 76,162,125,172,120, 99,210,120,225,212,137,131,112,227,183,205, 24,212,238,241, 61, 55,103,140, -206, 45,181,216, 34, 33,178,101,114,252, 78,110,226, 70, 5,179,117, 5, 0, 85,193, 96, 93,193, 95,117, 48, 95, 4,134,151, 26, -171,153, 79,191,152,136,234, 98,176, 0,160, 57, 96, 69, 73, 37, 55,247,174,120,215, 77,145, 20, 37,210,223, 11,131, 74,207,145, - 29, 9, 12,215, 30,176,184, 13,104,159,222,166,184,184, 88, 19, 23, 23,103,241,230,232,209,232,214,170, 21, 92, 29, 29,209,172, - 97, 67, 88,200,164,144, 74,196,149, 94, 89, 77, 46, 67,160, 40,226,235,235,139, 17, 35, 70, 64, 44, 22, 67,161, 80,192,202,202, - 10, 82,169,180,202,104,150,169,111,185,132, 16, 8,133, 66,220,187,119, 15,137,137,137,176,179,179,195,239,191,255,142,254,253, -251, 63, 19,213,170,104,206,204, 9,209, 87,241,224, 47, 51, 98, 23,205,209, 98, 89, 10, 69,164, 45,228, 9,115, 81, 76,181,135, - 94,207, 64,175,215,227,251, 80, 35,254,136,211,192,104, 52, 64,175,215,215,180,207,234, 16,184,185,185, 77,110,214,172,217,156, -215, 95,127,157,150, 74,165,208,104, 52, 40, 46, 46, 70, 84, 84, 20, 61,116,232,176,188, 17, 35, 2,108,207,157, 59, 71, 74,139, - 14,211,205,208,206,118,119,119,247, 40, 45,158,205,174,203, 93, 77, 81, 84,185,137,121,154, 55, 55, 68, 67, 36, 44,185, 38,219, -183,111, 7,203,178, 32,132, 84,123,145,116, 20,245,235,202, 47,215,219,174,219,244, 3,108, 29, 26, 32, 36, 36,132,189,112,225, - 66, 33, 5,196, 62,140,138,218,240, 42,112,254, 24, 96, 52, 39,125,185,185,185, 22,141, 27, 55, 70,195,134, 13,193,113, 28,104, -154, 46,143,190,100,103,103, 67,171,213,194,193, 50, 15, 77, 29, 27,130, 41,188, 2,245,189,207,224,106, 21,131,125, 23, 13,244, - 43, 62,184,251, 31,200, 56,126, 44,157,234,249,214, 12,119,103, 23, 15, 8, 8, 13, 85, 70, 54, 70, 13, 31, 4,161,196, 10, 79, -146,179,208,182,165,183,235,164, 87,187,187, 10, 41, 6,139,215, 30,154, 3,112,223,215, 38, 87, 84, 84,196,198,196,196, 32, 34, -162,196,239,218,216,216,192,210,210,178,210,127, 92, 32, 16,212, 43,162, 85,102,178,190,220,222,223, 82, 32,214,160,128, 13,198, -158, 3,225,104,235, 27,128, 29, 55,255,212,177,233, 57, 3,190,209,233, 98, 15,191,192,193, 12, 23, 23,151, 89, 28,199,173, 32, -132,228,245,232,209,163,193,161, 67,135,236, 83, 83, 83, 17, 30, 30,142,229,203,151,103,178, 44,203, 16, 66, 40, 66,200,103,207, - 97,119, 92, 5,131,245, 60, 17, 43,228,120,207,201,134, 26, 41, 18,216, 52,102, 10,138,158,100, 25,200,233, 98,134,251, 14, 0, - 93, 99,230, 38, 16,188,125,252,200,118, 55, 39, 37,135, 62,202,126, 80,167, 27,241,229,135,111, 32, 59,187, 16,223,239, 94, 3, - 64, 10, 35, 35, 68,175, 62, 99,225,236,236,142,153, 51,102,186,108,223,185,227, 93,134,227,190,193, 75, 66,218,245,109, 39, 1, - 4, 43,149,202,168,119,103,206, 84, 54,110, 60, 5,114,185, 28,135, 15, 31,198,161, 45, 91,216, 77,192,120, 25,112,121, 54,112, -178, 70,157,155,127,233,204,155, 61, 91,217,162,197,108,200,100, 50,252,118,225, 71,232,210, 14, 20, 14,239, 6, 99,177, 14,195, - 27,141, 32, 14, 9,103,169, 28,177, 24,143, 0, 64, 44,135, 26,192,211,197, 96, 47,154,193, 42,227, 28,254,170,151, 53,179, 82, - 68,171,206,121,167, 88, 26,185,251,131,137, 94, 13,160,167, 12,161,103,145,170,231,216,117, 15,141,194,219,249,100,225,253, 42, - 76, 86,233,141,205,121,122,122,162, 95,135, 14, 24,221,179, 39, 68, 34, 17,228, 82, 9,172,229, 22, 32,108, 73, 36,171,172,232, -176,134,103, 34,170,138, 62, 57, 58, 58, 66, 34,145,148, 27, 44, 51,162, 89, 85,106,114, 28, 7,145, 72,132,136,136, 8,244,232, -209, 3, 30, 30, 30, 56,122,244, 40, 6, 15, 30,252, 76, 81,162,185, 38,171,204,104, 61, 85,140, 55, 24, 64, 89, 36,203, 44,163, -165, 51, 80,200, 50,180, 5, 69,181, 2,195, 0, 44, 1,244, 58, 29, 8, 1, 8, 1,104,163, 1, 58,157,174,124,159,166, 20,201, -186,184,184,120, 90, 88, 88,172,250,232,163,197, 45,218,182,109,135,204,204, 76,112, 28, 7, 75, 75, 75, 20, 23, 23,195,198,198, - 6,221,186,117,123,178,106,213, 42, 53, 33,152,105,166,201,170, 55,101,231,252,210,165, 75,149,138, 13,203, 38,141, 58, 5,211, -222, 63, 8,169,168,164,104,169,172, 14, 79, 77,249,110,223, 94,221,113,253,118, 44,243,246,226,205,122,113,118,248, 90, 23,142, -219,155, 82,143,227, 34,132, 32, 43, 43, 11,233,233,233, 24, 57,106, 20, 14,253,244, 19, 18, 18, 18,208,178,101, 75,244,237,219, - 23,206,206,206, 72, 72, 72,192, 31,215,244,208,231,230, 32,199, 16, 14,133,117,103,156, 10,137,211, 47,223,110,140,251, 23, 51, -140,145, 0,222,176,177,177,105, 82, 92, 92,172,102, 24,230, 24,128, 99, 0,198,139, 68,162,241, 10,133,194,181,160,160,224, 49, - 74, 90, 19,157,174, 77,204, 66, 46,119,148,201,109,192, 49,122,136, 68, 34,120,120, 52, 6, 97, 13,200, 45,208,226,205, 9, 35, -112, 59,226, 62, 46, 92,190,193,208, 52,247,173, 41,167, 85, 40, 20, 18, 31, 31, 31,100,100,100, 64, 44, 22,195,194,194, 2, 86, - 86, 86, 88,186,116, 41,182,108,217, 82,110,178,234,106,180,166, 3, 62, 54,158, 86, 55,190,216, 90, 98,178,210, 84,106,164,167, -136,161,116,108,128,111,183,108,210,228, 38,164,117,254, 1,136,125,209, 31,178, 28,199,125,150,154,154,234, 44, 18,137, 92, 24, -134, 65,114,114, 50,110,221,186,133,185,115,231,166,103,103,103,247, 65, 29,143, 81, 46,151,103,148, 69,178, 74,139, 14,171, 43, - 78,204,171, 16,201,202,171, 65,178,186, 98, 66,239,198, 13,173,131,118,111,156,239,217,177,115, 55,129, 66,100,147, 91,244, 40, -173, 71,232,213,144,110,115, 55,126,255,110, 98,110,209, 32, 0,241,213,137,202,196,226,161, 93,186,119, 23,129,164, 67, 36,237, -129,175,214, 77, 64,102, 86, 1,114,115, 10, 33,145, 88,194, 64, 11,193,114, 20,186,245,232,137, 31,247, 29,129,255,140,183,132, - 82,177,120, 32, 99, 48,188, 52, 70,171,148, 53,223,125,247,157,167,175,175, 47,246,238,221,139,203,251,247, 99,106,126, 62, 66, - 4, 2, 33, 45, 22, 59,157,167,233, 93,168,197,104, 85,212,241,247,247,199, 15, 63,252,128, 3, 7, 14, 36, 77,238,159,113, 98, -254,100, 56, 27,141, 24, 18,254, 0, 14,141, 70, 0,225, 15,224,240,138, 47,154, 49, 34, 60,162,168,202,221, 65, 5, 6, 6,246, -174, 56,127,193, 80,163,154, 34,118, 17,128, 62,129,129,129,164,226,188,214,140, 83,217,124,246,154, 65, 77,188, 90, 53,245,164, -232,163,155,145,172, 97, 12,159, 60, 48, 74, 31, 22,145,249,247,129, 77, 53,188, 65, 16,161, 80, 8,107, 11, 11, 40,237,236, 74, -194,252, 2, 1,192, 1, 28, 13, 80,108,137, 1, 32, 28, 5,194,154,149, 97, 64, 42,149, 86, 89,241,221,220,186, 89, 21, 53, 11, - 11, 11,241,228,201, 19,204,156, 57, 19, 10,133,162,196,185,167,165,193,203,203, 11, 34,145, 8,169,169,169,248,237,183,223,208, -164, 73, 19,200,100, 50,179,220, 86,133,232, 82, 27,148,180, 50,108,163, 86,171,109, 92, 93, 93, 97,118, 68,139, 35, 40,214, 83, - 48, 24, 88, 60,124,248, 16, 42,149, 10, 79, 30, 63, 66, 71, 77, 1, 8,132, 32,132,152, 21,209,114,119,119,111,229,237,237,189, - 99,237,218,181,146,134, 13, 27,130, 16, 2,123,123, 59, 20, 23, 23, 35, 43, 43, 27, 45, 91,182,132,135,135, 7,214,174, 93, 11, - 0,135,254,105,147,245,212, 61, 85,110,180, 42, 26,174,247, 95,245, 68, 78,142, 21,132, 66, 65,185,113,174,165,142,150, 4, 0, -250, 12, 26, 35, 10,186,112,222,146, 1, 86,165, 9,133,171, 68,181, 95, 71,154,229, 56, 69,117,191, 39, 39, 39, 67, 44, 22,227, -248,177, 99,200, 73, 79, 71,219,182,109,209,169, 83, 39, 60,122,244, 8,183,111,223,134,163,163, 35,148, 13,187, 34,228,177, 17, -209, 42, 45,108,109,109, 17,151, 34,248, 55,187, 12,152, 49, 96,192,128,229, 27, 54,108,112,118,113,113, 17,103,102,102,250,110, -221,186,181,237,214,173, 91,231,189,251,238,187, 13,222,125,247, 93,123,165, 82, 41, 74, 75, 75,243,249,240,195, 15, 95, 9, 14, - 14,110, 2, 96,125, 77,130,150,150,214, 14, 66,137, 37, 40, 74, 4, 59, 91,123,136,164,150,224, 24, 17, 88, 14,176,177, 85,226, -250,237,227,248, 61,178,112, 86, 70, 54,142,153, 20, 31, 43,189,238,142,142,142,207, 68,170,231,206,157,139,221,187,119,151, 23, - 35,214,213,100,125,185,181,191, 21, 85,106,178,210,146, 69,160,244, 77,112,246,100, 88, 94,110, 66, 90,143,151,193,100,149,229, -113,132, 16, 60,126,252, 24,197,197,197,184,118,237, 26, 62,251,236,179,204,167, 77,150,179,179,243, 12, 27, 27,155,149, 69, 69, - 69, 95,165,165,165,109,174,245,197,175,196, 68,149,125, 46,155, 87, 89,156,104, 98, 82,189,170,138,100,121,184,202, 47,222,190, -118,208,203,150,220,165,144, 56, 19,120, 88, 16,101,125,211,185,215,176,142,195, 5,237,183,173,110,212,105,214,210,139,201, 5, - 58,223,234, 34, 91, 28,203,182,183,180,178, 6,144,129,240, 91, 87,202, 77, 86,118, 78, 62,244, 70, 33,244, 6, 10, 58,163, 0, -253, 6, 12,193,150, 29, 7,144,154,145, 3,150,101, 91,191,100, 38,203,161, 85,171, 86,179,199,143, 31,143, 85,171, 86, 33,120, -195, 6,195, 59, 20, 85, 32, 2,200, 57,150, 5, 71, 8, 37, 48,173, 18,123, 37,157,111,190,249,230, 36,128,137,107,231,162,107, -110, 17,222,116, 27, 65, 28, 26,141, 40, 89,113,220, 71, 4, 0, 28, 50,131, 43, 63, 50, 3, 2, 2,168,178,146, 53,115, 75,216, -254,235,136, 2, 2, 2, 66, 2, 3, 3, 81,113, 94,211, 6,214, 13,124,135, 45, 90, 48,103, 93,199,193, 61, 41,245,130,129,200, - 41,208, 49,203,162,141,210, 20,109,205, 38,171, 34,139,182,110,197,237,216,146,255,113, 67,103,103, 44,158, 52, 9,132, 1,126, -143,138,198,145,224, 96, 76, 24, 48, 0,150,114,185,201,145, 13,142,227,170,140, 98, 85,140,102,153, 27,117,202,203,203,195,177, - 99,199,208,169, 83, 39, 40, 20, 10,136, 68, 34,180,105,211, 6,247,239,223,135,183,183, 55, 40,138,194,169, 83,167, 48,122,244, -104,196,199,199,163,107,215,174, 86,137,137,137,102, 27,173,232,232,104, 27, 66, 72,175,178,232, 71, 93,209,235,245,136,137,137, -193,136, 17, 35, 96,111,111, 15,119,247, 67, 8,190,120, 16,138, 86, 83, 65, 81, 48,203,104,177, 44, 59,125,248,240,225, 18,138, -162,160,213, 22, 67, 46,183,128,165,165, 21,172,173,109,224,227,227, 11,149, 74,133,193,131, 7, 27,226,226,226,182,169,213,234, -163,230,166,181, 69,139, 22,150, 9, 9, 9, 83, 27, 53,106, 36, 5, 0, 11, 11,139,150,222,222,222,107,149, 40,240, 0, 0, 32, - 0, 73, 68, 65, 84, 11,227,227,227, 11,205,141,106,149, 25, 44,138,162, 32, 20, 10,203,141,150, 72, 32,128,171,139,115,249,247, -210,250,105, 84, 13, 90, 5,169,217,122, 25, 0,120,122,122, 98,203,206, 51,130,225,195,135, 99,222,188,121,160,105, 26,219,182, -149, 52,178,123,253,245,215, 97, 52, 26,113,226, 68, 73, 35, 73,145, 72, 84, 99,216,228,214,173, 91, 8, 15, 15, 7, 77,211,200, -207,207,199, 47,191,252,130,144,171, 87,113,248,212,175, 72,120,252, 8,109,124,189,240,214, 91,211, 33, 22,139,177,111,223, 62, -244,232,209,227, 95,205, 16,196, 98,241,228,221,187,119,187,238,221,187, 55,239,212,169, 83,154, 46, 93,186,200, 54,109,218,228, -188,101,203, 22,165,193, 96,192, 7, 31,124,144,113,227,198, 13,253,168, 81,163, 44,119,237,218,229,218,180,105,211,129, 12,195, - 84,101,180, 44, 1, 76, 0, 48, 37,183,208, 32,202, 43,212,130, 99, 12,120,156,240, 4,249, 69, 6,112,172, 17, 73, 41, 42, 20, -233, 88,100,231, 20,162, 77,251, 65,223, 93,185,114,229, 99,163,209,184, 12, 64, 96,109,233,140,138,138,194,141, 27, 55,144,144, -144,128,199,143, 31, 87,118,138, 51,102,224,192,129, 3,102, 71,180,170, 54, 89, 66, 80,122,111, 4,158,186,153,151,241, 72,253, -210,152,172,210, 60,104,133,171,171,235, 10, 87, 87, 87,249,165, 75,151,108, 27, 53,106, 4,134, 97, 12, 79, 71,178,250,244,233, -243,201,238,221,187, 93,189,189,189,231, 2,216,252, 95, 72,187, 64,128, 25, 95,109,159,237,100, 45, 77, 82,225,225,250,210,190, - 4,133, 64,113, 1,112,229, 39,136,186,127,250,100,238,168,143,236,151,236, 93, 53,131, 3, 87,109, 11,217,184,248,100,108,223, -190, 5,243, 63,120, 19, 63,126,255, 21, 56, 78, 4, 61, 45,132,103,227, 46,208, 27, 57, 80, 2, 17,218,182,239,128,203, 87,174, - 65, 44, 0,142,237,221,254,146,249, 44,228,220,187,119,111,219,169, 83,167,222,155, 55,111, 30, 56,142,147,174,220,190, 93,155, -153,153,185, 6,230,245,127,245,180,206,232,237,219,183,199, 46,217,146,121,114,254,100, 8, 19,206, 82, 57,225, 15,224, 48,238, - 35,130,227,235, 40,188,226,139, 28, 69,213,143,248,171, 79,205, 95, 14,163, 85,230, 36, 43,206,171,162,125,243, 38,171,109, 29, -236,167, 11,172,221,157, 22,207,123, 71, 20,159,166,195,137, 70,147,138,126,219,255,173,101, 26, 35,251, 46, 14,186, 77,230,236, -248,200,111,191,149,127,254,250,208,161, 42,127, 83,143, 27,103,242,155, 89,117, 81, 44,115, 35, 89, 0,160, 80, 40,236, 6, 14, - 28,136,254,253,251, 99,236,216,177,229,117,178,218,181,107,135,195,135, 15, 99,204,152, 49,184,115,231, 14, 92, 93, 93,225,231, -231, 7, 63, 63, 63,156, 63,127,222,220, 76, 14, 44,203,162, 85,171, 86,101,173, 14,219,164,164,164,216,212,245, 66,234,245,122, -100,103,103,195,193,193, 1, 82,169, 20,157, 59,119,194,123,239,119,134,147,235, 15,104,213,194, 23, 26,141,166,188,249,187, 9, - 15,219, 86,205,154, 53, 67,102,102, 38, 50, 51, 51,161, 84, 42,225,230,230, 6, 23, 23, 23,172, 95,191,158,108,222,188,249,130, -209,104,220,150,149,149,101,118, 36,203,197,197,165, 39, 69, 81,159,104,181, 90,105,133, 55, 92,169, 82,169, 60,173,213,106,215, -168,213,106,147, 43,130, 82, 20, 5,163,209, 8,138,162,112,238,177, 27, 52, 6, 10, 5, 41,225,152,247,170, 87, 37,227, 37, 22, -139,107, 45, 46, 37,132,104, 38, 78,156,232,236,225,209, 16,201,113, 81, 56,126,156, 96,195,134, 13,101,173, 34, 17, 91,250, 98, - 80,246,189,111,223,190,104,220,184, 49,136, 25,125,101,112, 28,135,136,136, 8, 28, 58, 29, 2, 87,175, 22, 72,122, 24,131,219, -231,207,162,145,210, 1,254,237, 59,128,166,233,122,117,189,241, 60,160,105,122, 79,243,230,205,137,193, 96, 8, 1,176, 37, 50, - 50,242, 77,181, 90,253,193,153, 51,103,220,198,143, 31,175, 58,123,246,236, 38, 0,123, 35, 35, 35,103,127,254,249,231,253, 25, -134,169,178,181,160, 80, 40,252,241,195, 15, 63,236, 51,126,252,120, 74, 34,160, 13,151, 46,238, 19, 49, 12, 77, 45, 90,182,135, -189, 18, 26, 34, 96, 24,154, 26, 59,241, 67,238,252,111,145,130, 89,239,127,205,182,235, 50, 28,247,238,221,115, 9, 8, 8,248, -156,166,233, 26,141, 86, 89,164,170,186, 8,165, 80, 40,196,155,111,190,137,195,135, 77,175, 65,245, 22,224,109,227,101,117,227, -203,173, 3,172, 40, 81, 81, 5,147,213, 20,129,167,110,230,165, 63, 84,189, 84, 38, 11, 0,178,179,179,119, 2,216,201,113, 92, -186,165,165, 37, 10, 11, 11,171,186,255,228,145,145,145,114,169, 84,138, 65,131, 6, 57, 4, 7, 7,199, 10, 4,130,205, 42,149, -170, 90,199, 81, 85, 49, 97, 85,197,137,168, 71,171, 67,123, 37, 2, 58,247,108,111,253,192,118,149,181, 92,164,187,211, 40, 86, -110, 67, 1,200,215, 55,120,124, 61,113, 66, 1,149, 33,107,215,161,239, 43,176, 17, 89, 6,228, 49,133, 85, 26, 45,129, 80,120, - 59, 63, 55,111,104, 65,161, 1,161,191,223,195,196, 9,205,160, 55, 82,224, 56, 1,138, 52,122, 64, 40,134, 0,192,235,147,222, - 0,161, 68,200, 73, 87, 65, 40, 20, 70,130, 97,240,146,177,116,246,236,217, 67,151, 45, 91,214,100,241,226,197, 88,188,120,177, -215,238,221,187,119,126,249,229,151,139, 51, 51, 51, 91,163,150,206,199,107,208,105,116,246,240,167, 11, 78, 95,219,145, 63,188, -155,246,225, 43,190, 37,145,175, 87,124,241, 63,246,174, 59, 44,138,171,123,191, 51,179, 13,150,165,247, 46,160, 96, 80,236, 45, - 17, 99,111,177,107, 84, 44,159,189,198, 94,177,197, 18,107,212,104,108, 81, 49, 38,246, 94, 34, 22,236, 21,187, 32, 40,130, 40, -125, 89,250, 82,182,239,206,206,252,254,160,252, 64, 41, 11,154,228, 75, 62,222,231,217,103,217,246,114,231,222,153,185,239, 61, -231,220,115,114,184, 92,196,114, 40,100,179,108,217, 48,163,222,189,123,183, 47,253,252, 15,195,135, 65,240, 37,175, 13,138,209, -170,231,233,220,163, 89, 83,191, 25, 75, 22, 47, 49,141, 10,189,141,192, 31,118,176,222, 45,186, 22,236,185,247, 66, 35, 51,241, -232, 41,203,138,125, 96,168,190, 0,128, 30,157, 6,162,113,131, 86, 31,125,232,223,177, 48, 89,251,253, 91,207,144,158, 41, 54, -120,178, 45, 18, 7,229,198,100, 25,178,165,255, 67, 40,149,202,220,200,200, 72,187,148,148,148, 50,129,239, 30, 30, 30, 32, 8, - 2,143, 31, 63,198,163, 71,143, 16, 16, 16, 0, 14,135, 3, 46,151,139, 59,119,238, 84,203, 26, 83,202,186, 84,188,235,176,187, -139,139, 75, 69,187, 13,171,228, 82, 42,149,200,203,203, 67, 72, 72, 8,234,213,171,135,181,107,215,194,201,209, 30, 75,150,204, - 5,195, 48,200,207,207,135, 94,175, 55,212,162,197, 20, 91,139, 24,134, 65,102,102, 38, 60, 61, 61,177,115,231, 78,108,221,186, -117,181, 68, 34,249,163,186,109,116,117,117,181,208,235,245,243,123,245,234,213,181,127,255,254,232,222,189,108, 62,214, 35, 71, -142,152,158, 62,125,122,221,182,109,219,122,104,181,218,245, 25, 25, 25,153,134,240,238,223, 95,152,126, 73,216,102, 57, 2, 7, -215,193,200,169, 7,176,121,243, 25, 8, 4,130, 50, 19,239,170, 85,171, 42, 21, 49, 12,203,122,243,178, 66, 83,231, 46,220,100, -183,110,221,117, 92,191,158, 1,146, 36,225,232,232, 8,146, 36, 17, 31, 31, 15,146, 36,225,238,238, 14,146, 36, 33, 22,139,139, - 99, 2,165, 40,103,215, 99,249,171,112, 18, 42,149, 10,201, 73, 9, 72,121, 23, 3, 81,126, 26,108,205,132,144,190,122,137,198, -227, 38,148,228,127,250,155,113, 72,163,209, 28, 42,245,122,211,133, 11, 23, 52, 4, 65, 12, 66, 97,156, 70,177, 69, 99, 53, 77, -211,171, 43, 34,105,211,166, 77,211,197,139, 23,115,139,211,109, 56,185,173,161,181, 90, 45, 3, 0,245, 27,127, 93, 70,237,199, -198,198, 98,243,230,205,144,203,229,224,241,120, 60, 67,250,129, 97,152,146, 29,134,229,137,176,234,136, 44, 0,176,118,119,217, -254,248,249, 29,125,248,187,221,202,136,232,203,198,146, 36, 18,164,230,223, 43,178, 62,180,108,185,184,184, 44,103, 24,134,101, - 89,118, 89,169,143, 4,110,110,110,247,174, 94,189,106, 77,211, 52,182,109,219,102,145,150,150,102,241,245,215, 95, 7, 2,168, - 80,104,149,231, 38, 44,207,157,136, 82,187, 14, 5, 2,129,149, 70, 83,161,241,228,163, 93,135,122, 61,124,204, 76, 45, 32, 69, - 10,212, 54,186,166,185,214,116,206, 53,201,132, 48,167,196,102, 13, 76,244, 58, 79, 50, 95, 3,103,161, 5, 24,150,173,112,107, -180, 90,167,187, 28,246,252, 69, 55, 55,215,122,212, 31,193,119,209,111,192, 96,168,213, 36, 84, 58, 2, 4,197, 5, 65,241,208, -168,113, 51,124,209,176, 49, 88, 0,207,158,132,210, 26,157,238,218,191,105,236, 29,219, 78, 15, 32, 8,252, 12,150, 97,203,201, -163,229, 57, 96,192,128,117, 0,102, 84,197, 99,215,102,122, 0, 73, 22,242,148,206,163, 53,103,250,100,188,122,194, 53,191,251, -124, 3,175,123, 27, 92,204,188, 78, 64,104,244,255,187, 14,185,228, 39,165,230,248,167, 8,174,170,133,150,171,171,171,133,153, -192,104,255,119,227,198,154, 38,134, 63, 68,218,235,199,120,112, 55, 70,122,252,244,153, 28,121,118,198,184,106,136,172, 18, 55, -159,181, 67, 29,120,248,126, 44,180,140, 68,182, 0, 0, 15,223, 86,160, 76,170,151, 70,168, 60,107, 86, 77, 68, 86,233, 27,118, -121, 57,180, 38, 77,154,132,160,160, 32,180,109,219, 22,222,222,222, 37, 55,251,234, 90,205,202,177, 46, 85,123,183, 97,105, 20, - 20, 20,192,221,221, 29,123,247,238, 69, 68, 68, 4, 76, 77, 77, 17, 16, 16,128,130,130,130, 18,129,101,104, 48, 60,203,178,177, - 87,175, 94,109, 57,100,200, 16,150,203,229, 18,185,185,185,176,176,176,192,206,157, 59,229, 18,137,228, 98, 13, 68,214, 96, 30, -143, 55,119,232,208,161, 84,253,250,245,145,158,158, 14, 51, 51, 51, 29, 65, 16, 92, 0,176,176,176,208, 25, 27, 27, 99,242,228, -201,104,210,164, 73,187, 5, 11, 22,180,229,112, 56, 59, 83, 83, 83, 15, 84,118, 46, 17, 4, 81, 50,161,142,251,249, 13, 52,154, -194, 9,122,215,174, 93, 40,138,117,251,127, 23,193,187,119,128, 1, 59, 89, 68, 34, 17,188,189,189,203, 29,251,118,237,218,225, -217,179,103,133,174, 73, 14, 7,118,118,118,120,240,224,129, 65, 59,169,138, 19, 65, 70, 70, 70,194,215,195, 6, 17,215,175,194, - 70,200, 69, 19, 39, 7,184,180,107,143,152,152,152,191,211,154, 69,160, 48, 14,163, 75,209, 57,184, 15,192,164, 82,175,119, 2, -216, 94, 29, 66,154,166, 89,146, 36,137,228,228,100,173, 80, 40, 36,172,172,172, 56, 2,129, 0,106,181,186, 68,112,197,198,198, - 34, 56, 56, 24, 41, 41, 41,176,178,178, 34,205,205,205,161,213,106,165,134,240,251,248,248,192,193,193,161, 76,224,251,184,113, -227,106, 36,178, 70, 3,126, 65,107,214,215, 17,144,148,185,175, 77, 15,196,189,137, 87,145, 26, 24,253, 47,136, 44, 0,200,205, -205,221, 3, 96, 79,241,107, 27, 27,155, 49, 20, 69, 45, 81,171,213,230,119,238,220,177,176,181,181, 37, 14, 28, 56,160, 91,182, -108, 89, 46, 69, 81, 82,130, 32,182,252,253,226, 16,175,179,242,222,185,115, 45,157,152,112, 21, 27, 58, 43, 57,240, 11, 41,183, -158, 45,209,208, 15, 3, 50,162,238,143,161,223,125,149, 46, 73, 35, 89, 48,175, 43,185, 7,239, 11, 92,188,106,126,204,155, 23, -110, 70,102, 70,152, 52,121, 49, 46, 94,185, 5,130,228,226, 94,232, 99,104,180,122,100,229,228, 97,232,176, 17,112,113,180,193, -235, 71, 33,153, 52,195,236,252,119,137,108,102, 71,183,126, 99, 44, 5,198,194,162, 62,209,227,208,175,115, 65,146, 63,227,251, -239,191,135,159,159,223,212,200,200,200,149,168, 34,143, 22, 65, 48, 59, 26,181, 31,102,201, 19, 20,242,176,140, 30,123, 79, 6, - 22,229,209,154,141,157,123, 78, 55,106,232, 17,183,162,178, 60, 90,255, 34,145, 85,250,185,114,161,229,238,238, 46, 48,225, 98, - 34,151,226, 44,248,110,120,127,219,140,119,175,144, 18,245,162,208,189,160, 85,106,211,222, 70, 25,146, 10,189, 11,202,230,239, - 96, 43,115, 93,169, 84, 6,173,232,203,112, 22, 79,184, 31, 90,179,170, 41,178, 62,226, 44, 45,182, 74,231,205,114,117,117,197, -186,117,235, 12,201,163,245,225,177, 23,163, 59, 10, 3,224, 75, 7,195,119, 55, 80,100,149,203,105,107,107,139,236,236,194, 12, - 9, 29, 58,116, 64,135, 14,255,191,159, 65,171,213,150, 88,177, 76, 77, 77,203,179,104,125,196,105,108,108, 28,120,230,204,153, -177,161,161,161, 67,230,205,155,199,237,220,185,115,177,152, 83,192,176,218,110,101, 56,245,122,253,228,144,144, 16,138, 97, 24, -236,221,187, 23,207,158, 61, 99,133, 66,225, 82,161, 80,184,195,216,216, 88,175, 84, 42, 39, 77,152, 48, 97,196,138, 21, 43,200, -118,237,218,225,225,195,135,164,167,167,231, 40,160, 76, 18,203,114,143,253,241,227,199, 32, 73, 18,116, 78, 18,166, 6, 30,135, -137, 49, 7,111,222,188, 65, 78, 78,206, 71, 73, 76, 13,233,207,210,150,146,226, 71,187,118,237, 74,220,144,173, 91,183, 6, 69, - 81, 8, 11, 11,171,200, 13, 91,154,147,181,182,182, 46, 57, 63,120, 60, 30,110,221,186,133, 31,126,248, 1,110, 86, 22,144, 70, - 69,192,161, 67, 39,116, 29, 59, 1, 1, 1, 1,160, 40, 10, 86, 86, 86, 37,150, 95, 3,206,165, 79, 65,105,206,177,190,190,190, -163, 94,191,126,237,210,168, 81, 35,199,200,200,200,142,126,126,126,238, 17, 17, 17,197,175, 5, 48, 44, 54,167,132,243,233,211, -167,167,118,236,216, 49,121,244,232,209, 60,134, 97,244,137,137,137, 58, 0,132,131,131, 3,245,244,233, 83,230,143, 63,254,128, - 82,169,132,139,139, 11,233,236,236, 76, 92,187,118,141,137,138,138,122,204,178,236, 98, 67,142, 93,175,215,151, 73,227, 80,252, -247,145, 35, 71,170,125,189,215,249,194,103,109,231,175,235,187,102,165,134, 65, 34,126, 7,125,158,173, 54,248,220, 5,117, 53, - 69,214,159, 61, 70,127, 37,231,170,183,111,223, 58,171,213,106,240,249,124,236,218,181, 75,187,110,221,186,215, 89, 89, 89,254, - 40,127, 71,121, 25,206, 26,238, 58,204,169,132,243,163, 93,135,121,217,184,120,238,252,211,150,162, 1,251, 48, 53, 53,179, 36, -176,145, 37, 8,171, 51,246, 13,252,133,173, 26,137,201, 75,203,201, 2,189,226, 98, 37,199,174, 81,106, 52,131, 7, 12, 28,118, -227,216,177,163,162,101,203,151,227,193,227, 8,100,231,202,192,176, 20, 24,130,192,146, 37,203,224, 96, 99,133,252,212,183, 10, -181, 86, 59, 0,101,115,104,253,227,199,157, 32,200,105,215,254, 56,240, 51, 73,128,145,167, 71, 11,168,130,119,194,145, 1, 3, - 56,131, 7, 15,198,153, 51,103, 16, 25, 25,185,187, 18,145, 85,194,201,178,228,180,136, 59,199,127, 38, 0, 70,153, 25, 45,224, -200,226,132,163,134, 15,224, 4, 4, 4,224,108,112, 40,142, 93,136,251,229,216, 5, 92,192,191, 27,213,207, 12,111,202, 65,164, -127, 3, 47,231,118,205, 26, 26,113,244, 74,164, 68,189, 67,142, 92,133,107,175, 18,115, 73,150,172,113,110,157,194, 27, 36, 15, - 73, 73,111,203, 89, 89, 25, 21, 77,232,170,106,113,146, 36, 89,198,154,245, 41,150,172,210,237,180,183,183, 47, 83,206,165,244, -196, 93, 28, 3, 84,131,212, 14,129, 73, 73, 73,102, 73, 73, 73, 96, 89, 22,143, 31, 63, 54,107,221,186,117,224,167, 88,179,230, -206,157, 91, 98,181,250,240,185,188,247,170, 66, 81, 80,250, 86,157, 78,119,114,193,130, 5, 83, 91,183,110,221,109,249,242,229, - 4,170, 81,128,247, 3,107, 14,205, 48, 12,110,223,190,141, 51,103,206,232,181, 90,237, 68,137, 68, 18, 81,234, 43,219,158, 63, -127,126,109,224,192,129, 7,162,163,163,169,215,175, 95,131,101,171,222,119,170, 84, 42,225,237,237, 13,154,166,177, 97,170, 43, - 10, 10, 26,129,166,105,232,245,122,152,152,152,148, 88,241, 74,139,231,170,206, 35,189, 94,255,145,208,122,252,248, 49, 40,138, -130,191,191, 63, 94,188,120, 81, 98,209,170,202, 2,165,213,106,147,236,237,237,237, 87,173, 90, 85,210,174,204,204, 76, 92,189, -122, 21,109,190,252, 10, 13, 38, 78, 66,106,106, 42,182,108,217, 2, 39, 39, 39,172, 93,187, 22, 57, 57, 57,160,105,250,175, 54, -167,247,124,253,250,181,203,240,225,195, 51, 34, 34, 34, 92,130,131,131, 45,122,247,238,109, 50,108,216,176,140,136,136, 8, 23, -130, 32,190, 66, 53,131,160, 25,134, 89,180,100,201,146, 43,107,215,174, 13,156, 49, 99, 70,235,209,163, 71,115,185, 92, 46, 35, - 22,139,233,163, 71,143, 18,222,222,222, 36,143,199, 35, 66, 66, 66,152, 39, 79,158, 60,162,105,122, 3,128,123,213,177, 56,151, - 22, 89, 20, 69, 25, 42,178,202, 96,150,157, 96,148, 41,153,233,191, 99,215, 58,178,190,135,139,246,224,209,171,201,247, 30,190, -125, 79,169,233, 89,251, 43, 73, 13,240,111, 6, 69, 81, 39,124,125,125,199, 76,155, 54,205,184,123,247,238,130, 21, 43, 86,228, - 21, 20, 20, 84, 36,178,202, 89, 48,255, 37,187, 14,127, 93, 52, 47,120,214,156, 70, 99,188,198, 59,212,193,117,121, 6,164, 28, -138, 52,179, 32,209,204,157, 66, 65, 86,172,237,133, 27,191,199, 3,168, 42, 47,219,211,231, 47, 35,187, 52,108,212,244,244,134, -181, 27,236,150, 46, 92,192, 61, 29,124, 25, 44,173,197,227, 59,119, 32,226,233,217,168,231,215,211,213, 90, 77,127,252, 11, 75, -240, 72, 30,108, 63, 6,224,188,149,149, 85,248,216,209,163,189,125,125,135, 65, 40, 20,226,212,169, 83, 56,180,109,155,126, 43, - 48, 68, 0,188,152, 92, 69, 62,189,140, 71, 37, 60, 97, 19,198,142,245,105,214,108, 60,132, 66, 33, 78,158, 60,137, 3, 91,183, - 26,204,243, 15, 71,113,102,248,139,248,255, 12,241, 85,196,104,145, 68,193,163,183,137,178,199,111, 19,101, 96, 88,150, 97, 89, - 53, 73, 34, 89,174,213,174,125, 27, 39,174,145, 40, 40,118, 29,174, 94, 51,237,243,249, 60, 74,137,159,154,110,233, 46, 71,100, -165,148,174,145, 86,122,146,174,232,111,157, 78,151, 98, 32,253,122, 55, 55,183,143,222,171,185,233,151,173,150,200, 50, 52,143, - 22, 0,100,103,103, 75, 0, 44,125,248,240,225,145,110,221,186, 77, 0, 32,174,225, 24,237,109,223,190,253, 68, 0, 20, 65, 16, -187, 83, 83, 83, 35, 62,186,224, 37,146, 24, 39, 39,167,141, 30, 30, 30,147, 10, 23,166,196,222, 42, 38,242,184, 70,141, 26,105, -203, 27,139,138, 94, 51, 12, 83,229, 24,229,230,230,162, 85,171, 86, 31,213,180,100, 89, 22,137,137,137,197, 22,167,146,190,175, - 76,192,201,100,178, 73,211,167, 79,223,195,229,114,221, 0, 16,197, 34, 87,175,215, 83,219,183,111, 55,210,235,245, 20, 0,130, - 36, 73,154,203,229,170,206,156, 57, 67,211, 52,157,164, 86,171, 39,253,197, 55,136,147, 68, 97, 41, 6,249,235,215,175,235, 23, - 89,178, 82, 34, 35, 35,195,142, 29, 59,102, 11,224,120, 13,121,239, 41, 20,138,123,235,214,173,107,183,107,215,174, 69,147, 38, - 77,106, 21, 16, 16,192,233,208,161, 3, 46, 94,188,168,191,125,251,246, 99,165, 82,185,190, 58, 2,171,104, 44,243, 92, 93, 93, - 75, 4, 87, 21,215,114,165,129,188,214,238,130, 29, 35,166, 56, 25,237, 93,127, 85,150,149,170, 9,213,201, 52,139,127, 7, 34, -241, 63,140,244,244,244,121, 0,150,109,217,178, 37,181, 73,147, 38, 2, 30,143,167, 49, 84,100,253,133,160,153, 92,217, 55, 63, -117,253,246,124,251, 37,211, 61,186,118,244, 23,186,214,177,115,142,122,151,142,216,135, 23,229,225, 23,214, 36,176,106,105, 63, - 0,134, 68,174, 63, 81,107,181,245,230, 46,152, 59,149,207,229,118,211,235,245,141, 59, 95, 59,199, 82, 20, 21,161,209,233,174, - 21,185, 11, 85,255,226, 33, 95,189,113,227, 70,111, 95, 95, 95,156, 58,117, 10,215, 14, 31,198,208,172, 44,220,162, 40,138,228, -241,172, 47,104,181,155, 96,152, 64, 90,189,121,243,102, 31, 63, 63, 63,156, 56,113, 2, 33, 7, 14, 96, 72,205,120, 42,154,235, - 90, 2,176, 45,122,153, 5, 32, 26, 64,115, 0,198, 0,212, 40, 44,237,100, 83,122, 10, 43,250,172,248,243,187, 4, 65,252,153, -129,176, 85,103,134,255, 16,145,177, 9,205, 63,119, 43,148, 74,101,142,183,183,119,181,246, 92,235,116,186, 74,125,184, 52, 77, -167,120,121,121, 25,108,181, 48, 68, 20,229,228,228,180,248, 19, 7,227,147, 98,177,202, 76, 34, 12,147,224,232,232,200, 20, 79, -250,229,137,176,242,222, 99,129,248,234,252,159,180,180,180,104, 0,115,106,218,206,212,212,212,211, 48,160,104,180,161,223, 3, - 0,169, 84,250,217,139,249, 18, 44, 43, 94,177, 98, 69,181, 4, 54, 88,182, 50,241, 25, 33,147,201, 90, 27,242,191,181, 90, 45, -254, 70,156, 40,122,144,145,145,145, 19, 8,130,232,142, 66,151,192,110,124,158,108,222,247,242,243,243,239,253,248,227,143,237, -246,238,221, 59,139,101, 89,228,231,231,111,173,174,192, 42, 89, 61,103,100, 92,252, 92, 7,158,147,174,185,121,116,119, 74, 39, -101,174,118, 86,144, 76,115, 0,181, 40, 49, 70,177, 44,251,219,200,145, 35,219, 0,248,253, 83,201, 42,216,117,248,169,136,103, -164,121, 77,110,205,253, 97,236, 45, 11,211, 94,208,115,234, 67, 67, 94,128, 38,251, 34,128,253, 48, 44,204,161,228,120,105,134, -217, 76,107, 52,155, 75, 77, 46,255, 11,227,108,229,231,231, 55,107,204,152, 49, 88,182,108, 25, 66, 54,109,210, 78, 33,136, 60, - 46,192, 94, 41, 92,104,146, 4,176,208, 80,158, 81,163, 70, 97,217,178,101,184,180, 97, 67, 77,121, 42,131, 45, 65, 16,193, 0, - 16, 24, 24,184,120,221,186,117,150,139, 22, 45,106,188,126,253,250,181, 69,175, 95, 21,127, 94, 52,215,245, 94,180,104, 81,195, - 82,159, 23, 0,120,250, 39,247,103,185,153,225,255,108,116,169,229,172,229,172,229,172,229,172,229,172,229,172,229,172,229,252, - 20,176, 44,219,171,240,169,226,231,138,254, 46,245,252,183,128,131, 90,212,162, 22,181,168, 69, 45,106, 81,139,127, 32, 74, 91, -177,106,242,249,103, 68,113,140, 86,105,236, 5, 10,183,117, 87,164, 74,171,179,235,161, 38,202,246,122, 45,103, 45,103, 45,103, - 45,103, 45,103, 45,103, 45,231,255, 28,103, 85,220, 31,253,158,101,217, 94, 4, 65, 4,179, 44,219,187,162,231, 98, 97,245,225, -223,165,158, 63, 91,216, 65, 57, 40,142,205,250, 40, 70,235,207, 70,173, 89,181,150,179,150,179,150,179,150,179,150,179,150,179, -150,243,147, 80,236, 2, 4,192, 6, 6, 6, 46,250, 47,116, 29, 58, 22,137,172,210, 15, 0,149,184, 14, 89,246, 36, 37, 22,195, -140,207, 23,242, 0, 64,163, 81,104,157,157,145, 79, 16,131,255,206,130,183,181,248,103,162,120,187,119,250,103,254,110, 45,106, - 81,139, 90,212,226,127, 3,153,197,150, 42, 0,153, 0,136,162,215,154,162,231,204, 34, 65,246,225,223,101, 62,255, 19, 33, 65, - 5,150, 44, 78, 69, 34, 43, 43, 75,104,195,225, 72,125,244,122,213, 23, 0,192,225,144,111,178,178, 44, 99, 88,246,100, 86, 77, -196,150,141,157,221,115, 46, 69, 57, 27,242, 93,157, 94, 47,206, 74, 79, 47,155, 58,158, 32,254, 13, 2,207, 80, 17,241, 41, 98, -227, 79, 23, 42, 54, 54, 54,246,246,246,246,125,205,204,204,190,204,205,205,125,146,153,153,121,182,146,186,135,235, 8, 2, 11, - 10,207, 43,252, 8, 96, 81, 37,212,213,249,238,135,240, 22, 10,133, 83, 9,130,240, 43,186,192, 34, 21, 10,197, 46, 0,111,255, - 7,111, 72,198, 0,250,115, 56,156, 81, 54, 54, 54,173,210,210,210, 86, 0,168,105, 54,111, 14,128,185, 22, 22, 22, 67, 45, 44, - 44,188,114,114,114,222,231,231,231,159, 0,176, 25, 64,149, 91,165, 87,204,112,252,178, 67,247, 14, 75,111,135,220, 94,189, 98, -155,228,225, 71,159,207,117,180,238,214,181,237,178,219, 23, 66, 87, 45,222,153,154, 83,205,182,145, 69, 15,160,112,119, 36,139, -143,147,189,126, 42,184, 0,250, 0,232, 0,224, 54,128, 11,134, 28,119, 5,104, 3, 96,113, 81,155, 55, 3,184,245, 95,126, 30, -153,216,219,219,111, 0,208,135,195,225,188, 22,139,197, 19, 1,164,252,205,109,226, 0,104, 9,192, 15,133,105, 56,158,194,176, - 20, 14, 85,194,218,218,186, 55,135,195,153, 90,148,218,101, 87,118,118,118,240,127,235,192,240,249,252,173, 14, 14, 14,227,149, - 74,165,130, 32, 8,182,116,190, 71,154,166, 83,178,178,178, 90,252,219,110,106, 4, 65, 60,253, 47,111,226,196,114,222,171, 56, -143,150, 88, 12, 51, 14, 71,234,147,145, 22, 49, 52, 85,242,114, 8, 0, 56, 57, 54, 62, 97,231,208,232,184, 88,204,215, 58,212, - 31, 32,226, 10, 57,187, 40,138,219, 84,165, 81,219,112, 57,220, 44, 45,173, 11, 35, 53,236,212,180,232,179,229, 38, 91,228, 82, -148,115, 66,204, 45, 59, 90,155, 3,174,145, 19,184,198,110, 21,182,214,201,201,169, 70, 71,105,105,233,101,170, 21, 24,205,226, -114,169,174, 12, 75,251,177, 12, 64, 18,220, 72, 90,175,187,193, 83,171,127,146, 74,223, 23,212,180, 7,235, 91,195,129, 5, 2, - 64,160, 43, 88, 92, 35,128, 99,209,217, 72,171, 6,133,161, 34,226, 83,196, 70,233,223,110, 1, 48,239,115,159, 73,206,206,206, -150,189,123,247,222,250,195, 15, 63, 24,139, 68, 34, 34, 41, 41,169,251,194,133, 11,191,126,246,236,217, 28,177, 88,156,250,161, -232, 35, 8, 44, 96, 24,150, 4, 0,146, 36, 22,218,218,218, 9, 41,138,250, 40,183,145, 94,175, 23,102,102,102, 76, 99, 24,150, - 40,250,238, 2,150,197,207,134, 8, 70, 35, 35,163, 97,126,141,154,206,217,176,113,179,200,222,206,206,132,214, 51,218,248,196, - 4,225,210,192,121,173,223,197,190,253, 89,165, 82, 29,173,201,117, 77, 81,212, 80,129, 64,208, 27,128,111,209,123, 81,106,181, - 58, 88,175,215, 31, 55,116, 66,183,183,183,191, 75, 81, 84,157,234,252, 99,189, 94,159,148,158,158,238, 95,195, 33, 26,236,230, -230,182,191,125,251,246,194, 86,173, 90,129,207,231, 99,217,178,101,115, 37, 18, 73, 85, 66,139, 3, 96,174, 80, 40, 28,106, 98, - 98,226, 37,147,201,222, 41,149,202,211,124, 62,191,203,207, 63,255,236,218,182,109, 91,211,244,244,116,130,162, 40,251, 75,151, - 46,253,103,235,214,173,221,105,154,238, 92,213, 36,151,247,142, 93, 42,232,227,219, 46,239,221,173,165, 0,122,126,248, 57,173, - 50, 26,197, 82,174,189,149,236,139,228, 34,241, 97,176,200,226,114,185, 63, 59, 56, 56,140, 81, 21,230, 10, 96, 63,156,112, 0, - 64,163,209, 72,115,115,115,235,215,228,146, 7, 48,206,194,194, 98,204,252,249,243, 45,123,246,236,137,195,135, 15,127, 23, 20, - 20, 36,205,207,207,255, 13,133,137, 48,163,171,201,185, 32, 45, 45,237, 27, 46,151, 75,184,186,186, 82, 74,165,178, 58, 66,203, - 7,133, 69,152,159, 2,216,133,194,212, 5, 29,129,194,235, 29,192,143,197,194,141, 36,201, 93,245,235,215,239, 27, 21, 21,245, - 11,128,213, 53,189,214, 29, 28, 28,246,236,220,185,115, 72,191,126,253,168,204,204, 76,231, 38, 77,154, 28, 73, 75, 75,107,247, - 25,110, 35, 99, 5, 2,193,236,198,141, 27, 55,136,142,142,142,201,207,207,223, 92,212,159,149, 93, 83, 46, 0,186, 88, 88, 88, -116, 94,178,100,137,168,119,239,222,216,187,119,239, 55, 65, 65, 65,178,130,130,130, 27, 40,140,233,249, 36, 17,200,225,112,166, -166,164,164,216,176, 44, 11, 71, 71,199,169, 0,254, 43,133, 22, 73,146, 63, 15, 28, 56,112,204,145, 35, 71,132, 9, 9, 9, 66, -103,103,231,146,228,217, 4, 65,212,120,254,172,197, 39, 99,111, 41,193, 85,117, 30, 45, 62, 95,200,211,235, 85, 95,164, 74, 94, - 14,249,186,253,118,115, 0,184,123,103,250, 16, 59,135,134,145,124,190, 48, 70, 96,102,116,102, 96,159, 46, 77,191,237,221,158, -112,113,180, 67,138, 36,195,254,215, 99, 33, 61,130, 67,110,157, 65, 97, 2,177,114, 65,107,115, 96,172,189,142,232,251,219, 96, -211, 33, 21, 59, 46,165,224, 97,120, 60, 20,121, 89,168,227, 96,140,141,179,186,193,193, 82, 88,179,165,151,157,119, 71,154, 35, - 56, 62,124,216, 72,243,190,253,125,185,238, 14, 14, 96, 89, 1, 98,222,201,190,186,124,245, 86,203,211, 39,143, 78, 53,225,122, - 15,149,103,188, 53,248,230,214,204, 17,198,114, 45,250,115, 40,226, 63,109, 91, 52,232, 60,236,155,118,100, 3,223,122,120,253, - 42,170,219,249,155,143, 55,146,161,175,110,208,122,246,160, 9, 15,231, 94, 72, 42, 77,232,247,145,224,232,220,185, 75, 59,129, - 64, 80, 38,121,146, 90,173,230,221,184,113,189, 77, 77,196, 70,241,255,208,104,212, 36,151,203, 7, 73, 18,115,252,252, 26,249, -102,101,101,221, 34, 8, 98,127,106,106,245,172, 5,211, 1,190,148,195,105, 78, 10, 4,142,122,141,198, 26, 0, 8, 62, 95, 26, - 79,146,141,150, 44, 94, 44,162, 40,138,201,206,206,134, 66,161, 32, 38, 76,152, 96,244,238,221,187,129, 98,177,120, 91, 21, 43, - 18, 4, 5, 5,249, 56, 58, 58,126, 84, 61, 86, 34,145,240,251,245,235, 91,147,161,247,105,220,164,217,236,144,144, 43,190,249, - 57, 82, 85,208,150, 61,207,117, 70, 66,181,167,111,125,238,174,189, 7,204, 39,142, 25, 49,253,205,155, 87, 97,168, 94,189, 58, - 55, 99, 99,227, 51,155, 54,109,242,235,216,177, 35,215,206,206, 14,233,233,233,136,138,138,242,187,121,243,102,255, 3, 7, 14, -204, 85, 42,149, 3, 1,131, 10,162,122,223, 56,184,223,206,196,202, 26,122,157, 14, 78,141,155,149,228, 55,139,189,121, 21,180, - 86, 11, 70,167,131,111,239,254, 69,214,100, 22,190,190,190, 53,205,186,235,212,176, 97,195, 67,107,215,174,229,169,213,106, 60, -126,252, 24,183,110,221, 98, 36, 18, 73, 85, 9,113, 57, 4, 65, 92, 93,190,124,185,139,191,191,191,105, 86, 86, 22,244,122,189, -205,185,115,231,166, 54,109,218,212,204,213,213,149,127,240,224, 65,200,100, 50,208, 52,109,229,229,229,101, 53,108,216, 48,205, -193,131, 7,231, 2,216, 80,145, 37, 43,255, 29,187, 84, 66,120,245,168,223,124, 20,210,136, 43, 61,102,247,192,101,179,186, 68, -137,101,171,135,151,151,105,190, 88,184, 80,100,214,200, 42, 95,124,125, 97, 15, 47,175,160, 43,239, 13, 90, 12,145, 69,147,205, -240, 99,199,142, 9,163,162,162,132,190,190,190, 96, 24,166, 36, 3,127,113,194, 89,111,111,239,154,244,227,250,201,147, 39, 47, - 28, 50,100, 8, 26, 55,110, 92,146, 20,245,251,239,191,199,194,133, 11, 45,239,222,189, 59,247,232,209,163,115,207,158, 61,187, - 1, 64, 96, 53,173, 49,197,168,238, 24,175,140,139,139, 27,124,230,204,153, 17, 11, 22, 44,240, 6, 48, 13,192,178,236,236,236, -246, 69,214, 24,126,145,208, 26, 59,119,238,220, 41,129,129,129,248,230,155,111,150, 61,126,252,120, 77, 13,173,124, 20, 77,211, -223,244,235,215,143,210,233,116, 48, 49, 49,129, 78,167,171,251,169, 70, 9, 0, 59, 39, 77,154, 52,101,242,228,201,176,180,180, -132, 78,167,243, 57,118,236, 88,208,178,101,203,190, 4, 48,174,130,182,142,154, 50,101,202,160,145, 35, 71,162, 69,139, 22,224, -112, 10,187,113,211,166, 77, 88,181,106,149,232,234,213,171,253, 15, 30, 60,216,255,252,249,243,167, 81,182,108, 87,181,192, 48, - 12, 56, 28, 14,146,147,147, 97,103,103, 39, 96, 24, 38,132, 32,136,189, 57, 57, 57,103,255,139, 38,243, 31, 7, 15, 30, 60,252, -200,145, 35, 34, 0,216,184,113, 35,102,207,158, 13,123,123,123,136, 68,162, 90,169,243,223, 99,209,154, 88,165, 69,171, 42, 40, - 20,138,102,139,102,252, 7, 36, 89,184,106,172,231,233,134,117,139, 39, 18,231,131, 67,154, 85,106,131, 55,114, 66,244,253,109, - 16,184,206,130, 90, 71,227, 81,120, 28,174,109,236, 94, 56, 91,246, 92, 2,181,182,115,241,100, 99,197, 55, 54,254, 81,163,215, - 63,128,131,195, 99, 36, 38,102, 86, 37,178,108, 29,236,131,119,239,222, 96,236, 87,183, 62,180,180, 14,226, 12, 49, 8, 66, 0, - 23,103, 83,140, 29,213,147,219,190,189,147,205,202,149,123, 46,166, 49, 24,160,200,122, 91,101,194, 80, 31, 27,252,222,204,207, -123,200,176, 94,254,130, 70,126, 13,193, 19, 24,151,124,214,188, 69, 11, 52,111,209,130, 12,148, 21,116,125,242,244,121,215, 83, - 87, 31,169, 21,186,196, 19, 49, 89, 24, 93,197, 77,166, 68,112,204,156, 57, 19,246,246,246,101,190,144,158,158,142,155, 55,111, -148,251,155,106,220,200, 74,254,199,154, 53,107, 76,165, 82,105,207,125,251,246,117, 98, 24,102, 77, 90, 90,218,125, 67, 72, 70, - 2,117,242, 4,130,206, 99, 54,111,102,154,246,237, 75, 89, 56, 56,144,140, 94, 79,164,190,127,111,189,101,219,182, 14, 57,177, -177,198,114, 43,171, 28,169, 82,169,136,137,137,129,145,145, 17,193,225,112, 90,150, 67,149,206,178,248,145, 36,137,133, 4, 65, - 64, 32, 48,138,153, 60,121,242,139,162,207,234, 92,184,112, 65,216,167, 79, 31, 5,128, 4, 0, 16, 8,140,156, 41,138,244, 41, -204,196,142, 31, 13, 17,152, 38, 38, 38, 51, 86,175,221, 96,146,159,147,171,212,202,229, 58, 91, 51, 17, 65,136, 76,169,252,188, -130, 2,177, 36, 83,189,100,197, 42,106,210,216,145, 51,228,114,249, 84, 67, 69, 86,147, 38, 77,158,156, 57,115,198,206,218,218, - 26,185,185,185,200,206,206,198,147, 39, 79,192, 48, 12, 6, 14, 28, 40,248,170,117,171,102,139,151, 44,125,152, 44, 22,127,105, -136,216, 50,177,178,193, 70,255,166,133,147,117, 66,118,201,248,236, 29,220,187,228, 59,171, 82,242,138,173,115,159, 82, 66,234, -203,206,157, 59,243, 0, 96,220,184,113,249, 5, 5, 5,235, 0, 28, 65,213, 25,253,231, 46, 93,186,212,217,211,211,211,253,200, -145, 35,144,201,100, 0, 96,231,233,233, 9, 31, 31, 31,253,237,219,183,225,227,227, 3, 83, 83, 83,220,189,123, 23, 15, 31, 62, - 68,139, 22, 45, 76,121, 60,222, 16,173, 86, 91,174,208,234,208,189,195, 82, 65, 31,223,118,245,155,143,130,200,204, 17, 65, 71, -143, 35,250,249,129,118,106,109,212, 82,158,254,206, 72, 37, 43, 24,157,153, 36, 10,172,211,162,189,117,189,134,125,225,222,252, -133,141, 74,127, 47,110,105, 87,207,245, 28, 35,213,129, 21,155, 37,217, 21,137, 44, 0, 27, 7, 14, 28, 56,248,216,177, 99, 22, - 0, 16, 17, 17,129,244,244,116,216,218,218,194,200,200, 8, 92, 46,183,164, 62,105, 13, 49,122,215,174, 93, 37,162,141,166,233, -146, 42, 0, 66,161, 16, 95,127,253, 53,154, 54,109,138,179,103,207,142,174, 64,104,249,183,110,221,250,176,187,187,187,107,233, - 55,229,114, 57, 2, 2, 2, 0, 0,237,219,183,239,108,108,108,204, 22, 11, 66,137, 68, 34,123,250,244,105, 87, 0,143, 43, 80, -150, 74,177, 88,140,249,243,231, 35, 62, 62,254,187,221,187,119, 39, 2, 48,226,243,249, 37,235, 99, 0, 62, 13, 27, 54,252,121, -246,236,217,120,247,238, 29, 94,191,126,253, 4, 53,119,165,234, 77, 76, 76, 98,117, 58, 93, 11,154,166,161, 84, 42, 49, 96,192, - 0,163,211,167, 79,167, 83, 20,245, 38, 43, 43,107, 4, 10, 99, 82, 12,133, 17,128,205,147, 39, 79,158,178, 96,193, 2,220,184, -113, 3,231,207,159,199,200,145, 35, 49,107,214, 44,136, 68,162, 49,179,102,205,122,136,194,130,230, 31,162,243,174, 93,187,160, -215,235, 63,186, 54,140,140,140,224,239,239,143, 6, 13, 26,224,252,249,243,157, 63, 65,104,185,251,251,251,243, 25,134,129, 92, - 46,199,237,219,183, 69,198,198,198, 34, 23, 23,151, 9, 0,254,107,132,150,187,187,251,228, 99,199,142,137, 74,123,127, 4, 2, - 1, 74,157, 7,181,248,251, 45, 90,149,174,176, 74,160,209, 40,180, 28, 14,249,198,201,177,241,137,187,119,166,151,184, 14, 1, -242,141, 70,163,208, 2,128,158, 97,145,175,160, 97, 44, 32,145,144, 86,128, 87,239,179,202,163, 42,179, 69,147,107,236, 6, 65, -171, 4,176, 44, 11,141, 86, 15,117, 94, 26,214, 93, 84, 32, 42, 69, 5,141, 92, 10,141,182, 48, 12,203,198,198,134, 19, 18,114, -121,246,245,235, 55,167,252,246,219,111, 84,138,185,249,235, 2,160, 89,121,156,150,150, 94,166, 12,159,127,226,151,221,203,140, - 89,234, 61, 98,146,228,168,231,210, 10, 54, 22,174, 72,203,146,227,193,235, 75,120,243, 54, 24,158,142,238,152, 53,163,135,209, -234,181, 71,142,243,104, 15,183,220,220,248,252,138,218, 89,188,138,218,115, 37, 6,116,206,123,232,179,223, 65, 95,144,250,209, - 23, 68,182,110,104,222,209, 25,182,174,117, 5,163,103,173, 26, 5,148, 17, 90,165, 57,211, 9,130,252,133, 36,137, 41, 4, 65, -160,113,227, 38, 41,155, 55,111, 46, 47, 21,184,182,113,227, 38, 41, 20, 69,186, 20,222,216,201, 93, 44,203,164, 87,209,206, 50, -162,134,207, 23, 44,131,243,102,199, 0, 0, 32, 0, 73, 68, 65, 84, 40, 52,251, 59, 38, 95,188,120, 81, 59,120,240, 96,108,218, -180,137,191,112,225,194, 37, 20, 69,141, 43,199,189, 87,134,115, 0,224,102, 81,183,110,183, 53, 15, 30,176, 92,157,142,200,121, -242, 36, 63, 87, 34,161,211, 10, 10,248, 39,223,188,249,102,252,188,121,124, 87, 87, 87,220, 15, 14,182,206,148,203,217, 92,181, - 90,153,155,155,203,210, 52,253,164, 2,206, 69,182,182,118,194,160,160, 32,159,201,147, 39,191,144, 72, 36,139, 0,192,209,209, -113, 29,128, 6, 0, 18, 74,189,135,221,187,143,139, 39, 76,152, 16,147,145,145,177,168,178,118,150, 66, 67, 59, 91, 59,225,209, - 61, 7, 95, 90,153, 26,147,182, 46, 78, 36,215,194,130, 67,243,141,121, 12,160,244,116,173,107, 2,160, 97, 5,191,253,144,147, - 48, 54, 54, 62,243,199, 31,127,216,113,185, 92,232,245,122,216,218,218, 34, 62, 62, 30,185,185,185, 40, 40, 40, 64,220,155, 40, -120,184,186, 98,101,224, 66,199,105, 11, 3,207, 40, 20,138, 22, 31, 76,102, 31, 23, 64,214,105, 63,178,236,149, 87,197,224, 67, -183,151,129,227, 94, 26,241, 73, 73, 73, 16,137, 68,240,243,243, 19, 61,120,240,224, 94, 37, 34,171,116, 17,224, 33,109,219,182, - 53, 61,114,228, 8, 90,180,104, 1,115,115,115,220,190,125, 27, 17, 17, 17,208,106,181,164, 76, 38,131, 72, 36,194,250,245,235, -225,230,230,134,130,130, 2, 36, 36, 36, 88,115,185, 92,155, 15, 50,218,151,112,222, 14,185,189, 58,239,221,173,165,105,196,149, - 30, 65, 71,143, 99,194,176,161,112, 96,223,223, 51,175, 75,172,238,214,167,237,247, 44,229,218,219,196,180,177,165,183, 95, 31, -240,248, 34, 76, 91,176, 10, 49,145, 23, 44, 21, 5, 47,191, 35,244,201,174, 43, 54,159,156, 89,206,177, 19, 0, 72, 87, 87,215, -241, 39, 79,158, 52, 45, 49,189, 80, 84, 73,205,195,210, 69,224, 43, 41,248, 94,101,127, 18, 4,129,248,248,120,216,217,217, 65, - 36, 18,149, 20, 16,143,138,138,194,163, 71,143, 80, 92,141,162, 2,206, 17,215,175, 95,119, 53, 49, 49, 41,243, 5,150,101,145, -149,149, 5,154,166, 33, 20, 10,161,215,235,161,213,106,161,211,233,160, 82,169, 68, 13, 26, 52,152,170,211,233, 30,151,199,201, - 48,204,156, 33, 67,134,180,125,252,248,177,215,182,109,219,160,209,104, 54,166,165,165, 97,208,160, 65, 96, 24, 6,157, 59,119, -110,195,178,108,244,146, 37, 75, 0, 0,179,103,207,214,201,229,242,201, 53, 57,246, 34, 52,104,222,188,185,215,141, 27, 55,208, -174, 93, 59,168,213,106,108,218,180,201,108,247,238,221,102, 7, 15, 30,180, 93,176, 96,193,254,204,204,204,238, 85,112, 18, 0, - 54, 58, 56, 56, 76,233,208,161,131,113, 81, 13, 83, 28, 56,112, 0, 43, 87,174, 60, 6, 96,201,229,203,151,151,159, 63,127,126, -212,248,241,227,177,114,229,202, 89,185,185,185,251, 42,226,140,139,139,131,173,173, 45,204,204,204, 10,111,150, 90, 45,194,194, -194,112,237,218, 53,124,241,197, 23,134, 28, 83, 69,237,116, 31, 56,112,224,254,163, 71,143,154, 38, 39, 39,227,238,221,187,240, -240,240,128, 66,161, 48,164, 54,236,245, 63, 97,194,174,144, 83,169, 84,170,146,146,146, 68, 27, 54,108,128,163,163, 35,220,221, -221, 97,100,100, 4,130, 32,160,211,233, 42, 43,175, 86,101, 59,219,183, 7, 39, 75,108,217,207,220,194,242, 59,150,101, 57,121, -121,210, 61, 90,228,158,122,255, 30,154,191,240,216,255,201,104, 6,224, 5,202,214, 60,148,148, 8,173,224,224, 96,182,119,239, -222, 68,241,179,179, 51,242,179,178, 44, 99,236, 28, 26, 29,183,115,104, 88, 84,247,139,124, 67, 81,150, 49,246,246,138,124, 0, -208,210, 44, 66,223,228,226,101,108, 26, 34, 98,211, 96, 34, 48,204,248,162,214,210,133, 17,171, 44, 11,149,236,255, 23,173, 90, -133, 20,106,109, 97,184,135, 70,173, 64, 94,230,107, 98,240,128,174, 70, 83,166, 76,130,163,163,179,109, 69,124, 90,129,209,172, -105,179,191,177,176,178,224, 34,248,193, 21,180,249, 98, 0,140, 4, 92,100,231,169, 0, 2,120,251,254, 26,192,152, 34, 50, 38, - 9,173, 27, 10,209,189,155,175,232,236,169,232,121, 0,150, 25,210, 94, 58,229, 9,120,222, 61,193,213,235,160,203,138, 6,147, -155, 8,152, 56, 64, 73,136,144, 45, 73,196,155,123,167, 13, 90, 51, 50, 12,243,157,141,141, 77,238,146, 37, 75, 58,212,171, 87, - 79, 59,117,234,212,240,196,196,196, 57, 31,172, 86,126,218,181,107, 23, 98, 99, 99,197,107,214,172,185,157,149,149,181,180,154, - 3, 29,200,178,216, 90,228,138,203, 58,119,238, 92,243, 59,119,238,204,218,186,117,171,253,244,233,211,249,211,167, 79, 31, 11, -224,135,202,220,133,249, 2, 65,151, 53,119,239,178,116, 74,138,250,208,246,237,252,157,161,161, 75,180, 12,227,100, 99,103, 71, -124,213,186,181, 92, 72,146, 89,217,233,233,180,173,151, 23, 21,127,237,154, 53,107,108,156,122,249,242,229,124,153, 76, 86, 97, -233, 28,138,162, 20,229,185, 11,203,131,163,163,163,166,188, 24,174, 74, 38,196,124,134,101,181, 22,158,158,108,183,206, 95,214, -139,141,126,255,222,200,194,130,242,174,231, 81,255,213,155,248, 39,172, 94,175, 34, 8, 34,223, 32, 95, 9, 69, 13,221,186,117, -107, 35, 51, 51, 51, 48, 12, 3,115,115,115,100,102,102, 66,163,209, 32, 63, 63, 31,154,130, 60,104,242,242, 16,145, 24,143,182, - 29, 58, 96,112,143,110,190, 7,207,253, 49, 84,175,215, 31,171,212,159,215,184, 89,137, 37,107, 85, 29,235,255,247, 5, 37,231, -150,136,174, 13,205,188,193, 19,137,208,117, 78,224,167, 92,232, 47, 46, 94,188,120,105,224,192,129,223,204,155, 55,143,148, 72, - 36, 87,226,227,227,219, 2,120, 93,217,143, 68, 34, 81,221,172,172, 44,200,100, 50,152,155,155, 99,235,214,173,176,183,183,135, - 66,161,192,211,167, 79, 89, 23, 23, 23,226,246,237,219,112,113,113, 65,118,118, 54,180, 90, 45,148, 74,101,154, 70,163,169,208, - 93, 94,228, 30,236, 57,187, 7, 46, 71, 63, 63,208,206,153,136,123, 58,100,110,251,216,232,136, 55, 73, 87,175, 61,248,129, 86, - 25, 37,231,166, 92, 95,232,217,242,133,205,119,243, 87, 98,199,198,229,136,126,124, 55,199,222, 45,127,167, 49,161,254,189,178, -246,202,229,114,213,155, 55,111, 76,195,195,195, 65, 16, 4,204,205,205, 33, 20, 10,203, 21, 91, 53, 0, 89,218, 2, 37,151,203, -193,227,241, 96,109,109,141,125,251,246,149, 76,188, 30, 30, 30,149,113,236,233,218,181,235, 80, 55, 55, 55,211,210,111,182,108, -217, 18,147, 38, 77,194, 47,191,252,130,208,208,208, 50,245, 52,211,210,210, 36, 58,157,174,178,227,206, 77, 79, 79,239, 49, 96, -192,128,231,247,238,221, 51,219,183,111, 31,104,154, 46,247, 17, 20, 20,132, 71,143, 30, 45, 3,240,166,134,231,209, 23,131, 6, - 13,186,123,248,240, 97,139,204,204, 76, 20,159, 27,114,185, 28,122,189, 30,245,235,215, 39,104,154,174, 42,238,141,164, 40,234, -220,246,237,219,251, 76,152, 48, 1, 28, 14, 7, 26,141, 6,219,183,111,199,194,133, 11,211,139, 22,165, 90, 0, 75,126,255,253, -247, 81,125,251,246, 69,147, 38, 77,124,111,221,170, 56,178, 67, 38,147, 65, 38,147,129,203,229,194,193,193, 1,171, 87,175,134, - 70, 83,120, 91,241,241,241, 41,185,140, 1,236,241,241,241,233, 19, 19, 19,179, 9,133,177,107, 31,193,193,193, 97, 0,203,178, - 19,245,122,125, 65,187,118,237,172,143, 30, 61,106, 42, 22,139,241,252,249,115, 44, 91,182, 76,202, 48,140,158, 97, 24, 66,169, - 84,198,217,217,217, 61, 23, 8, 4,198, 10,133, 34, 39, 59, 59,123, 45,128, 43,127,215, 76, 78, 16, 4,193,229,114, 49,110,220, - 56,112, 56, 28, 24, 27, 27, 67,165, 82, 65,167,211,149,136,121, 84,211, 45, 93,175,158,200,154, 3,222, 4, 75,211, 6,179, 6, -207,236,109,235,232,228, 12, 11, 51, 1,162,162, 94,183,189,121,227,218,118, 62, 39,122, 55,163,209,237,142, 78,200,251,211,139, -221,127,168, 69,254,161, 66,235,163,154,135,156,242, 7,115,176,158,101, 79,102,137,197,124, 45,159, 47,140, 41,182,114,217,219, - 43,242, 9, 98,176,222,182, 97, 63,208, 90, 93,209,141,130, 45,122, 24, 40,180,116,122,196, 70, 71,226,222,213, 63, 96,163, 16, - 35, 43,174, 41,192,107, 4,141, 50, 15, 42,141,182, 72,148,232, 17,254,252, 6,242,243,114,224,215,162, 55, 64,146,143, 42,226, - 51,183, 38,122,127,213,188, 49, 21,155, 20,137,150, 62,223,194,203,165, 29, 18, 37,249,200,149,169, 33,205, 87,161,169, 95, 32, - 50,165, 74,228, 43, 84,120, 29,123, 16,206, 78, 94, 36,193,121,223,217, 80,161,165,126,125, 6,234, 55,231,193,115,111, 11,126, -253,190,160,220,253,145,244,242, 22,194, 47,111, 65,202,171,251, 96, 25, 61, 28,125, 90, 25,122,145,108,191,114,229, 74,171,182, -109,219,114,186,116,233,210,228,210,165, 75, 77, 36, 18, 73,120,145,192,104,210,165, 75,151, 38,182,182,182,248,249,231,159,149, - 4, 65,108,175,225, 96,151, 88,192, 50, 50, 50,158, 0, 88,115,230,204,153,237,147, 38, 77,130,157,157, 93,163,212,212,212, 10, -127,152,201,229, 54, 25,189,118, 45,203,165, 40,246,216,142, 29,188,149, 87,174,108,254,237,247,223,121,157, 58,118, 36, 88,150, - 69, 88, 88,152,112,195,142, 29,194,225,253,250, 37, 36,102,100,208,119, 66, 67,181,146,148,148,130, 12,185,124,165, 68, 34, 73, -251, 59,206,108,157, 78,247, 48, 46, 62,206,185, 69,235,166,182, 47,162,226, 94,117,239,244,213, 87, 36, 73,146,209,239, 19, 67, -109,109,205,132,215,174, 94,211,234,116,186,135,134,112, 9, 4,130,222,157, 58,117,226, 72,165, 82, 56, 57, 57, 33, 51, 51, 19, - 98,177,184,208,226,144, 39,133, 54, 47, 15,186,252, 92,232,229, 50,196, 61,125,130,166, 94,158,130,147, 2, 65,111,133, 66, 81, -169,208, 42, 94,101,150, 87,232,186,248, 61,190,169, 41,248, 34, 17,136,234,187, 13,251, 89, 88, 88, 44,204,205,205,189, 4, 96, -181, 86,171,157,182,112,225,194,150,219,182,109,179, 89,179,102,141,217,196,137, 19, 79,202,100,178,166, 40, 44,170, 90,209, 4, -246,142,166,105,107, 0,246, 55,110,220,128,157,157, 29,242,242,242,138, 45, 45, 26,133, 66, 97,148,157,157, 13,181, 90, 13,141, - 70, 3, 51, 51, 51, 60,123,246, 44,135,166,233, 11, 85, 53,206,172, 46,177, 90,173,141, 90,106,237,107,146,170,165, 45,219,103, -228, 48,210, 21,155, 37,171, 0,108,238,225,229, 21,164,101,238,198,189,141,188, 96, 25,255,244,118, 78,234, 91,185,215,190, 75, -113,149,197,104,177, 0, 24,130, 32, 88, 31, 31, 31,100,102,102,130,162, 40, 8,133, 66,136, 68, 34, 44, 90,180, 8,219,183,111, -175,137,208, 50, 50, 49, 49, 89, 75,146,228, 80,146, 36,109,245,122, 61, 2, 3, 3,209,167, 79, 31,240,249,124,104,181,218, 18, -139,102,177,149,170, 10, 75, 71,216,163, 71,143,204, 30, 61, 42,115,219,234,104, 99, 99,115, 83,173, 86,227,253,251,247, 56,119, -238, 92, 7, 0,119,170, 57,214,239,195,194,194,122,248,251,251, 31,104,222,188,121, 93,150,101,209,168, 81, 35, 4, 4, 4,224, -224,193,131, 8, 15, 15, 71, 94, 94, 30,115,237,218,181,223, 0,108,170,238, 28, 94,212,191,245, 7, 13, 26,116,255,200,145, 35, -150,217,217,217, 80, 42,149,144,203,229, 56,121,242, 36,218,182,109, 11, 27, 27, 27, 28, 62,124,152,102, 89,182,178,177, 39, 73, -146,220,183,123,247,238, 62,227,199,143,199,206,157, 59,113,236,216, 49,244,237,219, 23, 67,135, 14, 69,102,102,166,253,198,141, - 27, 71, 21,185, 9,151, 7, 4, 4, 64, 38,147,225,233,211,167, 81, 6, 94,243,200,205,205, 69,110,110, 46,140,141,141, 75, 95, - 99, 4,128,131, 91,182,108, 25, 54,107,214, 44,120,121,121, 45,143,139,139,219,130,114,118,137, 50, 12, 51, 89, 44, 22, 91,114, - 56, 28,107,154,166,145,156,156,140,103,207,158,225,187,239,190,203,201,201,201,153, 4, 32, 17,192,146,113,227,198,173,158, 51, -103, 78,201,185, 52,103,206,156,224, 75,151, 46,245,248,171,173, 57, 62, 62, 22, 13,249,148, 96,166,180,128,178,150, 74,165, 37, -247, 14,141, 70, 3,181, 90, 93,198,146,197,227,113,173, 91, 54,117,187,168, 84, 20, 44,126,253, 54,183,194, 2,233,190,117,205, - 27, 11, 77,204,103,181,109,215,105, 68,183, 30,253, 41, 90,167, 67, 72,200, 5,252,250,235, 46,116,244,247,129, 87,189, 70,152, - 62, 99,166,185, 90, 67, 7, 94,187,118,101,161,197,163,123, 87, 10,242,115, 23, 85,198,249, 63,142,139, 69,226,234, 98,185,174, -195,242, 20,100, 81, 10, 7,105,209, 75, 27, 75, 75,203, 29,122,189,190,163,153,153, 25,152,220, 24,188,126,246, 24, 57, 82, 46, -212, 74, 61, 24,182, 80,108, 25, 36, 92,212, 26,220, 13, 57,143,173, 91, 54, 35, 59, 59, 27,254, 95,119,128,140,227, 10, 55, 87, - 55,168,148,138,162,139, 6,208,106,116,176,181,119,199,139, 23,225,186,124,185,188,194, 27, 18,207, 72,235,235,102,239, 3,181, -246, 75, 24,241,249,200, 43,208, 64, 90, 36,178, 14,159, 26, 2,181, 66, 9, 90,163, 5,173,209,193,214,109, 16,190,176,239, 4, - 70,127,161, 97,181,186,143,209, 67, 27,127, 23,218,248,187, 48,254,114, 6,254, 88, 55,236,131,137,212,176,186,187,153,153,153, - 25,175, 94,189,186, 16, 22, 22, 54, 96,200,144, 33,184,117,235,214, 68, 0, 83,138,220, 55, 19,135, 12, 25,130,176,176, 48,188, -122,245,234, 66,102,102,102,198,231, 24,121, 62,159,175, 84,171, 11,231, 88,161, 80,104, 84,197,119,157, 91, 14, 28, 72,230,189, -120,145,191,229,193,131,229, 65,251,246,241,186,116,238, 76,232,104, 26,140, 94,143,122,222,222, 68,183,110,221, 76, 14,158, 56, - 97, 77,233,116,143,230, 79,155,118,227,151,145, 35, 11,158,200,229,134, 6,154,215, 41,114, 25, 2, 64,157, 74,222, 51, 24,106, -181,122,219,228, 9, 99,186,220,185,123,223,213,205,213,217, 44,228,218,157,112,129, 49,159,244,242,168, 75, 73,243,114, 56,171, -150, 47, 54, 86,171,213,134,138, 86, 95, 27, 27, 27,164,165,165, 33, 54, 54, 22,106,181, 26, 58,157, 14,140, 66, 14,141, 52, 23, -154,188, 28, 16, 42, 37, 4,122, 61, 84, 89,233,168,227,229, 9,252,255,142,196, 42, 93, 81,229, 9,173,226,103, 35, 51, 51,240, - 76, 68, 32,185, 92,131,139,163, 3,104,222,170, 85,171, 19,167, 79,159,230,141, 29, 59,182,245,245,235,215,119, 0, 72, 20,139, -197,157,151, 45, 91,246,100,199,142, 29,130, 73,147, 38,213,223,180,105,211, 40, 0,123, 42, 34, 81,169, 84, 39, 46, 94,188, 56, -220,221,221,221, 62, 34, 34, 2, 42,149, 10, 12,195,160,103,207,158, 64, 97,108, 13, 0, 32, 58, 58, 90,169, 82,169, 50, 34, 35, - 35,243, 19, 19, 19,181, 48, 96,151,224,138,109,146,135,249,105,119, 7,218, 59, 56, 63, 50, 50,174,227,193,202, 94, 12,152,253, -173,243,198, 45,167,196,170, 43,239,223, 23, 44,237,234,185, 94, 94,240,242, 59, 11, 23,217,206, 43,193,113,134, 4,194,151,236, - 46,180,182,182, 6,135,195, 1,151,203, 5,143,199, 3, 65, 16,152, 49, 99, 6,246,238,221, 91,149,235,176,140,200, 50, 53, 53, -125,181,114,229, 74,151, 73,147, 38,241,140,140,140, 32,149, 74,113,248,240, 97,140, 27, 55, 14,191,254,250,107,185,241, 47, 6, -184,148, 62,180,150,206, 26, 57,114, 36, 52, 26, 13, 2, 2, 2, 16, 20, 20, 52, 75,175,215,223,169,193, 37,253, 40, 60, 60,220, - 59, 60, 60,220, 12, 64,223,161, 67,135,254, 62,104,208, 32,220,185,115, 7, 23, 46, 92,232,128,194, 77, 31, 74, 0,235, 0,216, - 21, 61, 87,118,125,154,216,219,219,239, 98, 24,166,175,173,173,109,184,143,143,143,223,145, 35, 71, 44, 50, 50, 50,138, 55, 63, - 32, 62, 62, 30,251,247,239,151,236,219,183, 47, 95,175,215, 91,147, 36,121, 49, 55, 55,119, 81, 37,130,109,223,150, 45, 91,198, - 20,185, 3,113,250,244,105,118,243,230,205,196,178,101,203, 32,149, 74,209,177, 99, 71,236,222,189,123,166, 76, 38,107,178,121, -243,230, 9,131, 7, 15,198,170, 85,171, 32,151,203,183, 84,181, 88,169, 68,124, 17, 0,190,218,178,101,139,251,172, 89,179,112, -250,244,105, 52,111,222,220, 56, 46, 46,238, 23, 0,227,203, 27, 63,150,101, 17, 23, 23, 7,133, 66,129,251,247,239, 99,249,242, -229,210, 82, 34,107,230,148, 41, 83, 86,207,156, 57, 19,107,215,174,101, 35, 34, 34, 50, 6, 13, 26,100,191,119,239, 94,170, 94, -189,122, 51, 21, 10,197, 95, 38,180,234,215,179, 90,223,178,121,187,133,142,206,245,112,248,200, 81,228,228,228,148,244, 73,113, -191,176, 44,139,130,130, 2,164,165,165,193,220,204, 20, 27, 55,173,254,102,234,196, 49,174, 40, 76,131,241,177,201,210,203,114, -211,160,161, 99,231, 6, 12, 31,131,136,240,231, 56,248,251, 30, 68, 70,132,149,240,209, 58, 45, 98,162,158, 33, 38,234, 25,236, - 29,220,209,173, 75, 7, 98,216,176, 97, 61, 71, 14, 31,106, 11,224, 79, 75, 29,241, 15,182,102, 1, 31,231,209,218, 91, 70,104, - 85, 97,174,179,177,180,180,124,117,252,248,113,107,127,127,127,138,166,105, 92, 9, 9,193,119, 83,254,131, 81, 35, 3,161,133, - 37,104, 13, 15, 12,207,200,160,150, 40,149, 10,176, 96, 33,151,203, 17, 26, 26, 10,150,161,113,112,239,102,176, 44, 83, 34,180, - 0, 22, 26,173, 22,206,110,245,177, 43,104, 13, 13, 46,247, 9,116,229,167,174,201,207,166,244, 58,154,133, 56, 35, 9, 73,146, - 72,152,155,186,129,195,117, 67,118,174, 2, 28,210, 1, 58, 85, 52,244, 69,191, 85,200, 83,160,212,126,218,248,233,203,177,158, -178,213,184,233, 42,149,202, 67,135, 14, 29,250,230,167,159,126,226,247,234,213,203,231,212,169, 83, 95, 1, 64,175, 94,189,124, -204,204,204,112,232,208, 33,141, 82,169, 60,244, 25, 45, 62,157, 90,181,106, 5,169, 84,138,248,248,248,240, 74,143, 77,163,177, - 22,217,217, 81, 25,183,110,233, 50,165, 82,215, 78,157, 58, 17, 58,154, 6, 73, 16,200,201,203, 67, 98, 66, 2, 44, 44, 44,136, - 87,209,209,162,237,211,167,159,245,241,243,227, 20,239, 72, 52, 4, 23, 46, 92, 16,162, 48, 46,171,210,247,170, 9,121, 70,122, -218,152,105,211,166,157, 61,116,232,176,121,122, 70,122,140,128,207,167, 69, 34, 35,167,145, 35,166,114,114,115,115,135, 3,144, - 25, 74, 38,149, 74, 17, 23, 23, 7, 99, 99, 99,240,184, 92, 48, 74, 5,244,114, 25, 84, 57,153,160,180, 26,240,245,122, 88, 9, - 5,112,181,183,135,155,173,141, 65,156,177, 55,175,150, 4,190,151,118, 23,110,108,229, 11,190,137, 8,124, 83, 17,166, 6,223, - 46, 90,141,242,128,101, 63, 24, 66,107,227,236,236,252,199,145, 35, 71,120,153,153,153, 8, 11, 11, 11, 7,144, 7,192, 20, 0, - 19, 21, 21,117, 61, 50, 50,178,119,209,174,187,170,118,139,109, 62,115,230, 76, 87,127,127,127,218,195,195,195, 36, 35, 35,195, - 85, 42,149, 50, 18,137,164,140, 73,232,234,213,171,130,130,130, 2, 57,195, 48,103,139, 68, 86,149,249,139,102,127,235,108, 20, -250, 2, 51,218,119,175,211,200,204,166, 49,114,232, 23,141, 30,133, 75,102,204,254,214,121,219,150, 83, 98,149, 49,161,254,157, -208, 39,187,114,140, 84,134, 6, 49,179, 64, 97,172, 84,104,104, 40, 18, 19, 19, 17, 23, 23, 87, 70, 80, 77,156, 56, 17, 7, 15, - 30, 52,200,162,101, 98, 98,178,118,197,138, 21, 46,179,102,205,226,149, 18, 69,152, 54,109, 26,242,242,242, 16, 20, 20,132,105, -211,166, 85,123,226,255, 0,158,157, 58,117,234,229,232,232,136,236,236,108, 56, 56, 56,192,223,223,191,207,157, 59,119, 60, 0, -196,215,240,188,159,218,189,123,247,213, 43, 87,174,132, 78,167,195,184,113,227,240,246,237,219, 19,111,223,190,221,234,230,230, - 54, 99,193,130, 5,246,246,246,246, 24, 50,100,136, 9, 77,211, 3, 43, 34,177,178,178, 90,183,103,207,158,225,189,122,245, 34, -181, 90,237,215, 55,111,222, 68, 66, 66, 2, 52, 26, 13,104,154,198,187,119,239, 48,109,218, 52, 73,209,238,198,119, 6,180,107, -236,146, 37, 75,198,204,152, 49, 3, 27, 54,108,192,138, 21, 43,126, 51, 55, 55,247,107,218,180,105,179, 21, 43, 86, 96,254,252, -249,112,119,119,135,181,181,245, 23,203,150, 45,243,157, 51,103, 14,182,109,219,134,229,203,151,255, 6, 96,127, 77, 58,130, 97, - 24, 98,253,250,245, 77,182,108,217,226, 88, 44,178, 72,146,196,241,227,199,241,226,197,139, 62,239,223,191, 47,239, 55,187, 29, - 28, 28, 38, 58, 58, 58,242,175, 93,187, 38,114,119,119, 7, 77,211,186, 34,145,181,221,205,205,237,187,119,239,222,161, 87,175, - 94,120,255,254,253, 33, 0,163,204,205,205,229,115,230,204, 17, 26, 27, 27,155, 43, 20,138,191,106,242, 6, 69, 18,163,215,174, -154,143,167, 47,162,113,230, 12, 15, 79,159, 62,133,189,189, 61, 4, 2, 1, 88,150,133, 90,173, 70,102,102, 38,116, 90, 53, 26, - 53,244,196,129,125,235,145,145,145, 9,144, 68,133, 33, 55, 4, 73,140, 24,243,159, 1,184,119, 63, 4,191,252,178, 7, 50,153, -188,130,197,183, 17,234,249,248,194,217,201, 14,201, 41,201, 32, 72,216,252,153,199,250, 15,119, 29,150,220,130, 96, 72,122,135, -210,176,176,176,216,122,236,216, 49,235,142, 29, 59, 82,114,185, 28, 12,195,160,157,191, 63,102,204,154,133, 11, 71,142,192,187, -117, 0, 8,141, 8,180,208,176, 93, 15, 42,165, 2, 13,154,125,133,193, 67,134, 34, 41, 49, 17,221,123, 15,130, 74,165, 40, 89, - 97, 20, 91,180, 52, 26, 45,108,236, 92,113,245,234, 85, 10,227,198,189,198,246,242,141, 18,122, 45,255,101,204, 59, 85,219, 92, -229, 11,132, 62, 61, 8,173, 90,139, 70,141,150, 65,203, 88,195,206,101, 34,116,186,115,200,207,188, 89,232,198,176,238,136,148, -164, 36,144, 20,239, 85, 77,123,144,145,103,126,210, 77, 55, 47, 47, 47, 47, 46, 46,238, 84,104,104,232,136,129, 3, 7,226,234, -213,171, 19, 0, 96,224,192,129, 8, 13, 13, 69, 92, 92,220,169,188,188,188,188,207, 49,218,142,142,142,125, 59,116,232, 16,208, -178,101, 75, 4, 7, 7,131,101,217,123, 6, 93,216, 92, 46, 75,146, 36, 24,134, 1, 1, 32, 59, 55, 23,111,223,190, 69,118, 86, - 22,116, 58, 29,228, 50, 25,227,235,227, 35, 99, 25,198,180, 58,237, 41,189,195, 16,229,236, 58, 44,126,175, 6,135,154,248,228, -209,131,164, 2,153,204,214,210,194,178,128,207,231,235,165,185,185,121,175, 95, 69,104, 12,156, 28,138, 17, 21, 25, 25,233,151, -154,154,138,164,164, 36,208,242, 2, 80,106, 13, 72,181, 2,157,191,250, 18,198, 96, 97, 4, 6, 92, 70, 7, 46,197, 69, 65,225, -238,188, 42,221, 29,250, 82,139,132, 98,145, 69, 16, 68,161,187,208,196, 4,124,145,105, 25, 11,151, 33,231,147, 64, 32, 56,114, -242,228, 73, 71,103,103,103,172, 90,181, 10, 46, 46, 46, 95, 56, 57, 57, 41,204,205,205,141,237,237,237,209,160, 65, 3,124,245, -213, 87,184,124,249, 50, 12,232, 3,154,101,217,110,247,238,221,155,251,224,193,131,193, 38, 38, 38,196,244,233,211, 57, 61,123, -246,132, 64, 32,128, 66,161,128, 84, 42,197,209,163, 71,179, 24,134, 41,222,148, 98, 45, 20, 10,247, 19, 4, 17, 47,151,203,103, -125, 72,120,224,167, 70, 78, 25, 57,204, 56, 86, 38, 28,208,190,123,157, 70,157,186,119,129,167,119, 39,116,234,158, 4, 0,235, -173, 56, 9, 1, 63, 46,177, 56,107, 97, 74,236,191,122,229,218,114,255,246,157,150, 44,148,221, 90,189, 97,111,110,149,241,116, - 4, 65,128, 97,152, 50,185,131, 62,252,124,212,168, 81, 56,126,252,120,149,253, 72,146,228,208, 73,147, 38,241, 62,176, 60, 67, - 44, 22,163,119,239,222, 24, 56,112, 96, 25,161,101, 99, 99, 3, 7, 7, 7, 36, 36, 36, 0, 64,182,129,231,213,140,177, 99,199, - 18, 74,165, 18,227,199,143, 71, 80, 80, 16, 2, 2, 2,136, 59,119,238,204, 0, 48,171,186, 39, 59, 73,146, 27, 23, 44, 88, 48, -119,218,180,105,200,201,201,193,165, 75,151,208,179,103, 79, 28, 63,126,220,246,210,165, 75,107, 59,118,236, 8,138,162, 16, 28, - 28, 12,154,166, 43,205,245,197,227,241,250,246,234,213,139, 76, 78, 78, 6,143,199, 67,139, 22, 45,144,146,146, 2,133, 66, 1, -177, 88,140,153, 51,103,166,101,103,103,119, 48,244, 58,226,241,120,179,102,204,152,129, 99,199,142, 33, 48, 48,240,119, 0,227, -243,242,242, 6, 63,120,240,224, 88,191,126,253, 32, 22,139,113,246,236, 89, 44, 95,190,156, 24, 53,106, 20,118,238,220,137,153, - 51,103,254, 86,100,117,170,232,196, 47,200,200,200, 48,175, 91,183, 46,210,211,211, 33,147,201,112,246,236, 89,187,203,151, 47, -123, 56, 59, 59,155,197,197,197,233,127,248,225, 7,254,172, 89,179,176,117,235, 86,132,133,133,225,224,193,131,232,212,169, 19, -253,254,253,251,114,173,100, 69, 41, 27,206,178, 44,123,205,196,196, 4, 5, 5, 5,197,215,221,188,192,192,192,105,235,214, 21, - 26,217, 83, 83, 83, 49,122,244,232,145, 55,110,220, 96, 58,118,236, 40,228,241,120, 80,169, 84,242,191,114,214,102,244, 12, 0, - 6, 30,174, 34,132, 92,216,135,231,225,239,241, 60, 60, 18,124, 65, 97, 16,188, 82,169, 64,179, 70,245,208,186, 69, 43,164, 74, -196, 56,116,112, 31,172,108,156, 43,189,143,176, 44, 11, 30, 71, 15, 95, 31, 7, 28, 57,184, 7,193,151,110,224,224,161,163, 37, - 49,111, 28, 14, 23, 77,155,181, 70,139, 22,254,120, 31,247, 14,251,246,253, 2, 91, 59,215, 90,231, 96, 13, 81,226, 58, 44,253, -252,129,242,239,228,239,239, 79,201,100, 50,168, 84, 42,164,165,165, 33, 33, 33, 1, 22,150, 22,120,159, 26,143, 14, 66, 45,210, -152,124, 68,133,191,210, 19, 20, 55,172,170,127,216,171,125, 83,160,125, 83,124, 55, 54,160,146, 37, 43, 11, 19, 51,155, 66,215, - 13, 77,199, 98,219, 54,186, 34,161, 69,235,117,215, 67,174,221,108, 53,118, 84, 95,238,213,155, 65,208,105, 24, 40,117,230,144, -171, 52,144,107,185, 32,205,123, 2, 89,119, 64,113, 4,104,211,164, 30,206,158,185,172,101,105,221, 13,131, 59,200,222, 15,116, -122,100, 41,161,149,241,129,223,193,202, 96,215, 97,201,196,171,215, 31, 63,124,248,112,255, 47,191,252, 82,216,177, 99,199,186, - 69, 19,167,246,240,225,195,138,162,100,152,213, 69,153,108,240, 14, 14, 14,205,120, 60, 94, 64,207,158, 61,155,141, 25, 51, 6, -175, 95,191,198,161, 67,135, 98,234,213,171,119, 75, 34,169,120, 71, 54,197,231,103,203, 50, 50, 44, 68, 30, 30, 28, 75, 83,211, -212,203,151, 46,185,119,233,218,149, 72, 74, 74, 66,118,118, 54, 84, 42, 21,194,194,195, 89, 46, 69,165, 16,102,102,100,244,139, - 23, 36,197,231,103, 87,100,109, 44, 7, 9, 85,236, 58, 92, 87, 83,235,150,171,163,101,221,229,129,147, 61, 85,106,149, 95,126, -126, 62,205,225,114,185, 46, 14, 22,137,209,239, 12,191, 39,170,213,234,224,235,215,175,247,239,210,165,139, 32,230,101, 24,232, -188, 60,104,242,164,224, 49,122, 88, 53,107, 2, 74,171, 6, 52, 58, 56,251,178, 80,229, 10,113,231,113,180, 78,173, 86, 87,153, -212,176, 88,104,145, 31, 8, 3,190, 72, 4,129,169, 25, 4, 34,209,135,130,161,170,149,156,176, 91,183,110,157,219,180,105, 3, -150,101,177,119,239, 94,104,181, 90,190, 86,171,133, 70,163,129, 86,171, 69,126,126, 62, 14, 30, 60,136, 93,187,118, 61, 0,240, -155, 1,135, 79, 27, 27, 27,247, 35, 8,194,142,195,225, 40,108,109,109, 77,142, 31, 63, 94,146,110,162,105,211,166, 48, 53, 53, -229,161, 40, 41,164,157,157, 29,247,215, 95,127,181,232,211,167,207,221,114,221, 29,141,190,152,239, 73, 91,182, 55, 50,174,227, - 97,102,211, 24,158,222,157, 0, 0, 93,123,143,133,103, 61, 55,228,103,189,244, 80, 41, 19, 6,240, 56, 82,203, 87,219,196,175, -141,123,249,141,145,103,220,126,139,242,183,247,151, 59, 81,144, 36, 89,161, 59,214, 16,145, 85,168, 89, 72,219,226, 56, 31, 0, -200,206,206,134, 68, 34, 65, 84, 84, 20,234,215,175,143,156,156, 28, 56, 59, 59, 67,163,209,160,101,203,150, 80, 42,149,216,178, -101, 11,238,223,191,255, 0,192, 76, 3,254,135,177,183,183,247,232,102,205,154,225,210,165, 75,120,250,244,169, 56, 36, 36,196, -217,223,223, 31, 30, 30, 30, 99,226,227,227, 23, 23,185,250, 12,133,137,191,191,255,244,105,211,166, 33, 50, 50, 18,147, 39, 79, -206, 78, 78, 78, 62,123,226,196,137,241,203,151, 47, 39,187,119,239, 14,137, 68,130,141, 27, 55,234,239,223,191,191, 9,192,170, - 42,250,241, 77,114,114,178,139, 74,165, 66, 78, 78, 14,104,154,134, 66,161,192,229,203,151,113,240,224,193,244, 34,145, 21,107, -104,227,154, 52,105,210,128, 36, 73, 28, 59,118, 12, 0,150,162, 48, 99,255,217, 1, 3, 6,136,127,248,225, 7,231, 69,139, 22, - 97,194,132, 9,208,106,181,216,176, 97, 3, 22, 45, 90,116,177, 72,100, 85,118, 19,253,201,193,193, 97,226,228,201,147,191,152, - 51,103, 14, 66, 67, 67,237,158, 61,123,214, 34, 44, 44, 12,174,174,174,200,206,206,230, 88, 91, 91, 99,235,214,173,152, 61,123, -246,105, 0, 89, 15, 31, 62, 28, 26, 23, 23,183, 14,192,198, 42, 68,251,110,103,103,231,137, 44,203,178, 10,133, 34, 33, 48, 48, -112,227,154, 53,107, 48,123,246,108,188,122,245, 10,121,121,121, 48, 53, 53, 37, 22, 44, 88, 48,122,233,210,165, 24, 55,110, 28, - 43,151,203,119,253,213, 19, 53,203,234,161,144, 70, 66,175,182, 68,211, 70,245,209,212,175, 14, 66,110, 62, 7, 0,116, 30,228, - 15,133,188, 0,191,255,190, 23,177,177,111,193,225,114, 97, 97,229, 96,136, 37, 16,154,252, 55,200,213, 74,208,165, 99, 11,244, -236,222, 1,191, 29, 56, 14, 90,167,197,248,177,195, 33,205,205,197,129, 3,251,240, 62,238, 29, 56, 92, 46,172,109,254,252, 68, -168,149,105,145,127,188,208, 50,192,253, 4,134, 97, 32, 22,139,241,236,217, 51,196,199,199, 67, 40, 20, 66, 73,235,153, 95,174, -223,103, 8,130,151,194,176,236, 3,150, 46,201, 82,252, 49,135, 94, 47, 46,149,177,214,220,210,210,146,175, 86, 43, 65,211,186, - 82,179, 10, 1, 16, 0,143, 3, 56, 58,121, 34, 57, 41,153, 85,169, 84,183, 43, 93, 65,169, 85, 91,207,159, 61, 57,237,171,182, -254, 54, 61, 59,175,196,217,115,203, 32,205,207,135, 74,203,133, 92,165,133, 66, 5, 88, 88,249,160,101,163,198, 72, 77,205,198, -203,167,119,100, 28,181,194,144, 64,209,183,219,151,140,245, 30,251,221,124, 24,187,183,133, 58,234, 44, 24, 89,122,137, 69,203, - 72,100, 9, 43, 55, 95,228,202,213, 56,121,227, 57, 80,141, 82, 47, 25, 25, 25, 10,138,162, 14, 79,155, 54,109,195,243,231,207, - 92, 0,224,249,243,231, 41, 18,137,100, 97, 70, 70, 70,117,109,210,197,217,224, 9, 35, 35,227,231,245,234,213, 75,109,209,162, -133,249,128, 1, 3, 96, 99, 99,131,176,176, 48,172, 91,183,238,141, 86,171,157,127,231,206,157, 74, 93, 61, 26,141, 70,252,252, -220, 57,179, 14,255,249,143,197,252, 62,125, 54, 78,155, 54,109,235,170, 85,171,184,222,222,222,132, 78,171, 69, 68, 68, 4,123, -228,240, 97,221,174, 69,139,182,240, 77, 76, 56, 79,206,159,231,210,106,181,248,239, 62,137,157,157,157,219,251,127,221,206,119, -211, 79,219,160, 82,202,240, 56,244, 34,164,210, 76,236,217,123,198,215,217,153,109, 47, 22,139,239, 24, 42,128,247,239,223, 63, -183,117,179,102,205,188, 92, 93, 17,145, 24, 15, 62,163, 7,143,166, 65,105,213, 32,105, 21, 92,253, 88, 16,164, 41, 36,105,249, - 88,115,236, 84,164, 33,194,248,139,111,250, 98, 85, 74, 30, 8,130,192,230, 47,253,192, 55, 21,129,103, 34,194,212, 63,110,150, - 8,131,224, 85,139,192, 23,137, 80,183,181, 65, 9,225, 21,183,110,221,122, 22, 17, 17,209,210,207,207, 15,115,231,206, 69, 66, - 66, 2, 24,134, 65,122,122,186, 74, 34,145,136, 51, 51, 51, 19, 80,152,255, 39,168,138, 73,172,180,234,112,190,115,231, 78,137, -187,225,198,141, 27,112,114,114,130,185,185, 57,242,243,243, 49,105,210, 36,139,239,191,255, 30, 0,240,236,217, 51,148, 22, 40, - 31, 34,226,121,212,166,220, 2, 86,202,202, 94, 12,200,161, 95, 52,234,212, 61, 25, 93,123,143,193,181,224,223,112, 51,228, 58, -172, 56, 9,241, 48, 41,184,156, 21,159,149,159, 34,247,222,237,219,124, 60, 37,145,135,236,158,222, 55,134,114,116,100, 78, 46, -250, 37, 63,183,178,182,122,123,123,195,222,222,190, 36, 70,139,195,225, 96,220,184,113, 96, 89,214, 80,145, 85, 52,215, 48,153, - 42,149,202,222,200,200, 8,105,105,105,120,247,238, 29,222,191,127, 95,146, 58,128, 97, 24,221,188,121,243,184,211,167, 79,199, - 47,191,252,130,219,183,111, 63, 0,176, 18,128,161,139,181,225, 67,134, 12, 49,213,104, 52, 56,122,244, 40, 13,160,247,201,147, - 39,159,181,108,217,146,211,163, 71, 15,211,157, 59,119, 14, 47, 26, 35,131,133,150,153,153, 25, 79,171,213, 98,231,206,157, 72, - 78, 78,110, 15, 32,234,201,147, 39,187,135, 12, 25,178,203,207,207,175, 94,100,100,228, 91,153, 76, 54, 21,192,203,170,200,210, -211,211,199,182,104,209,226, 36,195, 48,238, 93,186,116, 49,249,233,167,159,204,162,163,163,225,226,226, 2,134, 97, 34, 80,205, - 18, 86,111,223,190,141,146, 72, 36,190, 29, 58,116,192,229,203,151,215,235,245,250,181, 0, 54, 76,153, 50,197, 57, 49, 49, 17, -205,154, 53,131,149,149, 21,162,163,163, 11, 36, 18,201, 46, 20,150, 36,170,202,132, 27, 7, 96,225,238,221,187, 27,239,222,189, - 59,192,202,202,170, 77, 88, 88, 24,238,221,187,135, 77,155, 54,225,251,239,191, 71,187,118,237, 48,119,238,220, 44, 0, 1, 0, -232,184,184, 56,131,242,230, 21, 91,182, 0,160,121,243,230,169,235,214,173,195,248,241,227,217, 95,127,253,245,231,195,135, 15, -207, 26, 62,124,120,201, 28, 56,122,244,104,246,208,161, 67,163, 81, 88,134,233,175,132, 78,171,213,192,204,202, 19,178,220, 36, -100, 38,135, 66,104,234,128,238,157,154, 64,161,212,224,194,249,211,120, 25, 17, 14,146, 36, 97,239,224, 10, 11, 75, 27,196,196, -188, 5, 42,223,109,172,211,106,181, 48,181,172, 3, 89, 94, 50, 52, 25,207, 97, 44,178,195,152,255, 12,128, 66,169,197,153,179, -167, 17, 25,249, 18, 20, 69,193,193,209, 21,230, 22,133,156, 4, 91,249, 14,230, 90, 0, 40, 39,159, 86,149, 66,139,162,168, 91, - 87,174, 92,249,182,117,235,214,156,216,216, 88,196,198, 22, 46,110,164, 82, 41, 77, 64,127, 42, 35,226,252,176, 74,126,222, 5, - 69,187, 51, 74,215, 46, 20,153,154,138,163,223, 68,217, 75,115,210, 17,254,226, 62, 98, 99, 34, 16,255, 62, 10, 90,173, 10, 20, - 73,130,164, 72,212,241,108,136,251, 15, 66, 53, 42,154, 14,173,136,179,176, 29,239, 11, 76,236,188,135,174, 94,181, 56,120,246, -252, 21,198,131,191,253, 5, 47,163, 95, 67, 70, 59,128,101, 1, 7,107, 19, 52,245, 90, 0,113,106, 38,142,253,182, 83,193,104, -181, 35, 62,200,161,245, 17, 39, 0,216,103,161,193,174,189,191,141, 11, 58,120,100,197,252,233,147,236,251, 13, 28, 1,126,206, -107,232, 82,159,195,179,101, 79, 16, 2, 11, 92,186,122, 19,119,158,189, 78,103,244,236, 10,251,108,252, 26, 83, 5,103,105,228, -230,230, 62, 76, 75,147,184,148,202, 2,239, 34, 16, 24, 85,181, 59,238, 67,206, 50, 25,231, 41,138,108,190,122,245,106,157,189, -189,189, 54, 50, 50, 18,191,252,242, 11,243,252,249,243,171, 36, 73,110,151, 72, 36,170,170, 56,109,117,186,240, 35,129,129, 13, - 90, 13, 28,200, 14,155, 62, 93, 1,129, 96,198,198,205,155, 3, 51,165, 82, 39,150, 97, 96,107,101,149,178,113,209,162,117,223, - 14, 25, 34,125,117,255,190,113,232,185,115,198,124,154,126,110, 64, 59, 63, 7, 42,228, 20,139,197,119,110,223,190,135,223,131, -126,130, 86,171,134, 68,156, 8, 0,200,202,206, 67, 21, 34,235, 67, 78, 86,161, 80, 12, 92,250,253,247,143,150,206,158,229,240, -117,231, 46, 72, 10, 15,131, 54, 39, 19,132,142, 6,151,224, 64,158, 33, 68, 70,186, 12, 11, 15,157,200,144, 41, 20, 3,203,153, - 36,202,109,103,177,197, 74, 96,102, 10,158,137, 8,124,145,105, 25, 43,150,145,153, 25,248, 38, 34,112,248,252,242, 2,184, 63, -226,148,201,100,131,190,253,246,219,151, 79,158, 60,177, 28, 63,126, 60,190,250,234,171, 23, 74,165,178, 35,128,130,154,246, 39, -195, 48,226,175,191,254,154, 36, 8, 66, 52, 98,196, 8, 65,102,102,102, 73,102,117,153, 76,134,203,151, 47,163,126,253,194, 93, -253,175, 94,189, 66,195,134, 13, 43,228,156,176, 48, 82, 12, 96,213,236,111,157, 55, 62, 10,151,204, 0,176,222,179,158, 43,110, -134, 92,199,189,155,161,129,109,252,152,109,223,140,104,249,131,176, 17, 92,145, 19, 0, 0, 32, 0, 73, 68, 65, 84,227,144,249, -190,205,199, 83, 34, 51, 71, 28, 56,115,154,138,122,190,111,141, 66, 17, 81, 23,191,156,157, 87, 81, 59, 9,130, 0,203,178, 31, -165,114,160, 40, 10,135, 15, 31,174,238,177,159, 8, 10, 10,154, 50,121,242,100,158, 68, 34,193,155, 55,111, 32,151,203, 97,100, -100,132,144,144, 16, 26,192,206,195,135, 15,135, 28, 62,124,184, 7, 10,119, 19,221,168,206,249,105, 98, 98, 50,173,123,247,238, -120,243,230, 13,158, 62,125,122, 26,192,203, 23, 47, 94,156,142,141,141, 29,218,174, 93, 59,252,246,219,111,211,148, 74,101, 80, -117, 56, 25,134, 41,157, 51,169,184,226, 67,184, 76, 38,107, 19, 26, 26, 90,221,113,151,100,103,103,183, 45, 18,214,201,246,246, -246,102,225,225,225,112,115,115,131, 86,171,109, 93,221,115, 41, 47, 47,239,167,237,219,183,255, 58,118,236, 88,252,240,195, 15, - 35, 78,156, 56, 49,226,155,111,190, 65,175, 94,189,176,127,255,126,188,124,249,114, 61, 12, 43, 43, 86,222,177,191, 4,240,210, -222,222,254, 59, 87, 87, 87,108,218,180, 9, 17, 17, 17,235, 86,173, 90,181,232,229,203,151,168, 95,191,190, 32, 42, 42,138,174, -201, 61, 4, 0,204,204,204,204,116, 58, 29,206,157, 59,247, 24,192,236, 17, 35, 70,216,109,221,186, 53, 64, 36, 18, 33, 39, 39, - 71, 25, 25, 25, 57, 28,192,249,191,250, 94,199, 18,196,146,241, 19,102,236,158, 48,126,184, 81,139,230, 77,161,200, 79,129, 82, -150, 14, 69, 65, 26,182, 7, 93, 5, 65,144,176,181,117,132,157,131, 11, 18, 19,147,240,224,226, 37,141, 92,161,220,202,215, 49, -235, 43,231,156, 94,200,217,172,144, 83, 33,207,128, 82,150, 81,194,105,103,231, 84,196,153,136,251,161,151, 84, 74,185,252, 39, - 13, 75,252,248, 39, 31,251, 63, 25,213,171,117, 88, 26, 82,169,116,230,164, 73,147, 58, 46, 92,184,208,154,166,105,202,202,202, - 10,137,137,137,244,169, 83,167,114,100, 50,217,204,154,180,134,195,229,190,244,246,169,223,177, 95,191,126,116,223,190,125,120, - 35,199,246,224,216,218,217, 33, 47, 55, 27, 49,111,194, 16,253,250, 57,188,235, 55,193,242, 85, 91, 0, 11,139, 42, 11, 73, 22, -149,213,233,189,114,233,188,227,109,219,119, 51,171,223,176, 9,175,105, 93,115,104,117, 52, 82, 82, 82,112,254, 92,184, 54,242, -217,189,124,134,214, 12, 85,100, 25, 86,130,231, 14, 64, 35, 27,123,252,236,180,135,215,110,220, 62,119,231,158,223,231, 47,156, - 49,222,164,157,127, 87, 68, 92,255, 13,167,131,143,203, 85,106,205, 70, 30,133,205,145,217, 80,196, 84,179, 15, 84, 42,149,246, -195,249, 84,165, 82,105, 63,117,164,247,239,223,143,244,244,116, 77, 66, 66,194, 21,154,166, 79, 84, 82,236,249, 35,108, 7, 52, - 3,212,234,235, 75,253,253,123, 44, 13, 9, 49, 26,189, 96,129,102,196,200,145,243,160, 86,107,193,231,179, 28, 19, 19, 18, 2, - 1,247,213,253,251,198, 63, 79,153, 98, 69,104, 52,215,126,175, 36,109, 64, 57,248,236,187, 14,139, 45, 90, 29, 58,180,195,232, -241,179,161, 44,101,209,122,248, 52, 6,106, 45, 12,182,104, 21, 33, 41, 33, 57,185,205,140, 37, 75,207, 12,237,222,217,215,207, -189,142,192,214,163, 14, 68, 14, 14,200,206,204,196,253,167,209,186, 85,199,207, 68, 22,137, 44,131,242,202, 48, 12, 83, 24,228, - 14,160,243,204,133, 32, 40, 10, 40, 74,227, 80,188,115,200,163,229, 87, 32, 56, 28,232, 89, 6,106,181,218,144,160,191,148,119, -239,222, 13, 26, 49, 98,196,141,224,224, 96,178,123,247,238, 77,207,158, 61,203,124,202,185,163, 84, 42,219, 0,128,145,145, 81, -188,133,133,133,243,216,177, 99,161,211,233,160, 80, 40,144,151,151,135,148,148,148,220,177, 99,199,106, 1,192,216,216,152,255, -237,183,223,154, 85,197,185,229,148, 88, 53,251, 91,231,109, 86,156,132,128,252,172,151, 30, 86,156,132,248, 54,126,204,182, 45, -167,196, 42, 51, 39,249,234,172,132, 59, 49, 18,121,200,238, 3,103, 78, 83,163, 6, 12,210,187,136,222, 6, 26,217,177,167,170, -226, 37, 8,226,163,228,164, 6,138,172, 50, 40, 40, 40, 88,180,108,217,178, 94, 82,169,212,165, 71,143, 30, 60, 95, 95, 95, 60, -122,244, 8,193,193,193,244,195,135, 15,147,229,114,249, 98, 0, 42, 0, 87,107,210,167, 62, 62, 62, 30, 28, 14,167,216,149,182, -163,232,237, 29,103,207,158, 29, 58,126,252,120,212,169, 83,167, 65, 84, 84,148, 0,213,184,142, 88,150, 45,241, 50,124, 78, 16, - 4,241,254,231,159,127,118,118,112,112, 32, 46, 95,190, 76, 83, 20, 85, 19,203,205,254,125,251,246,181,214,233,116, 19, 38, 78, -156,136,246,237,219,131,166,105, 28, 58,116, 8,251,246,237, 51, 84,100, 85,138,152,152,152,231,201,201,201, 95,207,155, 55, 15, -155, 54,109, 90, 52,111,222, 60, 36, 39, 39, 35, 38, 38, 38,236, 83,120,243,243,243,149, 73, 73, 73,194, 47,191,252,178, 69,100, -100,100,100,199,142, 29, 27,142, 31, 63, 30,235,215,175,103,111,223,190,253, 45,128,203,127,199,236, 29, 29,155,115,144,171,231, -132,172, 90,253,211,247,117,189, 60, 38,143, 27, 51,132,242,241,110, 8,121, 94, 10,172,109,236,225,226,234,137,204,140, 44, 92, -185,114, 89,159,149,149,187, 95, 79, 18, 43, 99, 99,115, 82, 63,133,211,217,197, 19, 25, 25, 25,184,116,233,146, 62, 87,154,191, - 23, 58,114, 85, 84, 98,110, 58,106, 97,136, 37,107, 34, 42,201, 18, 95, 25,108, 44, 45, 45,143,154,153,153,165,155,153,153,165, - 91, 90, 90, 30, 5, 12,218,125,208,165,212,221,129, 42,243,248,246, 91, 35, 24, 25,181, 1,135, 51,199,194,210,242,178,185,185, -121,118,135, 14, 29, 52,187,119,239, 86, 69, 69,189, 98,196,226,100,214,220,220, 60,175,228,251,229,113,126, 0, 75, 75, 47, 83, - 19,199,134,223,155,187, 52,189, 47,114,108, 80, 32,114,108, 80, 96,238,210,228,129,137, 99,131, 21,150,150, 94,166, 6,181,179, - 2,120,218,193,214,219, 6, 59,235,219, 18, 74,111, 27,236,244,180,131,173,193,199, 94,185,219, 79, 79, 16,208,163,112, 27, 54, -106,192, 89,204,193, 80, 20,245,187,139,139,139, 35,170,151,176,238, 35,206,145, 64,157,145, 2,193,132,147,129,129,163,227,111, -223, 30,145, 31, 23, 55, 44,239,253,251, 33, 97,199,143, 15,221, 49,116,232,200, 97, 2,193,196,111, 1, 47, 67, 57, 29, 29, 29, -215, 61,127,254, 60,216,208, 71, 41,225,101,112,127,122,121, 58,135,116,239,210,154,157, 54,105, 32, 59,109,210, 64,182,123,151, -214,172,151,167,115,200, 39,140, 17, 65, 81, 84,128, 80, 40, 60,106, 34, 20, 70,152, 8,133, 17, 66,161,240, 40, 69, 81, 1,168, - 60,134,170, 12,167,181,181,245, 51,123,123,251,244,234, 60,108,108,108, 94, 84,163,157,195, 60, 60, 60,146, 73,146,220, 82,205, -107,186, 50, 78,111, 99, 99,227,247, 38, 38, 38, 41,165, 31,198,198,198,165, 19, 67, 89, 11,133,194, 11, 38, 38, 38, 91, 13,225, -252,113, 73,195,239, 31, 92,253,238,229,143, 75, 26,126,255,225,103,211,251, 91,142,125,116, 99,101,246,244,254,150, 99, 13,105, -167,157,157,221,109, 59, 59, 59,137,157,157,157,196,222,222,190,210,135,141,141,205, 51, 3, 56,141, 76, 77, 77,183,154,154,154, -166,155,152,152,232, 69, 34, 81,186,137,137,201, 22,148, 74,109, 81,211,254, 36, 73,114,125,131, 6, 13, 84, 20, 69,253,250,193, - 71,155,234,214,173,171,226,112, 56, 27,171,201,105,214,174, 93, 59,125,120,120, 56,219,190,125,123, 22,128,229,103, 28,119, 7, - 75, 75,203,203,102,102,102, 73,166,166,166,219, 1,152,212,144,147, 0, 16,224,236,236, 28,214,169, 83, 39,133,179,179,115, 40, -128,126,159,177,157,189,250,247,239,207, 36, 37, 37,177, 44,203,178, 73, 73, 73,108,255,254,253, 25, 20, 38,138,252,148,123,242, -146, 41, 83,166,176, 15, 31, 62,100, 31, 62,124,200,134,134,134,178,189,122,245, 98, 0,252,231, 19,239,243,248, 92,199,238,235, -105,227,245, 69, 61,203, 19,195, 7,249, 51, 87,207,111, 97,151, 47,158,204,118,109,223,144,173, 95,215,242,140,183,183,181,247, -231,224,252,126,241, 36,182,203,215, 13, 24, 95, 47,203,227,190,158, 54, 94,127,241,177,255, 27,173, 90,248,179, 3,206,254,223, -180, 88, 86, 44,149, 15, 39, 39, 39,100,103,183, 54,226,112,252, 5, 2, 65, 71,146,162,110,229,100,102,206, 42, 90,110,233,255, - 42, 83,109,165, 19,186, 23,248,149,148, 36,168, 9,103,153, 64,246, 26,114, 86,135,195, 32,206,138,138, 74, 51,106,117,170, 53, - 77, 63,219,142, 74,251,160, 12,167,179,179,243, 4,134, 97, 60, 12,109, 16, 73,146,241, 98,177, 56,168, 38,253, 89,175, 94, 61, -182,200,189, 77,124,206,113,255, 51,206,165,255, 37,206, 3, 63, 53,114,170,223,232,139,249, 17,207,163, 54, 21,185, 21, 75,176, - 98,186,165,169,127,167, 14,203,238,223,188,253,195,138,237,210,130,191,249,216, 73, 24, 24,211,246, 25, 56,139,147,132, 86,139, -147,203,229,238,110,213,170,213,132, 71,143, 30,253,170,215,235, 39,254,143,158,159,189, 40,138,154,231,227,227,211, 52, 38, 38, - 38, 76,175,215,111, 66, 57,137, 34,107,208,206,197, 30, 30, 30, 83,121, 60,158, 64, 38,147, 73, 83, 83, 83,151, 1, 56,241,223, -214,159,190,245,172, 90,176,108, 73,210,237, 53,111,222,229, 60,249,108,156, 44,163,103, 88,106,117, 76, 92,246,139,191, 97,220, -255,109, 34,107,239, 95,241,143,187,212,114,214,114,214,114,214,114,214,114,126,118, 78,227,218,254,172,229,252, 23,114,254, 43, -193,169,237,130, 90,212,162, 22,181,248,199, 65, 89,219, 5,181,168,197,127, 29, 74, 91,181, 74,172, 89, 68, 37,170,180, 58, 38, -193,154, 40,219,235,181,156,181,156,181,156,181,156,181,156,181,156,181,156,255,115,156,255, 86,145,181,183,146,215,127, 26,106, -205,170,181,156,181,156,181,156,181,156,181,156,181,156,181,156,255, 11, 66,171,220,215,181,174,195, 90,252,233,216, 54, 0,206, - 0, 48,227, 44,196,127,198,247,107, 81,139, 90,212,162, 22,181,248,155,177, 23, 21,184, 14,255, 27,132,150, 19,128, 54, 40, 44, -124, 27, 13,224,255,216,187,238,176, 42,142,245,253,238,238,233,231,128,136, 52,193,130, 21,165, 40, 40,138, 93,196, 18, 27, 38, -150, 24, 75, 84,140,137, 94,187,177, 36,168,215, 88, 18,133,104, 98,139, 26, 53,106, 44,215,110,212,136, 93, 52,104, 44,160,162, - 20, 69,108, 8, 8, 7,164,215, 83,119,119,126,127, 80, 68,164, 28,208,252,238,189,185,251, 62,207, 62,231,236,217,221,239,204, -206,204,206,188,251,206, 55,223, 92, 3,144,245, 14,246,172, 1,124, 66, 81,212, 72, 0, 32,132, 28, 65,209,172,145,116, 83, 46, -150,203,229,169, 90,173,214,182,248,251, 43,173, 86, 91,118, 45, 3, 10,111,207,102, 35,101,182, 10,209,180,105,211, 84,157, 78, -103,107,194,223,231, 16, 66, 34,104,154,142, 52, 51, 51,187, 28, 27, 27, 27, 84,147, 27,247,241,241,241, 99, 24,102, 37, 0,112, - 28,183,248,202,149, 43,187,255,194,114,235,212,200,161,254,175, 6,163,129, 77, 77,203, 92,130,183, 3,249, 1, 0, 54,251, 34, -128, 98,177,160,248,251,154,233, 65, 85,199,209,169,233,249, 85,160,131, 88, 44,158, 97,103,103, 55,240,229,203,151,119, 0,124, - 5, 84, 31,213,184, 81,163, 70,227, 69, 34,209,167, 28,199, 53,103, 24,230, 25,203,178,255, 74, 76, 76,220, 43,180, 33, 2, 4, - 8, 16, 32,192, 4,178,245, 22,106, 68,180, 90, 91,161, 62, 1, 70,131, 66, 63, 16, 92,164,128,131,143, 50,144, 98,234,245,131, - 90,195,104,100,139,254, 83, 66,131, 59,251,148,222, 62,112,224,192,134, 51,103,206, 68,215,174, 93,113,235,214,173, 46,187,118, -237,250,236,240,225,195, 17, 60,207, 95, 1,112, 11, 48, 41,148,130, 10, 69,113, 90,198, 14, 28, 56,176,239,202,149, 43, 25, 55, - 55, 55,104, 52, 26,252,241,199, 31,221,215,172, 89,179,254,250,245,235,151, 0,236, 47, 38, 4,149, 46,128,167,213,106,109, 75, - 22,227,164, 40,202,246,227,143, 63, 14, 43, 75,174,138,215, 87,163, 8, 33, 55, 41,138,186,193,113,220,173,163, 71,143, 38,182, - 6, 58, 77,105, 42, 57, 58, 39,206,208,176,188, 77,157, 78,103,123, 98,245, 42,136,100, 50,232,242,114,209,101,226,107,210,123, -241,155, 5,160,120, 22, 12, 72,150,207,119,235, 35, 0, 68, 38, 39, 39, 71,120,123,123,199,213,180,132, 25,134, 89,121,238,220, - 57,123, 66, 8,250,247,239,191, 18,192, 95, 69,180,100,157, 59,120, 92, 57,117,236,128, 60, 63, 51, 21, 3, 62, 26,245,175,199, -137,175,252, 0, 28,123,131, 52, 13,132, 29, 69, 97,193,212, 85,251, 25, 0,216,178,104,236, 87,235, 62,192,198, 47, 47, 32, 5, -128, 79, 49,249, 1,128,213, 0,174,108, 30, 8, 59, 0, 95, 79, 93,181,159, 2,128,159, 23,141, 93,176,121, 32, 54, 76, 63, 91, -227,176, 21,211,252,252,252, 54,174, 92,185,146,177,183,183, 71, 82, 82,210, 0, 87, 87,215, 86,185,185,185,174,168,194,137,184, - 73,147, 38,135,122,244, 30,210,108,248,200,209, 74, 27,107, 75, 36,171,211,235, 28, 58,176,115, 10,115,243,143,129, 47, 94,188, - 24, 37,180, 33, 2, 4, 8, 16, 32,160, 18,212, 62, 50,124,123,123, 40, 10, 12, 24, 42, 98,168,241,221, 58,184,246, 25, 51,168, - 7,237,234,210, 18, 15,162, 31,126,112,242,114,232, 26,250, 70,116, 48,203,145,189, 42, 9, 78,132,171,171,158, 9, 99,100, 33, -186,112, 98,127, 81, 79,248,217, 88, 38, 44, 44,172,165,167,167,103,233,210, 48,125,250,244, 65,159, 62,125,168, 45, 91,182,120, - 92,184,112,193, 99,199,142, 29,134,224,224,224, 95, 81,117,124,148, 25, 45, 90,180, 88,179,113,227, 70,153,183,183, 55,100, 50, - 89,233, 1, 51, 51, 51, 12, 25, 50, 4, 67,134, 12, 97,146,147,147,251,159, 58,117,170,255,234,213,171,245,241,241,241,243,241, - 58, 74,115,149, 88,178,100, 73,135, 10,126, 62, 71, 81,212, 83,150,101,239,121,120,120, 36,182, 2, 90, 78, 25,212,245,226,180, -110, 78,170, 57, 11,119, 85,104, 71, 36,149, 98,143, 95, 81, 95, 93,150,104,197, 93, 62, 11,179, 58,230, 25, 74,115,243, 8, 0, -145, 0, 34, 8, 33,145,207,158, 61,123,232, 12,120,116,182,164,127,221,153,197,187,215,128,108, 33, 49, 49, 17, 22, 22, 22, 10, -111,111,111, 53, 69, 81,203,254,248,227,143,247,237,144,215,105,217,130,105,146,172, 23, 17, 72,137,185,137,185, 35,187, 43,231, -252,244,251,183, 90,189,241, 88, 85, 23, 81, 20, 77,175,190,193,251,163,104, 49,222, 37, 25, 25, 25,222, 0, 96,101,101, 37, 5, -112,101, 93, 40, 6,125,217,141,122,151,216,110, 18,134, 97, 54,239,218,181,235,243,241,227,199, 23, 45, 29,241,231,159, 48, 51, - 51,195,138, 21, 43,154,204,155, 55, 47,128,101,217,217,149, 41, 89, 61,122, 15,105,182,225,135,111, 93,243, 50,115,116,219, 54, - 31,190,237,208,166, 53, 61,117,198, 60,243, 13, 6, 93,125,142,227,198, 11,202,150, 0, 1, 2, 4, 8,168,137,154, 85, 45,209, -106,101,141,221,237,219, 56,125, 50,102,112,119, 89,219, 54,110,144,200, 94,135,110,241,236,208, 1,158, 29, 58,208,254,249,121, -253,194,110,223,237,119,244,194, 45, 93,161, 49,254,112,108, 58,252, 76, 77, 85,201,162,180, 43, 63,178,235, 93,144,253, 74, 14, - 0,170,186,182,218, 69, 39, 82, 46,119,235,214, 13, 13, 27, 54,148, 4, 7, 7, 79,170,134,104, 45,122,244,232,145,140, 97,170, -142,135,234,224,224,128,143, 63,254, 24,173, 91,183,150,246,234,213,107, 81,101, 68, 75, 46,151,191,162, 40,202, 22, 0,234,213, -171,199, 45, 91,182,236, 30, 41, 2, 0, 16, 66,200, 77,154,166,111,241, 60, 31,250,251,239,191,191,116, 5,108, 7,120,182,190, - 54,109,220,199, 74,114,116,125,165, 36, 65,155,155, 91,225,239, 74, 51, 85,154, 66,165,138,144, 41,229,145, 40, 90,203, 43,178, - 97,195,134, 15, 93,129,134, 94,173,155, 94,216,242,229, 88,243,157,147,191,173, 54, 47,219,183,111,223,202,221,221, 93,206,113, - 28, 10, 10, 10,240,243,207, 63, 91, 40, 20, 10,139,129, 3, 7, 46, 45, 91, 1, 92,128,182, 35, 28,152,201,203,147,185,233,181, -168, 72,117,123,116,233,240,226,227, 33, 3,235,116,232,220, 3,143,175,236, 67,102,102, 30,114,178,243,193,243,252, 91,113,125, -166,159, 69,234,102, 95,172,217,178,112,236,215, 20, 77, 83, 30,195,190,194,135,245,115,102,109,221,186, 53, 26,128, 88, 42,149, -150,173,135, 14,138, 6,109,214,180,252,160, 7,126, 94, 60, 14,132,231, 9,128, 53, 53, 80,179,108,205,205,205, 79, 94,184,112, -161, 83,199,142, 29,113,235,214, 45, 60,127,254, 28,211,166, 77,211, 79,159, 62, 93, 50, 97,194, 4,106,238,220,185, 51, 87,175, - 94,125, 20,192,245,183, 30, 4,145,232,211,143,134,143,146,230,103,231,106,245, 58,131,190,158,117, 93, 94, 87,160, 45, 76,207, -202,213,142, 26,251,133, 62, 58, 60,244, 83, 0,111, 17,173,119,204, 79, 1, 2, 4, 8, 16, 96, 2, 8, 33, 29, 1,216, 0, 72, -163, 40,234,118,217,253,226, 83, 74, 86,107, 41,191,159,142,162, 81, 41,171, 50,230,210, 81,228,238, 99, 3,128, 3, 16, 70, 81, - 84,214, 59, 38,177,234, 89,134, 65, 65, 65,164,236,103, 25,162, 69, 8, 33,196,152,241,148,232, 98,207,146,194,219,191,188,181, -105,162,143, 17,117,216, 97, 18,186,255, 27,210,202,186,234, 85,216, 7,181,134,113,172, 59,200,212,142, 32,179,123,213,213,134, -133,133, 5,243, 60, 31,228,223, 3,132, 60,216, 79,200,131,253,228,203, 46, 32, 71,143, 30, 61, 23, 16, 16, 16,180,119,239,222, - 32, 0,213,249, 41,165,230,221,190, 65, 66,109, 65, 42,195,163, 71,143,200,214,173, 91,201,194,133, 11,201,206,157, 59, 9,170, -137,160,222,191,127,255, 63,162,162,162,200,132, 9, 19,238,161,138,192,128, 46,128,234,211, 38,245, 99,116,135,214, 27,244,227, -219,146,172,158,242, 10,239,223,222,222,254,141,244, 4, 58,213, 39,155,188,156,200,238,126,158, 41,132,144,115,132,144, 64, 66, -200, 40, 66, 72,107, 0,104, 15,212,249,200,222,234,137,246,240, 6,141,126,114,231,106,215,189,107,223,190,125,171,249,243,231, -103,234,245,122, 18, 23, 23, 71,182,109,219, 70, 46, 94,188, 72, 78,156, 56, 65,186,119,239,158, 92, 38,189,118,159,181,118, 76, -213,239, 88,174,171, 77, 45, 18, 51,204,166,219, 23,143,146, 39,215,142,144,176,131, 1,228, 95,255, 28, 67,102,126,212,201, 80, - 71, 33,211, 2,232, 93,217,117,211,187,161,101,235, 38, 54,177,241,241,241,196, 96, 48,144,137, 19, 39,146,254,253,251,147, 15, - 62,248,128,244,237,219,151,244,233,211,135,244,238,221,155, 92,190,124,153, 36, 39, 39,147,190, 61, 60, 11,124, 93,208,161, 6, - 73,107,227,232,232,152, 18, 23, 23, 71, 12, 6, 3, 9, 14, 14, 38,251,246,237, 35,193,193,193,196,223,223,159, 0,216, 61,117, -234, 84, 77, 86, 86, 22,233,223,191,255, 75, 84, 16, 53,222,209,209,241, 97, 84,108, 98,226,186, 85,191, 92,222,179,233,192,229, -223,142, 94,188,124,242,124,216,233, 19,231,111, 31, 14,189,255,236,132,163,163,227,195, 10,202,255,157,242, 83,128, 0, 1, 2, - 4, 84,207, 69,138,137,214,224, 98,177, 99, 48, 33,164,111,185,253,193,197,196,233,173,125,127,127,255,133,101,247, 75,206,241, -247,247, 95, 8,128,116,233,210,229, 0, 33,164,229,123, 72,254,228, 10,182,234, 21,173, 18,176, 47,195, 32,113, 26, 8, 49,103, -132, 49,253, 17,248,236,120, 64, 85, 31, 26,202, 12, 25,234,120,196, 92, 59, 86,245, 66, 18,197, 56,243, 8, 98, 0,193, 15, 31, - 62, 68, 76, 76, 12, 18, 19, 19,161, 84, 42,223, 58,239,207, 63,255,132, 66,161,128,189,189,189,105, 76, 87,255,102, 63, 23,225, -233, 8,179, 46,222, 72, 31,243, 15, 4, 7, 7,227,213,171, 87,144, 72, 36,144, 74,165, 96, 89,182, 90,123, 52, 93,180,226,111, -137,138, 85,209, 57,222,128, 72, 86,207,236,212,150,165,179,155,210, 55,131,196,154,132, 39, 72,214,114,166, 41,121,102, 42, 40, - 85, 74,181, 66,161, 44, 29, 46, 4, 16, 73, 81,212,227,246,128, 88,101, 38, 63,245,235,119,115,235, 51,225,193,114,205,147,136, - 10,109,244,237,219,119, 10,128,165,132,144,108,119,119,119,187,149, 43, 87, 90, 38, 37, 37,225,193,131, 7, 56,124,248,112, 26, - 91,116,163, 20, 33,100, 57, 0,116, 6,228,117,109,234,158,223,244,205,108,115, 92, 57, 36,173, 77, 45,178,112, 25,114,122,196, -132,169,211, 55,206, 30,130,130, 60, 13,246, 95, 12,199,185,187, 79, 63, 4,240, 39,170,240,123,219,124, 29, 79,128,180, 62,195, -135, 15,191,119,245,234, 85,235, 29, 59,118,128,101,217, 10,183, 29, 59,118,224,210,181,187,179, 0,220, 49, 49, 89, 14, 77,155, - 54,189, 20, 26, 26,106,163, 84, 42,113,241,226, 69,100,103,103,151, 42, 89,126,126,126, 84,118,118,246,232,159,127,254,121,196, -139, 23, 47,126,184,118,237, 90, 6,138,214,130,124,163, 34, 48, 12,243,148,101, 13,206,246, 46, 45, 69, 35,135,244,232,145,159, - 17, 1, 51, 43,119,220,188,255,244, 84,118, 86,134,134, 97,152,167,101,207,127, 31,249, 41, 64,128, 0, 1, 2,106, 6,138,162, -130, 8, 33,190, 20, 69, 5,149,255,173,252,247,146,243, 2, 2, 2, 74,247, 75,174, 9, 12, 12, 92, 85,102,191,240, 61, 37,175, - 74,103,248, 94,197, 12,178, 87, 69, 39,233, 30,252, 6, 93,204, 73, 72, 28,187, 65,218,250, 67, 48,142,221,145, 16,113, 5,247, -207,174,195,203,232, 63, 65,120, 14,246,173,188, 76, 77,136,214,217,217, 25, 90,109,145,107,150, 78,167,131, 68,101,169,157, 59, -121,172, 28, 0,120,145, 92, 87,134,193,154,100,208,188,155, 15,188, 82, 9,194,236,138,132, 10,175,212,162,235,190,155, 56, 17, - 18,137, 4, 18,137, 4, 84,177,235,143, 41, 68,139, 42, 62,153, 47, 26,190,170, 40, 17, 84,161, 76,188,255,224,210, 25, 94,178, - 23,145, 82, 93,212, 77, 36,235,120,114, 42,149, 59,109, 74,122,149, 42,101,146, 66,169,140, 84,152,169, 74,137, 22, 69, 81, 79, - 1,128,136,197,123,247, 45,159,225,174, 74,125,166,210,222, 14,134, 90,203, 27, 42, 49,179,252,236,217,179,182, 34,145,168, 62, -199,113, 72, 72, 72, 64,116,116, 52, 54,108,216,144,154,151,151,215, 43, 60, 60, 60,182, 44,119,228, 20,210,195,123, 87,204,110, - 38,138, 8,145,235,158, 70,213,184,246, 88,183, 25,218,255,195, 94, 30,167,167,140, 91,140,161,131, 62,192,132, 94,174, 36, 46, - 57, 83, 11,224, 98,177,244, 90, 29,146,194,195,195,251,245,236,217,243, 95,237,218,181,115, 33,132,160,109,219,182, 24, 61,122, - 52,246,238,221,139,251,247,239, 35, 55, 55,215,112,225,194,133,245, 0,118,153,152, 44,165,165,165,229,185,203,151, 47,219, 40, -149, 74, 92,184,112, 1, 26,141, 6,246,246,246,152, 62,125,186, 52, 48, 48,112, 79,110,110,238,200,128,128, 0,121, 92, 92,220, -166,243,231,207, 55, 65,209,186,115,111, 85, 2,189, 94,191,125,255,222,221, 27,167,207,152,217,224,242,173, 7,193,186,252, 60, - 11, 71,199,196, 92, 27, 75, 51,243,245,223, 47,111,172,215,235,167, 84,156,159,127,212, 42, 63, 5, 8, 16, 32, 64,192, 91,168, -146,139,148, 37, 79,229,201, 86, 77, 72, 26, 0,141,191,191,255, 34,138,162,130,252,253,253, 23, 5, 4, 4,104, 0, 36,255, 21, - 36,171,148,104,249,250,250,134, 4, 5, 5,193,215,215, 55,164, 82, 19, 60, 7, 67,220, 85, 24,226,174, 66,209,101, 22,126, 15, - 24, 83,238,230,249, 90,167,110,200,138,139,151,117, 58,157,104,247,238,221,165,126, 91, 0,192,113,220,123, 47,197,154, 16,173, - 98,162,247, 86, 34,154,202,204, 66,182,127, 57,178,179, 21, 87, 40,214,255,121, 10, 73, 58,158,253,225,137,161,240,118, 54, 89, - 93,153,205, 19,115,166, 32,241,218, 37, 40,205,204, 18, 63,191, 26, 89,170, 98, 21,147,172,231, 0,208, 68,102, 30,188,117,246, -208,238,245, 37,144,232, 79, 31, 65,178,142,215,109,125, 97,220, 85, 73,101, 3, 33, 4,207,159, 63, 71, 97, 97, 33,110,220,184, -129, 99,199,142,165, 85, 64,178,208, 84,102,246,199,206,175, 62,237, 84, 39, 47, 69,162,191,125, 9,201, 58,222,164,161, 46,235, -182, 67,187, 73,104,234, 2, 69, 51,138, 62,157, 91, 97,206, 23,195,176,110,231,239,172,222,182,135,239,198,147,103, 62,201,215, - 25, 22,153, 72,178, 74,197,198,240,240,112,215,240,240,112, 25, 0,159,209,163, 71,159, 25, 49, 98, 4, 66, 66, 66,112,234,212, - 41, 39, 0,234,226,243, 86,160,104,161,236,213, 0,158, 85, 38, 60, 74, 36,146,131,151, 46, 93,114,115,112,112,192,165, 75,151, -160,209,104, 48,117,234, 84,253,140, 25, 51, 36,126,126,126, 84, 78, 78, 78,169,146,117,227,198,141,140,202, 72, 22, 0, 36, 37, - 37,157, 61,118,120, 95,215,158, 61,123, 14,107,230,212,186,206,179,188,220, 87, 74,165, 92,113, 45,228,138,228,118,232,245, 77, - 73, 73, 73, 97, 21,231,103,176,201,249, 41, 64,128, 0, 1, 2, 42,135, 73, 92,164,156, 50, 85, 19,148,185, 78, 28, 16, 16, 16, - 29, 16, 16,240,134,226,245,142, 40, 63,235,240,116, 73,159, 86,171, 56, 90, 92, 78,194,219, 55,192,243, 53,185,217,183,126,179, -180,180,100, 21, 10,197, 27, 68,139, 55,209,102,230,241, 3,120, 54,109,108,169,146, 85,162,108, 97,128,223, 59, 17, 45,158,231, -111, 0,120, 35, 17, 74,219, 86, 99,214, 15,113,233,230,218,172, 1,109, 60,188, 1, 47, 11, 89,237,210, 71, 6,109, 76, 30,249, -240, 97, 5, 78,214,165, 54, 89, 35,228, 42, 69,188,194, 76, 85,158,100,189, 0, 0,149,157,211,136, 31, 6,182,238,229,209,186, - 5,205, 30, 90,139,164, 66, 99,190,255, 67,131,225, 89, 1,249,173,146, 60, 92,250,193, 7, 31, 44,181,178,178,146,111,220,184, -209,194,209,209, 17, 44,203,234,203,147, 44,165,109,171, 49, 27,134,182,233,214,170,190, 37,109, 60,250, 19, 18, 53, 92,225,134, -103,198, 61,166,144, 44,107, 11,179,243, 91, 87, 77, 83, 40,101, 98,104,181, 90, 4,110, 57,138, 11,215,163,124,211,163, 78,156, - 7,112,254, 29, 42,228,231,190,190,190,235, 86,172, 88, 1,163,209,136, 73,147, 38,225,233,211,167, 23, 30, 61,122,180,161,113, -227,198,243,191,250,234, 43,135,250,245,235,227,147, 79, 62,145, 24,141, 70,191, 74,108,124,191,127,255,126, 95, 15, 15, 15,132, -132,132, 32, 59, 59, 27,246,246,246,152, 49, 99,134, 52, 32, 32, 96, 79,110,110,238,200, 85,171, 86,201,159, 63,127, 94,165,146, -245, 70,189,230,184,239,182,173,155, 54,191, 99,231,238,244,147, 39,177,108,130,151, 55,125,229,210,169,171, 86, 86, 86,123, 18, - 18, 18, 94,231,231,176,182, 53,206, 79, 1, 2, 4, 8, 16,240,126, 64, 81,212,233, 98,191,171, 55, 84,174,242, 36,172, 68,177, - 42,187, 95,254,252,226,227,239,227,101,121,123, 5,196,235,205,240, 14,190,190,190, 38, 79,171,231, 11,210, 76, 34, 79,229, 49, -168, 53,140, 13,204, 32, 90,228, 77, 67,162,178,212, 14, 89,113,241,114,101,231,170, 84, 42,147, 21, 45, 94,167,173,174, 80,106, - 68,180,138,125,180,206, 17, 66,222, 32, 90, 22,118,173,188,191,254,106,246,250,238, 35, 6,208,169, 95,116, 65,118,190, 78,247, -213, 3,150,127, 89, 88, 53,201, 42,234,197,141,113, 74,149, 89,164, 92,165, 44, 75,178, 18, 0, 64,110,219,194,107,193,156,233, - 91,122,143, 25, 66,165, 77,237,142,172,108,141,110,126, 52, 75, 37,105,200,200,135,192,149,138,204, 93,190,124,121, 27,128,109, -222,222,222,169, 42,149, 10,249,249,249,111,149, 65, 73,122,187,141, 24, 64,167,126,222, 9,153, 5, 6,221, 87,209, 44,146, 53, -252,193,234, 72,150, 77, 93,243,243, 91, 87, 78, 83, 38,191,124, 1,137, 68, 2, 51, 51, 51, 92,252, 51, 18,233,209, 39,223,133, - 96,129,166,233,101,254,254,254, 75,167, 79,159,142,140,140, 12,156, 58,117, 10,131, 6, 13,194,129, 3, 7, 28,207,156, 57,179, -206,199,199, 7, 12,195, 32, 40, 40, 8, 70,163,241,113, 37,102,134, 77,158, 60,121,254,136, 17, 35, 16, 22, 22, 6,181, 90,253, -134,146,149,157,157, 61,122,203,150, 45, 35,226,226,226,170, 85,178,202,193,171,105,139,246,146,133, 75,126,132,174,240,149, 40, - 45,233, 86, 72,240, 69,250,102,102,102,166, 18, 64, 78,109,243, 83,128, 0, 1, 2, 4,152,172,106, 85,198, 69,210,138, 73, 84, - 90, 69,251,101, 8, 86, 69,251, 84, 57, 21, 76, 95,238,248,253,191,242,158, 76, 82,180, 68,118,109,192,166, 70,149, 33, 90,175, -222, 56, 46, 55,175,103,210,208,161,145,133,104,235,174,210, 56, 90,242,140,140, 12,185,181,181,181,182, 44, 65, 80, 42,149,112, -112,112, 64, 86, 86, 22,182,111,223, 14, 84,239, 20,205,214, 25, 49, 14, 94, 99, 38,225,118, 67, 41,136,209, 80,170,108,109,157, - 56,241, 13,178, 37,145, 72, 74,124,195,170,235,116, 67,139,149,166,155, 0, 72,123,167,102,223,202, 85,170,137,114,235, 70,214, -115,166,125, 46,142,123,165,195,229,238, 11,179,143,126,255,181, 89, 34, 49,155,158,128,156,235,213,216,123,246,209,207,251,202, - 43, 89, 47,219, 57, 53, 91, 44, 87,202,191,144,214,107, 82,223,127,238, 52,113, 92,170,142,186,236,245, 85,238,177,213, 95, 41, -159,195,124,254, 75,100, 95, 49,161,120,150, 14, 26, 52,104, 41, 33,132,240, 60,191, 4, 0,202,166,119,238,140, 47,196,207, 82, -180, 8,238,190, 56,235,216,247, 95,155, 39,162,234,244, 90,183, 29,218,205,206,178,206,249,173,171,166, 43,213, 73,241,144,201, -100, 48, 55, 55, 71, 98,106, 14,196, 34, 70,243,142,245, 77,214,163, 71,143,175,167, 77,155,134,200,200, 72, 76,157, 58, 85,157, -144,144,240,219,161, 67,135,166,126,243,205, 55,162,254,253,251, 67,173, 86, 99,205,154, 53,198, 63,255,252,115, 21,128, 53, 21, -214, 71,145,232,243,111,191,253,150, 36, 39, 39, 83,207,159, 63,135,189,189, 61,102,206,156, 41, 93,181,106, 85,169, 79, 86, 77, -148,172, 18, 36, 37, 37,133, 92,184,116, 19, 31,158, 93, 15,214,168, 11,201,206, 72,184, 26,243, 44, 43,164,158, 84, 58,175, 65, -251,182,181,202, 79, 1, 2, 4, 8, 16,240, 94, 84,172,219, 85,237,255, 7,160,162,161, 67,147,136,214,227,159, 22,127,230,244, -217,244, 5, 80, 56,118,131,238,225,113,240,249,169,165,138,150,220,204, 18,245, 26,187, 32,187, 64,135, 35,193,119, 1,224,113, - 77, 82,149,151,151, 7, 79, 79, 79,108,246,107,213, 91,155,151, 33, 87, 0,208,201,234,104, 79, 72,123, 92, 62,115,230, 76, 33, -207,243, 7, 1,156,169,198,204, 50, 55, 55,183, 77, 63,254,248,163,212,101,204,103,200,191,117,173,188,130, 2,133, 66, 1,153, - 76,134,136,136, 8, 92,190,124, 89, 15, 96, 89, 53, 5, 26,202,178,236,253, 67,135, 14,189,108,217,172,193, 0,207,118,238,179, - 22, 45,244, 55,127,112,237, 2,150,172,218,196,183,236,208, 63, 39,240,192,137,188, 28,179,198,125, 52,234, 71,247, 76,184,213, -251,229, 72, 86,178,115,211, 70,189,219,181,113, 91,176,100,201,226, 58,209,215, 46,226,155,213, 91,137,147, 71,223,156,213,199, - 78,230,166, 43,155,124,160,125, 21, 19,102, 74, 30,134,132,132,108, 3,176,173,100,191,124,122,253, 87,108,224, 91,117, 28,144, - 21,120,224, 88, 65,174,121,227,190, 85,165,215,198,101, 88,215,134, 54,150,231,127,250,238, 31,202,148,164, 4,200,100, 50,152, -153,153, 33, 65,157,141,165,235, 15, 23, 24,120,126,192,187, 18, 45,115,115,115,153,193, 96,192,230,205,155,145,144,144,208, 5, - 64,194,157, 59,119,182,142, 26, 53,106, 99,219,182,109,157,163,163,163, 31,231,231,231, 79, 7, 16, 83,153,145,186,117,235,118, -177,177,177,161,110,222,188,137,127,252,227, 31,250,153, 51,103, 74, 38, 76,152, 64,101,101,101,213, 86,201, 2, 0, 52,104,208, -192,187, 95,159,206,232,214,111,106,136, 94,155,125, 53, 46,102, 79, 8, 77,174,203,107,155,159, 2, 4, 8, 16, 32,224,127, 6, -181, 11, 12,238, 13,136, 90, 89, 97,138, 91, 3, 73,202,222,239,103,146,188,103, 55,136, 38,108, 27,201, 61,254, 5, 57,189,102, - 2, 57,243,211, 28, 50,117,176, 27,113,182,165, 82, 90, 89, 97,138,247,219,196,237,141,213,189, 7,181,134,177, 95, 11,144,126, - 45, 64, 6,183,130, 17,192,162,246,237,219,159,152,225,245, 58,142,214, 12, 47, 16, 0,255, 0, 96, 86, 73,178, 42, 90, 49,220, - 30,192,118, 79, 79, 79,246,202,149, 43,228,209,200,190, 36,220,217,154, 76,159, 62,157,124,243,205, 55,100,236,216,177,196,198, -198,134, 45,206, 8,251,234,108,126,248,225,135, 13, 1,160, 81,163, 70,117, 59,184,180, 76,137, 8, 62, 69,174,238,221, 72,118, -206, 24, 78, 58,181,117, 73,175,239,220,243,190,194,190,117,187,106,178,175,212,102,253,250,245, 23, 18, 66, 6, 16, 66,236, 1, -192,201,201,202,172,189,115,203,228,251,151, 78,145,107,251, 54,145,157, 51,134,147,206,238,174, 25, 13, 93,124, 98,228,182,206, - 94,166,216,172, 8, 21,166,183,141,115,186, 93,203,174,247,170, 72,111,169,205,102, 94,159,156,124,153,156, 74, 66, 67, 67,201, -153, 51,103,200,181,107,215,200,222, 67, 39, 73,227,142, 35,243,173,219, 14,237, 86,131,170, 83, 89, 58, 45, 6, 15, 30, 76, 30, - 63,126, 76, 6, 14, 28, 72, 0, 88,212,210,230,137,184,184, 56, 18, 21, 21, 69, 22, 45, 90, 68, 0,236,158, 54,109,154, 38, 39, - 39,135,244,237,219, 55,161,152, 96,137,106,147,206,230, 77, 27, 4, 14, 27,210, 99,217,140,127,140,240,126,215,252,124,143, 16, -108, 10, 54, 5,155,130,205,255, 5,155,255,205,176, 47, 86,181, 74, 62,219,155,164,104,133, 0, 44, 50,176,173,141,173,225, 95, -171,214,252, 52,111,243,182,221, 11,190,158,245,185,170, 71,247,126,136,188,244, 43,142, 5, 29, 42,208,234,244,107, 36, 12,126, -140,202, 64, 97,108, 53,169, 40,142,163,245, 6,194,195,195,149,245, 90,188,142,193,244,164, 40, 54,235,214, 26,222,160, 26,192, -228,187,119,239,254,232,227,227,179,242,139,110, 94,195,103,116,237, 13,163,209,136,189,123,247, 34, 62, 62,254, 55, 0,139, 77, - 85,220, 34, 35, 35,211, 93, 91, 56,206, 22, 51,162, 5,211,199, 14,179, 73,123,250, 0, 47, 31,134, 3, 0,116, 58,141, 49,229, -241, 85,143,154, 36, 78,161, 80,132,218,216,216, 60,178,177,177,201,106,213,172,209,100, 25,196, 75,166,142,254,200, 54, 35, 46, - 6,137,209, 69, 35,163, 58,109,161,225,229,227, 43,206,181, 41, 93, 71, 71, 71,153, 74,140, 41, 21,166, 87,175, 53,166, 62,137, -105,103,138,157, 66,157,126,213,242,117,123, 63,248,110,193, 68, 89,157, 58,117,112, 55,234, 9,150,172, 61, 80,160,209, 27, 7, -164, 71,158,120, 47,195, 99,132, 16, 24,141, 70,147, 39, 58, 84,130,175, 61, 60, 60, 90,175, 92,185,210,201,207,207, 15,239,170, -100,149,197,179,184, 36,255, 6,141,154,187, 62,121,116,215,167,158, 66,242,175,119,201, 79, 1, 2, 4, 8, 16,240, 63,131,193, -197, 98,206,228, 50,159,225,213, 18,173, 18, 68,189, 66, 33,128, 21,205,152,252,173, 11, 87,174, 91, 74, 83,235, 39,242,132,252, -202,210, 88,254, 60, 3,105,239,152,184, 66,177, 8,236, 7, 67,199,138, 0, 64, 44,170, 93, 7, 89,140,199, 0, 70,252,114, 61, -172,227, 47,215,195,254, 89,252,219,119, 0,106, 52,150,107, 46, 66, 84,119,215,230, 13,122,180,119,147, 51,156, 6, 47, 31, 62, - 69,102,129, 22, 23,163,227,179,105, 66,255, 90,211, 68, 61,127,254,252, 15, 0,176,179, 80, 62,236,225,218,162,113, 79, 79, 55, -165,152,210,227,229,131,187,200,209,232,113, 33, 58, 62, 7, 20, 85,107,135,234,247,149,222,212,200,147,183,127, 7,213,151,162, -168, 75,139,102,140,145, 45, 93,123,240,189,146, 44, 0,133, 73, 73, 73, 25,133,133,133, 86,201,201,201,122,212, 62, 72,220,147, -220,220,220,182,115,230,204, 89, 49,127,254,252, 5,223,127,255,189,164, 54, 62, 89,149, 33, 43, 41,254,120, 79,183,247, 87,254, - 2, 4, 8, 16, 32,224,127, 2,147,203,125,194,100,162, 85, 74, 24, 94, 33, 13,192,244,230,205,201,220,103,207,160,127, 95, 41, -171, 72,233,122, 71,220, 6, 48,164,214, 87,211, 84,222,173,199,241,249,161,143,227,243,193, 19,194, 19,162,163,105, 36, 22, 24, - 12,171, 30, 63, 79,170,253,172, 59,138,226,110, 63, 73,208,220,121,154,168, 37, 60, 79,120, 66,244, 20,133, 20,163,145, 95, 21, -253, 60,254,228,127, 66,122,211, 35, 79, 92, 15, 98,169, 30,215, 67,163,230, 22, 20, 24, 54,165, 63, 60,113,227, 61,150,139, 49, - 50, 50,242,211, 46, 93,186,124,198,113,220, 86, 0,198,119,176,165,103, 89,246,235,192,192,192,223, 34, 35, 35, 15,223,184,113, - 67,253, 62, 72,214, 95, 90,254, 2, 4, 8, 16, 32,224,239,138,218, 45, 42, 93, 25,222, 39,201,250, 79, 68,212,147,212, 61,181, -102, 0, 0, 32, 0, 73, 68, 65, 84, 23,158,127,133,221,232, 39, 47,218,252, 55,164, 55,245,225,241, 59,169,192,232,191, 40,123, - 47,112, 28,119,225,125,146,234,115,231,206, 53, 69, 5,203,234,252,167,149,191, 0, 1, 2, 4, 8,248,219, 98,114,101,228, 75, - 36,228,141,128,191, 1,200,251, 34, 89, 2, 4, 8, 16, 32, 64, 64, 45, 80,169,162, 69,161,242,153, 3,151,106,240, 7,181,153, -125,112, 73,176, 41,216, 20,108, 10, 54, 5,155,130, 77,193,230,255,156,205,191, 35,236, 81,228, 16,127,186,248,179, 74,242,245, - 62, 33, 76,125, 21,108, 10, 54, 5,155,130, 77,193,166, 96, 83,176,249,119, 71,133,142,240, 64,145,243,176, 0, 1, 2, 4, 8, - 16,240,223, 4, 89,241, 86,219,227, 2, 4,252,213,100,171,148,112,213,198, 71,171,101,241,231,147,191, 48,177, 51,236,237,237, - 39,187,187,187,187, 72, 36, 18, 58, 47, 47,111,249,149, 43, 87,150,149, 63,169,135,171,232, 14, 67,163,225,235, 95, 40,128, 98, - 0,154, 6, 71,240,242, 90,132,166,131, 80,238,255,209,112, 84,212,177,249,157,162, 25, 41,199, 26,192, 25, 13, 40,114,183, 42, - 2,207,179,241,156, 65,215,191,178,139,235,123, 12,107,204,114,252,247, 0,217, 12,208,211, 0,126, 11, 5,209, 84, 2,246,103, - 10,204, 63,192,144,213,224,168,175, 68, 98,102,161, 58,252,104,226,223, 33,195,142, 28, 57,194,188,203,245, 35, 71,142,172,112, - 1, 81, 7, 7,135, 32,165, 82,217,162,178,235, 10, 10, 10,212,106,181,218,231,111, 94, 31,123, 2,248, 9,128, 91,185,223, 99, - 0,204, 6, 16,252,174,127,224, 13,136,236,128, 41, 18,224, 43, 0, 48, 0,171, 83,129,109, 33,255, 65, 62,134, 54, 54, 54, 87, - 69, 34,145, 83, 65, 65, 65, 65, 94, 94, 94,115,115,115,243,103, 42,149, 74,197,178,236,227,180,180,180,158, 85, 93, 75,138, 38, -165, 84,139, 54,128,121, 44, 48,138,163,233,153, 98, 96,179,142,231,183, 22,183,224,166, 44,112, 59, 13,175,151,231, 90, 0, 96, - 75, 13,143, 11, 16,240, 87,224,157,102, 29,182, 42,106, 31,224, 13,160,103,199,142, 29,237, 10, 10, 10, 16, 19, 19,147, 10,224, - 42,128,144,226, 45,246,125,164,148,166,233, 31,214,173, 91, 55,111,230,204,153,165,139, 65, 71, 68, 68,192,195,227,237, 24,161, - 12,141,134, 87, 78, 93,178,189, 29, 25,139,142,125, 63, 46, 38, 90, 52, 80,160,134, 79, 63,175,218, 38,193,220,210,210,114, 57, - 69, 81, 35,105,154,174,182,209,224,121,158, 35,132, 28,201,202,202, 90, 10, 32,175, 38,127,164, 82,202,140, 44,199, 85,248, 31, - 34,134,225, 10, 10,117,149,134,189,168, 87,175,222, 13,154,166,155,149, 93, 48, 27,120,115, 1,237,202,142,177, 44,251, 50, 61, - 61,221, 20, 18, 42,167, 69,146,217, 20, 37,233, 7,154,111, 5, 80,160, 64,199,242,156,254, 34,207, 26, 54, 0,208,190, 11,201, -178,111,212,252,218,151,139, 3, 27, 70, 61,140,193,162, 25, 99,241,253, 79,187,177,112,246,103,216,176,253, 0,102, 79, 30, 3, - 87, 87,183, 42, 91, 93, 30,146, 85,139,103,141,236, 27,176,249,112,247,133,211, 71,202, 2, 54, 31,233,177,104,198, 40,233,170, - 77,135,123, 44,154,241,137, 44, 96,211,225,238, 11,103,141, 84,172,218,114,148, 7, 48,174, 54,137, 28,227,228, 80, 64,177,108, -133,111,198, 68, 36,210, 29,120,156,172,250,119, 60,209,126,126,126,238, 26,141,230,238,216,126,237, 3,219,181,106,144, 84,209, - 57, 25, 41, 73, 13,158, 61, 10,247, 23, 75, 20,158, 31,249,239,142,168, 82, 30,144,201,154,197,196,196, 56,241, 60, 15,142,227, -192,178,108,233,167, 94,175, 71,207,158, 61,223,215,196,153, 33, 0,150, 23, 61,172, 8, 0,112,248, 29,108,153,137, 68,162, 47, -165, 82,169, 55,203,178, 46, 0, 32, 22,139, 31,234,116,186, 16,150,101,215, 1,200,175,161,189,245, 73, 73, 73,174,102,102,102, - 48, 24, 12,165, 11,208, 51, 12,227,220,184,113,227,205, 90,173,214,233, 93,111,222, 14,152,210,181,123,247, 13, 19,230,205, 99, - 52, 87,175, 98,195,174, 93,235,145,155, 11, 0,155,171,187, 86, 42,149,158,167,105,218,177, 38,255,199,243,124,188, 94,175,239, - 95,147,107, 68, 34,145, 83,114,114,178,173,131,131, 3,242,242,242,160, 82,169, 84, 37,251,239,130, 16,128, 26, 0,244,100, 25, -102,142,149,181,117,143,187, 23, 46,168,218,180,105, 67, 51, 12,179, 16,166, 7,169,150, 1, 88, 67, 8, 81, 20,247, 23, 27, 58, -119,238,220,133,162, 40, 22, 0,225,121,158, 14, 13, 13, 29,195,243,188,168,184,205, 91, 3, 96, 23, 0,157,192, 3, 4,252, 63, -168, 89,219,107, 74,180,206, 0,240,238,216,177,163, 98,244,232,209,240,246,246,134,147,147, 19,228,114,121, 81, 35,158,145, 97, -119,239,222,189, 79,174, 94,189,250,201,169, 83,167,240,224,193, 3, 13,128, 63, 1, 84,248, 80,247,241,237, 62, 83,110, 38,219, - 8, 0,105, 47, 51,212, 47,159,191,218,168, 86,171,215, 0, 40, 27, 34,188,249,184,113,227,230,206,154, 53, 11, 65, 65, 65, 56, -112,224, 0,116, 58, 29,242,242,170,224, 47,133,175,144,117, 57, 16, 80,197, 1, 9, 33,128,210, 22, 80,217,213, 58,167, 44, 45, - 45,151,207,158, 61,123,142,171,171,107,105, 20,115,163,209, 8,150,101, 97, 52, 26,145,149,149,133,185,115,231, 22,117,180,132, -128,231,121,156, 61,123,118,230,228,201,147,145,149,149,245,101, 69, 54, 59,123, 54,186, 67, 83,116,195, 18,173,134,112,220,203, - 91,247, 94,118, 96, 57,142,209,106, 13, 21,174, 84, 46,151, 75,170, 36,121, 98,177,184,225,131,223,127,183,165,165, 82, 16,142, - 3,120, 30,132,231,139,179,179,120, 35, 69,191, 17,142, 7, 49,114,224, 89, 30,172, 70, 7,175,105,211, 76,201,138,174, 98,169, -226,192,167, 95,204,171,223,169,115,103,113,147, 70, 14, 96, 57, 30, 79,227, 94,214,191,123,231, 86,183, 35,123, 54, 79,213,107, -242,198, 0,168, 85,156, 45,169,178,206,133, 77, 63,255,210,240,246,189, 40, 4, 95,185,138, 75,151, 67, 0, 0,231,175,220, 40, - 33,220,213, 22, 21,216,252,182,179, 39, 13,149, 5,110, 58, 40,158, 61,105, 24,243,253,166, 67,226, 89,159,125,196, 4,110, 60, - 32,153,245,217, 71, 76,224, 79, 7, 36,179, 38, 13,101, 2, 54,236,116, 7, 96, 9, 32,171, 50, 99,149,149, 17,197,178,178,127, - 61, 75,101, 0, 32,109,235, 86, 24, 95,189,130,195,210,165, 0,128, 79,155,219,153, 60, 52, 97,109,109,125, 71, 44, 22, 55,172, -238, 60,163,209, 88, 45, 9,246,243,243,243,208,104, 52,119, 88,150, 37, 34,145,200,127,236,176, 15, 78, 12,232,225,145, 81,246, -156,136,136,251, 86,171, 86,253, 62,244,240,221, 60,242,137,167,249,221,160, 31,252, 58,248,206,223,125,191,138, 14,153,214,233, -116,120,252,248, 49,202, 46,242, 94, 6, 92, 45, 31, 41, 26,192, 6, 43, 43,171, 78, 25, 25, 25,159, 2, 88,148,155,155,235,206, - 48, 12,234,213,171,183, 72,175,215, 63,181,176,176,216,145,147,147,115,163, 88, 53, 50,117,201,128,158,117,234,212,217,123,252, -248,113,203,246,237,219,211,233,233,233,104,218,180, 41, 50, 51, 51,189,174, 94,189,234, 57,105,210,164, 73,121,121,121,227,139, - 95, 6, 77, 69,107,165, 82, 73, 38, 76,152, 64,113,220,235,219,221,185,115, 39,250,183, 97, 91,216,212, 85, 22,106,245, 36, 39, -248,177,197, 63, 36, 18,201,159,241,241,241, 57, 53,205, 12, 9,240,213,132,121,243, 24,179, 23, 47, 96,118,255, 62, 62,205,205, - 21,125, 95,164,110, 85, 75,180,104,154,118,220,123,224, 87, 39,169, 84, 10,150,101, 75,201, 96, 73, 27,101, 52, 26, 97, 48, 24, - 96, 52, 26,193,113, 28,140, 6, 35, 2,190, 91, 93,235,182, 80,169, 84, 42,237,237,237, 83,149, 74,165,242, 29,201,101,227, 76, -154,254,162,157,167,231,228,165, 67,135,202,195,194,194,228, 52, 77,131,101, 89,172, 89,179,134, 37,132,212,117, 5,234, 60, 0, -114,107,106, 91, 38,147,137,246,236,217, 51, 70, 42,149, 2, 0,244,122, 61,218,180,105, 67, 9,125,190,128,127, 35,217,122, 75, -229,170,138,104, 13,204,205,205, 5,199,113, 48, 55, 55, 7,195,188,217,239, 91, 89, 89,161, 95,191,126,232,217,179, 39, 70,143, - 30,141, 7, 15, 30, 40, 70,143, 30,221,175, 50, 99, 99,231,249,162,145,147, 93,113,103,194,219, 95, 63,125, 47,112,231,183, 71, -109, 82, 82, 82,230,149, 57,109,210,148, 41, 83,168,140,140, 12,140, 28, 57,242,170, 78,167,251, 16, 85, 60,124, 28,143,151, 62, -163, 63, 5, 79, 40,197,186,208, 95, 40,189, 86, 67,104,154,214,148, 12, 29,214, 38,151, 40,138, 26,233,224,224,128,131, 7, 15, - 66,175,127, 59, 92, 88,157, 58,117, 16, 29, 29,253, 90, 85, 99, 24,116,238,220,153,161, 40,106, 36,128, 47, 43,182, 73, 55,188, -126,251,133,109,201,190,111, 63, 55, 73,103, 79, 58, 53, 57,181,128, 0,160, 22, 47, 94, 92, 74,220, 0, 96,249,242,229,166,164, - 19,180, 88,140,180,144,144,215, 13,177,136, 6, 45,161, 64,137, 1, 90, 84, 52,138, 10, 2, 16, 14,224, 89,128, 55, 2,114,251, - 70,166,100,131, 87,131,198, 78, 65,171,214,110,169,171, 51, 18, 28, 60, 25,140,184,184,231, 96,104, 26,205, 91, 56,225,131, 94, - 61,196,158, 29,187, 52, 90,189,108,222,169,228,132, 39, 3, 1,132,213, 56,163,121, 34,111,209,216, 26, 59,118,222,133,141,165, - 25, 70, 14, 29, 4,133, 92,134,239,127,250, 21,223, 45,156, 1,167,230,142,216,182,126,101,165,151, 91, 88, 88,172,112,113,106, -225,184,101,207,105,184, 56, 59, 51, 91,246,158,134,139,107,241,167,155, 11,179,101,239,105,184,186,185, 50, 91,246,158,134,187, - 91,235, 38,119,212,161, 43, 50, 51, 51,103, 84,158,159,229,202,232,131,162, 50, 18,231,243,165,141,246,139,169, 83, 1,160,148, -104,213, 4, 98,177,184, 97,114,114,178,109,117,231, 85,167, 26, 20, 43, 89,119, 88,150,197,171, 87,175,168,236,236,108, 82,183, -110,221,161,231,182, 45, 58,222,191,187, 71, 38, 0,220,191,127,191, 94, 64,192,170,161,135,238,228, 66,115,107, 19,245,175,223, - 67,248, 79, 63,244,190,115, 50,208,207, 19,197, 75, 66,148,135, 78,167,139,107,215,174, 29, 41,254,222, 64, 38,147, 73,202,213, - 55,135,150, 45, 91,190,165, 90,155, 48,164,184,225,230,205,155, 51, 92, 93, 93,225,236,236,124,163, 83,167, 78,117, 84, 42, 21, -206,157, 59, 7, 23, 23, 23,183, 58,117,234,132, 30, 57,114, 68,252,245,215, 95,123,236,218,181, 11, 0,102,154,144,157,125,125, -124,124, 14, 6, 5, 5,201, 37, 18, 9, 52, 26, 13,162,163,163, 97, 97, 97, 1,169, 84,138,143, 62,250,136,233,214,173,155, 85, -175, 94,189,142,197,198,198,142, 65, 13,102, 64,105,181, 90,178,104,209, 34, 40,149, 74, 40,149, 74,168, 84, 42,168, 84, 42,152, -201, 65,109,157,221, 88, 49,107,123,182,226,203,165, 91, 3,247,110, 89,118,165, 81, 35,254,155,196,196,196,236,154,214, 5,205, -213,171, 48,187,127, 31, 40,243,236,154, 10, 11, 85, 61,248,251,251, 87,167, 72, 65, 34,145,160,107,215,174,213,218,171, 87,175, -222,111, 34,145,232,141, 55, 83,150,101,229,254,254,254, 92,108,108,172,138,166,105, 21,207,243,240,247,247,231, 88,150,149,219, -218,218,222,224,121, 62, 53, 61, 61,125,120, 85,118,123, 1,242, 27,192, 48, 74, 44,254,210,222,193,161,169,119,243,230,202, 75, -151, 46, 49, 0,224,232,232, 72,212,106,117,246,201,147, 39,243, 68,192,207,142,132,236,169, 1,201,210, 1, 88, 64,211,244, 6, -153, 76, 38,106,210,164, 73,252,146, 37, 75,110, 22, 43,164, 32,132,208, 77,154, 52,241, 82, 40, 20,142, 58,157,142, 69,209,208, -161,160,102,253, 13, 64, 8,241, 44,226,237,165,208, 3,144,150, 8,248, 69,189, 29,172,203,253, 14, 0,233,197, 47,138,118,149, -236,103, 0,120, 0,160, 53, 0,219,226, 99,183, 41,138,202,172, 69, 50, 43, 87,180,130,130,130, 74, 95, 97,125,125,125, 75, 59, - 22,115,115,115,220,190,125, 27, 20, 69,193,220,220, 28,117,234,212,129,133,133, 5,114,115,115,241,224,193, 3,196,196,196,224, -197,139, 23,160, 40, 10,205,155, 55, 71, 73,101, 47,131,210, 6,110,255,143, 65,144,155,201, 64, 81, 64,251,222,238,112,239,217, - 6, 29,195,158,205,190,115,137,218,174, 86,171, 31, 3, 16,181,105,211,102, 82,231,206,157,177,118,237, 90,232,116,186,181,149, -144,172, 82,155,215, 30,176, 29, 0,192,222,222,126,254,190,115, 79,149,227, 6,180, 40, 84,171,213, 63,212, 34,115,222,104,136, -211,211,211, 77, 94,139,143,231,121,100,101,101, 85,105,179,188, 66,176,110,195,166,186,121, 57,169,248,246,251,125, 48, 26,141, -152, 55,111, 30,120,158, 47,221,178,179,179, 77, 74, 39,225,184,183,181, 3,186,104,244,148, 18, 1,141, 71, 21,241,138,132,131, -155, 64, 17,128,226, 0,188,125, 95,229, 59, 33, 57, 35, 81, 28, 90,246,253,198,186,225, 49, 47,113, 50, 56, 28,134,220, 36,168, -239, 31, 47,146, 28,187,142,193, 97, 29,131, 78,238, 45, 48,103,241,106,203,127,206, 25,127, 72,175,201,115,198,155,195,136,151, -170,127,104, 56,124,187, 98, 5,182,111, 92,139,213,107, 55, 34, 55, 39, 27, 98,177,117,113, 67,207,129,227,184,170,239,157,144, - 1,254,179, 39, 82,223,255,252, 27,188, 92,237,113,236, 92, 24,186,183,115,196,241, 11,119,208,211,179, 41, 78, 94, 10, 71,239, - 78, 45,112, 38, 36, 10,115,166,140,161,198,156,223, 53,160, 38,101,180,126,253,166,186,121,185,169, 8, 90,185, 7,175, 54,111, - 70,252,140, 25,240, 42, 62, 39,140,162, 32,105,216, 16,144, 84, 95, 70,229,241,240,225, 67,232,116,186,138,222,204,225,226,226, - 82,109,185,107, 52,154,187, 44,203,146,212,212, 84, 42, 53, 53, 21, 42,149,138,138,142,142,226,220,220,218, 12, 35, 49, 71,127, - 1,128,128,128, 85,195, 14,223,205, 69,225,141,141,208,220,252, 9,146,166, 17,244,246,229, 83, 12,147,151,110,187, 91,230, 25, -125, 35,157, 41, 41, 41, 3, 83, 82, 82, 0, 0,205,154, 53,139,137,141,141,109, 93, 50,212, 92, 60,132, 40, 97, 89,214,169,100, - 56,145,101, 89,232,116, 58,244,237,219,151,169,234,222, 45, 45, 45, 59,187,184,184, 32, 60, 60, 28, 27, 55,110,172,231,227,227, -131, 39, 79,158,128,162, 40,172, 90,181,138,114,117,117, 21,167,167,167,163,127,255,254,248,237,183,223,186,230,230,230, 86,151, -159,230, 42,149,106,215,169, 83,167,228, 52, 77, 35, 47, 47, 15, 60,207,163, 91,183,110,160,105, 26, 81, 81, 81, 88,188,120, 49, -126,251,237, 55,156, 56,113, 66,225,233,233,185,171,176,176,208, 5,111, 14,235, 87, 86, 70, 68,171,213, 18,153, 76, 6,153, 76, - 6,185, 92, 14,185, 92, 14,169, 84,138,124, 45, 48,121, 93,188,142,145, 91,243,110,237,186,183,152, 56,107, 21,253,195,146,207, - 46, 3, 56,105,106,157, 7,138,124,178, 54,252,250,235,198, 79,115,114,104, 0,216, 65, 81,188,129,144,213,166, 60,239, 0,144, -175,205,129, 99,243,134, 56,118,232, 4, 70,140, 26, 90, 33,201, 18,139, 37,144,136,197,168, 83, 79, 85,173, 77,137, 68, 98, 23, - 19, 19, 99, 37, 22,139, 65, 8, 1,199,113, 48, 24, 12,169,255,252,231, 63,109, 6, 15, 30,108,126,246,236, 89,122,240,224,193, -188,165,165,101, 65, 88, 88,216, 43,150,101,173,122,244,232, 81,169, 77, 37,224,174,181,104,185, 65,202,176,238,129,139,166,203, -198,143, 31,207, 76,156, 56, 17, 9, 9, 9,152, 52,105,146,246,226,197,139,250, 20,181,250,164,148,231, 55, 25,128, 8, 83,219, -228,114,216,226,238,238,222,254,248,241,227,159,249,251,251,223,153, 63,127,254,183,101, 15,174, 89,179,102,197,153, 51,103, 28, -135, 13, 27,182,247,254,253,251, 91,106,210, 46,189,107,223, 33,216,124, 55, 84,198, 69, 74,196, 81,138,162,130,202,180,217,190, - 37,251,254,254,254,139, 2, 2, 2,162, 41,138, 10, 42,251,123,201,121,197, 47,139, 65, 21,237, 23, 95, 91,111,225,194,133,109, - 2, 3, 3, 87,117,233,210,229,224,141, 27, 55,158, 3,168, 41,209,170,218, 71,171,228,134,202,222,100,185, 78, 13,185,185,185, -200,205,205, 69, 98, 98, 34,182,110,221, 90,252, 64,139, 33, 18,137, 32, 18,137, 74,253, 25, 42, 67,112,208,159, 63, 1,248,169, -125,251,246,226,200,155, 71,206,126,181,125, 86,159, 14,125,219, 51,119,131, 35, 63, 70,209,122,132, 3, 39, 76,152, 96, 13, 0, -123,246,236, 73, 7,112,246,223,196,154,143, 60,126,252,120,142,189,189,125,169,143, 74,217,225, 67,150,101, 33,151,203, 81,226, -203,162,213,106,177,117,235, 86,150, 16,114,164, 10,155,136,141,190,140,199,209, 87,138,174,227,121,240,220,235,235,151, 45, 91, - 6, 66, 72,105,103, 63,181, 88, 57,169,150,228, 85,148,231,164,220,103,185,223, 9,199, 85, 51, 60, 33,153,245,241,248, 25,246, - 60, 37,194,239,151,239, 65, 44, 22,131, 47,163,102,138,153,162,183,229,232, 39,201,112,176,115,195,135, 99,166,212, 63,190,119, -211, 44,214,160,253,190,166,121,237,236,222, 5,179,231,204,193, 47,219,183, 99,241,210, 21,165, 12,128,229, 56,176,213,166,147, -166,251,118,107, 3, 54, 63, 25, 12,195,160,183, 87, 11, 48, 12,131,126, 93, 90,129, 97, 24,244,239,230, 12,145, 72,132, 1,221, - 93,209,178,101, 75,136, 68, 34,186,154,114, 71,108,116, 48, 30, 71,255, 81,134,244, 18, 16, 0, 6,181,250,173,243,141,106, 53, - 72, 99,171,154,214, 45, 76,154, 52, 41, 59, 49, 49,209, 80,254, 88,163, 70,141, 36, 87,175, 94,173, 91,201,176, 93, 41, 20, 10, -133,167, 72, 36,186,155,153,153,201, 43,149, 74,154,231, 57,222,205,173, 13,115,110,219,162,227, 37,231, 44, 92,184,232,248, 39, -158,117,134,237, 59, 18, 68, 36, 77,186, 83,148, 88,198,126,177,116,155, 68, 44, 81,120, 2, 26, 83, 94, 30,104,157, 78,135, 71, -143, 30,161,186,244, 16, 66,170, 28,166,201,202,202,154,224,226,226,114,245,167,159,126,170, 71, 81, 20,174, 93,187, 6,134, 97, - 74,183,103,207,158,129,166,105,124,245,213, 87,134,220,220,220,207,171, 75,155, 72, 36,154,115,236,216, 49, 11,169, 84,138,188, -188,188,210,231,134, 97, 24,196,196,196,224,135, 31,126,192,132, 9, 19,144,144,144, 0, 7, 7, 7,204,155, 55,207, 44, 48, 48, -112,142,193, 96, 88, 97, 66, 17, 69,232,245,250, 14, 74,165, 18,114,185, 28, 37,132, 11, 0, 46, 68,139,163, 52, 26, 77, 91, 43, -171,194,250, 54, 33, 65,191,119,245,249,208,195,202,198,190,139, 90,173,174,209,210, 89, 79,129,237,113, 28,247,207,129,199,143, -219, 94, 63,126,156,191,117,234,212, 75, 89, 94,222, 54,147,235,144,145, 70,252,179,151,240,244,244,196,221,187,119,225,233,233, - 89,150, 52, 65, 42,149, 66, 34,145, 64, 34,145,192,218,210, 36, 23, 10, 66,211, 52,174, 95,191, 14,142,227,160,215,235,161,215, -235,225,234,234,154,121,229,202, 21, 51, 0,120,246,236, 25, 25, 55,110, 92,118,104,104, 40,218,181,171,122, 61,117, 45, 69, 5, - 47, 91,245,163,197,247,235,119,193,162,158, 29, 66, 66, 66,184,115,231,206,229, 81, 64,236,227,232,232,181, 31, 2,103,142, 0, -134,154,228,153,157,157,221, 85,134, 97,154,148,253, 45, 35, 35,195,114,248,240,225,200,202,202, 26, 52,124,248,240,238,197,109, - 66,210,209,163, 71,199, 1,128, 84, 42, 5, 77,211, 28, 4,252, 87,161, 58, 46, 82,150, 40,149, 39, 92, 1, 1, 1,190,229,127, - 43, 75,170, 42,250, 94,246,218,192,192,192, 85,101,108,107,106,145,252,234,125,180,130,130,130, 72, 5, 12,210,100, 84, 71,180, - 74, 16, 30, 30,110,116,112,112,248,229,241,189, 23,125, 90,184, 55,135, 66, 37,251, 0,192, 79, 50,153,108,238,248,241,227,113, -235,214, 45, 68, 69, 69,237,196, 59,206,194,105,211,166,205,121,153, 76,230, 88,201, 48, 73,124, 84, 84, 84,255, 74, 58,134,165, -167, 78,157, 66, 85,206,240,151, 47, 95, 46,219, 41,149,117,134,175,184, 98,240, 4, 70,131, 17, 5,133,154,215,157,120, 49,209, - 42, 40, 40,192,168, 81,163,222, 80,180, 94,189,122, 85,237,253, 81, 20,133, 31, 78,158,196,197, 35, 71, 48,200,195, 3,191,133, -133, 33,112,252, 88, 56, 59, 54, 0,225, 40, 16, 10, 72, 56,176, 9, 25,185,249,216, 31,124, 29,153,121,133,248,180, 71, 15, 56, -213,177,174,218,174, 88,210,207,171,115, 23,201,165, 27, 15, 32, 22,139, 64,131, 7, 49, 22,194,193,165, 23, 24,154,134,133, 93, - 83, 72,196, 98,136,197, 34, 60, 75, 76,135, 75,155,142,210, 32,169,188, 95,109,136, 86, 35,199,166,224, 56, 14, 19, 38, 76,192, -193,131, 7, 97, 85,223, 17, 22,141,218,224,187,181,219, 49,168,111,143,106,239,191,228, 13, 94, 36, 18,129, 97,152,183, 62, 75, -190,155,162, 78, 18,158,192, 80,190,140,120, 2, 16,130,134, 43, 87,162,225,202,149, 8, 43,254, 79,215,130, 2,104, 52, 26,160, -147, 91,141, 72,150, 94,175, 71, 98, 98,162, 33, 37, 37,197,174,130,227,169,122,189,190, 90, 98,179,123,247,238, 8, 63, 63,191, - 14,245,234,213,187, 19,113,255,190,209,221,195, 67,124,118,235,162, 19, 37,195,134, 0,224,225,225,145,185,104,209,162, 19,227, - 70,250, 14,221,226, 63,154,155,182, 98,175, 72,166, 80,116,240,157,191, 59,226,192,200,145,213,143,205,232,116,113,238,238,238, -196,148,251, 42, 44, 44, 76,169,226,240, 16, 0,203,219,183,111, 95,199,199,199, 7, 87,175, 94,197,136, 17, 35,116, 6,131,225, - 49, 0, 12, 30, 60,184,213,254,253,251,165, 15, 30, 60,128,141,141,141, 56, 62, 62,126, 23,170,113,144,151, 74,165,189, 58,118, -236, 72,235,116,186,183, 72, 86, 96, 96, 32,198,140, 25,131, 86,173, 90,129,231,121,228,231,231,195,199,199, 71,188,113,227,198, - 94, 38, 18,173,217,206,206,206, 63,160,104,214, 97,217,182,240, 97,241, 16, 20, 50, 50, 50, 82,238,133, 6, 71,247,232, 59,188, - 67,147,150,109,236,163, 34,238, 86,105,208,214,214,118, 33, 77,211,159,240, 60,207,228,230,230, 38,222,211,235, 91,186, 58, 58, -218,117, 27, 58, 20, 57, 98, 49,179, 33, 56,152, 78,205,203, 51, 3, 96,210, 16,164,214, 88, 0,199,230, 69,174,126, 35, 70, 13, -197,221,187,119,241,241,232, 97,144, 72, 36, 16,137,196, 69,207,166,164, 72,209,170,107, 93,199,164,186,105, 52, 26, 75,219,240, - 18, 63, 47,131,193,128, 18,215, 44,165, 82, 89,122, 76,167,211,129,162,168,170,234, 6,237,211,179, 27,110,132,199,178,159,127, -181, 65, 39,206,184, 27, 88,159,231,119,191, 4, 82,223,161, 57,119, 58,188, 98,137,173,162,142, 5, 56,163, 17,110, 67, 63, 46, -125, 78, 66,119,108, 81,128,231, 21,217,241,113,152,121,228,212,251, 94, 51, 87,192,191, 1,213,113,145,178, 68,233, 93, 65, 81, - 84,144,191,191,255, 34, 0,196,223,223,127, 81,201,126, 64, 64,128, 6, 64, 82, 45,201,214, 91, 42,151,232,125,144,172,146,225, -133,170,224,227,227, 51,211,220,220,124, 99,201,126,226,173, 36, 36,222, 74,130, 75,107,183,110,237, 61, 58,228,140, 25, 51, 6, - 86, 86, 86,152, 63,127, 62, 1,176,179,166,255,255, 44, 54,218, 12, 0,177,183,183,159, 95,220, 32,123,132,133,133,217,220,190, -125, 27, 29, 59,118,124, 45,221, 27, 12,232,222,189,123, 85,166,242,138,157,218,191,124,127, 42, 25, 15,131,193,128,194, 66, 13, -244,122, 3, 88, 35, 15,150,101,225,233,102,142,189,219,253,139,126, 99, 75,212,179, 34,213,172, 97,125,115,152,155,137,141, 52, - 77,105,238, 68,164, 84,216, 98,234,245,122, 68,196,199,227,254,139, 23, 0,128, 15, 3,170,118,124,221, 27,124, 21,174,174,174, -213,165,182, 69, 67,135,250, 72,190, 24, 81,212,120,107, 18,113,251,207,195, 48, 55, 55, 3, 0,184,121,127, 10,137,164,136,104, - 21,104, 12,176,110,221, 8, 20, 33,149,134, 5, 80, 90,214, 63, 47,146,200, 29, 9,199,131, 16, 30,132,231, 64, 8, 15, 70, 44, - 81,206,156,250, 25,120,158,131,151,151, 23, 40,134, 1,103,212, 97,228,144,126,200,202,201,131, 85, 93,211, 58, 9,137, 68, 2, -111,111,111, 69,101,199,159, 60,121,162, 41, 75,204,170, 46, 35, 35, 10, 10, 52,208,233,116, 48,232, 89, 24,140, 44,184,102, 18, -124,251,207,177, 96, 13, 44, 10, 71,119,129,193,200,130,159, 51, 12, 6,189, 17, 9, 74,154,118,119,177, 54,210,160, 52,247, 30, -166,213,169,142,104,149,144,131,202, 80,145, 79, 96, 37,100,235,190,159,159,159,167,187,135,199,221, 79,250,122,252, 24, 25, 21, -157, 28, 25, 21,253,214,121,142,173, 60,226,166, 5, 30,156, 39,150, 40, 60,125,231, 87, 61,235,176, 44,202, 14, 35,190, 35, 22, -229,229,229,185,155,153,153, 33, 54, 54, 22, 12,195,128,162,168, 39, 0,220, 1,192,222,222,254,169, 72, 36,106,206, 48, 12, 54, -111,222, 76,137, 68,162,182, 93,186,116, 89,164,213,106, 15, 87,241, 66,231, 98,110,110,254,134,154, 37,145, 72,224,239,239,143, -113,227,198,149,146, 44,137, 68,130,221,187,119,163, 67,135, 14,208,235,245, 46, 38,166,247, 54,128, 30, 38, 40,126, 84, 49, 57, -175,150,140,178, 44,235,151,241,201, 39, 45, 17, 18,130,110,205,155,187,122,122,122,194, 96,120, 45,232, 52,111,222,188, 81, 94, - 94, 94,138, 70,163,249, 23,138,194, 16,220,171,146, 20,105,121,196, 63, 43,114, 63,189,123,247, 46,188,188,188, 74, 21,172,178, -106,150, 68, 34,129, 66,106, 86, 35,162,197,243, 69,237, 82, 94, 94, 30, 29, 18, 18, 98,237,236,236, 76, 1,128,179,179, 51,117, -239,222,189,122, 74,165, 50,189, 69,139, 22,213,189, 0, 75, 0,160,215, 7,195, 69, 23,207,157, 81,177,192,138, 20,134, 89, 33, -170,182,141, 36, 70,142,231, 43,117,186, 87,212,177,192,110,191, 81, 0,128,111,250, 14, 40,125,217, 58,183,124, 17,196, 98, 49, -250,204, 95,244,214,179,196,243, 60, 3, 1,127, 43,146, 85,145,162,245,110,125,243,107, 69, 43, 32, 32, 32, 58, 32, 32,224, 45, -117,172,134,168, 94,209, 42, 43,221,213, 20, 37, 15,107,101, 88,187,118, 45,218,182,109, 91,101, 71,180,113,227, 70,236,219,183, -111, 45,128,103, 53,150, 28,251,180,119,195,186,227,209,205, 91,185, 81, 0,176, 98,206, 16,186,160,160, 0,215,175, 95,135,133, -133, 5,158, 60, 49, 57,236,151,185,133,133,197,114,154,166, 71, 50,229,103, 0, 84, 76, 48, 57,158,231,143,228,228,228, 84, 26, -222,129, 16,192, 96,100, 81, 80,168,133, 94,175,199,156,175, 54, 85,155,136, 0,128, 50,232,243, 68,222, 61,187, 40, 42, 83,116, -188,218,246,194,244,241,102,111,117,222, 12, 13,208, 52,208,206,171, 72,113,185, 23, 22, 13,158, 7, 56, 30,176,182,181,196,206, - 3, 63, 86, 73,242, 89,142, 47,126, 59,230,144,175,227,224,210,217, 23, 47, 31,134,148, 42, 72, 82, 73,209,144,177, 68, 44, 6, - 79,168,162,168, 15,149,181,186, 82,133, 99,150,250,153,211,246,160, 72, 76,246,109,139,163,151, 34,240,113, 95,119, 92, 9,125, - 0,159, 78,174,136,126,252, 2,110, 78, 77,176,121,215, 17, 16,130,188,159,215,125,151,242,186, 67, 99,227, 77, 81,180,110,221, -186,165, 41,175, 98,149,253, 36,213,247,135, 32,228,181,162,165,209,234, 48,127,161, 73,161,119,138,202,168, 71,103,133, 41, 39, - 87,165, 88,153, 66,196,202, 43, 91,168, 38, 60, 75, 51, 0, 29,128,175,255,157, 13, 39,199,113, 56,125,250,116,105,121, 84, 84, -142,101,203,206, 4,146,131,248,248,120, 68, 71, 71,163,115,231,206,200,201,201,129,152,166, 49, 47, 50, 18,174,227,199, 67, 47, -145,128,231,121, 72,165, 82, 76,153, 50,197,228,252,172, 97,235, 92,236,120,205, 85,103,252,199, 46, 93,186,180,140, 45, 40, 64, -116, 76, 12,250, 46, 91, 6, 0, 56,115,230,204, 27,117, 98,238,220,185,210, 7, 15, 30, 76,186,115,231,206,164,228,228,228,181, - 0,230, 85,218,206, 18, 93,169,143,214, 39, 99, 71,160,165,115, 51,236,251,245, 64,233,241,185, 11,102, 67, 44,150, 64, 44, 17, -163,174, 69, 93,147,238,198,104, 52,150,146,214,194,194, 66,250,204,153, 51, 13,251,245,235, 39,153, 61,123, 54, 5, 0,251,246, -237,163,127,250,233, 39,213,197,139, 23, 37, 13, 26, 52, 80, 87,163, 16,228, 38,101,232,100, 0,208,184,113, 99,108,218,246, 59, - 61,120,240, 96,204,158, 61, 27, 70,163, 17, 91,182, 20, 61, 87, 99,198,140,129,193, 96,192,177, 99,199, 74,158,227, 42,213, 40, -214, 96,120,171,222, 80, 20, 5,177, 88, 12,137, 84, 2,240, 60, 40,138, 82,173, 89,179,102, 69,116,116,116, 71,103,103,103,232, -116,186,241, 40,154,252, 33,196,209,250, 47, 35, 91, 85,113,145,138,124,173,138, 85,169,202,144, 86,214,111,171, 50,162, 86,214, -103, 11,181,155, 64, 97,154,143, 86, 69, 96, 24,166, 90,181,170,100,170,110, 85,152, 59,119, 46,204,205,205, 43,235,128, 72,100, -100,228, 3,181, 90,189, 29,192,166, 90, 21, 78,112,120,244,242, 47,135,229,161,120,108,181,110,221,186,233,189,123,247,206, 7, - 96, 56,124,248,205, 23,100,157, 78, 87,105, 7,110, 97, 97,177,124,199,142, 29,179,134, 14, 29, 74,151, 15, 49, 80,118,120,175, -100, 51, 26,141, 56,124,248,240,172,175,191,254, 26, 57, 57, 57, 95, 86,213,137, 23, 22,104,160, 41,118,132,126, 26,117,212,212, - 70,189,210, 67,102,117,237,209,176,153,123,165,157, 9, 45, 41,242, 33,178,107,252,186, 3, 51, 55,151,131,171,194, 38, 69,209, -207, 94, 36, 36, 55,104, 84,191, 30,158, 38,166,193,174, 73, 91,100, 37,189,206, 7,145,136,129,184,120,232,176,110, 29, 21,210, - 94,189, 2, 77, 51, 85, 18,227,239,246,135, 35, 52,234, 5,142, 93,186, 7,131,182, 0,235,246,156,131, 65,151, 15,131,182, 0, - 6,109,209,231,170,175,191, 0, 69, 33,197,168, 43,104, 85,147,114, 23,137, 68,232,212,169, 83,165, 68, 39, 41, 41,201, 68, 69, -139,148, 42, 90, 26,109, 13,203,200,180, 55,167, 42, 21,171,146,227,181, 37, 6, 37, 33, 31, 20, 10, 69,135,221,187, 43, 15,227, - 80, 17,234,215,175,127,214,204,204,172,169,169,231,215, 32,120,233,170,186,117,235, 46,119,118,118,118, 89,183,110,157,152, 97, - 24,244,233,211,167, 85,253,250,245,227, 1,192,205,205,205,161,164,141,153, 54,109, 26,185,117,235, 86, 84,209, 59, 70,229,144, - 74,165, 49, 22, 22, 22, 29,124,124,124,144,147,147,131,196,196, 68,168, 84, 42,184,254,248, 35, 34,167, 77,131,199,214,173,160, -123,247, 6, 69, 81,144, 74,165,136,140,140,132, 66,161,136,209,106, 43, 13,249,214, 9,192,106, 0,221,240,122,184,144, 0,184, -142,162,176, 11,161, 21,180,119, 52, 0,112, 60, 95, 93, 97,141,157, 63,127, 62,178,197, 98, 96,240, 96, 72,158, 61,131,193, 96, - 64,231,206,157, 75, 85,246,206,157, 59, 67, 36, 18,193,221,221, 29, 14, 14, 14,216,188,121,243,216,170,136,150, 54,223,128,248, -103, 47,209,165, 75,151, 82,229,106,240,224,193,165,138,150, 88, 44, 46, 85,182, 40,174,122,226, 74, 81, 20, 41,251,146,204,113, - 28, 37, 18,137, 68, 95,126,249, 37, 53, 98,196, 8,162,215,235,121,169, 84, 74, 31, 59,118,140,186,114,229,138,168,160,160,160, - 58,181,161, 96,244,232,209,182,141, 26, 53, 68,226,211,104, 28, 61, 74,176,118,237, 90, 92,189, 90, 20,101, 35, 54,182,104,226, -106,201,190,143,143, 15,154, 54,109, 10, 82, 77,197,111, 51,108, 36,190,233, 55,176,168, 61,105,106, 3,177, 68, 12,169, 68,130, -249, 49, 47, 75,203,186,206,238,131,210,192,192,192,143,157,157,157,139,134,246, 1,145, 16, 71,235,191, 11,213, 8, 61,105,229, - 72,146,190,204,126, 26, 0,170,120, 63,173, 12,161, 74,163, 40,234, 54, 33,164, 99,185,115, 75,142,235,203,125,150, 28,191, 95, -139,228,151,172,117,248, 22,249,170,234,141,248,241,205,155, 55,157, 60, 61, 61,145,144,144,240,214, 76,184,146,142, 75,165, 82, - 65,161, 80,224,198,141, 27, 0,240,184, 50, 99, 87,174, 92,249, 9, 69, 81,151, 81, 60,108,208,197,231,147, 94, 55,188, 6,116, -196,254,128, 3, 57,106,181,218, 29,175, 99,232, 80, 14, 14, 14,227,196, 82,209,168,230,109, 26,123,131,231, 87, 7,159,186,190, -172,170, 59,108,222,202, 45, 31,128,166,100,214, 97, 45,103, 31,130,166,233,145, 67,135, 14,165, 31, 60,120,128, 81,163, 70, 97, -223,190,125,149,158, 59,110,220, 56, 28, 60,120, 16, 67,135, 14,165, 23, 46, 92, 88,105,120,135, 55,213, 18,253,123,171,148,177, - 79,238, 99,239,193, 29,149,250, 32,217,218, 22,249, 99,189,122,149, 94,250, 91, 71,207,170, 71, 70,120, 86,127, 49,252, 78, 88, -151,174, 61,251, 72, 18, 83,179,193,179, 58,104,243, 94, 95, 95,152,157, 10,194,106, 33, 81,214, 67,125,107, 11,220,189,121, 65, -111,208,107, 47, 86,101,115,214, 80, 55, 76, 27,226, 2, 16, 30,195,230,237, 68,208,166,153,165,111,208,221, 71,204, 70,240,225, - 13, 38,251,248,149,135, 88, 44, 70,100,100,164,166, 50, 53,139, 97, 24, 83, 98,114, 21,171,142, 70, 20, 22,106, 80,168,209,190, -207,182,195,198,206,206,238,103, 75, 75, 75,121, 37, 68,202,198,198,198,230,103, 43, 43, 43,185,169, 67,135,149,145,172,226,184, - 90,119,252,252,252,106, 68,182,100, 50, 89,211,199,143, 31,151, 6, 43,173,234, 83,175,215,195,199,199,199,212,224,165,167, 0, - 60,183,183,183,191,238,234,234,106,241,244,233, 83, 28, 56,112, 64, 34, 22,139, 27,151,180, 31,121,121,121, 96, 24, 6,175, 94, -189, 50, 2,248, 12,213, 12,157,233,116,186,144,144,144,144,118, 67,134, 12, 97, 98, 98, 98,192, 48, 76, 81,186,186,116,129,199, -214,173,136,250,242, 75,120,191,120, 1,173,193, 0,185, 92,142,243,231,207, 27, 10, 11, 11, 67, 42,179,167, 80, 40,182,199,197, -197,185,201,229,114, 24, 12, 6,240, 60, 15,154,166, 41,145, 72,212,189,110,221,186, 27, 1,116, 44, 87, 88,182, 30, 29,125, 90, -115, 44,203,169, 19,158,166, 85,151, 1, 25, 25, 25, 56,117,234, 20, 58,119,238, 12,111,111,111, 36, 37, 37,225,217,179,103, 24, - 52,104, 80,233, 57,247,239,223, 71,120,120, 56, 90,180,104, 81,189,162, 71, 27,209,162,117, 83, 72, 36,146, 34, 53, 71, 44, 41, -126,241, 17,151, 42, 89, 18,177, 4, 98,145, 24,114,133,220,100, 69,139,162, 40,208, 52, 13,138,162,160, 80, 40, 74, 94,178,249, -134, 13, 27,170, 51, 51, 51,237, 1, 48, 10,133, 2, 28,199, 85,249,210,194, 19,226, 36, 73,191,145, 60,239,235, 31,108, 3, 2, - 46,225,210,165, 87,160,105, 26,246,246,246,160,105, 26,113,113,113,160,105, 26,142,142,142,160,105, 26, 73, 73, 73, 37, 36, 49, - 11,149,147,225,210,231,134,162,168, 82,146, 37,145, 74, 74,149, 45, 0,200,206,206,214, 14, 29, 58,244, 95, 58,157,110, 34,106, -183,234,137,128,255, 96, 80, 20,117,251,223,113,109, 13, 48,184,152, 88,189,229, 20, 95, 85,101, 28,212,181,107,215,173, 99,198, -140,233,179,126,253,122,152,153,153, 65,173, 86,151,118,136, 82,169, 20,141, 26, 53, 66,102,102, 38,182,109,219,134,151, 47, 95, - 94, 6, 48,197,212, 20,169,213,234, 91, 79,238, 61,206,240,249,184,171,149, 91,215,214,117, 19, 31,191,236,172, 86,171,111, 20, -147,172,157, 99,230, 14,154,232, 51,220, 11, 18,169, 24,137, 79, 82, 16,124,234,250,255, 75, 97, 50, 12,195, 80, 20,133, 81,163, - 70,153,116,254,232,209,163, 17, 18, 18,130,170,134, 25,249, 18, 69,171, 80,139, 2,205,251,123,177,154, 62,115, 28,166,207, 28, - 87, 74, 38, 76, 25,122, 1, 0, 7,135, 67, 85, 16, 45,195,250,160, 67,219, 38,183,247,234,226,216,193,173, 41, 66,239,220,195, -254,173,175, 69,134, 93, 63,173,192,247,187, 46,163,145,157, 37, 12,186, 2,156, 61,250, 75,138, 65, 87,184,190,150,162, 92, 17, -185,165, 40, 16,194,215,232,222, 75,200,147, 88, 44, 70,155, 54,109, 42, 85,180, 50, 51, 51, 53,213,169, 89,165,101,164, 55, 34, -191, 64, 3, 77,225,123, 35, 90, 30,221,187,119,191,120,228,200, 17, 43, 91, 91, 91, 36, 39, 39,151, 39, 90, 30,221,186,117,187, -120,228,200, 17, 43, 59, 59, 59, 36, 38, 38,154, 28, 86,164, 2,146,133,180,180, 52, 42, 43, 43,139,183,180,180,172, 17,217,162, -105, 26, 58,157, 14, 15, 31, 62, 52,245,111, 77,158,205,101, 97, 97,177,251,224,193,131, 22,233,233,233, 96, 24, 6, 15, 31, 62, -124, 99,214, 97,201,182,115,231, 78,201,176, 97,195,118,100,103,103, 87, 57,173,141,101,217,181,227,198,141,155,148,148,148,100, -105,107,107, 11,181, 90, 13,169, 84, 10, 66, 8, 40, 31, 31,244,120,254, 28, 6,142,131, 66,161, 64,108,108, 44,182,111,223, 94, - 80, 28, 42,166, 66,129,140,162, 40, 39,137, 68,130, 79, 63,253,244,141, 3,123,246,236,193,135, 29,152, 14, 54, 22,162,124, 22, -114, 93,170, 98,224, 89,134, 97, 40,143, 78,189, 91,117,234, 57,184,205,163,168,208,167,105,169, 47,171,107,148,140,122,189, 30, -206,206,206,184,125,251, 54, 46, 93,192,180, 73,124, 0, 0, 32, 0, 73, 68, 65, 84,186,132,222,189,123,195,219,219, 27, 17, 17, - 17,184,112,225, 2,194,195,195, 65, 81, 20,172,172,172, 74,220, 47,170,244,193,208, 23,178,120,149,156,241,150,122, 85,126, 95, - 34,145, 64,167, 49,109,114, 95, 76, 76, 12,110,223,190, 93, 26, 90,134, 97, 24,118,252,248,241, 32,132,144,184,184, 56,152,155, -155, 19, 63, 63, 63, 78, 36, 18,177, 73, 73,166,249, 7,155,153,153,193,201,201,233,141, 23,159,146,173, 71,143, 30,184,115,231, - 14,104,154,134, 72, 36,130,173,173, 45,174, 95,191, 94,109,197, 47, 33, 85, 37, 36, 75, 36, 17,191, 65,250,120,158,207,139,136, -136,152, 12, 32,162, 88,201, 2,132, 56, 90, 2,254,255,112, 26,111, 47, 44, 93,173,162,245, 28, 64,223, 3, 7, 14,140, 61,113, -226,196,218,141, 27, 55,218,248,250,250, 34, 43, 43, 11,142,142,142,176,183,183, 71, 80, 80, 16,206,156, 57,147,206,113,220, 60, - 0, 21, 73, 63,125, 81, 69,204,154,164,167,234, 35,186,252,252,105,158,222, 46,184,124,248, 90, 64,253,250,245,167, 48, 12, 51, -199,111,209, 71, 19,123, 13,237,136,216,240, 56,220,186, 16,137,212,132,244,106,109,150,119,134,175, 91,183,238, 36,165, 82, 41, - 69, 5, 83,137, 43,152,117, 88,106,147,227, 56, 78,175,215,227,208,161, 67, 38,145,173, 3, 7, 14, 64,171,213,130,123,123,124, -181,212, 38,225, 9, 37, 18,203,224,208,200, 25, 6, 67, 1,120,190,214, 19, 42, 75,109,150,188,129, 62,149, 74, 97,155,158,142, -208,208, 80,211, 40,247,224,193,213,149,145, 86,175,205,251,116,195,202,249, 65, 51,252, 87,215,237,221,181, 29,190,249,113, 15, - 12,134, 93,160, 25, 26, 10,153, 4,158, 94,221,192, 64,135,159, 3, 23,100, 23,230,102,125,138,183,151,226,121,195, 38,169,106, -132,133, 0, 28,207,227,210,213, 48,147,239,189,204, 48, 7, 68, 34, 17,158, 60,121,162,169,104,182, 33,195, 20, 13,115,150,188, -169, 87,101,147,240, 60, 37,150,200,209,200,209, 21,122, 93,254,123, 41, 35, 91, 91,219, 5,199,143, 31,183, 42, 9,149, 16, 17, - 17, 1,138,162, 30,190, 86, 28,139,142,107, 52, 26, 68, 69, 69, 33, 34, 34, 2, 40,154,225,102,242,115, 84,162,100,165,165,165, - 81,106,181, 26, 74,165,146,142,136,136,208,185,187,187,223,169,230,249, 46,181,169,213,106, 95, 84,230, 63,169,213,106, 27,200, -229,114,113,185, 14,207,161,101,203,150,177, 21, 12, 33,190,149,206,156,156,156,208,175,191,254,218,115,192,128, 1, 88,176, 96, - 65,166,165,165,165,249,207, 63,255, 44, 98, 24,134,154, 49, 99, 6,247,234,213,171,252, 95,126,249,197,226,196,137, 19,200,206, -206,190, 97,194,189,231,105,181,218,201, 93,187,118,221,115,238,220, 57,165,147,147, 19,114,115,115, 65, 8,193,238,221,187, 49, - 99,198, 12,200,229,114,196,198,198,226,195, 15, 63, 44, 44, 44, 44,156,140,183,125, 39, 75,108, 82, 20, 69, 17,158,231,177,100, -201,146,210,224,164, 37,193, 74,205, 21, 20,182,207,109,166,154,253, 75,142,106,236, 55,191,140, 7, 0,142,101,185, 71, 81,161, - 79,119,111,250,230,138, 68, 34,185, 90, 77, 25, 45,158, 61,123,246,207,131, 7, 15, 86,152,153,153, 33, 51, 51, 19,215,175, 95, -199,205,155, 55,113,235,214, 45,232,245,122, 88, 89, 89,193,210,210, 18,106,181, 26, 49, 49, 49, 26, 0,139,171,178, 41, 85,138, -209,188, 85,201,204,223, 34, 5, 75, 92,102,182, 97, 89,117, 75, 34, 22,155,244, 28,245,236,217, 19,157, 58,117, 42, 33, 43, 92, -124,124,188, 90,167,211, 81,101, 72,127, 82, 9, 33,111,220,184, 49,187,111,223, 62, 82,157, 77,158,231,223, 34,211, 61,122,244, - 40,125, 41,236,212,169, 19, 24,134,193,189,123,247, 42,115, 77,121,195,230,173,237,155,113,238,219,197,144, 74, 36,152,247, 48, -177,148,116,237,233,221, 30, 98,169, 4, 46, 67, 70,148,189,118, 11,138,134, 11, 81,142,100, 85,213, 31,189,243,243, 46,216,252, -159,135, 26,181, 88,130,167, 4,251,181, 90,237,217, 47,190,248, 34,208,195,195,227,139,117,235,214, 81, 18,137, 4,203,150, 45, - 35,201,201,201,191, 22,191, 49,100,213, 38, 85,132,144, 95,255,248,237,198,212, 9,254, 67,169,185,235,253,186,223, 9,142,138, -105,219,213, 9,109,187, 58,225,206,229, 7,216,180,232,192, 62,206,200, 45, 73, 73, 73, 73,168,198,148,174,111,183,214,229,157, -225,173, 66,174, 4, 91,213,116,214, 33,207,243, 71, 14, 28, 56, 48,107,248,240,225,116, 88, 88,216, 91, 62, 89, 37,203,238,240, - 60,143,139, 23, 47,194, 96, 48,224,215, 95,127,229,121,158,175, 60,142, 22,200,201, 13,235, 3, 39,252,186,247,164, 84, 42,161, -112,243,234, 49,228,100, 85, 61,171, 75, 34, 17, 99,231,238,223, 12, 18,137,248, 81, 69,199, 13, 6, 67, 98,112,112,176, 93,127, -142, 19,211, 52, 93, 17,129,170, 16, 71,142, 28, 49,242, 60, 31, 95,205,105, 55, 82, 95, 38, 12,249,110,193,103, 7, 6,127,242, -133, 93,215,174,221,197,214,182,118,160, 40, 10,175, 82, 95, 33, 54, 42,204,120,246,216,142,212,130, 66,211,150,224,249,236,135, - 63, 74,125,178, 0,192,119,198,198, 82,255, 44, 0, 24,226,247, 53,124, 58,187,129, 50, 69,122,122, 77,178,120,150,101,161, 82, -169,192,178,108,133, 33, 30, 44, 44, 44, 20, 90,173, 86, 83, 28,136,177,202, 55,102, 2,188,247, 50,226, 56,206, 37, 43, 43, 11, - 5, 5, 5,184,121,243, 38, 89,185,114,101, 90, 90, 90, 90,169,211,166,209,104,116,201,204,204, 68,126,126, 62,110,220,184, 65, - 2, 3, 3,211, 50, 50, 50, 22,213,228, 25, 82, 40, 20, 29, 68, 34,209,157,172,172, 44, 94,169, 84,210, 70,163,209,232,238,238, - 46, 83, 40, 20, 38, 47,168,174, 86,171, 7, 84,118,172,121,243,230,143, 31, 63,126,220,146,227,184,178,107, 32, 74,180, 90,173, - 83,215,174, 93, 77,105, 63,102,239,218,181, 11,191,253,246,155, 87,110,110,238,184,248,248,248, 61, 0,188, 68, 34, 17,238,221, -187,247, 80,171,213,142, 25, 62,124,248,238,172,172,172, 80, 20, 45,193, 99, 10,206,197,198,198,126,234,226,226,178,107,249,242, -229,102,222,222,222, 34, 7, 7, 7,116,236,216, 17,177,177,177, 56,125,250,180,113,203,150, 45, 5,133,133,133,159, 1,184, 88, -117,177,131, 98, 89, 22, 82,169,180,116,147,201,100,144, 72, 36,200,211, 16,124,254,227, 51, 13, 11,133,102,237,178,201,167, 9, - 64,165, 36, 62, 75,127,149,146, 24, 74, 81,212, 85,181, 90,157, 83, 73,158, 73,181, 90,109, 59, 66, 8, 67, 81,212,122,131,193, -224, 55,115,230, 76,251, 85,171, 86,161,117,235,214, 72, 79, 79,135, 74,165,130,147,147, 19,210,210,210, 16, 22, 22,198, 21, 22, - 22,110, 5,176, 2,197,254, 35,149, 33, 59, 61, 23, 13,235, 55,126, 67,249, 36,132,128,112,128, 81,199,129, 51, 16,232, 41, 35, -196, 98, 35, 36, 18,137, 41, 67, 42,132,231,121,100,217,219,131,143,138,194,173, 91,183, 64, 8,169, 84, 85,115,118,118, 54, 73, - 33,229, 56,238, 45,162, 21, 26, 26, 10,134, 97,208,189,123,119,132,135,135,151, 42, 90, 38,249, 37, 18, 30, 82,153,244,141,225, - 66,138,162, 32,145, 74, 33,150, 74, 42,154,141, 35,168, 88, 2,254, 99, 96,234, 56,118, 54,128, 41,247,239,223,223,211,171, 87, -175, 32, 66,136, 24, 69,227,145,215,222,229,207, 83, 82, 82,238,222, 56,125,119,161, 93, 67,203,192,129,227,186,163,117, 59, 71, -112, 44,135,235,103,238,225,215, 85, 39, 14, 38, 37, 38,249,193,132,181,207,120,158,191,210,173, 67,107, 26,101, 98,117, 59, 56, - 56,240,181,153,117,152,147,147,179,116,222,188,121, 88,176, 96, 65,109,102, 29, 86,136,200,152,180, 41, 20, 72,195, 33, 3,123, -244, 7, 69, 19,189, 94, 87, 69,195,135,210,200,165, 18,137,248,209,237, 8,181,123, 69,231,165,165,165,245,159, 56,113,226, 69, -145, 72,212,180, 38,121,206,243,124,124,106,106,106,159,234,207,100,175,235, 52,185, 78,167, 14,110,251,242,220,111,187,250,243, - 60,215,130, 2,192,136, 36, 79,141, 6,195,121,157, 38,119, 29, 76, 92, 84,122,205,148, 46,152,189,225, 2, 54, 47, 24,130,153, -129,135,177, 99,201,231, 88,248,227, 1,172, 94, 48, 27, 43, 55,254, 11,223,204,254, 20, 31,143,157,200, 19,138,254,211,212,251, - 96, 24,230,220,182,109,219, 38,124,254,249,231,165,147, 22, 8, 33,111, 52,194, 70,163, 81,195,243, 60,182,110,221,202, 3, 56, - 87,149,189, 55,203,136, 34, 85,249, 75,153, 90, 70,185,185,185,159,117,233,210,101, 55, 0, 25, 33,228, 73, 86, 86,214, 63,128, -215, 75, 67,229,231,231,127,214,181,107,215,221,132, 16, 25, 69, 81,111, 29, 55, 5,197,161, 30, 58, 88, 90, 90,222, 41, 86,178, -100,181,113,136,175, 42,171,171, 24, 86, 52,101, 8,145, 7, 48,179, 76,196,247, 85, 94, 94, 94,101, 23,149,126,152,149,149,213, -161, 22,233,186,168,209,104,220,150, 44, 89,242,165, 92, 46,247, 41, 44, 44,108, 5, 0, 42,149, 42, 86,167,211, 93,209,104, 52, -235, 80,125,108, 42, 61,207,243,177, 44,203,182,177,177,177, 41,154, 81, 91, 76,182, 0,224,247, 59,220, 29,128,235, 88, 36,138, -239, 55, 57, 97,103,206,156,105, 98,105,105,249, 1, 69, 81, 31, 19, 66,156,243,242,242,116, 75,150, 44,185,113,228,200,145,156, -166, 77,155, 14, 28, 60,120, 48, 85,175, 94, 61,220,190,125,155,100,100,100, 28, 3,176, 8, 38,204,180,230,121, 62,126,205,154, - 53,168,233,243, 94,213,113,131,193,144,114,230,204, 25,235, 1,175, 94,137,120,158,199,144, 33, 67,222, 32,112,229,241,232,209, - 35,232,116,186,106,131, 57,102,103,103,195,203,203,235,141, 23,212,146, 45, 62, 62, 30,245,234,213,123,227,127,170,123,199,210, -229,100,161,247,151, 95, 3,197, 51, 74, 75, 80,164,100, 17, 16,189,192,171, 4,252,231,226,175, 94,124,211, 36,105,209,222,222, -126,148, 92, 37,155,238,216,202,222, 61,249,217,171, 7,121, 57,133,251,212,106,245,182, 74, 26,114,147,108,214, 48, 96,169, 32, -255,254, 69, 54, 95,199,209,226, 64, 8, 7,194, 19, 16,194,131,231,185,162, 5,175, 9, 15,194,113, 20, 69,225, 79,189,166,202, -200,224,229,211,105,105,109,109,189,130, 16, 50,128, 97, 24,186,108, 67, 93,246,123,177,146,117, 46, 45, 45,237,155, 10,148,215, -255,186,252, 60,114,228, 72,133,228,223,212, 89,135, 35, 71,142,228,106,248,108, 94, 81,169, 84,246, 21, 29, 43, 40, 40, 72, 80, -171,213, 31,252,135,228,103,217, 25,131, 53,177, 89,227, 89,135,213,217,116,116,116,148, 25, 12,134,246, 0,156, 40,138,170, 11, - 32,211, 96, 48,156, 79, 79, 79, 79, 5,208, 1,192,146,226,107,190, 5,112,231,223,252,188, 43,172,173,173,119,209, 52,221,208, -148,139, 89,150,213,103,102,102, 78, 40,247, 66,240,122, 8, 30, 96,228, 18, 73, 24,104,186, 65, 69,207, 99,101,223, 65, 72, 82, -129, 70,227, 69,189,110,243, 75,109, 90, 89, 89,221, 17,137, 68, 13, 77, 72,219,203,140,140,140, 14, 66,155,252, 95,109,243,191, - 25,229,157,224, 43,141, 20,255, 87, 16, 45,193,166, 96, 83,176, 41,216, 20,108, 10, 54, 5,155,130,205,191, 59,209,170,112, 95, -152, 2, 43, 64,128, 0, 1, 2, 4, 8, 16,240,110, 56, 93,142,108,157, 46,249, 66, 85,193, 74,107, 34, 9,214,134,217, 94, 18, -108, 10, 54, 5,155,130, 77,193,166, 96, 83,176,249, 63,103, 83,192,123,132, 32,171, 10, 54, 5,155,130, 77,193,166, 96, 83,176, - 41,216,252,187,163,210,161, 67, 90,200, 27, 1, 2, 4, 8, 16, 32, 64,128,128,191, 6, 38, 19, 45,149,157,179,139,181,163,251, -110,203,134,109, 35, 44, 27,182,141,176,118,116,223,173,178,115,118,249, 31,205, 55, 5,128,177, 34,145,232, 98,253,250,245,115, - 81,201,210, 59,127, 3,212, 1,240, 49,138,226,251, 12, 3,160,124,159,198,189, 1,209, 40, 96,250,120, 32, 97, 60,144, 48, 10, -152,238,253, 55,244, 27, 92, 54,203,190,203,213,179, 99,207, 46,155,101,223,165,194,227,243,236,173,110, 93, 24,185, 97,213,116, -135,122,239,233, 47,205,109,109,109,183,219,217,217,189,176,181,181,141,183,181,181,221, 5,192, 66,104,238, 4, 8, 16, 32,224, - 47, 67,137,143, 86,201, 86,234,163, 37, 2,128,160,160, 32,111, 0,127, 0,232,229,235,235, 27, 82,254,106,203,198,109, 62,111, -209,172,197,130,239,150, 45,162,234,219, 90, 43, 89,142, 55,196,189, 72,116, 93,250, 93,224,209,100,169,104,109, 86, 66,212,142, - 90, 36,138, 98, 24,102,148, 76, 38,243, 5, 80, 66,216, 30,234,116,186, 32,142,227, 14,193,180,105,218,176,179,179,187,202, 48, - 76,147,154,252, 49,199,113, 9,169,169,169,221,107,153,153, 35, 27, 55,110,188,203,219,219, 91,233,229,229, 5,169, 84,138, 37, - 75,150,204, 83,171,213,235, 76, 53, 96,105,217,220,220, 32,147,207, 17, 73,165,253,136, 81,223,134,128, 0,180, 44,138,103,117, -193, 18,157,110,109, 86,214,179, 60, 19, 77, 45, 2,224, 87,156, 87, 59, 0,172,121,151, 90, 50,161, 29,140, 70,174,168, 78, 72, - 68,224, 78, 62,183,248, 99,241,226,197, 34, 95, 95, 95,236,216,177,163,251,246,237,219, 39,231,229,229, 5, 3,248, 29,192,211, -119,173,149,118,192,148,174,221,187,111,152, 48,111, 30,163,185,122, 21, 27,118,237, 90,143,162,120, 75,155,107, 90,151, 36, 18, -124,108,109, 45,246, 37, 4,237, 41,128,162,128,123,105, 25,252, 25,131,129, 59, 4, 19, 98,177, 85,129,177,120,115, 58,254,254, -154, 26,200,121, 74,254, 41, 27,226,210, 35,231,233,149,127, 2, 24, 88,254, 56,171,149, 79, 32, 76, 35, 95, 13, 9, 79, 4,240, -227, 59,102,171,210,198,198, 38,226,228,201,147, 13,189,188,188, 68, 0,112,231,206,157,241,190,190,190,189,211,210,210,218, 0, -200,253, 55, 53, 66,114, 17, 77, 79,151,138,197,253, 56,142,107, 11, 0, 12,195, 68,234,141,198,139, 44,207,111,134,137, 49,217, - 4, 8, 16,240,247, 69,117, 92,228, 63, 28,149, 70,134, 47,185, 57, 82,246,179, 44, 84,182,173, 93, 59,247, 25,241, 40, 39,175, - 80,251,226, 69, 82,214,220,233, 43, 47, 78,158,253,195,137, 31,127, 9, 58, 19, 18,250,240,150,139,215, 7, 15, 84,182,173, 93, - 43, 49, 93,217, 24,110, 99,133, 66,113,119,203,150, 45,134,216,216, 88,146,157,157, 77, 30, 61,122, 68,142, 29, 59, 70,166, 78, -157,170, 85, 40, 20,119, 1, 52, 54,197,166,157,157, 93,234,163,203, 23,200,203,136,112, 18,127, 39,148, 24,141, 70, 98, 48, 24, -136,193, 96, 32, 15,206, 5,145,136,223,127, 35,247,142, 29, 34,122,189,158,232,245,122,162,211,233, 72,179,102,205,146, 77, 76, -103,121, 56,184,185,185,233,131,130,130,200,209,163, 71,201,188,121,243,136,135,135, 7, 7, 96,134,169,247,174,178,117,242, 49, -111,224,158,246,185,255,102,195,233, 27,231, 73,244,243,123, 36,250,249, 99,114,228,210, 67,226, 55,127,163,193,188,129, 71,154, -202,214,201,167,186,123,183,180,180,236, 76, 81, 20, 41, 1, 0,210,164, 73,147,252,178, 91,227,198,141,223,216, 26, 53,106,148, -223,180,105,211,167, 86, 86, 86,237, 43,178, 57,166, 45, 8,121,176,159,144, 7,251,201,226,158, 32,209,209,209,183, 8, 33,127, -148,108, 26,141,230,143,227,199,143,255,241,209, 71, 31,253, 1,224,195, 42,242,201,164,252, 28, 15, 36,228,157, 60, 73,200,186, -117,132,120,123,147,135, 0, 25, 15, 36,212,208,102,179,255, 99,239,186,227,162,184,214,246, 51,179,125,217,101, 97,233, 44,160, - 2,138,130,162, 64, 68,197,222, 34,177, 87, 52,198, 30,141,230,198, 18, 77, 17,141,198, 94, 98,212, 24, 75,162, 38,246,216,197, -168,216, 21,123, 87, 20, 17, 80,144,222, 89,150,178,176,125,119,102,190, 63, 40, 65,164, 44,122,239,253,114,239,229,249,253, 96, -119,118,103,158, 61,231,204,153, 57,207,188,231, 61,239,235,228,196,121,186,254,199,207,244,167, 78,237, 97,206,159, 63,203,156, - 59, 23,206,252,121,114, 55,179,233,167, 47, 12,142,142,156,104, 0, 45, 26,192,201, 6,176, 10,192, 70,148, 89, 46, 95,201,229, -114, 38, 39, 39,135, 1,240,170,252,179,141,246,246,246, 27, 80,179,245,173,111, 85, 75,214,220,143,156,206,143,238,223,149, 41, - 41,206, 98, 70,247,239,202,204,253,200,233, 13,203,214, 71,158,158,150,179, 6,183,149,191,120,124,128,154, 53,184,173,252, 35, - 79, 79,203,119,108, 79, 2,101,121, 66,127,137,136,136, 48, 49, 85, 96, 52, 26,153,125,251,246, 81, 82,169,116, 79, 3, 56, 91, -218,219,219,167,218,216,216,188,170,250,161,125,187,225,157,189,187, 77, 88, 98,219,122,104,143, 6,148,179,131,128,203,205,184, -124,244, 87, 74,145,246,156,209,107,114,153,226,132, 72, 38, 35,246, 62,179,111,199, 70, 35,143,205,206, 0,208,225,125,250, 82, - 3,209,200,217,200,217,200,249, 55,228,172, 75,139,252, 39,131, 93,189,130,213,193,231,243, 66,151,124, 55,159, 40, 82, 20,105, -180,202, 18,189, 81,171,213,146, 92, 70,251, 60, 38, 41,143,100,179,138,230,206,153,109, 25,186,224,187, 80, 21, 48,206,204,223, -108,226,231,231,247, 48, 44, 44,204,193,198,198, 6,197,197,197, 80, 40, 20,120,248,240, 33, 24,134,193,136, 17, 35,248, 29, 3, - 3, 3, 22, 45, 94,124, 47, 35, 51, 51, 8,181, 15,188,127,137, 23, 27, 59,252,216,181, 44, 23,237,247, 41,138,178, 81,135, 32, -176, 51,100, 80,229, 62,203, 51,202,178,101, 8, 4,130,202,132,196,239,128,160, 62,125,250,112, 1,224,211, 79, 63, 85,150,148, -148,172, 41,183,112,152,149,105, 85,228,224,213,203,206, 89, 22,254,235,246, 31,133,109,155,123,193, 96, 52, 33, 53, 39, 11,108, -142, 53, 92, 93,185,152, 60,238, 67, 78,247,206, 54,118,171, 86,236, 60,155, 67, 99,184, 58, 63,254, 98,109, 92,214,214,214,251, -142, 28, 57,130,163, 71,143, 2, 0, 94,189,122, 5, 47, 47, 47, 81,125,101,136,142,142,246, 28, 50,100,200, 97,133, 66,209,162, -190,125,171, 7,198,231,243,249,232,218,181, 43, 90,183,110,141, 83,167, 78,245, 44,183,108,189, 23, 52, 55,111, 66,252,236, 25, -112,227,157, 30, 94, 60, 62,248,160,233,253,115,103, 15,216,157, 61, 23,139, 13, 27,118,227,245,235, 50, 67,155,167,167, 39, 62, - 25, 27,194,121,254,252,110,155, 81,163, 62,185,123,235,214,235,174,229, 66,169, 62, 44,251,237,183,223, 22,186,187,187, 99,212, -168, 81, 33,109,218,180,113,146, 72, 36,216,177, 99, 7,156,157,157, 61,245,122,125,194,169, 83,167,100, 57, 57, 57,152, 61,123, - 54,114,115,115,191,170,141,168,103,112,207, 69,252,193, 62,221, 90,125, 48, 17, 98,137, 51,126, 59,116, 4, 47,159,236,235,166, - 51,196, 46,226, 82, 55,198,107, 24,254, 36,121,154, 56,180, 89,251, 30,182, 45,218, 12, 65,211, 15, 34,237,180,212,173,164, 69, - 31,122,172,101, 11,180,251,150,110,200, 86,188, 69, 58,234, 24,203, 87, 25,103, 19,125, 25, 10, 96, 41, 93, 33,176, 42,173,181, - 12,134,116,239,222,189,242,196,165,164,164, 64,167,211,193,199,199,135,212,235,245,189,204,108,215,150,253,250,245,187,125,238, -220, 57,219,150, 45, 91,202, 11, 10, 10, 42,191,112,178,181, 14,190, 17,182,105,246,170,159,255,240,222,207, 16, 69,242,216, 63, -159,215,195,213,161, 75,167, 15,174,156, 15, 59, 32, 38, 74,211,193,179,206, 7,104, 5, 18, 15,239, 2, 97, 97,131, 49,159,207, - 99,247,234,211,219,229,195,254, 35,175,188,140,127,221, 7,192,163,198,231,250, 70, 52,226,127,218,170,197,252,183,213,169, 82, -104, 13, 26, 52,136,168,169,130, 52, 67,183,115,116,176, 21,110, 90,191,247, 17,203,160,215,139,172,173,244, 28, 43, 9, 77, 88, - 90,177, 12,122, 99,105, 83,207,166, 60,154,161,219,213,194, 95,125,137, 39, 33, 20, 10,195, 78,159, 62,237,192,225,112, 64,211, - 52,236,237,237,145,156,156,140,162,162, 34,148,148,148,224,117,108, 44,220,155,184, 97,105,232,124,231,217,243, 67,195,212,106, -117,123,188, 57,141,248,214,178, 81,202,248,102,222,232,138, 20, 44,111, 61,242,151,127, 86,195,119,230, 46, 69, 77, 78, 75, 75, -131, 88, 44,134,175,175,175,248,206,157, 59,183,234, 16, 89,111,112, 74,165,158,150, 52,159,119,244,151, 95, 23, 11, 13,198,104, -196, 36, 22,160,149,123, 55, 56,218, 54, 65, 86,129, 30,247, 31,158, 70,116,212, 65, 52,119,105,130,153,159,247, 22,172,253,241, -248, 17,174,201,189, 73, 81, 81,178,178, 38, 78,165, 82, 41,246,240,240, 64,147, 38,101,121,207, 40,138, 66, 76, 76, 12, 40,138, -170,220,174,250,186,247, 68, 4, 76,202, 84, 76,156, 48, 1, 10,133, 66, 92, 19, 39,135, 5,211,188,207, 62, 97, 11, 57, 0, 79, -100,163, 47, 45, 45,173, 76,195, 97, 48, 24,240,244,233, 83, 4, 5, 5,245, 56,118,236, 88,125,170,200,172,246, 52, 0,235,126, -222,179,103,243,184,226, 98, 18, 0,126, 39, 8,218,192, 48,235,204,237, 75, 14, 14,156, 19, 23,206,239,183, 99,145,113,176,177, -250, 1, 15, 31,166,194, 96, 40, 43,175, 66,145,135, 89, 95, 40,193,229, 88,226,212,169, 63,108,125,124,186,158,200,201, 49,248, -226,205,105,196,154,202, 41, 56,127,254, 60,102,205,154,133,152,152, 24, 89, 69,142, 54,161, 80,136,245,235,215,179,124,124,124, -100, 34,145, 8, 23, 46, 92, 64,110,110, 46, 81, 87, 57,175, 95,188,190,178,248,245,181, 69, 57,196,133,143,126, 59,116, 4,211, -198,142,129, 19,147,120,203,170, 57,177,178,223,224, 46,223, 51, 44,183, 65, 34,203,118, 82, 47,223,193,224,242,196,152,249,237, -114,188,138, 62, 35, 85,151, 68,125, 65, 80,233,110, 75, 55, 28,155,243, 86, 57,143,135, 80,159, 30,188,243,193,229, 38,143,154, - 62,123,250,217,131,236,200,157, 81,127, 9, 45, 79, 54, 65, 82, 86, 64, 89, 90,147,132,132, 4,188,126,253, 26,108, 54, 27, 26, -141, 6, 38,147,169,198,114,202,100,178,233, 38,147,233,251,242,243,188, 87, 32, 16, 76, 57,112,224,128,109, 85,161,109,223,110, -120,103, 91, 75, 81,159,220, 60, 69,225,221, 71, 47, 94,206,155, 62,170,231,205,251,209,233, 6,206,208,180,226,168, 83,197,181, -180,167, 64,200,227,157,184,112,242, 15,177, 49, 41, 2, 34,159,158,224,136,189, 64, 25, 51,161, 46, 84,161,228,117, 54,116,191, -110,133,255, 23,115,113,230,207,227,226, 54,109,219, 31,211, 25,141, 94, 0,244,239,112,109, 54, 4,141,156,141,156,141,156,127, - 79,206, 90,181, 8,195, 48, 31, 0,112, 44,223, 84,148,235, 2, 59, 0,249, 40,203, 40,224, 88,126,239,224, 85, 57,172,250,118, -213,125,171,111, 87,125,175, 40,127,239, 80,254,250,136, 32,136,130,122,138,238,140,178,212,132,103,203, 95,129,242,169,196,122, - 29,143, 9,130, 84, 82, 20,205,231,218, 59,104, 63, 29,221,167,237,165, 43,143,159, 90,216, 73,216,193, 61, 3,122, 60,124,158, -116,143, 32, 9, 35, 65,144,102,249,125,176, 88,172, 49,155, 54,109,106, 43,145, 72, 64,211, 52,172,172,172, 32,151,203,161,215, -235, 81, 92, 92, 12, 93,137, 18,134, 18, 37,158,165,167,160, 75,143,158, 24,249, 81, 63,159, 63,254, 60, 61,134,162,168,195,117, -241,202,218, 5, 84, 90,178,150, 55,179,253,203, 52,145, 94, 84, 41,186,126, 8,240, 2, 87, 44,198,135,243, 66,223,167, 15, 68, -158, 61,123,246,252,136, 17, 35,250,127,253,245,215,100,118,118,246,133,228,228,228, 46, 0, 98,234, 21, 21,124,193,151,255,248, -114,144, 84, 42,102,112,236,242,105,116, 15, 24, 11, 11, 30, 11, 10,165, 1, 4, 1,196,190, 8, 3, 65,216, 32,234, 85, 54,186, -249, 75,208, 47,216, 71,252,231,241,216,175,241,151,127,208, 91,167,166,176,176, 16,121,121,121, 48, 26,141, 48, 26,141, 24, 21, - 18,130,253,251,246, 65,165, 82, 65,163,209, 64,175,215,131,162, 40,144, 36,137,203,225,199,144,158, 20,139,206, 65, 65, 64, 45, -169,151,246, 61, 5, 7,192,253,151, 47, 95, 34, 54, 54, 22, 25, 25, 25, 16, 8, 4,112,114,114,194,242,229,203,161,211,149,229, - 19, 11, 9, 9,233, 1,224,249,251, 94, 80,175,129,157,201, 20,181,168,255,201,147, 14,119, 78,158,164,239,159, 57,147,193, 47, - 41,217, 97,206,177, 92, 46, 70,253,184,238,243, 86, 34,145, 8, 25,105,155,224,237,205,197, 87,115,109,177,230,135,124, 0,192, -236, 89,174, 8,108,111, 7,101,209,113,216, 57, 44,196,230,205,115,154, 79,154,180,113,130, 90, 77,237,173,135,122,209,233,211, -167, 71,122,121,121,185, 68, 70, 70, 18, 60, 30, 15, 66,161, 16, 66,161, 16, 2,129, 0,121,121,121, 72, 78, 78,102,126,252,241, -199, 76, 0,139,234, 34, 90,186, 57,251, 30,128,254,115, 63,194,249,151, 79,246,117,115, 97, 37, 61, 27, 57,179,107, 74,212,253, -200,146, 75,151,239,172, 48,105, 5,233, 69, 25, 87,230,123, 4, 70,218,125,241,205, 50,108,253,113, 9, 94, 62,184, 89,224,216, - 68,185, 77, 72,232,106, 44,103,143, 30, 75,217,206,142, 54,166,233,147, 70, 90,159,113,188, 59,253, 28,155,144,231,228, 63, 89, -143,228, 72, 13,191, 69,192,248,150,158,164, 62, 34, 34, 66,216,189,123,119,104,181,218, 74,203,228,129, 3, 7,104,147,201,116, -173,198,190,105, 48,124,159,153,153,233,172,209,104,240,209, 71, 31,205, 94,191,126,189,168, 34,159, 28, 69, 81,111, 88,178, 86, -254,180,255,226,151,223,111,187,118,241,240, 15,178,149,161, 83,122,142,155,185,234, 26,106,201, 35,201, 38,201, 47,206,156,220, -237, 36,144, 26, 33,180,233, 7,109,174, 6, 47,119, 78,131, 90,169, 69,224,202,101, 0,120,208, 27, 73,236, 24, 60, 10, 28, 91, - 25,150, 76,157, 34,251,110,199,111,159,211, 52,189,169,241,185,190, 17,141,104, 68, 53, 56, 18, 4, 17, 14, 0,161,161,161, 11, -215,172, 89,243,130, 32,136,112,134, 97, 6,149, 27, 80,194, 25,134, 25, 84,177, 79,185, 56,123,107,187, 98,223,234,219,213,223, - 47, 88,176,160,205,218,181,107, 87, 7, 5, 5, 29,190,123,247,110, 18,128,250,132,214,192,114, 97,245, 86,234, 29,178, 66, 65, - 86,125,125,195,162, 69,211, 55, 19,146, 82,212,253,250,118,116, 13,191,241,252,209,228,201, 3,251,140, 25,220, 61, 56, 57, 77, - 17,219,188,169,147,221,139, 23,207, 37, 52, 77,223, 52,167,149,248,124,254,160,222,189,123,179, 11, 11, 11, 97, 97, 97, 1,185, - 92,142,204,204, 76, 24, 12, 6,104,139,139,160, 43, 46,130,182,168, 16,134,226, 66,188,126,252, 16,237,154,123,242,203,157,229, -235, 68,133,213,165,186,165,170,170,101,139,103,105, 9,190,165, 37,136,134, 79, 27, 14,181,182,182,190, 95, 49,168, 26, 12,134, - 47,230,207,159,159, 79,211, 52, 86,173, 90, 37, 17,139,197,199, 0,240,235, 35,177,180,103, 13, 10,242,247, 37,227,146,163,208, -213,111, 34, 90,122, 12, 64,114,174, 6,249, 37, 6,228, 21, 25, 16,216,125, 11,154,249, 45,131,155,255, 26,196,166, 22, 64,230, -226, 69,130,205,175, 51,249,115,122,122,250, 27,219,135, 15, 29,130, 90,173, 70,243,230,205, 49,118,236, 88,204,159, 63, 31, 99, -199,142,133, 76, 38,195,184,209, 67,176,100,201, 18,228,228,228,212, 87, 84, 93,203,150, 45,117, 77,155, 54,213, 53,109,218, 84, -103, 48, 24, 80, 90, 90,138,162,162,162,234,237, 61,167,161, 13,233,224,224,176,192,201,201, 41,202,193,193,225, 5,159,207, 63, -247,148, 32,226,180, 77,155, 58,118, 25, 54,140,104, 61,122, 52, 43, 85, 40, 36,110, 0, 98,115,184,236,108, 56, 3,123,245,238, -207, 43, 42,220, 93,105,164,154, 50,217, 30,183,111,180,193,157, 91,237, 49,235,139,230, 32, 72, 1, 8,146, 7,181, 42, 2, 29, - 59, 4,113,173,173,137,250,250,210, 39, 0,158,118,233,210, 69, 54,115,230, 76,130,207,231, 99,246,236,217,134,169, 83,167,198, -143, 29, 59, 54,254,234,213,171, 84,211,166, 77,225,230,230, 70,184,185,185, 57, 3,120, 90,126, 76,157,144, 52, 39, 86,234, 12, -177,183,172,189, 68, 73, 20,236, 58,151, 26,249,163,150,110,200, 86,172,252, 37,105, 67,242, 75,181,231,203, 7, 55, 21,241,209, -103,232,228, 71,215,243,179,226, 75, 60, 87,254,146,180, 97,225,182,172, 26, 47,234, 27, 55, 64,135,133,223, 48,168, 85,106,246, -176,193,189,212,211, 63, 29,211,210, 70,220,230, 0, 92,250,249, 53,107,226, 58,110,201,234,205,134,169,159,127,105,248,125,215, -110,166,164,164, 4, 74,165, 18,155, 55,111, 54,157, 57,115, 38,147,162,168, 47,107,123, 6, 2, 0,163,209,136,233,211,167,139, - 36, 18, 9,210,211,211, 43, 45,162, 0,144, 45, 87, 60,191,243, 40, 58,110,222,140,144, 30, 42,157, 78,119,241,250,227,216,214, - 94, 77, 93, 9,130,169,117, 33, 10,143,195,249,176,125,199,142, 44,134, 41, 2,193,110,130,215,251,126,132, 50,167, 0,202,188, - 2,176, 56, 34,152,192,135,145,230,193,186, 93, 7,188,122, 20, 9, 23,123, 71, 54,159,195, 9,110, 28, 79, 26,209,136,255, 77, -212,165, 69,170,138,165,181,107,215,174,174,235,251, 42,175,250,106,219,149, 66,170,186, 8,171,250, 30, 0,214,174, 93,187,154, - 97,152, 65,119,239,222, 61, 4, 64, 99,102, 21, 62,171,242,106,126, 28, 45,150, 86,191,230,235,249,139, 32,181, 18, 90,117, 8, -240,114, 58,117,225,198,227,155,119, 31,199, 54,115,179,179,103,140,122,233,186,141, 91, 93, 9,181,102,173,153,133,240,177,179, -179,131,193, 96, 64, 66, 66, 2, 50, 50, 50, 96, 48, 24, 96, 82,169,160, 43, 42,130,182,176, 16,148,170, 4, 92,138,130, 70,158, - 7, 91, 11, 1,240,215,138,196,122, 44,111, 68,141, 66,171,226, 85, 32,145,128,111, 41, 1,201,225,212,155, 41,190, 10, 62,232, -208,161,195,209,232,232,232,142,125,251,246, 93,129,178, 37,242,169,153,153,153,125, 22, 47, 94,172,115,116,116,196,244,233,211, - 91, 1,152, 88,175,200,228,233,125,154, 58,181, 66, 75,207,137,104,230,214, 27, 69, 42, 35,228, 74, 35,242,138, 12,216,177, 37, - 8, 39,126,239,128,219, 39,186, 33,250,226,135, 40, 50, 58, 65, 44, 27, 10,134,210,183,169,139,243,242,229,203, 88,190,124, 57, - 86,172, 88,129, 85,171, 86, 97,197,138, 21,200,204,204,132,175,175, 47,210,210,210,112,254,252,121,100,103,103,195,206,206, 14, - 15, 31, 62,196, 79, 63,253,132,219,183,111,215, 91,233, 10,225,106,198, 62, 13,154, 75, 55,153, 76,147,178,135, 13,107,155,107, - 99,211, 58, 32, 32,160,255,236,217,179, 61,187,116,233, 82,249,189,167,167,103, 19,161, 80,152,131,178, 21,148,254,117,113,209, - 64,128,189,189, 47,244,186,184,242,115,204, 1, 65, 8,208,251,195, 88,116,233,246, 24, 6, 35, 23, 36,193, 7, 73, 10, 96, 50, - 41, 32,149,202,192, 48,132,111, 61, 69, 92, 44,151,203,189,174, 92,185, 66, 38, 39, 39, 67, 32, 16, 0, 64,202,210,165, 75,183, -110,216,176, 33,198,214,214,150, 10, 15, 15,199,159,127,254,137, 65,131, 6,177,166, 78,157,234,229,230,230,182,189,190,122, 47, -221,156,125,239,224,198,243, 31,115,140, 82,127,129,176,153, 59, 84,226,161,255,232, 97, 39, 2,128, 11,137,137, 37, 14, 77,148, -107, 85, 37, 81,105,214,174,165, 63, 92, 72,172,111,197,233, 82,250, 73,124,220,253,131, 39, 47, 20,231,229, 22,114, 2,218,182, -209,172, 89,254, 13,183,153,123,139,117, 75,230,207,112,202, 84, 10,138, 62,156,125, 62, 46,236,194,195,210,241,147,167,153, 62, -253,108,166,246,252,133,203, 39,105,154,110,139, 90, 86, 28,210, 52,141,236,236,108,188,120,241, 2,137,137,137,144,203,229,200, -207,207, 71, 73, 73, 73,229,116,163, 69,137,242,236,214, 61,103,158,137,132, 66,139,142,109,189,154, 60,136,140,201, 19, 9,133, - 22, 94,238, 77, 90, 2, 75,107,188,143, 80, 20,213, 86, 96, 33, 4, 64,160, 40,250, 38, 74, 11, 75, 81, 90, 84,138,146,130, 82, -232, 12, 44,104,117, 36, 52,122, 18, 77,123,244, 67,169, 74,139, 82, 69, 49,104,138,242,107, 28,110, 26,209,136, 70,212, 49,214, -135,135,134,134, 46, 52,115, 95,179,167, 55,171, 11,175,208,208,208,133, 4, 65,132, 47, 88,176,160, 13,106, 95, 80, 85, 21, 59, -107,248, 3, 96, 70,120, 7,133, 34,190,212,146,240, 25, 49,247,219,239,207, 31,218,181,197, 65,167, 83,167,217, 74,197,148,216, -130,103,247,233,244, 85, 40, 41, 45, 28,174, 50, 63, 28, 1, 10, 11, 11,145,148,148, 4,161, 80, 8, 46,135, 3, 74,163, 1,165, - 81, 65, 83,168, 0,105,208,129, 75, 81,176,177, 16,162,169,204, 9,205, 28,157,204,226, 76,136,184, 84,233,248, 94,117,186,240, -199, 14, 62,224,137,196,224, 89,138,241,143,240,235, 0, 0, 46,151, 11, 44, 94, 97,150,209,196,197,197,229,244,193,131, 7,185, -114,185, 28, 79,159, 62,125, 6,160, 24,128, 37, 0, 58, 54, 54,246, 74,116,116,244, 32, 47, 47, 47, 0,104, 94, 31,153, 50,159, -164,140, 38, 6,233, 57, 41, 72,206,136,132,141,149, 7, 56, 22, 45,145, 87,100, 0, 95,232, 1,163,238,175,217, 71,173, 50, 21, - 26, 3,203,172,186,235,245,122,152, 76, 38,152, 76, 38,232,245,122,124,246,217,103,184,115,247, 46, 14,255,121, 21, 73,175, 95, -161,149,187, 19, 38, 76, 24,143, 14, 29, 58,224,238,221,187,117,114, 77,244,135,209, 69, 12,246,198,254, 36,120, 98, 91, 93,167, -249, 23, 31,212, 39,182, 8,130, 96, 80,203, 84,100, 53,108, 8, 10, 10,106,241, 74,165,194,139,184, 56,244, 93,186, 20, 0,112, -238,220,185, 55,234, 50,111,222, 60, 94, 76, 76,204,167,143, 31, 63,254, 52, 43, 43,107, 35,128,154,157,205, 25,224,236,217,123, -152, 49, 35, 6,114,185, 28, 0,112,228,208, 95,186, 52, 57,201,128,143, 6,150,205,104, 89, 91, 91, 99,227, 70, 95,179,218,147, -162, 40,236,220,185,179,114,186, 16, 0,216,108,118,151,121,243,230,141,168,105,255, 22, 45, 90,112,235,227,156, 59,202, 69,112, -251, 25,243,133, 85,139,102,109, 36,118,237,160, 48, 70,250, 70,102,102,207,154, 59,202,101,211, 79,199, 51,181, 66, 66,183,151, -160,210,221,216, 2,237, 62,115,202,152,120, 97,139, 94,209,116,210,190, 28,185,242,187,153,211, 62,177,149, 88, 59,168,126,223, -186, 70, 74,178, 72,230,244, 99, 67, 81, 27, 79, 91,235,161,157,126, 46,157, 49,119,113,164,222,148, 62, 19,233,167, 95,161,142, - 16, 23, 20, 69, 33, 43, 43, 11,114,185, 28,105,105,105,200,207, 47,155,126,205,207,207, 7, 77,211,239,115, 67,132, 38, 45, 13, -169, 39,127, 71,179,241,227, 17,184, 98, 57, 40,154, 13,141,154,194,198,206,125, 80, 88,172,129,142, 38, 32,251,160, 51,166,157, -187, 5,146,161,128, 29,219, 26, 71,146, 70, 52,226,127, 20,230,132,119,168, 16, 68,107,214,172, 25,244,207,254,253,170, 98,107, -205,154, 53, 47,214,172, 89,211,144,223,170, 62,101, 88,185, 93,225,163,117,189,138, 3,218, 91,131,102, 73,126,108, 98, 76, 12, - 59, 75,165, 81, 89, 56, 58,216,235, 44, 4,124,186, 88, 89,194,138,124,254,204,160,202,121,253,178, 1,245,136,141,142,142,246, -205,202,202, 66, 90,106, 42, 76, 26, 21, 72,157, 30,140, 86,141,190, 93, 59, 67, 0, 64, 64, 18,224,210, 6,176, 89, 60,148,148, - 42, 1, 32,182,222,193,209,104,124,203,178, 69, 16, 4,120,150,150,224,137, 68,224,137, 45,223,176,112,153, 99,177,225,243,249, - 7,143, 29, 59,230,236,226,226,130,229,203,151,195,213,213,213, 91, 38,147,169,173,172,172,132,142,142,142,104,221,186, 53, 58, -119,238,140,243,231,207, 3,102,196,148, 50,154, 4, 81, 47, 83,208, 37,191,224, 46,110, 93,255, 21,122,141, 14, 1, 61,126,133, -129,221, 12,246,109,150,129, 78, 56, 0,117,206,169, 50,235,129,211, 96,100,164,165,128, 96,241, 94,152,107,121,170,120,255,236, -217, 51, 28, 58,117, 3,206, 77,125,144, 22, 31,135,184,107, 87,112,199,222, 22, 77,125, 90, 87, 78, 3,213, 90, 70, 10,236,149, -219,202,194, 68, 45,250,226, 19,126, 65, 65, 1,223,198,198, 70, 87,209,118,206,206,206,239, 35,182, 62,249,250,235,175, 81,196, -225, 0, 3, 7,130,155,152, 8,131,193,128, 78,157, 58, 33, 48, 48, 16, 0,208,169, 83, 39,176,217,108,180,107,215, 14, 50,153, - 12,219,182,109,251,164, 54,161, 69, 18,120,106, 50, 41,188, 61, 61, 61, 43,133,214,190,253,114, 68, 62,254, 16, 4,120,216,188, - 53,161,114,223, 38, 77,154, 32, 39, 59, 17, 4,193, 68,215, 83,198, 21, 78, 78, 78,139,157,157,157, 61, 55,108,216,192, 18, 8, - 4,248,252,243,207, 61, 74, 75, 75,155,149,155,146,177, 96,193, 2, 0,192,146, 37, 75,176,116,233, 82,232,116, 58,117,109,100, -251, 54,182,149,229, 21,208,159, 50,165, 22,195,123,217, 53,107,219, 59,184, 47, 60,188,122,163,119,112, 26, 0,172,182, 97,167, -140, 94,247,157,245, 73,107, 75, 98,247,165, 11,151,151,116,237,209,251,187,249,165,215, 86,254,176,179,168, 94,159,199,226,212, -189, 37, 47,121, 99,126,218,178,125,255, 79,223, 47,152, 35, 72,147,235, 11, 51, 11,207,198,236,221, 0, 0, 32, 0, 73, 68, 65, - 84,153, 82, 49,159, 45,110,238, 72,136,103,125,187, 34, 41, 43, 43,241, 43,164, 95,168,119,165, 37, 77,211, 72, 76, 76,172,244, -233,211,106,181, 80,169, 84, 72, 79, 79,175,236, 51, 26,145,228,163,153,147, 7,251,169, 52, 26,245,131,231,241,105,139,102,143, - 11, 82,105, 52,234,248,228,180, 87,192,230, 26,213, 24, 73,146,207,213, 37,234,190,234, 34, 45,228, 79, 95,194,181, 79, 83, 24, - 77, 4,244, 38, 10,114, 69, 9,116, 38,128, 34, 57,104, 51,122, 2, 40,130,141,252,172, 76,144, 44,214, 51,188,233,180,223,136, - 70, 52,226,127, 7,117,106,145, 10,139, 86, 80, 80,208,225,170, 86,167,138,247, 0,116,168,219,149, 71, 94, 85, 76, 85, 76, 39, -214,246, 59,213,120,205,197, 91, 62, 90,245,134,119,168,248, 77, 55, 43,165,236,199, 37,227, 92,105,147,169, 85, 94,126,174,137, -205,230,115,220,172, 52,217, 5,105,230,255,186, 78,167, 11,191,114,229,202,176, 15, 63,252,144, 31,255,252, 25,244,197,197,208, - 23, 23,129, 67,155, 96, 35,108, 15,210,160, 3,161,215,195,197,155,134,182, 68,136, 27,119,162,141, 58,157, 46,220, 92,161, 69, -178, 88,111,250,101,137,197,224, 91, 74,192, 23,139,171, 79, 45,214, 39, 10, 44,250,245,235,215,167, 83,167, 78, 96, 24, 6, 59, -119,238,132,193, 96,224, 25, 12, 6,232,245,122, 24, 12, 6, 40,149, 74,236,223,191, 31,191,252,242,203, 29, 0,123,234, 29,204, - 76,250, 43, 23, 47, 71,116,152, 50,110, 16,231, 92,248, 70,152,244, 20, 52,132, 43, 84, 42, 35, 74,245, 22,160,108,199, 3,185, -103,193, 98, 11, 16,212,206, 3,167,142,135, 25, 96,210, 93, 53, 83,133,191, 97, 21, 74, 79, 75, 65,198,235, 87, 16, 43,115, 96, - 47,177,128, 58,241, 21, 2, 38, 76,124, 39,235,132,155,155, 27,104,154, 70,175, 94,189, 42,157,171,223, 85,108, 41, 20, 10,156, - 57,115, 6,157, 58,117, 66,143, 30, 61,144,153,153,137,196,196, 68, 12, 24, 48,160,114,159,103,207,158, 33, 50, 50, 18,205,155, -215,109, 36,204, 47, 48,158,203, 72,127, 26, 50,116,232, 80,238,253,251,247,193, 48, 12,188,188, 36,144, 88,138, 64,144,124,248, -248, 56, 0, 40,123, 6,232,217,179, 39,148,202, 68, 83, 97, 33,115,174,158,234, 30, 4,240,167, 94,175, 79,232,222,189,187,236, -245,235,215,152, 59,119, 46,251,200,145, 35, 21,166,100,132,134,190,185,152, 66,163,169,125,234,190, 85, 91,239,111, 60, 76,210, - 30, 2, 97, 51,119,137, 93, 59,120,120,245, 6, 0,124, 56,104, 10, 60, 90, 52,129, 50, 63,202, 93,171, 73, 25,206,101, 23, 74, -163, 54,103,198, 8, 7,250, 78,214,230, 93,143, 71,217,212,105,189,167, 93, 19,127, 36, 55,141, 51,254,232,159,167,207, 79, 31, - 48,104, 8,199, 72,153, 76,190, 77, 57,214,199, 78,158,205,203, 76, 77,251, 25,105, 23,162,255,178,255,213,105,197,163,148, 74, - 37, 68, 34, 17,162,163,163,117, 3, 7, 14,228,147, 36,137,132,132,132, 74,161,229, 96,103,211,186, 75,160,175,247,202,159,246, - 95, 20,241,249,252,224,158,237,125, 98,226, 83, 51, 24,134, 72,169,213,218,106, 52, 94,126,254,244, 89, 47,123, 89, 11, 86,226, -245,251,176,237, 54, 0, 58, 29, 9,141,158,134,206, 4,152, 88, 92, 56,251,119,132,117,115, 31, 48, 0, 30,221,191, 99,212, 25, -141, 23, 27,199,154, 70, 52,226,127,218,170,197,212, 37,146,202,223, 23, 0, 72, 89,179,102, 77,126, 21,107,147, 28,192, 51, 0, -126,229,251,201,171, 29, 39, 39, 8,226, 17,195, 48,129, 85,120,228, 85, 4, 87,213,247,250,106,251, 60,107,128,200,170,250,250, -166,208,170,109, 73, 37, 0,216,217,217, 57, 4, 4,180,111,254,219,174,163, 96, 24, 6, 47, 35,215,163, 48, 47, 14,139, 87,223, -107,238,226,226,210, 35, 51, 51,243,134, 57, 37,160, 40,234,200,238,221,187,191,234,248, 65, 64,128,187,171, 43,158,165, 36,131, -203, 80,224, 82, 20, 72,131, 14,108, 74, 15, 87, 95, 10, 36, 33, 70, 86, 86, 49,214, 30, 60, 26, 93, 30, 37,190, 78,120, 15, 24, -130,229, 25,197, 32, 8, 2, 27,130,124,193,179, 20,131, 43, 18,227, 31,167, 35, 42,197, 85,248,242, 5,224,137,197,104,222,209, -172,128,240,234,107,215,174, 61,126,254,252,121,160,175,175, 47,190,250,234, 43,164,164,164,128,166,105,228,230,230,106,179,179, -179, 51,229,114,121, 10,128,147, 0,126,131, 25,145,199,185, 58,237,166,240, 19,251,102, 6,117,237, 97, 55,116,248, 47,248,243, -248, 60, 20, 21, 43,161, 54, 9,161,210,154,160,210,177, 96, 99,219, 22, 29,219,181, 67, 86,102, 30, 94,220,191, 88,202,214,169, -215, 55,164,131, 18, 4,129,200,200, 72,120,202, 44,241,234,214, 13,216, 89,112,224, 39,115,130,172, 75,215,202,248, 82,117,129, -195,130,233,147, 79, 62,169,140, 12,223,175, 95,191,228,241,227,199, 59,207,155, 55, 15,187,118,237,194,157, 59,119,222,114,208, -238,209,163, 7,110,222,188,185, 12,192,146,250,140,122,122,189, 30,222,222,222,120,244,232, 17,174, 92,185,130,222,189,123,163, - 71,143, 30,136,138,138,194,165, 75,151, 16, 25, 25, 9,130, 32, 96,107,107, 11, 99,153,120, 54,214, 70,102, 48,224,216, 15,235, -118, 47,252,233,167, 95,218,140, 27, 55, 14, 39, 78, 28,198,148,201,173, 64,144,124, 16, 4, 31, 67, 6,183,194,242, 21,143,208, -177, 99, 79,216,217,113,240,211,198, 83, 73, 26, 13,181,223,140,102, 92,121,233,210, 37,153, 86,171, 69, 81, 81, 17, 35, 22,139, - 9,133,162,108, 69,107, 77, 22, 45,181, 90, 45,168,141,232,249,147,216,245, 69, 37, 76, 33, 83, 26, 57,188,192, 20,217,182,119, -112, 58, 62, 28, 52, 25,151,195,247, 32,226,226, 21,216,176, 83,146, 33, 42, 57,159,159,156,175,204, 86,121,109,247,249, 96, 42, - 43, 67,117,113,251,172, 33,175, 88,206,206,244,177, 5,191, 42,139,234, 18, 90, 0,136,130,152, 3,167, 79, 50, 24,210, 57,168, - 99, 11,223, 38,206,188,194,252, 60,230,248,169,243,209,134,228, 19,103,170, 8, 44,166, 30,161,190, 60, 52, 52,244,251,242,247, -123, 23, 45, 90, 52,117,237,218,181,246, 57, 57, 57,149, 62, 90,121,249, 5, 17,157, 7,206,162, 20, 69,197,250,221, 63,125, 59, - 74, 40,224,243, 22,173,221,125,221,200,194,253,218,120, 77, 52,189,109,244,220,197,115,226, 95, 70,186, 52, 19,242,112,234,219, - 37,120,118,233, 26,140, 36, 23, 51,174, 60,128,206, 64,161, 40, 95,129,171,159,126, 1,177,163, 20,191, 92, 63,145, 75,211,244, -175,141, 67, 77, 35, 26,241,191,139,218,180, 8, 65, 16, 53,197,216,203,173,225,179, 71,117, 29, 87, 11,207, 63, 3,181, 70,133, - 55,107, 9, 94,126,126,126,222,205,155, 15,112, 61,124, 37,110,132,175,196,139,200,103,200,202,212, 35, 51, 87, 11,137, 68,114, -175,142, 67,171, 71,142,101,212,106,245,136, 69,139,191,207, 17, 8, 45,208,189, 79, 31, 56,217, 59,192,130,203, 1,203, 68,131, - 69,112, 80, 42,183,198,171, 40, 53,230,239, 62,144, 87,170, 86,143,168, 97,144,232, 91,155,200, 32, 8, 2,124,137, 37,120, 98, - 75,240, 45, 37,111, 76, 35, 10, 36, 18, 8, 44, 37, 96,243,120, 53, 57,195,191,197, 89, 90, 90, 58,114,212,168, 81,133,197,197, -197,152, 58,117, 42,110,220,184, 17,121,241,226, 69, 73, 84, 84,148, 80, 46,151,183, 0,208, 15,192,142, 58, 68,214, 27,156,133, -133,137, 37,140, 73, 55,102,205,247, 95,106,180, 38, 91,132, 76, 60, 2, 17,153, 14, 19, 69,131, 1, 32,179,225,161, 75,223, 21, -200,211,119,198,145,237,171,212,180, 65, 59,174, 90, 12,173, 55, 56, 25,134, 97, 28, 29, 29,223,106,131, 43, 87,174, 32,100,212, - 72, 4, 15, 31, 6,123,119, 79, 56,244, 29,128,224,169, 51,176,125,251,118,144, 36, 9, 59, 59,187,234, 3,111, 37,231,190,167, -224, 28,122, 14,226,208,115, 16,123, 35,193, 6, 48,225,192,129, 3, 63,248,249,249, 93,187,115,231,206,122, 0, 99,170,254, 86, - 21, 44,173,102,205,170,233, 28,125, 55,103,206, 28, 77,124,124, 60, 68, 34, 17, 76, 38, 19,238,220,185,131, 95,126,249, 5, 27, - 54,108, 64,100,100, 36,108,109,109,209,188,121,115,232,116, 58, 60,122,244, 72, 3,224,187, 58, 56,105,185,220, 52,114,243,230, -181,138, 65,131,186, 97,247,238,173,112,114,234, 12, 14,219, 9,108,142, 61, 68, 98,111,252,254,219, 15,232,223, 63, 0,167, 79, - 29, 45,200, 87,152, 70, 2, 48,153,209,151,180, 15, 30, 60,192,246,237,219, 49,106,212,168,204,144,144, 16,170,184,184,184,210, -162,197, 48, 12, 24,134,193,210,114, 31, 51,157, 78,199,175,141,115,218,252,232,204,111, 87,189, 88,158,155,147,217,233,198,181, -123,159, 68, 92,188,130,164,248, 8, 68, 92,188,130, 91, 17,119, 67,115,115, 50, 59, 5,116,104,201, 29, 49,117,230, 55,251,194, - 78,176,196, 18,103,236, 11, 59,193, 26, 59,235,203, 85,237,131,123,127, 87, 95,159, 47, 63,143, 76,105, 94,238,130,213,235,183, -148,154, 12, 90,242,199,159,183,101,105,228,217,223, 85,233,151, 76,125,253, 83,163,209,236,208,106,181, 50,173, 86, 43,211,233, -116,223,165,164,164,116,255,234,171,175,228, 20, 69, 85, 90, 75,229, 49,167,239,197,221,222,187,218,193, 78, 42,236, 28,216,166, -213,198, 29,199,175,167,165,231,254, 81, 37,134, 86, 77,229,212,150,106,180, 35,135,141, 24,175, 42, 42,212, 33,232,203, 80,208, - 2, 49,116, 20, 96,100, 88, 48, 17,108, 60, 95,185, 17, 66, 27, 75, 28, 76,126,162, 46, 54, 26, 70,226,205, 24, 90,117,213,253, -125,208,200,217,200,217,200,249,247,228,252, 79,134, 51,222,204,117,232,252,134, 69,171,190, 37,149, 46, 46, 46,221,135, 14,233, -139,158,131, 22,129, 97, 24,196, 61, 89,135, 66,249, 75,184, 56,241,145,152,166, 12, 2,112,163, 1,133, 73, 75, 73, 79,239, 52, -231,187, 69, 97, 33,253,250,248,248,186,187,243,155, 53,107, 10,145,131, 3,242,243,229,184,125, 63,198,184,234,208,177,232,114, -145,101,214,196, 36, 77,211,101, 78,238, 0,250,204,153, 15,130,197, 2,202,195, 56, 84, 12,140,238,129,157, 65,176,217,160, 24, - 26, 58,157,206,156,213,114, 25,175, 95,191, 30, 57,110,220,184,171,225,225,225,100,112,112,176,255,201,147, 39,223, 39,103, 30, - 84,121,241,215, 0, 12, 90,181, 96,250,145, 78,189,135, 73,188,218,180,231,182,111,198,130,193, 72, 32, 43, 51, 21,225, 97, 15, - 13, 49, 15, 46, 42, 25,147,118,140, 58, 63,254, 90, 93, 92, 6,131, 33,173, 69,139, 22,142,219,183,111,175,116,134,167, 40, 10, -249,249,249,184,119,239, 30,218, 6,118,132,207,228, 79, 33,151,203,177,121,243,102, 52,105,210, 4,131, 7, 15, 70, 65, 65, 1, - 76, 38,147,185, 19,190, 20,128,139,229,127,168, 38,178,136,242, 20, 64,117, 78, 27,122,122,122,242,180, 90,173, 63,195, 48, 44, -130, 32, 54,233,245,250, 73, 11, 22, 44,112, 94,189,122, 53, 90,181,106,133,252,252,124,136, 68, 34,120,121,121, 65, 46,151,227, -225,195,135,148, 90,173,222,142,178, 68,214,242,122,202,151,240,240, 97,114,167,217,179,255, 17,246,195,218,233, 94, 90, 93, 79, -158,141, 77, 87, 48,140, 9,114,121, 10, 74,148,119, 12, 43,150,239,121,157,155,103, 28, 1, 32,222,204, 58, 47,153, 57,115, 38, - 0, 8, 0, 44, 74, 76, 76,124,234,227,227,227, 85,155, 69,203, 28,252,116, 60, 83, 11,224,208,200, 96,217, 92,101,126,148,151, - 13, 59, 37,185,147, 47,189,249,167,227,153, 90,137, 76,181, 50, 63,229,198,171,108,213,197,237,251,194, 78,176, 38, 14, 31, 73, -185,138,227, 67, 5, 14,204,113, 51,168, 25, 63, 63, 63, 55,130, 40,240,200, 83,188,124, 60,101,234,244,209, 86, 92,205, 57, 63, - 87, 69,115,178, 73,128, 32, 50, 50, 50, 25, 13, 92, 25, 90,142, 87,153,153,153,221, 23, 44, 88,112,145, 97,152, 55,124, 19,242, -242, 11, 34,130, 6,205,100,138,138,138,159,202, 99, 79,155, 19, 75,237,225,195, 39,145,125,124,219, 6,156,248, 97,245, 90,199, -158,115,190, 98,191,186,118, 29,160,140, 72,189,113, 29, 20, 95, 79,111,188,123, 57,183,216, 96, 24,142,198,168,240,141,104,196, -255,188, 53,171, 46, 45,242, 55,199, 64,212,226, 12,111,118,101, 60, 61, 92, 46,182,242,106,214,175,137,171, 61, 0, 32, 49, 57, - 11,137,201,153,151, 18,147, 50,131,235, 81,188,181, 45,175,172, 76, 42, 77,148,135,112, 96,204, 75, 42,253, 6,167,173,173,237, - 99, 54,155,237,218,144,214,160, 40, 42, 43, 63, 63, 63,192,204,114,142,117,119,119, 95,155,154,154, 26, 70,211,244,220, 6,170, -253, 26, 57, 43,146, 74,147,108, 94, 95,198,164,111, 11, 0, 4,155,103, 78, 82,233,170,156,109,197, 98,241, 14, 14,135,211,164, -226, 60, 86,248, 96, 81, 20,197, 50, 24, 12, 2,138,162, 88, 0, 8,146, 36, 77, 28, 14, 71, 75, 16,132,201,100, 50,165,233,116, -186,233,248, 43,224,104, 93,117,175,119,160, 47, 23, 90,168,193,162,117, 5, 0,226,227,227, 91, 74,165,210, 49, 4, 65,140, 98, - 24,198,187,164,164, 68,183,120,241,226,200, 99,199,142, 41,221,221,221, 63, 26, 56,112, 32, 17, 21, 21,133,232,232,104, 70,161, - 80, 28, 47,183, 98, 37, 54,176, 47,145,124, 62,235, 99, 27, 27,114, 32,195,192, 15, 12, 8,130,196,243,226, 98,250,156, 90, 77, -253, 81, 46, 24, 27,218, 63, 43,240, 73,179,102,205,246, 36, 39, 39,115,106,179,164,214, 86,247,234, 88,247, 93,155, 69, 65,221, -186,141,188,119,235,214,201,111, 87,189, 88, 94,245,187, 89,195,164, 83,198,126, 49,103,221,161,109, 63,127,187,229,207,194,221, -230,148,211,223,223,223,147, 32,136, 49, 0,124, 25,134,105,193, 48,132,128, 32,152, 66,130, 32, 94, 0,136,210,235,245,225, 49, - 49, 49, 25,239, 81,247,119,121,194,173,141,179, 50,169, 52, 40,170, 29, 5, 48,102, 38,149,254,119,151,179,145,179,145,179,145, -243,255,143,243, 63, 25,159,213,240,153,121,145,225, 43,144,152,148, 25,156,152,148,137, 22, 45, 90, 48, 9, 9, 9, 13, 18,105, -181, 13,210, 20, 69, 29, 86,171,213,135,223,135, 68,161, 80,180,255, 23, 55,222,161,228,228,228, 67,255, 76,194,114, 33,181,188, -252,239, 93,241,188,180,180,180,163,185, 59, 27, 12,134,127, 69,219, 16,229,214,172,101,181,237,208,175, 95,191, 84,131,193,112, - 5, 64, 58, 65, 16,214, 0, 10, 12, 6,195, 69,147,201,148,155,144,144,208,126,227,198,141, 21,145,239, 87, 0,120,252,142,229, -160,117, 58,234, 96, 86, 22,117,240, 95, 80,199,131,122,189,126,158,173,173,109,115,173, 86,203,211,106,181,220,170,139, 15,132, - 66,161,188, 46,135,248,170,176,182, 36,246,114,217,133,182,214,150, 68,117, 33, 5, 27, 23,156,208,168,162, 91,217,184,224,132, -185, 5,123,250,244,105,162,159,159,223, 1,146, 36,221, 25,134,113, 4, 24, 43,134,129,156, 97,152,124, 54,155,157, 25, 19, 19, -147,249, 55,186, 9,105, 77, 52,189,222,164,215,255,229,119,216,184,186,176, 17,141,104,196,127, 15,106,245,209, 98, 55,148, 41, - 33, 33,129,104,108,207, 70, 84, 21, 91,117,125,153,154,154,170, 3,112,183,252,175, 58, 30, 3, 24,252,119,175, 96,118,118,118, - 64,109,223,153, 43,178,128, 50,159, 45, 32,186,198,232,236, 75,183, 20,150, 96, 75,216, 55, 13, 45,219,179,103,207,210, 96,230, - 20,123, 35, 26,209,136, 70, 52,226, 95,134,247,183,104, 53,162, 17,141,104, 68, 35, 26,209,136, 70, 52,162, 70,236,172, 34,184, -222,176,110, 17,168,125,229, 64, 67,230, 94,223,101,245,193,149, 70,206, 70,206, 70,206, 70,206, 70,206, 70,206, 70,206,255, 57, -206,255, 86,188, 37,178,254, 29,104, 92,250,218,200,217,200,217,200,217,200,217,200,217,200,217,200,249,191, 32,178,170,255, 1, -104,156, 58,108, 68, 35, 26,241, 63,140, 99,199,142,153,149, 84,244,227,111,127, 31, 36, 22, 75, 23,151, 42,139,215, 30, 94, 63, -229,100,197,231, 33, 33, 33, 84, 99, 43, 54,162, 17,141,192,187, 56,195,123,120,184,182, 38, 41,186, 11,195,144, 44,134,100,140, -132, 82,115, 36,177,176,240,141,176, 3,110,110,110,214, 28, 18,131, 9,134, 17, 17, 4, 77,209, 44,242, 78, 82, 82, 70, 76, 3, - 10,198,147, 74,165, 51,185, 92,110, 95,189, 94,239, 74,146,100,134, 78,167,187,162, 86,171,183,226,237,192,133,255,111,104,217, -178,229,216,235,215,175, 91,119,237,218, 85, 39, 20, 10, 77, 26,141,134,125,225,194, 5,126,255,254,253,139, 94,191,126,253, 78, - 43, 18,101, 50, 89,239,223,127,255,221, 35, 56, 56, 24, 45, 90,180, 80,141, 25, 51,134, 27, 20, 20,196,157, 58,117,106, 82, 86, - 86, 86, 68, 3,233, 90, 19, 4,177,159, 32, 8, 22, 77,211, 19,240, 87,232,134,127, 54, 72,146, 36,167, 19, 4, 49,156, 97, 24, - 79,130, 32, 18, 25,134, 57, 73,211,116, 93,129, 91,235,194, 72, 0, 3, 72,146, 12, 0, 0,154,166, 35, 1,156, 3,204, 95,121, -247,239,228,180,176,176,240, 7, 0,181, 90,253,244,159,197, 73, 16,132, 63, 0, 48, 12,243,174,156,147,133, 66,225, 52, 0,208, -104, 52,191,193,140,116, 80,213,193,108,247,102, 2,150,197, 1, 0, 34,151,120, 3, 0, 26,178, 77,204,136, 35, 26,242, 91, 53, -241, 53,132,163, 6, 12, 24, 55,110,220,234, 63,254,248, 99, 9,128, 83,255,138,142,239,228,228,182,117,195,207, 59,101, 95,206, -252,116, 45,202, 50, 66,212,125, 65, 2, 31,242, 88,172, 33,122,138,186, 21, 3, 28, 3,192,182,177,177, 25,203,227,241,186,235, -245,122,103, 54,155,157,173,215,235,111, 22, 23, 23, 31, 66, 29, 25, 16,204,110,215, 88, 72, 13,106, 56, 17,244, 95,121,222, 24, - 18, 58,174, 5,114, 8, 31, 20,254, 13,110,163, 36,128, 57,229,117,221,133,218,195,121,212,117,243,249, 82, 38,147, 13, 87, 42, -149,106, 22,139,197,160,108,213,115,217,191,178,239, 9,154,166,243, 10, 10, 10, 38,212,199, 37,106,130, 86, 60, 17,177,159, 50, - 66, 99,210, 49,159,171,210, 17, 39,118, 67,103, 6,152,192, 0,238, 36,139,180,167,105, 58, 27, 64, 4,105,194,153,210, 44, 36, -252, 77, 7,247,166,229,237,218,172,124,155, 3,192, 17, 64, 20,128, 47, 1,148, 54,234,159,127, 27,170, 59,195,159, 5,144, 93, - 41,180,170,132,187,239, 57,104,208,160, 27, 30, 30,174,173, 71, 13, 27,177,122,198,244,207, 9, 22,139, 68,244,139, 23,236, 79, - 38, 76,238, 39,149, 74, 93,196, 58,157, 15, 8,130, 86, 11, 4,209, 74,101,113,230,177, 67,127, 88,122,183,106, 69, 81, 20,141, -237, 59,126,237,127,252,207,176,133,102,138,173,150, 78, 78, 78,251, 67, 67, 67,157,134, 12, 25,194,114,114,114, 66, 74, 74,138, -245,225,195,135, 91,109,217,178,101,116, 97, 97,225, 4, 0,175,222,161,178,221,156,108,200,126,150, 66,162, 15, 74, 40,148, 24, -113, 53, 71,131, 75, 0,110,189,107,235,169,213,234, 89,106,181,186, 99, 96, 96, 32,179,107,215, 46, 98,210,164, 73, 12, 65, 16, -132, 70,163,217, 11,224,157,132,150, 72, 36,218, 22, 28, 28,236,229,229,229,149,248,250,245,235, 1, 71,143, 30, 61, 55,113,226, - 68, 79,145, 72, 20, 15,160,101, 3,233,246, 40, 20, 10, 63,141, 70, 3, 87, 87,215, 93, 0, 62,248, 23,116, 34,130,197, 98,157, -116,113,113, 97,214,173, 91,119,202,207,207,207,177,160,160,192,244,205, 55,223,244,189,127,255,126,127,138,162,134, 52, 64,108, - 73, 9,130,216,225,232,232,104,183,118,237,218,132,246,237,219, 71,241,249,124, 94,124,124,188,197,188,121,243,230,190,122,245, -106, 52,195, 48,211,129, 6, 13, 16, 82,130, 32,118,200,100, 50,187,213,171, 87,167, 4, 4, 4, 68,115,185, 92,110,124,124,188, -104,254,252,249, 95,198,197,197,189, 19, 39, 73,146,219, 59,118,236, 40, 93,178,100, 73,108,171, 86,173,238,178, 88, 44, 94, 70, - 70, 6,185,116,233,210,153,151, 47, 95, 14,161,105,122,198,187,148,211,193,193, 65,186,116,233,210,216,160,160,160,251, 92, 46, -151,251,242,229, 75, 50, 52, 52,116,102, 66, 66,130,217,229,180,177,177,233, 69, 16,196,206,156,156, 28, 54, 0, 56, 59, 59,119, -144, 72, 36, 91,170,230,180,172, 8, 69, 97, 52, 26, 75,180, 90,237,184,130,130,130, 26, 3,225, 78, 90,176,121, 48, 0,108, 49, - 84,108,151,189,214,183, 13,108, 63, 99, 78,165,253,157,202,226,226,109, 80, 77, 25, 6, 0, 99,203, 83,133,111, 80, 1,108, 54, -155,246,119,250,146,121,154,211,160,144, 49, 67,123,247,238,189, 52, 34, 34,226,215,158, 61,123,206, 63,112,224,128, 67,122,122, -250, 15,183,110,221,114,251,248,227,143, 39, 93,189,122,117, 77,126,126,254,241,127, 86,231,231,113,249,124,130, 36, 32, 20, 88, - 72,204,217,159, 67,146,131,238, 14, 29, 58,237,183,151, 47, 3,182,196,197,121,168,156,157, 59,206,158, 61,219,113,196,136, 17, -164,155,155, 27, 18, 18, 18,108, 15, 28, 56,224,243,219,111,191, 13, 47, 42, 42,154, 3, 32,245,125, 68,150,170, 8,109,117,122, - 4, 48, 12,172, 43, 47, 88, 2, 69,124, 3, 34,153, 88, 60,255, 27,136,173,239,247,236,217,179, 36, 33, 33, 1,107,214,172, 1, -128,173, 13, 60,126,222,208,161, 67, 7,134,133,133, 9,143, 29, 59, 38, 12, 12, 12,132,147,147, 19,202, 31,166, 42, 3, 83,123, -120,120,152,215,102, 52, 54,108, 58, 55,229,131,232,130,243,216, 54, 34,103,141,208, 21,166,206, 67,189,134, 15,154, 20, 0, 43, -123, 11, 8,196,108, 20, 41,148,190, 47, 35,211,131,175, 29, 77,248, 33,225,137,124,173, 42, 13,223,163,246,152,124,255, 47,176, -181,181,221,149,148,148,212, 75, 36, 18,189,241,121, 98, 98,162,191,151,151, 87, 49,128,175, 26, 42,220,236,237,237, 15,210, 52, -173, 83, 40, 20,159, 2,128,165,165,229, 31, 34,145, 72,154,157,157,189,240, 95,245, 32, 83,129,234, 90,228, 63,220,162, 85,233, -175, 85, 83,174, 67,130,164,232, 46, 51,166,127, 78,140, 25,251,113, 78, 66, 98, 18,205,230,240,198, 94,184,120,209,162,117,235, -214,164,110,235, 86,152,228,114, 24,231,206,237,124,229,202, 21, 99,200,216,241, 26, 14,139,216,227,233,225,110,113,228,208, 97, -167,176, 19,199,187, 0,168, 79,104,241,156,156,156,246, 95,191,126,221,197,195,195, 3, 69, 69, 69, 72, 73, 73,129, 74,165,194, -232,209,163, 57, 93,186,116,113, 25, 53,106,212,254,226,226,226,174, 13,176,108, 57,182,112,101,135, 79,159, 60,162,101,255,126, - 93, 68, 46,110,205,193,228,104,145,254, 58, 46, 48,252,250,253,217,123, 78,156,123,149, 80,204, 12, 66,205,185,145,234, 68,126, -126,254,183,195,135, 15, 63,209,171, 87, 47,123, 62,159, 15,153, 76, 70, 12, 25, 50, 36, 47, 43, 43,107,217, 59,171,150,242, 20, - 54, 36, 73, 82, 85, 95,107, 72, 15,100, 14, 92,165, 82, 41,164, 82, 41, 0,184,188,239,147,167,181,181,245, 86, 75, 75,203, 81, - 74,165, 82, 67,146, 36, 67, 16, 4,163,215,235,133, 82,169,244, 89,108,220, 43,153, 78,167,107,177,126,211,111, 63,247,238,230, - 39,185,124,249, 50, 70,140, 24,193, 92,186,116,105,186,185,121,234, 8,130,216, 49,124,248,112,245,226,197,139,181, 9,137, 41, - 46,177,175, 18, 9,145,128, 71,219,217,217,113, 30, 62,124,200,254,233,167,159, 4, 75,151, 46,221,193, 48,204,168, 6,180,231, -142,143, 63,254,216,240,245,215, 95,103,191, 76, 72,114,120, 30,155,192,136, 5, 28,147,157,157, 45,235,254,253,251,244,187,112, -146, 36,185,253,219,111,191, 85, 78,159, 62,189, 80, 81, 80,236, 84,168, 44,101,248, 28,150,209,201,201,137,125,234,212, 41,221, -193,131, 7,201,105,211,166,109,167,105, 58,164, 1,237,187,125,200,144, 33, 37,161,161,161, 69,241,137,201, 78,207, 99, 94,193, -130,207, 49, 58, 58, 58,176, 30, 61,122,100, 88,191,126, 61,185,114,229, 74,179,202, 41, 18,137,246, 29, 61,122,148,125,234, 84, -217,189,239,222,189,123,164,167,167,167, 69,213,125, 52, 90, 29, 72, 2,200,207,207,183, 8, 10, 10,218, 7,224,173,224,190, 1, -203,226, 48,105, 1, 48,107,214,172,236,134,118,150, 0,231,217,245,238, 67,253,234,205,252,164,158, 50,140,205,102,211,211,166, - 77,203,169,254,189, 86,171, 37, 0, 12,193, 15,230,139,173, 1, 3, 6,124,119,246,236,217,230, 7, 14, 28,216,120,240,224, 65, - 61, 0, 8, 4, 2,187,195,135, 15,175, 25, 61,122, 52, 70,143, 30,189,248,248,241,227,255, 52,161, 69, 49,148, 1, 0,248, 2, - 62, 63, 46, 46,142,240,246,246,174, 51,226,190,129,166, 31,255,246,242,101,251,127,120,123, 7, 22,208,116, 11,110,255,254,165, -243,230,205,203, 87, 42,149, 72, 73, 73,129,193, 96,192,164, 73,147, 88, 61,123,246,148,141, 30, 61,122,115, 73, 73,201, 72, 0, - 6, 51,250,228,122, 23, 23,151,207,138,139,139, 75, 43,172, 58, 93, 39, 80,236,238,254, 38,126,187, 22, 70, 30,151,101,226, 14, -158, 75, 19,151,182, 18, 42,111, 15,220, 6, 0,174, 26,242, 6, 62, 12,212, 8,137, 43, 60, 40, 14, 86,218,187, 10,123,203, 83, - 53,203, 85,105,117,138,165,145, 34,145,104,152, 74,165, 58, 94, 62, 56,183, 28, 52,104, 16,238,223,191, 15, 0, 93,202,133, 86, -111,146, 36, 63,161,105,250,119, 0,117,165,114,155, 61,116,232,208, 15,195,194,194, 44, 1,224,248,241,227, 48, 26,141,240,244, -244, 4,151,203, 5,143,199, 3,135,195,169,204, 14, 98, 38,156,237,237,237, 96,103,197,129,212, 70,212,127,254, 47, 67,217, 77, - 90, 75,144, 71,189, 64, 1, 83, 4, 19,163, 3,215, 86,132, 86,193,214, 8,232,215,155, 60,179, 61,122,225,153,109,177,237,213, - 36, 6, 35, 21,186,191,203,200, 78,146, 36, 63, 42, 42, 10, 50,153,236,141,207, 89, 44, 22, 0,116,127, 7,202,197,137,137,137, - 65, 79,158, 60, 65,175, 94,189, 22,183,109,219,246,163, 27, 55,110, 56, 41, 20, 10,244,234,213,107,115, 70, 70,198,169,127,117, -157,170,106,145,255, 22, 83, 23, 89, 77, 73,246, 44,123, 10, 38, 89, 44, 22,137,164,196, 20, 99,175, 94,125, 38,166,165,165,137, - 59,118,236, 72,114, 56, 28,168, 34, 34,160,125,244, 8, 98,177, 24,195,135, 15,231,220,188,121, 83, 34, 17, 75,166, 38, 39, 37, -151,176, 88, 36, 24,134,172,215,231, 65, 42,149,206, 92,184,112,161,147,151,151, 23, 76, 38, 83,101, 68,115,147,201,132,244,244, -116,136,197, 98, 76,152, 48,193,193,194,194, 98,166,153,245,104,214,210,211, 33,242,250,185, 29, 31,204,155, 49, 64,212,210,226, - 50, 68,233,115, 32, 62,254, 15,248,100, 93, 64,232,176,142,162, 75,219, 22, 7, 52,151,217, 68, 86, 49,177,154, 13,157, 78,119, - 59, 58, 58,122,234,141, 27, 55,104, 0,184,118,237, 26, 19, 27, 27, 59,253,125,158, 66,105,154, 70, 81, 81, 17,104,154,102,149, -111, 87,188,254,191,246, 7,137, 68,178,253,163,143, 62,250, 56, 53, 53, 85,120,254,252,121,219,180,180, 52,187,228,228,100,251, -150, 45, 91,178,215,172, 89,115, 86,171, 51,176,140, 20,163, 55, 81,198,146,236, 23, 47, 18, 11,115,115, 35,119,239,222,173, 33, - 8, 98,184,153,191, 49,210,217,217,217,118,193,130, 5, 32, 56, 22, 29, 90,249,180,245, 98,113,132, 86, 36,135,103,165,209,104, -169,164,164,164,244, 5, 11, 22,184,251,249,249,201, 80, 54,189,102, 22,167, 76, 38,179,251,250,235,175,193,230, 91,250,183,243, - 11,104,206,227,139, 44, 89, 28,161,101,199,142, 29,123, 38, 38, 38,102,133,134,134, 58, 7, 6, 6, 54,136, 51, 48, 48, 80, 58, -109,218, 52,147, 64,104, 25,228,225,225,233,211,174,141,207,192,150, 45, 91, 14, 99,179,217, 38,185, 92,158, 58, 97,194, 4,231, -193,131, 7, 59, 54,132,211,193,193, 65, 26, 26, 26,106,114,107,234, 25, 28,252, 97,191, 78, 92,161,165, 21,155, 39,178, 86,171, -181,212,203,151, 47, 83, 23, 45, 90,228,236,239,239,239, 96, 14,167, 90,173,230,216,217,217,193,215,215, 23,173, 61, 61, 81, 92, - 92,140,176,176, 48,236,217,179, 7,191,255,254, 59, 14, 29, 58,132,246, 93,251,193,210,210, 18, 89, 89, 89, 80, 42,149,156,127, -119,135,162,126,245,102,182,232, 63, 27,242,249,231,159,103, 77,155, 54, 45, 71, 40, 20,210,213,255,108,108,108,168,113,227,198, -229, 78,152,191,105, 72,197,212, 98, 61,150,172,168,115,231,206,189, 62,112,224, 0, 90,183,110,141,224,224, 96, 30, 0,204,156, - 57,147, 55,122,244,104, 28, 61,122, 20,199,143, 31,143,241,242,242,186, 3, 96,168, 57,229,156, 48, 97, 66,215,144,144,144, 91, - 33, 33, 33, 79,199,140, 25,179,115,250,244,233,111,140, 92,217, 89, 25,143,245,122, 61,252, 2, 2, 45, 86,236,122, 48,174, 62, -190, 88,224,192,206,184,184, 61,107, 95,188, 72, 93,220,186,181,117,211,228,100,155,189,235,215,219, 85, 36,233, 54, 26,141, 72, - 79, 79,135, 84, 42,197,184,113,227,236,248,124,254, 4, 51,138,249,211,208,161, 67, 39,167,165,165,137,127,251,237, 55,231,167, - 79,159,202,178,179,179,157,175, 94,185,104,255,205, 87, 51, 45,173,196, 60, 94,150,156, 33, 0, 32, 57, 11,162,184, 36,116,101, - 24, 88, 87,157, 78,124, 39, 56, 67, 40,116,197,150,230, 93,173, 95,125,125,212,127, 76,104,120,128,157,212,153,191,160,142, 35, -218,173, 91,183,238,216,153, 51,103,198,118,237,218,245, 4, 0, 97, 13,251, 8,218,183,111, 31,118,244,232,209,201,221,186,117, -187, 13,192,183,214,167, 72, 87,215,225,127,254,249,167,109,197,182,157,157, 29, 4, 2,193, 91, 34,139,203,229,130, 36,201, 6, - 87,111,213,225,177,108, 27, 31, 29,162, 11,207,225,232,186, 40,172,235,255,146, 94,221, 57, 89,183,117, 66, 28, 46, 29,141, 66, - 30,162, 48,224, 31,205, 49,118,145, 95, 95, 11, 10, 43,255, 78, 3,184, 92, 46,255,164,123,247,238,199, 6, 12, 24,160,123,242, -228, 9,228,114, 57, 92, 92, 42,159,181,115,222,129,210,198,194,194, 2,110,110,110,240,242,242, 26,123,243,230, 77, 39,163,209, -136,228,228,100,228,229,229, 69,254, 59,234, 84, 85,139,252,135,161,186, 35,252,217,183,132, 86,121,110,161,235, 0,192, 16,132, - 42, 42, 58,154,195,226,241,198,255,113,240, 32,159,203,229, 34, 53, 53, 21, 49, 49, 49, 80, 95,189, 10,205,221,187,200,205,205, - 69,105,105, 41, 28, 29, 29,177, 99,215, 46,145,158, 98,166,188,124,245,138,197,144, 76, 85,127,131, 26,151,120,242,249,252,190, - 35, 70,140,168, 85,144,101,101,101, 97,192,128, 1, 28, 22,139, 85,211,170,134,234,156,132,204,158, 56,115,245,196, 10,103,103, - 94, 12,144, 48, 15, 40,137, 4, 24, 29, 96,210, 3,153,207,129,179,203,208,180, 52,142,184,184, 98,162,147,139, 5,251, 76, 13, - 74,185,190,165,168,158,222,222,222,191,143, 31, 63,158, 4,128,222,189,123, 19,222,222,222, 59, 1,120,214,113,204,149,122, 6, -201,251,133,133,133, 24, 61,122,180,109,243,230,205,175,140, 30, 61,218,182,226,243,119,229,172,176, 38,183,110,221, 90, 33, 16, - 8, 14, 1,102,221, 96, 43, 57,173,173,173,183, 14, 24, 48, 96,212,193,131, 7,185, 0,112,253,250,117,156, 57,115, 6, 47, 94, -188, 64,124,124, 60, 29, 16, 16, 96,191,233,247, 99,219,183,254,186,239,167, 97, 93,252,100, 61, 59, 4,248,136, 75, 11, 75, 29, - 29, 29,187, 48, 12,227,105,102, 57, 7, 44, 91,182, 44, 38,246,117,170, 21,201,230,176,185, 28, 54, 95, 34, 17, 57, 74, 45, 69, -174, 54, 22, 2, 23, 62, 73,136,213,106,117,206,161, 67,135,104, 0, 3,204,229, 92,177, 98, 69, 82,108, 66,170, 53, 65,178,217, - 28, 54,135, 43, 22, 91, 88,247, 15,238, 21, 8, 0, 92, 48, 92,165, 82,153,187,103,207, 30, 67, 67, 56,151, 44, 89, 18, 93, 80, - 84, 42,101,115, 56, 28, 54,155, 85,217,150, 34,161,208,222,130,207,231,233,116,186,204,159,127,254, 89,211, 16,206,101,203,150, -197,188,124,157,102, 67, 18, 4,139, 32, 72,182,196, 82,100,107,107,101, 97,111, 47, 22,218, 89,176, 89, 60,165, 82,153,185,127, -255,126,179, 56, 13, 6, 3, 55, 55, 55, 23,177,177,177,112, 11, 12,196,229,203,151,209,164, 73, 19,140, 30, 61, 26, 31,127,252, - 49,132, 66, 33,122, 7,181,197,130, 5, 11,240,250,245,107, 24, 12, 6,126, 77,156, 21,126, 82,213, 33,147,201,158,212,215,121, -170, 29,251, 70, 57,253,157,192,108,209,127, 54,164,170,192,170,141,223,198,198,134,170,201,218, 85,157,115,192,128, 1,223, 93, -189,122,181,249,254,253,251,135, 76,152, 48,225,246,254,253,251,209,169, 83, 39,196,198,198,194,221,221, 29,123,247,238,197,199, - 31,127,124,123,243,230,205, 67,158, 60,121,226,231,225,225,177,176, 62,206, 49, 99,198,124,225,239,239, 31,145,147,147, 19, 84, - 80, 80,224, 27, 22, 22, 54,101,248,240,225, 73, 99,199,142,237, 83, 41, 24,141,198,131,103, 79,159,192,192, 33, 35,208,170,141, -239,246, 73, 11, 15,180,173,231,218,100, 94, 0, 59,247,100,103,203, 15,106,181,234,209, 28,142,133,197,131, 7, 54,199,127,253, -213,174,106,102,129,204,204, 76, 12, 30, 60,152,195,229,114,187,213, 83,206,117,195,134, 13, 27, 29, 22, 22, 38,173,176,234,220, -189,123, 23,207,159, 63, 71, 74, 74, 10,138,138,138,208,103,122, 41, 62, 95, 83,198,253,249, 26, 6,253,102, 50,162,119,188,135, - 84, 66,216, 4, 78,182, 18,246,157, 41, 63,183,154,249,217,246,214,108,177, 13, 7,127,204,143, 71,126,178,238,120, 45,156, 68, - 80, 80,208,129,144,144, 16, 66,175,215, 67,175,215,235, 1,212, 24,213,215,197,197, 69,208,174, 93, 59, 76,159, 62,157,148, 72, - 36,155,107, 43,167, 74,165,210,157, 59,119, 14, 19, 38, 76,192,156, 57,115,208,162, 69, 11, 72,165, 82,112, 56, 28,236, 59,112, -196,238,227, 41, 51, 90,126,208,181,187, 95,235, 15, 58,181, 43,209,177, 2, 57, 66,233,180, 90,172, 33, 53,214,189,212,225, 9, -162,147,239, 97,203,144, 12,250,225, 94,117,233, 55,159,252, 24,247,242, 70,238,139,133, 33, 59,163,153,123,157,243, 15,124,153, -134, 92, 99, 44,186,141,110, 10, 15,127,233, 92,145, 27,188,223,181, 61,205, 68,131, 56,219,182,109,219,245,225,195,135,252,238, -221,187, 35, 53, 53, 21, 28, 78,229,243, 20,245, 62,229, 92,182,108, 25, 95,171,213,226,217,179,103,152, 56,113, 98,166,193, 96, -152,251, 62,229,108,136, 69,171, 66,139,252,135, 97,103,181,191,236,218, 44, 90,203, 0,192, 72,227,204,248,137, 83,212,225,225, -225, 22, 60, 30, 15,169,169,169,200,206,206,198,190, 61,123,168,222, 14, 14, 37,193, 46, 46,202,125,123,246, 48,122,189, 30, 12, -195,192,219,219, 27,163, 70,141, 18,142, 28, 61, 54,143, 80,106,142,152, 49,205,227, 92, 49,191, 62,101,202,148,183,190,255,230, -155,111, 32,145, 72, 64, 16,132,147, 25,149, 11,153,189,108,152,171,212,195, 58,151,201,217, 87, 0,150, 0, 96, 91, 2,108, 9, - 32,176, 2,248,150, 0,207, 2,186, 39, 17, 5, 36, 19,156, 50,162,219,167, 46, 0, 26, 50,213, 3,153, 76,182, 56, 34, 34,194, -254,201,147, 39,140, 82,169, 68,118,118, 54,179,122,245,106,123,153, 76,182,248, 93,207, 72, 86, 86,214,138,129, 3, 7,230, 78, -156, 56,209,234,194,133, 11,110, 19, 39, 78,180, 26, 56,112, 96,110, 86, 86,214,138,247, 57,211, 92, 46,151,245,226,197, 11,155, -149, 43, 87,126, 12,224,113,155, 54,109, 20, 46, 46, 46,143, 81,230, 52, 89, 39, 44, 45, 45, 43, 69, 86,133,117,141,205,102,131, -195,225, 64, 38,147,233, 11, 10, 10,168,110, 31,120, 10,189,173, 72,163,140,207, 21,218, 8, 5,174,150, 18,171,142, 10,133, 34, -138, 32,136, 68, 51,167,248,252, 59,116,232,192,161, 24, 14,253,249,248,222,178,153,147,123, 57,252,178,114, 90,147,159, 87,124, -230,178,110,233, 84,239, 21,223,142,235, 69,210,180,214,221,221,221,169,194,161,221, 12,243,121, 64,251,246,237,217, 52, 56,136, -125,149,146,155,154,145, 89,242, 97,207,160, 74,203,101,107,255,128, 96,123,123,251,238,222,222,222,237, 9,130, 48,107, 73,178, - 80, 40,244,111,213,170, 21,155,100,113, 8, 91,169,165,155,165, 88,232, 88, 57,133, 98,109,221,217,198,222, 62,132,100,152, 98, -103,103,103, 7,161, 80,232,223,128,186,179,105,112,225,232, 96, 99,101,111,103, 45, 14,238,213,165, 69, 80,231,160,150,109, 59, -118, 10,106,243, 65,251,145,132,201,164,244,244,244,116,168,112,146,175,199,210, 42, 56,120,240, 32, 86,174, 92,137,118, 77,155, -194,197,197, 5, 14, 14, 14,184,123,247, 46, 30, 62,124, 8,169, 84,138,188,188, 60,172, 95,191, 30, 39, 79,158,132,193, 96,176, -108,104,127, 50, 71,108,213, 5,147,201, 68, 86, 23, 88,181,241, 11,133, 66,186,194, 73,190, 54,156, 59,119,238, 64,133, 37,235, -203, 47,191,236,186,105,211,166,219,113,113,113, 16,139,197,120,248,240, 33,166, 76,153,114,123,243,230,205, 93,103,204,152,129, - 61,123,246, 32, 41, 41,105, 87, 93,124, 99,198,140, 89, 58,117,234,212,159,111,220,184, 65, 58, 58, 58, 66, 42,149, 98,216,176, - 97,173,135,220, 38, 0, 0, 32, 0, 73, 68, 65, 84,216,181,107, 23,219,100, 50,237, 14, 9, 9,121, 26, 18, 18,242,148, 74,191, -244,221,177,223, 87,223,141,142,122,138, 47,102,127,205,211,155,140,161,102, 84,159,209,136,197, 37,166,238,221, 11,142, 26,141, -234, 49, 92,174,133,213,211,167, 54,103,118,239,174, 20, 91, 11, 22, 44,128,149,149, 21, 80,230,192,140, 58,172, 58,159,157, 60, -121,178,242,126,104,107,107, 11, 30,143, 7, 46,151, 11, 14,135, 3, 22,139,133, 43,219, 69,248,117, 65,153,190,248,117, 1,129, - 75, 91, 9,213,251,156, 59, 11, 23,248, 74, 29,121, 79,255,177,183,141,159,111, 31, 91,220, 61,156,131,213, 3,159,100, 60, 60, - 42,159,167,205,195,134, 90, 14,251,224,155,111,190,105,157,151,151,135, 71,143, 30,225,209,163, 71,181, 89,128,180,167, 79,159, -254,161,180,180, 20, 30, 30, 30, 24, 58,116,104,119, 0,129,181, 92, 55,104,223,190, 61, 6, 15, 30,140, 94,189,122,161, 93,187, -118,208, 27, 76,156,144,241,159,181,122,145, 36,119, 89,189,126,181, 69,196,181, 48,242,246,237, 27,172, 3, 39, 46, 89, 5,245, -234,247, 51,215,210,249, 62,132,182,206,230,212, 83, 77, 41,224,239,220, 31, 59,175,206, 38,183, 92,159, 40,222,119,102,139,167, -165,165, 37, 17,249,232,169,113,223,182,163,105,190,162,161,121,247, 15, 43,160, 38,114,208,103,178, 7, 73, 3,163,254, 46, 35, -187, 64, 32,216,116,227,198, 13, 39,131,193,128,232,232,104,204,153, 51, 71,251,158,148,149, 6, 16, 55, 55, 55, 92,191,126, 29, -227,198,141,211,230,230,230,222,251,119,213,169,170, 22,249,111, 1,187,138,130,172, 68,122,122,122,145, 84, 42,117,105,213,170, - 21,169,215,235,203,166, 36,142, 31,167,126,223,189,251,172, 86,171,157, 13,128,187,245,151, 95,182,187,184,186,246, 26, 63, 97, - 2, 97, 52, 26, 49,112,224, 64, 94,120,120,184,109, 98, 94, 94,137, 25, 3,206, 27,191, 55,105,210, 36,108,218,180, 9, 0, 48, -107,214,172, 74,211, 58, 97,134,195,146,216, 10, 3,130, 7,181,151,164,139,182, 72, 12,157,141,165,205, 94, 91,222, 23,149, 10, -219,131,228,177, 33, 96,129, 54, 24, 77,241,121,195, 31,191,142,247,105, 45, 44, 80,184,247,109,211, 3,191, 95,222, 63, 64, 77, -105,143,154,125,195,177,176,232, 32, 22,139,241,248,241,227,130,246,237,219, 23, 49, 12, 99,181, 98,197, 10, 59, 11, 11,139, 14, -239,209,246,201,175, 94,189,234,222,165, 75,151,153, 36, 73,246,165,105,250, 74,110,110,238, 86, 0,201,102, 30,255, 57,128, 37, - 0, 42,159, 44,245,122, 61, 72,146, 4,195, 48, 24, 51,102, 12, 22, 44, 88,208,250,249,243,231,136,136,136,176,233,219,183,239, -125, 0, 69, 0, 62, 5, 80,163,213, 76,169, 84,106, 30, 62,124, 40,140,136,136, 0, 77,211,176,177,177,129, 68, 34, 1,159,207, -199,176, 97,195,196,161,161,161,125, 46, 94,188,152,167,108,214,132, 37,200,206, 84,241,197, 98, 75, 56,185,116,155, 49,246,147, - 56,134, 97, 78, 54,224,230,192, 19,178, 77, 90,130,210,145,235,190,223, 76, 90,112,185,132,128,203, 6,159, 86,227,187, 31, 86, - 17, 92,134, 98,163,129,243,243, 92, 46,151,107,201,135,158,197, 99, 25, 45, 8, 48,255,140,139,131,197, 98,241, 4,220,218,253, - 49, 56, 36, 73,146, 36,201, 5, 96,118,210, 62, 62,159,207,181,228, 51,181,114, 10, 89, 4,139, 32, 8, 30,106, 89,137,230,239, - 4,166,194,138,196,155,157,168,171, 42,138,187,117,235,134,179, 17,143,113,252,204, 21,228,167, 70, 97,209,252, 47, 17, 24, 24, -136,240,240,240, 58,203, 84,225,163, 85,155,117, 89, 38,147, 61,201,202,202,250,160,182, 99,235,154, 50,172,197, 74,245, 54,255, -247, 86, 8, 88, 22,135,122,124,180,134,118,235,214,237,139,131, 7, 15,234, 63,250,232, 35,222,152, 49, 99,224,235,235,219,117, -242,228,201, 0,128,190,125,251, 98,211,166, 77, 93, 39, 79,158,140, 35, 71,142, 32, 44, 44, 76,215,179,103,207,249,215,175, 95, -207, 68,217,138,206,183, 64,211,244,224, 29, 59,118, 84,183, 20,194,100, 50,193,104, 52, 58,155, 76, 38,231,242,123, 17,126,254, -121,115,254,165,139,225,152,191,112, 25, 28,236,157,252,205,236, 67,196,164,175,191,206,223,187,126, 61,214, 31, 57,130,175,221, -221, 45,246,199,196,224,146, 86,139,163, 17, 17,249,229,191, 83,175,111,166, 74,165,210,156, 59,119, 78,114,244,232, 81, 88, 91, - 91,163, 69,139, 22,176,177,177, 1,135,195, 1,201, 18,130,197,149,162, 85,155, 14, 0, 30, 2, 0,220,101, 80,121,123,224, 54, - 65,160,136, 33, 27,238, 83,196,111,130,102,118,174,130, 27, 95,236,241,181,150, 56,112,113, 97,107, 26, 46,110, 73, 63,169,205, -199, 70,152,240, 18,181,251,124,181,247,240,240, 64, 94, 94, 30,206,157, 59,167, 2,106, 21,100,160,105,250,135, 95,126,249,229, -155,133, 11, 23,242,189,189,189, 1,192, 31,192,163,154,246, 21,137, 68,112,113,113,169, 20,150, 99, 38,206,240,156, 62,111,134, -112,120,191, 94, 96,179,237, 80,164, 50, 66, 81, 98,132,212, 78,140,249,243, 66, 4, 87,218,187, 4,238,216,252,199,105,141, 6, -129,192,219,247, 3,130,192,163, 7, 81,183,219, 10,188, 1,130, 4,210,201,107, 32, 64,160,148, 48,130, 96,177, 24,138,162,144, -150,150, 6,134, 97, 48,110,248,148,244,207, 86,135, 57,116, 29,167,132, 91, 43, 25, 8, 6, 61,254, 46, 66,192,214,214,214, 95, -161, 80, 32, 57, 57, 25, 19, 39, 78,204,204,207,207,191,172, 82,169,166,100,101,101, 1, 64,193, 59, 80, 86,138,121,127,127,127, -116,232,208, 1,163, 71,143, 22,168,213,234, 16, 79, 79, 79, 23,185, 92,222,249, 95, 89,159,234, 90,228,191, 74,104,213,120,161, - 25,141,173,116,219,183, 67,117,229, 10,120,151, 46,225,168, 76, 86,170,213,106,191, 2,144, 94,126,225,127,185,103,239,222, 59, - 67,238,221,147,232,227,226,224,249,252, 57, 56,214,214,254, 13, 45,192,238,221,187,161, 84, 42, 81, 92, 92, 12, 0,216,178,101, - 11,148, 74, 37, 76,102, 38,156,101,115,209,213,201,193, 29, 57,136, 7,205, 38,197, 41,173,212,157,196, 90,203, 44,151, 52, 71, - 85, 49,233,130,184,212,142, 34,141, 66,223,137, 96,233,161,205, 87,195,165, 75, 11,176,193,238,218,144, 50, 86,204,251,179,217, -236,130, 87,175, 94, 13,110,217,178,229, 25, 0,118,239,226, 15, 80, 13, 9,185,185,185,179,223,229, 64, 22,139,181, 36, 41, 41, -201, 97,215,174, 93, 51, 87,172, 88,193, 84, 21, 90, 21,239,217,108, 54, 24,134,129,149,149, 21, 56, 28,142,227,221,187,119, 29, - 59,118,236,184,141,166,105,255, 90,234,201,248,250,250, 34, 41, 41, 9,108, 54, 27, 86, 86, 86,160, 77, 6, 44,155, 55, 3, 20, -139,207,254,246,219,111,253, 71,140, 24, 17,189,107,215, 46,163, 36,168, 75,103,133, 66,241,226,139,113,227,163, 79,157, 58,165, - 47, 15,241, 80,255, 35, 62,195, 60,141,143,143,103,185,202, 28, 89,140, 73, 77,139,184,128, 32,234,103,134, 39,118,130,128,205, - 98,184, 4, 9,190, 64,104,149,156,145,161,160,105, 58,214, 28, 78,154,166, 35,147,146,146,132,142, 14,182,108,181, 70, 95, 42, -228, 48,188,148,200,199,137,205, 2,218,123, 2,128, 54,242,225,117,126, 43, 31, 97, 74,174, 92,228,238,238,110, 22,167, 70,163, -121,154,153,153,201,114,116,116,100,167,166,103,156,182, 22,139,236, 37,214,214,157, 0,192, 80, 82,252,144,212,233,228, 44, 14, -219, 81,174, 80, 20,104, 52,154, 36,115,235,254,250,245,107,182,179,179, 3,235,194,165,171,103, 28, 45,248, 14,150, 60,182,132, - 79, 16,132, 5,139, 80,114, 77,116,190,192,194,194, 33, 57, 35,163,128, 97,152, 90, 45,132,107,139,198, 15, 47, 59, 95,203,142, - 84,225, 70, 84, 84, 20,206,223,142,133,136,209,131,208, 22,227,210,158,223, 48,238,219,133,239,237,247, 87,159,216,122, 39,107, -214, 14,159, 39,213,248,145, 93,143, 35,252,184,113,227,150, 29, 56,112,160,210, 1, 37, 54, 54, 22,189,123,247,174,152,230, 64, -112,112, 48, 58,118,236,136,216,216, 88,120,121,121, 33, 34, 34,130,207, 98,177,248,227,199,143, 95,253,199, 31,127,156,171,215, -238,191,115, 39,166, 76,153, 82,147, 99,245,107, 0, 90, 66,234, 93,186, 96,237, 62,187, 2, 69, 62,242,228, 57, 79,205,109, 7, -130, 32, 48,233,235,175,243,119,232,245, 56,248,224, 1, 38,136, 68, 22,123, 19, 18, 48,176, 99, 71,180,237,221, 59,223,156,123, - 93,133, 85, 71,171,213,130,195,225, 64, 34,145,192,214,214, 22, 92, 46, 23, 44,142, 12,108,158, 31, 72, 46, 23, 1,221,252,176, -254, 43,145,122, 98,127,108, 38, 8, 20,241,121,136,228, 90,212,234,171, 67,136,154, 96, 24,195, 64,169, 78,199,181, 10, 65, 98, -213, 20, 86, 28, 75,206,165,169,219,188,173, 37, 14, 92,156,223,156,138, 75,219, 50, 78,104,115,176,168,188, 45,232, 58, 30, 36, -218, 90, 91, 91, 35, 61, 61, 29,105,105,105, 49,168,219,193, 95, 29, 27, 27,155,200,231,243, 91,219,219,219, 3,128, 71,109, 15, -230, 52, 77, 87,250, 97,237, 63,120,204,206,191,187,167,224,195,174,173,177,239,204, 42,252, 35,100, 51, 56, 44, 2, 20,101,192, -198, 77,131, 64,233, 74, 17, 50,228, 51,162, 71, 95, 47,191, 43,103,244, 83,141,154,194,223,222,122, 16, 96, 99,229,143, 31,223, -181,230,139,201,182,160, 9,107, 59, 59, 7, 17,151,203,133,173,196, 89,191,112,250,220,108,134, 97, 42,175, 27, 14,139,107, 36, - 75,108, 52,138,156, 82,161, 53, 71, 3, 48,100,179,119,139,102,243,207, 71, 70, 70,198,236,238,221,187,175, 46, 41, 41, 41, 84, -169, 84,227, 0,192,195,195,163, 41, 73,146,124, 0,117,205,142, 52, 69,205, 97, 33,184,207,159, 63,135,165,165, 37, 50, 51, 51, -171, 26, 95, 64,211,244,223,102, 17,192,223, 20, 1, 0, 34, 1, 56, 3, 24,136, 42,225, 29,200,114, 83, 93,143,240,240,112, 38, - 60, 60,188, 71,229,224,197, 48,180,169,160, 0,140,174,172,109, 57, 28, 14, 3,160,234,138, 38, 11,107,107,107,130,227,234, 10, -130, 95,230,250,193,252, 19,151,190, 26,141,230,133,150,161, 41,176, 64, 24,192, 84,121,104, 81, 9, 8,172,178,235,131,217,188, -197,200,225, 89, 87, 29,233, 0, 19, 3, 10, 52,171,129,197, 97, 84, 42, 21, 76, 38,147,180,121,243,230,103, 77, 38,147,180,124, -112, 99,254,191,206, 40, 69, 81,137, 44, 22, 11, 51,103,206, 68,133,245, 71,175,215, 35, 39, 39, 7, 58,157, 14,122,189, 30, 73, - 73, 73, 40, 46, 46,134, 94,175,199,139, 23, 47,224,225,225, 1, 22,139,229, 92,199,205,156, 97, 24, 6,110,110,110,104,214,172, - 25, 88, 4,131,223,215, 45,197,119,115,102,224, 99, 15, 26,187,183,110, 68,207,158, 61,125,220,221,221,131,216,108, 54,229,228, -228,196, 13, 11, 11, 59, 77, 81,212, 48,152,127,231, 57,183, 96,193,130,102,109,218,180,113,176,150, 88, 26,249, 60, 22,120, 70, - 21,195,215, 41, 24,182, 58, 31,110,110, 77, 77, 16, 90,120, 77,152, 48,129,170,205, 10, 81, 19,231, 87, 95,125,229,236,237,237, -109, 37,181,182, 84,241, 56,172, 60, 46,152,252,226,168, 71,247, 1,128,103,239,160,133,192,162,245,196,137, 19, 77, 13,225, 92, -188,120,177,135,189,189,189, 53, 9,166,132, 50, 24,254,154,111,215,233, 21, 4,135,163, 1,151,215,126,214,172, 89, 68, 67, 56, -191,249,230, 27,247,214,173, 91, 91, 91, 75, 68,165,108, 14, 43,155, 75,211,217, 2,208, 57, 28,189,161, 80, 96,111,167,134,133, - 56, 96,194,132, 9,181,114, 86, 88,179, 66, 67, 67,211,171, 9,111, 20, 20, 20, 64,155, 19, 13,110,102, 28,252,196, 28, 4,218, - 75,193,231,243, 43,151,190,215,214, 93,107,243,209,170, 73,108,153,123,108,251,229,117, 76, 1,238,240,121, 82, 61,110, 86, 86, - 86, 22,156,157,157,235,188,158,254,248,227,143,133,189,122,245,202, 11, 14, 14,214,159, 61,123, 22, 4, 65, 32, 34, 34, 2,153, -153,153, 8, 14, 14, 6,195, 48, 21,171,218,240,244,233, 83,244,237,219, 87,223,189,123,247,204,242,248, 90,245, 98,202,148, 41, - 48, 26,141, 40, 45, 45, 69, 65, 65, 1,194,195,195,225,231,231,199, 88, 88, 88,140, 96,185,245, 91, 21, 50,117, 97,103,223,118, -254,216,182,121,189,158,199,230,172,109,200,245, 74, 16, 4, 38,126,245, 85,126,113, 64, 64,193,126,149, 74, 61, 73, 34,177,104, -158,158,110,243,248,226, 69, 59,131,193, 96, 22, 71,133, 85,199,213,213,181, 82,100,113,185, 92,176,121,246, 96,137,218,130,103, - 27, 12, 11,167, 17,184, 22,201,215, 89,137,112,210, 82,140, 11, 34,235,218, 67, 59, 88,184, 97, 85,231, 49,206, 97, 93, 62,118, -190,106,209, 4,187,202,199, 3,146, 97, 19, 97,147, 55,182,108,110,223, 76,136,123,199,114,112,105, 91,198,159,218, 28, 44, 5, -144, 80,223,117,110, 48, 24,180, 20, 69,129, 36, 73,176,217,236,170, 62,129,119,254,252,243, 79, 60,126,252, 24,168, 18,182,167, -164,164,132, 98,177, 88, 16, 8, 4, 0, 32,174,227,126, 7, 14,135, 3, 14,135,131,235,247,111,218,126, 60,114, 16,113,247,217, -101,116,241, 27, 11, 69,169, 1,185,197, 6, 20,169,129, 54,129,139,224,219,247, 36,162,146, 74,224,223,206,151,197,226,137, 38, -214,196,167, 77, 70,186, 42, 13,163, 20, 49,116, 11,125,134,240,252,189, 83,177, 49, 55,143, 71,189, 56,252,203,153,132,206,129, -221, 85,229,198, 4,148,150,150, 50, 4, 65, 48,115,167, 45, 76,220, 63,165,144,218, 60, 46,138,102,235, 4,175,255,141,183,250, -166,246,246,246,119,109,109,109, 35,202,197, 81, 83, 75, 75,203, 59,206,206,206,113, 40, 91,232,113, 42, 59, 59,219, 91,165, 82, -117, 65,217,226,172, 84,133, 66,209,187,220,242,148, 90,135, 37,108,151, 82,169,252,146,162,168, 33,229,127,253, 41,138,242,143, -143,143,111,237,239,239, 31,227,233,233,249,212,211,211,243,188,167,167,231,105, 79, 79,207,211,189,122,245,218, 84, 17,238,225, - 95, 60,109,248,150, 22,249, 15, 19, 90, 40, 23, 89, 59,203, 95, 81, 41,180, 0, 92,175,238,128,102,226,243, 95,152,190,248, 2, -214,167, 79,131, 19, 31,143,201, 19, 39, 74, 44, 44, 44, 54,163, 44, 70, 83, 23,177, 88,188,109,233,210,165,150,118,107,214, 64, -118,243, 38, 82,194,195, 97,228,112, 30,189, 75,233, 52, 26, 13,216,108,118,165, 37, 70, 36, 18,129,162, 40,212,100,242,125,235, - 2, 52,225, 94,102,110, 28,120,104, 6, 26, 76,233, 5,101,247, 7, 99, 19, 23, 57,132, 43, 61,188, 18, 84, 92,175,229,246,157, - 28, 54, 55,237,250, 64, 69,176, 75,121,214, 2,164,165,165,131, 2,221,160,249,102,173, 86, 91,172, 82,169,224,239,239,111,251, -248,241,227,230,126,126,126, 54,229,159, 63,124,207, 19, 19, 36,147,201,142,185,184,184, 36,203,100,178, 99, 0,130, 26,112,236, -174, 91,183,110,129,197, 98, 97,233,210,165, 40, 41, 41,129,193, 96,128, 66,161, 64, 90, 90, 26,244,122, 61, 50, 50, 50,240,242, -229, 75,232,245,122,164,164,164, 64,167,171,255,129,132,166,105, 72, 36, 18,104, 53,165,248,117,213,119, 88, 28, 58, 15,197,175, -159, 32, 35, 43, 23,214, 86, 34,204,158, 61,155, 37,149, 74,105,154,166,155, 81, 20,213,151,166,233,237,230,156,167, 42,253,237, -182,155,155,155,239,186,117,235, 90,127,183,106, 59, 87,194, 46,101,248,150, 2,154,103,201,103,120, 62,157, 48,101,209,102,238, -207, 63,109,120,117,239,222,189, 76,152, 23,188,147, 4,112, 59, 32, 32,160,101,102,102,166,159,183,183,119, 43,187,166,238,124, -190,179, 75, 17,215,185,137,146,209,105, 31, 16, 46, 77,186,109,223,190, 61,250,206,157, 59, 89, 13,225, 20,137, 68, 62,251,246, -237,243,117,116,116,244,229, 8,133, 2,117,113,241, 81,147, 90,117,140,101, 45, 21,144, 18,235,254, 39, 79,158,124,114,226,196, -137,156,134,112,122,121,121,121,175, 90,181,170, 77,219,182,109,219, 56,121, 52,231, 11, 93,220, 20, 2,215,166, 10, 97, 91, 63, - 62, 92,155,125,180,109,219,182,167,247,238,221, 51,139,147,197, 98,153, 72,146, 4,135,195,129,133,133, 5, 46, 92,184,128, 47, -166,142,133,155,139, 45, 90,121,123,163,207, 63,190,196,137, 19, 39, 42,125,120, 88, 44, 86,173, 35,250,222, 53,179,207, 4, 56, - 19, 79,176,195,231, 9,118,248, 60, 9,112, 38,158,212, 42,182,202,191,175,105, 31,179,238, 70,181, 76, 55,154, 33,182,206, 93, -191,126,253,135, 73,147, 38,241, 6, 12, 24,128, 7, 15, 30, 96,202,148, 41,183,195,194,194, 0, 0, 15, 30, 60,192,220,185,115, -111, 95,189,122, 21, 51,102,204, 64,239,222,189,121,183,110,221,218, 6, 51, 98,255,152, 76, 38,236,222,189, 27, 38,147, 9, 98, -177, 24, 54, 54, 54, 24, 52,104, 16,162,163,163,103,236,217,179, 39,142,197,225,124, 50,112,200, 72,156, 61, 29,134,151, 47,162, -103,236, 93, 61,190,193, 65,129, 73,146,196,128,137, 19,243,243,219,180, 41,216,171, 84,170, 63,149, 74, 45,188,115,114,108,174, - 29, 59,102,103,134, 80, 35, 40,138,170, 20, 87, 21,162,163,226,143,205,179, 7, 91,228, 11,182,101, 32,162, 18,184, 70,110, 71, - 68,242, 2, 17, 91, 87,252, 44, 14,143,156, 50,226, 59, 15,140,248,206, 3, 67,191,117,159,108,209, 4,191,139,154,224,243, 1, -115,154,245,242, 12,180,130, 50,207,128,240,141, 41,169, 90, 5,214, 0,120,105,206,117, 78,211,116, 76,102,102, 38,120, 60, 30, -154, 52,105,210, 18, 64,133, 95,224,174,105,211,166,205, 90,190,124,249, 60, 0,203,203, 63, 19,247,234,213,171, 77,105,105, 41, -226,227,227, 1,224,113, 29,214,224,202, 85,134, 5,202, 20,190,187,172, 45,252,124,166, 67, 42,109,135,204, 2, 61,178, 10,244, -248,253,215, 97,120,114,107, 37, 30, 95,154,128,212,156, 28, 8,157,134,131, 50,233,124,205,120,168,151, 61,123,246,140,184,117, -235, 22, 65,211, 52,140, 70, 35, 83,162, 84, 50,145,183,111, 67,115,227, 6, 33,145, 72,136,174, 29,186,151,238, 93,121,246,225, -201,173,183, 31, 27,212, 13,126, 80,127, 31, 44, 78, 76, 76, 12, 58,118,236, 88, 47, 0,139,255,143,189,235,142,111,170,122,223, -207,189,217, 77,154,180, 77,103, 58,104,161,208, 82, 90,160,204,178,135,160, 32, 5,145,253, 69, 16, 16, 40, 2,130, 56, 64, 20, - 84,246, 18, 69, 17, 25, 21, 20, 80, 65,150,178, 4,100, 72, 41, 32,123,149, 82, 90, 70, 75,247,204,104,147,102,223,123,127,127, -180,137,105,233, 72, 10,168,248,203,243,249,220, 79,114,111,110,158,156,123,115,207, 57,207,121,207,123,222,183, 85,171, 86,127, -102,102,102,118, 57,115,230, 76,243,192,192,192,181, 13, 37,181,132,133,200,200,200,168,178, 85,134,133, 48, 84,138,134, 1,149, - 98,110, 48,128,119,240, 4,171,236, 29,192,233,231,216, 25,254, 48,170,173, 54,172, 46,180,108, 3,133, 33,212,195, 67,108, 50, - 25,179,143, 31, 63,110, 36, 73, 18, 66,161, 16,227,223,120,131,220,176,126,125,247,209,157, 59,159,138,123,241,197, 35,167, 78, -158,108, 27, 19, 19, 3,134, 97, 64,146, 36,126,254,249,103,173, 78,167, 45, 9, 10, 10,114,183,167,209,176,173, 64,165,165,165, - 86,161,165, 82,169,224,235,235,107,247,212,161,166, 20, 39, 78, 30,189,170, 96,168,105,153, 3,238,173, 49,174,200,127, 53, 70, - 73, 83,108, 21,101,130, 74,203,160, 76, 7,246, 69, 82, 26, 51, 62,108,136,241, 97,223,152,187, 9, 41,231, 75,116,148,206,161, -213, 18,133,133,133,243, 70,140, 24, 81, 34,147,201, 8,137, 68,130,128,128, 0,114,240,224,193,197, 89, 89, 89,139, 26,250,143, -120,122,122,254,175,119,239,222, 7,115,114,114,134, 39, 36, 36,132,156, 57,115,102,120,239,222,189, 15,122,122,122,254,207, 78, -138, 93, 31,125,244,145,134,199,227,161, 83,167, 78, 40, 43, 43, 67,229, 42,159, 58, 55,123,166, 72,185, 92, 46, 54,173,250, 20, - 31,207,125, 23,242,148,139,184,121,246, 56, 78,231, 19,152,191,244,115,112,185,220, 6,197,250,106,230, 45,108,213,202, 95,124, -231,157, 55, 70,229,126, 56,119,174,248,250,245,235,156, 25,111,191,195,100,228,201,193, 27,176,154,133,158,243,200, 27, 26,111, -196,190,220, 7, 11, 62,126,191, 85,101,208,206, 58,209,194, 91,216,170,165,191, 56,249,253,184,209, 15,222,126,251,109,151, 21, - 43, 86,232, 58,119,238,172, 45, 40, 40,112, 17,121, 72, 35,216,110,238, 45, 51,242,242, 93, 59,119,238,252,112,218,180,105, 74, - 71, 57,231,207,159, 47, 60,118,236, 24,123,196,136, 17,102,133, 66,225,202,113,113,105, 67,240, 5, 29,139, 20, 10,183,225, 35, - 70,220, 27, 62,124,120,121,101,192, 82,187, 57, 63,249,228, 19,225,221,187,119,217,157, 59,119, 54,229,231,231,139, 69,158, 94, -209, 44,119,105,135,244,188, 2, 73,199,152,152,251, 51,102,204,208,212, 85, 78, 91,145, 34, 22,139,115,186,118,237,138, 47,190, -248, 2, 95,125,245, 21,250,247,239,143,164,219, 73,136,157,241, 46, 34,167,190,131, 3,231, 47, 32, 39, 39, 7,139, 23, 47, 70, -116,116, 52,184, 92,238,221, 26,235,227,155, 41,196,245,124, 16,215,243, 65, 16,111,166, 16,150,253, 90, 45, 91,139, 84,176, 61, -191,166,243,174,124, 82,179,165,171,173,140,184, 90,151, 31, 86,125, 98,107,248,240,225,211, 45, 33, 28, 38, 78,156,120,118,237, -218,181,221, 38, 78,172, 24,104,119,234,212, 9, 75,150, 44,233, 54,127,254,252,179, 75,151, 46, 69,159, 62,125, 16, 26, 26, 90, -239,194, 23,138,162, 96, 54,155, 49,122,244,104,152,205,102, 20, 21, 21, 33, 53, 53, 21,241,241,241, 96, 24, 70, 0, 0, 50,255, -192,246, 60, 30, 15, 55,174, 93, 46,255,120, 98,204,143, 14, 88,178, 8,219, 65,140, 90,173,198,240,169, 83,139,179,155, 53,147, -111, 44, 46, 46,159,228,225, 33,108,252,232,145, 84,108, 48, 4,160, 14,191, 68,130, 32, 64,211,180, 85, 88, 89, 4, 87,245,173, -178,163,180, 11,198,114,250,183, 51, 63,228, 2, 0,122,140,245,199,224, 57,141, 39,200,194,132, 95,119, 31, 83, 97,244,222,187, -228, 1, 83,150, 75,173,128, 9,201, 14, 88,172, 47, 94,188,120, 17,238,238,238, 24, 49, 98, 4,159, 36,201,229,150,241, 42, 42, - 98,103,173,177,112,241,249,252,213,175,191,254, 58,169, 84, 42,113,243,230, 77, 0, 56, 89, 91,187,196, 48,140,245,218,213,114, - 2, 20,205,195,185,107, 71,241,251,153, 61, 72,207, 41,194,163, 66, 29,192,118,131, 78,147, 13,163, 54, 7, 6,229, 53,148,234, -133,118, 21,152,203,229, 22,181,106,213,138,233,208,161, 3,195, 48, 12,238,223,191,111,206,120,244,200,124,249,203, 47,153, 91, - 83,166, 16,226,212, 84,174,139,139, 11,209,164, 73, 19, 8, 4, 2, 90, 32, 16,148,252,141,157,247, 51, 9,183,240, 12,194, 66, - 60, 77,171, 22,131,231, 19,121,168,186,218,208, 26,192,180,166,128,165, 96, 36, 46,163,246,124,179,193,109,196,232,177,154,232, -232,104,143,128,128, 0, 16, 4,129, 87,135, 12, 33,122, 39, 36,136, 57,254,254,240,108,215,206, 58, 29,113,226,248,113, 28, 61, -122, 84,115,248,215, 95, 2,222,152, 52,105, 16,128,109,117, 20,134,205,231,243,173,191,155,151,151, 7, 62,159,111,245,137, 40, - 45, 45,133,183,183, 55,242,242,242, 96,231,204,220,246, 15,231, 94,152, 91, 24, 51,175, 73,140,152, 67, 28,209,228,131, 98, 24, -112, 8, 10,208, 50, 48, 81,128,222,196,160,125, 99,150,244,119,173,217,227,208,197,125, 15, 1,108,119,228,238,233,245,250, 63, -174, 95,191, 62,133,166,233, 61, 0,200,132,132, 4, 58, 57, 57,121, 58,236,119, 92,127,220,108, 47, 20,206, 57,117,234,148,116, -206,156, 57,138, 67,135, 14,169, 6, 14, 28,232, 22, 31, 31, 47,125,225,133, 23,230,148,148,148,236,180,199, 16,152,153,153,185, - 45, 43, 43,107,122,135, 14, 29, 32,151,203, 97, 52, 26,113,245,234, 85,132,133,133,225,202,149, 43, 8, 15, 15,199,229,203,151, -209,188,121,115, 80, 20, 5,157, 78, 7,154,166,169,250, 26,115,121,113, 17, 80,146,137,220,139, 71,144,122,235, 42, 78,229, 18, - 88,183,243, 32, 26,133, 52,105, 80,156,154,112, 31, 97,148,204,219,243,247, 21, 11, 63,241,201,248,227,103,236,251,110, 29,125, -250,200,145, 72,158, 24, 83,122,142,158, 53,204, 96, 66, 48, 0, 94,151,152, 14, 24,224,113,151, 18,134, 32,255, 84,114,221, 1, - 22,195,125,132, 81,190, 94,158,199, 62, 91,190, 72,124,255,232, 86,236,218,244, 5,179,247,135, 29,209, 58, 32, 38, 42, 42,106, - 0, 73,146,238, 0,116,149,126, 94,118,165,182,169,137,243,196,193,131,109,117, 64,204,254,253,251, 7, 8,133, 66, 63, 0,166, -242,242,242, 7, 79,194,121,242,208,161,182,150,114, 18, 4,225, 3,192,200, 48,204,125, 56,152,130,103,228,200,145, 75,222,121, -231,157,185, 20, 69,121,219,140,206, 89,171, 87,175,102,211, 52,205, 98, 24,198, 72,146,164,241,216,177, 99,148,217,108,206,213, -233,116, 83,159,164, 21, 25, 54,108, 24, 46, 92,184,176, 16, 21,139, 48,236,181, 86, 87,241,211,170, 76,217,211, 96,254,132,132, -132,197,175,189,246,218,135, 59,119,238, 76, 93,187,118,237, 43,111,190,249, 38,126,254,249,103, 52,107,214, 12, 55,110,220,192, -188,121,243, 0,160,219,252,249,243, 15,108,217,178, 37, 52, 35, 35, 99,181, 29, 22, 13,152,205,102,236,216,177, 3,175,190,250, - 42,188,189,189,225,239,239, 15,130, 32,254,152, 52,105,210,122, 0, 96, 17, 44, 46, 0,232,117,122,125, 68, 68, 7,187, 45,184, - 92, 46,215,218,214,229,231,231, 91, 87, 10,190,244,218,107,197,155, 87,172,192,143, 90, 45, 38,121,120, 8,179, 3, 3,101, 7, -238,223,143,187, 93,209, 56, 51,117, 89,117,234, 19, 89,246,186, 52,104,243,240,209,175,203,210,253, 0,244,239, 49,214, 31, 61, -198,250,163,195, 96, 31,130,100, 17,184,245,123, 9,146, 78,200,247,154, 74,241, 7, 28, 75,151,147,188,124,249,242, 3, 61,123, -246,124,165, 69,139, 22,152, 60,121,242,180,239,190,251,142,107, 50,153,222,198, 95, 97, 30,220, 72,146, 92,180,105,211,166, 56, -169, 84,138,196,196, 68,156, 57,115,230, 15, 0,153,181,181, 75, 0,172, 49,179, 26, 5,133,235,238,102,168,133,133, 57,231,112, - 54,241, 87, 52,139,158, 5, 23,191, 65,144, 70, 44,133, 49,229, 43, 24, 74,126,135, 52,104, 32,178, 51,238,131,197,230, 39,213, -231,132,194, 48,204,237,236,236,236,208,208,208, 80, 34, 61, 61,221, 12,128,161, 40,138, 49,118,239,110,138, 92,177,130,147, 52, -109, 26,209,229,238, 93, 22, 67, 16,244,213,171, 87, 1,224,206, 63,209,139, 91,194, 45, 36, 37, 37,213, 22,110,193, 33,180,106, -213,170,219,153, 51,103,248, 58,157, 14,167, 79,159, 70,199,142,214,181, 93,255,104,244,123, 91, 45,242,156, 33,174,134, 99,241, - 85, 44, 90, 85, 30,108,154,224, 52, 15, 15,167,184, 36,190,127,117,208,160,242,235,215,175, 91, 71,125,186, 75,151,160, 57,122, - 20, 20, 69,129, 97, 24,156, 73, 72,192,235, 99,199,170, 57, 44, 98,115,227,198, 33, 12,193, 84,137,221,210,183,134,209,195,136, - 17, 35, 70, 88, 27,159,172,172, 44,136, 68, 34,240,120, 60,208, 52, 13,179,217, 12, 22,139, 5, 55, 55, 55,152,205,230,154, 76, - 48,213, 57, 77,148, 92, 51,124, 75,236,152, 60,127,181,145,153,226,222, 24,193, 92, 23,107,229,244,147, 16,120, 37,154, 3, 47, -118, 33,115,114,245,139,185,180,190,100, 56, 30, 95,209, 85,223,146,255,240,214,173, 91,175,127,253,245,215, 73, 0,232,219,183, - 47,217,186,117,235,175, 81,119,170,156, 58, 57, 5, 2, 1, 31, 0, 14, 30, 60, 40, 79, 77, 77,237,127,240,224, 65,185,237,113, - 59, 57,227, 87,173, 90, 5,161, 80, 8,179,217, 12,131,193, 96,245,207,178,125, 53, 26,141,240,242,242,194,225,195,135, 65, 81, -212,225,250,202, 25, 20, 28, 2,194,187, 41,182, 29, 60,133, 51,197,220,134,136, 44, 43,103, 83, 63, 81,115, 63, 47,207,227,159, - 45, 91,236,173,184,119, 21,217,217,217,204,177,163,135,255,212, 1, 57,170, 50,124,172,212,160,185,214, 0, 65,199, 80,100, 30, -223,244, 1, 51,191, 7, 76,168,121,213,160,149, 51,210, 79,212, 60,192,219,243,216,231,159, 45, 19, 43,239, 93, 69, 94,126, 62, -126, 59,124,240,186, 14,176, 76, 55, 78,160,105,186, 37, 77,211, 45, 1, 76,168, 67,188, 56,196, 89, 94, 94,222,170,188,188,188, -213,211,228,100, 24,166, 21,195, 48,118,115,218,250, 68,173, 89,179, 38, 37, 47, 47,239,245,194,194,194,126,150, 77,161, 80,244, - 85,171,213,189,202,203,203,187,107,215,132,184,149,151,151,251,168,213,106,153, 78,167,107, 15,224,170, 3,207,188, 21,182, 81, -167,243,242,242, 22,228,229,229, 17,245,149,147, 53, 53,133,248,233,243,247,127,221,180,105,147,236, 9,249,171,148,179,184,184, -120,207,206,157, 59,219, 52,105,210, 36,116,194,132, 9,216,184,113, 35,214,174, 93,171, 7,128, 45, 91,182,232,109, 44, 89, 65, - 25, 25, 25, 29,106,153, 54,236,107, 99, 45,217,254,210, 75, 47, 49,103,206,156,193,171,175,190,106, 13, 36,250,237,183,223,194, -108, 54,151,246,233,211,135, 6, 0,173,174,188,148,161, 25, 24,140,181,206,191, 63,118, 63,121, 60,222,203,182,241, 2, 45,193, -152,121, 60, 30, 24,134, 65,243,110,221,138,149,209,209,242,239, 84,170,242, 5,173, 90, 73,226, 34, 34, 38,180, 0,198,214,196, - 73, 16, 68, 21,171, 78,245,205, 1, 75,150,109, 57, 11,181,185,152,252,235,178,244,163, 22,203,150,192,149, 13, 93,153, 25,191, -172, 72, 47,210, 21,225,219,218,196, 79, 93,215, 46,151,203,103,172, 88,177, 66,239,225,225,129, 97,195,134, 97,233,210,165,147, -186,117,235,166,242,241,241,185,208,172, 89,179, 91,163, 70,141,202,187,122,245,234,140,222,189,123, 35, 45, 45, 13,159,127,254, -185, 82,161, 80,140,169,139,147, 32, 8,171, 37,111,112,108, 95,249,134,175,191,160,251,244,156, 14,161,139, 4, 38, 78, 16,228, -106, 19, 20, 26, 6, 6,126, 12,120, 92, 62,250,117,142,194,133, 99, 91,203, 41,131,102, 91,125,207,188, 90,173,222, 59,126,252, -248, 82, 46,151, 11,131,193,192,112, 56, 28,240, 43,252,142,105, 78,255,254,198, 46,201,201,102,138, 97,104,130, 32,240,222,123, -239,105, 20, 10,197,206,134,212, 35, 7, 96,203,249,180,194, 45,244,173,214,255, 60,141,176, 16,207,226,218,159,103,196,215,176, -253,101,209,178, 44,169,180,188, 18, 4, 77, 81, 20,141,198, 77, 26,139, 51,210, 51,215,141, 28, 57, 98,226,128, 1,177,194,216, -216, 88, 65, 84, 74,197,104,244,224,193,131,216,183,111, 95,249,239,191,255, 94,202,231,176,182, 4, 53, 10,242,165, 40, 26, 4, - 65,215,169,134,197, 98,241,219, 31,125,244,145,139, 74,165,194,218,181,107,233, 54,109,218,144, 34,145, 8, 70,163, 17, 91,182, -108, 49, 69, 69, 69,113, 72,146,132, 74,165, 2, 73,146,119,237,188,192,155,170,204,156,126,235,123, 15,221,215,225,173, 55, 60, - 35,123,119,241,232, 21, 20, 0, 83, 59, 6,185, 89,233, 72, 61,249,187,226,246,177, 47, 75,160, 43, 24,138,250,211, 3,213,212, - 17,124,250,251,239,191,251,204,152, 49,131,209,233,116, 68,102,102, 38,179,108,217, 50,159,201,147, 39,127,154,155,155,251,191, - 6,254, 41,132, 82,169, 4, 65, 16,116,101, 67, 98, 25,245, 59, 50, 47,151,180,109,219,182,253, 67,134, 12, 25,220,167, 79, 31, -164,164,164, 88,167, 8,109,133,150,101,245,225,242,229,203,149, 0, 62,172,143,148,195,225, 96,237,182, 61, 80, 42,138,225,235, -235, 15,129,139, 11, 26,186,194,146, 71,146, 11, 86, 46,254,196,167,248,206, 5, 34,233,207, 83,244,238,155, 5,133,102,138,169, - 57,226,127, 89, 46, 83,169,254,235, 30,205,144,172, 5, 43,151, 45,114,179, 76,107,238,188,150, 87, 74, 80,204,140, 39,170, 34, -207, 11,231,223, 12,127,127,127,228,229,229, 17,254,254,254, 76,165,143, 22, 83,135,208,170,250,128, 87, 76,151, 17,117, 77, 27, - 54,148,255,225,195,135,203,218,181,107,247,126, 90, 90,218,238,200,200,200, 55, 1, 52,210,235,245,202,249,243,231,127,182,101, -203,150,137,246, 88,178, 0,224,231,159,127,254,242,141, 55,222, 56, 58,104,208,160, 15,104,154,110,109,211,177, 63,244,241,241, -177, 78,225, 22, 21,228,207,157, 50,113,244, 92,181, 90, 97,119,156, 59, 87, 87,215,184,249,243,231, 11, 52, 26, 13,190,249,230, - 27, 58, 42, 42,138,180, 12,138,126,248,225, 7,115,120,120, 56,123,196,244,233,197,107,242,243,177, 36, 49, 81, 51,183,101,203, - 54,223,165,166,182, 7, 77,111,175,205,170, 83,147, 37,203,226,118,209, 64,228, 86,138,173,111, 1,244,239, 50,210, 15,251, 87, -165, 67,145, 97,248, 12,102,220,135, 29,105,129,106, 64,246,222,189,123,251, 21, 20, 20,236,255,228,147, 79,220,218,183,111,143, -150, 45, 91,114, 92, 93, 93, 99, 44,225, 98, 84, 42, 21, 78,156, 56,129,141, 27, 55, 26,110,223,190, 61,164,174,233, 42,138,162, - 10,195,195,195, 45,247,129, 33, 8,162,164, 84, 79,184,237,106, 17,227, 58, 97,202,110,226,236,229,243,200, 53,210,208,155,104, - 52,110,210, 22,189,250,175,193,129, 35,183,168,220,140,228,100,147, 86,177,217,142,242,222,191,119,239,222, 47,139, 23, 47, 30, -249,193, 7, 31,184, 20, 23, 23, 83,122,189,158,222,179,103, 15,107,194,132, 9, 20,195,102,211, 92, 54, 27,111,191,253,182, 86, -169, 84,254, 10,252,173, 9,166,159, 73,184,133,103, 16, 22,226,169, 89,179,108, 95,255, 43,168,177,134,210, 44,242,220,198, 77, - 27, 94,254,121,199, 78, 63, 22,139,244,187,255,224,193,229, 87,134, 14,207, 57,126,252,184,148,235,230,214, 17, 0,109,120,243, -205, 63,141,122,173,252,208,254,253,193,141, 27,135, 68, 87, 38,149,102,104, 22,121,174,174, 31, 84,171,213,154,196,196,196,242, - 15, 63,252,144,200,202,202,250,201,215,215,119,212,145, 35, 71, 92,135, 14, 29,170, 77, 73, 73,217,235,231,231, 55,184,119,239, -222,226,247,223,127, 95,175, 86,171, 29, 73, 60,154,204, 20, 41, 90, 92,250,100,245,107,151, 86,109,120, 17,108, 86, 87,232, 57, - 0,109, 58, 7, 99,217,113, 0, 63,193,129,120, 71,182, 16,137, 68,209, 66,161, 16,215,175, 95, 87,196,196,196, 24,116, 58, 29, -119,233,210,165,158, 34,145, 40,186,161, 55,158, 97, 24, 70,161, 80,128,166,105, 54, 0,162,242, 21,180,227,107,241,255,247,202, - 43,175,236,223,181,107,215, 75,177,177,177, 8, 13, 13,133,201,100, 66,120,120, 56, 12, 6, 3,194,194,194,160,215,235,177,112, -225, 66,168, 84,170,119, 81, 71,206, 51,130, 32, 96, 54,155,173,206,182, 1,129,193, 21,113,122,158, 32,140,133,136, 67,134,222, - 61,244, 29, 10, 75,138,233, 93, 55, 10, 10,202,141, 84,191,123, 69,229,183,171,159, 87, 78, 65,211,123,194,204, 28, 0,208,211, -117,103,156, 23,241, 16,154,122,248, 91, 20, 20, 22,227,231,107,121, 74,141,145,238,159, 90, 3,167, 67,229,124, 78, 56,219, 46, - 76,193,240,153,246,159,251, 36,176, 87, 80,213,134,235,249, 32,174, 8,191, 99,176,233,187, 26, 99,100, 61, 33,255,254,180,180, -180,253, 0,144,156,156,156, 53,122,244,232,185,233,233,233,139, 1,252,150,145,145,177,201, 17,162,239,190,251, 46, 13,192, 27, -117,157,179,115,245, 27,191, 0,248,197, 17,222,178,178, 50,221,213,171, 87,117,239,191,255, 62,145,149,149,117,196,207,207,239, -165,163, 71,143, 10,135, 14, 29,170, 79, 74, 74, 58,233,239,239,223,163,111,223,190,174,191, 93,188,152, 83,126,255,254,161, 67, -233,233,129, 38,154, 62, 84, 87,253,124,202, 34,171,138,216,250,101, 73,250,202,253, 43,211,251,210,122,236, 53, 40,240, 39,128, -236, 39,224, 60,115,238,220,185,200,177, 99,199,238, 26, 56,112, 96,151,200,200, 72, 52,106,212, 8,169,169,169, 40, 42, 42,194, -205,155, 55,113,240,224,193,131, 58,157,174,222,132,218,114,185,252,241,244, 68, 2,169,255,214,111, 22, 28,188,124,182, 99,120, -247,216,241, 46, 45,253,105, 24,140, 12,178, 30,221,199,194,143, 55,151,231, 61, 74, 75, 54,154,141, 67, 96,231, 66, 29,173, 86, - 27,255,213, 87, 95,113, 14, 29, 58, 20,187,110,221, 58,113,112,112, 48,139,203,229,146, 0,152, 43, 87,174, 48, 51,103,206,212, - 20, 23, 23, 31, 46, 45, 45,141,255,155,251,232, 51, 15, 30, 60,104,203, 98,177,158,106,184,133, 39, 8, 11,225,196,211, 68,147, - 38,129,145, 77,131,253,223, 12,109, 20, 56,189, 73,112,208,184,154,156,220, 67, 61, 60,196, 77, 66, 2,226, 66, 27, 5, 78,111, - 26,236,255,102,147, 38,129,145,118,152, 22, 67, 37, 18,201, 17,153, 76,214, 6, 0,220,220,220, 6,187,187,187,223,118,115,115, - 27, 92, 57, 10, 28,236,234,234,122, 39, 42, 42,106,242,223,104,174,172,147, 51, 60, 60,124,180, 90,173,158, 22, 30, 30, 62,218, -178,127,255,254,125,235,126, 67, 56,131,130,130,250,109,249,127,163, 0, 0, 32, 0, 73, 68, 65, 84, 92,185,114,229,127,171, 87, -175, 30,214,172, 89,179,193,203,150, 45, 27,246,235,175,191,254, 47, 48, 48,176,125, 3, 56,249, 0,126,228,112, 56, 5, 60, 30, -175,144,195,225, 20, 88, 54, 54,155, 93,192, 98,177, 10, 0,108,170,197, 90,214,215,102,148,115,214,215,215, 55,195,215,215, 55, -195,207,207, 47,195,207,207, 47, 67, 38,147, 61,182,121,121,121,157,181,247,126, 70,248,185,118,139,105, 36, 62,215, 74,230,122, -182,133,175, 40,226,105,252, 71, 17,126,174,221, 58, 54,114, 59,215, 74, 38, 78,252,255,198,217,198, 15, 12,179, 49,130, 97, 54, - 70, 48,109,252,192,212,183,255, 52,205,254, 50,153,140,145,201,100, 11,158,213, 84, 66, 45,252,127,123,125,127,138,156,161, 98, -177,120,103,163, 70,141, 44,109,221, 32,137, 68,242,135,171,171,235,160,202,182,110,144, 72, 36, 74,136,138,138, 26, 95, 31,167, - 84, 42,189,226,227,227,147, 95,185,229,249,250,250,230,249,250,250,230,249,248,248,228,250,248,248,228,122,123,123,231, 88, 54, -119,119,247, 11, 13,188,118, 31, 0,157, 0,180, 7, 32,121,138,247,179, 9,128, 41,149,109,208, 10, 0,147, 1,180,126, 10,255, - 17,193,113,145, 78,229,187, 7,157,227,184,122,151,113, 92,189,203,248,110,129,231,234, 72,193, 99, 15,103,115,169, 84,186, 84, - 34,145,252, 42, 22,139, 19,197, 98,241,126, 47, 47,175,101, 0,154,255, 67,207,146, 43,128, 45,168,136,207,244, 27, 42,166,194, -247,163, 98, 81, 65,240,191,240,153,255,255,140,184,127,234,135,251, 58, 57,157,156, 78, 78, 39,167,147,211,201,249, 28,114,146, -206,251,233, 20, 90, 14, 10,173,234, 27,128, 58, 34,195, 59,225,132, 19, 78, 56,225,196,255, 99,208,206, 91,224,132,131,168,113, -106,153,168, 67,149, 58, 18,107,170, 33,202,246,132,147,211,201,233,228,116,114, 58, 57,157,156, 78,206,255,119,156, 78, 60, 69, - 56,205,170, 78, 78, 39,167,147,211,201,233,228,116,114, 58, 57,255,235,112, 78, 29, 58,225,132, 19, 78, 56,225,132, 19, 78, 60, - 35,196,219, 8,174, 42, 83,136, 78,161,229, 56, 72, 0,211, 0, 12, 7,208, 20, 21,217,236,247, 0, 88,143,134,205,233, 75, 0, -204, 5,208, 21, 21,171,115, 30, 2, 72, 68,197,234, 28,181,243,118,215, 12, 47, 47,175,143, 56, 28,142, 59, 80,145,218,196,242, -106,251,158,162, 40,101,105,105,233,178,103, 84, 4, 22,236,140,160,108, 41,171,109,217,108, 95, 77, 38,211,179, 44,167, 19,255, - 78,132, 75,165,210, 31,229,114,249, 24,216, 36, 89,118,194,137,255, 2,188,189,189,223, 52, 26,141,243,185, 92,238,210,162,162, -162, 13,255,143, 46,253, 49,145, 85, 69,104, 29, 58,116, 40, 1, 0, 6, 14, 28,216, 19, 0,220,221,221,207,147, 36,217,196,145, - 95,160,105,250,161, 82,169,172, 53,128,154,187,187,251,121, 22,139,245, 24,167,201,100, 18,179,217,236,178,154,190, 99, 54,155, -179, 75, 75, 75,219,255, 75,110, 34, 1,224,144,135,135,135,110,241,226,197,235,123,245,234, 21,148,155,155,107,158, 51,103, 78, -143, 27, 55,110,196, 2,120,217, 65,177,213,153, 32,136,173,109,218,180,249,101,220,184,113,187, 98, 98, 98,120, 37, 37, 37,226, - 61,123,246, 4,108,219,182,237, 42, 77,211, 99, 80, 71,162,213,255,207,224,112, 56,238,217,217,217, 98,160, 34, 53, 73,165,176, -130,201,100,130,201,100,130, 70,163, 65,116,116,244, 83,255, 93, 63, 63,191,182, 4, 65,172,115,117,117,109,175, 86,171, 47, 3, -152,158,151,151,119,195,145,178,154,205,102, 48, 12, 99, 45,103,100,100,164,243, 15,117, 12,147,120, 60, 94,255,176,176,176,142, -122,189, 94,241,240,225,195, 75, 20, 69,125,130,167,151,163,205, 13,192, 39,124, 62, 63,166,105,211,166, 65,105,105,105, 89, 70, -163,241, 34, 42,146, 33,171,158,134,200,234,217,179,231,217,111,190,249,198,115,234,212,169,103, 19, 19, 19,187, 57,197,150, 19, -255, 20,130,130,130,220, 53, 26,205,102, 0,109, 57, 28,142,159, 64, 32,128,139,139, 75, 62,159,207,191,238,226,226, 50,241,220, -185,115, 74, 71, 57, 41,138,250, 36, 35, 35,195,175, 83,167, 78,171,124,124,124, 22, 22, 23, 23,235,140, 70,227, 73,133, 66,241, - 46,128,210,186,190, 91, 93,139, 60,103, 34,203,246, 21, 22,209,197,174,188, 48, 6, 64,175, 42, 10,140,205, 14,124,244,232,145, -143, 64, 32, 0, 77,211,214,206,172,250,102, 57,110, 48, 24,208,178,101, 75, 99, 61, 29, 78, 80, 86, 86,150, 15,143,199,179, 30, - 51, 24, 12, 8, 8, 8,160,179,179,179,125, 42,211, 30, 88,161,215,235, 17, 24, 24,248,111,202,121, 52, 77, 42,149,170, 50, 51, -179,162,117,122,227,162,201, 51, 62,252,104,204,240, 23, 61,206,159, 63, 79,191,252,242,203,250,132,132,132,105,168, 72,156,106, - 87, 99, 78, 16,196,182, 57,115,230, 44, 20, 8, 37,158,167,206, 39,235,183,237, 57,156,211, 38,188, 49,241,238,187,239,178,102, -206,156,121,166,109,219,182, 63,210, 52,221, 14, 14, 88,182, 60, 60, 60,142,242,249,252,144,202,251,151,169, 80, 40, 94,250, 23, - 62,144,108, 60, 30, 60,182,166, 99,245,162,164,164, 4, 90,173,246,177, 45, 50, 50,210,222, 92,153, 14,149,155,195,225,236, 95, -190,124,121, 64,126, 94, 30,190, 88,179,166, 19, 42, 44,153,157,236,249,114, 97, 97,225, 99,229,140,136,136,128, 19, 14, 97,238, -194,133, 11,151,191,246,218,107,160, 40, 10, 90,173,214,255,222,189,123, 81,243,231,207, 31,114,255,254,253,142, 0, 30, 60,233, - 96, 60, 44, 44, 44,101,214,172, 89,210,142, 29, 59,162, 50, 75,133,127, 98, 98, 98,167, 45, 91,182,188,158,153,153, 25, 1,160, -232, 73,126, 64, 42,149,254,248,237,183,223,122, 10,133, 66, 28, 56,112,192,179, 79,159, 62,137,215,174, 93,235,254, 4, 98,139, -244,244,244,156, 9,224, 5,154,166,121, 0, 46, 42, 20,138, 37,112, 60,170,187,204,213,213,117, 47, 73,146,141,129,191,162,209, -147, 36,233, 69, 16, 68,177,229, 24, 65, 16, 62, 52, 77,255, 41,151,203,187, 56, 31,199,231, 27,158,158,158,147, 10, 10, 10,190, -225,243,249, 92, 15, 15, 15, 8,133, 66,176,217,108,176,217,236, 70,124, 62,191, 17,159,207, 31,208,187,119,239,233,127,252,241, - 71,157, 17,246, 59,183,241,157, 0,146, 88,196, 34, 72, 22, 0,144, 28,145,196,205,205, 13,139, 22, 45, 18, 13, 30, 60, 88, 4, - 0,103,207,158, 29, 55,126,252,248, 62,217,217,217, 45,107, 19, 91, 53,105,145,231, 8,241,117,117,120,168, 84,143, 9, 85,106, - 46, 73,130,199,227,225,194,133, 11,176, 39, 88,185, 37, 69, 66,157,173, 65,101,132,241, 27, 55,254, 50, 0, 88, 58, 26, 30,143, -135,115,231,170, 6,149,239,220,185,179,181,178,255, 93, 24, 30, 89, 17,228,113,247, 91, 21,229, 26,177,174, 34,186,246,238,183, - 34,208,227,243, 71, 24, 62,115,193,168,114,157,177, 3, 0,141, 82,161, 80, 92,222,183, 47,183, 77,120, 56,247,199, 31,127,236, - 24, 16, 16, 48,220, 1,161, 53,183, 93,187,118,123, 89, 46,110, 94,227,198, 79, 24, 55,145, 77, 26, 95,159,242,254,210,172,188, - 98, 77, 92, 92,220,190, 3, 7, 14,140, 91,185,114,229,157,217,179,103,207, 5, 48,207,222,242, 11, 4,130,144,187,119,239,134, - 81, 20,133,200,200,200,127, 99, 26,131, 54,168, 8,190,247, 26,128, 29,149,199, 70,163, 34,114,127, 91, 0,215, 29, 33,179, 88, -176,106,218,158, 54, 2, 2, 2, 34,198,142, 29,235, 37, 47, 46,198, 23,107,214, 88, 14,183, 71, 61,211,136,150,250, 99, 48, 24, - 48,108,216,176,177, 20, 69,177, 45, 34, 80,175,215, 27, 84, 42,149, 14,127, 57,150, 22, 1,120,209,142,226, 52, 17,137, 68,159, - 1,104,171,213,106, 3, 0, 64, 36, 18,229,208, 52,253,139, 70,163,153,135,191, 18,248, 58, 60,192, 5, 16,133,218, 83, 65, 49, -203,151, 47, 79,251,240,195, 15, 31,252, 3,156, 33,190,190,190,203, 70,140, 24,129,195,135, 15,227,183,223,126, 51,185,184,184, -176,199,143, 31, 79, 76,159, 62,221, 99,214,172, 89, 3, 0,124,245,132,127,243,128,133, 11, 23, 74, 91,180,104,129, 61,123,246, -224,230,205,155,218,176,176, 48,151, 94,189,122,129,205,102, 75, 63,250,232,163,151, 1,108,125,146, 31,144,203,229, 75,222,127, -255,253,109, 59,118,236, 16, 63,124,248, 16,235,214,173,243, 26, 53,106, 84, 66,102,102,102, 79, 7,196, 22, 31,192, 76, 0,189, - 89, 44, 86,247,241,227,199,155,103,204,152,193, 33, 73,210,180,102,205, 26,239, 45, 91,182,140,226,112, 56,109, 75, 74, 74,236, - 25,164,145, 0, 22, 77,156, 56,241,141, 63,254,248,195,227,210,165, 75, 60, 79, 79, 79, 80, 20,101,181, 20,211, 52,237, 99,121, -102,205,102, 51, 34, 34, 34, 2,109,190,239,242,188, 10, 13,146, 36,141, 52, 77,115, 0, 8, 0,232,235,219,255, 47,137, 44,169, - 84, 58, 85, 46,151,175,247,243,243,131,175,175,239, 99,125,173, 94,175,135, 64, 32,224,250,249,249,125, 59,120,240, 96,206,254, -253,251,107,157, 2, 36, 88,196, 39, 7,118, 46, 14,144,122,136, 1, 0, 95,110, 60, 86, 14, 0,191,254,250, 43,114,115,115,225, -225,225,129,150, 45, 91,178, 22, 47, 94, 44,123,247,221,119,191, 80, 40, 20, 19,107,227,170,174, 69,158, 51,139, 86,124, 77,251, -117,250,104, 49, 12, 99,205,147,103,231, 67, 91,253,208,137,106,124,132,193, 96, 64,117,139,150,165,242,114, 56,156,234,230, 71, - 16, 4,193,212,197, 89, 3,198,139, 68,162,104,141, 70,243,181, 3,163, 91, 43,231,238,183, 34,176,141, 63,103,180, 37, 19,233, -128,247, 43, 94,183, 1, 56,159, 62,113,221, 55, 61,123, 6,204,252,120,237, 2,109, 73,110,241, 71, 99, 7,133,132,249,121,186, -136,148,133, 42,105,243,230,253,170, 89,100,234, 43,103,143,113,227,198,109,255,253, 66, 6, 33, 16,112,185,108, 22,139,211,173, - 85,184,103,144, 27,203, 77, 12,184,101, 61, 72, 59, 63, 97,194,132, 86,179,103,207,238,238, 0, 39, 42, 59, 92,252,240,195, 15, - 32, 8,130,116,228,218,159, 34, 78,212, 37,178, 24,134, 1, 65, 16, 63,217,116, 42, 63, 85, 30,187,102, 35,182,216,117,221, 79, -139, 53,213, 34,170,198,143, 31, 63,214,108, 54,179,109, 26,137,234, 2,166, 38, 17, 99,215,181,203,100,178,223, 1,188, 72, 16, - 4, 12, 58,157,225,179,207, 63,183,253,248, 74, 53,145,117,162,182,186,100, 50,153, 64, 81, 20,251,218,181,107, 28,155,103,157, - 3, 64, 4,192,139, 97, 24,144, 36,121,203,142,251, 25, 33, 20, 10,207, 31, 60,120, 80,210,190,125,123,130,199,227,193,108, 54, - 35, 41, 41, 41,104,229,202,149, 83, 78,156, 56,241,178, 70,163,137,196,227,201,211,237,249,143,162, 18, 19, 19, 53,161,161,161, - 53, 10,199,210,210, 82,118,120,120,120,207, 90, 68,209,179,230,204, 46, 40, 40,120,245,197, 23, 95,124, 51, 63, 63, 63,197,108, - 54,127, 0,160,165,151,151,215,181,161, 67,135,194,197,197,165,183, 86,171,253,234, 73,158,121, 31, 31,159,193, 93,186,116,193, -186,117,235,176,114,229,202,190, 0, 78, 2,232, 83, 90, 90,122,226,149, 87, 94,129,187,187,251,171, 74,165,114,235, 19,212,163, -240, 30, 61,122,124,187,104,209, 34,241,225,195,135, 17, 22, 22,134,178,178, 50,188,247,222,123, 62,159,126,250,233,105,165, 82, -217,203,166, 94,212,198, 25,201,231,243,183,238,216,177,195, 53, 52, 52, 52,148,203,229,146,161,161,161,144,203,229,208,233,116, -252,165, 75,151,182,114,113,113,185,241,213, 87, 95,109, 5, 48,180,158,114,146, 0,150,108,218,180,233,205,184,184, 56,247,177, - 99,199, 82, 6,131, 1,187,118,237, 2,139,197, 2,135,195,129, 80, 40,180, 38,175,230,114,185,104,222,252,177, 32,233, 7,234, -184, 94, 21, 42,252, 80,221,225,216,180,235,137, 58,248,172, 83, 31, 28, 14, 7, 2,129, 0, 2,129, 0,124, 62, 31,119,239,222, -253, 88, 32, 16,172, 33, 8,194,108, 15, 39,241,151,186,136, 6,112,169,190,125, 60,238, 26,242,119,182,159, 22, 4, 18, 4,241, - 37,128,222, 21,221, 46,153,224,229,229,245,118, 65, 65,193, 35,123, 57,101, 50,153,103, 73, 73,201, 87, 50,153, 12,190,190,190, -214,254, 59, 32, 32, 0, 38,147, 9, 5, 5, 5, 96, 24, 6, 74,165, 18, 66,161, 16,254,254,254, 95,197,197,197,237,137,143,143, - 47,169,145,147,198,202, 87, 70,205,255,132,197, 98,145, 0,192, 98,187,186,206,250, 16, 8, 9, 9, 65,183,110,221,160,211,233, -160, 82,169, 16, 21, 21,197, 38, 8, 98, 28, 65, 16, 18,134, 97, 54, 0, 56,245, 31, 52, 20,214,234, 12,191,176,250,188,168, 37, - 91, 60,151,203,181, 75,104, 85,158, 95,159, 5,133, 52,153, 76,224,114,185, 85, 44, 18, 4, 65,128,162,168, 42,199, 45, 66,171, - 33, 66,125,250,244,233,244,183,223,126,251,166, 66,161,216,136, 6, 78, 37,140, 27, 55,238, 49,127,143,119,223,125, 55,187,176, -176,144, 25,214, 47, 90,148,114, 36, 55,175,169,135,171,139,183, 88,220, 88,224, 33,117, 47, 41, 41,249,179,178, 49,177, 23,205, -218,181,107,231,178,109, 95, 98,246,228,119,150, 47,110, 31,234, 41,105, 29,232,229,225,231,230,194,115, 37, 9,141,192,108,202, -150, 74,165, 97,142,150,219,210, 46, 8,133, 66,144, 36,249,111,178,104,177, 45, 34, 75, 46,151,227,240,225,195,136,141,141,189, -102, 17, 33,165,165,165,200,203,203,131, 76, 38,187, 86,105,249,168,119, 26,145,166,105, 24,141, 70, 24,141, 70,171,128,177,121, -134,172, 2,198,114, 46,139,197,186,213,192,178, 47,246,240,240,232,209,187,119,111,222,206, 93,187,120, 12,195,104, 80,145, 67, - 77,205, 48,181, 36,200,174, 6,179,217,108,181,178,113, 56, 28,100,102,102, 90, 59, 46, 75,110, 73,129, 64, 96,159, 41,131,207, -127,255,231,159,127,150,116,236,216,145, 40, 41, 41, 1, 77,211,214, 70,114,253,250,245,130,225,195,135, 7, 92,189,122,245, 35, -189, 94,191,176, 1,215, 74,212, 38,136, 0, 64, 34,145,152, 97, 95,196,236,122, 57,205,102, 51,209,181,107,215,217,197,197,197, -173,180, 90,237, 82,123,110, 35,128, 3,217,217,217,182, 29,251,141,148,148, 20,237,200,145, 35, 93, 26, 55,110, 28,147,156,156, -252, 68, 15,105,120,120,120,103, 14,135,131,139, 23, 47,234, 1, 88, 70,214, 9, 55,111,222,212, 15, 29, 58,148, 31, 20, 20,212, - 89,169,180,219,101, 37, 60, 34, 34,226,184,143,143,143,139,165, 13,245,246,246,230,196,199,199,139,115,114,114, 96, 52, 26, 49, -119,238, 92, 12, 28, 56, 16, 94, 94, 94,120,247,221,119,125, 87,173, 90,245,163, 90,173,110, 87,151,209,154,199,227,109,191,119, -239, 94,152, 76, 38,115,185,112,225, 2, 90,183,110,141,226,226, 98,228,231,231, 67,173, 86, 35, 63, 63, 31, 19, 39, 78,244,249, -226,139, 47,252,237,176,100, 89, 69, 86,124,124,188,114,239,222,189,172,205,155, 55,139, 57, 28,142, 85,104,177,217,108,171,208, -178,228, 86,108,192, 76,131,178, 82,180,185,171, 84,170, 39,241,115,227, 3,224,217,138, 44, 62,159, 15, 62,159, 15,129, 64,240, - 68,121, 89,159, 19, 4, 16, 4,145,204,229,114,249, 66,161,144, 75,146, 36,248,124,126, 63,169, 84,122,187,101,203,150, 45,143, - 31, 63,158, 97, 15,137, 78,167,219,206,231,243, 57, 62, 62, 62, 0,128,176,176, 48,180,110,221, 26, 26,141,134, 86,169, 84,112, -119,119, 39, 31, 61,122, 4,173, 86,139,188,188, 60, 4, 7, 7,115, 72,146,220,142, 10, 63,228,199,112,254, 90,254, 70, 0, 27, - 45,251, 94, 94, 94, 5,182,150, 78,129, 64,128,128,128, 0,228,228,228, 64, 44, 22,179, 62,253,244,211,161,187,118,237, 26,114, -254,252,249,113, 0,126,176,161, 90,248, 28,251,104, 89, 68,150,237,235, 95, 66,107,224,192,129, 11, 14, 29, 58,212,179,166, 81, - 56,135,195,121,106,190, 46, 22, 65, 37,145, 72,170, 91,173, 64,211,116,109, 22, 45,135,127, 71, 32, 16,184, 76,157, 58,181,108, -195,134, 13, 14,139,173, 17,235, 82,172, 86,172,199,134,145,145,145,231, 63,250,232,163,193,127,252,241, 71, 78,251,208,198,108, - 81,238, 35,181, 64,226,238,142,192, 70,177,227, 95, 29,122, 19, 21,171, 15,237,197,189,178,178, 50,151,166,129, 66, 3, 73,234, -136, 70,124,182, 88, 38,226,242,253, 60, 60, 2,184, 6,125,161,196,195,131,167,215,235,149,168, 35, 9, 52, 0,248,250,250, 30, -115,113,113, 9,182,236,123,120,120,184, 49, 12, 3,161, 80, 8,153, 76,230,202, 98,177, 82,109, 42,215,163,130,130,130,126,245, - 21,204,221,221,253, 24,159,207, 15, 38, 73, 18, 4, 65,128,197, 98,129, 36, 73,144, 36,105,125,207, 98,177, 64, 16, 4,202,203, -203, 31,101,100,100,244,179,227,122,205, 0,218, 18, 4,113,237,240,225,195,136,137,137,193,145, 35, 71,208,191,127,127,168, 84, - 42, 36, 37, 37,161, 71,143, 30, 64,197,148,162, 93,176,117,126,183, 12, 10,238,222,189,107, 21, 46,182,155, 88, 44,126, 18, 19, -251,217, 17, 35, 70,224,219,111,191,101, 42, 7, 19, 34,130, 32, 90,187,185,185,221,189,115,231,142, 93,126, 48, 12,195,192,104, -252,235, 84, 75,231, 85,233, 15,225, 80,114, 96, 22,139,213,175, 93,187,118,132, 74,165,178, 8, 72,176,217,108,176, 88, 44,176, - 88, 44,124,243,205, 55, 46, 29, 59,118,156,207,231,243,103,115,185,220, 82,147,201,180, 83,167,211, 45, 5,160,252, 55,181, 72, -221,187,119,127, 39, 43, 43,107, 96,112,112,240,193, 39,160, 97, 76, 38,147, 1,128, 11,139,197,226, 60,133, 54,138, 85,249,108, -233,108,196,190,185,114,159,143,138,105, 98,187,224,229,229,245,227,111,191,253, 22, 24, 28, 28, 12,147,201, 4,179,217, 12,181, - 90,141,132,132, 4,232,245,122,152,205,102,132,133,133,225,147, 79, 62,209,189,253,246,219,130, 77,155, 54, 21,170,213,234, 49, -245,208,190,189,103,207, 30,145, 76, 38,115,209,106,181,120,240,224, 1,218,181,107,135,178,178, 50,104, 52, 26,148,151,151,195, -104, 52,162,180,180,212,157,162, 40, 67, 61, 92, 31,219,138,172, 41, 83,166,220,226,241,120,237,102,204,152,129,236,236,108,107, -157,159, 60,121, 50,124,125,125,173,117,169,178, 77,118,168, 97,102,179,217,224,243,249,224,114,185,202, 70,141, 26,129, 32, 8, -193,163, 71,143, 26, 50, 21, 39, 1, 80,202,225,112,120,182, 2,139,207,231,227,226,197,139, 31,241,120,188,218,172, 89,181,213, - 75,198,145,253,127, 26, 4, 65,124,201,229,114,249, 82,169,148,107, 51,224,228,186,186,186,194,199,199,103, 29,128, 1,118, 94, -119, 27,169, 84,106,109,223,163,163,163,145,149,149,245,139, 74,165,122,189,176,176, 16, 36, 73,110, 39, 73,114,136,101,144,170, - 80, 40, 16, 20, 20,212,166, 54,190, 46,109,253,222, 4,193, 84,177,104, 85, 27,160, 65, 34,145, 32, 61, 61, 29, 26,141,134, 73, - 75, 75, 35,166, 78,157, 74, 24, 12,134,239,175, 94,189,250, 39, 42, 86,219,215,170, 69,158, 19, 56,238,163,101,177,104,217,219, - 1, 16, 4, 81,239,104,194,100, 50,185, 70, 69, 69,213,228,240, 69,212, 36,180, 42,167,147, 26,244,160,115, 56, 28,113, 67,197, - 86,117, 28,220,187,195,119,229, 39,115, 63,145,250, 55,110, 58,123,246,199,236, 65,131, 6, 93,216,182,109, 27, 37,109, 49,160, -207,169, 99, 63,248,126,245,222,156, 35,191,253,246, 27, 80,225, 24,109, 47,206, 30, 58,116,200,239,221,153,211,241,201,251,111, - 31,149,132,121,241, 92, 9,169, 72,160,215, 20,185,130,209,242,155, 69, 12,220,119,240, 96, 30,128,171,117,145, 8,133,194,224, -228,228,228, 48,219,133, 4, 6,131, 1, 66,161, 16,167, 78,157,242,118,113,113,241, 6, 0,173, 86,139,150, 45, 91,218,107, 49, - 9, 78, 77, 77, 13, 19,139,197, 40, 47, 47,135, 94,175,135,201,100, 2, 77,211, 32, 8, 2, 28, 14, 7, 60, 30, 15, 34,145,200, -209,149,125,215, 1,188, 22, 27, 27,251,211,145, 35, 71, 16, 21, 21, 5,133, 66,129,148,148, 20,139,200,114,200, 71,203, 98, 37, -178,245,199, 98,179,217,248, 49, 52, 20,147,115,115,173, 2,230, 75, 55, 55,124, 66, 55, 44,155, 70,203,150, 45,153,179,103,207, -226,232,209,163,120,229,149, 87,136,253,251,247, 27, 41,138,226,230,230,230,222,202,205,205,181,139,131,166,105,107, 89, 45,237, -182,173,192,114, 84,104,153,205,102, 49,143,199,131, 78,167,131,197,242, 96,187, 53,105,210, 4,114,185,156, 93, 90, 90,202,206, -205,205, 21, 46, 89,178,100,198,233,211,167,101,101,101,101,163,255,201, 86,104,195,134, 13,193,147, 39, 79,206,100,179,217, 76, -255,254,253,199, 62,122,244,232, 85,153, 76,118,242,143, 63,254,248, 28, 64,184,163,124, 94, 94, 94, 87,216,108,118, 96,105,105, - 41,119,247,238,221,166,178,178, 50,174,183,183,119,129,165,237,176,220,107,147,201,100,215,202,101, 47, 47,175, 43,197,197,197, -220,175,191,254,218, 84, 82, 82,194,245,245,245, 45,176,240, 40,149, 74,238,238,221,187, 77,165,165,165, 92, 55, 55,183, 43, 42, -149,170, 94,190,226,226,226, 49,227,198,141, 75, 60,121,242,164, 23,139,197,194,163, 71,143, 80, 82, 82, 2,119,119,119,108,223, -190, 29,193,193,193,216,179,103,143, 92, 46,151, 79,250,236,179,207,230, 87,138,172,250,124,180,122,196,196,196, 4, 43,149, 74, -184,187,187, 67,163,209,224,202,149, 43,136,140,140, 68,110,110, 46, 72,146,132,187,187, 59,214,175, 95, 95, 78, 16,132,188, 46, - 34, 23, 23,151, 87,227,226,226,220, 1, 32, 46, 46,206, 61, 46, 46,174,198, 14,174,115,231,206, 88,183,110, 93,117,161,229,200, -192,192,106,117,178, 17, 71,186, 78,157, 58,225,244,233,211,115, 28, 20, 71, 6,139,104,171,110,205,226,243,249, 14, 47,166,161, -105,154,139, 10,151, 6,194,158,253,127, 1,122,186,184,184,112,171, 31, 44, 47, 47,231,202,100,178,238, 14, 8, 95, 79, 23,151, - 10,131, 83,112,112, 48, 84, 42, 21,101, 48, 24, 70,253,240,195, 15, 38, 0,104,219,182,237, 40,138,162,116,102,179,153,197,227, -241,160,209,104,224,227,227,227, 89,135,109,244,131, 3, 59,151,248, 85,247,209,146,201,100,104,219,182, 45,244,122, 61,242,242, -242,144,144,144, 96,162, 40,234,167, 13, 27, 54,208,222,222,222,111, 12, 27, 54,140,117,245,234,213,183, 0,188, 83,155, 22,121, -206,172, 89,241,181, 10,173, 74, 5,121, 26, 64,175,234, 23, 89, 93,252,212, 37,180,234,155, 58,228,241,120,202,204,204, 76,145, -109,167, 98, 54,155,225,239,239, 79, 51, 12, 67,212, 36,180,158,196, 20,204,225,112,196, 31,126,248,161,114,195,134, 13, 99,210, -211,211, 23,216,243,157,221,111, 69, 96, 91, 53,145,181,113,229,162,117, 95,175, 92, 34,189,127,244,123,108, 94,187,154,162, 40, - 92,109,213,170, 85,119,181, 90,205,118, 19,153, 80,172,196,145, 74,145,101,175, 40, 36, 1,124,119,233,210,165,171, 3, 6, 12, - 56,247,221,207,251,164,185, 15, 30,252,201, 47, 45,206,147, 52, 11, 99,115, 3,130,135,148,233,116,220, 81,163, 70,121, 3, 24, - 86, 95, 35,166, 84, 42,145,159,159, 95, 93,128,225,238,221,187,143,157,107, 87,225, 72, 18, 20, 69, 97,239,222,189, 16, 10,133, - 16,137, 68, 85, 54,139,200,106,224, 66,133, 84, 0,232,223,191, 63,228,114, 57, 92, 93, 93,237, 46, 87,117,241,194, 48, 12, 12, - 6, 3, 12, 6, 3,140, 70, 35, 5,128,195,102,179, 49, 49, 59,219,106,229,113, 68,192, 84, 71,171, 86,173,152,243,231,207,227, -220,185,115,208,104, 52,248,250,235,175, 33,147,201, 94, 0,240,177,163, 92, 54, 78,250, 84,105,105, 41,167,180,180,212,106, 29, -228,112, 56, 86,235,129,157,150, 60, 46,155,205,182,142, 70, 45,155,173, 85,139,197, 98,193,215,215, 23,126,126,126,216,184,113, - 35,183,113,227,198, 3,255,201, 22,104,213,170, 85,205,190,252,242,203, 45,219,182,109, 59, 50,102,204,152, 93, 73, 73, 73, 19, -220,220,220,110,157, 58,117,106, 9,159,207,167, 27, 88,191, 3,115,115,115,125,108, 15,209, 52, 45, 52,155,205, 86, 97, 91, 94, - 94,110,247, 0,131,195,225, 4, 38, 39, 39, 11, 1, 96,201,146, 37, 28, 0, 66,139, 51,184,133,179,188,188,156, 19, 25, 25, 25, -104,239,179,158,152,152,216,189,111,223,190,231,143, 31, 63,238, 17, 28, 28,140,156,156, 28,228,228,228,160, 89,179,102, 88,182, -108,153,166,180,180,180, 43,128, 84,181, 90,189,223, 78, 78,127, 15, 15, 15, 78,102,102, 38,204,102, 51,218,180,105,131,245,235, -215, 99,212,168, 81,104,217,178, 37, 74, 75, 75,145,156,156,140,173, 91,183,122,112,185,220, 58,219, 14,173, 86,187, 63, 62, 62, - 62,168,186, 69,107,236,216,177,162,130,130, 2,235, 51,185,104,209,162, 42, 83,136,142,180,201,149, 83, 91,181,110, 13,129,217, -108,150, 8, 4,130, 82, 62,159,207,179,248,103, 37, 36, 36, 56,108,205,170, 54, 0,116,100,255, 31,131, 69,180,214,208,183,194, -207,207,207,110, 30, 62,159, 79, 88,218, 70,179,217, 12,149, 74, 69,201,100, 50,235,244,254,181,107,215,168,144,144, 16,138,197, - 98,177,120, 60, 30, 8,130,128, 80, 40,172,181,193,103, 40,102,209,160, 81, 31, 87, 89,117, 56,235, 67,192,104, 52,226,218,181, -107, 48, 26,141, 72, 72, 72, 48,125,246,217,103,185, 74,165,114, 22, 0,246,177, 99,199,198,205,153, 51,135,229,227,227,211,183, -176,176, 16,245,105,145,231, 72,108, 61,102,229,178,244, 66,167, 7, 14, 28, 72, 84, 46,173, 36, 44,194,201, 17,161, 85, 89,249, -234,237,121, 9,130, 64, 94, 94,158,117,223,199,199,199,225,223,178, 23,158,158,158,154,206,157, 59,139,139,139,139,247,175, 90, -181,170, 65,150,172,141, 43, 23,173, 91,190,248, 83,169,252,206, 5,100,231,230, 65, 94,104,186,122,246, 86,250, 47, 0,126, 1, - 0,108,106,113,154,120, 51,229, 27,123, 57, 35,188, 92,162, 57, 92,246, 47, 47, 14, 24, 24, 52, 50,238, 29,114,218,180,105,221, -198,141, 27,167, 26, 51,102,204, 76, 87, 87,215,112,163,209,168,216,119,248,112,198,200,145, 35, 27, 83, 20, 53, 14,245,196, 28, -209,106,181,143,122,245,234,101,123, 63, 37, 39, 78,156,240,205,200,200,192,244,233,211,139,114,114,114,148,182,231,218, 83, 70, -163,209,248, 40, 58, 58,186,214,233, 66,203,148, 34, 0,148,149,149, 61,114,224,150,142, 70,165,227,123, 73, 73, 9,238,222,189, - 11, 54,155,141, 78,157, 58,225,236,217,179,232,214,173,219, 53, 71,172, 90, 58,157, 14,193,193,193,208,233,116,208,104, 52,229, - 0,248,219, 27, 55, 6, 0,188, 85, 82,130, 43,159,125,134, 11,203,151,195,246,121,182, 23,173, 91,183,102, 46, 92,184,128, 91, -183,110, 65,175,215, 99,210,164, 73, 0, 64, 84, 62,187,142,132,204, 8,101,177, 88,253, 7, 12, 24,224, 15, 0, 26,141,134,184, -116,233, 18, 4, 2,129,181, 46, 28, 60,120, 16, 57, 57, 57, 32, 8, 2, 30, 30, 30,129, 10,133,162, 49,128,244, 58,204,254, 68, -122,122, 58, 86,172, 88, 1,154,166, 49,103,206, 28,132,133,133, 89, 5,214,163, 71,143,176,100,201, 18, 80, 20,133, 79, 63,253, - 20,205,154, 53,131,201,100, 18,160,129, 33, 52,158, 6,222,125,247,221,251,191,252,242,203,145,172,172,172,151, 87,174, 92,217, -147, 32, 8,122,246,236,217, 43, 36, 18, 9,245, 36,188, 10, 85, 25,238,222,123,100, 21, 66,213, 55,111, 47,169,195,124,105, 15, -178,172,223,167, 40, 91, 62, 10,158, 82, 15, 71,139, 88,110, 50,153, 52, 67,134, 12,113,223,187,119, 47,209,172, 89, 51, 60,124, -248,208, 98, 25, 42,135,227, 33, 29,114,228,114,121, 24,139,197,226,222,187,119, 15, 33, 33, 33,136,137,137,193,210,165, 75, 81, - 92, 92, 12,179,217, 12, 31, 31, 31,218,100, 50, 93, 51, 26,141,103,234,225, 90, 52,101,202, 20, 46,128, 55, 43, 45, 91,173,102, -205,154, 69,175, 94,189, 26,215,174, 93,179, 90,176,108,157,225, 29,157, 58,180,181, 58,217,110, 9, 9, 9,115,120, 60, 30, 3, -224, 34, 28, 15,244,108,168,110,209,106,136, 53,235, 89,225, 89,174,100,148,201,100, 9, 98,177,120,160, 66,161,168, 98,213,234, -218,181,171,209,215,215, 55,209, 94, 30, 87, 87, 87, 5,139,197,242, 4,128,156,156, 28,136, 68, 34,238,131, 7, 15,150,163, 34, -120, 54, 26, 55,110,188, 92, 46,151,115, 27, 87,182,167,126,126,126, 48, 24, 12,181,186,177,252,121,189,224,123, 0,223, 91,246, -165, 82,105,158, 74,165,114, 89,189,122,181,122,249,242,229, 90,138,162,244, 0, 78, 41,149, 74,107, 28,173,252,252,124, 21,135, -195,145,186,187,187, 7, 88,132, 86, 77, 90,228, 57, 67,237, 22,173, 74, 37,201, 84, 23, 68, 4, 65, 60,230,160, 94,143,208,170, - 87,100, 81, 20, 85,197,202, 96,113,120,175,233,183, 42, 59,245, 6, 77, 29, 86,138, 44,193,190,125,251,182,175, 90,181,234,162, -189,223,179,245,209,218,244,249,226,149, 22,145,117,243,220,113,236, 79, 81, 21,207, 89,190,230,203,134,254, 3, 45,188,132,173, -125,125, 61, 79,127,182,108,145,228,254,209,173,216,181,233, 11,230,230,229,203, 29, 47, 95,190,252,250,244,233,211, 27, 85, 62, - 88,114, 0, 55, 0,140,132, 29,171,116,114,114,114,250, 85,235,132, 83,185, 92,174,175, 80, 40, 68, 78, 78,142, 58, 45, 45,205, -225, 41,153,226,226,226,126,207,224, 1,100, 91, 68, 86,113,113, 49,146,147,147,209,187,119,111, 0,192,217,179,103,209,181,107, - 87, 92,189,122, 21,237,218,181,187, 6,160, 3,234, 9,212,106, 50,153,148, 45, 90,180,176, 90,183, 84, 42, 21, 13, 0,113,121, -121,136,151,201,192,102,179,113, 97,249,114,204, 51,153,176,212, 65, 1, 31, 29, 29,205, 92,186,116, 9, 25, 25, 25, 48,155,205, - 24, 60,120, 48, 26, 88,233, 91, 70, 68, 68,156, 56,117,234,148,183,171,171, 43, 52, 26, 13,212,106, 53,198,143, 31,143, 81,163, - 70, 65,175,215, 99,247,238,221, 56,112,224, 0,196, 98, 49, 52, 26, 13, 52, 26,141, 71,108,108,236,249,212,212,212, 30, 0,238, -213, 34,180,152,126,253,250, 33, 49, 49, 17, 44, 22, 11, 29, 59,118, 68, 73,201, 95,139,129,124,125,125,107,250,140,245, 79, 10, - 45, 54,155,205, 36, 36, 36,172,236,217,179, 39,178,178,178, 94,110,215,174,221,215, 19, 38, 76,200,121, 82, 94, 15, 55, 49,162, - 35, 67,161,215,235,161,215,235,225,239,239,143,178,178, 50,220,191,127, 31,122,189, 30,190, 62,238, 14,243,181,109,217,204,202, -231,227,227, 3,141, 70,131,244,244,116, 24, 12, 6,120,121, 57, 36,180,130,250,245,235,247,199, 79, 63,253,228,185,117,235, 86, - 67,175, 94,189,120, 95,127,253, 53, 33,145, 72, 96,211,177, 56,138,132,179,103,207, 6,247,237,219,183,249,157, 59,119,144,144, -144, 0,131,193,128,182,109,219, 34, 45, 45, 13,157, 59,119,134, 90,173,190,120,249,242,229, 3,246, 24,134, 1,204,159, 50,101, - 10, 44, 98, 43, 49, 49, 17,121,121,121, 16,139,197,143, 9, 45,139,239, 99,229,170,113,127,123, 10,107, 17, 68, 54,150,167,121, -238,238,238, 70, 0, 95, 54,208,250, 4, 0,200,202,202,226,183,106,213, 74, 47, 16, 8,120,149,162,109,205,147,240, 61, 77, 60, -133,149,140,181,194,207,207,111,150,151,151, 87,223, 38, 77,154,160,160,160,128,203,227,241,208,181,107, 87, 99,135, 14, 29,140, -126,126,126,111,217,203,195,231,243,239,112,185,220, 30, 21,131, 9, 10,153,153,153, 96, 24,102, 78,203,150, 45,223, 46, 43, 43, - 67, 73, 73, 9, 79, 34,145, 88, 7,213,205,155, 55,135, 94,175,191,227,128,229,109, 81, 72, 72,200,124, 46,151,187,180,184,184, -184,166,176, 16, 60,119,119,119, 9,151,203,133,209,104,172, 34, 54,171,107,145,231, 93,100, 85, 17, 90, 54, 42,178,138,208,113, -196,162,101,143,213,192,226, 96,111,187,111, 17,117,213,127,171,161, 49,180,220,220,220,244, 22,145,181,116,233,210,139, 13,225, -216,243,211, 15, 50, 55,186, 60, 40,247,226,111, 72,189,117, 21,191, 36, 43,139,231, 44, 95, 51,115,208,176,209, 5,213,133,153, - 61, 8,243, 22,182,244,245,241, 60,253,249,170,229, 18,249,157, 11,200,203,207,199,111, 23, 47, 95, 53, 2,201, 0,230, 60, 77, -211, 50, 80, 49,117,200, 98,177,254, 77, 15,172,213, 25, 62, 47, 47,207, 34,178,218, 2, 64,183,110,221,174, 85,138, 44,216,107, -209, 82, 42,149,213, 83,214,244, 5,224,101,185,126, 54,155,141,174,243,231, 59, 44,178, 0, 48, 87,175, 94,133, 92, 46,183,140, - 20, 27, 42,178,224,231,231,247,254,169, 83,167,188,191,251,238,187,210,109,219,182,149,208, 52,205,137,142,142, 14,108,223,190, - 61,177,125,251,118, 0,192,200,145, 35, 49,103,206, 28,220,190,125, 27, 34,145, 8,221,186,117,163, 22, 44, 88,224, 51,107,214, -172,183, 10, 10, 10,102,214,216, 59,210, 52, 87, 32, 16,156, 4,240,194,157, 59,119, 0,224, 60, 42, 82, 56, 89,172, 8,181,126, -102, 79,231, 91, 86, 86,198, 17,139,197, 53,134,134,224, 86,140,134, 28,181, 64, 88, 57,207,157, 59,183,226,243,207, 63,255,229, -189,247,222,187,247,132,156, 53, 90,180, 6, 14, 28, 8,173,222,136,236, 2, 21, 40,202, 12,173,177,208, 97, 62, 91,139,214,192, -129, 3, 81,174, 51, 32, 51, 79, 14,179,153, 66,153,214,238,190, 92,248,226,139, 47, 30,219,185,115,167,223,159,127,254, 9,138, -162,232,180,180,180,244, 33, 67,134, 72,102,207,158,237,249, 4,139,140,214,142, 30, 61,122,248,185,115,231,228,205,155, 55,151, - 94,188,120, 17,133,133,133, 48,155,205,120,225,133, 23,192,227,241, 50,151, 47, 95,206, 5,176,214,222,255,166, 82,108, 25, 47, - 95,190, 60,249,194,133, 11, 82,169, 84,202,163, 35, 34,144,119,252, 56,246,238,221,251,216, 23, 54,109,218, 4,216, 25,133,223, - 98,113,186,116,233,210, 83, 17, 88, 85,122,106, 30,175,193,211,143,207, 43, 46, 93,186,148, 51,109,218,180, 72,137, 68,242,101, -247,238,221,123,123,122,122,146, 30, 30, 30, 9, 1, 1, 1,111, 71, 71, 71,219, 61,187,192,225,112, 38,136, 68,162,251,102,179, -153,165, 86,171,161,209,104, 42, 26,105,179,153, 71,146, 36, 26, 55,110,108,237, 75, 58,118,236, 8, 63, 63, 63, 42, 37, 37,101, -130,189,252, 69, 69, 69, 85, 86, 33,214,128, 41, 93,187,118,101,235,245,122,100,100,100,156,181,253,160, 38, 45,242,156, 32,174, - 78,241,101,185, 40,219,139, 11, 8, 8,200, 50,153, 76, 76, 50,192,220,184,113,131,137,139,139,171,115,211,233,116,140,143,143, - 79, 94, 13,157, 31,108, 57,245,122,125,149,239,233,245,122,198,215,215,151,210,106,181,143,113,106,181, 90, 38, 48, 48, 48,167, - 46,206, 26, 48,254,250,245,235, 27,230,205,155, 23,227,192, 13,178,114, 50, 27, 35,152,173, 91,183,254,143, 97,152,158,221, 35, -131,111,141,136,246,101,186,134,249,228, 30,216,243,211, 40,134, 97,122, 86,223, 44, 1, 78,235,226,140,240, 21,181,232, 19,213, - 72,113,243,232, 14,230,212,234, 25,204,231,131,195,152,118,129, 98,101,132,151,139,163, 57, 98,234,205,150, 30, 21, 21,149, 74, -211, 52, 99, 48, 24,152,168,168,168,180,167,193,217, 0,212,197,217, 6, 21,190,108,163,107, 56,214,230, 9,202,121,147, 97, 24, - 70, 46,151, 51,106,181,154,209,235,245, 12, 69, 81,140, 45, 0,220,180,131,147, 49, 26,141,140, 66,161, 96, 96,191,207, 93,141, -156, 50,153, 44,253,193,131, 7, 76,211,166, 77,179, 42,205,241,179, 52, 26, 13, 83, 29, 26,141,134,233,221,187, 55,147,150,150, -198,132,132,132,232,210,210,210, 24,153, 76,118,183,158,114, 54, 9, 10, 10, 58,233,229,229,149, 0, 32,204,129,207,234,188,159, -187,119,239, 14,101, 24,102, 18,195, 48,113,181,108,147, 24,134,137,248,167, 57, 43,239,111, 1,195, 48, 76,121,121, 57, 35,151, -203,153,220,220, 92,166,188,188,156, 81,171,213,204,245,235,215,153, 63,255,252,147,185,117,235, 22, 35,149, 74, 11,236,225,180, -240, 25, 12, 6,166,180,180,148, 41, 44, 44,100,180, 90, 45,163,209,104,152,164,164, 36,230,202,149, 43,204,157, 59,119,106,226, -123,140,211,211,211,115, 83,126,126,190,250,252,249,243,229, 27, 55,110, 44,247,243,243,187, 3, 32, 24, 64,184,135,135, 71,254, -140, 25, 51, 24, 87, 87,215, 71, 13,172, 71,145, 28, 14,231,250,202,149, 43, 47, 29, 58,116,168,224,192,129, 3,134, 45, 91,182, -100, 79,159, 62,253, 12,155,205,190, 14, 32,178,129,245,200,199,221,221,253,252,197,139, 23,205, 10,133,130, 81, 42,149, 76,105, -105, 41,163,209,104, 24,173, 86,203, 24, 12, 6,198,100, 50, 49,103,206,156, 97,124,125,125,109,167, 37, 63,168, 99, 96,253, 14, -195, 48,239, 51, 12,195,126,218,109,157, 13,119,247,167,197,249, 52,218, 58,146, 36,141,149,109, 71,167,138,221,186,247,255,169, -114,246,233,211,231,211, 81,163, 70, 49,253,251,247,103,218,182,109,251,216,214,174, 93, 59,102,234,212,169,204,161, 67,135,152, -207, 62,251,236,211,167, 80, 78, 54, 42, 22,189, 44,235,211,167,143, 41, 49, 49,145, 25, 57,114, 36,242,123,114, 48, 0, 0, 32, - 0, 73, 68, 65, 84, 3,160, 95, 93, 90,228,191, 32,184, 44,225, 29, 8,219, 87, 0, 48, 26,141, 89,169,169,169,178,230,102, 51, - 11, 0,190,249,230,155,199, 44, 83,182, 72, 76, 76, 52, 19, 4,113,191,174, 95, 55, 26,141, 89,167, 78,157,242, 93,183,110, 29, -199,198, 4, 12,179,217, 76,231,230,230,146, 95,127,253,117,149,243, 79,159, 62,109, 54,155,205,153, 14, 94,228,214, 54,109,218, -108,125, 26,119,235,204,237,140,183,143,253,246,171, 87,167,152,238, 74,137, 84, 90,227, 40,108,247, 91, 17, 32,222,172,219,170, - 69,176,201,165, 43,151, 45,114,183, 76, 65,254,124, 45, 95,169,211, 83,189, 83,138,181, 55,159,246, 63,172, 86,171, 51, 44, 43, - 1, 53, 26, 77,230,191,240, 33,188,142,138, 24, 87,230,106,199, 58,224, 9,157, 78,105,154,134,155,155,155,213, 26,218, 0,139, - 40, 99,177,176, 90,254,186, 39, 41, 15,195, 48,231,146,146,146, 66,198,143, 31, 47,222,182,109,219, 3,138,162, 56, 19, 39, 78, - 52,250,249,249,113,207,158, 61,107, 2, 64,244,236,217,147,157,159,159,207,228,228,228,200, 95,121,229,149,178,201,147, 39,123, -222,184,113,131, 71,211,116,125, 65, 11, 31,102,101,101,245,105,192,103,117, 98,196,136, 17, 15,240,228,105,108,158, 57,167, 5, -114,101, 41, 30,100,228, 84, 70, 48,167, 65, 61, 42,176,250, 85,153, 76,102,200, 75, 75, 28,182,104,221, 79,207,169, 76, 49, 70, -129,162,114, 43,249, 42, 28,226, 25, 69,121,253,189, 9,155,221,109,193,130, 5, 3, 72,146, 36, 47, 92,184,160, 95,181,106, 85, - 86, 81, 81,209, 96, 0,153, 0,160, 80, 40,122,109,221,186,245, 71, 59, 66, 57,212,134,100,147,201,212,249,131, 15, 62,152, 9, -160, 27,128, 70,149,220,103, 43, 45, 89, 13,141, 96, 94,168, 84, 42, 95, 26, 48, 96,192,113, 22,139,213,216,166, 30,121, 1, 40, -182,212, 11,134, 97,124, 10, 10, 10, 94,182,135,144, 32,136, 53,207,170, 33,121,150,220, 79,216, 14, 61, 23, 43, 25, 79,158, 60, -185,112,240,224,193,236,224,224,224,143,130,131,131, 73,133, 66, 1,181, 90, 13,146, 36,225,231,231,135,168,168, 40,248,249,249, -209,119,238,220, 89, 54,119,238,220,122, 99,242,181,104,209, 34,212,100, 50, 53, 37, 73, 50, 20, 64, 40,195, 48,161, 4, 65,132, - 2,144, 2,128, 68, 34,145,132,132,132,176, 59,117,234,132,152,152, 24,156, 62,125, 26,123,246,236,249, 30,192, 49, 91,107, 86, -117, 45,242,111, 64,114, 27, 48,145,215, 65,220,110,135,158, 4,141,211, 12,137, 94, 81, 87,173,113,246,170,139,172,218,147, 74, -215, 96,250,235,247,194, 11, 47, 88, 43,156, 29,157, 74, 70,125,149,175,168,168,168,223,132, 9, 19,170,112, 82, 20,165, 47, 41, - 41,153,214,165, 75,151,245, 44, 22,139, 95,237,129,125, 84, 88, 88,248,183,230,234,171, 30, 71,171,223,128, 87,139,159,148,211, -149, 75, 54, 77, 61,252, 45, 10, 10,139,241,243,181,124, 69,153,129,234,149, 86, 92,158,244, 44,202,255,232,209,163,254,207,129, -226,175, 73,180, 62,105,242,236, 34, 59, 2,146,214,151,163,142,168, 12, 39,242, 84, 42,121,126,126,254,234,249,243,231,191,180, -108,217, 50,239, 35, 71,142, 72, 44, 3,148,161, 67,135, 22, 38, 37, 37,117, 7,192,215,233,116, 39,150, 45, 91,230,189,104,209, - 34, 79, 0,158, 0, 16, 27, 27, 91, 80, 80, 80,176, 14, 78,212, 9,147,201,148, 29,213,162,185,117,224,103, 27,210,193,246,189, -217,108,206,118,132,175, 38, 30,219,125,138,162,234,228, 99,177, 88,239,197,196,196,176,222,123,239,189,130, 35, 71,142, 88, 18, -233,218, 42,180,212,122,130,146,218, 3, 61,128, 85,149,219,211,132, 70, 46,151,119,118,240, 59,148,243,105,172,113, 64,233,200, -254, 63,130,253,251,247,127, 60,114,228,200,173, 82,169,244,135,208,208,208,230,190,190,190, 18, 23, 23, 23,232,245,250, 50,131, -193,112, 55, 53, 53,117,204,199, 31,127,252,208, 46, 11,199,214,173, 44, 0, 92,154,166, 5, 36, 73,138, 0, 72, 8,130,240,176, - 8, 45,130, 32, 96, 52, 26,145,145,145,129,121,243,230, 81, 39, 79,158,252, 12,192,167, 14, 12, 92, 59, 0,240,182,105,199,189, - 1, 24, 80, 17,192,182,136, 32,136,203,207,250,126, 17, 52, 78, 71, 94, 7,145,220, 6, 53,245, 19,117, 39,149,174,173,194, 21, - 21, 21,117,126,218,149,184, 54,206,162,162,162,224,127, 75, 13, 25,167, 95,181, 3,155, 86, 85,201,115,104, 17, 97, 53,237,215, - 7,149,214, 60,125,237,177,219,171,245,102,134, 54,154,233, 55,210,138,202,147,157,237,208, 83,199,139, 79,171, 46, 61,197, 50, - 37,165,164,164,116,153, 62,125,250,199, 66,161,176, 35, 0,148,151,151, 95,200,205,205, 93,140,202, 85,133,245,125,238, 68,237, - 40, 46, 46,110,255,111,228, 51, 24, 12,111,119,233,210,229, 43,138,162, 62, 55,155,205,103,255, 31,252, 21, 58,231,211,248,252, - 98,215,174, 93, 15, 1,116, 6,128,225,195,135,179, 0, 96,207,158, 61, 14,139,231,241,227,199, 83, 12,195, 24, 43,159, 7, 13, - 42, 86, 23, 42, 44,109,170, 70,163, 81,228,230,230,222,161, 40,234, 14,128, 31,225,248,138, 91,111,130, 32, 14, 49, 12, 51,176, - 82,184, 29, 98, 24,102,160,237,177,103,109,213,170,231,148,250,157,225,157,168,192,158,100, 16,213,167, 2,235,219,175, 15,169, - 5,154, 4, 0,237,156,119,247,255, 37, 30,228,230,230,142,123,130,207,157,120,254,144,105, 48, 24, 6,255, 63,186, 94,149,243, - 47,255,143,244,127, 13, 16, 88, 22,220,185,115,231,153,185, 8,252,211,136,188, 94,117, 0, 94,125,223, 6,113, 53, 9, 47,167, -208,114,194, 9, 39,156,112,226, 73,160,116,222, 2, 39,254,203,176,248,102, 89,246,107,241,209,170,238,159,101,221, 39, 80,251, -202, 1, 71,178,146, 55,100,149,196, 9, 39,167,147,211,201,233,228,116,114,254,227,156,238, 0, 66, 0,172,172,231,188,234,171, - 11, 11, 0, 20, 3, 48, 57,239,167,147,243, 9,244,131, 93, 96, 24, 38,182,174,169, 67,130, 32, 14, 63, 43,161,101,117,134,111, -131, 5, 81,215,177,192,178,111,175,208,122,214,232,235,228,116,114, 58, 57,157,156, 78, 78, 39,167,147,211,201,249,132, 66,171, -247,220,185,115, 63, 68, 69,104, 12,102,238,220,185, 31, 50, 12, 19, 91,241, 17, 19,251, 44,127,251,118, 59,244, 76,110, 3,198, -178,221,110,135,158,181,156, 26,103,179, 89,225,156, 58,116,194, 9, 39,156,112,194, 9, 39,254,237, 56,191,124,249,242,242,229, -203,151, 91, 28,223,139, 0, 16,149, 22,174,162,103,249,195,149,211,132,246, 44,148,170, 59, 5,207, 63, 0,127,146,205, 29,203, -225,242,123,131,161,163, 0, 0, 36,235, 54,101,208,253, 97, 54, 27,127, 0,144,219, 80,226, 8,160, 69, 51,119,151, 3,122,138, -226,102,149, 25,134,167, 84,164, 57,112, 24,195,129,174,124, 30,239,119,190,187,187, 75, 77,159,235,149, 74,173,222, 96,120,105, - 15,112,206, 89, 7,156,112,194, 9, 39,156,120, 78, 32,242,240,240, 56, 73,146,100,176,229,128,109,220,193,234, 49, 8, 41,138, -202,147,203,229, 47,161, 98,170,248,239,228,180,253,190, 1, 13,236,203,159, 54, 28,157, 58,100, 3, 85,162,176,254, 45, 25,179, - 89, 28,254,100,177,155,251,210,255, 77,120,219, 51, 44,188, 57, 17, 20, 20, 0, 48, 64,102, 86,182,239,253,123,105,125,118,109, - 91,251,110,169, 74, 62,207,164,215,127,235, 40,119, 11, 64,212,200,149,127,246,219,185,175,185,179, 97,198,232, 37, 63, 29, 37, -212,198,160, 59, 21,203, 77, 29, 18, 89,238,158,158,199,150,159, 56,225,226,209,186,117,149,207, 24,134,169,200,175,119,243,166, -203, 71, 47,189,116,108,184, 92,222,207, 41,182,254,147,240,147, 72, 36,179, 56, 28, 78, 47,163,209, 24,204,227,241,178, 40,138, - 74, 80, 40, 20, 95, 2,200,113,222,158,255, 54,154,251,137,186, 55, 15, 13,254, 41, 55,191,224, 90,169,206, 48, 49, 53, 87, 45, -119,222, 21,135, 81, 87,126,205,127, 44,247, 38, 0,184,186,186, 94, 33, 73, 50,208, 86, 4, 88,114,246, 90,246,171,191,210, 52, -253, 80, 46,151,119,169,131, 54, 84, 42,149,174, 7,208,161,190,128,201,149,177,217, 46,203,229,242,105,168,125,181,158,216,195, -195, 99, 33, 65, 16, 35, 72,146,100,213,119, 77, 52, 77, 83, 12,195,236, 86, 40, 20,159, 2, 40,171,237, 60, 15, 15,143, 19, 41, - 41, 41, 29,124,124,124,234,181,210,152,205,102,100,102,102,122,119,236,216,241,140, 92, 46,143,120,150,156,127,183, 22,105, 40, -234, 88,117, 88,235,131, 14,160, 74,126,161,103, 26,145,149, 43,112, 61,208,185, 71,191,222, 83,103,190, 39,186,158,116, 23,191, -159,254, 19,165, 26, 61, 88, 36, 9,119,177, 16,225,225, 77,137, 53,241,123,189,190,223,184,230,243, 11,137,199, 99,117, 26,213, - 43, 14,201,116, 33,123,222,156, 33, 29, 69,158, 82, 10,160, 41,188, 63, 32, 90,244,209,161,107,243, 80,110,254,208, 97,145,117, -242,164,176,176,160, 0,139,252,253,193, 54,155, 33, 32, 73, 8, 8, 2, 2,146,132, 72, 32, 64,255, 45, 91,176,248,200, 17,225, -199, 47,191,236, 20, 91,255, 49,184,186,186, 78,240,247,247, 95,181,121,243,102,207, 38, 77,154, 64, 36, 18, 65, 46,151,123,165, -166,166,182,121,231,157,119,198,229,229,229,205, 47, 45, 45,221,228,188, 83,255, 93,208, 52,198,126,183,116, 90, 64,222,163,123, - 1, 83,150,237, 8, 39, 60,169, 94,119, 75,180,249,206, 59, 99, 55,218, 0,184,134,154,243,151,214,245, 89,173, 16, 8, 4, 5, - 58,157,206,167,174,115,120, 60, 94,161,193, 96,240,173,143,139, 36,201,192,156,156, 28, 31,161, 80, 8,138,162, 42,179, 1,208, -214,129,180,109,246,147,202, 64,181,136,136,136, 48,214,197, 41, 22,139,191, 41, 44, 44,236,107,201, 19,104, 35,168,106, 68, 78, - 78, 78,223,200,200,200,111,202,202,202, 94,170, 69,188, 44,156, 57,115,230,172,150, 45, 91, 90,172, 64,149, 89, 16, 42, 94,139, -139,139, 49,125,250,116,235,111,208, 52,141,227,199,143,207,156, 48, 97, 2, 20, 10,197, 59,117, 92,123,176,143,143, 15, 81,153, - 80,188, 86, 44, 88,176, 0, 11, 22, 44,192,218,181,107, 9, 14,135,227, 94,207,253,124, 42,156,127,151, 22,105,136, 5,171,158, -200,240,135, 81,213, 55,235,240, 99, 66,235,239, 0,139,195,127,163, 67,151,190,189,166,207,154, 35,218,241,235, 41,164,222,185, -137,148,179, 59,171,156,211,254,165, 9,200, 47, 46,195,132,169,239,187, 18, 44,118,175,196, 19,251,223, 48,233,181,223,217,105, -205,242, 13,230,243,102,116,234, 24,197,201,113, 73,133,159,135, 11,186,181,107,198, 9, 58,118,107,134, 6,230,175,238, 84,172, -146,113, 72,100,109,126,237, 53,116, 55,153,224,195, 98,129, 69, 16, 96, 1, 32, 9, 2, 58,189, 30,151,199,142, 69,199,237,219, -241,233,193,131,194,133,131, 6, 57, 36,182, 68, 34,209,117,130, 32, 60,212,106,117, 44, 42, 18, 75, 63, 15,136,116,117,117, 61, -204, 48,140, 66,163,209,180,249, 23,149, 75,134,138, 57,250,234,163, 99, 46, 42, 86, 84, 57,148, 89,152,207,231, 79, 30, 62,124, -248,154,117,235,214, 9, 11, 10, 10,144,155,155, 11,138,162, 32, 16, 8, 16, 22, 22, 70,156, 56,113,194,115,206,156, 57,171, 15, - 31, 62,204, 47, 43, 43,251,202,145,129, 13,135,195,137,151, 74,165, 47,251,250,250,138, 10, 11, 11,203,149, 74,229,113,189, 94, - 63, 25, 13, 79,155, 66,114, 56,156, 49, 33, 33, 33,175,250,251,251,251,230,228,228, 20,103,103,103, 31,208,235,245,223,163,129, -137,154,109,238,105,107, 84, 70,171, 7,144, 23, 18, 18,114, 59, 35, 35,163,240, 41,114,230,134,132,132, 36, 55,128, 83, 4, 96, - 23, 0,255,122,206,203, 5, 48, 18, 14, 90,179,173, 55,150,161,127, 91,242,229,230,137,139,198,119, 35,190,123,167,111,216,155, -107, 79,252, 73,114,153, 30,119,242,116, 89, 78, 13,101,159,200,170, 76,105, 85, 93, 80,213,245, 89,157,208,235,245,222, 70,163, - 17,156, 90,146,197,107, 52, 26,136,197, 98,111,123, 11,233,226,226,130,157, 59,119,130,195,225,128,195,225, 64,161, 80, 32, 48, - 48,208,186,207,229,114,173,239, 27, 53,106, 84, 47, 31, 69, 81, 29, 89, 44, 22,212,106, 53, 40,138,178,110, 74,165, 18, 12,195, -128,207,231,131,162, 42,210, 57,217,124,222,177, 54, 62,130, 32, 70,248,251,251, 99,199,142, 29, 48, 24, 12,143,125, 46,145, 72, -144,148,244, 87,146, 17, 22,139,133,152,152, 24,146, 32,136, 17, 0,222,169,131,151, 1,128,184,184, 56,176, 88, 44,176, 88, 44, -144, 36,105,125,111,217, 40,138,194,130, 5, 11, 80, 45, 53,217,223,198,249,111, 67, 61,145,225,243, 80,139,143, 22,249,140,203, -101,187,196,211, 95, 40,146,172,152,246,246,251,174,135,207,220, 66,102, 86,230, 99, 34, 11, 0,174,252,254, 61,242,114,115,112, - 45, 37, 27, 99,222,120,203, 85, 34,113, 95, 81,173, 65,173,117,217,168,155,152,251,217,220,145,221, 4,106, 83, 46,202, 60, 0, - 86, 40, 15, 28,161, 6,115, 6,182,230, 75,196,220, 85,246,148,147,207,227,253,190,252,196, 9,171,200,234,170,215,131, 79, 81, - 48, 83,148, 85,100, 25,204,102,104, 13, 6,200,212,106,220,159, 48, 1,140,201,132,249,191,252, 34,228,243,120,191,219, 83, 78, - 0,224,114,185,178, 3, 7, 14, 52,106,213,170,213,105,216, 31,204,244,196, 51,254,143,234, 66,187,232,232,232,132,237,219,183, - 55,226,114,185,178,167,193, 41, 16, 8,134,137, 68,162, 34,129, 64, 48,172,129,229, 36, 1, 44,153, 56,113,226,213,166, 77,155, -158,170, 20, 86, 86, 81,211,180,105,211, 19, 19, 39, 78,188, 14, 96, 65, 45,207,122, 77,156, 1,254,254,254, 75,215,173, 91, 39, - 76, 75, 75, 67, 78, 78, 14, 76, 38, 19, 70,143, 30, 13,138,162,160,213,106, 97, 48, 24,176,114,229, 74,145,167,167,231, 60, 84, - 36, 10,182,231,218,185,110,110,110,105,219,182,109, 27,158,158,158,238,122,234,212, 41, 34, 41, 41, 73,180,122,245,234,193,158, -158,158,169, 0,248, 13,184,159,164, 76, 38,251,110,255,254,253,211,146,146,146, 2,247,237,219,199,185,112,225,130,108,227,198, -141,147,100, 50,217,118, 0,172, 6,254, 71,109,132, 66, 97,159,217,179,103,211,231,207,159,207, 57,127,254,124,206,154, 53,107, -208,189,123,247,174,139, 22, 45,106,219, 64,206,118, 98,177,248,133,217,179,103,211,137,137,137,185, 23, 47, 94,204, 94,189,122, - 53,249,194, 11, 47,116, 91,186,116,105,107, 7, 57,119,157, 63,127,190,103, 86, 86, 86,147,236,236,236,198,217,217,217, 33,217, -217,217, 33, 57, 57, 57,193,121,121,121,141,242,243,243,131, 10, 11, 11,131, 18, 18, 18,186, 1,248,201, 30,206,230,190,162,105, -239,140,238, 91, 62,239,141, 1,204,135,175,191,200,204, 25,221,147,121,185, 71,171, 95, 89,108, 54,113, 49, 57, 19,129,110,192, -247,211, 59, 4, 7,121,137,146,162,164,174,225,255,178,186,249,111,227,100, 91,132,148, 92, 46,199,225,195,135, 81,105,189,106, - 99, 43,178, 74, 75, 75,145,151,151,103,249,140,109, 79, 57, 37, 18,201,201,205,155, 55, 51, 58,157, 14, 42,149, 10,133,133,133, -200,202,202,194,253,251,247, 81, 82, 82,130,187,119,239, 66, 40, 20,158,180,167,156, 4, 65,128,162, 40,171,144, 58,126,252, 56, - 38, 78,156, 8,185, 92,110, 61,198,102,179,173,239, 45,223,169,143,211, 98,121,162, 40, 10, 23, 47, 94,196,148, 41, 83,176,102, -205, 26,252,244,211, 79, 56,116,232, 16,228,114,185, 85,108,153,205,230,122, 57,139,139,139, 65,211,246,141,153, 24,134,129, 74, -165,178,251,127,183, 21, 64,108, 54,251, 49, 81,100,217, 28,121,150,158,144,243, 95, 11, 59, 34,195,215, 62,194,182,188,169, 52, -213,245,122, 86,133, 36,217,220, 49, 35,198,207,244,204, 46, 44, 69, 78,129, 10, 44,242,175,126,175,109,223,241, 96,179, 72, 92, - 58, 86, 97,184, 34, 89, 44,168, 52,122, 40,213, 70, 12, 31, 63, 75,250,237,154, 79,198,152,141,186, 58, 99,188,180, 4,194,162, - 92, 93,135, 68, 70, 54, 34,239,240, 83,208,246,229,179,160,104,128, 73, 28,132, 54, 10, 31, 86,196,239,188, 33,154, 50,227,210, - 36, 32,173, 78,107,134,187,187,139, 71,235,214, 88,228,239,143, 30, 38, 19,184, 12,131, 23, 11, 10,112,115,214, 44,232,247,238, - 5, 9,128, 59,108, 24,122,127,249, 37,206,248,251,195, 79,171,133,242,221,119,225,125,244, 40,184, 18,137, 11,138,236, 91,252, - 64, 16, 4,122,245,234,133, 19, 39, 78,120,246,239,223,255,216,173, 91,183,134,154,205,230, 51, 13,185,183,110,110,110, 87,216, -108,118, 96,125,231,153,205,230,108,149, 74,229,112,154, 17, 54,155,221, 35, 38, 38,230,151,125,251,246,121, 24,141,198,167, 50, - 10,225,241,120,253, 7, 15, 30,188,121,195,134, 13,146, 73,147, 38,109, 62,116,232, 80,185,193, 96, 56,234,200, 35, 5, 96,201, -166, 77,155,222,140,139,139,115,159, 52,105, 18,115,255,254,125, 91,235,149,119,247,238,221,155,110,222,188,217,175, 67,135, 14, - 51,167, 76,153,194, 5, 48,191, 62, 43,143,171,171,235,212,205,155, 55,123, 21, 23, 23, 67,173, 86, 91, 27,217,236,236,108,184, -184,184,128, 36, 73,144, 36, 9, 14,135,131, 21, 43, 86,120, 78,157, 58,117,150, 92, 46,159,101,135,149, 44,126,253,250,245,222, - 47,189,244, 18,153,158,158, 14,146, 36, 33, 16, 8,240,218,107,175,145, 90,173,214, 99,209,162, 69, 91, 53, 26,205, 40, 71,238, - 33,135,195, 25, 19, 31, 31, 31,222,181,107, 87,118, 74, 74, 10, 58,119,238,140, 75,151, 46, 97,216,176, 97,156,178,178,178,198, -115,230,204,153,168,215,235, 29,141,227, 34, 19, 10,133, 45,255,248,227,143,172,160,160, 32,107,195,210,184,113, 99, 42, 54, 54, - 86,158,146,146,210,252,252,249,243, 37, 93,186,116,113, 36, 97,121,128, 80, 40,140,248,237,183,223,242, 22, 45, 90,212,103,211, -166, 77,131, 1,160, 99,199,142, 7, 22, 47, 94,124, 74, 46,151, 71,157, 57,115, 70,222,163, 71,143,108, 59,249,252,101, 50, 25, - 53,125,250,116,215,186, 78,218,178,101,139, 18, 21, 9,151,155, 0,168, 51, 95, 91,243, 16,191,121,171,102,141,112, 1,101, 4, - 99,210, 2,198,114,192,168, 6,109, 40, 7,193,117, 1, 76, 90,120,243,229,216, 53,181,185,228,131, 29, 15,238, 80,119,137,216, -148,226,178,163,112,162,198,166, 6, 64, 91,130, 32,174, 29, 62,124, 24, 49, 49, 49, 56,124,248, 48, 98, 99, 99,175,217,138,129, -164,164, 36,244,232,209, 3,149, 22, 45,187,124,181, 84, 42,213,220, 5, 11, 22, 36,142, 25, 51, 70, 88,165, 49, 32, 73,184,187, -187, 99,192,128, 1, 58,141, 70, 51,215,222,130, 82, 20, 5, 54,155,141,236,236,108,108,217,178, 5,203,150, 45, 67, 88, 88, 24, - 76, 38,211, 99, 98,171,178,221,179,171,241, 51,155,205,184,124,249, 50,126,216,190, 29,243,231,205,131, 88, 44, 6, 0, 24,141, - 70,200, 21, 10, 8, 4, 2,171, 24,171, 71, 56,237,190,119,239,222,172,192,192,192, 42, 83,134,150,215,202, 54, 11, 52, 77,195, -108, 54, 67,167,211, 97,205,154, 53,102,134, 97,118,215,215,255, 88, 68,209,172, 89,179,160,215,255,101, 80,111, 93,233,147, 28, - 18, 18,130,232,232,104,235, 62, 73,146,140,189,156,223,118,105, 9,173,205,217,205, 23,172, 6, 0, 4, 6, 6,162,121,243,230, -144,201,100,181,114, 62,107, 45,210, 16, 56, 16, 25,190,118,161,245,119,100,202,230,112, 5,189, 67,155,133, 19,153,121,114,176, -217,108,136,220,188,208,229,213,119,192, 98,145,112,117,247, 2, 65,105,255, 82,196, 36, 11,108, 22, 27,242, 50, 45, 66,154, 52, - 35,249, 2,151,222,154,122,132,150,196,141,179,126,246,168, 46,130, 18,115, 54, 92, 26, 9, 64, 89,186, 83,127, 30, 72,207, 50, -188,215, 63,204, 37,238,192,173,245, 80,153, 94,176,167,188, 44,179, 25, 62, 44, 22,140, 12,131,155,179,102,161,109,124, 60,174, - 89,132, 97,124, 60,174,197,197, 65,202,225,128, 79,146, 96, 76,166,199,230,244,237, 17, 90, 0,144,149,149,133,189,123,247, 74, - 71,140, 24,241, 75, 82, 82,210, 24, 7,197,134,133,203,235,226,197,139, 62, 77,154, 52,169,245,156,135, 15, 31,162,125,251,246, - 14, 79, 79,241,120,188,254, 47,188,240,194,142,189,123,247,186, 37, 39, 39,195,199,199,231,137,133, 22,159,207,239,209,183,111, -223, 29,219,182,109,147, 20, 21, 21, 33, 62, 62, 94, 50,104,208,160,159,174, 94,189,250,170, 94,175,183, 71,108, 86, 17, 89,241, -241,241,202, 45, 91,182,124,139,170, 83,132,121, 91,182,108,249,174, 67,135, 14,211,226,226,226,220, 1,188, 89,233, 59, 80,167, -216,226,243,249,189, 66, 67, 67,171,140,106,249,252, 10, 99,147, 72, 36,130,155,155, 27,184, 92, 46,244,122, 61,218,182,109, 75, -240,120,188,110,246, 92,179, 88, 44,238, 59,100,200, 16,242,236,217,179,200,207,207,135,187,187, 59, 92, 93, 93, 65, 81, 20, 38, - 77,154,196, 90,179,102, 77, 47,141,198,177, 25,174,160,160,160,193,125,250,244, 97,223,190,125, 27,233,233,233,208,235,245, 72, - 77, 77,133, 68, 34,193,235,175,191,206, 93,181,106,213,160,156,156, 28, 71,133, 86,203,184,184,184, 2, 91,145,101,129, 72, 36, - 34,194,195,195,229,158,158,158,237, 0, 56, 34,180, 90,190,245,214, 91,133,203,151, 47,239,113,226,196, 9,107,208,203, 19, 39, - 78,204, 1,128,175,190,250, 42,209,219,219,187, 29, 0,123,133, 22, 24,134,161,255,247,191,255, 61,226,241,120,224,112, 56,224, -241,120, 85, 54, 46,151, 11,146, 36,197,150,234, 92, 31,223,157,244,252,149,147,230,172, 94, 45, 18,176, 56,111,191,218, 10,141, -220,185,128,139, 20,220, 30, 31,128,112,175, 48, 90, 50,242,135,192,239, 31,224,243, 33,114, 50,238, 71,221,175, 70,202,195,251, -129, 66, 81,246, 15,247, 1, 29, 0,124,129,138,228,186,243, 0, 92,252,151,244, 77,215, 1,180,141,141,141,181,138,173, 35, 71, -142,160,127,255,254, 80, 42,149,184,125,251,182,173,200,114, 36,193,242,117,147,201,116, 99,231,206,157, 93, 70,140, 24, 65,216, -212, 47, 36, 39, 39,227,238,221,187,215,236,229, 35, 73, 18, 52, 77,131,195,225, 96,245,234,213, 48, 26,141,248,241,199, 31,177, -103,207, 30,144, 36, 9,130, 32, 64, 16, 4, 36, 18, 9,214,174, 93,235, 80,187, 71, 81, 20,182,110,221,138, 15,230,204,177,138, -172,202,153, 12,248,249,250,194,211,203, 11, 15, 30, 60,168, 87,104, 41, 20,138, 79, 15, 30, 60,136,186,156,225, 15, 30, 60,104, -125, 95,205, 25,190,254,126,142,197,130, 94,175,199,139, 47,254,149, 42,246,173,183,222,178,190,151,203,229, 96,177, 88,150,123, - 65,216,203,169,101,128, 87, 5,127, 29, 27,240,222,123, 85, 44,116,181,113,254, 29, 90,228,105, 89,183,106, 16, 91,109, 43,173, -179, 50, 0,177,168,240,209,202, 3,254, 70, 31, 45,134,161, 35, 2, 3,252,113,227,126, 18,216, 44, 22,120,110, 94,112,147,250, -130, 54, 27,160, 42, 76,199,233,125,223, 0, 0, 54,109,221, 13,146, 36,193,102,179,160, 55, 80, 8,107,228, 15,154,166, 35,234, -226,110, 1,116,233,229,235, 21, 19, 20,236, 78,220,246, 72, 71,184,143,103,181,137, 16, 62,194,114, 93,137,206,174, 46, 29, 21, -170,210, 46,119,128,243,245,138, 1,146, 4, 73, 16, 16,114,185,208,239,221, 91,225,181, 25, 95,209,103, 93,139,139, 3,249,235, -175, 16,243,249, 96, 17, 4,216,149, 38,232,134,160,180,180, 20, 4, 65,224,135, 31,126,240,120,253,245,215,127,186,125,251,118, -156, 78,167,219,235, 8,135, 82,169,140,237,218,181,235,169,173, 91,183,122,251,249,249, 61,246,121,126,126, 62,198,143, 31, 95, -164, 84, 42, 29, 10,234, 38, 16, 8,134, 13, 30, 60,120,243,247,223,127, 47,185,119,239, 30,212,106, 53,188,189,189,159,244, 81, -104,215,169, 83,167, 95,246,238,221,235,150,159,159, 15,149, 74, 5,189, 94,143, 31,126,248,193,125,192,128, 1,123, 83, 82, 82, -250, 3,184, 90, 15,199,199,182, 34,107,202,148, 41,183, 0,248, 0, 88, 95, 93,131, 86,126,214,202, 70,108,169, 0,172,170, 99, - 36, 26, 44, 18,137, 80, 88, 88,136,241,227,199, 35, 45,237, 47, 3,168,191,191,191,117,164,247,224,193, 3,120,123,123,131, 32, - 8, 31,123, 46,218,219,219,219,213, 96, 48, 96,226,196,137,200,202,202,170,194,153,157,157, 13,130, 32,132,142,222, 72, 95, 95, - 95, 95,173, 86,139,238,221,187, 67,167,171,200,235, 59,114,228, 72,112, 56, 28, 20, 22, 22,130,195,225,120, 53,224,255,241,138, -141,141,173, 53,180,138, 68, 34, 49,122,120,120,180,112,144,211,115,208,160, 65, 57,241,241,241,143, 45,108,185,116,233,210, 43, - 82,169,244,132, 84, 42, 13,119,144,147,182, 21, 85, 92, 46,183,138,208,226,112, 56, 32, 73,210,110, 31,181,180, 66,205, 58, 54, -145, 23,189,124,250, 75,227, 27,249,184,129, 81, 23,128,251,194,167,184, 81,228,130,213,107,126, 3, 0,188,255, 90,123,180,238, -187, 4,134,239, 95,194,172,206, 44,222,216,108,253,108, 0, 31,255,195,109,254,103, 0, 44,171,224, 54, 0,136,254, 23,245, 71, - 86,177,117,228,200, 17, 68, 69, 69, 65,161, 80, 32, 37, 37,165,161, 34,203,210,222,125,176,112,225,194,223,135, 14, 29, 42,178, - 12, 90, 93, 92, 92,240,127,237, 93,123, 84, 83, 87,186,255,157, 71, 66, 30, 4,194, 43, 32,136,200,104,173, 76,175,214, 22,209, -139, 35,171,234,200, 88,167,237,189,122, 45,213, 86, 17,103,164,168,181,171,183,216,233,114,185,250, 82,116,218,233,172, 58,234, -213, 90,229,138,181, 58, 90,107,213, 90,171,213,118,236,128, 58,245, 78, 21,107, 91, 40, 90, 81, 65, 20, 8,121, 72, 18,194, 33, -207,115,238, 31,228,196, 24,147,144,132, 19,197, 14,223, 90,123, 17,146,240,227,219,175,179,127,251,219,223,247,237, 37, 75,150, - 48, 29, 29, 29, 75, 67, 26, 68, 44, 11,154,166,221,155,100,169, 84,138,236,236,108, 55,201, 34, 8, 2,157,157,157,160,105,154, -143, 72, 36,130,212, 17,169, 3, 6, 32, 38, 38, 6,195,238,191, 31, 23, 93,207, 17,254,181, 68, 34, 1, 65, 16,112, 56,122, 52, -228,153, 92, 78,237,165, 66, 47,201, 60, 41, 10,104, 58, 78, 75, 3,203,178, 60,201,228,132,192, 76, 74, 74, 66, 71, 71, 71,176, -152,125, 82,252, 88,180,120,162,245, 56,186,125,181,110, 75,239, 48, 1, 64, 37, 34, 24, 82, 73,128, 35, 88,142, 3, 77,145,174, -179, 91, 10, 20, 69, 66,175,105,193,218, 55, 22,186, 72,214,199, 56,116,162, 14,233, 67, 71,220, 60,199, 37, 8,128, 11, 60,184, - 85, 74,113,249,162, 25,185, 50, 53,209,130,184, 52, 57,164, 82, 47,254, 24, 47, 6,145, 73, 98,241,196,116,249,233,131, 93,229, - 63, 26,108, 61, 46, 20, 82,146,236,118,126, 39, 8,159,206, 61,164,235, 51,138, 32,192,113, 28, 56, 54, 52,191, 99,158,200,203, -100, 50,216,108, 54, 80, 20,133,245,235,215,199,229,231,231,111, 12,149,104, 1,168, 85,171,213,143, 21, 23, 23,127,190,103,207, -158,164,164,164,164, 91,118, 15,197,197,197, 90,181, 90,253, 24, 66,116,186, 23,137, 68, 27,223,123,239,189,216,134,134, 6,116, -118,118, 66, 38,147,185, 31, 62,225,142,207,177, 99,199, 30, 61,114,228, 72,188,193, 96,128,205,102,131, 76, 38, 3,199,113,160, - 40, 10,187,119,239, 78,124,226,137, 39, 14, 95,189,122,245,215,129,116,149,201,100,211, 93,196, 9, 37, 37, 37,113, 37, 37, 37, - 19, 0,191,153,122,221, 82, 82, 82, 18, 87, 90, 90,250, 31, 12,195,252, 57, 64,157,155,244,122,253, 0,153, 76,134,125,251,246, - 65,161, 80, 64, 46,151, 35, 45, 45, 13,122,189, 30,114,185, 28, 28,199,193,110,183,243, 15, 11, 93, 48, 21,215,104, 52, 29, 14, -135, 67,249,249,231,159, 67,167,187,249, 39, 25, 25, 25,104,111,111, 7,203,178,157,161, 54,102,115,115,179,154, 32,136, 65,231, -206,157, 67, 67, 67, 3,166, 78,157,138, 79, 62,249, 4, 57, 57,221,167,195, 86,171, 53,156, 36,126, 78,138,162,184, 0,227,150, - 0, 16, 47, 36,166,107,241, 10, 9,147,101, 89,150, 39, 89,158, 63, 61,201, 87, 15,255,243,150,233,252, 64,138,162,226,173, 69, -147,231, 77, 25,145, 4, 70,115, 5,210,152, 36, 16,113,153,120,103,205, 97,212, 92,238,238,175,119,118,158,193,174,178,199, 0, - 89, 2,178,148, 90, 12,136,161,255,235,124,219, 93, 39, 90, 74,207,125, 66, 95, 93,152,166, 78,157, 10,189, 94, 15,133, 66, 33, -132,127,206, 41,134, 97, 46, 28, 56,112, 96,244,227,143, 63,142,168,168, 40, 92,184,112, 1,213,213,213,117, 0, 78,133, 74,180, - 68, 34, 17, 86,172, 88,129,133, 11, 23, 34, 37, 37, 5, 75,151, 46, 5, 77,211,238, 66, 16,132,219,194, 21,138, 36,167, 4, 14, -124,228, 29,226,123, 50,134, 43,149,202, 21, 36, 73, 62, 69, 5,209,112, 78,167,211,201,178,236, 30,131,193, 16, 48,189, 3,239, -184, 30, 76, 95,120,182, 65, 15,107, 90,175, 49,239, 4, 23, 9, 71,188,163, 13,253, 88,180,248,168,195,219,174, 2,226,107, 89, -233, 50,217, 85, 70, 74, 81,130,164,206, 95,187,222,140,196,120,133,139,100,185, 10, 73, 98,212,136,238,205,236,161, 19,117, 72, - 31, 50, 2, 52, 69,129,166, 40, 40,100, 18,168, 91, 91, 64,211,228,121,127,184, 35, 41,204,152, 49,124, 80,102,124,162, 8, 90, -149, 21,169, 41,126, 12, 3,163, 99,144,158, 26,133, 71, 19,165,131, 71, 82,152, 17,216,250,198,185,137,150,205,225,128,248,201, - 39,221,199,133,103, 75, 74,144, 93, 94, 14,231,180,105, 48,219,108,183,152,138,195, 37, 90, 50,153, 12, 38,147, 9,115,230,204, -209,219,237,246,231,194,108,226,106,157, 78, 87, 80, 88, 88,168,227, 9,140,205,102, 67, 97, 97,161, 78,167,211, 21, 4, 97, 37, -186, 77,236,118,251,115, 57, 57, 57,122,173, 86,235,214, 51,156, 7, 14, 47, 9, 9, 9,135, 42, 42, 42, 18, 44, 22, 11, 28, 14, -135, 27, 83, 38,147,129,162, 40,168, 84, 42,236,218,181, 75,149,144,144, 16,240,206, 42,134, 97, 14,148,151,151,183, 3, 64,121, -121,121, 59, 65, 16, 85, 4, 65,108, 34, 8,226, 61,175,178,137, 32,136, 42,207,239, 50, 12,179, 63, 16,182,213,106,173,170,171, -171,227,228,114, 57, 40,138,130,205,102,131, 84, 42,117,155,196,141, 70, 35, 24,166,251,152,187,186,186, 26,118,187,253,100, 48, -117, 55,153, 76,199,182,109,219,198,102,100,100, 96,196,136, 17,200,206,206, 70,110,110, 46, 6, 15, 30,140,149, 43, 87, 58,205, -102,115,200,115,175,185,185,249,208, 71, 31,125,100, 31, 52,104, 16, 70,143, 30, 13,137, 68,130, 81,163, 70, 33, 45, 45, 13,111, -190,249,166,213, 96, 48,124, 30, 70, 55, 93,253,225,135, 31,168, 0, 36, 55, 22, 65, 68,239,122, 73,211,233,211,167,169,220,220, -220, 79,189, 63, 24, 59,118,236,167, 10,133, 66,201,155,216, 67,217,145,123,146, 43,137, 68,226, 46,252,251, 52, 77, 7,179,251, - 33, 31, 72, 81, 84,252,105,225,164,121, 83, 70,196,227,211, 99,255,132,216,214, 14, 88, 3,156, 8, 58,237, 32,196,209, 72, 81, -138,210,251,192, 26,240, 34,128,239,209,157,135,105, 41,250,150,184, 29,223,117, 58, 29,234,234,234, 80, 93, 93,141,220,220, 92, -156, 60,121, 18,184,233, 32, 31,178, 24, 12,134,165,101,101,101,102, 62,146,239,149, 87, 94, 97, 76, 38,211,210, 80,159,193, 28, -199, 65, 36, 18, 33, 43, 43, 11,165,165,165, 56,124,248, 48, 46, 92,184, 0,187,221,238, 38, 66,188, 79,102, 40, 22, 45,177, 88, -140,148,148, 20,216,237,118,183, 53, 11, 0, 46,254,244, 19,104,154, 6,203,178,176, 90,173, 61, 90,180,148, 74,229,138, 45, 91, -182,188,160,213,106, 83, 53, 26, 77,178,103, 81,171,213,201, 45, 45, 45,201,215,175, 95, 79,110,106,106, 74,110,108,108, 76,190, -114,229, 74,234,219,111,191,253,130, 82,169, 92, 17,140,158, 20, 69, 97,212,168, 81,120,254,249,231,221,101,195,134, 13,238, 82, - 89, 89, 25,178,243, 58, 69, 81,200, 90,254, 14, 30,211,112,238,114, 88, 69,184, 75,205, 31, 22, 4,194,140, 56, 23, 9,139,191, -184,162, 13, 61, 47,150,246, 33,124,212, 33,255, 44,115,187,109,120, 59,195, 71, 76, 28,214,174,175, 46,215,255, 52, 41,107,228, - 24,178, 85,219,113, 75,248,103,246,196, 2, 16, 4,129,129, 67, 70,128,162,105, 80, 20, 9,154,162, 16, 23, 43, 69,221,185,115, -172,133, 97,190,242,133, 57, 1,160,163,100, 81, 27,102, 63, 58, 74,218, 28,213, 6, 85,106, 52,196,162,110,238,200, 93, 46,240, - 90, 33,104, 96,100, 12,126,119, 61, 81,246,149,186,107, 67,188,217,246,105,149,159, 29, 32,203,178, 80, 72, 36,232,178, 88,192, - 56, 28,152,184,118,173,251,184,144, 36, 8,124, 11,224,193,181,107,241,245,222,189,136,141,138, 2, 36,146,160,163, 66,124, 17, - 45,173, 86,139,162,162, 34, 93, 75, 75,203,220,112,124,180,120,177, 88, 44,199, 91, 91, 91,231, 22, 20, 20,236,216,183,111, 95, - 66, 65, 65,129,190,181,181,117,110,144,126, 79,183, 73, 87, 87,215,222,166,166,166,206,162,162,162,237, 59,119,238, 76, 76, 74, - 74,114,239, 68,194, 26,172, 4,161,157, 60,121,178, 36,152,239,245,240,149, 50,151,115,251, 66,151,101,235,193, 5, 11, 22,124, -141,110,255, 43, 79, 89,190,121,243,230,153, 30, 71,140,155, 0,172, 13, 4,108, 52, 26,223, 43, 45, 45,253,253,241,227,199,147, -164, 82, 41, 8,130,128, 88, 44,198,176, 97,195,220, 81, 52, 34,145, 8, 28,199,225,165,151, 94,210,182,181,181,173, 11,178,111, - 22,148,149,149, 61,210,213,213, 21, 95, 84, 84, 68, 73,165, 82,168,213,106,172, 89,179,198,249,254,251,239,183,155,205,230,121, - 97, 16,225,109,175,191,254,250,196,142,142,142, 33,197,197,197, 98,131,193, 0,134, 97,240,242,203, 47, 91,183,110,221,122,141, - 97,152,144, 19,254,142, 27, 55,174,190,177,177, 49,175,179,179,243,134, 92, 46,247,182,246, 17,209,209,209, 99, 0,108, 15, 5, - 51, 59, 59,251,210,213,171, 87,115, 87,173, 90, 85,101,183,219, 69,223,124,243,141,219, 25,126,253,250,245,149, 82,169,116, 50, - 66,188,124,149, 32, 8, 86, 34,145,220, 98,193,242,126, 77,211,116,143,207,180, 95, 14,144,175,250,211,179,143,204,251,205, 3, - 74, 28, 56,118, 6,101,251, 47,159,191,127,158, 42,235,190,120, 13, 88, 77, 29,254, 48, 59, 7,239,236, 60, 3,160,251,232,144, -109,171, 1,119,227, 18,184,152, 65,184,162,215, 54,247,129, 53,160, 18,221, 41, 51,250,154,220, 66,178,106,106,106, 48,105,210, - 36, 0,192,201,147, 39, 49,126,252,120,156, 60,121, 18,121,121,121, 33,231,210,114,201,223,141, 70, 99, 99,101,101,229,191, 13, - 26, 52, 8,167, 78,157,186, 2,224,239,161, 42,201, 19, 45,154,166,241,204, 51,207, 32, 63, 63, 31, 25, 25, 25,183, 68, 27,242, -175, 67, 33, 27, 14,135, 3, 35, 71,142,132,197,106,133, 88, 44,118, 31, 77,210, 52, 13, 85,114, 50,234,235,235,131,178,104,145, - 36,249,212,244,233,211,201,218,218, 90,204,154, 53, 11, 59,118,236,240,251,221,194,194, 66,124,248,225,135,152, 62,125, 58,185, -108,217,178,128,233, 29,120, 39,244, 96,234,196,175,211, 61, 61,247,133,194,140, 52, 23,233,141,120,164,118,240,121,104,226,227, -189,242, 91,136,150, 71,146,176,200, 16, 45,135,109,199, 39,127,125,183, 52,119, 99,158, 42, 53, 89, 9,189,129,113,147,173,179, -149, 31, 3, 0,102, 44,248, 35,104,170,251, 72, 49, 86, 33,133, 76, 76, 97,239, 7,235,180, 54, 91,151,207,209,101, 18,145, 11, -151,253,106,152, 50, 42,218, 14,227, 0, 14, 35, 84, 55,111,202, 33,134,124,124, 59,225,122, 56, 30, 73, 53, 55, 48,251, 62, 69, -236,186,218,246,133,176,179, 27,110, 91, 16,219,219,153,246,115,231,100, 83,183,108,193, 55,115,231, 98,160,211,137,170,180, 52, - 36,136, 68, 80, 74, 36, 32, 9, 2,204,103,159,225,235,125,251,144, 34,145, 0, 49, 49,112,172, 92, 9, 75, 93, 29,236, 38, 19, - 19,198,206, 12, 51,103,206,212,106,181,218, 2,171,213,122,188,183,237,204, 48,204,145,166,166,166,133,227,198,141,219,104,183, -219,159, 99, 24,166, 87,145, 81, 86,171,245, 72,107,107,235,147, 51,103,206,252,120,255,254,253, 73,113,113,113, 97, 99,233,116, -186, 28,129,134, 19, 11,224, 85,151,115,251,194,146,146,146,184,211,167, 79,255,190,162,162, 98,163,199,110, 34,121,254,252,249, -207,122,145,172, 30,163, 14, 1, 92,109,107,107, 91,185,100,201,146, 63,174, 94,189, 90,193, 59,190,127,247,221,119,112, 56, 28, - 16,137, 68,112, 58,157,152, 63,127,126,135, 78,167,123, 7,254, 51, 58,223, 54,180,140, 70,227,176, 85,171, 86, 85,172, 93,187, - 54,159,162,168,104,167,211,105,238,236,236,172,234,234,234,154,135,240,242,104,177, 26,141,166,232,181,215, 94, 43, 90,179,102, -205,116,146, 36,147, 29, 14,135,214,100, 50, 29,100, 24,102, 43,194, 56, 74, 58,117,234,148,102,246,236,217,151, 53, 26,205, 47, -211,211,211, 13, 10,156,255,133, 45, 0, 0, 8, 95, 73, 68, 65, 84,133,194,106,181, 90, 41,153, 76, 22, 27, 29, 29,157, 13,224, - 20, 65, 16, 63,134,130,121,246,236,217,214,226,226,226, 6,139,197,146,181,105,211,166, 19,177,177,177,199, 8,130, 32,196, 98, -113,188, 76, 38,155, 4,160,138, 32,136,139,161, 96,146, 36,201,122, 90,175,188,253,179,162,162,162,130,242,209, 26,162,146,255, - 46,127, 24,141, 3, 95,157, 65,217,129,171,219,156, 28,183,111,223,217, 27,159, 45, 29, 15,216,246,204,198,168,130,237,221,199, -133, 0,216,182, 26,216,246, 20,130,144, 39,225,196,117, 17, 12,140,237, 16,250,197,151,184,211, 59,104,181, 90,212,214,214,242, - 36, 43, 27, 0,242,242,242,206,242,100,171,186,186, 26,163, 71,143, 62, 11, 64, 20,234,120, 53, 26,141, 75,230,204,153,115,196, -181, 57, 94, 18,198,198,207, 77,180,120, 66,149,145,145,225,254,221,179,120,248,104, 5, 37, 78,167, 19, 98,177, 24, 52, 77, 35, - 53, 45,205,253,191, 56,142, 67,125,125, 61,244,122,125, 80, 68,139,162, 40,138, 32, 8,204,154, 21, 92, 64,242,211, 79, 63,141, -170,170, 42, 80, 65,178, 66,138,162,144,153,153,217,227,119,120, 94, 26, 44,102,122,122,122,216,152,145,230, 34,225, 18, 44, 95, -175,125,145, 42,127, 19,226, 78, 73,115, 71,135,225,213, 15,182,172, 95, 61,127,209, 75,138,154, 75,106, 24, 58, 44,160, 40,210, -243,225, 9,154,166, 16, 27, 45,197,160, 1, 74,236,252,223,191,152, 76,198,246,215,224,231,222,195,140, 24,241,130,201, 99,238, -147,136, 83,205,200,122,112, 38, 40,233, 77, 18,192,181,250, 57, 29, 28,255, 5,126,123,213, 44,253,228,170,121,193,183, 55,172, -183, 19, 45,171,117,202, 43,143, 62,122,180,236,240, 97,249,216,109,219,112,105,254,124,164, 49, 12, 36,174,163, 68,146, 32,160, - 16,139,161, 16,139,187, 73,214,154, 53, 96, 28, 14,172,157, 59,183,211, 98,181, 62, 26,202, 36,215,233,116,152, 54,109,154,166, -185,185,249, 49,132,113,180,231, 79,204,102,243, 94, 0,123,133,194,179, 88, 44,199,175, 93,187,246,219,105,211,166, 29, 62,114, -228,136,170,143, 36,153,227,201,150,237,244,233,211,207,158, 56,113,226, 18,110,189, 88,180,253,196,137, 19,151,138,139,139,137, -138,138,138,173, 0, 94, 71,144, 9, 60,205,102,243,250, 47,191,252, 18,143, 60,242,200,235,111,189,245, 86, 98, 78, 78, 14,146, -147,147, 97, 50,153, 80, 93, 93,141, 23, 95,124, 81,111, 52, 26,223,106,111,111, 95, 29,162,206, 54,139,197, 82,232, 25, 74, 45, - 68, 59, 88, 44,150,247, 91, 90, 90,222, 23, 10,112,241,226,197,223,213,215,215,235, 84, 42,213,191,139,197,226, 7,209,237, 7, -212, 10, 96,107,168,132,136,151, 69,139, 22,157,171,175,175,215, 14, 28, 56, 48,215,133, 25,135,238,107,140,182,132,129,217,124, -230,204,153,244, 49, 99,198,144, 34,145,136,163, 40, 10, 34,145,136,163,105,154,115,249,213,112, 0,112,240,224, 65, 9,128,128, -215,230, 92,106, 99, 86, 21,254,229, 31,203,126,108,237,218, 87,167,238, 44, 5,192,237,169,145,127, 49, 74, 69, 77,153, 50,252, - 26, 44,229,121, 32, 98,187, 19, 85,114, 29, 45, 32,162, 83,112,141, 29,136,229,159,158,111,117,128,248,115, 63,167,242,189,175, -134, 43,189, 67, 75, 75,139, 39,201,226,173, 86,217,121,121,121,103, 93, 36,139,255, 44, 28,255,178,191,177, 44,219,171, 53,140, -227, 56,148,149,149, 97,243,230,205,232, 41,163,185, 43,186,143,232, 9,143,183,104, 57,157, 78,216,108, 54,212,212,212,184,115, -118,241,199,133,124,106, 7,135,195, 17, 48, 90,221,233,116, 58,173, 86, 43,118,239,222, 29, 20,217,218,181,107, 23,186,186,186, -224,236,129,193,121,166, 98,120,232,161,135,160,215,235,221,193, 62,217,217, 55, 83,229,217,108,182,144,136, 43,143,153,149,149, - 5,173, 86, 11,222, 95,120,208,220,155,198, 30,135,217,252,115, 29,247,126, 45, 90,119,124,197,148,200, 99,143,228,252, 42,127, -252,220,103, 95,140,238,176, 56,209,208,208, 8, 77, 91, 11, 72,130, 68,234,192,116, 12, 30,156, 9, 89, 20,137, 29,229,171,205, -103,191, 62,246,143, 14,211,141,169,254,176, 30, 87,138,191, 94,243,228,248,220,161, 67, 99, 8, 56,236,128,211, 14, 56,236, 0, -235,250,201,191,199,222, 58,230,106,107,219,185,101,223,234,255,239,144,193,230,243,206,170, 2, 96,124, 92, 66,194,209,229, 7, - 15,202, 89,155, 13,186, 37, 75, 32,119, 56, 32,117,237, 74,186, 43, 34,129, 99,229,202,110,146, 85, 88,216,105,104,111, 15,233, - 10,158,164,164,164, 51, 4, 65, 36,105, 52,154,123, 42, 51,188, 74,165, 58,196,113,156, 86,171,213,230,244, 33,189,146, 1,180, - 3,176,249,216, 72,168, 16,186,255, 15, 47,153, 42,149,106, 25, 73,146,227, 56,142, 75, 36, 73,242, 6,203,178,167,218,218,218, -222, 6, 80,223,191,158,222, 53,225, 51,195,255,162,135,239,181, 1,248,111,116, 59, 5, 55, 4, 11, 62, 74,169, 84, 90,162,236, -251,255,115,132,100,226, 83,217, 74, 12, 25, 16, 3,145, 88,138,102,163, 3,127,251,209,136, 45,149,173, 77,140,221,249,196, 79, -154,206, 31,250,187, 34,160, 8,126, 5,143,144,146,144,144,240,207,163, 71,143,230, 12, 25, 50,132,244,116,120,231,115,229,241, -199, 91, 52,221,205,229,142, 31, 63,238,152, 53,107,214, 41,181, 90,253,136, 63,204,152,152,152, 47,190,255,254,251,223, 24, 12, -134,219, 8,149,103,166,120,254,119,179,217,140, 69,139, 22,125,233,239, 10, 30,165, 82,185,102,245,234,213, 47,204,152, 49,131, -228,211, 81,120, 22,254,186, 32,190,216,108, 54,108,223,190,157, 93,183,110,221,255, 24, 12, 6,191, 71,135,169,169,169, 77,205, -205,205,233,124,170,133, 96,146,138,102,102,102,182, 52, 54, 54,166,221, 73,204,123,152,112,221, 98,221,186, 43,166, 9,145, 76, -182, 56, 70, 17,255,198,140, 57,207, 39,102, 14,189,159, 72, 73, 29, 8, 2, 36,212,173,215,209,120,249, 39,110,255, 95,223,213, -153,141,250, 21, 12, 99,126, 55, 16,206, 3,192,208, 95,196,138,247, 68, 57, 49, 28, 60, 1,242,186,159,234,182, 29, 7, 0,155, -136, 60,223, 96,178,207,252, 49,192,177, 15, 79,182, 94,221,191, 95, 30, 53,124,248,109,137,226, 88,150,133,165,174, 14,107,231, -206, 13,153,100,245, 75,191,244,139, 32, 50, 4, 61,231,200,178,163, 59, 63, 87,168, 22, 19, 34, 43, 57,122, 38, 7, 60, 69,130, - 29, 73, 18, 68,148,131,195, 5,112,248, 66, 78,119,110, 60,219, 2,166,191,249,131,146, 62,123,169, 52,128,232,132,132,132, 99, - 20, 69, 13,230, 45, 50,158,214,122, 31, 23, 74, 55,168,213,234,201, 0, 2, 69, 8, 15,141,137,137,121,215,233,116,142, 13,230, - 82,105,138,162,190, 49,153, 76,139, 17,224, 82,233, 72, 68, 29, 38, 38, 38,214, 55, 54, 54, 14,229,163,168, 61,215, 74, 95,145, -229, 23, 47, 94,196,132, 9, 19, 26, 91, 91, 91, 51,239, 36,102, 95, 21, 63, 81,135,125,199,162,229, 33,105, 98,137,162, 40, 74, - 38,253, 53,107,119,100,129, 0,104,145,232,188,181,139,249,202,194,116,124, 0, 63,199,133,119, 82, 10,128,241,146,168,168, 47, -196,177,177, 50, 95,164,205,110, 50, 49, 22,171,117, 74, 63,201,234,151,126,233,151,126,233,151,123, 72,134, 39, 36, 36, 28, 21, -137, 68, 18, 79, 50,233,253,154, 23,135,195,209,165,209,104,166, 2,184,112,135, 49,255, 53, 37, 68, 39,181,252, 96, 49, 93,101, - 66, 95,199,140, 96,221, 57, 1, 49, 39,184, 48,151,223, 35,122, 78,232,171,152,124,125, 67,192,205, 15,101, 28, 9,213,158, 30, -122,114, 66,235, 25, 41, 76,161,230,145, 15, 61,185, 8,244,251,242,123, 68,207, 9,125, 13,211,123,252, 4,137, 27, 18,102,144, - 99, 42, 84, 61, 57,161,245,140, 20,102,111,231, 81, 0, 61,185,222,142, 37, 63,125,191, 28,247,160,212, 62, 12,174,246, 97,112, - 53,163,125,230,109, 44,241,247,119, 33, 57, 18, 70, 42, 18,128, 79,187,239,194, 39,250, 42,166,103, 59, 8,121, 85, 64, 4,174, - 29,168, 20, 26,211,171, 61,133,146,229,174, 8,147, 42, 4,145,112, 52,148,186, 11,209,239, 94,117, 21, 4, 55, 12,146, 21, 18, -166, 80,227, 62,210,152, 66,205, 37,111, 76, 33,198,189,175,126,143, 96, 31, 9,165,167, 32,115, 41, 18, 99,222,199,248,233, 53, -174, 55,166, 16,115,201, 27, 83,136,113,127, 39, 48,133,152, 75,190, 48,133, 24,247,254,250,254, 94, 53, 52,241,199,133,174, 20, - 15, 68, 16,100,171, 28, 0,200,112, 26, 45,130,150,178,137, 66, 99, 10,173,115, 36,200,102, 8, 22,152,187,142, 41,112, 31, 45, -119, 97, 10,185,187,153, 40, 84, 31, 69, 98,188,123, 98, 10,133,239,141, 35, 68, 63,249,194,236,173,190,126,244, 20,188,238,189, - 29,247,119, 10, 83,224, 62, 18,100, 46,121, 97, 78, 20,120, 51, 48,209,227,247,229, 66, 98, 10, 53,151,124,232,217,235,126,242, -133,217, 91,125,253,232, 41,120,221,133, 88, 67, 34,133,123, 55, 45, 90, 28,233,119, 76,148,123,149, 59, 66, 52,238,218,145, 92, -136,216, 63, 43,204, 16,143,103,242, 35,208,247,119, 85, 79, 33, 49,189,117, 20,242,184, 39,146,122, 10,137, 25,130,174, 63, 59, -204,123,173,223,251, 98,123,250,195,235,205,177,148, 63,235,104, 36,244, 20, 18, 51, 72,236,159, 5,102, 47,250,254,103, 39,116, - 95, 81,132,111,120,129,119, 38, 16,216, 2, 19,177,122, 11,172,231,196, 72, 88, 8, 35, 32,130,235,233,218, 41,191, 17,129,186, -223, 43,109,218, 63,151,250,231, 82,159,155, 75, 94, 99,114,162,128,150, 34, 65, 45,207,222,152, 66,252, 15, 79, 12,161,198,104, -164,235, 46,228, 92,138, 68,223,223,107,242,255, 25,235, 55,155, 32,101,223,129, 0, 0, 0, 0, 73, 69, 78, 68,174, 66, 96,130, +137, 80, 78, 71, 13, 10, 26, 10, 0, 0, 0, + 13, 73, 72, 68, 82, 0, 0, 2, 90, 0, 0, 2,128, 8, 6, 0, 0, 0, 68,254,214,163, 0, 0, 10, 79,105, 67, 67, 80, 80,104, +111,116,111,115,104,111,112, 32, 73, 67, 67, 32,112,114,111,102,105,108,101, 0, 0,120,218,157, 83,103, 84, 83,233, 22, 61,247, +222,244, 66, 75,136,128,148, 75,111, 82, 21, 8, 32, 82, 66,139,128, 20,145, 38, 42, 33, 9, 16, 74,136, 33,161,217, 21, 81,193, + 17, 69, 69, 4, 27,200,160,136, 3,142,142,128,140, 21, 81, 44, 12,138, 10,216, 7,228, 33,162,142,131,163,136,138,202,251,225, +123,163,107,214,188,247,230,205,254,181,215, 62,231,172,243,157,179,207, 7,192, 8, 12,150, 72, 51, 81, 53,128, 12,169, 66, 30, + 17,224,131,199,196,198,225,228, 46, 64,129, 10, 36,112, 0, 16, 8,179,100, 33,115,253, 35, 1, 0,248,126, 60, 60, 43, 34,192, + 7,190, 0, 1,120,211, 11, 8, 0,192, 77,155,192, 48, 28,135,255, 15,234, 66,153, 92, 1,128,132, 1,192,116,145, 56, 75, 8, +128, 20, 0, 64,122,142, 66,166, 0, 64, 70, 1,128,157,152, 38, 83, 0,160, 4, 0, 96,203, 99, 98,227, 0, 80, 45, 0, 96, 39, +127,230,211, 0,128,157,248,153,123, 1, 0, 91,148, 33, 21, 1,160,145, 0, 32, 19,101,136, 68, 0,104, 59, 0,172,207, 86,138, + 69, 0, 88, 48, 0, 20,102, 75,196, 57, 0,216, 45, 0, 48, 73, 87,102, 72, 0,176,183, 0,192,206, 16, 11,178, 0, 8, 12, 0, + 48, 81,136,133, 41, 0, 4,123, 0, 96,200, 35, 35,120, 0,132,153, 0, 20, 70,242, 87, 60,241, 43,174, 16,231, 42, 0, 0,120, +153,178, 60,185, 36, 57, 69,129, 91, 8, 45,113, 7, 87, 87, 46, 30, 40,206, 73, 23, 43, 20, 54, 97, 2, 97,154, 64, 46,194,121, +153, 25, 50,129, 52, 15,224,243,204, 0, 0,160,145, 21, 17,224,131,243,253,120,206, 14,174,206,206, 54,142,182, 14, 95, 45,234, +191, 6,255, 34, 98, 98,227,254,229,207,171,112, 64, 0, 0,225,116,126,209,254, 44, 47,179, 26,128, 59, 6,128,109,254,162, 37, +238, 4,104, 94, 11,160,117,247,139,102,178, 15, 64,181, 0,160,233,218, 87,243,112,248,126, 60, 60, 69,161,144,185,217,217,229, +228,228,216, 74,196, 66, 91, 97,202, 87,125,254,103,194, 95,192, 87,253,108,249,126, 60,252,247,245,224,190,226, 36,129, 50, 93, +129, 71, 4,248,224,194,204,244, 76,165, 28,207,146, 9,132, 98,220,230,143, 71,252,183, 11,255,252, 29,211, 34,196, 73, 98,185, + 88, 42, 20,227, 81, 18,113,142, 68,154,140,243, 50,165, 34,137, 66,146, 41,197, 37,210,255,100,226,223, 44,251, 3, 62,223, 53, + 0,176,106, 62, 1,123,145, 45,168, 93, 99, 3,246, 75, 39, 16, 88,116,192,226,247, 0, 0,242,187,111,193,212, 40, 8, 3,128, +104,131,225,207,119,255,239, 63,253, 71,160, 37, 0,128,102, 73,146,113, 0, 0, 94, 68, 36, 46, 84,202,179, 63,199, 8, 0, 0, + 68,160,129, 42,176, 65, 27,244,193, 24, 44,192, 6, 28,193, 5,220,193, 11,252, 96, 54,132, 66, 36,196,194, 66, 16, 66, 10,100, +128, 28,114, 96, 41,172,130, 66, 40,134,205,176, 29, 42, 96, 47,212, 64, 29, 52,192, 81,104,134,147,112, 14, 46,194, 85,184, 14, + 61,112, 15,250, 97, 8,158,193, 40,188,129, 9, 4, 65,200, 8, 19, 97, 33,218,136, 1, 98,138, 88, 35,142, 8, 23,153,133,248, + 33,193, 72, 4, 18,139, 36, 32,201,136, 20, 81, 34, 75,145, 53, 72, 49, 82,138, 84, 32, 85, 72, 29,242, 61,114, 2, 57,135, 92, + 70,186,145, 59,200, 0, 50,130,252,134,188, 71, 49,148,129,178, 81, 61,212, 12,181, 67,185,168, 55, 26,132, 70,162, 11,208,100, +116, 49,154,143, 22,160,155,208,114,180, 26, 61,140, 54,161,231,208,171,104, 15,218,143, 62, 67,199, 48,192,232, 24, 7, 51,196, +108, 48, 46,198,195, 66,177, 56, 44, 9,147, 99,203,177, 34,172, 12,171,198, 26,176, 86,172, 3,187,137,245, 99,207,177,119, 4, + 18,129, 69,192, 9, 54, 4,119, 66, 32, 97, 30, 65, 72, 88, 76, 88, 78,216, 72,168, 32, 28, 36, 52, 17,218, 9, 55, 9, 3,132, + 81,194, 39, 34,147,168, 75,180, 38,186, 17,249,196, 24, 98, 50, 49,135, 88, 72, 44, 35,214, 18,143, 19, 47, 16,123,136, 67,196, + 55, 36, 18,137, 67, 50, 39,185,144, 2, 73,177,164, 84,210, 18,210, 70,210,110, 82, 35,233, 44,169,155, 52, 72, 26, 35,147,201, +218,100,107,178, 7, 57,148, 44, 32, 43,200,133,228,157,228,195,228, 51,228, 27,228, 33,242, 91, 10,157, 98, 64,113,164,248, 83, +226, 40, 82,202,106, 74, 25,229, 16,229, 52,229, 6,101,152, 50, 65, 85,163,154, 82,221,168,161, 84, 17, 53,143, 90, 66,173,161, +182, 82,175, 81,135,168, 19, 52,117,154, 57,205,131, 22, 73, 75,165,173,162,149,211, 26,104, 23,104,247,105,175,232,116,186, 17, +221,149, 30, 78,151,208, 87,210,203,233, 71,232,151,232, 3,244,119, 12, 13,134, 21,131,199,136,103, 40, 25,155, 24, 7, 24,103, + 25,119, 24,175,152, 76,166, 25,211,139, 25,199, 84, 48, 55, 49,235,152,231,153, 15,153,111, 85, 88, 42,182, 42,124, 21,145,202, + 10,149, 74,149, 38,149, 27, 42, 47, 84,169,170,166,170,222,170, 11, 85,243, 85,203, 84,143,169, 94, 83,125,174, 70, 85, 51, 83, +227,169, 9,212,150,171, 85,170,157, 80,235, 83, 27, 83,103,169, 59,168,135,170,103,168,111, 84, 63,164,126, 89,253,137, 6, 89, +195, 76,195, 79, 67,164, 81,160,177, 95,227,188,198, 32, 11, 99, 25,179,120, 44, 33,107, 13,171,134,117,129, 53,196, 38,177,205, +217,124,118, 42,187,152,253, 29,187,139, 61,170,169,161, 57, 67, 51, 74, 51, 87,179, 82,243,148,102, 63, 7,227,152,113,248,156, +116, 78, 9,231, 40,167,151,243,126,138,222, 20,239, 41,226, 41, 27,166, 52, 76,185, 49,101, 92,107,170,150,151,150, 88,171, 72, +171, 81,171, 71,235,189, 54,174,237,167,157,166,189, 69,187, 89,251,129, 14, 65,199, 74, 39, 92, 39, 71,103,143,206, 5,157,231, + 83,217, 83,221,167, 10,167, 22, 77, 61, 58,245,174, 46,170,107,165, 27,161,187, 68,119,191,110,167,238,152,158,190, 94,128,158, + 76,111,167,222,121,189,231,250, 28,125, 47,253, 84,253,109,250,167,245, 71, 12, 88, 6,179, 12, 36, 6,219, 12,206, 24, 60,197, + 53,113,111, 60, 29, 47,199,219,241, 81, 67, 93,195, 64, 67,165, 97,149, 97,151,225,132,145,185,209, 60,163,213, 70,141, 70, 15, +140,105,198, 92,227, 36,227,109,198,109,198,163, 38, 6, 38, 33, 38, 75, 77,234, 77,238,154, 82, 77,185,166, 41,166, 59, 76, 59, + 76,199,205,204,205,162,205,214,153, 53,155, 61, 49,215, 50,231,155,231,155,215,155,223,183, 96, 90,120, 90, 44,182,168,182,184, +101, 73,178,228, 90,166, 89,238,182,188,110,133, 90, 57, 89,165, 88, 85, 90, 93,179, 70,173,157,173, 37,214,187,173,187,167, 17, +167,185, 78,147, 78,171,158,214,103,195,176,241,182,201,182,169,183, 25,176,229,216, 6,219,174,182,109,182,125, 97,103, 98, 23, +103,183,197,174,195,238,147,189,147,125,186,125,141,253, 61, 7, 13,135,217, 14,171, 29, 90, 29,126,115,180,114, 20, 58, 86, 58, +222,154,206,156,238, 63,125,197,244,150,233, 47,103, 88,207, 16,207,216, 51,227,182, 19,203, 41,196,105,157, 83,155,211, 71,103, + 23,103,185,115,131,243,136,139,137, 75,130,203, 46,151, 62, 46,155, 27,198,221,200,189,228, 74,116,245,113, 93,225,122,210,245, +157,155,179,155,194,237,168,219,175,238, 54,238,105,238,135,220,159,204, 52,159, 41,158, 89, 51,115,208,195,200, 67,224, 81,229, +209, 63, 11,159,149, 48,107,223,172,126, 79, 67, 79,129,103,181,231, 35, 47, 99, 47,145, 87,173,215,176,183,165,119,170,247, 97, +239, 23, 62,246, 62,114,159,227, 62,227, 60, 55,222, 50,222, 89, 95,204, 55,192,183,200,183,203, 79,195,111,158, 95,133,223, 67, +127, 35,255,100,255,122,255,209, 0,167,128, 37, 1,103, 3,137,129, 65,129, 91, 2,251,248,122,124, 33,191,142, 63, 58,219,101, +246,178,217,237, 65,140,160,185, 65, 21, 65,143,130,173,130,229,193,173, 33,104,200,236,144,173, 33,247,231,152,206,145,206,105, + 14,133, 80,126,232,214,208, 7, 97,230, 97,139,195,126, 12, 39,133,135,133, 87,134, 63,142,112,136, 88, 26,209, 49,151, 53,119, +209,220, 67,115,223, 68,250, 68,150, 68,222,155,103, 49, 79, 57,175, 45, 74, 53, 42, 62,170, 46,106, 60,218, 55,186, 52,186, 63, +198, 46,102, 89,204,213, 88,157, 88, 73,108, 75, 28, 57, 46, 42,174, 54,110,108,190,223,252,237,243,135,226,157,226, 11,227,123, + 23,152, 47,200, 93,112,121,161,206,194,244,133,167, 22,169, 46, 18, 44, 58,150, 64, 76,136, 78, 56,148,240, 65, 16, 42,168, 22, +140, 37,242, 19,119, 37,142, 10,121,194, 29,194,103, 34, 47,209, 54,209,136,216, 67, 92, 42, 30, 78,242, 72, 42, 77,122,146,236, +145,188, 53,121, 36,197, 51,165, 44,229,185,132, 39,169,144,188, 76, 13, 76,221,155, 58,158, 22,154,118, 32,109, 50, 61, 58,189, + 49,131,146,145,144,113, 66,170, 33, 77,147,182,103,234,103,230,102,118,203,172,101,133,178,254,197,110,139,183, 47, 30,149, 7, +201,107,179,144,172, 5, 89, 45, 10,182, 66,166,232, 84, 90, 40,215, 42, 7,178,103,101, 87,102,191,205,137,202, 57,150,171,158, + 43,205,237,204,179,202,219,144, 55,156,239,159,255,237, 18,194, 18,225,146,182,165,134, 75, 87, 45, 29, 88,230,189,172,106, 57, +178, 60,113,121,219, 10,227, 21, 5, 43,134, 86, 6,172, 60,184,138,182, 42,109,213, 79,171,237, 87,151,174,126,189, 38,122, 77, +107,129, 94,193,202,130,193,181, 1,107,235, 11, 85, 10,229,133,125,235,220,215,237, 93, 79, 88, 47, 89,223,181, 97,250,134,157, + 27, 62, 21,137,138,174, 20,219, 23,151, 21,127,216, 40,220,120,229, 27,135,111,202,191,153,220,148,180,169,171,196,185,100,207, +102,210,102,233,230,222, 45,158, 91, 14,150,170,151,230,151, 14,110, 13,217,218,180, 13,223, 86,180,237,245,246, 69,219, 47,151, +205, 40,219,187,131,182, 67,185,163,191, 60,184,188,101,167,201,206,205, 59, 63, 84,164, 84,244, 84,250, 84, 54,238,210,221,181, + 97,215,248,110,209,238, 27,123,188,246, 52,236,213,219, 91,188,247,253, 62,201,190,219, 85, 1, 85, 77,213,102,213,101,251, 73, +251,179,247, 63,174,137,170,233,248,150,251,109, 93,173, 78,109,113,237,199, 3,210, 3,253, 7, 35, 14,182,215,185,212,213, 29, +210, 61, 84, 82,143,214, 43,235, 71, 14,199, 31,190,254,157,239,119, 45, 13, 54, 13, 85,141,156,198,226, 35,112, 68,121,228,233, +247, 9,223,247, 30, 13, 58,218,118,140,123,172,225, 7,211, 31,118, 29,103, 29, 47,106, 66,154,242,154, 70,155, 83,154,251, 91, + 98, 91,186, 79,204, 62,209,214,234,222,122,252, 71,219, 31, 15,156, 52, 60, 89,121, 74,243, 84,201,105,218,233,130,211,147,103, +242,207,140,157,149,157,125,126, 46,249,220, 96,219,162,182,123,231, 99,206,223,106, 15,111,239,186, 16,116,225,210, 69,255,139, +231, 59,188, 59,206, 92,242,184,116,242,178,219,229, 19, 87,184, 87,154,175, 58, 95,109,234,116,234, 60,254,147,211, 79,199,187, +156,187,154,174,185, 92,107,185,238,122,189,181,123,102,247,233, 27,158, 55,206,221,244,189,121,241, 22,255,214,213,158, 57, 61, +221,189,243,122,111,247,197,247,245,223, 22,221,126,114, 39,253,206,203,187,217,119, 39,238,173,188, 79,188, 95,244, 64,237, 65, +217, 67,221,135,213, 63, 91,254,220,216,239,220,127,106,192,119,160,243,209,220, 71,247, 6,133,131,207,254,145,245,143, 15, 67, + 5,143,153,143,203,134, 13,134,235,158, 56, 62, 57, 57,226, 63,114,253,233,252,167, 67,207,100,207, 38,158, 23,254,162,254,203, +174, 23, 22, 47,126,248,213,235,215,206,209,152,209,161,151,242,151,147,191,109,124,165,253,234,192,235, 25,175,219,198,194,198, + 30,190,201,120, 51, 49, 94,244, 86,251,237,193,119,220,119, 29,239,163,223, 15, 79,228,124, 32,127, 40,255,104,249,177,245, 83, +208,167,251,147, 25,147,147,255, 4, 3,152,243,252, 99, 51, 45,219, 0, 0, 0, 6, 98, 75, 71, 68, 0,255, 0,255, 0,255,160, +189,167,147, 0, 0, 0, 9,112, 72, 89,115, 0, 0, 13,213, 0, 0, 13,213, 1, 61,214, 88,241, 0, 0, 0, 7,116, 73, 77, 69, + 7,220, 2, 12, 19, 45, 40,146,193,117, 16, 0, 0, 32, 0, 73, 68, 65, 84,120,218,236, 93,119,120, 20,213,226, 61, 51, 59,179, +187,217,146, 77, 35, 61,144, 66, 9, 96, 0, 67, 81,130, 84, 65, 80,140,138, 10, 86,132,167,207,103,197,134, 5, 84, 68, 68, 32, + 54, 64,240, 39,242,208,167,128,160,128, 5, 4,164, 68, 74,232, 29,233, 9,144, 4, 18, 66, 58,201, 38,219,203,220,223, 31,217, + 89, 55,203,182, 64, 98,129,123,190,111,190,221,157,157, 57,115,239,157,123,239,156, 57,183, 1, 20, 20, 20, 20, 20, 20, 20, 20, + 20, 20, 20, 20, 20, 20, 20, 20, 20, 20,215, 52, 86,175, 94, 77,154,112,248,144, 64, 57, 29,219,128,191, 59,103, 11,198,157, 52, + 35,231, 0, 7,231,187,255,144,112, 14,248,187,114,138,241,109, 2,239,144,166,228,163,230, 74, 79,151,112,146,230, 14,103, 75, +113, 54, 87, 57,242, 16, 78,210, 2,247,253,221,127, 72, 56, 7,252,221, 56,221,243, 79,128,188, 77,226, 12, 48, 79, 53, 53,156, +164,185,195,217, 82,156, 87, 91,142,124,132,147, 92,109, 94,242,114,239,223,197,117, 4,174, 5, 69, 86,192,200,204,204,100, 92, +248,153,191, 43,167,107, 58,136,252,205, 25,214,102,196,150,230,230,116, 75,207,230,194,187,153,153,153,204,234,213,171,183, 2, + 24,208,156,113,111,142,251,238, 22,215,102,225,189, 2,145,213, 36,206,230,202,247, 45,205,217, 92,101,201,157,179, 57,242,189, +167,251,222,130,247,168,185,194,217, 44,101,169, 37,242,188,135,252,115,213,188,238,156,205, 81,150,220, 57,155, 35,223,255, 25, +156,205, 81,150, 60,113, 54, 71,190,247,118,239,175, 55,131,138,253,139, 5,129,123, 1, 31,248,119, 22, 68, 45, 37, 54,155,224, +192,252,229,156,205,124,143,222,117,112, 54,231,219,205,192,230,186, 71, 45,145,223, 93, 57,155,139,223,157,167, 57,238,147, 39, +206,171, 13,175,151,112, 54,123,220,175, 54,223,255, 89,156,205,124,143,154,165, 44,185,113, 14,108,230,151,129,129, 46,191,223, +109, 78,206,230, 42, 75, 30,194,121,213,247,201, 19,231,213,134,215, 75, 56,155, 61,238,205,241, 12,105, 41,222,107, 26, 45,213, +124,214,220,156, 77,228,190,166, 56,155,216, 60, 51,164, 5,238,253, 95, 26,206,230,228,116, 15, 99,115, 54,247,180,100, 56,155, +147,179, 9, 97,189,230, 56,255,105,247,253,239,152,158,222,248,174,166, 89,202,155, 59,218, 18,225,108, 78,206, 0,185,175, 9, +206,171,184,247,215, 28,184,191, 75, 64,196,132,111,230, 55, 19, 52,179, 3,211,146,194,181, 57,195, 57,176, 37, 28,194, 22, 64, +179,135,211,241,166, 60,185, 5,226,254, 79, 73, 83, 90,150,104, 89,250,219,149, 37,183, 60, 57,176, 25,157,162,102,117,158,221, + 57,155,227, 26,174, 28,205,149, 71, 91, 58,238,205, 89,150, 90,226,222, 83, 92,133, 11, 65, 57, 41, 39,229,164,156,148,147,114, + 82,206,235,150,243,154, 4, 75,147,128,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,226, 31, 5,175,237,187, +113,113,113,171,149, 74,101, 59,111,255,235,116,186,139, 23, 47, 94, 28, 68,147,240,175, 3,189, 71, 20,255, 32,176,248,195, 65, + 23, 0, 16,199, 70, 65, 65, 65,113, 77,195,107,103,120,185, 92,158,114,242,228,201, 14,130, 32,192,110,183,195,102,179, 57, 63, +205,102, 51,250,247,239,223,228,142,244,209,209,209, 57, 18,137, 36,169, 41,231,216,237,246,243,101,101,101,125,125, 28,178, 19, + 64, 10,195,252,161, 25,197,239,222, 62, 1,148, 88,173,214,238,190, 56, 25,134, 73,113,231,243,194, 37,126,247,201, 25, 18, 18, +178,159,227,184, 4, 79, 92,222,190, 11,130,144, 95, 81, 81,209,231,207,188, 71,215, 51,162,163,163,115, 56,142,107,114,254, 44, + 45, 45,245,154, 63, 99, 99, 99, 15,177, 44, 27,215, 4, 74,137, 32, 8,185, 23, 47, 94,236,235, 67,136,236, 4,144,226,243, 13, +202, 45, 63, 49, 12, 83,108,183,219,123,250, 43, 71,190,184, 60,228, 81,127,156, 78,145,197,113, 92, 86, 84, 84,212, 51,122,189, +222, 8,128, 72, 36, 18,226, 18, 54, 0,128,205,102,171,168,169,169,233, 66,115, 34, 5, 5,197,117, 33,180, 4, 65, 96, 77, 38, + 19,242,242,242, 64,136,199,250,222,126, 5,215,235,112,224,183,141, 81,193, 81,209,176, 89, 44, 80,181,138,116,114,151,157, 56, + 6,155,213, 2,155,217,140, 54,189,122,139, 97, 64,231,206,157, 37,126, 56, 19, 62,248,224,131,168,224,224, 96, 24,141, 70, 24, +141, 70,152, 76, 38, 24,141, 70,152,205,102,152,205,102, 88, 44, 22, 88, 44, 22,216,108, 54,152, 76, 38,100,103,103,219,173, 86, +171, 79,206,105,211,166, 69,105, 52, 26, 39,159,184,137,156, 34,175,213,106,133,209,104,196,166, 77,155,124,114,114, 28,151, 80, + 82, 82, 18, 37,149, 74, 65, 8,129, 32, 8, 32,132, 52,218,220,209,182,109, 91,139,175, 64,182,208, 61,186,158,209, 97,218,210, + 53, 81, 33, 10, 57,108,130,128,204,110,109,157,127,228,127,185, 28,196,102,135, 96,179,161,253,243,163,157,251, 59,117,234,228, + 51,127, 18, 66, 18,167, 45, 93, 19, 26, 40,103, 85, 85,149,161, 99,199,142, 37,104,112,155,189, 9,173, 4,131,193, 16,229,224, +191, 76, 16,177, 44,219,104, 91,191,126, 61, 50, 51, 51,253,197, 61,225,229,151, 95,142,178, 90,173, 48,155,205, 48,153, 76,176, + 90,173,176,217,108,206,205,110,183, 59, 55,179,217,140, 61,123,246, 4,234,100,125,112,219,109,183, 61,190,102,205, 26,213,207, + 63,255,172, 74, 74, 74,130, 84, 42,133, 68, 34,129, 68, 34, 1,203,178,224, 56, 14, 55,223,124, 51, 67,179, 32, 5, 5,197,117, + 35,180, 76, 38, 83, 65,122,122, 58,113,124,143,151,203,229, 82,183,183,220,184,246,237,219,231,186,159,231,175,185, 42, 56, 42, + 26, 19, 91,135, 3, 0,222, 57, 87,229,124, 64,124,216,231, 70,231, 49,239, 93,168, 5, 0, 40, 20, 10, 48,174,175,209, 94,160, + 82,169,112,219,109,183, 65, 38,147,161,103,207,158,224,121,222,227, 38,149, 74,193,243,188,223, 68, 97, 24, 6,106,181, 26, 83, +166, 76, 17, 69, 18, 84, 65,114,140,235,211, 19, 65, 32,248,239,177,211, 48, 11, 4, 28,199, 57,183, 64, 56,165, 82, 41,142, 30, + 61, 10,142,227, 32,145, 72,156,159,226,247, 85,171, 86, 97,228,200,145,224, 56, 14, 10,133, 2,240, 51,115,176,235, 61, 50,155, +205,177, 50,153,204, 2, 64, 20,103, 82,134, 97, 98,174,228, 30, 93,207, 8, 81,200, 49,102,222, 79, 0,128,162, 89,207, 59,239, +221,158,103,223,113, 30,147,248,159, 7,192, 48, 12,120,158, 7,203,178,205,198, 89, 93, 93,109,120,232,161,135,182, 7, 7, 7, +175,215,106,181,240, 35,224, 80, 84, 84, 4,142,227,188,230,119,150,101, 49,115,230, 76,156, 57,115, 38,160,184, 27,141, 70, 44, + 88,176, 0,118,187,189, 17,175,248,221,125, 95,128, 34,235,253,161, 67,135,142, 94,179,102, 77, 24,195, 48,248,236,179,207, 32, +149, 74, 49,124,248,112, 68, 68, 68, 96,195,134, 13,144, 74,165,120,253,245,215,105,230,163,160,160,240, 85,231,241, 0,110, 4, + 16,233, 48, 17,234, 0,132,186, 28, 82,225,248,140, 20,127, 51, 12,179,207, 3, 79, 47,199, 49, 21, 12,195,236,115,249,109, 6, + 32,243,176,191, 10,128,194,177,153,208,224,254,167,185, 92, 71, 60, 15,222,174,203, 1, 13,235, 15, 1,216, 2, 96, 96,102,102, +230, 86, 0, 40, 45, 45,189,163,180,180, 20, 0,144,146,146,114, 50, 55, 55,183,163,168,121, 28,205, 83, 82,155,205,214, 65,108, +170, 18,221,162, 33, 67,134,248,124,195,183, 89, 44,151, 9, 16, 79, 90,202, 83,115,133, 55, 1, 99,177, 88,240,192, 3, 15, 0, +128,215,135,142,235, 22,128,118,131,217,108, 6,199,113, 72,109, 29,137, 73,195,210,113, 19,177, 66, 87,207,192, 86,171,195, 61, +106, 43, 78,118,238,142,249,231, 43,112, 78, 91, 15,142,227, 2,226, 20, 4,193,171,200,146, 72, 36,152, 55,111, 30, 30,122,232, + 33, 72, 36,146,128,248, 92,239, 81,114,114,242,154,220,220,220, 8,134, 97, 76,142,123, 36,183,217,108, 26,155,205, 22, 97,183, +219, 35,154,114,143,174,103,216, 4,193, 99, 62,244,150,103, 3,185, 79,129,112, 86, 87, 87, 27, 50, 51, 51,119,203,229,242,133, +209,209,209, 37,197,197,197,126,133,150,187,248,113,127,169,248,228,147, 79, 48,103,206, 28, 12, 26, 52, 40,160,112,154, 76, 38, + 48, 12,131,249,243,231, 95,246,223,212,169, 83, 47,187,158, 31, 78, 6, 0, 27, 23, 23,247,236,186,117,235, 52,226,177,173, 90, +181, 2,207,243,232,210,165, 11,130,131,131,177,125,251,118,216,237,246,128,203, 37, 5, 5,197,181, 11, 79, 90,196, 5,253, 39, + 78,156,216, 51, 43, 43,107,122, 70, 70,198,119, 59,119,238, 92,202, 48,204,106,151, 58, 49,211, 81,191,174, 22,127, 19, 66,122, +185,138, 30,135, 88,139,100, 24,102,181,120,188,235,111,241,147, 16, 50, 4,128, 76,252, 61,113,226,196,180,172,172,172,233, 19, + 38, 76,120,115,198,140, 25,210,137, 19, 39,118,205,202,202,154, 46, 94,199, 83, 56, 60, 57, 90, 62,215,158, 18,155,168, 78,157, + 58,229,173,137,202,245, 1,224,179,182, 84,181,138,116, 58, 89,239, 37, 70, 56,247, 79, 41,174,113, 62,192,230,246,104, 7,149, + 74,133, 97,239,125, 20,144, 83,100, 54,155, 81, 94, 94,238,116, 25,252,109,129,114, 42, 21, 65,200,126,185, 11,138,170,100,120, +119, 87, 53,214, 28, 62, 3,158,231,113,123,231, 46,184, 67, 26,140,183, 19,101,120,249,116, 33,172, 36,176, 62,189,132, 16,143, + 2, 75,252, 46, 54,161, 4, 42,180,220,238, 81,145,209,104,172,202,203,203, 51, 8, 13, 15,118, 5, 33, 36,140, 97,152, 58,135, +203, 21, 27,232, 61,186,158,145,217,173,173,211,117,218, 19, 60,216,185,127,164,238,168,243,158,140,159,247, 33, 0, 96, 80,247, +155,253,150,135, 64, 56,171,170,170, 12,125, 7, 15,220,106, 55,152,191, 25, 61,122,116,193,230,205,155, 21,129,132,213,147,208, + 18, 93, 91, 81,100,113, 28, 7,179,217, 28, 80,220,205,102,179,215,242, 33,149, 74,175,196,209,130, 78,167, 51,175, 92,185, 18, +115,231,206, 69, 68, 68, 4,134, 14, 29,138,216,216, 88, 44, 95,190, 28,132, 16, 60,255,252,243, 80, 40, 20,162,123, 77, 51, 32, + 5,197,245, 13, 95, 90, 68,158,149,149, 53,221, 93,200,184,254,118, 21, 80,110, 98,202, 85,172,165,249,121,254,175,118, 23, 79, +226,117, 25,134, 89, 61, 99,198,140, 76, 63,225,168,240, 38,180,124, 78,137,111, 50,153, 10,186,117,235, 22,144,154,208,235,245, +165,254,196,134,167,183,122, 87,151, 64,173, 86, 67,165, 81,131, 13,176,222,181, 90,173, 78,161,178,113,227, 70, 40, 20, 10, 12, + 31, 62,252,170, 28, 45,139,197, 2,153,148, 7,219, 42, 26, 99,102,109, 70, 85,157,193,249,128,217,146, 95,128,131,101,229,120, + 57, 99, 48, 84,138,114,212,155,205, 1, 57,111,130, 32, 92, 38,178, 56,142,195, 3, 15, 60,224,116, 19, 92,251,173,192, 71,211, + 97, 68, 68,196,126,142,227, 18, 92,238, 81, 80, 74, 74, 10,240, 71,191, 30, 70, 16,132,250,208,208,208, 31, 1,196, 17, 66, 18, + 0, 4, 7,114,143, 40, 60,231, 79,247,253,130,155, 83,117, 37,156, 85, 85, 85,134,204,204,204,221,118,131,249,155, 11, 23, 46, +236, 6, 16,116,211, 77, 55, 53, 89,104,137, 2,139,231,121,204,156, 57, 19,115,230,204,113,254, 31,168,208,178,217,108,141, 4, +212,233,211,167, 27, 93,203, 93,216,249,105, 54, 37,104, 24, 93, 40,164,164,164, 56,207,137,137,137, 65,104,104, 40, 4, 65,128, + 32, 8, 8, 10, 10,130, 66,161,128, 84, 42,165,153,142,130,130,194,151, 22, 49, 76,152, 48,225, 77,134, 97, 86, 59,156,165, 99, + 62, 4,149, 39,237,209,203, 77,172, 85,120, 57, 46,211,147,216,114,253, 46, 98,226,196,137,105,238,225,240,212, 92,233,172, 85, +221,166,221,111, 4,215, 38,170,230,122,136,249,122,144,169, 67, 53, 80,168, 84,144, 72, 88, 48, 12, 67,252,113, 89, 44, 22,103, +197,255,204, 51,207,248,236,183, 18,104,127, 42,139,197, 2,150,147,224, 98, 76, 50,236,236, 54,231,185,226,198,114, 60,206,197, +116,132,228,212, 33,240, 1, 62,112,221, 29,173,231,159,127, 30, 11, 22, 44, 0,203,178,206, 52,225, 56, 14,237,219,183, 71, 65, + 65,129, 79, 46,142,227, 18,206,157, 59, 23,229,154,142,162,136, 37,132,192,110,183,163,109,219,182,198,188,188,188, 23,105,209, +189, 58,145,229,109,191,221, 46, 4,236,194,120, 58,174,170,170,202, 48,106,212,168,173,181,181,181,223,220,112,195, 13,167,209, +120, 10, 4,191,124, 28,199, 53, 18, 88,162,200,250,244,211, 79, 27,137, 34,171,213, 26,208,139,128,213,106,189, 76,240,124,252, +241,199,141, 62, 1,160, 79,159, 62, 1, 57,195, 0, 8,203,178, 68, 42,149,226,182,219,110, 67,215,174, 93,241,243,207, 63, 67, + 16, 4, 60,247,220,115, 80, 40, 20,152, 61,123, 54,108, 54, 27, 62,248,224, 3,234,104, 81, 80, 80,248,210, 34,166, 25, 51,102, + 28,155, 49, 99,134,211, 89,114,119,180,188, 60,119,239,116,136,170, 72, 81,164, 1, 48,121, 18, 68,158, 92, 50,119, 1,230,186, + 47, 43, 43,107,186,123, 56,220,155, 43, 27, 9,173, 63, 11,165,199,143,226,163, 91,210, 1, 52,110, 46,156,119,115, 71,168,212, + 42,168,130,213, 24,181,106, 27, 0, 56, 42,253, 9, 1, 57, 90,162,208,170,170,170,242, 41,178,154,226,104,177, 50, 14, 43, 18, + 46,129,200,120,112,102,107, 35,161, 37,225,120, 20, 69, 36,131,229,165,224,236,182,128, 56, 9, 33,151, 53, 21,142, 29, 59, 22, + 12,195, 56, 71,136,117,235,214,205,149,139,241,247,112,124, 45,188,161, 15,158,123,115,236, 7,149, 70, 90, 98,175, 36,127,238, +255, 18, 39,127,120, 22, 0,208, 87,167,115,222,139,105,221,254, 24, 59, 48,235,232, 86,167,251,248, 30, 94,189, 34,206,170,170, + 42,195, 77,157,210,118, 75,195, 67,190, 57,127,254,252,110, 0,236,131, 15, 62, 24,218,173, 91,183,128,202,164, 56,184,194, 93, +100,185, 58, 89,226,167,159, 17,182, 46,194,209, 30,144,128, 18,155, 17, 3,200,243, 68,204,219, 26,141, 6,106,181,218, 57,226, + 54, 40, 40, 8, 74,165,210,217,191, 51, 64,225, 70, 65, 65,113,253, 34, 76, 20, 58, 14,177,212,200,105,114,244,173,202,116,253, +237,201,241,114, 56, 80, 57,126,234,215, 53, 14,129,230, 17,162,179,230,118,206,106,111, 34,141, 19, 21,164,235,103, 76, 76,204, +175,106,181, 58, 57,208,216, 55,101, 20,155,221,106,185,204,217, 98, 24, 6,234, 96, 53, 20,106, 21, 20,193,106,175,174,151, 47, +161, 37, 58, 69,226, 67,103,225,194,133, 80,171,213,248,215,191,254,213,228, 62, 90, 78,161, 37,101,177, 65,190, 9, 18, 25,215, + 72,100,113, 28, 7, 9,207,163, 84, 29, 11,150,231,193,217, 2,115,201,106,107,107,193,113, 28, 38, 77,154,228,124,131,119, 21, + 89, 77,137,179, 47,176, 12, 35,186, 91,242,118,237,218,189,202, 48, 76, 34,128, 36,157, 78, 39,191,120,241,226,173,180,188,250, + 80, 6,118,235,101, 46,148, 55,247,245, 74, 57, 69, 39, 75, 26, 30,242, 77,199,142, 29,157, 78,150, 82,169, 20, 71,155,250,191, +199, 44,235, 81,100,185,143, 16,228, 56,174, 33, 47,251, 25, 29,233,234,104,205,152, 49,195,201,235,234,100,137,104, 74, 57, 18, +195,186,117,235, 86, 28, 60,120, 16,207, 60,243, 12, 20, 10, 5,230,204,153, 3,155,205,134,169, 83,167, 66,161, 80, 64, 38,147, +209,204, 71, 65, 65,221,172, 70, 90,196, 13, 21,110,253,160, 24, 55, 81, 83,225, 73, 96,185, 54, 19,138,223, 25,134,177,122,224, + 53,187, 53, 41,186,239, 23, 63,171,102,204,152,177, 89,116,178, 92,246, 55, 10,135, 95, 71, 75, 46,151, 39,231,229,229, 57, 39, +194,244,245,105, 54,155, 49,104,208,160,128,157, 49,113,212, 33,199, 73, 26, 9, 11,101,176, 26, 74, 77, 48, 20,106,181,187,224, + 96,252, 85,226,226, 27,177,171,208,154, 60,121, 50, 56,142,195,130, 5, 11, 0, 0,175,190,250,106,192,125,180, 68, 78,216, 25, + 20,147,179, 72,159, 53, 18,230,111,173, 40,219,241, 59, 56,142, 67, 84,239, 59, 32,220, 52, 18,122,133, 26,156,221, 22,240,168, +195,234,234,106, 20, 20, 20, 64, 34,145,224,149, 87, 94,105, 52,215,145,251, 72,182,141, 27, 55,250,141,187, 39, 39,107,242,249, +106, 39,143, 66,161, 96,127,255,253,247,100, 65, 16, 82, 12, 6, 67,187, 62,125,250, 8,180, 40,251, 17, 69,130, 45, 32, 81, 21, +104,254,116,231, 20,251,100,213,214,214,126,115,254,252,249, 61, 0,216,209,163, 71,135, 42,149, 74,124,245,213, 87,122, 0,178, +229,203,151, 43,252,137, 34, 49,223,248, 19, 89, 60,207, 55,228,229, 64,226, 78, 26, 79, 89,226,175, 99,124, 32,121, 94, 12, 43, +195, 48,176,219,237, 80, 40, 20,141,156,172,160,160, 32,200,229,114,154,241, 40, 40, 40,252,213, 37,251, 2,174,199, 9,233,229, + 34,170,246, 93, 9,111, 83,174,231, 15,156, 55,161, 97, 50,153,112,226,196,137, 64,121, 2,158, 24,179,117,207,155,241,222,133, + 90, 48, 12,131,255,246,185, 1, 42,141, 26, 74,149, 10,247,255,188,213, 89,113, 31,157,254, 42,228, 42, 53,226,250, 13, 13,168, + 34, 23,155, 14, 93,133, 86, 77, 77, 13,120,158,199,251,239,191, 15,150,101,241,193, 7, 31, 32, 62, 62, 30, 23, 47, 94,196,242, +229,203, 3,114,180, 36,118, 9, 98, 31,235, 4,229,216, 16,104, 30,235,143,176,219, 38,227,130,153,195, 78,163, 18,253,141,199, + 33,219,240, 41,204,130, 61,224, 17, 88, 54,155, 13, 91,183,110,117,239,240,238,236, 83,101,179,217, 96,181, 90, 97,177, 88,240, +193, 7, 31, 4, 50,194,243,178,251, 38,166,161, 99, 18, 84, 73,110,110,110, 36, 33, 36, 28, 64, 8,128, 74, 90, 92,125, 35,182, +247,243,136,236,249, 52, 0, 96,213,140, 39,156,251, 39, 29,253, 35,127,206,252,182, 97, 1,128,142, 73, 67,155,196, 89, 85, 85, +101,184,125, 80,159, 28,163,192,127,221,165, 75,151, 70, 78, 86, 80, 80, 16,227,248, 29,144, 93,198,178, 44, 36, 18,201,101,205, +133,222,196, 86, 32,125,180,108, 54,155,115, 34, 81, 95,253, 25,175,196,209,122,226,137, 39, 16, 27, 27,235,116,178,222,123,239, + 61, 40, 20, 10, 76,156, 56, 17, 86,171, 21,159,126,250, 41,205,124, 20, 20, 20,127,186, 40,251, 51,224,177, 38, 53, 26,141,133, + 93,187,118,133,151,255,226,131,130,130,120,183, 72,197,181,111,223, 62,215, 67, 19,226, 16, 0,217,158, 42,117,134, 97, 16,172, + 9, 70,144, 90, 5,165,155,139, 21, 20,172,129, 92,173, 6, 43,245, 88,153, 95,198, 41,246, 45,113, 21, 90,226, 86, 91, 91, 11, +158,231, 49,119,238, 92,104, 52, 26,152, 76, 38,191,156,226, 67, 71, 34,145, 64, 95, 84,135,147,211,179, 33, 11,218,137,118, 67, + 31, 66, 44,175,128,116,251,143, 48,216,173,254, 38, 44,189,140,179, 67,135, 14,120,231,157,119, 46,155,214,193, 27,226,227,227, +253,198,221,221,201,154,121, 67, 27, 72,101, 82,140, 63, 94, 4,147,201,196, 60,244,208, 67, 2, 0, 3,128, 10,131,193,112, 62, +144,244,108, 6,252,227, 57,125,141,138, 21, 33, 16,187, 39, 1,227,145, 83,116,178,140, 2,255,117, 65, 65,129,232,100,133, 40, +149, 74,124,241,197, 23,122, 0,236,212,169, 83,149,137,137,137,146, 64,242,146, 68, 34,193,172, 89,179, 60,246,201,242, 36,186, +154, 82,142, 92,207, 29, 48, 96,128,199, 9, 75,189,136,183,203, 56,197,176, 70, 68, 68, 56,157, 44,187,221,238, 28,109, 40,206, + 62,239,227,165,130,230, 79,202, 73, 57,175, 31,206,107, 18, 30,107,224,139, 23, 47,222,238,237,132,182,109,219,230,229,229,229, +181, 23,151,226,112, 84,156, 82,163,209,216,161, 79,159, 62,126,173, 29, 65, 16, 32,151,203, 65, 8,193,173,239,100,129, 97, 1, + 22,141, 31, 98, 81,183, 12,134, 68,194, 65,104, 88,234,195,239,168, 67,131,193,208,232,225,224,105,171,175,175,135,201,100, 10, +120, 54,111,163,209,216,104, 10, 6,134, 8, 56,247,219,178,203, 70, 31,138, 91,160,253,118,130,130,130, 26, 53,253,248,113,172, +152, 64, 28, 45,215,166, 71,169, 76, 10, 78,202,139,142, 86,221,233,211,167, 71,209,108, 30, 56,196, 1, 11, 0,144,218,103, 56, + 4,193, 14, 98,183, 55, 90, 38,169, 83,242,237, 16,136, 29, 22,171, 30, 38,147,201,223,180, 39, 76,101,101,165, 97,212,168, 81, + 91, 1,252,239,158,123,238,201, 69,195,236,194, 68,173, 86,203,121,158, 23, 0, 84, 3, 32,151, 46, 93, 10,185,112,225,130, 96, + 52, 26,219,248, 11,231,154, 53,107,112,226,196, 9,244,235,215,175,209,114, 80,162, 43,234, 58,187,123, 32,249, 83,108, 46,247, + 52, 35,188, 55, 33, 23, 40, 36, 18, 9, 66, 66, 66, 32,149, 74,241,254,251,239, 67, 42,149, 66,169, 84, 2, 0, 62,253,244, 83, +231,228,171, 20, 20, 20, 20,215,141,208,242, 87,111,250,104, 86,244,217,132,104,179,217,138, 19, 19, 19,155,116, 49,187,221, 94, +230, 71,184, 21, 47, 95,190, 92,234,234, 66,248,251, 36,132,148,249,121,216, 22,175, 90,181, 74,234,201,221,240,182,192,180, 63, + 78,187,221, 94,156,148,148,228,213, 49,241, 4,171,213,122,193,159,104,205,170, 48, 52, 18, 9,227,143, 23,121, 93, 59,145,194, +111, 94,243,145, 63,223,186,210,252,121, 58, 53, 53,245, 66,104,104,232,218,232,232,232,170, 29, 59,118, 68,244,234,213, 43,194, +245,152, 94,189,122,197,186,157,102,134,247,117, 14,193, 48, 76,241, 61,247,220,227, 49,207,139,162,201, 67,254, 44,246,151,231, +247,238,221, 43,117, 61,223, 27,191, 75, 57, 42, 14, 64,184,158, 75, 79, 79,103, 93,121,188,229,125,171,213, 90, 65,115, 33, 5, + 5,197,117, 47,180, 12, 6, 67, 81,215,174, 93,109, 94,254, 59,239,235,220,170,170,170,158,205, 29, 1,171,213,218,231,159,192, + 89, 89, 89,217,172,113,183,217,108,197,142, 9, 74,125, 30, 67,179,248, 95,119,143, 0,160,188,188,252, 38, 0,208,233,116,240, +183,172, 78, 19, 4, 97,179,231, 79,155,205,214,167, 37,210,180,186,186, 58,131,230, 44, 10, 10, 10, 42,180,154, 0,186, 24,241, +223, 3, 45, 33, 90, 41, 40, 40, 40, 40, 40, 40,154, 23, 44, 77, 2, 10, 10, 10, 10, 10, 10, 10,138,150, 1,131,134,145, 3,158, +208,148,209, 4, 67,174,224,218,217,148,147,114, 82, 78,202, 73, 57, 41, 39,229,188,238, 56,253,113,211,209,140, 45, 44,192, 40, + 39,229,164,156,148,147,114, 82, 78,202,121,253,113, 94,147,160, 77,135, 20, 20, 20, 20, 20, 20, 20, 20, 45, 4,142, 38,193, 95, + 6, 9,154, 48,163,190, 63, 16, 66,194, 0,120, 91, 48,206,204, 48,204,165, 43,224,100, 0, 72, 29,155, 56,209,145, 21,128, 5, +128,133, 97, 24,226,159,227, 93,182,164, 36, 44,141,216,249, 94,132, 97,120, 65,192,225, 54,109, 90, 31, 98,152, 59,204, 0,160, +138,238,212, 89,173, 82, 12, 49, 89,204,201,114, 94,118,162, 70, 87,191,209, 84,158, 87, 72,179, 7, 5,197, 95,130,187, 0, 76, + 65, 67,183,146, 25, 0,150,209, 36,161,160,104, 33,161,165, 86,171,247,179, 44,155,224,111,126, 30, 17,142,181,204,138, 47, 93, +186,212,179, 9,215, 30,165, 86,171, 7,241, 60,127, 11, 0, 88,173,214, 29,245,245,245,155, 1, 44, 7, 96,187,194, 56,105, 0, + 60, 0,224, 17,199,239, 37,142,202, 66,123,133,124, 93, 67, 66, 66,126,224,121,158, 84, 86, 86,246, 6,128,136,136,136,221, 86, +171,149,209,106,181,247, 3, 56,210, 68, 62,150,231,249,153,189,123,247,238,191,109,219,182,255, 1,152,219, 76,247, 82,206,178, +172, 71,129, 34, 8, 66,210, 21,136, 44, 41,128,144,185,115,231, 70, 44, 94,188, 56,189,184,184,184, 11, 0, 36, 36, 36, 28, 29, + 61,122,244,161,113,227,198, 85, 17, 66,106, 25,134,177,248,226, 41, 41, 9, 75, 43, 47,205,127,166,172,252,196, 3, 0, 16, 19, +219,101,153, 68,194, 74, 9, 57,176, 75,217,234,145, 86,237,219, 37, 61,253,221, 87,115,165, 73,201,173,177,105,231,193, 27,199, +189,248,102,218, 5,224, 19, 42,182,254, 60, 4, 7, 7,239,103, 89, 54,193, 87, 25,247, 84,230,237,118,123,113,117,117,117, 79, +111,156, 28,199, 37,248,170, 47, 60,237, 19, 4, 33,191,178,178,210,227, 84, 19, 26,141,102, 23,199,113,201,129,114,137,159, 54, +155,173,216,219, 40, 93,141, 70,179, 95, 34,145, 36,248,138,167,167,255, 4, 65,200,175,168,168,240, 22,206,203,226,222, 28,225, +188, 18, 78, 95,225, 20,235, 35, 0,159, 70, 68, 68,220, 92, 85, 85,245, 40,128, 55,181, 90,109, 55,137, 68,130,240,240,240, 55, +205,102,243,153,144,144,144, 47,107,107,107,119, 2,120, 17, 0, 93, 47,149,130,162,185,160,209,104,202,234,235,235,137, 8, 65, + 16,136,213,106, 37, 38,147,137, 24, 12, 6,162,211,233, 72,125,125, 61,209,106,181,164,182,182,150, 84, 85, 85,145,200,200, 72, +247,201, 27,189,181,225,118,209,104, 52,121, 89, 89, 89,166,130,130, 2, 98,177, 88,136,197, 98, 33,133,133,133,228,163,143, 62, + 50,105, 52,154, 60, 0, 93,188,156, 59,196, 75,101,113, 27,128,165,233,233,233,230, 53,107,214, 16,163,209, 72,116, 58, 29, 89, +182,108, 25,185,225,134, 27,204, 0,150, 58,142, 97, 3,228, 4,128,190, 49, 49, 49,197,103,207,158,181,111,220,184,209, 18, 18, + 18,146, 29, 18, 18,146, 93, 88, 88,104, 63,123,246,172,208,170, 85,171, 98, 0,125,155, 16, 78, 0, 24, 57,126,252,248,178,194, +194, 66, 50, 96,192,128,195, 46,251, 25,248, 95,231,110,136, 39, 39,139, 16, 18, 67, 8,137, 69,195, 36,151,151,109,132,144, 88, +199, 49, 97, 1,114,170,242,243,243, 91, 71, 71, 71,103, 49, 12, 99,118,231, 99, 24,198, 28, 29, 29,157,149,159,159,223,154, 16, +162,242,197, 89,124,126,222,147,107,215, 12,174,209, 93, 58, 69,116,151, 78,145,255,125, 61, 80,251,212,184, 71,151,198,182,237, +190, 32, 52, 33,109,238,137, 83,167,231, 19, 66,230,111,222,151, 55,127,242,231,191,206,191,119,220,236, 47, 34, 18,211,159,106, + 66,122, 94, 13, 40, 39,128,208,208,208, 82,157, 78, 71, 8, 33,196,110,183, 19,139,197, 66, 76, 38, 19,209,235,245,164,190,190, +158,212,213,213, 57,203,121,109,109,173,243,123, 84, 84,148,215,242, 30, 22, 22, 86,102, 48, 24, 26,213, 29,102,179,217, 89,127, +232,245,122,162,215,235,137, 78,167,115,110,245,245,245, 36, 46, 46,174,200, 71, 56, 47,138,225, 20, 4,129,216,108, 54, 98,177, + 88,156,188, 70,163,177,209,102, 50,153,136,201,100, 34,137,137,137, 1,135, 51, 16, 78,163,209, 72, 18, 18, 18, 74,188,113,134, +135,135,151, 25,141,198, 70,156,174,241,119,231, 21,127,199,196,196,148, 54,133, 51,144,112,250, 74, 79, 7,230,230,230,230, 18, +131,193, 64,226,227,227,171,238,191,255,126,171,221,110, 39,107,214,172, 33,233,233,233,194,192,129, 3, 45,149,149,149,228, 95, +255,250, 23,241,241, 82, 72,203, 17,229,164,184, 18, 71,139, 97, 24,168, 84, 42,124,255,253,247, 94,151,227,112,253,222,166, 77, +155, 64,175,217, 51, 57, 57,121,235,246,237,219, 21,177,177,127, 76,136,109, 54,155, 17, 22, 22,134,231,158,123, 78,118,215, 93, +119,181, 31, 58,116,232,238,115,231,206, 13, 0,176,223, 15,223,125,145,145,145,159, 77,154, 52, 41,250,193, 7, 31, 68, 68, 68, +163, 73,183, 49,106,212, 40,220,127,255,253,210,220,220,220,135, 22, 46, 92,248,208,188,121,243, 74,235,235,235,199, 1,248,209, + 23,169, 66,161,184, 39, 46, 46,238,139,237,219,183, 71, 69, 69, 69, 33, 37, 37,133,125,253,245,215,219,119,232,208, 65,145,144, +144,192, 94,188,120, 17, 63,255,252,115,252,195, 15, 63,188,162,172,172,236,105,139,197,178, 50,128,184,203, 34, 34, 34,222,124, +250,233,167, 91,105,181, 90,219,129, 3, 7,242,196,253, 50,153,108,106, 70, 70, 70,175, 45, 91,182,124, 11,224,203, 43,113,178, + 8, 33, 90,252,209,196, 39,194, 42,254, 31,136,179, 69, 8,145, 29, 62,124, 56, 60, 35, 35,227, 71,147,201,212,253,153,103,158, + 57, 63,125,250,116,133, 70,163,209, 0, 96,180, 90,237,165, 41, 83,166,152,103,207,158,253, 70,231,206,157, 7,239,218,181,235, + 62, 66,136,213, 33,200, 46,231, 99, 24,103,120,138, 46, 84, 96,235, 78, 65,246,206,196, 87, 19, 62,156,150,124,110,223,241, 34, +129, 83,104,240, 75,206, 49,148, 85,213,227,215, 93,199, 17, 19, 17,204, 72,229,124, 90, 72,252, 13, 3,106, 47, 28,207,129,143, + 25,210, 41,154, 7, 12,195, 64,169, 84,226,151, 95,126,185,108,233, 42, 79,203, 90,113, 28,135,208,208, 80,191,171, 27, 4, 5, + 5, 97,227,198,141, 30,215, 94,244,180,164, 79, 72, 72, 8,124,189,108, 48, 12,131,160,160, 32,236,216,177, 3, 44,203,122, 92, + 26,200,125,159, 74,165, 2,235, 99,173, 43,145, 51, 39, 39,199, 47,151,248,169, 86,171,129,134,166,127,239,133, 82, 46,199,246, +237,219,189,198,217,253,187,218,177,222,171, 63,206, 29, 59,118, 52, 90,250,203,125, 73, 48,215,223, 42,149, 10,140, 31,210,176, +176,176,222, 9, 9, 9,216,187,119, 47,150, 47, 95, 30,158,150,150,134,211,167, 79,131, 97, 24, 76,159, 62,157,185,225,134, 27, +248,210,210, 82,244,235,215, 15, 63,253,244, 83, 31,173, 86, 75, 11, 12,197, 95, 2, 66, 8, 15,224, 70, 0,145,104,232,118, 83, + 7, 32, 20, 13, 43,105,200, 0, 84, 1, 80, 56, 54, 19,128,122, 0,173, 28,167, 87, 58,234, 22, 87,129, 80,225,186,248, 52, 33, +164,151,131, 91, 92,161, 34,210,229, 88,241, 26,238,191,221, 63, 61,114,115, 0,176,122,245,106,241, 97, 54, 48, 51, 51,115,171, +107,228, 2, 17, 89,226, 58,101, 30,202,180,251, 16, 77,185, 74,165,250, 97,247,238,221,138,200,200, 63,226, 96, 50,153, 80, 87, + 87,135,250,250,122,212,213,213, 33, 56, 56, 24,203,151, 47, 87, 12, 30, 60,248,135,186,186,186, 14,142, 68,243,198, 57,235,226, +197,139,209, 54,155, 13, 50,153,231, 46, 74, 44,203,162, 83,167, 78,120,243,205, 55, 49,108,216,176,152, 65,131, 6,205,114, 19, + 90,151, 13, 37, 85, 42,149, 95, 28, 56,112, 32, 74,169, 84, 34, 47, 47, 15,197,197,197, 24, 63,126,124,107, 65, 16, 80, 84, 84, +132,211,167, 79,227,194,133, 11, 88,184,112, 97,212,136, 17, 35,190,240, 32,180, 60, 13, 79,125,230,229,151, 95,238, 24, 22, 22, +198,126,244,209, 71, 53, 58,157,238,255, 28,251,223,153, 51,103,206, 99,253,251,247,143,250,247,191,255, 77,118,236,216,177,216, +113,227,188,166,167,107,159, 44, 71, 51, 31, 28,153,239,164,219, 57,157, 92,254, 7, 33, 36, 6,128,137, 97,152, 26, 15,156, 12, +128,144,161, 67,135,190, 98, 50,153,186,111,223,190,253,204, 45,183,220,146, 8,224,162,152,249, 66, 66, 66, 84,179,102,205,138, +206,204,204,204,189,245,214, 91,187, 15, 29, 58,244,149,138,138,138,233,132,144, 10,151, 62, 91, 78, 78, 65,192,225,152,216, 46, +203,114,118,141,123, 96,203, 14,179,244,213, 23, 39,159,111,211, 58,169,246,112, 94,181,253,120,126, 5,234, 12, 54,220,123,107, +195, 2,230,189,187,180,193,103,223,111,199,115, 47,189,197,255,184,108,209,253,103, 8, 84,245, 37,199,215,248, 72,207,171, 5, +229,132,179,137, 9, 60,207,227,142, 59,238, 0,195, 48,151,173,229,201,243, 60,118,237,218,133, 91,111,189, 21, 60,207,227,137, + 39,158, 8,136,147,227, 56, 12, 29, 58,212,185,142,162, 43,159,187,104,240,162, 9,178,221, 42, 91,112, 28, 7,150,101,189, 46, +164,237,206,233,175, 94, 18,195,233,139,203,245, 63,127,225,116, 44,121, 20,176,200, 10,148, 83, 12, 39,199,113,232,211,167, 15, + 14, 29, 58,228, 83,116,121,209,151,141,226,126,233,210,165, 49, 29, 58,116,200,153, 59,119,110, 56, 0, 84, 85, 85, 57, 23,188, +151, 72, 36, 56,117,234, 20,204,102, 51,222,125,247, 93,139, 86,171,253, 55, 45, 71,148,179, 37, 57,125,105, 17, 0,253, 39, 78, +156,216, 51, 43, 43,107,122, 70, 70,198,119, 59,119,238, 92,202, 48,204,106, 66, 72,166,248, 57,113,226,196,180,172,172,172,233, + 19, 38, 76,120,115,198,140, 25,199, 24,134, 89, 13, 0,238,191, 29,117, 73,166,155,136,139, 20,121, 28,101,174,209,177,158,126, +187,127,122,226,110,228,104,101,102,102, 50,142, 72, 50,174,149, 90,160, 66, 43,144,181,251, 56,142,123,126,250,244,233,209,190, + 68, 86,125,125, 61, 74, 74, 74,144,152,152,136, 39,158,120, 34,122,238,220,185,207,219,108,182,143,125,208, 74, 37, 18, 9,246, +238,221,139,242,242,114,116,237,218, 21,201,201,201,141, 14, 56,123,246, 44,214,174, 93,139,154,154, 26,244,232,209, 3,104,232, +220,237, 17,221,186,117,123,183, 83,167, 78, 67, 89,150,181, 41, 20, 10, 28, 62,124, 24,221,187,119,199,247,223,127,143, 54,109, +218, 64,169, 84, 34, 55, 55, 23, 93,187,118,197,214,173, 91, 17, 25, 25,137,244,244,116,155, 86,171,221, 86, 93, 93,189,249,220, +185,115,239,122, 11,103,124,124,252,228,167,158,122, 74, 86, 82, 82, 34,124,243,205, 55,219, 1,108, 7,240,252, 91,111,189,245, +248,176, 97,195,162, 14, 30, 60, 88,187,111,223,190, 61, 94, 68, 86, 32, 78,150,205,253,161,100,183,219, 77, 6,131,193,108, 50, +153,172, 44,203, 22, 50, 12, 99,182,219,237, 29,188,153, 16, 99,199,142,109, 91, 89, 89,249,220, 75, 47,189, 84,224, 16, 89,167, +208,208, 1, 30, 0, 96,179,217, 76,245,245,245,218,140,140,140,196,135, 31,126,248,204,210,165, 75,159, 27, 59,118,236,242,111, +190,249,166, 30,128,193,157,176, 77,155,214,135, 36, 18, 86,170,171, 11,207, 95,177,252,203,151,215,174,122,190,117, 81,209,133, +246, 17,173, 34,117, 82,117,100,201,242, 37, 95,239, 7, 96, 46,169,208,226,200,217, 82,240,188, 4, 39,138,106,209,255,246, 81, +252,153,188,105,125, 1,172,161,239,114, 45,255,178, 40, 46, 66,189,101,203, 22,159,142,214,174, 93,187,192,243, 60, 20, 10, 5, +102,207,158,237,147, 84, 20, 6,162, 91,228, 79,204,136,139,163,251,114,159, 4, 65,112, 46,244,238,190,253,223,255,253, 31, 94, +122,233,165, 70,215,112,136, 13,198, 31,167,183,240, 37, 38, 37,161,188,172,172,209,190, 64, 22,165,183,219,237,224,121, 30, 11, + 22, 44, 64,102,102, 38, 86,175, 94,237,243,243,142, 59,238, 0,203,178, 36,144,244,236,211,167, 15, 44, 22,139, 51,204,167, 78, +157,242,200, 59,111,222, 60,127,193,188, 11,192,148,238,221,187,107, 6, 13, 26,132,156,156, 28,220,127,255,253, 38,139,197,146, + 7, 0,119,222,121,103,234,220,185,115,101, 7, 14, 28, 64, 68, 68, 4,127,254,252,249,255,129,118,144,167,104, 97,120,210, 34, +226, 51, 47, 43, 43,107,186,187,136,113,133,248, 63,195, 48,171,103,204,152,145,233, 42,138, 92,127,139,174,147,155,136, 75,115, +117,164, 92, 69,148, 55, 1,229,246,188,117, 61,190,194,163,208,114, 68,108,160,171, 11, 36, 86,190,254, 68,150,143, 55,199, 70, + 8, 9, 9, 25,126,239,189,247, 58, 69,142,209,104,116, 10, 44, 81,100,137,191,115,115,115,209,179,103, 79,105, 72, 72,200,240, +170,170,170,143, 3, 16,113,136,139,139, 67,101,101, 37,142, 30, 61,138,196,196, 68, 88,173, 86,172, 95,191, 30,181,181,181,224, +121, 30, 82,169, 20, 22,139,207,190,219,232,212,169,211, 29,139, 23, 47,238,185,104,209,162, 75,226, 27,221,146, 37, 75, 64, 8, + 65,100,100, 36,244,122, 61,202,202,202,176,121,243,102,216,108, 54,168,213,106,164,164,164,200,238,185,231,158,190, 83,166, 76, +225,125, 8,173, 62,247,223,127,127,136, 70,163,193,139, 47,190, 72, 44, 22,203, 12,199,190,201,227,198,141,139, 40, 44, 44, 52, + 63,249,228,147,123, 45, 22,203, 71,162,153,232, 42,112,188,220, 88,175, 78,150,213,106, 21,211,180,160,190,190, 30,173, 90,181, + 74,116,117,182,188,137,193, 29, 59,118,244, 1, 32,153, 58,117,106, 16,128, 50,215, 48,152,205,102,212,215,215, 67,167,211, 89, +107,107,107,203, 95,123,237, 53,219,210,165, 75, 37,142,115, 78,120, 18, 90, 12,115,135, 89,163, 81,202, 8,145,188, 53,127,254, +124,245,176, 97,195, 88,181, 90,141,186,186, 58,205,175,235,214,169, 7, 15,234,155, 50, 61,235,195, 13,154,132,174,101, 59, 14, +231,227, 66,105, 45,204, 86, 43, 82, 98, 67, 26,252, 48,138, 22,135, 99, 32,139,211,209,114, 21, 21, 57, 57, 57,184,253,246,219, +157,101, 93, 42,149, 54,114,190,252,113,114, 28,135,219,111,191,253, 50,135,103,203,150, 45, 30,221, 39,127,112, 21, 69,238,226, +200,147, 0, 99, 89,214,239, 2,235,162,155,231, 73,108,185,186,250,110,226,205, 95, 51, 7, 56,142,195,184,113,227,192,243, 60, + 94,127,253,117,112, 28,135,244,244,116,112, 28,135,140,140, 12,240, 60,143, 91,111,189,181,201,113,223,189,123, 55,186,119,239, +238, 12, 83,122,122, 58,122,245,234, 5,142,227,208,175, 95, 63,240, 60,143,161, 67,135, 6,194,249,102, 93, 93, 93, 55,181, 90, +141,220,220, 92, 72, 36, 18, 48, 12,115, 26, 64, 55, 0,136,141,141, 61,163, 6,111,130,189, 0, 0, 32, 0, 73, 68, 65, 84,215, +235,219, 26,141, 70, 60,245,212, 83,140,217,108,238,250,250,235,175,191,101, 52, 26,169,208,162,104, 49,184,107, 17, 23, 24, 38, + 76,152,240, 38,195, 48,171, 69,135,202,221,121,242,244,219, 67,221, 36, 58, 80,251, 28,101,181,151,155,136,171, 96, 24,102, 31, + 33,228, 78,111,231, 2, 48,187, 9,171, 70, 77,135,174,205,134,126, 29, 45,177,242, 13, 84,104,249,131,209,104,188, 49, 42, 42, +202,171,200,114,253, 52,155,205, 72, 78, 78,134,209,104,188,177,169, 15,141,216,216, 88, 88, 44, 22,124,249,229,151,144, 74,165, +144, 74,255,208, 23,102,179,111,179,232,248,241,227, 5,187,119,239,238,222,163, 71,143,176,159,126,250,169, 98,192,128, 1,145, +195,134, 13,131, 66,161,128,193, 96,128,213,106, 69,239,222,189,209,169, 83, 39, 20, 23, 23,227,215, 95,127,173,236,208,161, 67, +171, 61,123,246, 8,165,165,165,231,124, 80,223, 54,120,240, 96, 48, 12,131,117,235,214, 85, 2,216, 39,151,203,215, 78,155, 54, + 45,204,108, 54, 11,163, 71,143, 62, 95, 93, 93,253, 18, 0,139, 76, 38,155, 51, 96,192,128,140,236,236,236,111, 5, 65,152,221, +212,140,234,158,182, 58,157, 14, 65, 65, 65,129, 76, 37,193, 87, 87, 87,119, 1, 0,149, 74, 21, 14,224,140, 51,135, 27, 12,141, +196,176,217,108, 54,134,135,135,171, 0,192,113, 14,239,133, 51,210,102,195,138,115,231,242,131, 93,251,207,133,134,134,226,145, +135, 31,102,111,233,211, 71,214,237,198, 27,135,190,253,201,162,239,227, 34, 52,230,148,184, 8, 88,237, 86,100,111, 88, 47, 16, +193,186,129, 86, 59,127,142,208, 18,197,134,187,163,197,243, 60,182,110,221,122,217, 62,169, 84,138,255,254,247,191, 1, 9, 3, + 81, 84,121,107, 58,115,107,234, 98,252, 9, 24,158,231, 33,145, 72,176, 96,193, 2, 8,130,128,151, 95,126,185, 81,115,162, 43, +127, 64,118,158,139, 8,236, 52, 89, 0, 96, 70,241, 76,185,243,124,247,240, 58,206, 9,200, 37,155, 59,119,110, 64,142,214,157, +119,222,233, 87,184,186,182, 48,184,134,235,208,161, 67, 30,121,231,207,159,239, 55, 61,237,118, 59,214,172, 89,227, 20,169, 34, +222,126,251,237,167,100, 50, 89,244,182,109,219, 80, 90, 90, 10,157, 78,135,250,250,122,244,238,221, 59,133,101,217,195,165,165, +165,133, 39, 78,156,184,151,150, 30,138, 63,209,209, 50,205,152, 49,227,216,140, 25, 51, 60, 58, 86,238,206,146, 47,231, 73, 20, + 88, 14, 65, 20, 41,138, 55, 52,116,171,217,231,239, 92, 0, 50,247,166, 67,159, 70,144,155,138,156,226,169,242, 13,164,249, 48, + 64, 59,157, 99, 24, 6, 70,163,209,163,192,114, 21, 7, 22,139, 5,213,213,213,176,219,237, 87, 60,215,151,167, 55, 89,127, 66, +235,232,209,163,255,122,252,241,199, 75, 66, 66, 66,186, 85, 84, 84,148, 11,130,112,235,174, 93,187, 34, 57,142,131, 70,163,129, + 70,163,193,218,181,107,161, 84, 42, 49,110,220,184,114,187,221,158, 19, 28, 28, 28, 97, 48, 24,126, 47, 45, 45,125,219,171,130, +225,249,161,253,250,245,195,129, 3, 7,112,233,210,165,141, 0,210, 31,125,244,209,219, 91,183,110,205, 76,155, 54,205,120,246, +236,217,217, 0,202, 85, 42,213,226,197,139, 23, 15,234,209,163, 71,240,232,209,163,177,117,235,214,249, 0,140,129,198, 89,167, +211, 53, 18, 88, 90,173, 22,117,117,117, 80,169, 84,182, 0,211,140,199, 31, 35, 12, 65, 8,113,222, 27,135,155, 37,222, 31,194, +113,156, 56,170,209,155,200,130, 74,165,154,186,104,209, 34,133,251, 32, 5,187,221,142,178,178, 50,104, 52, 26, 76,122,251,109, +233,123,227,255,221, 93,162,142,222,197,178, 12,204, 22, 82, 67, 4,243,122, 93,217,131,219,128,119,105,205,243, 39, 64, 20, 6, +119,223,125,247,101,205,133, 82,169, 20, 27, 55,110,196,136, 17, 35,156, 47, 46, 61,122,244,240,251,114, 37, 10,131,187,238,186, +203,233, 12,173, 95,191,222, 99,179,159,232, 72, 5, 34, 8,197, 99, 95,120,225, 5,112, 28,135,207, 62,251, 12,175,188,242, 10, + 88,150,197,204,153, 51,193,178, 44,222,121,231,157,128, 69,166,171,128, 41,252,176,225, 51,225, 21, 45,170,230, 69, 3, 0,130, + 53, 26, 49, 66, 77,170,123, 56,142,115, 58, 89, 55,222,120, 35,120,158, 71, 70, 70, 6, 56,142,115, 58, 89,195,135, 15,119, 77, + 71, 18, 8, 39,199,113,200,203,203,115,134, 57, 35, 35,163,145,147,197,113, 28,238,188,243,206, 64,130, 57, 61, 52, 52,116, 74, +167, 78,157, 58,207,154, 53,139,151, 72, 36, 24, 60,120,112,106, 76, 76,204, 57,155,205, 22, 49,117,234, 84,165,135,115, 20, 0, +186,117,238,220, 89, 69, 75, 13, 69, 11, 58, 90, 83, 60,252, 21,230,218,231,170, 9, 47,146,171, 93,143, 23, 57,220,197,145,195, + 33,203,241,199,229,233, 92,127,224, 68, 5,233,203, 82, 15, 68,104, 57,108,103,159, 23, 83, 42,149, 71,202,203,203, 51, 20, 10, + 69, 35,145,229, 73,112, 73, 36, 18,148,150,150, 66,169, 84, 30, 49,153, 76,205,118, 19,253, 53, 29, 2, 48,158, 62,125,122,188, +203,239, 33,195,135, 15,255,102,227,198,141,177,217,217,217,216,179,103, 15, 34, 35, 35, 49,119,238,220,139,101,101,101,255, 2, +176,177,178,178,210,239,117,219,182,109,219, 69,173, 86, 99,199,142, 29, 0,176, 21,192,191,159,123,238, 57,198,106,181, 98,222, +188,121, 58, 0,235, 66, 67, 67,215, 44, 95,190,188,123,183,110,221,100,217,217,217,218, 61,123,246,252, 22,160,200,178, 11,130, +112,153,192,114, 77,211,224,224,224, 64, 28, 45,107, 72, 72,200, 81,173, 86, 59,202, 96, 48,104,229,114,121,176, 86,171, 53,185, + 10, 44,145,159,227, 56, 62, 47, 47,175, 4, 64, 74, 72, 72,200, 81,120,105,230,228, 56,110,240,224,193,131, 57,247,123, 80, 86, + 86,134,210,210, 82, 88, 44, 22,244,232,209,131,145, 48, 86,201,165,162, 35,110,211, 58, 80,145,245, 39, 57, 90, 68, 44,235,226, + 40, 65, 79, 35, 13,215,175, 95,239,252,205,178, 44,190,254,250,235,128, 68,209,198,141, 27,125,118, 88,119,107, 58,244,107,141, +139,199,127,254,249,231, 32,132, 56,157, 44,150,101, 49, 97,194, 4,200,229,114, 76,155, 54, 13, 19, 38, 76, 0,199,113,126,155, + 14, 93, 5, 76,210,235,122,215,151,163,134, 66,225,232, 15,197, 48,140,171,216, 98, 2, 21,111,190,220,188, 64, 90, 2, 92, 57, +197,243,130,130,130,188,118,132,119,227,244,117,129, 95, 0,228,199,198,198,238,200,200,200, 8,217,191,127, 63,102,206,156, 41, + 53,153, 76,109,178,179,179,157,215,245,148, 94, 58,157, 78, 65, 75, 14, 69, 75,184, 89, 62,254,174,112,235, 95,197,184, 54,227, +249,248,116, 63, 30, 46,251, 92,121, 43, 24,134,177,122,184, 94,133, 7,113,229,126, 13,215, 99, 42,188, 58, 90,254, 42, 11,127, +130, 43, 16, 71, 75,175,215,255,182,110,221,186, 94, 15, 63,252, 48,231,171,217, 80,167,211, 33, 58, 58, 26,199,142, 29,179,233, +245,250,223, 2,112,202,154, 83,104,185, 35,187,188,188, 92, 98,181, 90,209,190,125,123,196,199,199,195,104, 52,162,166,166, 70, + 2, 96, 99,128, 28, 82,149, 74, 37, 1,128,154,154, 26,160, 97,168,105,106,135, 14, 29,112,224,192, 1, 84, 87, 87,255, 8, 96, +216,148, 41, 83,122,244,238,221, 91,250,253,247,223,235,159,121,230,153, 31,173, 86,107, 64, 74, 67, 16, 4,179,205,102, 75,102, + 89,214, 82, 83, 83,115,193, 53, 61,163,163,163,195, 85, 42, 21, 83, 86, 86,102, 13, 68,104,117,235,214,109,239,249,243,231, 49, +117,234,212,138,233,211,167,119,168,171,171,187, 84, 91, 91,107,115, 21, 91, 70,163,145,109,213,170,149,124,222,188,121, 10, 0, +232,214,173,219, 94,111, 66, 75,167,211,181, 86, 42,255,120, 49, 54,153, 76, 40, 45, 45, 69,105,105, 41,202,202,202, 80, 87, 87, +135,148,148, 20,232,245,250, 68, 90,205,252,101, 66,171, 81,243,153,107,249,118,125,144, 55,165,172,187, 10,152,187,239,190,219, +217,183, 75,116,200,196,109,197,138, 21,238, 29,204, 3, 18, 90,159,127,254, 57, 94,120,225, 5, 4, 5, 5, 97,214,172, 89,141, +154, 14,221,197,129, 32, 8, 76, 32,113, 79,126,195,128,210, 57,225,224,121, 30, 17,207,148, 53,106,162,243, 32, 56, 2, 10,231, +244,233,211,155,165,233,208,149, 51, 49,177,161,168, 44, 88,176, 0,163, 70,141,194,182,109,219,174,184,233, 48, 45, 45,109,201, +234,213,171, 67,142, 31, 63, 14,173, 86,139,138,138, 10,152, 76, 38, 20, 23, 23,123,109, 21,112,212,229, 65,180,228, 80,252,201, +245,212,190, 63,147,183, 57,175,199,249,121,128, 7, 44,180, 2,113,180, 76, 38,211,172, 23, 95,124,241,185, 33, 67,134,132, 7, + 7, 7,163,164,164,228, 50,145, 85, 95, 95, 15,181, 90, 13,131,193,128, 85,171, 86,105, 77, 38,211, 44,127,226,192,106,181, 34, + 42, 42, 10,149,149,149, 16,188,244,159,102, 89, 22, 10,133, 2,245,245,245,128,159, 78,230,158, 30, 24, 22,139, 5, 86,171, 21, + 86,171, 21, 22,139,197,239, 91,178,187,153,167, 82,169, 68,225, 1, 0,186,184,184,184,246, 65, 65, 65, 40, 40, 40, 0, 26, 70, +246, 13,185,253,246,219,249,170,170, 42,242,228,147, 79,110, 39,132, 60, 5,223,179,227,155,115,114,114,146, 1, 64,161, 80,228, + 2, 64,113,113,177,181,166,166,166,145, 83,168, 84, 42,201,136, 17, 35, 98, 9, 33,200,201,201, 73,150, 74,165, 4,222, 71, 53, + 26, 87,174, 92,121, 60, 36, 36,100,105, 86, 86,214,195,153,153,153,199,186,116,233,146,172,211,233,202, 13, 6,131,193,104, 52, + 18,137, 68, 34, 13, 11, 11, 11,218,176, 97,195,153, 93,187,118, 13,209,104, 52, 75, 87,174, 92,121,220,155,243,166, 82,169,138, +245,122,125,146,120, 79, 93, 69, 86,105,105, 41, 8, 33,200,207,207,135, 82,169, 60,239,175, 89,151,162,229, 32,190, 84,185, 59, + 47,238,251, 2, 21, 89,174,194, 96,195,134, 13, 62,231,208, 10,148,211, 85, 20,189,242,202, 43,152, 51,103,206,101,142,214,180, +105,211, 0, 0,111,191,253,118,192,125,180, 68,247,170,116, 78, 56, 98, 94,168,110, 20,118, 0, 96,196,240, 53,173,204,131,227, + 56, 76,157, 58,245,178, 78,234,174, 77,123, 1, 54,241, 53, 10,103,121,121, 57, 56,142, 67,120,120, 56, 30,121,228, 17, 12, 29, + 58,212,217, 4,217, 84,222,147, 39, 79,238,120,227,141, 55,186,166,165,165,225,253,247,223,175, 14, 13, 13, 13,254,207,127,254, +195,213,212,212, 48,190, 28, 45, 42,180, 40, 40,154, 65,104,137, 5, 44,208, 81,135, 94, 42,203, 33,104, 60,215, 70,173, 94,175, +127,228,182,219,110,251,105,217,178,101,138,182,109,219,226,228,201,147,168,174,174,134,217,108,134, 84, 42, 69,108,108, 44,106, +106,106,240,245,215, 95, 27,244,122,253, 35, 0,106,253,112,190,213,179,103,207, 47, 62,254,248,227,160,244,244,116, 84, 87, 87, +163,190,190,222, 41,132, 24,134,129, 70,163,129, 66,161,192,222,189,123,177,126,253,122, 3,128,183,252,112,122, 82,115,176, 88, + 44, 78,193, 21,128,208,114,229, 84,137,174,142, 94,175, 7, 0,107,235,214,173, 99, 0, 32, 63, 63, 31, 0, 10, 83, 82, 82,166, +180,109,219,150, 89,188,120, 49, 33,132,172,247, 34,178,156,156, 12,195, 84, 19, 66, 46, 1,136, 49,155,205, 82, 0,168,173,173, +181,180,106,213, 42, 74, 46,151, 11, 10,133, 66, 8, 10, 10, 18, 74, 74, 74,108, 54,155, 77, 10, 0,253,250,245, 51, 3, 40,117, + 91,163,208,149, 83, 32,132,104,231,207,159, 63,101,244,232,209, 25,125,250,244, 73,123,246,217,103,143, 62,249,228,147,108,124, +124,124, 88, 93, 93,157,241,244,233,211,151, 62,249,228,147,186,221,187,119, 15,225,121,254,220,252,249,243,167, 0,208, 50, 12, + 35,120,226,180,217,108,191,101,103,103,255, 43, 51, 51,147,187,112,225, 2,202,202,202,156, 34,171,172,172, 12,157, 58,117,194, +174, 93,187,236, 22,139, 37,187, 9,233,217, 92,160,156, 13, 47, 33, 68, 44,235,222, 4,150,248, 50, 21, 40,167,171, 40, 26, 53, +106, 84, 35, 23, 75, 42,149,226,135, 31,126,240, 88,111,120, 40, 87,141,226,238, 58,199,215, 27,111,188,209, 72,180, 77,154, 52, +201,107,117,230, 47, 61, 69,158,218, 5,241,141, 71, 29,122, 41,231,190,194, 41,214,157, 60,207, 99,210,164, 73, 1, 59, 90,184, +188,143,214,101,156, 98,220, 7, 12, 24, 0,189, 94,239, 20,178,222, 28, 45,127,233,105,183,219, 95,152, 51,103, 14,209,104, 52, + 55,107,181,218, 71,207,159, 63,191, 80,175,215,223, 84, 91, 91,235,211,209, 50,153, 76,114, 90,142, 40, 39, 90,102,126,174,235, + 71,104, 57, 30,146,104,221,186,117,163,181,179, 88,150,109,180, 53,165,159,129, 3, 27,242,242,242,238,187,229,150, 91,190,125, +225,133, 23,130,211,211,211,249,164,164, 36,232,116, 58, 20, 20, 20,224,216,177, 99,182,149, 43, 87,106,245,122,253,163, 0, 2, + 25,117,182,232,248,241,227,235,135, 13, 27,246, 78,239,222,189,159,158, 60,121,178, 36, 53, 53, 21,181,181,181, 8, 11, 11, 67, + 84, 84, 20, 78,157, 58,133, 85,171, 86,217, 43, 43, 43,191, 0,240, 30, 60,180,161,250,123,225,183, 88, 44,120,232,161,135, 32, + 8, 2,102,207,158,141, 64, 22, 84,118,129,197, 98,177, 16, 0,140,163, 63,151,222, 49,187, 52, 78,159, 62, 13, 0,231,146,147, +147,131, 1, 32, 59, 59,155, 65,195,252, 90,129,188,225, 19, 66,136,211,217,234,212,169, 83,129,123,229, 40, 58, 89,162, 11,230, + 47,220, 12,195, 24, 9, 33,229,122,189,126,216, 43,175,188,242,206,231,159,127,254,240,231,159,127,126,217,113, 26,141,102,233, +204,153, 51,223,123,224,129, 7,202, 25,134,241,218,143, 76,167,211,189, 61,102,204,152, 7,142, 28, 57, 18, 28, 20, 20, 4,157, + 78,135,170,170, 42, 88, 44, 22,164,164,164,160,188,188, 28,139, 22, 45,170, 51, 24, 12,239,210,226,248,215,192, 85, 24,120,115, +181, 2, 16, 89, 94, 93,157, 95,126,249,197,227, 28, 85, 77,229,116, 23, 27,129,206,109,229,235,165, 72,156,150,198,211,148, 17, + 77,172,215, 46,227,229, 56, 14, 31,125,244,145,115,210, 86, 79, 78, 86, 83, 28, 45,145, 51, 60, 60,188,193, 38, 87, 42, 33, 8, + 2,238,188,243,206,171,225, 21, 0,140,115,153,241,125,250,107,175,189, 54,165, 83,167, 78,169, 0,228,174,105,208, 68, 23,159, +130,130,194,159,208,178,219,237,197, 29, 59,118,108, 84,193,249, 91,204,212,106,181, 22, 7,120,221,245, 58,157, 46,101,230,204, +153, 47,170, 84,170, 33,122,189,190,171,163,226, 56,162,211,233,178, 77, 38,211,167,104,218, 34,208, 21, 0,158,223,189,123,247, +236, 97,195,134, 77,187,245,214, 91, 71,142, 31, 63,158, 33,132, 96,222,188,121,228,236,217,179, 43, 28, 46,214,217, 43, 73,164, +240,240,240,227, 95,127,253,117,244, 79, 63,253, 4,171,213,138, 79, 63,253, 20,193,193,193,199,171,171,171, 3,165, 40,223,180, +105,211, 55,125,250,244,121,108,215,174, 93,139, 0,252,190,117,235,214,133,125,251,246, 29,179,107,215,174, 37, 0,142,109,222, +188,121, 97,239,222,189,199,236,219,183,111, 57,128, 67, 77,168,124,157,206,150,205,230,185,165,209,139,147,229,139, 83, 75, 8, +177, 60,254,248,227,227, 31,120,224,129, 47,247,237,219,119, 83, 77, 77, 77, 87, 0, 8, 13, 13, 61,210,171, 87,175,189,203,150, + 45, 59,229,112,178,252,117,214,175,208,233,116, 35,186,118,237,250,227,251,239,191,175, 74, 75, 75,227,218,183,111,143,194,194, + 66, 28, 61,122,212,246,191,255,253,175,222, 96, 48,220, 13,224, 18, 45,142,127,157,208, 34,132, 32, 52, 52,180,209, 75,148, 56, +228,191,169,205,133,174, 15,102,113,169, 30,119, 94,111,156,190,166, 77, 16,161, 86,171,157,147,155, 6,210,101, 65, 16,124,207, +199, 70, 8,113,114,138, 91, 0, 34,203,239, 8, 65,199, 18, 56, 1,115, 6, 50,189,131, 74,165,130,213,106,117,242, 6, 48,242, +179,169,106,241, 23, 0,191, 88,173,214,211, 0,218, 81,113, 69, 65,209,130, 66,235,210,165, 75, 61, 91,248,218, 90,147,201,244, +158,201,100,122, 79,220, 97, 52, 26,175,150,243, 44,128, 7, 54,109,218,244,241,166, 77,155,196,118,132,169,240,191, 94,162, 79, +156, 60,121, 50,147,231,249,255, 46, 93,186,180, 55, 33, 4, 33, 33, 33,187, 11, 11, 11,255,211, 20, 14,187,221,254,248,174, 93, +187,158,131,163, 47,147,197, 98,121,124,199,142, 29, 47,162, 97, 61, 38,216,237,246,199,247,236,217,227,252,221,196, 7, 37, 33, +132,152, 8, 33,113, 94, 14, 49, 53,209,129, 19,157, 45,243,178,101,203,234, 1, 28,198, 31,243,100, 89, 29,155,209,173,185,208, + 23, 54,235,116,186,246,147, 38, 77,154, 46,145, 72, 6,235,116,186,120,149, 74, 85,100,179,217,126,211,235,245,111,161, 97,141, + 42,138,191, 8,102,179,249, 66,199,142, 29, 57, 79, 47, 80,190, 30,228,190, 94,172,236,118,123,113,135, 14, 29,252,190,156,121, +224,188,224, 67, 52,156, 75, 73, 73, 97, 3,229, 18, 97,177, 88,202,125,133, 51, 37, 37, 5, 77,229,244, 23,247,228,228,100,143, +113,247, 35, 8,189,198,221,102,179, 93, 17,167,175,244,244, 5,131,193,112, 41, 50, 50,178,222,104, 52,242, 38,147,137,183,217, +108,141,236, 71,133, 66, 81, 97, 48, 24,104,225,161,160,184, 26,161,245, 15,199,126, 52, 44, 47,209, 92, 48, 29, 57,114,228, 49, +167, 61, 85, 94,126,165, 60,238, 74,178,222,207,239,166, 8,163,102,119,132, 28, 66, 74,223, 76,116,149,245,245,245, 79,138, 63, +196, 62, 32, 20,127, 61,170,170,170,110,110,110,206,234,234,234,102,127, 81,171,172,172,204,104,129,184,247,188, 94, 57,125,161, +164,164,228,102, 63, 66,140, 22, 28, 10,138, 0,193,210, 36,160,160,160,160,160,160,160,160,104, 25, 48,104, 24, 57,224, 9, 77, + 25, 77, 48,228, 10,174,157, 77, 57, 41, 39,229,164,156,148,147,114, 82,206,235,142,211, 31, 55, 29,205,216,194, 2,140,114, 82, + 78,202, 73, 57, 41, 39,229,164,156,215, 31,231, 53, 9,218,116, 72, 65, 65, 65, 65, 65, 65, 65, 65,133, 22, 5, 5, 5, 5, 5, + 5, 5, 5, 21, 90, 20, 20, 20, 20,174, 72,109,221,186,245,137,212,212,212, 11, 0,198,182,240,181, 30,233,221,187,119,149, 92, + 46,223, 0, 32,149, 38, 61, 5, 5, 5, 21, 90, 20, 20, 20,215,180,200,234,218,181,235,246,147, 39, 79,118,202,206,206,142,139, +143,143,255,176, 37, 47,214,179,103,207, 15,182,109,219, 22,190,110,221,186,219, 98, 98, 98,114,174, 80,108,165,182,105,211,230, + 68,106,106,106, 49,128, 71,154, 57,136, 99, 51, 50, 50,170,101, 50,217,122, 42, 4, 41,174, 3,116, 1,208,149, 10, 45, 10, 10, + 10,138, 22, 20, 89, 59,119,238,140, 48, 26,141, 56,121,242, 36, 42, 42, 42, 14,181,228, 5,115,115,115, 47,237,220,185, 19, 9, + 9, 9, 88,178,100, 73,100,114,114,242,182, 38, 10,154,212,174, 93,187,110, 63,113,226, 68,167,236,236,236,248,168,168,168, 79, +154, 51,124, 55,221,116,211,180,109,219,182,133,109,216,176, 97,104,100,100,228,149, 10, 65, 10,138,191, 51,228, 0, 30, 99, 24, +102,111,151, 46, 93,142,164,165,165,253,206, 48,204, 46, 0,163,112,237,206,221, 25, 24, 86,175, 94,189,117,245,234,213, 91,105, + 30,161,160,160,104, 6,164,165,165,165,233,116, 58, 29,169,168,168, 32,159,125,246, 25, 9, 15, 15,183, 0,248, 13,192, 74, 15, +219,155, 0, 52, 1,114,107, 28,199,123,226,249, 45, 60, 60,220,242,217,103,159,145,252,252,124,114,252,248,113,146,154,154,106, + 8, 80,208,164,118,237,218,181, 82, 12,243,218,181,107, 9,199,113,235,155, 51, 81, 52, 26,205,177,156,156, 28,114,246,236, 89, +178, 97,195, 6, 18, 29, 29, 93, 78,197, 22,197, 53,130, 36, 0, 31,168,213,234,234,187,238,186,139,124,245,213, 87,100,213,170, + 85,228,199, 31,127, 36,179,102,205, 34,131, 6, 13, 34, 50,153,236, 2,128,215, 1,132, 94, 79, 90,132,113, 68,140, 0, 24, 8, + 0,153,153,153, 84,108, 81, 80, 80, 92, 45,118,234,245,250, 12,189, 94,143,186,186, 58,180,110,221, 26, 60,207,123, 60,176,188, +188, 28, 59,118,236,192,184,113,227,142,151,150,150,246,135,239,117, 47,195,186,119,239,190,115,243,230,205,169,193,193,193,206, +157,130, 32,192, 98,177,192,106,181,194, 98,177,192,100, 50,193,100, 50, 65, 38,147, 65,161, 80, 32, 60, 60,252, 40,124, 55, 97, + 56,221, 55,131,193,128,131, 7, 15, 98,244,232,209, 21, 85, 85, 85,253, 1,228, 54, 99,186,164, 70, 69, 69,229, 44, 90,180, 40, + 50, 37, 37, 5,231,207,159,199, 19, 79, 60, 81,121,238,220,185,126,205,124, 29, 10,138, 63, 19, 19,238,187,239,190,105,209,209, +209,108,151, 46, 93, 16, 27, 27, 11,147,201, 4,131,193, 0, 66, 8, 56,142, 3, 33, 4,181,181,181,200,201,201,193,230,205,155, + 77,151, 46, 93,250, 26,192,167, 0,242, 92, 68,214, 53,169, 69,156, 66, 43, 51, 51,147,161,121,133,130,130,162,153,112,164,182, +182,182,139,201,100,130, 78,167, 11,232,132,252,252,124,140, 29, 59,246,120,105,105,233, 45,240,188,168,188,166,123,247,238,123, +114,114,114, 82,141, 70, 35,180, 90,255,235,206,203,100, 50, 4, 5, 5, 33, 34, 34, 98, 23,128, 62,222,222,196,187,116,233,178, +127,215,174, 93,225, 6,131, 1,135, 14, 29,194, 35,143, 60, 98,169,174,174,222, 14,192, 91,224,171,209,176,142,234, 57, 15,255, + 37, 2,120,209,241,134,239, 9,170,200,200,200,190,139, 23, 47,150,182,109,219, 22,122,189, 30,163, 70,141,170,206,205,205,237, + 5,160,128,102, 29,138,127, 32,114, 79,158, 60,217,193,110,183,163,178,178, 18, 38,147, 9,122,189,222, 41,180, 36, 18, 9, 8, + 33,176,217,108,206, 23,163, 3, 7, 14, 32, 59, 59,155,228,231,231, 79,118,148,165,107, 86,139, 80,161, 69, 65, 65,209, 18, 72, +237,208,161,195,161, 95,127,253, 53, 72, 42,149, 98,213,170, 85,152, 60,121,178,181,186,186,122,155,187,120,137,142,142, 78, 91, +184,112, 97,114, 74, 74, 10,126,255,253,119,220,127,255,253,111, 1,152,238,129,243, 77,173, 86, 59,205, 98,177,224,208,161, 67, + 24, 51,102, 76, 65, 89, 89,217, 49,119, 17,147,156,156,220,239,147, 79, 62,225,123,244,232, 1,173, 86,139,145, 35, 71,234, 79, +157, 58,213, 27,192, 49, 47, 97,253,164,186,186,250, 21,187,221,142,186,186, 58, 36, 36, 36, 64, 42,149,250,140,156,193, 96, 64, + 82, 82,210,174,138,138,138,203,196, 91, 68, 68,196,166,243,231,207, 15, 82, 40, 20, 62, 57, 44, 22, 11,138,139,139, 33,147,201, + 96, 50,153,208,174, 93,187,175, 1, 60, 78,179, 14,197, 63, 81,104, 29, 62,124,184,195,119,223,125,135,238,221,187,163,115,231, +206,168,175,175,119,138, 46,179,217, 12,171,213,122,217, 73, 90,173, 22, 47,191,252,114, 30, 28,205,231,215,170, 22, 17, 59,166, + 77, 17,219, 68, 51, 51, 51, 7,208, 60, 67, 65, 65,113,181, 21,111, 94, 94, 94,250,144, 33, 67,182,173, 88,177,162,213,240,225, +195,209,174, 93, 59,254,222,123,239,141,212,235,245,131, 93, 15, 44, 43, 43, 11, 27, 51,102,204,254,162,162,162,100,199,174, 94, + 94, 56,123, 5, 7, 7, 35, 63, 63, 95, 20, 89, 61,225,214,204, 40,147,201,214, 31, 62,124,152,151,201,100,216,183,111, 31,198, +142, 29, 91, 89, 80, 80,224,175, 89, 46,212,108, 54, 67, 34,145, 0, 0,138,139,139,253, 70,238,252,249,243, 16, 4,193,228,233, + 63,150,101,229, 7, 14, 28, 64, 92, 92,156, 79, 14,150,101,221, 5, 93, 13,205, 54, 20,255, 80, 88,205,102, 51,122,246,236,137, +130,130, 2, 28, 56,112,192, 41,184, 42, 43, 43, 81, 82, 82,210,232,224,189,123,247,226,224,193,131,232,223,191,191, 59,207, 53, +169, 69,156,202,113,245,234,213, 3, 28,145,219, 74,243, 12, 5, 5, 69, 51, 33, 53, 46, 46, 46,103,209,162, 69,145,177,177,177, + 24, 52,104, 80, 81,105,105,105, 27, 15,199,173, 36,132,220,157,159,159,143,182,109,219,174, 2,112,207,149, 28,147,152,152, 88, +177,111,223,190, 86,199,143, 31,199, 35,143, 60, 82,225,232,243,229,175,239, 83,114,167, 78,157,246,109,216,176, 33,156,101, 89, + 28, 59,118, 44,144,166,195, 66, 52,244, 47, 57,231,225,191, 68, 0,147, 0,132,123, 57, 87,213,161, 67,135,190,251,247,239,151, + 50, 12,131,194,194, 66,177,233,176,167,131,151,130,226,159,134, 17,113,113,113,255,123,238,185,231, 66,122,247,238,141,226,226, + 98, 92,184,112, 1,151, 46, 93, 66,122,122, 58,210,210,210,112,246,236, 89,172, 95,191, 30, 7, 15, 30,132, 92, 46, 71, 66, 66, + 2,212, 75,191,195,127, 25, 28, 7,144, 70,181, 8, 5, 5, 5,197, 85,136, 45,169, 84,186, 62, 62, 62,190, 28,158,231,165, 10, + 27, 57,114,100,137,221,110, 39,103,207,158, 37,104, 24, 61, 8, 47, 66,139,156, 61,123,150, 68, 71, 71,231, 3, 8,243,112,204, +216,152,152,152, 34,165, 82,121, 20, 77,156,214,161,125,251,246, 21,167, 78,157, 34, 69, 69, 69,100,221,186,117, 36, 34, 34,162, + 37, 70, 4,166,118,236,216,177,178,174,174,142, 24,141, 70,146,147,147, 67, 18, 19, 19, 43, 64, 71, 30, 82,252,243, 17, 12, 96, +106, 74, 74,138,241,227,143, 63, 38,235,215,175, 39, 11, 22, 44, 32,211,166, 77, 35,227,199,143, 39, 25, 25, 25, 36, 35, 35,131, +140, 26, 53,138,188,242,202, 43,228,246,219,111, 39,106,181,186, 22,192,189, 52,233, 40, 40, 40, 40,154, 23,137, 0,102, 57, 4, +213,202,145, 35, 71,150,152, 76, 38,114,225,194, 5,242,195, 15, 63, 16, 52, 76,221,224, 9,111,150,150,150,146,210,210, 82,113, +106,132,124,252, 49,173,195, 87, 14,222,171, 18, 65, 73, 73, 73, 21,251,247,239, 39,133,133,133,100,237,218,181,196, 33,216,154, + 13, 10,133, 98,131, 86,171, 37, 70,163,145,108,218,180,137, 78,239, 64,113, 45, 34, 10,192,220, 27,110,184,193, 58,123,246,108, +178,114,229, 74,242,217,103,159,145, 17, 35, 70,144,215, 95,127,157, 60,248,224,131, 36, 50, 50,210, 4, 32, 11, 64, 8, 77,174, +171, 7, 93,217,156,114, 82, 78,202,233,142,245,199,143, 31, 39, 34,236,118, 59,185,112,225, 2,217,176, 97, 3,137,137,137, 57, +134,198,243,105,185,114,106, 58,119,238,124,242,212,169, 83,228,252,249,243,196, 98,177, 56, 57, 78,158, 60, 73, 0,108,109,134, +112,166,198,199,199,151,111,217,178,133,156, 58,117,138,196,196,196, 20, 53,103,220,147,146,146,202, 43, 42, 42,200,166, 77,155, + 72,100,100,164, 63,145, 69,243, 18,229,252, 39,115, 38, 1, 88,220,163, 71, 15,251,156, 57,115,200,211, 79, 63, 77, 18, 19, 19, +237,142,151,162,248,235, 73, 8, 93,223,179,180, 82, 80, 80,252, 21,144,239,222,189, 27,114,185,220,185,227,247,223,127,119,157, + 71,203,219,188, 13,218, 19, 39, 78,220, 50,124,248,240,109,115,230,204,233,236, 58,138,105,203,150, 45, 0, 96,106,134,176,229, + 94,184,112,161,255,176, 97,195, 62,141,136,136,184,177,180,180,244,157,230,140,120, 97, 97,225, 43, 93,187,118,157, 94, 87, 87, +167,213,235,245,163, 64,231,206,162,184,118, 81, 8, 96,244,129, 3, 7, 62, 60,112,224,192, 91, 0, 8,128,247, 1,156,184,222, + 18,130, 10, 45, 10, 10,138, 63, 27, 99,159,124,242, 73,247,206,226,251, 0,252,159, 15,145, 37,226, 82, 65, 65, 65,159, 59,239, +188,243, 57, 52, 30,157, 40,118, 78,111, 14,228,154,205,230,161,238, 35,165,154, 9, 75, 74, 75, 75,151,208, 44, 64,113, 29,225, + 24,128, 7,175,231, 4,160, 66,139,130,130,226,207,198, 57, 0, 79, 92,197,249, 90,120,158,103,139,130,130,130,226,111, 7,186, +168, 52, 5, 5, 5, 5, 5, 5, 5, 5, 21, 90, 20, 20, 20, 20, 20, 20, 20, 20,255, 44, 48,240, 62,114, 32,187, 9, 60, 87, 50, +162, 33,155,114, 82, 78,202, 73, 57, 41, 39,229,164,156,215, 29,167, 63,238,108, 80,180,168, 0,163,156,148,147,114, 82, 78,202, +249,207,230,100, 28, 27,235,216,196,223,127,231,184, 51,127,227,184, 95, 47,156,215, 36,254,170,206,240,226,141, 16,208, 48,228, +147,226,239, 7,215, 2, 66,232,125,162,160,160,104, 98,221, 33,113,121,216,218, 29, 27,254,134,117,137,171, 40, 16,174,242,185, +212, 18,113,191,158, 57,175,121,161,117,163, 74,165,154, 44,147,201, 82, 24,134,177,235,116,186, 35, 38,147,105, 62,128, 93, 87, +121,205,175,162,163,163,199, 86, 85, 85, 9, 44,203,130,101, 89, 48, 12, 3,150,101,193,243,188,161,182,182, 86,115, 37,164,145, + 93, 70,188,202, 49,204, 11,118, 98,159, 95,126,116,213, 52,127,251, 41,124, 23, 24,169, 84,122, 95,120,120,120,104, 69, 69, 5, + 97,217,134,174,124, 18,137, 68, 92, 8,215, 86, 91, 91,251, 77,160,100, 97, 97, 97,123,195,195,195, 67,197,243, 25,134, 65, 85, + 85, 85, 77,121,121,249, 77, 0, 16, 20, 20,180, 67,165, 82, 69,112, 28, 7,137, 68, 2,137, 68, 2,189, 94, 95, 85, 85, 85,117, + 11,189, 21,255, 76, 44, 95,190, 92, 50, 44,254,137,118, 28, 49,116, 99, 89, 18, 34, 8, 76,173,141, 81,252,190,254,194, 87,103, + 2, 57,127,212,168, 81,118,154,138,127, 30,100, 50,217,236,232,232,232,127,215,215,215,235, 25,134, 33, 12,195,128, 97, 26,222, +179,220, 63,237,118,123,113, 85, 85, 85, 79, 63, 15, 91, 94, 38,147,205,140,137,137, 25,163,215,235,245, 14, 62,143,188, 0, 96, +181, 90,139, 43, 43, 43,123, 6, 84,215, 71, 70,206, 87, 40, 20,143,234,245,122, 29,195, 48,130,235,127,132, 16,215,135,249,217, +202,202,202,126,254,132,129, 76, 38,251, 52, 58, 58,250, 95,142,184, 59,195,121,181,113,143,142,142, 30,163,211,233, 2,226,244, + 17,247,203, 56, 91, 34,156,127, 83,206,107, 95,104,165,167,167,127,183,103,207,158, 14, 60,207, 3, 0,140, 70, 99,215,185,115, +231, 62,246,198, 27,111,100, 1,152,120,133,215, 91,216,175, 95,191,135,114,114,114,216,149, 43, 87,178,189,122,245, 2,195, 48, +176,219,237,176,219,237,232,210,165,139,226, 74, 35, 18,162, 82, 78, 56,184,241,191, 65, 55, 14,121,242,133,114, 96,154,191,253, +190, 4, 38,128,183, 1,164, 52, 49, 8, 21,142,116, 57,232, 69,108,236,100, 89,182, 73,156,130, 32,228, 95,186,116,169,143, 15, + 1,211,236,156, 14,145,117,127,191,126,253, 66,178,179,179,153,162,162, 34, 70,161, 80, 64, 16, 4,216,237,118, 88,173, 86,220, +112,195, 13, 77,114, 66, 67, 67, 67, 53, 19, 38, 76,104,119,199, 29,119,224,135, 31,126,192, 99,143, 61,134,190,125,251,230,149, +151,151, 3, 0, 84, 42, 85,196,241,227,199, 59,132,135,135, 67,175,215,163,182,182, 22,183,221,118, 27,170,170,170,254,209,133, +235,230,244,132,247, 25,150,113,206, 21, 69,108,246,234, 61,191,151,188,125,181,188,225,225,225, 7,229,114,121,180, 95,181,236, +242, 32, 51, 26,141,101,213,213,213,221,253,156,146, 4,224, 46,137, 68,210,158,227,184,142, 0,146,108, 54, 91, 52, 0, 72,165, +210, 50,137, 68, 82,104,181, 90, 79,153,205,230,211, 0,126,129,143, 5,144,135,197, 63,209,142,177,233, 71,214,153,132,225,202, +182, 89,169,250,179, 19,114,149,114,253,218, 97,241, 79,172, 8, 84,108,253,133, 72, 5,176, 12, 13, 11, 74, 63,141,134,121,128, +174, 6,241, 0,238, 70,195,154,143,201, 22,139,165, 18,192, 1, 52,244, 67,201, 3,144, 24, 25, 25,185, 68, 16, 4, 83, 85, 85, +213, 19,240,176, 80,117,239, 30,173,247,179, 44,155, 32,122, 2, 2,177, 23,239, 62, 80,220, 44, 15, 40,150,101, 63,205,204,204, +252,215,138, 21, 43,148, 7, 14, 28, 80,118,238,220,217,249, 66, 36, 8, 2, 26,107, 23, 32, 57, 57,217,159,171,193,177, 44, 59, +123,228,200,145, 15, 47, 94,188, 88,121,238,220, 57,101, 92, 92,156,147,211, 85,108,137,136,139,139, 11, 52,239,127, 53,116,232, +208,209,139, 22, 45,226, 87,173, 90,165,104,213,170, 21, 34, 34, 34, 32,149, 74, 47, 59,246,150, 91,110, 17,252, 71,157,253,244, +158,123,238, 25,253,253,247,223, 43,247,236,217,163,236,210,165, 11, 36, 18,201, 85,199,125,196,136, 17, 15,127,247,221,119,202, + 35, 71,142, 40,219,183,111, 15,209, 84,112,231, 99, 89, 22,173, 91,183, 14,136,243,238,187,239,126,120,217,178,101,202,131, 7, + 15, 42, 59,118,236,232, 76, 79, 66,200, 21,135,243,111,206,121, 93, 56, 90, 50,139,197,130,173, 91,183,130,101, 89,132,135,135, + 99,236,216,177,216,184,113,227,132, 77,155, 54,173,190, 2,103,235, 43,135,200,226, 1,224,199, 71, 71, 32,159, 7,198,149,155, + 33,149, 74,113,246,236, 89, 72, 36,146, 38, 91,139,114,185,124, 12, 33,100,146,254,194, 62,185,193, 96,133,177,100,191, 82,161, + 80, 56, 31, 0,250, 18,199,254,139,251,149, 10,133,226,172, 68, 34,153, 90, 95, 95,191,208, 27, 95,251,246,237,191, 61,118,236, + 88, 39, 79, 5,215, 23,244,122, 61,218,180,105,147, 88, 93, 93,221,222,211,255, 60,207, 39,156, 59,119, 46, 74, 38,147,129, 16, +226, 44,196,238,159,226,119,139,197,130, 27,110,184,193,226,235,154,190, 56,109, 54, 27,130,130,130, 32,186, 81,102,179, 25,245, +245,245,254, 56, 25,169, 84,122,159, 40,178, 0, 96,233,210,165,136,137,137, 65, 84, 84, 20, 84, 42, 21, 20, 10,133,147, 51, 80, + 72, 36, 18, 12, 27, 54, 12,239,190,251, 46,178,178,178,240,218,107,175, 53,170,104,121,158, 71,120,120, 56,214,173, 91, 7,141, + 70,131,196,196, 68,136, 2,255, 31,109, 11,178, 76,248,174,253,231,157, 14,237,237,183,118,226,110,238,206,125,238,120, 84,130, +101, 1, 65,104,120,116, 50, 12,136,205, 42, 92,218,127,164,228,157, 0,210, 51,174,176,176, 48, 42,208, 52,178,217,108,136,139, +139,147,248, 57,108,120, 90, 90,218,143,207, 62,251,172,180,125,251,246,140, 84, 42, 5,199,113,224, 56, 78, 20,232,137,132,144, + 68, 65, 16, 6,150,149,149,145,185,115,231,126,184,101,203,150,123, 1,172,245, 88,177, 16, 67,183, 58,147, 48,124,219, 33,220, + 52,114,200, 27, 88,183,124,194, 77,253,210, 5, 4, 43, 13,103, 0,252,157,133, 86,106, 90, 90,218,161, 61,123,246, 4, 89, 44, + 22,244,238,221,123,119,110,110,110, 15, 92,217, 12,238, 97, 0, 62,153, 56,113,226,232,103,159,125, 86, 18, 26, 26, 10,153, 76, +134,186,186, 58,156, 57,115,102,204, 55,223,124, 67,190,248,226,139,255, 3, 16, 92, 88, 88,152,177,119,239, 94, 12, 26, 52,232, + 69, 0, 47, 95,174, 8, 36, 9, 59,246, 22, 68,137,191,239, 30,214, 85,154,209,147, 45,107,112,113,220,143, 38, 16,236, 66,241, +222,195, 23, 2, 17, 98, 31,142, 24, 49,226,145, 21, 43, 86,168, 1, 96,222,188,121,184,239,190,251, 16, 30, 30, 14,165, 82, 9, +169, 84, 10,158,231, 27,125,250,121,216, 74, 0,124,248,224,131, 15,142, 92,188,120,113, 48, 0, 44, 94,188, 24, 35, 70,140, 64, + 68, 68, 4,130,131,131, 33,147,201, 32,145, 72,154,156,152,225,225,225, 95,245,189,233,166,199, 23, 45, 90, 4, 0,120,235,165, +151,112,199,205, 55, 67,173, 84, 64,169,144, 65, 76, 11,153,132,199,237,227, 94,240,171, 47, 1,124,124,223,125,247, 61,240,253, +247,223, 7, 3,192,129, 3, 7, 80, 94, 94,142,232,232,104, 40, 20, 10,200,100, 50,103,156, 25,134,129, 66,161, 8, 40,238,247, +221,119,223,200,239,190,251, 46, 24, 0, 22, 46, 92,136, 97,195,134, 57,227, 46,151,203, 33,149, 74, 27,109,238,162,211, 19,231, +189,247,222, 59,114,217,178,101,193, 0,240,205, 55,223, 96,200,144, 33, 8, 11, 11,115,166,167,200,213,148,123,244, 55,231,188, + 62,132,214,161, 67,135,238, 87,169, 84, 51, 0, 68,202,100,178,208,135, 31,126,184,245,227,143, 63,142, 7, 31,124, 16,155, 54, +109,122,170,137, 66,139,137,142,142, 30,155,147,147,227,124, 66,155,201,101,130,169,201, 15,112, 7, 38,237,127,234,169,152,172, + 51,245,216,189,247, 20,130,192, 50,123, 63,254, 56,210,120,250, 52,236,102, 51,222, 59, 91,215,176,223, 70,152,173,175,140,139, +185,113,246,255, 77, 2,176,208,135, 11, 32, 55,153, 76,200,203,203,107, 82, 32,138,138,138, 32, 8,130,201,151,187, 32,149, 74, +113,244,232,209,203, 84,189, 39, 36, 38, 38,250, 42,128,126, 57,215,175, 95,143,241,227,199,227,212,169, 83, 16,151, 42, 9,128, +147, 9, 15, 15, 15, 21, 69,150, 40,130, 20, 10, 5,120,158,103, 56,142, 99,196,166, 61, 71,225, 10, 72, 24,179, 44,139,111,191, +253, 22, 31,124,240, 1, 94,127,253,117,204,159, 63, 31,221,186,117,251, 35, 19,114, 28,180, 90, 45,194,194,194, 16, 22, 22,214, + 72, 32,254,147,225,126,155,103,206,154,163,132, 64, 26, 58,129, 16, 1, 16, 0, 2, 2,129, 8, 40,187,112, 6,147,223,253, 40, +224,167, 15,207,243, 56,125,250,180, 51, 31,136,206,176, 40,140, 92, 93,131,164,164, 36,191,121, 73, 42,149, 78,249,249,231,159, +101,223,126,251, 45,190,255,254,123, 48, 12, 3,185, 92, 14,149, 74,133,208,208, 80, 68, 68, 68, 56,183,132,132, 4,230,127, 61, +184,254,121, 0, 0, 32, 0, 73, 68, 65, 84,255,251,159,180, 91,183,110, 83,180, 90,237, 90,207,247,156,132, 40,219,102,165,142, + 28,242, 6, 0, 96,228, 27, 4,151,242,166,221,200,214,188,243,119, 94, 68, 54,181,107,215,174,219,119,238,220, 25,164,215,235, + 33, 8, 2,214,174, 93,171, 28, 50,100,200,182,130,130,130,126, 77, 21, 91, 73, 73, 73,171,118,238,220,121, 75,100,100, 36,106, +107,107,161,213,106, 97,181, 90, 33,145, 72,144,152,152,136, 15, 63,252,144,185,231,158,123,158, 31, 51,102,140, 81,161, 80,136, +206, 70,146,231,188,212, 56, 51,205,253,236,243, 80, 66, 26,242, 15, 17, 72,163,207,234,242, 66,188,244,202,228,128,194,216,186, +117,235,167,127,248,225, 7,181,171,179,228, 42, 2, 92, 69,150,184,249, 17, 6,108,155, 54,109, 30, 95,178,100,137,147,179, 85, +171, 86,224, 56, 14, 60,207,131,227, 56,176, 44,139,109,219,182, 97,198,148,137, 8,139,140,195,156,207,230,249, 13,103,100,100, +228,252, 97,195,134, 61,186,112,225, 31, 85,119,215,182,109,113,231, 45, 55, 35,170,149, 6,173,194,130, 27,210, 73, 96,240,251, +169, 2,191,207, 35, 0,108,235,214,173,159, 88,190,124,185,218,245,133, 80,140,171,248,242, 44,186,248,102,179, 25, 61,123,246, + 12, 40,238,174,156,162,219, 38,138, 54, 49, 61,197,235,136,229,213, 79, 56, 31, 23,133,176, 67,112, 54,226,224,121, 30,203,215, + 45,242,234,102, 95, 41,103, 83,239,187, 59,103, 97, 97, 33,166, 79,159, 14,241,165,205,181,171, 80,124,124, 60,230,204,153,227, +183, 94,114, 43, 3,189, 0, 68,186,236, 50, 3,144,185,124, 86, 48, 12,179,207,195,113,226,126,222,209, 98, 21,137,134,126, 99, +117, 0, 66, 61,240,121,227,169,116, 60,243, 34,221,142,111,116, 29,175, 66,107,245,234,213, 98, 41, 30,152,153,153,185,213,241, +189, 70, 46,151, 23, 41,149,202, 24, 0,117,107,215,174,197,127,254,243, 31, 56,172,213,187, 67, 66, 66,142,121,112,117, 14,153, + 76,166, 55, 0,148, 57,118,137, 67, 52,217,234,234,106, 97,227,198,141,236,226,123,135,194, 76,128,244, 73, 51, 48, 44, 51, 19, +235,227,101,144, 0,184,233,100, 37,148, 74, 37,167,213,106,173,174,253,182, 60,244,221,202,118,203, 80,146, 32,142, 67,239,237, +107, 48,126,251, 26,220,164,146,161,106,197, 50,212,237,200, 1,203, 50,232,175,106,133,215, 30,217,136, 62, 26, 57,100, 38, 29, + 88,150,245,148,179,157,156,121,121,121,163, 52, 26,205, 12,183, 4, 14, 4,249,104, 88,199, 9, 94,194, 9, 66, 8,186,117,235, + 6,134, 97,156,110,129,184,137,133, 78,220, 14, 30,244,216, 2,233,149,211,209, 4, 7,149, 74,133,223,126,251,205,121,204,224, +193,131, 97, 52, 26, 17, 30, 30, 30, 16,103, 69, 69, 5, 41, 41, 41, 97, 22, 47, 94, 12,158,231, 17, 17, 17, 1,165, 82,201, 44, + 90,180,104,162, 84, 42, 77, 48, 26,141,130,217,108,134, 76, 38,155, 35,222, 31,142,227,116, 90,173, 54,194, 27,167, 68, 34,193, +179,207, 62,139, 87, 95,125, 21,243,231,207,199, 83, 79, 61,117,153,227,101, 52, 26,209,170, 85, 43,167,216,242, 80, 0, 91, 98, +184,111,203,114, 10, 4,199, 14,174,199,241, 35,217, 16,236, 2,236, 2, 1, 33,118, 8, 54,224,192,198,221, 29, 46,230,151,196, + 19,144,134,174,183, 0,228,181,245,182, 1, 17,178,142, 0, 86,110,173, 50,207,246, 23, 78,142,227, 96, 52, 26,241,243,207, 63, +227,228,201,147, 88,187,118, 45, 12, 6, 3, 90,181,106,133,208,208, 80,220,124,243,205, 24, 51,102, 12,146,146,146,252,198,157, + 16,178,176,168,168, 40,189,111,223,190, 76, 77, 77, 13,106,106,106, 96, 48, 24, 96,183,219, 97,179,217,192,113, 28,130,130,130, +160, 80, 40, 16, 29, 29, 13,163,209, 72, 76, 38,211, 66,111,156,130,192,212,234,207, 78,200, 93,183,124,194, 77, 35,223, 32, 88, +241, 1,131,118,109,228,250,223,246, 7, 63,190,114,251,107,183, 1, 32, 2,113, 90, 11,196,106, 23, 42, 95,157,248,201,243,127, +250, 61,186, 92,100, 69, 24, 12, 6,212,213,213, 53,216,250, 50, 25, 86,172, 88,209,234,174,187,238,202, 41, 41, 41,233,239, 67, +108, 93,198, 25, 28, 28,156, 40,145, 72,112,244,232, 81,124,241,197, 23,248,237,183,223, 80, 86, 86,118, 41, 46, 46, 46,100,224, +192,129,236, 75, 47,189,132,244,244,116,124,253,245,215, 65,254, 56, 9, 33, 40,204,219,134,194,211,219, 33, 8, 13,174,117,195, +230,249, 59, 9, 48,238, 58,157,206,120,232,208, 33,245,151, 95,126,137,168,168, 40, 36, 39, 39, 67,169, 84, 34, 40, 40,168,209, + 67,214,245,193,235,175,108, 26, 12, 6, 99, 97, 97,161,250,187,239,190, 67, 68, 68, 4,146,146,146,160, 84, 42, 33,147,201,192, +113, 28, 24,134,193,226,197,139,177,244,221, 71, 80,120,234, 8, 70,220,121,155,223,112, 42,149,202, 71, 23, 46, 92,216,200, 2, +137, 14, 11, 3,199,179,144,240, 12,194, 6,223, 11, 0,184,180,233, 39, 95,179, 67,186,114, 50,117,117,117,198, 61,123,246,168, +247,239,223, 15, 65, 16,144,148,148, 4,189, 94, 15,141, 70,227,140,255,198,141, 27,113,207, 61,247,224,219,111,191, 69, 70, 70, +134,223,184,215,215,215, 27,143, 28, 57,162, 94,178,100, 9,194,195,195,209,186,117,107,103,220,197,141,231,121, 72, 36, 18,164, +164,164,160,182,182, 22,106,181,218,239, 61, 58,112,224,128,122,201,146, 37, 8, 11, 11, 67, 66, 66,130,211,113, 19,197,209, 7, +159,191,219,136, 32,136,137,189,106,206,166,222,119,119,206, 17, 35, 70,160, 93,187,118,208,104, 52, 80,169, 84, 78,110, 95,156, + 94,180,136, 83,111, 51, 12,179,218,165, 76,100, 50, 12,179,218,245,211,219,113,142,175,253, 39, 78,156,216, 51, 43, 43,107,122, + 70, 70,198,119, 59,119,238, 92,234,141,207, 27,207,196,137, 19,211,178,178,178,166,187, 30,239,225, 58,222, 29,173,204,204, 76, +198, 17, 73, 6, 64,114,143, 30, 61,246,109,218,180, 41, 60, 56, 56,216,121,240,249,243,231, 81, 83, 83,131,224,224, 96,205,204, +153, 51, 53, 3, 7, 14, 68,116,116,180,243, 13, 32, 47, 47,239,134,212,212, 84, 45, 0,119,223, 86, 96, 89, 22,125,250,244,193, + 49, 71,107,199,176,204, 76, 36, 36, 36, 56, 59,121, 4, 5, 5,225,249,231,159,103,198,143, 31,207,137,110, 6, 33, 4, 6,131, + 1,177,177,177, 10, 95,174, 14, 0,164, 25, 42,241,211,192,254, 96, 25, 64,127,112, 47,164, 50, 6,172,132, 65,119, 82,133, 95, + 7,245, 7, 3,192,124,120, 23, 2,112, 97, 14, 2,184,173,101, 28, 14,130, 51,103,206, 4,228,104, 57,226,197, 92, 41,167,232, +104,236,220,185, 19,118,187, 61, 80, 78,194,178, 44, 84, 42, 21, 98, 98, 98,160, 80, 40,160, 84, 42,153,239,190,251,238,237,228, +228,228,216,241,227,199,179, 90,173,150,237,211,167, 15,238,187,239, 62, 78,108,226, 76, 75, 75,243, 27,151,173, 91,183,226,139, + 47,190,192, 83, 79, 61,229,209,209, 98, 24, 6,145,145,145,208,104, 52,184, 86, 32, 0,176,216,172,208,215, 27,156, 77,186,118, +187, 29, 71,182, 28,238,144,127, 56, 47,109,245,119,223,242, 0, 96,220,242,147,235,105,177,247,125,190, 44,117, 64, 24,191,103, +235, 37,235, 30, 95,121,158,227, 56,140, 29, 59, 22, 89, 89, 89,120,244,209, 71,177,118,237, 90,188,243,206, 59,248,247,191,255, +125,153,171,229,239,205,209,106,181,254,247,177,199, 30,123,106,197,138, 21, 29,223,120,227, 13, 86,116,180,148, 74, 37, 24,134, +129,209,104,132,201,100,130,193, 96,192,169, 83,167,132, 39,159,124, 50,215,108, 54,255,215,107,115, 37,163,248, 93, 41,215,175, +109,155,192,182,211, 21,124, 20,220,247,230, 36, 3,163,232, 81,123,111,234, 16, 50,124,108, 82, 24, 8, 1, 17, 0,129, 0, 38, +147, 14,207, 63,255,162,228, 47,188, 85, 78,145,101, 52, 26,113,232,208, 33, 12, 26, 52, 8, 69, 69, 69, 56,113,226, 4, 58,116, +232,128, 69,139, 22, 69, 62,252,240,195, 57,229,229,229,253, 3,117,182,142, 28, 57, 50,241,198, 27,111,252,180,190,190,190,186, +190,190,254, 83, 0, 75, 1,212,156, 57,115,166,243,153, 51,103,230,174, 95,191,190,223,228,201,147, 37,110,125,116, 36,222,236, + 81,171,213, 6,131,193,228, 83, 96,137,191, 9, 17, 2,138, 56,195, 48,164, 99,199,142,184,235,174,187,192,243, 60,148, 74, 37, +212,106,117,163,102, 51,119,193,229,171,254, 0, 32, 48, 12,131,184,184, 56, 12, 31, 62, 28, 82,169,180, 17,167,152, 15,135, 15, + 31,142, 23,222,155,132,255,190,112, 43,190,120,172, 3,134,188, 95,230, 51,156,122,189,190,126,243,230,205,138, 87,159,122, 10, + 55,182,111,143, 86, 26, 13,218, 68, 71, 66, 33,151, 65,234, 26, 38, 38, 32,147,157, 0, 16, 36, 18, 9,186,116,233,130,178,178, + 50, 20, 20, 20,160,160,160, 0, 44,203,162,111,223,190, 78, 23,230,244,233,211,120,239,189,247, 96, 50,153, 2,142,123,251,246, +237,113,235,173,183, 66, 38,147, 65,169, 84, 54,106, 50, 20,211,180,174,174, 14,237,218,181,195,202,149, 43,145,154,154,234,151, +179, 83,167, 78, 24, 48, 96, 64,163,244, 84, 40, 20, 78, 81, 4, 0, 69,123,234,157,215,136,143,143,111, 18,231,134,189,231,241, +229,198,205, 48,153, 5,104,245,214, 70, 39,196,182,210, 96,251,146, 55, 2,138,187,200,185, 96,193, 2,212,212,212, 56,141, 3, +241,165, 92, 52, 81, 90,183,110,141,121,243, 60, 59,153,110, 90,196,211, 51, 47, 51,192,231,173,120,156,152,185,228, 89, 89, 89, +211,221,207,247,199,231,250,191,219,249,102, 55,113, 86,214,164,166, 67,185, 92,254,230,230,205,155,195,107,107,107,113,250,244, +105,176, 44,235,108, 83,231, 56, 14, 22,139, 5,103,207,158, 69,120,120, 56,202,203,203, 33,151,203, 33,145, 72, 96, 54,155, 1, +160,187,183, 7, 56, 33, 4, 47, 84, 52,116, 17, 90, 23, 39, 69, 33,128, 59, 43, 26, 10,134,216, 33,254,135, 31,126,128, 90,173, + 70,112,112,176,243,211, 95, 51,210,145,130, 51, 40,227, 25,176,187,182,129, 97, 1,150, 1, 24, 9,192,178, 4, 44,195,128,221, +149, 3,134, 1, 84, 17, 97, 77,173,128,253,117,140,247,217, 1,222,155,251,228,201,197,114,255,190,101,203, 22, 4,202,217,174, + 93, 59,168,213,106,231,182,126,253,250, 70,142,150,221,110, 71, 68, 68, 68, 32,156,164,193,141, 16, 16, 21, 21, 5,158,231,153, + 69,139, 22, 77, 76,249,127,246,174, 59, 60,138,106,125,191, 51,219,119,147,108, 54, 61, 33, 33,148, 0, 82, 34, 77,225,194,165, +151, 0, 66,104, 34, 69, 46, 4, 17, 81,138,168, 40, 17,129, 31, 42, 32,161, 73,147, 42,200, 37, 32, 72,151, 46, 69,164,131, 5, + 20, 36,129, 64, 8, 9,164,111,234,246, 50,237,247, 71,118,227,102,179, 73, 54, 33,194, 5,231,125,158,121,118,167,189,115,206, +156, 51,103,222,243,157,239,124,211,176, 97,200,244,233,211, 73,129, 64,128,235,215,175, 35, 33, 33, 1,245,235,215,119,219,103, +171,168,168, 40,235,147, 79, 62, 97, 62,249,164,100, 14, 69,100,100, 36,138,138,138,114,237,251, 53, 26, 77,126,159, 62,125,202, +248,109,228,229,229, 61,219,158,240,182,251, 72, 91,105, 24, 76, 38,232,180,134, 82,235, 80,110,102,142,234,227, 15, 63, 16, 45, +155,250, 6, 0,224,195,149,107,160,221,248, 87, 67,118,224,195, 81,129, 67,191,220, 53, 19,192,224,202,248,117, 58, 29, 76, 38, + 19, 34, 34, 34,112,249,242,101,104,181, 90,244,235,215, 15, 4, 65,148,206, 16,173, 6, 44, 25, 25, 25,157,162,163,163,127, 93, +177, 98, 69, 68,243,230,205, 9,189, 94, 15,131,193, 0,199,223,155, 55,111,114, 59,119,238, 76, 49, 24, 12,255,182,153,206, 93, +226, 68,198, 55,201,125, 67,223,220,251,227,117, 65,116, 96,163, 36,101, 70, 97, 4,157,159, 33,213,107,140,119, 76, 12,151, 0, +142, 1, 24,176,224,104, 22,140,109,216,235,105, 65, 46,151,127,117,241,226, 69, 63,147,201,132,107,215,174, 97,204,152, 49,150, +188,188, 60, 9, 0,252,231, 63,255,177,108,223,190, 93,210,168, 81, 35,108,219,182, 45,224,213, 87, 95,221,163,215,235, 95,116, +147,250,219,172,172,172,111,157, 55,250,249,249,173,126,248,240, 97,119, 71,159, 31,154,166, 75,147,227,242,193,100, 1,138,162, + 96, 52,154, 81, 92,172,133,197, 74,217,218, 76, 22, 12, 67,219,126, 89,208,182,118, 84, 34, 22,122,181,125, 49, 88,199,113, 28, + 72,130, 40,186,246,103,118,221,202, 68,187,171, 33, 46, 55,173, 89,206, 96,236,179,204,252,252,252, 32, 18,137,240,237,183,223, +226,198,165, 19,144, 8, 56, 48, 52, 5,154,178,130,161, 44, 16, 9, 4,248,241,250, 3, 68, 53,243,114, 75, 16,250,251,251, 99, + 64,199,142,136,238,216,177,100,122,155, 80, 8, 79,169, 20, 10,177,172,196,146, 5,128, 99, 72,119,131, 8,176,246,116, 6, 5, + 5,225,183,223,126,195,180,105,211,176,120,241, 98,200,229,242,210,217,207,183,111,223,198,238,221,187, 17, 21, 21, 85,237,188, +219, 45,120, 51,103,206, 68,102,102, 38, 86,174, 92,137,151, 94,122, 9, 34,145, 8, 69, 69, 69,248,247,191,255,141,156,156, 28, +183, 56, 29,135,247, 36, 18, 73, 25,235,147, 93, 0, 86,183,140, 28, 57,223, 24, 18,130, 67,151,118,130, 0,129,171, 59, 62, 40, + 35, 10,215,239,186, 80,109,206,185,115,231,150, 73,167, 59,214, 44,119,225,100,117,170,242, 56,130, 32,174,217,141,173, 51,103, +206,156, 69, 16,196,145,153, 51,103,206,138,139,139,187,229, 14,159,171,253, 4, 65, 28,181,137,176, 1, 14,219,174, 85, 75,104, + 41, 20,138,246,158,158,158,184,119,239, 30,250,245,235,103,201,207,207, 79, 18,137, 68, 77,242,242,242,164,185,185,185, 48, 24, + 12,186,249,243,231, 63, 0, 32,239,208,161, 67,163, 31,127,252, 17,143, 30, 61,194,246,237,219, 1,224,128,107,159, 13, 18, 44, +203,150, 86, 10,231,110,155, 64, 32,192,149, 43, 87,112,229, 74, 89,215,175,205,155, 55, 87,249,194,120,245,251,195,184,126,253, + 58, 28,195, 3,216,255, 59,110,147,201,100, 64,229, 51, 60,202,160, 42,199,248,170, 28,224, 93,193, 93,223, 47, 87, 51,115, 42, + 66, 70, 70, 70,133,231, 95,185,114,165,140, 69,171, 42, 78,129, 64, 0,134, 97, 32,151,203, 9,177, 88, 76,136,197,226, 48,187, +200, 18, 8, 4,165, 15,140, 84, 42,133, 84, 42, 45,211, 75,173, 8,153,153,153, 61, 50, 51, 51, 43,220,175, 86,171, 59,169,213, +106, 60,143,176, 82, 20,140, 6, 11,180, 58, 35, 62,143,251,111,201,198,207,241, 51,128,159, 59,189, 51, 13,147,251, 70,245,172, +238, 48,181,253,126, 7, 6, 6,226,220,185,115, 32, 8, 2,123,246,236,129,183,183, 55,250,246,237, 11,165, 82,137,153, 51,103, + 98,248,240,225,213,109,204,138,243,243,243, 59,189,255,254,251,191, 46, 93,186, 52,188,110,221,186,176, 88, 44,176, 90,173,176, + 88, 44, 72, 78, 78,198,206,157, 59, 31, 25, 12,134, 78, 0,138,171, 34, 59,145,241, 77,242,254,243, 31,102,246, 30,249,170,241, +118,206, 15,200,206,206, 7, 77,103,128,101,104, 88,105,166,196,194, 71,211,160,105, 6, 98,177, 64,185,244,139, 15, 78,177,224, + 64,146,132, 5,192, 43, 79,170,140, 84, 42, 85,164, 90,173,198,221,187,119, 17, 19, 19,147,157,159,159,159, 8,160, 23, 0,228, +231,231, 95, 28, 51,102, 76,243,248,248,248,224, 6, 13, 26,192,211,211, 83,169,215,235,171,162,244, 4, 48, 25, 64, 31,148,248, +129,216, 81, 0, 96, 62, 73,146,210,107,215,174,149,155,105,119,254,252,121, 0,248,217,117, 15,200,102,209, 50,153,160,206, 47, +196,132,119,230,252,213, 51, 2, 87, 70, 92,112,224, 48,233, 93,200, 0, 32, 47, 39, 25,111, 76,152, 38,173,170, 67,224,234, 69, + 88, 13, 31,157, 50, 29, 53,123, 29,245,244,244, 44, 25,126, 59,184, 19, 71,191,124, 7, 96,172,224, 40, 35, 96, 53, 0, 86, 29, + 88,139, 1,132, 88, 14, 80, 70,183,132,150,167,167, 39, 60,229,114, 4,170, 84,224, 56, 14, 66,129, 0, 34,145, 16, 44, 5, 16, + 12, 81, 42, 72, 89,247, 2,131,148,118, 42,229,114, 57, 82, 83, 83, 49,121,242,100, 88,173, 86, 12, 25, 50, 4, 22,139, 5, 38, +147, 9, 70,163, 17, 13, 27, 54,132,193, 96,112,139,207, 62, 91,209,211,211, 19, 98,177, 24, 31,124,240, 1, 94,126,249,101,204, +155, 55, 15,177,177,177,104,216,176, 33, 38, 77,154,132,157, 59,119, 34, 50, 50,178, 42, 94,206,177,140,236,247,211, 46,182, 28, +135,248, 0, 84,187,140,156, 57, 9,130, 44, 35,216,236,203,123, 99,123, 85,155,115,209,162, 69, 80,171,213,229, 44, 89,246,255, +161,161,161, 88,183,110, 93, 77, 71,134,236,214,163, 32, 23,251, 6, 56, 91,162, 56,142,107,103,243,157, 50,199,197,197,221,138, +139,139,139, 38, 8,226, 72, 92, 92, 92,116, 69, 22, 45, 87, 60, 46,246,187,253,210, 18, 58,141,141,118,119,220,105,191,209,190, +190,190,130,240,240,112, 82,169, 84,162,168,168, 8, 1, 1, 1,156, 90,173, 30,169, 80, 40, 62,251,238,187,239, 26,233,116, 58, +220,190,125, 27,171, 87,175,254, 25,192,170,202,132,214,177, 0,155,233,216,102,201,114, 92, 31, 56,112, 32, 26, 52,104, 80,198, +154, 37,151,203, 43,173, 60,246,125,118,139,144, 64, 32,192, 11, 47,188, 32, 79, 73, 73, 49,138,197, 98,132,133,133,201,179,179, +179,141, 98,177,184,218, 51, 93,170,114,140,175,202, 1,222,149,240,105,215,174, 93, 25, 11,150,227,175,227,255, 67,135, 14, 85, + 57,116,104,231,108,222,188,121,233,253,242,242,242,178,159, 11, 0,232,215,175, 31, 88,150,133,191,191,191, 91,156,118, 81,107, +115,128,135,201,100, 98,181, 90, 45,121,237,218, 53, 72, 36, 18,120,121,121,149,250,234,200,100,178, 82,107, 38, 15, 87, 13, 2, + 11, 11, 69,193,104, 52, 66,167,211, 1, 0,146,255,220, 87, 86,136,153, 53, 53,230,183, 55,176, 5, 5, 5, 56,113,226, 4,126, +248,225, 7,188,252,242,203, 46, 69,117, 53, 4,151,186,160,160,160,243,140, 25, 51,174, 46, 88,176,160,142,175,175, 47,172, 86, + 43, 30, 62,124,136, 45, 91,182,100, 26, 12,134,206,213,105, 96,192, 1, 20, 69,195,100, 48,163, 88,163,197,103, 95,108,173,176, +234, 1, 64, 65,238, 29, 12, 28, 52, 92,242, 36,203, 41, 51, 51,115,122,231,206,157,191,208,106,181, 69, 6,131, 97, 56,128,101, +142,253,169,252,252,252, 46,131, 6, 13, 90,225,235,235,251, 82,110,110,238, 44, 55, 40,103,166,166,166,206,170, 87,175, 94,153, +141,102,179, 25,245,234,213,123, 33, 55, 55,119,116,215,174, 93,255, 15,128,175,195,110, 47, 0, 39, 1,172,171,168, 46,217,135, + 14,117, 58, 35,148,170, 16,100, 60, 56, 87,101, 66,196, 2, 19, 56,150,173,180, 13,177,119,128, 43, 90,170,152, 25, 87, 46,169, +246, 99,237, 47,236, 87,134,141,197, 43,147, 23, 65, 33, 2, 22,190,209, 9, 13, 85, 0,228,190, 16,119,253, 24,132,202,118,143, + 38, 31,118,139, 60,118,195, 6, 92,183,181,199, 97, 1, 1,152, 49,114, 36, 56, 10,184,156,144,128, 93, 63,253,132,145, 61,122, + 64, 33,147,185,221, 97, 97, 89, 22, 98,177, 24,201,201,201,184,124,249, 50,154, 53,107,134,123,247,238,149, 9, 67,193,113,156, +187,249, 47,205,187, 84, 42,133, 72, 36, 66,118,118, 54,162,163,163, 33, 22,139,177,117,235, 86,156, 59,119, 14, 51,102,204,192, +248,241,227,209,189,123,119, 36, 38, 38,186,197,201,113, 92,185,217,138,206,195,185,213, 45, 35,103, 78,231,247,126, 77,202,221, +206,185, 96,193, 2,151, 19, 42,220,225,116,165, 69, 92,148,221, 53, 71, 49,100,183, 60, 57, 10, 35,231,117, 0, 62,246,109, 51, +103,206,156,229,238,121,142,235,118,139, 88,117,134, 48, 75,133, 86,116,116,116,153,156, 23, 20, 20, 92,189,122,245,106, 11, 15, + 15, 15,220,185,115, 71,162, 84, 42, 91,216, 27,116,146, 36,177,103,207, 30,175,254,253,251,159, 90,182,108, 89, 24,203,178,200, +201,201,193, 71, 31,125,164,163,105,122, 20, 0,186,162, 23,120, 85,150,169,195,135,203, 63,108, 7, 15, 30,116,107, 8,196, 46, +164,132, 66, 33,124,124,124,140, 70,163, 17, 10,133, 2, 62, 62, 62, 70,131,193, 0, 15, 15, 15,251, 88, 49,137,191,102, 42, 84, +101,125,170,202, 49,222,217, 1,190, 74, 36, 36, 36,184,117,156,109,168,213,173, 90,158,154,154, 90, 97, 67,114,238,220, 57,176, +182,134,214, 93, 78, 91, 47,143,179, 11, 63,133, 66, 1, 95, 95, 95, 72,165, 82,200,229,242, 50, 34, 75, 42,149, 86,249,224, 84, + 21,144, 84, 38,147,253,226,225,225,161,178,239, 23,137, 68,208,106,181, 69, 5, 5, 5,237,159,233,161, 67,112,160,173, 52,140, + 70, 19,116, 90, 99,173,243, 91, 44, 22, 72,165, 82,236,220,185, 19,157, 58,117, 66,135, 14, 29,202,137,172, 26,154,231,211, 11, + 10, 10,186,175, 90,181,234,231,229,203,151,251,232,116, 58,252,247,191,255, 45,214,233,116,221, 1,164, 87, 75,108,178, 28, 40, +171, 21, 6,147, 25,122, 93,201, 61,184,127,107,223,255, 90, 81,237,204,206,206,222, 89,201,254,251, 52, 77, 71,219,227,190,185, +129,127,213,171, 87, 15,217,217,217,101, 54,166,165,165,129, 97, 24, 51, 74,226,100,189,233,104, 72,198, 95,209,179, 43,234,197, +151, 88, 71,141,102,232,116, 37, 86, 16,147, 62,175,118,234,169, 77,108, 84,228,147, 85,147, 58, 68, 16, 68,169,211,247,212,169, + 83,113,243,198, 13,244,170,163, 65,195, 96, 47,112,154, 12,136,123,126,138, 63,212,114, 44, 91,113,172,218,220,187, 29, 92, 32, +150,237,222,237,114,223,253,193,131,171,149,247,164,164, 36,200,229,114, 48, 12, 83,238,125, 83,221,252, 59, 10,152, 21, 43, 86, + 96,198,140, 25,216,186,117, 43,110,222,188,137,214,173, 91,163,119,239,222,200,205,205,197,141, 27, 55, 96, 54,155,221, 78,167, +163,223, 92, 82, 74, 2, 78, 95, 62,142,180,244, 7,200,204,126, 84,227,114,119,228,116, 22, 90,251, 79,255,142, 97, 81,109,107, +196,249,217,103,159, 33, 55, 55,183,140, 37,203,177, 93,170,200,162,229,172, 69,156,144,231,228, 11,101, 95,183, 56,137, 30,231, +117,231,227, 1, 32, 23,128,160,138,243,156,215,243,226,226,226,206,218, 45, 97, 54, 94, 65, 85,254, 89,101, 44, 90, 78, 88, 52, +120,240,224, 65,171, 87,175, 14,144,201,100,165, 51,144,102,206,156,137, 25, 51,102, 32, 34, 34, 2,254,254,254,161, 42,149, 10, +249,249,249, 88,188,120, 49, 82, 83, 83, 39,194, 69,160, 61,103,161,213, 37, 69, 11,137,228,175, 14,171,221,178, 5, 0,227,199, +143, 47,103,209,178, 23, 80,101,160, 40, 10,126,126,126, 48, 24, 12, 16, 8, 4, 24, 50,100,136,224,207, 63,255,100,250,246,237, +139,161, 67,135, 10,110,220,184,193, 12, 24, 48, 0, 2,129, 0, 61,123,246,212,236,223,191,255, 67, 0, 95,186, 33,182,106,205, + 49,222, 94,201,220,141,125,228,142,184,172,140,147, 32, 8, 24, 12, 6, 8,133,194, 82, 71,121,119, 56,237, 67,135,142, 15, 32, + 73,146, 80,169, 84,165,141,135,221,162,101, 23, 90, 85,241, 86, 21,144, 84,161, 80, 40,239,220,185,211,200, 62,241, 34, 47, 47, + 15, 61,123,246,188, 91, 80, 80,240,108,155,180, 88,192, 74, 51,208, 25, 77,208, 25, 13,181, 70,107,127, 30, 54,110,220,136,196, +196, 68,152, 76, 38,124,245,213, 87,165,147, 10, 28, 69,214, 99, 8,174,100,185, 92,206,246,235,215, 15, 87,175, 94,133, 84, 42, +165, 80,131,248, 87, 44,199,194, 74,211, 48, 25,141,208, 85, 61,228,246,188,160, 84, 85, 39, 38, 38,194, 98,177, 96,222,188,121, +204,175,191,254,122, 22, 37, 1, 80,237, 22,188,209,221,186,117,155,239,225,225,161, 58,122,244,232,123, 0,182, 86,246,242,166, +104,155,104,175,197,251,232, 56, 34,224,202, 39,171, 38, 97, 86, 28, 95,172, 44,203, 98,226, 91,111,161,119, 29, 13,134,190, 20, + 0,125,214, 93, 40,188, 3, 64,168,234, 99,217,138, 99,184,149,226,182, 43, 38, 7, 0,253,186, 13, 70,171,102,229,195,131,117, +238, 85,210, 39,187,248,227, 47,200,201,203,172,118,222,245,122,125,133,150,171,106, 88,180, 74,159, 57,251,253,107,211,166, 13, +154, 52,105,130,179,103,207,162,109,219,182,184,119,239, 30,238,221,187,135,212,212, 84,220,188,121, 19,133,133,133,213, 46,163, +239, 79,238, 66,161,182, 0, 18,177, 4, 5, 69,121, 72,203,120,128, 32,191,224,199, 46,119, 59,154, 14,248, 12, 0, 80, 39,192, +187, 90, 66,203,145,115,201,146, 37,229,196,251,227,134,236, 33, 8,226,151,202,214,171,123,254,147, 68, 69, 66,235,129, 90,173, +238, 48,114,228,200,153, 0,218,217,182, 21, 3,216,125,234,212,169,193,129,129,129, 61, 58,118,236, 40,148, 72, 36,184,124,249, + 50,246,239,223,191, 21,192,174,202, 46, 36,145, 72,140,245,235,215,151,219, 43,162,253, 65, 84, 42,149,130,197,139, 23, 19,155, + 55,111,174,208,202, 85, 85, 1, 21, 23, 23, 67,175,215,195,219,219, 27, 86,171, 21,253,250,245, 99, 18, 19, 19, 33, 22,139, 49, +104,208, 32, 38, 33, 33,161,180,160, 55,109,218, 20,102, 52, 26,255,253,195, 15, 63,244, 1,208,181, 26,247,202,238, 24,239, 9, + 55, 29,224, 43,234,229,185, 3,119,135,227, 42,226,156, 54,109, 90,141, 56,197, 98, 49,109,143,252, 78,146, 36,172, 86, 43,218, +182,109,139,220,220,220,210,135,198,195,195,163, 84,100,185, 35,180,170, 10, 72, 42, 20, 10, 97,177, 88,208,181,107, 87, 16, 4, +129, 53,107,214, 60, 31,195,145, 44, 75,120,122,250,161, 78,157, 23, 16, 16,104, 2,203,214,238, 87,101, 98, 99, 99,203,136, 41, + 87,145,151,237,247,191, 38,176,115,185, 51, 75,182,178,183,163,125,200, 75,175, 55, 61,115, 69, 24, 24, 24,216, 33, 55, 55,247, +160,211,230, 2, 0,243, 43,233, 88,150, 22,244,163, 71,143,208,183,111, 95, 28, 63,126, 92,112,224,192,129, 94,135, 14, 29, 74, +184,123,247,238,163,182,109,219,214,125,251,237,183,165, 93,187,118, 69, 94, 94, 30, 94,122,233,165,207, 51, 50, 50, 42, 17, 90, +182,251,104, 50, 67,175,175,125,235,168, 43,107,214,227,188, 24,237,117,114,238,220,255, 67,239,144, 34, 12,105,237,141,248, 35, +151, 48,186,141, 28,176, 72,171,205,103, 79,139,111,157, 6,168, 31,217,161,220,126,169,178, 36,150,107,253,200, 14, 32, 31,221, +171,118,222, 29,211,236, 44,170,106, 98,209,115,188,159, 19, 38, 76,192,199, 31,127,140, 62,125,250,224,222,189,123, 56,127,254, + 60,238,221,187,135,105,211,166, 33, 50, 50, 18,173, 91,183,174, 22,231,161,211,123,161,209, 21,131, 36, 72, 20, 20,231,195,100, + 54, 34,118,210,220,199, 46,247,210,151,255,233, 56, 0,192,190, 83,215,107,204, 57,123,246,108,100,103,103,151,177,100, 61,142, + 95,214,179,142,202,162,165, 61, 0, 48,209,121,163,197, 98,241,154, 55,111, 94,148,191,191, 63, 8,130,192,138, 21, 43,224,235, +235,219, 9,192, 45,139,197,146,167,215,235,103, 56,136,144,222,176,197,218,200,201,201,113, 57,111, 95,175,215, 91,163,162,162, + 68, 33, 33, 33,101,102, 27,122,120,120, 84,100,221, 41,229,180,239,163,105, 26,177,177,177, 88,184,112, 33,194,195,195, 49, 96, +192, 0, 68, 71, 71,131, 32, 8,244,235,215, 15, 3, 6,252, 53,148,171, 82,169,196,199,143, 31,239, 70,146,100,130,195, 11,164, + 12,167, 43,216, 29,227, 41,138,114,215, 1,190, 12,167,189,178, 77,155, 54, 13, 11, 23, 46,196,172, 89,149,187,122,108,216,176, + 1, 40,239, 79,245,183,115, 22, 20, 20,148,105,236, 21, 10,197,154,161, 67,135, 10, 31, 61,122, 84, 70, 92, 57, 46, 46, 26,162, + 50,156, 85, 5, 36, 21, 8, 4, 8, 10, 10,194,130, 5, 11,224,231,231,135,224,224, 96, 87,129,252,170, 44,163, 26,224,111,229, +100, 56,246,218,210, 69,255,215,249,191,219, 15,137,164, 18,224,202,249,125,208, 20,150, 29, 78, 50, 91,255,154, 74, 45,105,219, + 11,150,235, 63,186, 85,151,236, 98,250,179,207, 62,195,103,159,125, 86,105,130, 54,110,220,248,216,121,119, 83,108,149,231,100, + 57, 66,225,225, 3,153, 71, 29,180,136,244, 1,203,209,255, 83,101, 84, 1,126,253,229,151, 95, 6,249,249,249, 33, 61, 61, 61, + 64, 36, 18, 13, 42, 99,174, 50, 26, 81,191,126,253, 23,212,106,245,191,171,226,156, 54,109,154,121,206,156, 57,210, 81,163, 70, + 97,232,208,161, 24, 53,106,148, 84, 44, 22, 55,230, 56, 14, 86,171, 21,233,233,233,248,241,199, 31,161, 86,171,111, 87,150, 78, +150,227, 8,185, 66, 5,153, 71, 8, 90,188,168, 2,203,210,181,146,119, 71,171,184,163, 53,171,154, 34,203,101,253, 4,128, 95, +127, 60,136,185, 31,188,136,173, 71,127,198,234, 95,128, 86,170, 92,180, 8, 80,131, 85,223,198, 71,163, 95,198,178, 29,191, 1, + 0,206,159,171,178,140,184,202,234,160,201,104,125,172,188, 59, 90,174, 28,175,227,134,143, 86, 57, 78,123, 39, 81,171,213,162, +168,168, 8,241,241,241,120,227,141, 55,144,155,155,139,212,212, 84,220,189,123, 23,223,125,247, 29, 20, 10, 69,141,202,232,195, +183,102, 99,206,178,233,224,192,161,105,163, 22,152, 57,249, 51,180,107,213,241,177,203,221, 25,110, 88,179, 42,228, 92,185,114, +101, 77,235,210, 63, 78,104,185,132,191,191,255,168,110,221,186,193,100, 50, 33, 32, 32, 0,169,169,169, 32, 73, 50, 2, 40, 25, +194, 11, 13, 13,221,173, 86,171, 35,220,229, 19, 8, 4,160,105,186,212,247,199,190, 0,192,192,129, 3,113,248,240,225, 42,123, + 20,193,193,193,168, 91,183, 46,222,127,255,253,114,179, 28, 28,103, 58,200,229,114, 28, 61,122, 52,187,160,160,160,128,227,184, +106, 77,115,179, 59,198, 95,188,120,209,109, 7,120, 71, 88,173,214, 71,119,239,222, 13,217,184,113,163,160,146,151, 95, 41,206, +159, 63, 79,163,138,161,154,191,131,211, 85,207,148,227,184, 10, 69,150, 59, 97, 4,170, 10, 72, 42, 20, 10,145,148,148,132,185, +115,231,130, 32, 8,236,219,183,239,185,120,184,254,188,147,191,153, 36, 73,159,129,175,116,110, 9,130,128,213, 82,126,164,218, +179, 80, 87, 42,178,134,126,185, 11, 7, 62, 28,233,142,232, 73,190,112,225,130,239,198,141, 27,133,238,148,251,133, 11, 23,104, +142,227,170, 61,236,103,127,225, 88,173, 86, 24,141, 53,179,162,112, 28,119, 57,238,139, 57, 81,219,190, 61, 38, 34, 8, 11,174, +156,219,135,226, 34,215,238, 12, 18,145, 16,155,227,247,211, 98,145,224,209, 83, 46,186,181, 67,134, 12, 25,245,213, 87, 95,181, +112,181,211,141, 73, 48,169, 38,147, 9, 25, 25, 25, 48, 24, 12,123, 63,249,228, 19,235,177, 99,199,222,124,245,213, 87,209,186, +117,107,132,132,132, 32, 43, 43, 11,201,201,201,136,143,143,231, 46, 93,186,180, 23,192,148, 42,238,227,193, 69, 95,204,137,137, +223,113, 76, 66, 18, 86, 92, 57,191, 15,197, 78,162,189,188,117, 90,132,111,182,238,183,138,197,162, 59, 85, 89,139, 28,173, 89, +181,249, 98, 28, 52,102, 50,134,174, 90,141,136,118,125,177,104,113,111,124,243,197,112, 44,239, 39,134,117,207,104,180,122,109, + 27,118,206,235, 15, 0,168,243,141,155,214, 18,161, 24, 15, 93, 88,172,138,138,101, 54,113, 83, 61,171,169, 61,239,149, 89,174, +170,107,209, 34, 73, 18, 13, 26, 52, 64, 68, 68, 4, 58,117,234,132,182,109,219,162, 71,143, 30,184,113,227, 6,110,220,184,129, +105,211,166, 85, 38,178,170, 44,163,238,255,142,194,207, 93,238, 60,118,217, 56,151,123,109,192,157,186, 52,121,242,100, 0,248, + 71, 89,183,170, 45,180, 52, 26,205, 13,150,101, 91,122,123,123,219, 45, 82,165,251,210,210,210,192,178,172,161,186, 5, 99,177, + 88,236,193, 49,203,196,101,178, 59,199, 87,246,224,115, 28,199, 20, 20, 20,160, 91,183,110,232,210,165, 75,233,240,137,227,226, + 32, 76,112,224,192, 1,112, 28, 87,109, 39,107, 7,199,120, 29,170,233, 0, 15, 0,185,185,185,125,187,118,237,122, 74, 40, 20, +186,245, 21, 77,150,101, 83,115,114,114, 94,121,210,156,174,202,135,101,217, 10, 69,150, 59, 13, 81, 85, 1, 73,133, 66, 33, 60, + 60, 60,240,253,247,223,195,223,223,255,185,122,192,110, 36,170,151, 84,182,191,155,159,228, 28,128,128,161, 95,238,122,120, 46, +223, 90,111,232,151,187,210, 14,124, 56, 50,188,178,115,178,179,179,251,140, 28, 57,242,184,187,229, 78,211,244,131,236,236,236, +106,135, 75,224, 56, 14,119,238,220, 97, 39, 76,152,144,167, 86,171,135,215, 36,255, 51,231,174, 94,190,240,243,169,126,253,162, + 58,180, 3, 9, 88, 42,118,254,229, 8,128, 19,138, 4,143,102,204, 90,249,214,240,225,195,159,102,177,105,178,179,179, 59, 13, + 27, 54,108, 10,254,114,157, 40, 35,164, 80,193,236,106, 27, 86,213,173, 91,247, 69,129, 64, 32, 5, 48, 23, 64,218,165, 75,151, +214, 94,186,116,169, 15,128,127, 9, 4,130, 16,134, 97, 50,108,157,158, 93, 0,254,168,186, 30,229,190, 13,142, 13,235,215,251, + 95,125, 65, 16,156,197, 98,174,162,131, 4, 14, 28,199,137,197,162, 59,191,222,200,106, 85, 89, 71,202,225, 11, 28,181, 62,100, + 63,101,202, 20, 76,153, 50,165,180, 62,173, 89,211, 5,123,255,188,136,215, 90,165,195,252,117,103, 16,202,112,183, 59,124, 0, + 48,251,255, 38,212, 90,218, 28,243,238,104,209,114,245, 28, 84,199, 71, 75, 32, 16, 32, 47, 47, 15, 73, 73, 73,200,201,201,129, +193, 96, 64, 98, 98, 34,172, 86, 43, 10, 11, 11,241,226,139, 47,214, 56,157,181, 85, 70, 79,147,243,159, 56,124, 88,109,161,101, +181, 90, 63,109,208,160,129, 72, 38,147,181, 96, 24, 6, 28,199,129, 97, 24,206, 38,106,170, 61, 11, 79, 36, 18,153,154, 52,105, + 66,184,154,157, 96,255,239,225,225, 97,172,196, 90, 18, 87,191,126,253, 79, 8,130, 16, 84,212, 11,177,255,103, 89,150, 17, 10, +133,113, 53,188, 87,143,235, 24,175, 87,171,213, 29,107,185,252,254, 14, 78,231,242,209, 55,107,214,172,244,139,246,206, 49, 81, +108, 31, 91,213, 87, 33,206, 43, 13, 72,170,215,235,179,250,246,237,203, 56,238,119, 12,104,250, 92,131,224,210,250,143,122,179, +222,185,124,107, 61, 0,176,139, 45,112, 92, 90, 37,103, 25,179,179,179,187,253,221, 73, 75, 73, 73,177,252,235, 95,255,250, 86, +171,213, 78, 6, 80, 99,111,254, 89,159,174,153,245, 12,150,140, 6,192,194, 26,158,155,150,159,159,223,211,105,219, 31,118, 65, +101,143,107, 87,109,209,126, 59,175,214, 99,139,209, 52,157, 30, 17, 17, 81, 45,203, 13, 69, 81,233, 85,237,119,142, 17,230,136, + 91,240,198,172,171, 64,201,228,239,124,183, 56, 77, 38, 83, 65,199,142, 29, 69,213,204, 91,174,187,121, 15, 9, 9, 65,157, 58, +117, 74,127,237,112,222, 94, 85, 58,105,154, 78, 15, 11, 11,131,191,191,127,133, 17,223,157,125,178,220,225,172,237, 50,170,140, +179, 78,157,109,181,206, 89,211,116,242,112, 15,189,121, 78,158,147,231,124,102, 57, 5,252,253,228, 57,121, 78,158,243, 9,114, + 62,151,224,189,212,120,240,224, 81, 17, 24,254, 22,240,224,193,131,199,227,129,168, 68,149, 86,103,166, 79, 77,148,237,105,158, +147,231,228, 57,121, 78,158,147,231,228, 57,255,113,156, 85,113,215,246, 76,227,231, 26,188, 89,149,231,228, 57,121, 78,158,147, +231,228, 57,121,206,127, 44,248,161, 67, 30, 60,120,240,224,193,131, 7, 15, 94,104,241,224,193,131, 7, 15, 30, 60,120,240, 66, +139, 7, 15, 30, 60,120,240,224,193,131, 7, 47,180,120,240,224,193,131, 7, 15, 30, 60,120,161,197,131, 7, 15, 30, 60,120,240, +224,193,131, 7, 15, 30, 60,120,240,224,193,131, 71, 9, 8, 0, 56,114,228, 72,233, 7, 1,163,163,163, 9,254,182,240,224,193, +131, 7, 15, 30, 60,158, 36,158,107, 45,226,152, 57, 30, 60,120,240,224,193,131, 7, 15, 94,139,212, 14, 72, 94,108,241,224,193, +131, 7, 15, 30, 60,120,177,197,103,140, 7, 15, 30, 60,120,240,224,193,139,172,103, 10,101, 44, 90,188,224,226,193,131, 7, 15, + 30, 60,120, 60, 77,177,245,140,106, 17,206,182, 56,174,243,224,193,131, 7, 15, 30, 60,120,240,120, 76,129, 85,217, 47, 15, 30, + 60,120,240,224,193,131, 7,143, 90, 18, 92,246,255, 79, 76,104,241, 95, 54,231, 57,121, 78,158,147,231,228, 57,121, 78,158,243, + 31, 11, 33,127, 11,120,240,224,193,131, 7, 15, 30, 60, 30, 27,142, 86, 44,130, 23, 90, 60,120,240,224,193,131, 7, 15, 30,181, + 39,178, 8, 87,235,252,183, 14,121,240,224,193,131, 7, 15, 30, 60,254, 38,240, 22, 45, 30, 60,120,240,224,193,131, 7,143,199, + 3, 1,126,232,144, 7, 15, 30, 60,120,240,224,193,227,111, 21, 91, 46, 55, 86, 52,115,224,116, 53,200,107, 50,251,224, 52,207, +201,115,242,156, 60, 39,207,201,115,242,156,255, 56,206,170,184, 79,227,217, 67, 55, 0,103, 1,116,183,253, 86, 40,188,106, 27, +252,212, 87,158,147,231,228, 57,121, 78,158,147,231,228, 57,159,119, 84, 24,168,148,119,134,231, 81, 21,132,168,124,136,185,170, +253, 60,120,240,224,193,131,199, 63, 77,108, 17,225, 72,218, 0, 0, 32, 0, 73, 68, 65, 84,113,142, 47, 73, 87,104, 12, 96, 22, + 0,111,135,109,191, 0,136,115, 58,110, 7, 0,133,195,186, 30,192, 60, 0,247,170, 76, 13,199,137,109,252, 82,219,194, 2, 48, + 1, 48, 3,208, 18, 4, 65,241,101,246,212,209, 17, 64,180,237,255, 17, 0, 87,170,185,255,185, 66, 72, 72,136,220,199,199,167, +207,245,235,215, 37,137,137,137,184,112,225, 2,183,121,243,102,107, 97, 97,225,201,172,172, 44, 35, 95, 93,158, 11,244, 5, 48, +211,246,127, 17,128, 19,143,201, 71, 40, 20,138,105, 30, 30, 30,253,165, 82,105, 29,154,166, 9,131,193,144,169,215,235, 79,209, + 52,253,165,173,221,171, 46, 6,251,250,250,190,217,180,105,211,198,169,169,169, 25,153,153,153, 59, 0,236, 1, 48,188, 78,157, + 58,163,235,215,175, 31,122,231,206,157,123, 5, 5, 5,223, 0, 56,248, 20,211,201,131,199, 63, 9, 68,101,214, 8, 87,152,203, +113,220,232, 50, 12, 68,121,142,158, 61,123, 14, 58,121,242,164,130,101, 89,216, 23,185, 92, 78, 3, 24, 87,133,200,242,187,124, +249,114,189,201,147, 39, 15,205,204,204,124, 89,171,213,182, 7, 0,133, 66,241,115, 96, 96,224,175,171, 86,173,250,142,227,184, +116,130, 32,180,213,204,168, 80, 36, 18,189,225,227,227,211,159,166,233,182, 28,199, 65, 36, 18, 93, 47, 44, 44, 60, 65, 81,212, + 55, 0,106, 34,222, 36, 66,161,112,138, 84, 42,237, 75,211,116, 75, 0, 16, 10,133, 55,205,102,243, 9,154,166,215, 2,176,212, +128, 83, 38,145, 72,166, 40,149,202, 40,139,197,210, 18, 0, 36, 18,201, 77,141, 70,115,202, 98,177,172,181, 9,206,167, 13, 33, +128,104,142,227, 68, 0, 32, 16, 8, 6,183,111,223,190, 30, 65, 16, 44, 65, 16, 28,199,113,196,207, 63,255,220,134, 97, 24,210, + 86, 63,162, 1,252, 10,128,126, 22,159, 16,127,127,255,133, 44,203,214,169,180,208,100,178,151,175, 95,191,222,116,247,238,221, +204,215, 95,127, 93, 52,126,252,120,207,201,147, 39, 11,215,172, 89,179, 54, 43, 43,235, 61,231,227,253,252,252,150,147, 36,233, +239,206,245, 89,150,205,203,207,207,159,254,180,242, 31, 19, 99, 42, 99,238,142,143,151, 53, 2,144, 94,195,250,253,247,113,154, + 98, 56, 0,136,151,197, 55,138, 49,197, 36,219,255, 63, 46,175, 3,102,174, 59,173,237,202,113,192,148, 40, 47,242,113,133, 86, +104,104,104,124, 76, 76,204,168,150, 45, 91, 10, 57,142, 3, 69, 81, 48,155,205, 77,175, 92,185,210,125,223,190,125, 47,107,181, +218,225,213,164,124,235,227,143, 63, 94, 48,127,254,124,127,145, 72, 68, 80, 20,213,104,247,238,221,109,223,126,251,237,247, 55, +110,220, 88,119,196,136, 17, 94,246,237,115,231,206,109,183,104,209,162,134, 0,190,124, 10,233,228,193,227,159,134,110, 40,235, +163,245, 57,128,207, 42, 19, 90, 30,182,151,103,142,205,146, 5,135,223, 82,156, 57,115,230,144, 80, 40,180, 91,180,218,235,245, +250, 32, 39, 43,152, 43,145, 85,127,204,152, 49, 29,247,238,221,187,112,196,136, 17,217, 10,133,162,201,171,175,190,170, 37, 8, + 66,176,123,247,238, 54, 17, 17, 17,242,129, 3, 7,142,233,217,179,231,135, 28,199, 93, 32, 8, 66,237,102, 38, 91,248,250,250, +238, 95,178,100, 73,189,190,125,251,138,253,253,253,193,113, 28, 50, 51, 51, 67,143, 30, 61,218,239,243,207, 63,255,176,160,160, + 96, 8,128,132,106,220,184,118,114,185,124,239,231,159,127, 30,210,175, 95, 63, 97,112,112, 48, 76, 38, 19, 18, 19, 19,123,159, + 56,113,162,235,198,141, 27,223, 51, 26,141,175,217, 4,134,187,104,239,237,237,189,239,191, 31,127, 28,212,225,141, 55,132,190, +190,190,224, 56, 14,106,181,186,247,197,109,219,186, 79, 90,178,228,189,226,226,226, 97,174,238,247,211,132, 68, 34, 33,183,111, +223,222, 90, 34,145, 0, 0, 44, 22, 11, 34, 35, 35,137,231,229, 9, 33, 8, 34, 44, 51, 51,211, 91, 44, 22,187,220,207, 48, 12, +186,118,237,218, 64, 44, 22,227,203, 47,191,164,242,242,242,218,124,245,213, 87,215,119,238,220,233,191,118,237,218,215, 0,148, + 19, 90, 36, 73,250,167,167,167,187,228,100, 24, 6, 86,171, 21, 52, 77,195, 98,177,160,121,243,230, 79, 53,255,241,241,178, 48, + 0,211, 99, 98, 76, 31,216, 54,125, 9,224, 67, 0, 41,168,225, 55,187,254, 6, 78,199,250,182,220,225,255, 99,167,213, 1,245, + 0,224,216, 13, 19, 0,248, 62,238,125,245,240,240,104,246,250,235,175, 11,213,106, 53, 68, 34, 17,172, 86, 43,178,179,179, 17, + 25, 25, 41,248,246,219,111, 95,168, 46, 95,163, 70,141,198, 47, 90,180, 40,224,216,177, 99,214,237,219,183, 91,162,162,162, 68, +227,199,143, 87,118,237,218,181,121, 88, 88, 24,185,101,203, 22,243,169, 83,167,168, 49, 99,198, 72,226,226,226, 2,142, 30, 61, + 58, 48, 33, 33,225,203, 39,157, 78, 30, 60,254,129, 56,139,191, 66, 60,216,127, 43, 21, 90,112, 16, 87,131, 1, 64, 36, 18,181, + 9, 10, 10,138,167,105, 58,216,102,213,201,206,201,201,249,146,162,168,223,109,199, 30,100, 89,118, 80, 85,150,172, 49, 99,198, +116, 60,126,252,248,178, 43, 87,174, 20,231,231,231, 7, 31, 58,116,200,244,225,135, 31,166, 2, 64, 74, 74, 74,195,129, 3, 7, +134, 78,157, 58, 53,189, 79,159, 62,171,122,244,232,241, 46,199,113,167, 8,130,208, 87, 37,178, 34, 35, 35, 47,159, 63,127,222, + 75,165, 82,149,217, 81,191,126,125,188,251,238,187,226, 65,131, 6, 69,244,234,213,235, 82,114,114,114, 23, 0,127,186, 35,136, + 26, 55,110,124,250,204,153, 51,158, 62, 62, 62, 40, 42, 42, 66,118,118, 54, 12, 6, 3,148, 74, 37, 70,140, 24, 33,238,214,185, + 83,221,169,211,222, 59,157,158,145,209,219, 77,177,213,190, 83,139, 22,167,119,198,197,121, 82, 15, 31, 66, 46,151, 67,167,211, + 1, 0,188,188,188,240,114,131, 6,194,223,182,109, 11, 29, 29, 27,123,250,215,164,164,222, 79, 73,108, 73,109,191,102, 0, 71, + 4, 2,193, 96,137, 68, 66, 14, 30, 60, 24,167, 79,159, 38, 76, 38,147,208,102,221,161, 7, 15, 30, 12,185, 92, 14,139,197,194, +162,100,232,144,126,150,159, 18,137, 68,130,228,228,228, 50,219,180, 90, 45,212,106, 53,242,243,243, 97, 54,155, 81, 84, 84, 4, +150,101, 9,185, 92,174,102, 89, 22, 36, 73, 58, 11,128, 50, 16,139,197, 72, 74, 74, 42,179,141,166,105,232,245,122,152,205,102, + 88,173, 86,104,181, 90,185,151,151, 87, 99,127,127,255,116, 0, 7, 11, 10, 10,190,204,201,201, 73,123,194,217,207,179, 11,162, +248,120,217,125, 0,146,255, 69, 78, 7, 75, 86,168,109,253,143, 90, 74,171, 29, 15,143,252,110, 10,183, 89,199, 30,212, 2, 31, + 11, 0, 23, 46, 92, 64, 78, 78, 14,242,242,242,160, 86,171, 17, 22, 22, 6,142,227,170, 61, 28,151,156,156,188,238,197, 23, 95, + 36,110,221,186,117, 2,192,154,221,187,119,143, 43, 40, 40,152, 57, 99,198, 12,223,165, 75,151, 22,196,198,198, 46, 2,176,117, +247,238,221,239, 52,107,214,172,255,237,219,183, 55, 62,141,116,242,224, 81,219,224, 56,174, 29,128, 0,123,219, 98,107,119,253, + 28,214,111, 16, 4, 97,113, 56,206, 98,107, 27,156,127,237,176,175,171, 9,130,248,213,225, 60, 53, 65, 16,191,214, 52,153, 78, +191, 37,157,110, 0, 56,114,228, 8,103, 95, 92,157, 25, 24, 24, 56,173,103,207,158,203,174, 93,187,214, 60, 43, 43,203, 39, 43, + 43,203,231,218,181,107,205,123,246,236,185, 44, 48, 48,112,154,195,141,112, 62,245,180,195, 62,241,229,203,151,235,237,223,191, +127,209,233,211,167,139,219,180,105, 99, 57,115,230, 12,221,167, 79,159, 92,219, 11,154,238,211,167, 79,238, 79, 63,253,196,116, +232,208, 65,126,252,248,241, 71,151, 46, 93, 90,190,119,239,222, 32,142,227, 4,174, 56,109, 16,169, 84,170,239,207,157, 59, 87, + 78,100, 57,162,110,221,186, 56,114,228,136, 82,165, 82, 29, 4, 32,174, 40,157, 54,200,100, 50,217,190,159,126,250,201,211,203, +203, 11,185,185,185, 16,137, 68, 8, 12, 12, 68,113,113, 49,178,179,178,144,118,247, 46, 72,139, 5, 43,190,152,239, 37,151,203, +247,186,104,236,203,113,122,123,123,239,219,185,112,161,103,254,233,211,248, 99,193, 2, 88,173,214,210, 33, 87,171,213,138, 75, +147, 39, 67,253,227,143,216, 50,119,174,167,183,183,247, 62, 0,178, 42, 56,107, 3,142,156,147, 1, 20,216,150,201, 0,174, 68, + 70, 70, 94, 75, 76, 76, 68,151, 46, 93,176,103,207,158, 86, 51,102,204,152, 60, 99,198,140,201,123,246,236,105,213,165, 75, 23, + 36, 38, 38, 34, 50, 50,242, 26,202,250,103,253,221,233,252,219, 56, 25,134, 41,179,176,236, 95,239,152, 58,117,234,228,238,223, +191, 31, 35, 70,140, 32, 37, 18, 73,214,200,145, 35,165, 23, 47, 94,228,108, 34,211,237,116,154, 76, 38, 24,141, 70,232,245,122, +164,164,164,200,151, 44, 89,210,249,179,207, 62,107,116,250,244,233,208, 89,179,102, 77, 10, 8, 8,184, 30, 20, 20, 84,239, 9, +231,221,234,244,127, 5,128,140,106, 90,136,254,110, 78,206,118, 62, 98, 76, 49,173, 29, 26,216,234,242, 86,118, 63,179,109,105, +213, 3, 72,123,156,186,212,179,103,207, 23, 27, 53,106, 20,180,251,150, 15, 10,197, 77,193,138, 85, 96,197, 42, 48,126,237,144, + 44,121, 5,225,225,225, 65,158,158,158, 29,171,153,206,237,183,110,221,250,151,173,167,156, 15, 96, 89,108,108,236,231, 4, 65, + 92,136,141,141,157, 15, 96,153,109,251,130,219,183,111,119, 0,176,243, 41,165,243,153,120,222,121,206,255, 45,206, 42,180, 72, + 0, 65, 16, 71, 8,130, 56,242,201, 39,159,244, 0,224,231,180,254,111,199,227, 0, 72, 92,253,218, 23,135,237, 1, 28,199, 13, +112, 56, 47,160,134,201, 39, 92, 44,127, 9, 45, 0,136,142,142, 38,162,163,163,237, 59,126, 33, 8,226, 16,128, 95, 68, 34, 81, +155,214,173, 91, 15,254,225,135, 31,188, 2, 2,254,186,126, 64, 64, 0,246,238,221,235,213,162, 69,139,193, 34,145,168, 13,128, + 95,148, 74,229,161, 74,172, 48,170,201,147, 39, 15, 29, 59,118,172,166, 77,155, 54, 0, 80,148,144,144,160,232,208,161,131,158, +166,105,130,166,105,162, 67,135, 14,250,132,132, 4, 5, 69, 81,218,118,237,218,121,244,234,213, 43,117,250,244,233, 99, 92, 8, + 14, 71,188,190,120,241,226, 48, 31, 31,159,202,148, 48,180, 90, 45,130,130,130, 48,121,242,228, 96,145, 72,244,102,101,119, 75, + 40, 20, 78, 89,188,120,113,160, 74,165, 66, 97, 97, 33,194,194,194, 96,177, 88,144,148,148, 4,147, 94, 7, 74,171, 1,165, 41, +130,250,254, 61,168, 68, 66,140, 25, 20, 29, 36, 20, 10,167, 84, 97, 45,153,242, 77,108,108,144, 37, 53, 21, 41,123,246,128,161, +203, 27,127,104,171, 21, 55, 55,109,130, 41, 61, 29,139, 38, 76, 8,146, 72, 36, 83,158,176, 37,107, 41,199,113,114,142,227,228, + 4, 65,172,234,216,177,227,183,114,185,124,114, 92, 92, 92,223,147, 39, 79,246, 59,127,254,124,119,154,166, 69, 52, 77,139, 46, + 92,184,208,197,100, 50, 9,165, 82, 41,132, 66, 33,135,231, 20, 34,145, 8, 98,177, 24,114,185, 28,157, 59,119,190,191,121,243, +102, 42, 44, 44, 76,180,111,223, 62,159, 58,117,234,120,172, 89,179,166, 72,171,213, 46,118,151,207,106,181,194,108, 54,195,104, + 52,194,100, 50,225,204,153, 51, 13,166, 78,157, 42, 52,153, 76,204,192,129, 3, 11, 40,138, 50,199,198,198, 42,125,125,125, 63, +124,146,249,140,137, 49,177, 54,203,211,109,155,104,121,128,199,244,121,250, 59, 56, 1, 88,108, 62, 89,118,248,219,184, 45,181, +116, 43,104, 0, 58,155,208, 50, 59, 61, 31, 45, 29, 44,190, 85,162,168,168,104,227, 55,223,124, 19, 70, 74, 85,184,104,233,143, +239,216,207,113,210,123, 13,114,235,125,132,192,176, 70, 24, 53,106, 84, 32,199,113,107,106, 33,205, 95, 1,232, 10, 96, 85, 77, + 78,126, 2,233,172,231,225,225,177,199,203,203,235,162,135,135,199, 30,216,134,103, 31, 7, 81,141,208,123, 80, 51, 50, 61, 42, + 2,220,160,102,100,122, 84, 35, 62,212,192,243, 2, 39, 45,226, 8, 53,199,113,209, 28,199, 69, 47, 90,180,104,161,195,251,221, +190, 46,119,211, 50, 22,205,113, 92,116, 25,133, 84, 34,176, 30,219,232,230, 98, 41,209, 20,142, 74,210, 33,115,165,179, 11,131, +130,130,226,227,227,227,189,156, 25,179,178,178,160,209,104, 48,103,206, 28,175,177, 99,199,190,151,158,158, 30, 83, 69, 34, 36, +217,217,217,109, 71,143, 30, 45,179, 90,173,133, 44,203,146, 26,141, 70,232,237,237,205,216, 15,240,246,246,102,138,139,139, 69, +122,189, 94,192, 48,140,121,236,216,177,146, 9, 19, 38,188, 12, 64, 80, 17,105, 64, 64, 64, 84,255,254,253, 43, 28, 58,160, 40, + 10,122,189, 30,122,189, 30, 86,171, 21,157, 59,119,150,110,222,188,185, 79,110,110,238,250, 10, 21,135, 84, 26, 21, 21, 21, 37, + 42, 40, 40,128,183,183, 55,210,210,210,240,224,193, 3,152,117, 58, 88,117, 26, 88,117, 90,208, 90, 13, 56, 77, 49,242,239,221, + 65,135,102, 77,197, 59,164,210,190,122,189,126,121, 69,156, 74,165, 50,170,195,184,113, 66, 15, 15, 15,116, 31, 93, 50,207,224, +120,179,102,224, 24, 6, 44,195,128,161,105,244, 77, 74, 2, 69, 81, 32, 73, 18,237, 10, 10,132,202,109,219,162,212,106,245,178, +167, 81,217,165, 82,169,112,251,246,237,175, 75, 36, 18,112, 28, 71, 88, 44, 22,156, 60,121,242, 31,247,208, 75, 36, 18,200,100, + 50, 88,173, 86,212,175, 95,223, 56,122,244,232,203, 95,124,241, 69, 56, 73,146, 30, 98,177,248,135,252,252,252,133, 89, 89, 89, + 41,238,242, 81, 20, 5,139,197, 2,139,197, 2,163,209,136,251,247,239, 7, 55,104,208,128,152, 60,121, 50, 99, 48, 24, 26,174, + 94,189, 58,249,228,201,147,138,197,139, 23,191, 10,224,221, 39,157,223,152, 24, 83, 51, 0,205,226,227,101, 98,155,229,215,242, + 63,198,201,161,196,241, 29,241,178,248, 68, 0,234, 90, 20, 89, 18, 0,222,225,126, 66,189, 72, 0, 29, 0, 47,155, 40,120,149, + 32,136, 14,205,155, 55,247, 73, 76, 76, 44,228, 56,238, 42,128,239, 0,100, 85, 70,198,178, 44,193,178, 44,222,110, 95,132,201, + 29, 5,160,168, 98, 20, 23, 23, 35, 45, 45, 13, 9, 9, 9,248,249,231,132,154, 62,155,111,122,122,122,246,145,201,100,245,105, +154, 38,117, 58, 93,154,193, 96, 56,205,178,236, 70,212,192, 71,237,239, 74,167, 29, 30, 30, 30, 75,102,205,154,213,201,219,219, + 27,191,255,254,123,195, 93,187,118, 45,209,235,245,143,229, 92, 47, 19,145, 91,150,175, 92, 19, 26, 26,168,194,141,243,135, 67, + 23,110,216,189, 5, 96,195,120,153,242,236,195, 73,139, 56,138,161, 95, 57,142, 27, 64, 16,196, 17,103,161, 84, 45,179,211, 99, +158, 95,133, 69,203,249,195,210,101,133, 86, 5, 10, 18, 52, 77, 7, 59, 90,178, 56,142, 67, 86, 86, 22, 50, 50, 50,160, 86,171, +225,227,227, 3,171,213, 26,236, 78,251,160,213,106,219,251,249,249, 25, 68, 34,145,217,104, 52, 66,161, 80,176, 34,145,136,179, + 93,135,176,205, 90,100,204,102, 51, 33, 20, 10, 41, 47, 47, 47, 79,179,217,220, 20,149,248,146,113, 28,215,222,207,207,207,229, + 62,179,217, 12,157, 78, 7,189, 94, 15,157, 78, 7,179,217,140,160,160, 32,208, 52,221,182,210, 46, 45, 77,183, 12, 8, 8, 64, +102,102, 38,228,114, 57,210,211,211, 97,209,105, 97,213,106, 65,235, 53, 96,138,139,193,106, 52, 96,245, 26, 80, 22, 3, 66,155, + 52,131,125, 70, 98,133,221,112,139,165,165,159,159, 31,244,250,191,220,205, 56,155,192,162,105, 26,180,205, 57,218, 62,156,232, +239,239, 15,251,140,196, 39, 4, 51,128, 25, 36, 73,174,146, 74,165,194, 73,147, 38, 33, 43, 43,171, 76,157,152, 52,105, 82,169, + 79, 86,215,174, 93, 47,200,100, 50, 90,173, 86,195,108, 54,139,158,215,135,158, 32, 8, 16, 4, 81, 82, 70, 52, 13,127,127,127, +125, 94, 94,222,207, 69, 69, 69,175,215,132,143,162, 40,251,140, 46, 24,141, 70,112, 28,135,223,127,255, 29, 50,153, 76,196, 48, +204, 45,154,166, 21, 34,145, 8,164,205,249,235, 73,193, 54, 35,240, 75, 0, 97, 54, 11,209,155, 40,113, 56,207,112,209,144,184, +117,235,220,228,172,190,112, 51,197,216, 45, 77, 25,168,217,112,164, 43,116,111,170,146, 44,143,235, 16,168,106, 61,208, 67,175, +144, 8,244,108, 90,235,250,255, 93,154,176,107,236,152, 55,189,230,205,155, 87,207,223,223, 95,150,156,156,108,154, 63,127,126, +131,237,219,183, 19, 40, 25,166,171, 16, 15, 31, 62, 60, 48,107,214, 44,223,254,253,251, 55,148, 74,165, 68,113,113, 49,212,106, + 53,114,114,114,240,224,193, 3,238,198,141, 27,247,205,102,243,158,234, 36, 50, 36, 36,100,243,235,175,191, 62,246,165,151, 94, + 18,217, 45,164,122,189,190,205,185,115,231, 6, 29, 63,126,188,139, 94,175,175,118,189,124,244,232,209,158,217,179,103,123,188, +242,202, 43, 77,165, 82, 41, 89, 27,233,116, 4, 73,146, 65,158,158,158, 56,125,250, 52, 84, 42, 21, 72,146, 12,122,220,250,106, +178,178,161,117,130,253, 96,186,180, 28, 77, 3,234,193,100,101, 67,121,137,242,252, 88,180, 42,120,215,183,179, 91,164,170, 16, + 75,198,153, 51,103,206, 34, 8,226,200,204,153, 51,103,185,178,104,217,254, 50,142,199, 57, 28,111,174,109,177, 85,173, 64,147, + 44,203, 34, 35, 35, 3,153,153,153,200,200,200, 64,126,126, 62, 72,146, 4,199,113,238,204, 62,227, 8,130, 96, 79,157, 58,229, +115,249,242,101,125,187,118,237,138,236,254, 47, 52, 77, 19, 20, 69, 17, 54,191, 24, 34, 45, 45, 77,124,241,226, 69,213,237,219, +183,131,108,189, 85,182, 10, 83, 96,185,109,118,129,229,184,152, 76, 38,200,100, 50,247, 84,135,237, 69,248,251,181,107, 37, 34, + 75,167,181, 13, 25, 22,131,209, 20,131,211,107, 33, 97, 40, 72,192,129, 48, 25,220,190,127,142,176,139, 44,171, 77,104, 89, 44, + 22, 80, 20, 5,150,101, 65,211, 79,197,175,124, 93,171, 86,173,218, 30, 56,112, 96,124, 70, 70,249,119,225,144, 33, 67,240,238, +187,239, 98,234,212,169,183, 7, 12, 24,112,227,240,225,195,152, 50,101, 10, 88,150,109, 13,160, 24,192,241,231,237,161, 55,155, +205,165, 22, 40,147,201, 4,171,213, 10, 84,227,179, 10,206,117,211, 94,182, 52, 77,219,185,137, 3, 7,246,227,194,133, 11,100, + 66,194,173,176, 73,147, 38,219, 29,238,159,116, 86,211, 81, 50,115, 79, 98,107, 40, 44, 40,241,127,170, 40,164, 66, 4, 42, 31, +178,227, 42,227,124, 28,180,218,208,106,196, 7, 31,124, 16,133,146, 25,206, 41,143,105,209,122, 69, 66, 18, 95, 79,107,233, 43, +251,176,149,159, 94, 34, 36,116, 73, 95,207,210, 61, 8, 87,234,131,234, 42, 44, 97, 13, 84,117, 22, 46,252, 34,228,246,237, 59, +230, 57,115,230, 36,142, 28, 57, 50,240,195, 15, 63,108,190,111,223,190, 46, 38,147,233, 27, 0, 69, 21, 25, 93, 6, 13, 26,116, + 53, 48, 48,176,193,134, 13, 27,114, 31, 61,122,228, 67, 81,148,135,213,106,101,245,122,253, 3,163,209,120,218,106,181,158, 6, +112,173, 58,137,245,242,242,106, 53,110,220, 56, 81, 81, 81, 17,132, 66, 33,172, 86, 43,114,115,115,209,169, 83, 39,193,161, 67, +135, 90,212,228, 6, 20, 22, 22, 46,255,230,155,111,206,238,220,185,179,143, 82,169,124, 73, 42,149, 6, 3, 96,180, 90,109,142, + 94,175,255,163, 38,233, 44,211,206, 49, 76,206,181,107,215, 34,148, 74, 37, 30, 62,124, 8,134, 97,114, 30,183, 14,200,196,228, +163,155,231, 15,213,109,230,223, 0, 23, 47, 95,133, 76, 76, 62,226, 67,125, 61,247,176,251, 80,193, 81, 64,185, 16, 72,151,227, +226,226,228,139, 22, 45, 66, 92, 92,220, 45, 87, 22, 45,187,224,138,139,139,187,101, 63,206,225,248,243,143,145,198,138, 45, 90, + 21, 41, 72,160,100,118,161, 90,173,246, 81,169, 84,165, 2, 43, 51, 51, 19,153,153,153,144, 72, 36, 72, 75, 75,131, 68, 34,201, +114,167, 19, 34,151,203,127,107,211,166,205, 11, 41, 41, 41,226,249,243,231,215,189,118,237,154,178, 83,167, 78, 47,202,229,114, +134,227, 56,152, 76, 38, 50, 49, 49,209,115,217,178,101,161,237,219,183,183,180,111,223,254,250,238,221,187,141,168, 36,254, 21, + 65, 16,191,100,101,101, 53,172, 95,191,190, 93,180,149, 17, 87,142,130, 11, 40, 25,242, 20, 10,133,215, 43, 75,168, 80, 40,188, +153,148,148,212, 91, 33,147,194,162,213,192,170,211,128,214,106,193,104,139,193, 20, 23, 3,122, 13, 36, 52, 13, 17, 67, 65, 46, +147, 33, 35, 61, 29, 66,161,240,102,101,156, 18,137,228,102, 78, 78, 78,111,149, 74, 85,250, 18,165,104,186,100, 97, 24, 88,104, +186,212,162, 37, 18,137,240,232,209, 35, 72, 36,146,155, 79,186, 38,147, 36,201,216, 67, 56, 84,144, 15, 4, 5, 5,177, 29, 58, +116,192,148, 41, 83,192, 48,140,173, 24,136,238, 0, 46,162,196,191,229,153,132, 43,113,107,119, 90, 55, 26,141,208,233,116, 40, + 44, 44, 20,202,229,242, 23, 66, 67, 67,175, 90, 44,150, 61, 52, 77,111,121,240,224,129,166, 34, 78,155, 48, 43, 21, 93, 44,203, +130,227, 56, 48, 12, 3,138,162, 32, 22,139,217,115,231,206, 99,217,138, 37,136,223,178,157, 27, 52,104, 16,113,232,208, 33,176, + 44,155,254,132,179,111,177,137,150,202, 26, 13,231,144, 10, 31,161,242,144, 10, 21,113, 58,246,254, 28,183, 17, 46,142, 41,135, + 15, 62,248,224, 4, 74,134, 12,243,108, 98,238,113, 56,191, 44,250,238, 11, 25,104, 70,111, 62,183, 83,247,237, 93,141,126,222, +183, 43,127,179, 72, 4,154,151,187, 5,181,108,216,224, 5,129, 74,229, 67,174,223,184, 42,127,199,246,189,201, 15, 31, 62,212, +172, 93,187,182,227, 11, 47,188,224,253,199, 31,127,132, 86, 36,180, 20, 10, 69,227, 55,223,124,115, 92, 97, 97,161, 56, 62, 62, +126,119, 86, 86,214,111, 40, 9, 45,227, 56,131,122, 0,128,173, 54, 33, 26,100,107,231, 46, 2,152, 95, 89,127,141, 32, 8,252, +244,211, 79,229,102, 7,178,143,167,206, 85,141, 26, 53, 26,145,146,146,114, 33, 39, 39,103,152,243, 78,177, 88, 60,175, 73,147, + 38,125,111,221,186,245, 57,128, 99,213, 33, 54, 24, 12,177,123,247,238, 93, 42, 16, 8,234, 48, 12,147,105, 52, 26, 99, 31,219, +162, 69,177, 19,226,214,239,218,100,180, 48,225,114,137,224,161,137, 98,223,226,117,200,243,107,205,178, 65,237, 96,141, 82, 3, + 32,156,214,255,176,189,140, 44, 28,199,217,143, 85, 59, 88,177, 44, 78, 86, 48, 87,251,212,143, 17, 44,157,171,168,141,171,200, +162,245, 9,128,246, 0,126,201,201,201, 89, 53,118,236,216,101, 59,118,236,240,210,104, 52,200,201,201, 65,110,110, 46,132, 66, + 33,148, 74, 37,214,173, 91,103,204,201,201, 89,229,120, 14,202, 71,144, 7, 0,147,191,191,255,111,219,183,111, 15,254,250,235, +175,133, 49, 49, 49,105, 3, 6, 12,104,186,110,221,186, 20,177, 88,204, 49, 12, 67,152,205,102,226,237,183,223,142, 88,177, 98, + 69,170, 64, 32, 80,140, 24, 49,130,240,240,240,248, 5,149,132, 13, 80,171,213,167,190,255,254,251,161,211,167, 79,151, 90, 44, + 22,151,150, 44,251, 54,149, 74,133, 75,151, 46, 89, 10, 11, 11, 79, 86, 97,197, 56,245,195,177,163, 93,255, 51,114,164,152,210, +106, 64,105, 53,160, 53, 26, 48,218, 34, 16, 58, 13, 68, 12, 13,185,152, 69,112,152, 12,180,209, 19, 71,127,253,131, 50,155,205, +149, 6, 54,212,104, 52,167, 46,198,199,119,111, 95,175,158,240,210,180,105,176, 82, 20, 94, 73, 74, 42, 21, 87, 86,171, 21, 7, + 91,182, 4, 67, 16,104, 61,113, 34,238,209, 52,173,209,104, 78,253, 47, 62, 12, 55,110,220,200, 29, 61,122,244, 53,150,101,219, +226, 9,125, 52,243, 73,128,162,168,114,214, 40,134, 97, 74,172,142, 37,150, 3,201,209,163, 71,187, 38, 38, 38,138,255,252,243, + 79, 92,184,112,161,245,142, 29, 59, 62, 9, 15, 15,111,249,240,225,195,236,170,196,155,171,160,191,176,249, 31,238,222,185, 7, +239,188,243, 14,145,157,157,141,239,190,251, 14, 85, 5, 79,253, 59, 16, 19, 99, 98,227,227,101,117,225,228,247,228, 34,164,194, +239,112, 51,164, 66, 69,156,166,152, 18, 43,153, 44,190, 36,216,168, 41,166,100, 56, 80, 22, 95,165,165, 12, 49,166, 24,141,205, + 33, 62,171, 22, 56,245,160, 25,185,229,220, 78,221,128, 99, 15,181, 87,178,140,243, 1,156,128,137,225,238, 93,231,110,188,244, +146,143, 63, 0,152, 77, 76,112,227,198,141,187, 9,133, 66, 9, 0,120,122,122,190,228,231,231,183, 46, 63, 63,191,179,171, 50, +141,142,142,238, 16, 24, 24,216,230,248,241,227,127,100,101,101,221, 2,240,179,243, 65, 17, 17, 17,115,110,223,190,221, 78, 36, + 18, 17, 85,212, 17, 0, 64,183,110,221, 94,144, 74,165,126,199,238,122, 67, 35,110, 4, 78, 80, 12, 8,101, 96, 84,173,144, 38, +110,142,176,176,171,126,133,133,133,173,139,139,139,255,168,102,209,247, 24, 58,116,232,150,248,248,248,176,110,221,186,113,215, +175, 95, 39,157, 71, 17, 34, 34, 34,250, 92,185,114,165,237, 91,111,189,181, 97,215,174, 93,147, 81,118,166,109, 85, 72,179,197, + 27,172, 53,156, 74,198,105,128,169,103,179,153,241, 10,229, 31,128,234,132, 92,120,140,240, 12,143,149,196, 10, 13, 24, 21,108, +111,111,139,137,213,158,162,168,223,111,220,184,113,112,196,136, 17,186,252,252,124,248,249,249,161,126,253,250, 32, 8, 2,235, +214,173, 51, 62,120,240, 96,159, 45,150, 86,251,204,204,204, 65, 54,177,229, 10,218,213,171, 87,239,218,182,109,155,234,218,181, +107, 2,154,166,149, 77,155, 54, 53, 92,190,124,217, 83, 36, 18,113, 98,177,152,189,118,237,154, 34, 34, 34,194, 68, 16,132,244, +199, 31,127,204,191,122,245,106,248,140, 25, 51,190, 65,217,105,226,206,216,185, 96,193,130,140,148,148, 20,152,205,102,104, 52, + 26, 20, 23, 23,151, 46, 69, 69, 69, 40, 46, 46,134, 72, 36, 66,118,118, 54,246,239,223,159,101,139, 18, 95,153,101, 99,237,154, +117,235,213, 89, 15,211,160, 84,200, 65,107,138,192, 20,231, 3,218, 98, 72, 40, 43, 60, 68, 12,234, 54,146, 67,166, 80, 34, 71, +163, 67,252,229, 95,179,109, 81,226, 43, 54, 23, 88, 44,107,223, 93,177, 34,135, 22,139, 81,111,248,112, 88,109, 67,133,142, 66, +139, 33, 8,132,247,234, 5,210,219, 27, 11,247,237,203,177, 69,137,127,162, 96, 89, 86, 96,177, 88, 42,203, 7, 88,150, 77, 79, + 76, 76,220, 5,224, 44, 65, 16, 28, 65, 16, 28, 74,130,181,233,158,229, 7,153,162, 40,204,157, 59, 23, 98,177, 24,115,231,206, +197,167,159,126,138,101,203,150, 97,253,250,245,248,246,219,111,113,244,232,209, 6, 23, 47, 94, 20,159, 63,127,158,139,139,139, +203,139,136,136, 16, 76,156, 56, 81, 37,151,203, 63,168,140, 51, 54, 54, 22, 94, 94, 94,136,141,141,197,146, 37, 75,176,121,243, +102, 28, 60,120, 16,151, 46, 93,130, 64, 32, 96,211,211, 31,193,100, 50,113,171, 87,175,206, 56,120,240,160,113,213,170, 85, 16, + 10,133,196, 83,106, 36, 62,176, 9, 42, 71, 75,144,115, 72,133,124, 0, 43, 81,181,111, 84, 69,156,144,197,199,215,181,137,163, +100, 7, 65,116, 24,192,116, 84, 62,189,218,206, 49, 25, 64,112, 45,112,206,150,143,254,191, 68,213,166, 59,247,175,100, 25,103, + 3,248,193,158, 39,165, 82, 41, 63,112,224,123, 33, 0,236,219,187, 95,148,148,148,228,253,253,247,223,203, 2, 3, 3,241,237, +183,223,202,228,114,121, 96, 5,156,204,193,131, 7,205, 18,137,196,111,194,132, 9,253,218,181,107,247,190,173, 35,218, 11, 64, + 11,148,204, 94,140,186,127,255,126,130,191,191,255,221,147, 39, 79,234,221, 41, 32,173, 86,251,205,214,173, 91,235, 23, 48,190, + 56,166, 31,138,120,118, 41,142,170,182, 32,173,222,167, 80,212,121, 25,175,191,254,122, 29,134, 97, 54, 85,179,220, 95, 31, 50, +100,200,214,248,248,248,176, 9, 19, 38,100, 95,191,126, 61, 7, 64, 60,128,237,142,203,237,219,183,243,198,142, 29,155,181,105, +211,166,144, 17, 35, 70,172, 7, 48,140,127,245,243,224, 81,182, 47,132,170,102, 29,186,120,225,150,254,207,205,205, 93, 93, 88, + 88,120,233,222,189,123,239, 89, 44,150, 16,130, 32, 56,177, 88,156,157,147,147,179,202, 33, 96,169, 43,191,146,222,176,197,218, + 32, 8,130,226, 56, 46,189, 71,143, 30, 31,244,234,213,235,171, 35, 71,142,152,186,119,239,142,189,123,247,250,247,232,209,195, +192,178, 44,119,236,216, 49,255,190,125,251, 26,206,158, 61,171,127,251,237,183,155, 54,105,210,100, 98,108,108,172,154, 32, 8, +214, 21,167,253, 93, 86, 84, 84, 52,164, 95,191,126,151,246,237,219,167, 84,169, 84,160,105, 26, 6,131, 1, 6,131, 1, 28,199, +193,219,219, 27,106,181, 26,243,231,207,215, 20, 23, 23, 15,118, 33,220,156, 57, 77, 38,147,105,216,228,247,167,159, 90,245,249, + 92,175,240, 6, 13,144,127,199, 4,218,100,128,136, 35, 81,247, 5,111,136, 37,114,220, 75,210,226,163, 93, 7,180, 70,147,233, + 53, 23,189,229,114,156,197,197,197,195, 98, 62,253,244,244,134, 25, 51, 60,219, 4, 5, 65, 32, 16,192,108, 54,131, 97, 24,136, + 68, 34, 68,198,196, 64, 28, 16,128, 57,187,118,233, 53, 26,205, 48,148,255, 20,143, 51,103,109,192,145,115,242,141, 27, 55,198, + 54,107,214, 12,147, 38, 77,194,144, 33, 67,202, 28,248,253,247,223, 99,253,250,245, 48,155,205, 99, 1, 92, 7,176, 14, 37, 67, + 29,112, 18, 89,127,119, 58,107,157,147, 97,152,194,164,164, 36,229,210,165, 75, 9,171,213,138,207, 63,255, 28,118,193,105,175, +215, 83,166, 76,169,227,229,229,133,207, 62,251,204,146,151,151,215,115,201,146, 37,103,182,111,223,238,255,205, 55,223,188, 14, + 32,214,153,147,101,217,220,155, 55,111,122,109,216,176,129,164,105, 26,203,151, 47, 47, 55, 60, 57,126,252,120, 88,173, 20, 4, + 2,161,197,100, 50,183,144,203,229,201,126,126,126,114,174,172,115,215,147,188,159,161, 40, 9, 97,224,232,248,110,113,244,207, + 66,197, 33, 21,170,195,169,150,197,199,119, 55,197,196,156,181, 9,162, 68,219, 49,123,237, 38,253,106,112,218, 5, 97, 77, 56, + 79,217,150, 42, 97, 50,153,160, 86,171,145,151,151, 7,149, 74, 5,129, 64, 64, 84,148, 78,179,217,252,231, 71, 31,125,116, 99, +211,166, 77,189,175, 92,185, 50,240,252,249,243, 61, 78,159, 62,109, 74, 75, 75,163, 41,138,226, 66, 66, 66,132,157, 59,119,150, +245,239,223,223, 67, 42,149,146,179,103,207,206,251,226,139, 47,252, 81,214,135,205, 57,239, 2,130, 32,240, 97, 87, 45, 98,123, + 8, 96,177, 88, 81, 84, 84,132,140,140,116, 36, 36, 36,224,202,149, 59,224, 56,142,172, 70,185,251, 1,152,253,221,119,223,133, + 74, 36, 18, 98,215,174, 93,117,118,237,218, 85,165, 37,117,199,142, 29,117,118,239,222, 61,207, 54,122,145,254, 44, 62,239, 60, +231,255, 44,231,179, 12,231,200,240,168, 82,104,217,218,249,246,176,125,148,148,162,168, 95, 92,132,112,248, 4,192, 92, 7, 43, + 88, 85,230, 60, 13,199,113, 23,122,247,238, 61,165, 87,175, 94, 43,250,244,233,147,149,149,149,213,112,249,242,229, 97, 52, 77, + 91, 19, 18, 18,200,228,228,228,180,223,126,251,173, 81,147, 38, 77, 38,222,190,125,251, 28, 65, 16, 86, 55, 50,152,144,156,156, +220,169, 71,143, 30,251, 39, 78,156, 24,222,161, 67, 7,137, 74,165,130, 80, 40, 68, 74, 74, 10,254,248,227, 15,203,238,221,187, +211,139,138,138,170,243, 9,158, 95, 82, 51, 50,162, 70, 76,125,111,223,196, 33, 3,253,255,213,244, 5, 73, 72, 72, 8, 96, 52, +226,206,195,108, 92,189,243,135,117,243,133,171,106,179,217, 60, 12,238,127,130,231,151,223,238,221,235,221,115,198,140,125,243, +254,243,159, 32,100,101, 9, 67, 66, 66, 32,145, 72,240,224,193, 3, 36,179, 44,189,120,227,198, 28,155,200,122,210, 81,225,165, + 0,150,178, 44, 43, 4, 0,185, 92,142,119,223,125, 23,142,159,220, 89,191,126, 61,140, 70, 35, 0, 8, 9,130, 88, 10, 96,203, +179,110,197,178,163,160,160, 96,206, 43,175,188, 18, 39, 20, 10, 43,140,122,235,227,227, 3,173, 86, 11,154,166,153,140,140,140, + 59, 62, 62, 62, 16,137, 68,224, 56,206,229,115,148,159,159, 63,103,216,176, 97, 11, 72,146,172,200,242, 1,165, 82,153,118,230, +204,153,198,111,189,245, 22,249,223,255,254, 55,101,194,132, 9,210, 51,103,206, 48, 28,199,237,127,210,247,160, 75,151,157,192, +134,152,215, 0,188, 6,148,115,120,207,176,109,171, 86, 72,133, 46, 93,118, 98, 3,254,226,116, 28,198,179, 11, 34,155, 21,170, +185, 44, 62,126, 5, 74,252, 44, 42,229,238,178,179, 11, 54,196,160, 86, 57,221,129,163,246,213,235,245, 96, 24,166, 50,107,222, +239,123,247,238, 93,241,219,111,191, 5, 76,153, 50,165,225,127,254,243, 31,101,143, 30, 61, 60, 29, 15, 48, 26,141,236,225,195, +135,245,235,215,175, 47,190,112,225, 66,234,248,241,227, 59, 84,150,206,135, 15, 31, 30, 93,184,112,161,119,255,254,253,155, 0, + 40,245,207, 82,171,213, 72, 75, 75,195,159,127,254,153,102,181, 90, 15, 85, 35, 75,249, 0,230,141, 26, 53,106,233,182,109,219, +234, 76,152, 48, 33,123,247,238,221,127,162, 36, 96,177, 51, 84, 67,134, 12,105,185,109,219,182,144, 9, 19, 38,100,163,196,143, + 44, 29, 60,120,240,176,163, 59,202,251,105, 85, 58, 50,177,213, 98,177,112, 38,147,137, 51, 24, 12,156, 78,167,227,224,250, 43, +240, 7, 51, 51, 51,185,244,244,116,238,225,195,135, 92,106,106, 42, 7,224, 91, 39,197,235,170,193,242,216,177, 99, 71,163,208, +208,208,207, 21, 10,197, 9,129, 64,160, 17, 8, 4, 26,169, 84,250,131,159,159,223,167,139, 23, 47, 14,229, 56, 78, 92,137,138, +174, 8, 66,145, 72,244, 86, 96, 96,224, 65, 95, 95,223,116, 31, 31,159,244,192,192,192,131, 34,145,232, 29, 0,162, 42,148,121, + 69,144, 9,133,194,143, 60, 60, 60, 78, 73,165,210, 92,169, 84,154,235,225,225,113, 74, 40, 20,126,132,202, 3,169, 86,202, 41, +145, 72, 62, 10, 8, 8, 56,165, 84, 42,115,149, 74,101,110, 64, 64,192, 41,137, 68,242, 56,156,143,211, 43,177, 11, 45, 3,103, + 3, 65, 16, 84,235,214,173, 55,180,109,219,118, 93,219,182,109,215,181,106,213,234,107,155, 85,146,179, 89, 91, 12,168, 56,120, +227,223,153,206,167,198, 25, 25, 25,185,125,219,182,109,236,156, 57,115, 52, 77,154, 52, 41,152, 51,103,142,102,219,182,109,108, +100,100,228,246,154,114, 6, 5, 5,213,139,140,140, 44,216,180,105, 19,157,148,148,196,109,218,180,137,142,140,140, 44,112,138, + 12,255, 36,242, 78, 0,136,176, 89,127, 14, 1,216,131, 18,231,247, 80, 0, 68,140, 41,134,179,205, 62, 60, 1,160, 79, 5,101, +239, 46,103,152, 41, 38,134,179,249, 84,157, 4,144,232,176,222, 13,101,253,191,158, 4,167, 75,180,104,209,226, 30,231, 0,139, +197,194,169,213,106, 46, 41, 41,137,187,112,225, 2, 23, 22, 22,118,207, 13, 78, 63, 0,111, 3, 56, 28, 28, 28,124,187, 99,199, +142, 15, 59,117,234,244,176, 94,189,122, 41, 34,145,232, 10, 74, 34,188, 71,218,150,165, 0,154, 84,193,217, 81,165, 82, 45, 12, + 11, 11, 59,212,184,113,227, 75,245,235,215,191,226,235,235,123, 68, 38,147, 45,194, 95,145,177,171, 91,231,123, 12, 29, 58, 52, + 77,167,211, 49, 47,189,244,210,109, 87, 39, 53,107,214,236,162, 78,167, 99, 70,142, 28,153, 14, 32,250,159,240,188,243,156, 79, +133,243, 31,133,198, 54,193,116,208, 97,249,196,197,113,159, 56, 29,179,213,118,110,149, 5,193,113,156,128,227, 56, 15,142,227, +188, 57,142,243,229, 56, 78,197,113,156, 39,199,113,210, 42,204,223,124,197,254,251, 56, 39,219, 4,148,193,246,223, 25, 85,237, +127,174,239,103,104,104,168, 79,187,118,237,166, 30, 56,112,224,163,251,247,239,127,116,224,192,129,143,218,181,107, 55, 53, 52, + 52,212,231,113,210, 25, 20, 20, 84,175,121,243,230, 95, 53,107,214, 44,189,121,243,230, 95, 57,137,172, 39,153,119,137, 77,196, + 52,179, 45, 13,109,219, 8,148,196,194, 90,107, 19, 54, 17, 21,244,212,170,195,105,231, 59, 4,160,175,109, 57,100,219, 22,246, + 20, 56,203,161, 65,131, 6,199, 91,182,108,121,175, 85,171, 86,201,173, 90,181,186,215,162, 69,139,123, 77,155, 54,189, 23, 17, + 17,113,175,110,221,186,247,252,253,253,143,215,160,140,124, 1,132,160,252,103,192,158,118,157,239, 30, 25, 25,121, 85, 38,147, +185,140, 13, 38, 20, 10,231,181,106,213,234, 38, 74,102, 74,242,237, 39,207,201, 11,173,255, 33,240,149,240,217,227,148,162,242, +207,140, 84,181,159,191,159,207, 54,167,203,111,117,217,132, 76, 67,155,192,145,212, 2,167, 35,159,189, 78, 69, 56,136,166,167, +193,201,215, 37,158,147,231,228,133, 86,173, 67,200,223, 2, 30, 78, 48, 63,230,126, 30,207,197,104, 60,126, 0, 0, 32, 0, 73, + 68, 65, 84, 54,170, 19, 19,235,113, 56, 93,241,221,127,202,156, 60,120,240,224, 81, 91,109,103,119, 0,231,236,189,194,138, 84, +105,117,102, 19,212, 68,217,158,230, 57,121, 78,158,147,231,228, 57,121, 78,158,243, 31,199,105,199,138, 10,182,223,113, 90,255, +250, 25, 21, 94, 79, 36, 76, 15,111, 86,229, 57,121, 78,158,147,231,228, 57,121, 78,158,179,166,152,248,140,138,172,110,246, 21, +126,232,144, 7, 15, 30, 60,120,240,224,193,163,246, 80,117, 28,173, 61,123,246, 8,236,255, 71,141, 26, 53,158, 97,152,169,246, +117,129, 64,176,230,187,239,190,219, 82,217, 21,134, 15, 31,206, 84,198,233, 10, 85, 93,199, 21,103,139, 38,202, 73,126,222,138, +247,138,138, 13, 43, 83, 50,153, 11, 38,147,169,185,125,159, 76, 38, 75,220,178,101,203,221,218, 78,231,248,241,227,155, 56, 95, +167,126,152,168,187,175,151,236,221,130, 34,221,242, 91,247,116, 95,243,117,236,169,192, 31, 64,180,151, 76, 60,168,133, 74,220, +241,207,124,211,101,189,149, 57,140,146,217,176,133,207, 99,134,131,131,131,155, 42,149,202, 49, 0, 90, 24, 12,134, 64,133, 66, +145, 11, 32, 65,163,209,108,207,206,206,190,227, 46, 79,183,250, 72, 3, 16,110, 91,125,120, 46, 21,245,220,217, 87, 21,250, 68, +192,196, 1, 82,130,128,245,100,242, 95,206,232,125, 27,193,196,114,229,183,247,105, 4, 11,199, 65, 76, 0,230,147,247, 33,123, +142,138, 74, 9, 32, 10, 37, 33, 28,110,160, 36,252,132,129,127,100,121,240,120,174,224, 60, 84, 88,186, 46,172, 64, 76,116, 21, + 11,137,175, 56,112, 42,128,243, 51,155,205, 34,137, 68, 2,139,197, 2,133, 66,190,246,237, 9,227, 63, 7,137, 34,138,198,187, + 91,182,108,169,241,151,174,171,115, 29, 0, 63, 57,159,239,163,148, 47, 56,123,248, 99,159,174, 3, 22, 47,178, 60,200,139,213, +106,181,164, 84, 42,133,217,108,134,183,183,119,167, 73, 19, 39,190, 68,138, 56,139, 88,236,113,121,197,138, 21,217, 53, 77,231, + 7, 31,124, 16,108,181,154,254,205,178,172,196, 98,177, 72,157,175,227,173,240, 88,124,246,240,199,138,110,209,139, 62, 7,120, +161,245, 20, 32,169,231,227,113,110,229,168,238,205, 58,182,104, 12, 54,225, 60, 76, 22,235,160,179,233,186, 65,159, 94,201,156, +158,174,179,182, 69, 45, 4,172,252, 31,130,160, 97,195,134, 83, 2, 2, 2, 70,110,220,184, 81,220,176, 97, 67,200,100, 50, 24, +141,198,144,251,247,239,135, 76,154, 52,169,155, 92, 46,223,149,146,146,178, 22,238,125, 8, 46,252,236,214,255, 3, 0,116, 26, + 51, 63, 28, 37, 31,139, 54, 56,239,235, 62,110,126, 56,128, 25, 40,251, 97,228, 44,148,132, 80,112,213,234, 72,142,108, 91,134, + 65, 99, 63, 18, 2,152, 84,154,120, 18,248,225,219, 85,232, 55,234,189, 50,219, 9, 14,194,195,219,150, 33,122,236, 71, 21,126, + 71,177,111, 99,130, 98, 89,174, 66, 75, 60, 73, 18,244,137,123,156,171, 15, 12,231,160, 36, 6, 88, 57, 74,148,124,208,217,229, +241, 3,154, 10,114,172, 20,227, 50,224,172, 88, 36,200, 61,122,135, 41,119,110, 76, 27, 80, 20, 83,210,182,138,133, 96, 14,166, +120,159,157, 61,123,182, 48, 58, 58, 26,155, 55,111,238,252,245,215, 95, 79,212,106,181, 63,218,238, 91, 50,255,248,242,224,241, + 92, 11, 46,215, 66, 75, 40,192,134, 67,251,182, 52,202,201,205, 67,204, 91, 31, 98,231,206,157, 40, 44, 44,132,143,143, 15, 36, + 98,177,104,229,210,255, 11, 86, 42, 61,130, 99, 38,198,110, 0,208,180,166,169,169,230,117, 26, 59,159, 79,216, 62,165, 35, 20, +144, 34,137, 68, 66,238,218,181, 11, 69, 69, 69, 80,169, 84,144, 72, 68,228,138, 69,159,200,149, 74, 79,249,155,147,103,118, 70, + 73,252,159, 26,193, 98,209,117, 62,176,115,139, 82,173, 86, 99,220, 59,177,112,190,142, 88, 44,102,236, 47, 22,190,142, 61, 21, +204,222,248,238,216,102, 47,122, 1,214, 91,151, 32, 18, 8,160,240,246, 65,148, 80, 0, 1,129,230, 49, 39, 82,103, 1,248,244, +121,201,108,195,134, 13,167, 12, 31, 62,124,228,130, 5, 11,196, 36, 89, 18,114, 78,175,215,195,104, 52, 34, 52, 52, 20,103,207, +158, 21,207,153, 51,103,228,247,223,127,143,148,148,148,213,213,229,191,117,235, 86,253,240,240,112, 19, 0, 12,108,233,229,188, +175,158,125, 31, 0,120,121,121, 85,201,231,167,242, 48,223,186,117,181,133,253,188, 41,189, 66,153, 10,182,155, 0, 40, 42,227, + 98, 89, 78,120,242,171, 73, 21,238,127,107,193, 14,250,198,158, 11, 77, 27, 54,108,104,116,220,238,233,233, 89,209, 41, 65, 58, +157, 46,220,121,163,253,120, 43,197, 4, 86,116,189, 62,239,174,119, 41,192, 40, 6,194, 29, 59,118, 0, 0,190,252,104,180, 96, +211,207,121, 66,161,176,164,169, 93,186,116, 41,230,205,155, 39, 57,113,226, 68,255,109,219,182,245, 63,120,240,224,202,138,132, + 42, 15, 30, 60,158, 73,145,229,248, 91,177,208, 34, 9,194, 75,233,229,137,215, 94,127, 27,199,143,255,128,174, 93,187,150,238, +107,208,160, 1,134, 15, 27,140,239,182,174, 0, 0,175,199, 73,209,227, 94,167,176, 88,255,105,191,145, 95,205,127,152,173,187, +114,228,200, 17,116,233,210,165,204,249,175,143,120, 13,223,126,179, 20,149, 68,153,119, 11, 4, 71,138,189,148, 30, 24, 21,243, + 14, 92, 93,103,226,184, 33, 71,250, 14, 95,213, 59, 39, 95,191,130,175,103, 79, 30,141,130,253,250,180,108,214, 20,133,251,215, +226,143, 34, 19,142,103,154,240,102,212,191, 16,233, 43, 71, 23,154, 65,176,135,168,103,182,158,122, 46,132, 86,112,112,112,211, +128,128,128, 50, 34, 75,171,213, 66,167,211, 65,163,209, 64,171,213,130, 36, 73,196,198,198,138,207,157, 59, 55, 50, 56, 56,248, +180, 27,195,136, 15,109,150, 44, 64, 32,210,205,157, 59,215, 28, 24, 24,104, 86, 40, 20,156, 80, 44,213,118, 31, 55,223, 11, 0, + 72,161, 88,187,114,229, 74, 75,104,104,168, 73, 40, 20, 74,222,123,239, 61,210,157, 52,155,205,102,206,145,211, 98, 49,151,110, + 95,188,120,177, 37, 40, 40,200,172, 80, 40, 56,171,213,125,163,227,205, 7, 5,144,138, 5,144,138, 5,144, 73, 68,240,170,223, + 14,210,194, 63, 65,211, 52,150, 44, 89, 98, 13, 14, 14,182, 40, 20, 10, 78, 34,145,136,167, 77,155, 86,101, 58,199,143, 31,207, +169, 84, 42,171, 66,161, 16,207,155, 55,175,220, 76,161, 51, 55, 50, 32,151,136,160,144, 10,209,184, 65, 24,164,156,209,237,180, + 10, 4,101,189, 17,164, 82, 41, 58,119,238,140, 22, 45, 90,224,224,193,131,221,121,161,197,131,199,115,129, 10,103, 24, 10, 1, +224,200,145, 35,221, 80,242, 65, 68, 68, 71, 71, 19, 37,103,112,152, 49,101, 24,222, 28, 55, 10, 12,195,150,126,231,139, 32, 9, + 76,126,163, 63, 88,214,157, 17,137,170,167,120,214,224, 58,165,156, 28, 65, 10, 0,160, 81,189, 16,110,226,155,255, 1,195,178, +127, 13,148, 8,128,183,199,245, 43,217, 86, 11,233, 20,128,193,135,147, 94,133,171,235, 52,109, 84,135,164,173, 38, 16,101, 63, +246,248,119,124,108,147,231,116,129, 22,117, 67, 34, 40,163, 17, 38, 19,133,248, 59, 5,198, 83, 25,250, 64, 82,149,170, 94,245, + 90, 7,153, 64,157,137,122, 94,146,198,217,122,234,185,200,187, 82,169, 28,179,113,227,198,114, 34, 43, 39, 39,135,212,233,116, +176, 90,173,172, 86,171, 5,195, 48,152, 57,115,166,104,206,156, 57, 99,178,179,179,231,217, 53,143, 43, 78,155,223,213,140, 91, +183,110,213,155, 61,123,182,181,103,207,158, 15, 27, 52,104,160, 23, 8, 4, 8, 9, 9, 89, 21, 21, 21,229,187, 96,193, 2,107, +255,254,253, 83, 5, 2, 1, 26, 55,110,172,255,243,207, 63,235, 1,144,187,155,119, 71,206, 45,103,214,112, 0, 64, 16, 4,162, +162,162,210, 26, 55,110,172, 23, 8, 4,184,123,120, 49,231,238,253, 20, 9, 73, 52, 9,245,182, 53, 34, 4, 32,247, 44,245,196, +139,138,138, 74,111,218,180,169,142, 36, 73,220,188,121, 51, 12,229, 63,107, 85,142, 83, 46,151, 83,175,191,254,250,195, 59,119, +238,184, 58, 30, 66, 1,137, 14, 77,109, 6,172,208,182, 64,250,197, 10,211, 41, 18,128,158, 51,101,180, 80, 37, 3,164, 94,254, +102,141, 70, 3,165, 82, 89, 98, 33,179, 90,241,251,239,191,163, 99,199,142,221,246,236,217,115,142,127,222,121, 78,158,243, 47, +184,210, 34,207,160, 53,203,241, 67,247,101,124,180,206, 58,103,138, 97,104, 52, 8, 15,194,226,255, 27, 15,134, 97,193, 48, 12, +104,219, 47,195, 48,160,172,214, 90, 73,217,227, 92,199, 71, 41, 95,240,195,174,119,125,122, 14, 89,218, 43,110,246,184, 83, 12, + 3,176, 44, 5,138, 2, 24,150, 2,203, 48,160,168,218,113,205,161, 88, 22,245,194,130, 17, 55,123, 28,156,175,179,253,187, 61, + 3,207, 28,138, 85,116,141, 94,244,225,221, 52,195, 18, 94,216, 63, 89,200,196, 82, 33, 39,148,193, 98,161,161,181,176, 22, 0, +122, 19,197, 90, 57, 15,127, 25, 0, 8, 73,226,121,154, 93,219,162, 97,195,134,101, 68,214,178,101,203,252,215,173, 91, 23, 10, + 0,195,134, 13,203,232,213,171, 87, 94, 82, 82, 18, 66, 66, 66,136,188,188,188, 1, 0,222,179,157, 59, 3,192,186, 10,120,245, +225,225,225,166,128,128, 0,179, 93, 16,145, 36, 9,161, 80,136,240,240,112, 83, 96, 96,160,185,113,227,198,122,177, 88, 12,146, + 36, 97, 23,122,110,117,243, 8, 2, 2,129, 0,118, 78,103,107,143,157,179, 58, 16, 9,201,242,205,155, 3, 39, 73,146, 46,175, + 87, 97, 29,146,201, 56, 0, 21, 30, 47, 32, 29,154, 71, 97,229, 30, 2,241,191, 67, 4,224, 44,199,113,184,126,253, 58, 82, 82, + 82, 32, 22,139, 17, 28, 28,140,121,243,230,193,108, 46,209,187,195,135, 15,239, 6,224, 38,255, 4,243,224, 81,138,179,207,160, +192,114,182,106, 85,238,163,117,228,200,145,110,209,209,209,231,236, 2,168, 68,236,184, 16, 63, 20, 13,138,178, 2, 28, 87, 43, + 66,171,162,235, 48, 12, 91,233,117,236, 62, 90, 44,203, 9, 93,138, 44,150, 5, 77, 81,181,114,247, 88,134, 2,203, 82,112,117, + 29,130, 32, 25, 91,131, 47,230,159,147, 39,143,224,240,122, 36, 21,222, 0, 23,104, 19, 66,253,164, 18,228, 25,209,240,133,102, +130,223, 13, 20, 46,221, 72,132,191,167,242,185, 41, 23,131,193, 16, 40,147,201,160,215,235, 75, 45, 89,235,214,173, 11,181, 88, + 44, 36, 0, 8,133,162, 48, 53, 27, 42, 99, 88,192, 91,153,133,194,194, 98, 63,142,227, 8,155,224, 89, 10, 96, 11, 42,137,238, + 47, 22,139, 75, 5,138,163, 0,146, 74,165, 53, 18, 48,118,216,197,153, 88, 44,118,185,221,121,120,173, 42,136, 29,133, 22,184, + 18,171,150,147,216, 18, 8, 4,176,251, 70, 85, 5,137, 68, 82,154,119, 87, 16, 10, 28,174, 39,168,190, 43,166,213,106,133, 78, +167, 67, 81, 81, 17,100,178, 18,131, 25,199,113, 32, 8,226, 61, 0,239,243, 79, 49, 15, 30,174,181,200, 51, 44,182, 92, 11, 45, +148,152,236, 8, 0,160, 41,171, 75,241,179,231,240, 37, 60,204,214, 35,216,255, 23,112,213,140,122, 58,114,228,200,173, 33, 33, + 33, 29,236,235, 82,185,167,223,196,119, 63, 3, 77, 91,225, 37, 39,241,214,152,126,101, 68, 86,137, 69,203, 82,225, 55, 65, 10, +139,245,159,246, 27,190,122,190,183,210,239,138,179,248,137,139,191,246, 90,161,198, 28, 70,146,191,162,144, 8, 97,134,191,253, +217,120,135,198,253,198,174,245,115,167,187,109, 15, 36, 72,209,107,147, 86, 77,228,132,158,205, 21,164,246,252,199,227,254,117, +192, 81,204,249,250,250, 30,233,243,218,202,222, 57, 5,188,143,214,211,128,151,183,138, 12,123,185, 59, 94,126,239, 43,156,249, +228, 99, 14, 40,132, 95, 72, 40,217, 99,202, 23,240,124,121, 32,174,190, 53,134, 5, 10,158,139,188, 42, 20,138, 92,131,193, 16, + 98, 52, 26,161,209,104,160,209,104,202, 10, 2,145,136,152,248,206, 84,127,145, 88, 2,202,106,193,241,237, 95, 84,201,105, 15, +225, 48,176,165, 23, 4, 34,137, 54,161, 97,195, 85, 66,161, 16, 36, 73,226,240,218,143,223,219,191,252, 93, 47, 0,184,113,100, +173,102, 84,236,154,213, 36, 73,194,108, 54, 75,171,147,238, 71,143, 30,133,153,205,102,147, 77,160,217,133, 31, 30, 60,120, 80, +215,108, 54, 27, 29,183,187, 3,185,194, 11, 80, 53, 0, 20,129,229,172,103,169,169,169,117, 40,138, 50, 8,133, 66, 88, 44, 22, +183, 84, 17, 73,146,226,155, 55,111,134,177, 44,235,242,248, 22, 17,117,128,224,150,128,196,219,237, 60,115,110,116, 68,109, 98, +235,137, 69,144,230,193,227, 89,177,108, 61,131,207, 4, 81,193,255, 82,161,213,253,200,145, 35,156, 99, 15,145,166, 40,155,200, +250, 75,244, 48, 12,139, 76,181, 9, 73, 73,119,177,114,229, 74, 92,186,250,145,247,130, 5, 11,164,115,230,204, 49,143, 28, 57, +114, 57,203,178,173, 72,146,188,129,191,134, 42,202, 90,133, 88,182,238,181,107,215, 26,218,215, 41,138,130,151,151, 23,188,188, +188,208,180,113, 88, 57,145,197, 48, 12,172,149, 12, 29,218,125,180, 8,142,229, 40,138, 1,195,178,165,226,167, 80, 99, 14, 59, +116,250,122, 35,135,195, 95,176,255,233,220,174,121,197, 98,112,210,188,210,124,236, 90, 63,119,250,130,205,155,165,133, 76,192, +180, 81,175,189, 25, 57,124,212, 24,188,254,234, 43,221,204, 22,203, 65, 1,201,177, 84,233,245, 64,130,131,179,143, 22,143, 39, +132,228, 34, 61, 37,146,202,225, 25, 92, 31,119,117,140, 88, 32, 16,252,114,191,200, 32, 38, 5, 66,144, 66, 49, 18, 10, 77,212, +115,148,221,132,228,228,228,144,186,117,235, 66,163,209,128,166,105,118,216,176, 97, 25, 66,161, 40, 76, 40, 18, 17,209,163,166, +178,217,217,153, 20, 73, 10,192,113, 12, 94, 25, 62,137,144,202,228, 98,171,197, 66,163,100,232,208,149, 53,203, 49,132,131, 87, + 84, 84,148,175,125, 38,224,254,229,239,122, 57,236, 83,190,244,210, 75,190,142,179, 14,221,180, 22, 17, 35, 71,142,148,135,135, +135, 19, 0,240,235,246,217,118,235, 25, 49,112,224, 64, 89,120,120,137, 31,254,143,107,223,117,155,211, 95,193, 1,197, 15,128, +226,212,114,150,172,129, 3, 7, 74, 27, 54,108, 88,173,103,209,230, 0, 95, 97,236, 46, 15, 33, 13,100, 95,119,139, 43,166, 13, +168, 80, 79, 8,151,191, 66, 66,226,233,103,238,240,241,137,159,121,177,197,131,135, 91,112,210, 34,207, 20,186,217, 4, 98,119, +219,111,169,224, 18, 2,128,205, 68, 71, 56,232, 44, 80,180,181,156,200, 98, 24, 6, 34,194,140,149, 43, 87,226,253,247,223, 7, + 0,241,244,233,211, 15, 44, 88,176, 96, 40,203,178,173, 56,142,235, 66, 16, 68,101,189,198,179, 33, 33, 33, 57, 28,199,137, 72, +146,236,178,118,237, 90,223,254,253,251,195,203,203, 11, 28,203,149, 19, 89, 12,195,194,106,181, 84,248,153, 91, 31,165,124,193, + 15,123,166,249,244, 28,188,180, 23,195,178,167,236, 34,139,101, 24,128, 45, 57, 41, 63, 55, 3, 39,143, 31,196,134,245, 27, 10, + 65,112,183,193,129,181,137, 65, 84, 32, 6, 91, 93,252, 53,177, 75,231,118,205,177, 96,243,102,233,173,107, 89, 7,166,126, 48, + 43,114,248,168, 49,216,243,221,118,144,116,209,117, 71,145,197, 80, 44,138, 11,243, 6,254,196,251,104, 61, 45,248,158, 60,117, +138, 24, 51,102, 12,171,213,106, 33,150, 72, 88,138,162, 4,255,254,247,191,153,247,223,127,159,204,206,206,134, 70,171, 19, 2, +240,197,115, 96,214,210,104, 52,219, 39, 77,154,212,237,252,249,243, 98,146, 36,161,209,104,208,163, 71,143, 60, 53, 27, 42,155, +248,206, 84,255,204,204, 12, 90, 41, 23,154,197, 98, 17,114,115,115,217,110,253, 71, 27, 71,141,127,191,206,251,179,227, 54,102, + 93, 94,191,206,157,107, 56,206, 4,116,222,183,105,211, 38, 75,104,104,168, 73, 42,149, 74,198,141, 27,231,214,248,161,197, 98, +225, 22, 47, 94,108,118,158, 93,104,177, 88,184,149, 43, 87, 90,194,194,194,204,114,185,156,163,168,170,253, 62, 73,146,160,223, + 90,176,131,166,105,186,140, 21,203, 46,178, 40,150,208,125,245,213, 87,214,176,176, 48,139, 66,161,224,164, 82,169,216,157,116, + 78,157, 58,149,243,241,241,177,122,120,120,136, 99, 99, 99, 31,107,214, 33,197, 64,184, 96,109,105,120, 7,169,151,151, 23,180, + 90,109,105, 90, 67, 66, 66,120,177,197,131,135, 11,148,211, 34,207,166, 21,206,189, 56, 90, 44,160,203,201,205, 11,244, 15,170, + 15,154,166,109, 11, 5,154,162, 48,237,237, 81, 88,190,254, 43, 0,176,139,173,168,233,211,167, 31, 0, 80,101, 99,182,107,215, +174,249,211,167, 79, 87,230,228,228,156,216,186,117,171,239,232,209,163, 49, 99,198, 12, 44, 93,186, 20, 34,137, 12,190, 1,117, + 75,175, 99,191,110,158,186, 0, 28, 56, 93, 5,118, 58,107, 73, 35, 5,161, 95, 64, 61, 80, 12, 5,150,162, 64, 81, 20, 8, 65, + 73,214, 78, 30, 63,136,209,111, 76,133, 72,170,244, 89,179,114,137, 49,242,229,144,161,115, 38, 76, 48,187, 97, 4, 36,111, 93, +203, 58, 48,245,253,216, 40,187,200,218,183,125,253,237, 47,103, 14,222, 41,149, 8, 75,175, 67,177, 44, 72, 82,192,251,104, 61, + 37,145, 37,149, 74,247, 30, 59,118,236, 94,219,182,109, 9,189, 94, 15,138,162,144,151,151,135, 3, 7, 14, 36,112, 28, 7, 31, + 31, 31, 28, 59,118,140, 29, 61,122,244, 94,179,217,252,218,179, 46,182,178,179,179,239,200,229,242, 93,179,102,205, 26, 53,115, +230, 76, 17,203,178, 72, 74, 74, 2, 8,130, 19,137, 37, 32, 73, 18, 34,145, 16,197,197, 26, 86,225,169,202,178,114, 2,133, 72, + 44, 1, 41, 16, 87, 54, 77,248,161, 45, 24, 41, 72,161, 88,107,159, 9, 40, 22,139,113,117,207, 50, 77,247,113,243,149, 0, 32, +150,202, 11,251,244,233,147,214,188,121,115,253,111,191,253, 86, 15,229,103, 29, 58, 63,159,244,144,113,177, 2,133, 92,166,143, +138,138,122,104,231, 76, 61,181, 70, 51,102,242,108,130, 16, 72,244,209,209,209,105,145,145,145,122,129, 64,128,196,131, 75, 52, + 67,198,197,202,136, 74,130,172,158,184,199,189,117, 99,207,133,166, 95,124,241, 5,213,191,127,255, 71,118,127,177,212,212,212, + 58, 3, 6, 12,144,174, 88,177,130, 26, 48, 96, 64,250,139,255,207,222,117,199, 53,113,254,225,231, 46,155,189, 71, 16, 68, 69, + 81, 20,112,139, 11,197, 58,107, 29,173,226,194,189, 71,157,173,179, 14,220, 74,221,168,117,214, 90,220, 84,171,162,214, 81, 23, + 42, 46, 16, 7, 67, 69, 1, 25, 97, 67,128,144,157,187,223, 31, 36, 52, 32, 35, 65, 91,107,127,121, 62,159,124,146,220,189,247, +220,123,251,185,239,251, 29, 94, 94,197, 36, 73, 34, 50, 50,210,185, 58, 75,149, 6, 70, 70, 70,138, 9, 19, 38,188,123,254,252, +121,109,163, 14,171,133,139,139, 11, 40,138, 66,183,110,221, 32,145, 72, 12,150, 45, 3, 12,248,111,162, 98, 30,173,170, 51,195, + 43,148,138,111,167,204, 94,185, 19, 32, 76,181,238, 2,127, 25,150,104, 16,223,127,255,157, 9, 0, 35,141,216,154, 59,119,110, +141,101, 78,180, 68, 86,155,128,128, 0, 44, 94,188, 24,155, 55,111, 86,253,248,227,143,140,248, 87,137,242,177,211, 87, 20, 84, + 88, 15,104,208,197,148,130,250,182, 50,190,124,161,104,133,239, 87, 27, 86,166,101,150,220, 25, 59,109,105,217,221, 75, 5,160, +144,224,171, 0, 96,207, 79, 63,137, 88, 92,115,147, 33,195, 71, 1, 64,207,157,219,130,206,172,193,129,154,197, 22, 77,120,124, + 59,119,129,149, 70,100,237,218,186,246,185, 5,145, 25, 60,243,187, 24,133,246,122, 0,192,218, 12,103,124,191,218,208, 59, 43, + 79,180,221,112,158,253,115,224,112, 56,171,175, 95,191,110,226,237,237, 77,228,230,230, 66,165, 42, 61, 34,114,185, 28, 66,161, + 16, 69, 69, 69,144, 74,165,104,221,186, 53,185, 99,199, 14,147,153, 51,103,174,150,201,100,211, 63,247,237,126,251,246,237,174, +115,231,206,225,214,173, 91,195, 22, 45, 90,196,114,116,116, 36, 44, 44, 50, 9,133, 92, 6,128,166,179,179,179, 41, 99, 83, 75, +129,173,131,243,187,244,140, 44, 15,133, 92, 6, 74, 37,175,210,219, 92,157,222,225,251, 23, 47, 94,212,219,180,105,147, 76, 59, + 18,112,248,130,157, 59, 90,183,110,109, 29, 28, 28, 44,235,215,175, 95,178,198,121, 93, 23,103,248, 43,111, 48,251,197,139,103, +205, 42,114,250, 77,222,116, 80,195,169, 29,141,216,255,187,189, 7, 27, 53,106,100,237,233,233,153, 92, 29,111,131, 6, 13,196, +124, 62, 95,214,164, 73,147, 98, 22,139, 85,106,201, 82, 40, 74, 26, 52,104, 64, 57, 56, 56,200,154, 54,109, 90,172,175,211,190, +145,145, 17,173,177,138, 85, 6,125,162, 14, 89, 12, 40, 3, 2, 2,202, 50,195,127,223,168,145, 96,212,168, 81,252,121,243,230, +225,224,193,131,184,123,247,238,123, 98,191,107,215,174,184,125,251,246, 74,252,135, 18,235, 26, 96,192,255, 25,170,207,163, 85, + 17,135, 14,133,252, 9, 45,159,166,202,176,102,205, 26,174,218,146,213,115,206,156, 57, 16,139,197, 86,149, 52,235, 1,117,174, +141,202, 68, 86, 80, 80,208, 49,154,166,157, 1,116, 86,169,168, 7,251, 15, 28,234, 86,213,250,134, 12, 25,242, 30, 39, 77,144, + 12,146, 36,138, 57, 44,250,201, 79,251, 14, 30, 41,215,190,212,249,189, 49, 8, 60,221,185, 45, 72, 12,160,103, 69,177,133,191, +202,140,148,113,106, 48,117,218,212, 50,145,181,115, 91,208, 85,207, 54,117,191, 89, 58,113,117,165,226,108,245,138, 41, 38, 36, + 73,116,172,224,163,245, 30,231, 71,128,129,243, 47,116, 11, 8, 8,104,238,227,227, 67,106,139, 44,153, 76, 86,150,184, 83,227, + 44,158,150,150,134,174, 93,187,146,205,155, 55,247,122,248,240, 97, 55,252, 85,206,233,115,221,118,213,219,183,111,119, 56, 58, + 58, 94, 91,190,124,249,168,156,156,156,175,242,243, 11,108,194, 14,173, 70,159, 33,211,136,174,125, 71,136,100, 52,147,151, 42, +200,108,114,243,226, 81,235, 75, 39,118, 65, 46,147, 77, 1, 16,135,191,210, 59, 84,228, 44,209,164,113,104,210,164,137, 72, 91, +168,212,173, 91, 87,226,228,228, 36,245,244,244, 44,155, 94, 69, 52,223,123,219,174, 47,167,218,255, 75, 84,211,254,212,136,182, +138,105, 35,140,141,141,161, 17, 95,250,244, 83, 59,218,178,210, 27,101,205, 81,135,101,156,234,244, 14,229,116, 90, 72, 72, 72, +143,144,144,144, 54, 0,158,160,180,214,161, 2, 40, 29, 74,212,114,154, 15, 84,127, 12,215,187,129,243,255,149,243,115, 70, 87, +252,229,155, 5,148,250,106,221,170, 82,104,213, 4,141,227, 59, 0,114,238,220,185,249, 98,177,216,106,212,168, 81,213, 46,147, +145,145,113,240,240,225,195,229, 68,214,160, 65,131,198,133,134,134, 94,203,202,202,170,213, 86, 89,153, 27,173,185,117,126,161, + 85,215,126, 27,230, 0,248,177, 10, 67, 30,229,217,134,255,205,206,109, 65,103, 42,136,173, 95, 1, 12,170, 74,149,246,250,114, + 32,142, 30,218,169,241,237, 50,122,254, 56,237,210,176,168, 85,149, 70, 43, 90,154,114, 87,169,251, 49,207,224,163,245,207,128, +205,102,251, 45, 90,180,136, 45, 18,137,222, 19, 89, 21,133, 86, 97, 97, 33,158, 62,125,138,177, 99,199,114,163,163,163,253,228, +114,249,141,255,194, 62,200,200,200,136, 87, 39, 35,157,173, 73,225,192,229, 25,177, 71,140,159,227, 92, 22,117,120, 98, 23,164, + 18, 49, 0, 48,117, 73,239,192,100, 50,217,209,209,209,174, 26,171,149, 92, 46,231,106,166, 63,126,252,216, 85,147, 91, 75, 34, +145,232, 28,117,248,119,113, 62,123,246,204, 89, 19, 29,169,137, 46,100, 50,153,236,200,200, 72,103, 13,167, 84, 42,213, 41,234, +144,195,225,176,163,163,163,157, 85, 42,213, 71,139, 58,212, 22,198, 40,173,179, 88,174,214,162,218,183,140, 32, 8,130, 54, 12, + 27, 26, 96,192,103,143,138,145,146,213, 23,149,174, 9, 26,199,119, 61, 22, 97,186,184,184,244, 26, 62,124,120, 57,145,229,239, +239,175, 58,125,250,244, 77, 62,159,159, 73,146,100,188,190,253, 40,243,209,194,123,111,144, 32, 73,242,105,231,182, 77, 65,146, +228,211,165, 19, 39, 74,215,224, 64, 57,177,117,246,204,201,222,169,249, 49,149, 75, 51, 0, 54,246,117, 16, 48,238, 91, 4,140, +251,214, 10, 64, 39,160,234,104,197,234,250, 97,192,223, 3,130, 32, 56, 78, 78, 78,207, 37, 18, 9, 8,130,128, 84, 42, 45, 19, + 88, 69, 69, 69, 16, 10,133,101,255,229,114, 57,178,179,179, 81,183,110, 93, 16, 4,241,159,246,163,147,203,229,202, 69, 43, 55, + 29,102, 48,217, 74,138,146, 19,114,185,124,188, 62,215,249,162, 69,139, 72, 84,226,123, 53,115,230,204, 74,167,127, 42,206, 37, + 75,150, 84, 26, 37, 56,115,230,204,106,163, 7,171,194,119,223,125,247,209,162, 14,117,191,125, 25, 96,128, 1,255, 49, 84, 26, +186, 87, 43,161, 69,146,228,211, 74,162, 11, 9, 0, 52, 73,146, 79, 43,201,114,160,124,247,238,221, 74, 75, 75,203, 41, 34,145, +232,143, 65,131, 6,205,245,247,247, 87, 1,165, 14,242,181,221,162,124,161,104,133, 95,255,141,243, 10,138,165,193, 21,231, 85, +180, 60,105,196,214,174,237, 65,187,207,132, 30,247,207, 72, 79,221, 93,213,182, 85, 37,168,170,138, 86, 20, 22,138, 87,250,245, +223, 56, 39,191, 80,108,240,209,250,135,160, 82,169,174, 24, 25, 25, 17,154, 98,202,218,214,171,194,194, 66,148,148,148, 64, 93, +146, 6, 0, 80, 92, 92, 12, 11, 11, 11,168, 84, 42,250, 63,182, 43,164, 0,230,171,173, 85, 0, 48, 63,241,230, 14,237,115,251, +153,246,188,106,172, 89, 2, 93, 10, 68, 87,182, 92,117,243,254, 6,206,204,106, 10, 68, 87,135, 76, 61,249, 50, 1,128,205, 98, +100, 85, 85, 60,154,205, 98,100, 85,227,183,175,231,123, 3, 65, 3, 88,105,184,178, 13, 48,224,243,125,255,255, 84, 43,238, 97, +224, 52,112, 26, 56,255, 17, 78,174,250,163,235, 60,195,254, 52,112, 26, 56, 13,156,255, 54,206,202, 48,249, 51, 17, 90,116, 37, + 31, 0,181,180,104, 25, 96,128, 1,255, 58, 72,107, 57,207, 0, 3, 12, 48,192,128, 15,199,123,197,164,181,103, 84,165, 74,245, +137, 38,168,141,178,189,102,224, 52,112, 26, 56, 13,156, 6, 78, 3,167,129,243,255,142,179, 38,110,237,229, 39, 3,216,247,153, +136,173, 79, 18,208, 98, 48,171, 26, 56, 13,156, 6, 78, 3,167,129,211,192,105,224,172, 45, 12, 67,135, 6, 24, 96,128, 1, 6, + 24, 96,128, 1,255,231,208, 47, 97,169, 1,149,160,238,192,165,160,176, 68,189, 59,131,144,114, 54,240,191,182,137,254,254,254, + 12,125,218, 39, 38, 90,146, 81,224,111, 54, 55, 97,247, 47, 22, 41, 54, 83, 81, 43,130,107, 58, 17,109, 27,180, 26,109,204, 51, +158, 46,147,201,234,155,154,153,101,229,229,102,239,201,123,247,108,151, 86, 27,243, 7, 15, 30,240,125,124,124,210, 1, 20,105, +189, 41, 24, 96,128, 1, 31, 19,150, 77, 93, 64, 16,227, 1,250,175,176, 75,138,142,129, 48,238, 80,185,118, 22, 30,227, 64, 18, +205,180,166,136, 65, 99, 63, 10, 98, 83,106,120,224, 88, 38, 36, 36,184, 54,108,216, 48, 25, 64, 65,197,181, 87, 50,207,112,157, + 27,240, 57,163, 43,202, 39, 44, 45,187, 22, 62, 92,104, 53, 26, 84, 31, 74,114, 12,104,140, 4,129,104, 36,134, 14,174, 21,143, +219, 55,117, 64, 49,219, 1,104, 5,208,173, 76,140,120, 45,197, 50,121, 22, 69,211,163,241,230,228, 19,189,249,234,251, 79, 67, +213,229, 44, 86, 34, 49,244, 39,189,248, 40,250,135, 71,183, 79,115, 45,141, 9, 52,108, 61,104, 1,202,103,112,174, 45, 56, 0, +124, 73,146,108,102,108,108,204, 47, 41, 41,201,166, 40, 42, 5,165,227,211,249,181,228, 36, 1, 76, 48, 53, 49,233,227,106,198, +105,245, 46, 71,152, 86,164, 80,133,163, 52,161,107,254,199, 58,163, 74, 69,150,227,190, 57, 35,124,198, 6,205,234, 1, 75,191, +141, 11, 74,128,234,132, 22,225,220,184,227,217, 97,195,135,248,205,152, 60,214,180,142,157, 41, 4, 57, 34,155,159, 14,134,108, + 10, 9, 57,218,111,226,176,158,125, 0, 96,245,234,213, 95,187,184,184,212, 99, 48, 24,137,203,150, 45,251,117,197,138, 21, 52, + 81,117,165,114,190,250, 28,214,220,240, 77, 0,120, 2,104, 0,224, 45,128, 23, 40,159,101,188, 54,248, 44, 56,235,212,169,227, + 68, 81,212, 68, 7, 7,135,175, 50, 51, 51, 47,144, 36,121, 32, 45, 45, 45,253, 83,222,117,104,154,222, 75, 16,196,100,154,166, +247,233,241, 61, 69,159,117,240,120,188, 76,137, 68, 98,175,254,157, 37,145, 72, 28,254,174,237,249, 39,215,245, 15,189,127, 79, +186,114,231, 69, 31,237, 73,189, 58, 55,171,228,142, 66, 52,187,114, 39,166, 75,249,118,158,170, 42,238,129, 4, 77,211, 88,185, +114, 37,177,106,213,170,113,110,110,110,141, 72,146,124,185,124,249,242,114,169,111, 42,206,211,186,206, 13, 98,203,128,207, 21, +250, 21,149,174, 17, 77,253, 77, 32,161,253, 1, 98,108,215,182, 45, 59, 79, 25,221,159,160, 25, 60,140,152,180, 80,169, 55,151, +235, 88, 46, 24,226, 53,222,205, 26,207, 29,210,191, 7,217,198,179, 30,248,118, 22, 0,201,194,222,139, 73, 54,193, 65,203,118, + 3,240,169, 69, 47, 87,188,137, 56,102, 47, 40, 80,129, 32, 0,130, 0, 72, 2, 40,150, 80,232,245,245,152, 21, 0,126,210,243, +174, 68, 90, 26, 19,152,123, 76, 2, 0,140,143,112, 80,234,217,217,217,141,155, 61,123,182,137,167,167,167, 37,143,199,227, 72, + 36, 18,135,132,132, 4,187,101,203,150,121,138,197,226,243, 0, 30,233,201, 89,183,161,179,211,201,224,185, 19,218, 53,111,224, + 10,150,172, 24,148, 84,228,242, 42,225,117,135,169,187, 79, 77,138,201,147, 12, 71, 45, 74, 38,228,228,228, 16, 0, 96,107,107, + 75,151, 23, 89,237,199,110,157,215, 11,115,183, 92, 65,137, 68,118,164, 58, 14,235,122, 45, 70,125,243,205, 64,191,181, 63,204, + 52, 77,203,149, 35, 58, 81, 12,107, 83, 54, 86,204,159,198,145, 74, 21, 29,118,255, 26, 50,121,231,134,133,251, 85, 42,213, 23, + 0,218,168, 84,170,199, 0,126, 93,185,114,101, 85, 55,223, 85, 0,150,168, 79,232,163, 12, 6,227,106,183,110,221,234, 79,156, + 56,145,104,221,186, 53, 34, 35, 35, 27, 28, 59,118,172,199,133, 11, 23, 18, 85, 42,213, 51, 0, 47,161, 46,123,162, 3, 88, 0, + 26, 51, 24, 12,239,127, 51, 39,159,207, 55,146,201,100, 99,156,157,157, 39,119,236,216,209,187,127,255,254, 68,227,198,141, 17, + 31, 31,223,250,210,165, 75, 43,194,195,195,159,165,166,166,238,227,112, 56,135, 5, 2,129,248, 31,127,142, 19,196,100, 0, 78, +106,157,188, 82,135,239,116,148,230,146, 18,232,186, 14,137, 68, 98,175, 41, 97, 67, 16,132,253,223,185, 61,122,174, 43,150, 32, + 8,107,117, 91, 84,247, 77,146, 36,148, 74,165, 72,165, 82,185,213,192,217, 88,253, 34,165,179,214, 5, 80, 93, 34,104, 35, 0, +232,213,169, 89, 30, 8,196,148, 89,180,222,127,201,140, 41, 19, 96, 52,154, 93,185, 27, 99, 93,206, 10, 86,241, 45,118,229, 74, + 98,197,138, 21, 8, 12, 12,236, 15,192,151,162,168,112, 15, 15,143, 29,229, 40, 41,170,108,222,138, 21, 43,182, 87,115,157, 27, + 96,192,231, 2, 63,232, 83, 84,186,202,247, 31,183,193, 93,160,194, 88, 87, 27,123,255, 89, 19,135, 26,121,122, 52,132, 4,166, + 72,202, 81,225, 98,216, 37, 0, 56,161,159,213,105,104, 27, 38, 83,114, 56, 40,112,126, 19,223,118,158,120,158,166,192,227, 52, + 21, 74, 18, 21, 96,144, 10,168, 40, 26,160, 33,169,237, 86,167,230, 43,113,231,165, 12, 36, 1, 48, 72,128, 36, 9, 48,200, 90, +146, 81,178, 87,171, 15, 69,121,230,100, 82, 0, 37,123,245,129, 7,164,153,187,187,251,168, 85,171, 86, 89,102,100,100,152, 68, + 70, 70,130,203,229,194,202,202,138,193,231,243,157,182,108,217, 34,158, 53,107,214, 87,114,185, 60, 9, 64,142,142,156, 30,125, +219,120,223,219, 23,180,218, 66,241,224, 18, 10,142,255, 6, 6, 73,131,109, 98,138,250, 70, 70,184,244, 77, 67,107,255,176,196, +211, 15, 51, 69, 30, 0,210,106, 34,139,139,139, 99, 72,165,210,225,230,230,230,237, 89, 44,150, 3,207,170, 30,149,206,108,147, +155, 77, 52,120,155,101, 95,210,101, 94, 15,135, 62,155,231,116,195,220, 45, 87,176,237,216,253, 95, 90, 33, 99,121,117,121,179, +141,141, 77,167,204,154, 62,209, 52, 53, 71,142, 53,167,115,112,232,118, 33,198,248,154, 97,238,151, 22, 8, 24, 49,204,228,212, +111,161, 83, 0,236,215, 90, 36,222,195,195,131,136,139,139,171,236,230,107, 5, 96,161, 76, 38, 35,217,108, 54,193,227,241, 70, +173, 93,187, 86, 62, 98,196,136, 84, 77, 3, 95, 95, 95,248,250,250, 18, 69, 69, 69, 13,110,220,184,209, 32, 36, 36, 68, 25, 17, + 17, 17, 11,224,108,213, 22, 11,163,119, 18,137,216,133,103,100, 84,242,211,238,221,155,187,116,233, 66,113,185,127,165,159,170, + 13, 39, 0, 88, 88, 88,236,183,183,183, 39, 22, 47, 94,156,254,177, 56,235,213,171,119,165, 93,187,118,221,122,245,234,197,236, +212,169, 19,156,156,156,202,230,217,218,218,194,215,215,151, 72, 73, 73,105, 30, 30, 30,190,251,202,149, 43, 59,158, 60,121,114, + 35, 41, 41,169,215, 63,108,209,218,167, 22, 19, 2, 61,219,127,246, 32, 8,194,116,239,222,189,246,154,154,140, 10,133, 2, 42, +149,170,236, 91,243,161, 40, 10, 42,149, 10,107,215,174, 85,137, 68, 34, 93,246,145, 72,235,173, 89,243,161, 42,251,230,112, 56, +182,154,132,189, 53,220,217, 99,248,220,130,166, 38, 38, 38,174, 0,250,194,174,209,194,242, 13, 74,223,159, 69, 34, 81,178, 64, +106, 25, 3,160, 75, 53,108,150,171, 86,173, 26, 19, 24, 24, 56, 80,203, 74,235, 61,100,200,144,138,101,175,188,213,223, 34,130, + 32,110,146, 36,121, 30,192, 33,124, 68,171,187, 1,255, 45,208, 52,221, 22,128,157,214, 36, 25, 74, 71,133,160,126, 78, 18, 0, +108, 42, 76,215,110,167,249,206, 86, 79,183, 83, 47, 71,107,241,102, 19, 4,241,168,150, 93,188,133, 42,252,180,152, 0, 16, 22, + 22, 70,247,235,215,143,208,124, 87, 46,138,252, 47, 78, 24, 49,160,207, 87,221, 59,130,228, 89,225, 85, 22, 16,241,142, 6,147, + 84,128, 4,141, 7,119,111,208, 96, 82,135, 43, 44, 85,181,245,164,222,224,239,188, 61, 61, 54, 30, 8,154,205,136,205, 98,226, + 80,120, 9,228,146, 98,100,103,188, 67, 86,122, 50, 4,169,111,145,246,238,237, 51,128, 88,161, 51,231,123, 7, 6, 80, 81,234, +119, 64, 10,168, 38,242,178,102, 78,185, 40,174, 65, 99, 79,207,124,142, 10,144,139,226,116, 88,125, 85,156, 94,141, 26, 53, 26, +241,195, 15, 63, 88,191,120,241,194,168,164,164, 68,122,233,210,165,248,164,164, 36,115, 62,159,159, 55,109,218,180, 70, 78, 78, + 78,230,131, 6, 13,226, 28, 63,126,252,107,148, 15,107,173,138,211,115, 64,251,150, 17, 7,119,108, 53,201, 61, 21, 12, 89,194, + 83, 92, 20,136,112, 55,179,132,110, 96,193, 37,190,109,110, 7, 83, 46, 19,171, 59, 57,153,246, 61,147,176, 81, 65, 81, 1,213, +113,222,187,119,143,111,108,108,188,101,228,200,145,252,153, 51,103,114, 85, 76, 75,102,104, 68,174,197,194,221, 17, 78, 37, 82, + 57, 99, 68,183,122,152, 55,210, 27,243,182, 93,215,136,172,201,245,235, 23, 80, 81, 81, 85,115, 42,228,242,250,206,246,230,136, + 78, 18,227,208,237, 66,252,249,131, 19,186,175, 77,199,160, 86, 76,120,212, 53,133, 82,174,104, 60,100,200,144,195,234,183,246, + 71, 0,190, 30, 50,100, 72, 19, 6,131,113, 29,192,239, 53, 29, 35, 30,175,242,234, 41, 86, 86, 86,232,218,181, 43, 60, 60, 60, +152, 93,186,116,241,174, 32, 96,202,113,202,229, 50, 62, 69,209, 48, 51, 51, 51,178,177,177,177, 50, 51, 51,203,173,236, 65,165, + 15, 39, 0, 88, 91, 91, 15,238,218,181, 43,243,216,177, 99, 57,137,137,137, 15, 70,140, 24,241,214,220,220,188,156,245,215,196, +196, 4,141, 26, 53,194,178,101,203,152,125,250,244,169,145,211,193,193,161,103, 72, 72, 8, 8,130, 40,123,104,191,103, 44,118, +117,133,163,163, 35,250,246,237,203, 28, 60,120,112,207,164,164,164, 90, 93, 71,122,224, 90, 37, 22,173,149, 21,142, 83,149,195, +111,149,181,215,225,184,103,105,172, 75,106, 62,124,192,181, 89,237,112, 39,143,199, 43,179, 66, 85,178,174,247, 56, 73,146,196, +210,165, 75, 65, 16, 4, 88, 44, 22,216,108,118,165,223,126,126,126,250,246, 51,133, 32, 8,146,205,102, 47,100, 50,153, 19,165, + 82,169, 51,143,199, 75, 87,169, 84,191, 72,165,210,181, 0, 20, 52, 77, 91, 86, 33,178, 42,229, 52, 49, 49,113,125,245,234,149, +123, 85, 29,145, 74,165,240,246,246, 6,164,136,173,142, 51, 33, 33,193,213,205,205,173, 49, 0, 77,137,182,219, 52, 77,119,209, +250,175,141,219, 52, 77,127,169,254,253,242,205,155, 55,174, 13, 27, 54,204,255,167,206, 79, 3,231,191,143,179, 6, 45, 98, 71, + 16, 68,152,113, 48, 25,151, 0, 0, 32, 0, 73, 68, 65, 84,214,181,218, 79,243,127,209,162, 69, 75,214,175, 95,255,130, 32,136, + 48,237,233,218,237,180,191,213,247,155, 48,154,166,251, 45, 94,188,216,115,195,134, 13,235, 52,109,255, 14,145,168,143, 69,203, + 60, 91, 98,130,240,119,230, 96, 50, 84, 96,146, 4,152, 12, 0, 52,129,228,164, 4, 20, 21, 22,220, 65,226,233, 68,221, 44, 89, +254,157, 90,180,240, 10, 58,186,109, 1,249,115,120, 9, 10, 68, 18,196, 61,185,137, 71, 55,127,207, 80, 41, 85,191,131,160, 31, + 3,100, 36,222, 82,241, 64,104,237,106, 92, 16, 52,179, 84,104,169,197, 85, 57,177,245,201,208,188, 73,147, 38,195,150, 45, 91, +102, 27, 21, 21,197, 19, 10,133, 69, 71,143, 30, 77,151, 74,165, 73, 0, 46, 39, 39, 39, 55,217,190,125, 59, 39, 40, 40,200,203, +203,203,139,127,242,228, 73, 89, 37,229,140,222,227,156, 63, 54, 32, 98,226,172, 57,188,216,147,187,192,137,141,196,210,167, 57, +170, 63, 5, 37, 63, 0,216,134,148,226, 78,217, 18,229,213,173, 93, 93,200,122,102,108, 52,180,228,248,197,229, 73,170,181,100, + 25, 27, 27,111, 9, 9, 9,113,109,219,182, 45, 9, 0,225, 47,149,220,133,187, 35,156, 46,175,239, 68,116,106,102,131,172, 2, + 41,102,239,138,198,165,136,172, 63, 52, 34,171,166, 78,154,153,153,101,167,102, 21, 58,216,152,242, 48,186,179, 41,186,175, 77, +135,127, 27, 46,184,108, 2,241,137, 25,104,232, 86,143,136,190,115,182,141, 90,100,181, 21, 8, 4, 0,208, 6, 64, 98, 74, 74, + 10,223,199,199, 71,168, 69,151, 15, 96, 35,135,195, 89, 74, 16, 4,221,182,109,219,104, 47, 47,175, 98, 43, 43, 43,136,197, 98, + 72,165, 82,176,217,108,136,197, 98, 36, 39, 39,227,193,131, 7,176,178,178,210,235, 64, 21, 23, 23,195,204,204, 12, 20, 69,125, + 48,167, 74,165, 34,246,236,217, 99,242,226,197, 11,147,208,208, 80,135,185,115,231,230, 54,109,218,244,241,176, 97,195, 94,219, +219,219, 75,159, 62,125,138,123,247,238, 33, 63, 63, 31,237,219,183,215,137, 83, 38,147,129,201,100, 66, 44, 22,131,203,229,130, +201,100, 66,169, 84,130,162,168, 50,241, 85, 92, 92,140,188,188, 60,176,217,108,200,100,178, 79,241, 6,250,158,133,170,186,225, +183,218, 88,180,180,133,154,142, 34,171, 38, 75, 84,149,195,157, 5, 5, 5, 70,150,150,150, 11, 1, 8,106, 90, 23, 65, 16, 96, + 48, 24, 96,179,217, 32, 8, 2, 93,186,116,193,132, 9, 19,208,170, 85, 43, 36, 36, 36,224,248,241,227,120,244,232, 17, 88, 44, + 86, 89,123,157,199, 39,252,252, 24, 60, 30,239,222,128, 1, 3, 60,127,248,225, 7, 94,189,122,245, 16, 27, 27, 91,119,195,134, + 13, 11,175, 93,187, 54, 80, 36, 18,181,209,220,237,170,183,210,171,135, 4, 75,135, 11,251, 74,165, 82,196,198,198,234,179,204, +123,104,216,176, 97, 50, 73,146,175, 41,138, 10, 7,224, 77,211,116, 23,130, 32, 46,161,212, 47, 81, 27, 34,154,166,191, 36, 8, +162, 16,192, 51,146, 36, 95, 82, 20,149,108,176,219, 24,160,195,125,165, 95,197,255, 4, 65,132,173, 95,191,190, 95,101,226,170, +146,107,179,220,244, 13, 27, 54,172,211,250,255, 33, 22,213,174, 40,239, 12,239,167,182,114,253, 37,180,194,194,194,170, 87, 32, + 20, 6,133,157, 62,118,191,187, 28,174,158,173,125,181,172, 67, 52, 34, 31,220, 3, 64,255,162, 83, 87,248,253,140, 72, 6,243, +151, 61,235,102,146,123,111,150, 32, 37, 61, 11,247, 46,254,130,108, 65,210, 33,128,158,139,196,208,194, 15, 62, 18,245, 6,121, +217,219,216, 90, 74,228, 52, 40, 26,192,123, 98,235,147,160, 85,227,198,141, 7, 71, 68, 68,216, 74, 36, 18,222,157, 59,119, 74, + 66, 66, 66, 50,228,114,249, 77, 0,119,213,109,162,178,179,179,135,168,133, 9,131,201,100,114,228,114,121,117,190, 11,173,230, + 79, 28,115,103,227,158,131,188,215,207,163,177, 61,244, 34, 10, 74, 74, 84, 55,179,196, 95, 3,208, 40,250,235, 81, 57,226, 52, + 26,180, 11,139, 36,192, 55, 97, 57,198,229, 73,120, 64,229, 67,178, 82,169,116,196,200,145, 35,249, 26,145, 5, 0, 57, 69, 10, +102,137, 84,193,232,212,204, 6,173,187, 13, 65,228,141, 83, 56,121, 59, 13,110,118,198,183,235,155, 20,232,180, 71,179,179, 4, +123,182, 6,239,221,186,113,229,124,206,188,190, 22,240,111,195, 2,143, 77,192,220,152,133,181, 59,246, 43,162, 30,220,126,202, +231,243,195, 0,124, 45, 16, 8,192,231,243,139, 1,188,100, 48, 24,137, 42,149,170, 50,167,238,229, 0, 28, 14, 31, 62, 76, 42, + 20,138,226,132,132, 4, 56, 58, 58,194,193,193, 1, 22, 22, 22,136,139,139,195,159,127,254,137,248,248,120, 80, 20,133, 22, 45, + 90,232,117,176,114,115,115,241,244,233, 83,244,237,251,213,220,236,236, 44,115, 43,107, 27,209,157,240,219,155,106,195, 73, 81, + 20, 1, 0,158,158,158,240,244,244,228,165,165,165, 57,135,133,133,217,175, 89,179,230,157,171,171,235, 81,177, 88, 92,206,114, +160,171,208,210,136, 11,141, 8,228,241,120, 96,179,217, 40, 44, 44, 68,102,102, 38,138,138, 74,131, 54, 45, 45, 45, 63,137,208, +170,194, 66,245,209,218,255,205,226,240,189,225, 78, 75, 75,203,145, 0, 22,234,184, 45, 80, 42,149, 96,179,217,240,241,241, 65, +112,112, 48, 30, 61,122,132,223,127,255, 29,117,235,214,197,216,177, 99, 65,146, 36, 94,188,120,161,111, 23,169,136,136,136,133, + 95,127,253,181,231,225,195,135,121,201,201,201,136,143,143,135,165,165, 37,130,131,131,185,147, 39, 79,110,120,227,198,141,229, + 40, 13,126,169, 30, 90,209,133, 34, 35,254, 80,111,111,239,247,154, 56, 58, 58, 90, 92,190,124,217,190, 76,128, 85,140, 72,124, + 31, 5,203,151, 47,223,234,225,225,177, 77, 61, 92,232, 11,192,132,166,105,191,208,208, 80, 2, 0,252,253,253,105,130, 32, 52, + 15,164,103,167, 78,157,234, 22, 23, 23, 71, 7, 6, 6, 26,124,180, 12,168, 74,139, 76,214, 92,147, 85, 9, 40,125,132,154,182, +197, 75,131,197,139, 23,123,174, 95,191,254,225, 7,138, 44,237, 55, 38, 90, 35,182,202, 30,166, 85, 14, 25,150,217,190, 72,190, +163,189,141,245,162,177,157, 64, 81,128, 82, 5, 40, 85, 52, 68, 37, 98,196, 62,127, 84, 2, 30, 17,170, 83,119,184,156,160, 53, + 63,204,105, 16,157, 74, 34, 61, 95,142, 91,103,247,210,217,130,164,193, 72, 60, 53,254,227,136,172,161,222,142, 14,246,183,142, +237, 93, 77, 62,122, 43,131,138, 42,213, 89, 20, 69,151,253,254, 4,112,180,179,179, 11,184,127,255,190, 29,151,203,229,189,122, +245,138, 58,117,234, 84,190, 92, 46,191,166, 37,178, 0,160, 83,155, 54,109,148,166,166,166, 16,137, 68,114,185, 92, 46,169, 70, +100, 57,251,181,106,126,123,227,158,131, 60,137, 76, 6,161, 88, 10,134,141,125, 69,145, 5, 0, 29,187,185,215,169, 67,240,204, + 64, 3, 72, 42,148,167, 87, 37,178, 0,128,203,229,246,152, 57,115,102,185,186,120,182,102, 44,165, 49,151,165,186, 27,147, 67, + 69,222, 56,133,240, 23, 57, 20,143,205, 80,217,209,111, 27,232,186, 3, 10, 82, 99,246,252,126, 46,236,234,119,203,130,138, 75, + 68, 69,112,115, 50, 66,113,145, 16,107,215,111, 84, 68, 68,132,223, 92, 56,119,106,135, 83,167, 78,109, 64,169, 51, 56, 0,188, + 60,117,234,212,152,101,203,150,253,138,191,210, 60, 84, 68,122, 64, 64, 64,106,179,102,205,132, 30, 30, 30,194,220,220, 92,196, +196,196, 32, 63, 63, 31,219,183,111, 71,108,108, 44, 52, 22, 65,157,124, 85,222, 23, 72,200,207,207, 51,165,105, 26,249,121,185, + 38, 63,252,240,131, 69,109, 56, 85, 42, 85,185,107,171, 78,157, 58,152, 54,109, 26,187,164,164,196,242,221,187,119,230,218,243, +116,229,148,201,100,208, 88,134,104,154,134, 76, 38,131, 80, 40,132, 76, 38,195,235,215,175,203, 68,150,122,253,159,204,162,165, +249,205,227,241, 50, 53,231,178,102, 8,142,199,227,101, 85,213,254, 67,160,181, 46, 90,253, 91, 95,113, 88,227,246,232,120,220, +193,102,179, 49, 97,194, 4, 60,124,248, 16, 9, 9, 9, 96, 48, 24, 16,137, 68, 40, 41, 41, 65,207,158, 61,193,225,112,244,181, +104,209,108, 54,123,228,146, 37, 75,120,137,137,137,200,201,201,209, 56,211, 67,165, 82, 97,238,220,185, 70, 92, 46,119,164,190, +166,123,129, 64,208,251,245,235,215,141, 43,126, 50, 50, 50,132,218, 62,133,181, 69,104,104, 40,225,239,239, 79,251,251,251,211, + 26,193,101,128, 1,149,161, 10, 45,178,175, 42,139,214,199,176,138,105, 44, 91, 80, 7,136,212, 2, 26,145,213, 85, 75,120, 17, + 26, 11,151,110, 67,135,110, 67, 91, 58,216, 88,223, 56,188,107,149,105,216,115, 2,169, 41, 73,200, 22, 36,163, 77, 7, 63,196, + 62,143, 6,165, 80,157,198,235,208,154, 61, 57,235,249,187,123,120, 52,157,222,181,131, 23,130,194,138,241, 42,242, 50, 10,178, + 5, 59,145,116,234,244, 71, 57, 66,174,254,205, 29,236,173,111,252,186,107,149,229,165, 24, 18, 41, 41, 73, 56,251,235, 86, 90, + 33,151, 22,160,124, 36,151,222,111,205, 70,148,140, 83, 92,144, 9, 89,145, 10, 60,178,132,167,231, 32, 69, 6,128,240,173, 91, +183,118,111,223,190, 61, 39, 32, 32, 32, 35, 63, 63,255, 44,128,251, 90,109,154,185,187,187,247, 13, 14, 14,118, 72, 73, 73,193, +181,107,215, 50, 80, 26,250, 95, 21, 82,111, 71, 63,223,253,231,175,251,231, 27, 53,104,130,237, 75,190, 83,134, 62,138, 25, 0, +224,146, 86, 27,143, 30,222,238, 97,107,190,159, 65, 82, 81,127,224,105,114, 38,222, 10,165,127, 86, 69,152,147,147, 67,148,148, +148,184, 90, 90, 90,106,159,144,224,155,136,164, 11,134,186,167,247, 92,120,199, 73, 34, 87,129,203, 34,233,217, 3, 93,211, 31, +158, 13,181,201,145,228, 16,154,104,196,154, 48,105, 88,143,129,187, 66,206,140, 14, 11,187, 48, 93, 46,149,120, 53,105,210,152, +126, 28,113,227,233,194,185, 83,251,212,242,136,155, 62,124,248,144,100, 48, 24,229, 4,186,182,133, 72, 95, 75,145, 62,208,149, +179,162,208,210, 64,169, 84, 18,181,229,148, 74,165,101, 66,171,226,195,189, 50,193,248,119,108,191, 62, 22, 42,237, 33, 67,141, + 63,157, 68, 34,177, 87,251,108, 57,124, 76,139,214,135, 68, 34, 86, 55,124,169, 79,255, 72,146, 4, 69, 81, 96,179,217,104,209, +162, 5,194,194,194, 96,109,109, 13,115,115,115,152,155,155,195,200,200, 8, 54, 54, 54,101, 66,139, 36,117,142,210,161,165, 82, +105,221,186,117,235,226,245,235,215,224,241,120,101, 31, 46,151, 11, 79, 79, 79,136, 68,162, 58,248,148,182,123, 3, 12,248,123, +239, 43, 97,218, 98,137, 32,136,176, 69,139, 22, 45,169, 45,223,162, 69,139,150, 84,102,225,250, 64,193, 85,206,186,197,212, 86, +144,149, 42, 73,181,200, 58,180,115,165,249,153, 39, 64,106,106, 34,174,158,220, 81,164,144,203,242, 41, 74,225,250, 54, 62, 26, + 32,241,139, 78, 93, 32,233,118, 3,251,118, 35,174,190,144,161,176, 32, 27, 47, 31, 95, 78,130,152,179,248,163,137, 44, 7,219, + 27,135,119,173,180, 60,255,156, 64, 74, 74, 18, 46, 29,219, 94,168,144,203,123, 32, 49,244,241,135, 80,143,100,179, 7,178, 93, +222,245,155,232,155, 14, 21,161,194,200,216,184, 47,179, 50, 48, 80,112,167,250,200, 48,109,100,103,103,159,221,186,117, 43,241, +227,143, 63,118,149, 72, 36,191, 1,208, 54, 81,122,185,185,185, 13,223,183,111,159,117, 74, 74, 10,235,206,157, 59,162, 27, 55, +110,208, 0,206,215, 96,113, 89,208,115,252, 52, 70,171,122,117,102, 70, 37,165, 13, 0,240,135,214,108,207,126,173,155,221, 61, +184,126,185,153,226,110, 40,138, 5, 41, 88,124, 55,181, 16,128,206,251, 91,161, 80, 64, 40, 20, 66, 81,156,171,108,195, 23, 9, + 3,135,216, 75, 51,243, 37, 76, 22, 85,162,244, 48,207,146,222,200,125,203, 48, 54, 54,214,107, 95,238, 90, 63, 63, 4, 64,200, +144, 33, 67, 14, 63,139,184,208,134,207,231, 95,240,240,240, 32, 0,160,138, 8,195,170,176, 10,192,220,142, 29, 59, 18, 62, 62, + 62, 15,182,109,219,118,165, 58,177, 82, 27,139, 86, 77,208,149,147,162, 40,178,138,253, 75,212,150, 83,219,162, 85,147,208,250, +148, 22,173,202, 68,139,182, 72,212, 22, 66,255,134,168,195,234,196,148, 62,253,211,248,201,177,217,108, 68, 71, 71,195,197,197, + 5,114,185, 28,102,102,102, 48, 51, 51,131,169,169, 41,138,138,138,192, 98,177,160,231, 54, 83, 60, 30,239, 93, 76, 76, 76, 99, + 59, 59, 59,168, 84,170,114, 98,235,213,171, 87, 48, 49, 49, 73,211,215,162,197,231,243, 47,171,163, 14,203,193,209,209,209,226, + 99,236, 87,109, 75,150,191,191,191, 97,136,208,128,106,173, 89, 85, 88,181,178, 43, 88,162,100, 90,255,179, 81,154,195,173,159, +250, 55, 42,249, 45,171,100, 90,238,250,245,235,111,104,249,119,101,127,224, 38,104, 82, 60,148,139,112, 97,214,100,201,178,183, +182,186,113, 96,123,160,249,201, 72, 32, 45, 37, 17,183, 78, 7, 11,149, 42,249, 23,160,104, 65,196,181,211,161, 32, 80,130,183, +161,183,116,187, 69,160, 85,171,166,174,248,253,133, 2,217,169,175, 64,211,212, 33,100,133,148,124,240,209,113, 27,212,194,222, +218,246,198,161,224, 64,139, 51,209, 4, 82, 83, 18,113,245,100,112,161, 82, 81,210, 29,137,167, 35,107, 75, 59, 1,176, 98,152, +240,118, 15,246,107, 53,212,213,205, 25, 20,173, 0,197,166, 49,104,129, 45,243,101, 84,201,239,225, 60,225, 73,170,152,154,158, +118, 95, 55, 7,186,226,226,226,223, 1, 60, 70,249,244, 10,205, 27, 53,106, 52,116,247,238,221,118,169,169,169,188,168,168, 40, +241,222,189,123,179, 40,138, 58, 3, 64,151,161,212,239,162,146,210, 14,160,124,190,156,230,243,199, 7, 68, 4,140,155,200, 75, +188, 22, 2,171,196, 88,124,127, 55, 93,245, 50, 95, 54, 66,109, 93,171, 20,182,182,182,116, 78, 78, 78,114, 65, 65, 65, 99, 19, + 19, 19,228,230,230, 34, 47, 47, 15, 66,161, 16,210,194, 60,165,141,170, 64, 68, 40,243,192, 98,177,144,149,162,128, 74,165,202, +208,213,154, 5,192,106,213,170, 85,147, 40,138,210,100, 68, 44, 23, 93,168,213, 78,115, 62, 52, 30, 50,100,200, 97,173,168, 67, +109,103,120, 77,122, 7, 66,157,222,161,253, 31,127,252, 17,215,167, 79,159,212,202,196, 10,151,203,213,219, 81,186,170, 40,198, +218,112, 86,101,209,170, 56, 93, 31, 78,205,240,165,198, 9,190,226,116, 13, 24, 12, 6, 40,138,130, 14, 65, 21,127,171,104,209, +142, 14,172,141,200,169,112,108,170, 77, 28, 90,203, 72,196,143,106,209,210, 28, 11, 54,155,141,115,231,206, 97,220,184,113, 80, +169, 84, 48, 54, 54,134,169,169, 41, 76, 76, 76,112,250,244,105,104,210, 63,232,163, 95, 21, 10,197,145,245,235,215, 47,217,179, +103,143, 17, 77,211,224,112, 56,101, 66, 43, 48, 48, 80, 44,151,203,143,232, 36,180, 52, 25,223, 41, 58,198,196, 68, 89,109,212, + 97,101,203, 84,225,175,101,185,106,213,170, 49, 20, 69, 13, 68,133, 20, 14, 21,218,149, 75,253, 96, 72,239, 96,128, 14,247,147, + 71,255,226,238,105, 4, 22,161,101,201, 42, 19, 92,100,117,226,197,206,202,242,198,254,237,129,230, 71, 31, 17, 72,124,251, 22, + 55,127,219, 81, 42,178,222,156,124,130,228,208, 76, 36,134,118,198,219,208,222, 58,191, 61, 17, 68, 43, 39,123, 75,228,137, 40, + 20,230,188, 3,104, 68,125, 12,145,101,103,101,119,227,231,224, 64,139, 83, 79, 72, 36, 38, 38,226,234,201, 29, 66,165, 82,242, +197,135,136,172,145,108,246,192, 70,238,206, 9, 75, 39, 13, 28,234,211,208, 17, 54,239,226,112,126,236, 80,172, 62,254, 13,204, +236, 24,104,215,215, 12, 19,214, 58, 14,229,123,114, 95,243, 59, 99,160, 30,212,218, 34,171, 85,253,250,245,135,222,191,127,223, +214,219,219,155, 23, 31, 31, 47,217,187,119,111,150, 88, 44,190, 2, 32, 90, 15, 78,109,145,213,106,209,228,177, 17, 27,247, 31, +230,145,108, 14,130,142,156,199,172,219,169,170, 11,201,133, 67, 80,126, 88,177, 82, 72,165,210,107,193,193,193, 82,146, 36,145, +151,151,135,156,156, 28,100,101,101,149,125, 23, 20, 20,128,193, 96,224,250,245,235,178,194,194,194,251,186,118,240,222,189,123, +245,211,210,210, 60, 4, 2, 65, 27,245, 39, 30,165,209,133,166, 90,211,218, 8, 4,130,174, 0, 30,105,166,167,166,166,214,123, +240,224, 1,191, 38,126, 51, 51, 51,176,217,236,114, 22, 45, 46,151, 11, 7, 7, 7, 40,149, 74,156, 56,113, 2, 0,242,170,227, + 96,179, 57, 2,146, 36, 64,209,148,148,199,227, 81,124, 62,191, 82,129,165, 15,167, 26,169, 95,126,249,165, 36, 50, 50,178, 82, +139, 86,109, 56,105,154, 46,233,213,171, 23,210,211,211,193,227,241,202, 30,214, 26, 65, 69,146, 36,184, 92, 46, 50, 50, 50, 48, +101,202, 20,208, 52, 93,242, 79,223,121,180,125,154,212, 98,136, 0, 64,168,133,208,123,126, 90,186,250, 64,105,134, 6,105,154, +134, 70,112, 85,152, 95,182, 46, 93,178,183, 87,240,233,154, 92, 80, 80,176,177,180, 59,244,222, 10,223,251,244,120, 40,148, 9, +173,216,216, 88, 28, 62,124, 24, 5, 5, 5,224,112, 56,200,207,207,199,193,131, 7, 17, 19, 19, 3, 14,135, 3,205,190,208, 85, +191,249,248,248,108, 12, 15, 15,143, 25, 49, 98,132, 56, 58, 58, 26, 98,177, 24,209,209,209,232,221,187,183,228,238,221,187, 9, + 98,177,120, 21,116, 25, 58,212,100,124, 87,151,215,145, 74,165,136,138,138,170,244, 83,213, 50, 21,145,144,144,224,170, 82,169, + 26,211, 52,237, 75,211,180, 57,212, 41, 28,212,255,181, 63, 95,170,231,153,211, 52,237,171, 82,169, 26, 37, 36, 36,184, 26,228, +132, 1,159, 41,110,105,137, 45, 90, 75,100,221,170,222,162, 69,145,193, 7,118,172, 52, 63,242,144, 68, 74,114, 2, 30, 95,220, + 45, 84, 81,138, 47,244, 44,135,211, 3, 90,185, 54,120, 70, 38, 94, 20, 81, 26,206, 92,152,147, 2,208,140,218, 8,173,114,156, +160,200,224,131, 59, 2, 45,142, 61, 38,144,158,242, 6,119,207,238, 18, 42,149,210,238,120, 27, 26, 85, 27,206,145,108,246, 50, + 22,131, 88,218,171, 83, 75,118,231,150,238, 48,201, 74, 66, 70,106, 58, 78,196,102,231, 37,228, 75, 39,222, 37,228, 72,126, 35, + 61,208,119,146,181,181,149, 35, 11,253,166,218, 88,223, 63, 95,248, 59,193, 18,201,105, 57,189, 94,112,183,172, 44, 69,249,126, +190, 15, 71, 51, 51,179, 17,143, 31, 63, 54,231,241,120, 70,143, 31, 63,166,246,238,221,155, 43, 22,139, 47, 2,136,208,105,219, +223,135,115, 91,119,183, 91,235,118,237,231, 21,139, 74, 32,146,201,193,117,224,171,206, 68, 60, 31,140,170, 19, 96,150,227,228, +114,185,199,142, 29, 59,214,183, 75,151, 46,174, 94, 94, 94,100, 94, 94, 30,138,139,139,203,156,171,237,236,236, 16, 27, 27, 75, + 37, 38, 38,166,115,185,220,227,186,246,179, 99,199,142,137, 36, 73,198,171,135,209,226, 81, 33,186, 80,171,105, 99,129, 64,208, +150,207,231,223, 2, 96,172, 21,117,168,205,169, 73,239,176, 4, 0, 73, 16,196,163,232,232,232,226, 62,125,250,192,200,200, 8, + 34,145, 8,117,235,214,133, 82,169,196,197,139, 23, 17, 25, 25, 41,162, 40,234, 86, 37,226,181, 92, 63, 37, 18,113, 93, 0,164, +184,164,164,197,152, 49, 99,186,206,155, 55,175, 92, 72,186,189,189, 61,172,173,173,245,226, 4,128,188,188,188,166,127,252,241, +199,156,232,232,232,239,250,246,237,107,177,100,201, 18,110,253,250,245,161, 82,169,200,218,114,230,231,231, 91, 68, 69, 69,109, +234,220,185,243,140, 62,125,250, 48,215,173, 91, 7, 11, 11, 11,168, 84, 42, 24, 25, 25,161,176,176, 16,171, 86,173,194,157, 59, +119,148, 52, 77,239, 18, 10,133,223,235,121, 46,225, 67,175,205,170, 44, 64, 85,165,100,168,162,253,223,222,207, 10, 62, 93, 80, +167,112, 88, 88, 69, 6,123,232,122,206,107,132, 22,131,193, 64, 82, 82, 18,246,238,221,251, 94, 30, 45, 77,250,135, 42,184, 43, +219,118,250,230,205,155, 42,130, 32, 58, 60,126,252,120,225,232,209,163, 39,138, 68, 34,103, 19, 19,147,116,133, 66,241,139, 88, + 44, 94,139, 82,127, 84,182, 62,247, 16,145, 72,148, 92, 89,212, 97,197, 54,128,101,181,156, 21,210, 59,148, 75,225, 80, 97,153, +114,169, 31, 42, 73,239,240,183, 31,119, 3,231,191,146,243,115, 23, 91, 85, 39, 44,125, 15,173, 38,179, 88, 98,133,119,120, 2, +241, 33, 34,235,125,107,137,164, 36, 97,249,177,119, 45,101, 82, 9, 68,194,204,151, 72, 58,145,245, 65,155,165,238,231,237, 4, + 2, 73,137,111,240, 48,108, 87,105, 63,223,134,214,186,159, 4,176,248,167, 75,161,108,194,194, 26, 79,231,140, 67,122,129, 8, +151,222,230,159,164, 75,164,211,143, 0,249,184, 3,144, 74,105,248,193, 31, 50,118,251, 14,178, 24,106, 91,135,133, 45,243,127, + 1,111,145, 13,187, 93,247, 46,250,212, 64,204,224,241,120,225,219,183,111,239,225,235,235,203, 29, 50,100, 72,101, 14,242,250, + 34,245,209,171, 55, 63, 93,216,179,121,190,141,119,123,236, 92,182, 64,117, 44,226,121,197, 40,196,106,225,225,225,161,186,119, +239,222,188, 41, 83,166,108,233,209,163,135,211,128, 1, 3, 56,117,235,214, 5,151,203,197,155, 55,111, 16, 30, 30, 46,123,251, +246,109,122, 73, 73,201,188,230,205,155,235,147,227, 44,127,249,242,229, 27,213,235, 32,212,195,133,109,160,142, 46,212, 52, 82, + 39, 45,109, 3,192, 56, 48, 48,112, 52, 0, 84, 17,246,189, 28,192, 30, 0, 76,154,166, 51, 66, 66, 66, 58,156, 61,123,182,195, +220,185,115,217,125,251,246,197,253,251,247,113,245,234, 85,185, 92, 46,143, 80, 11, 87, 93, 75,229, 80, 0,162,148, 74,229,243, +160,160,160, 14, 12, 6, 99,185,102, 70, 76, 76, 12, 14, 29, 58, 84, 27, 78, 37,128, 77,153,153,153, 63,133,132,132, 44,191,118, +237,218,248, 49, 99,198,152, 43, 20, 10,196,198,198,226,231,159,127,174, 21,167, 80, 40,156, 99,107,107,187,244,226,197,139,191, + 92,185,114,229,235, 81,163, 70,145,179,102,205, 66,112,112, 48,126,251,237, 55, 74,165, 82,157,101,177, 88, 99,114,114,114, 68, +159,226,174,163, 30,134, 75,215,179,214, 97,141,188, 31, 50, 52,168, 35, 4, 31, 74,160,217, 14, 63, 63,191, 50, 43,163,198, 10, +167,221,134, 32, 8,189,135, 14, 1, 88,210, 52, 77, 1,216,133,210,250,162,218, 89,225, 25,248, 43,115,188,174,140,205, 4, 82, +203, 24, 72, 17, 91,125, 81,105, 75,128, 70,179, 26,216, 10,150, 47, 95,190,117,197,138, 21, 91, 43,166,112,208,110, 84, 49,245, +195,202,149, 43, 97, 72,239, 96,192,127, 21,149, 11,173,168,125, 10, 69,131,193, 75,182,175, 91,176, 66,169,144, 9,105,200,253, +241,230,116,244,135,174,140,166,232, 69,215,143, 6, 6,131, 70, 62,173, 82, 46,252,224,222,255, 77,253, 36, 44,172, 81,180,106, + 26,126,123,145, 78,103,136, 20,223, 28,145,203,203, 89,131, 74,125,178,168, 97, 55, 36,249, 39,172,156, 88,103,230,124, 97, 67, + 92,200, 27,173,247,122,178,178,178,206,109,221,186,149,220,188,121,115,215,146,146,146,138, 14,242,181,197,130,254, 51, 23, 49, +218, 53,114,157,249,240,117,242, 64,232, 48, 92, 88, 17, 29, 59,118, 20,196,197,197, 5, 92,185,114,101,196,237,219,183,123,136, + 68, 34, 87,130, 32, 96,108,108,156, 44,149, 74,175,113,185,220, 99,122,138, 44, 0,192,138, 21, 43,232,149, 43, 87, 18,113,113, +113, 52,131,193,248, 19, 64, 34,131,193, 72,210,118,130,215,158,174, 89, 38, 48, 48, 80,151, 7,226,237,226,226,226,200, 85,171, + 86,117, 89,181,106, 85, 11,181, 85,232, 54,254,242,249,210, 23, 10, 0,183,217,108, 78, 58, 65, 16,206,108, 14, 87,116,239,222, +189,107, 31,200, 89, 34,151,203, 23,166,164,164,108,217,178,101,203, 90, 19, 19,147,182, 49, 49, 49,127,126, 8,167, 90, 68, 13, +182,182,182,118, 58,124,248,240,169,131, 7, 15,182,103, 50,153,247, 9,130, 24, 34, 20, 10, 63,105, 81,105,117,129,232,149,122, +212, 58,212,137,247, 99, 39, 41,253, 59,132,155, 74,165, 42, 94,186,116,105, 86, 69,225, 85,209,122,165,249,175, 78,229,162,203, + 62,213, 39,138,178, 6,225, 66, 20, 3, 64,105,237,194,210,178, 58,186, 22,149, 6, 32,174,233, 58, 39, 73,242, 44,128,151, 36, + 73,190,174, 24,232,162, 61,111,229,202,149, 53, 93,231, 6, 24,240, 89, 67,135, 59, 91, 32, 9, 4,214,214,147,246, 31, 52, 87, +126,156,126, 6,176,217, 43, 73, 96, 62, 0,130, 6,182, 28,145,203,127,168,110, 65,199,142, 88, 75, 19,152,171,222,153,235, 50, +238, 98, 77, 45,182,189, 14,116,168, 63,168, 39,103, 19, 84, 95, 80,246, 61, 78,127,127,127, 70, 21, 15,243,114, 69,165,171, 66, +104,104, 89, 22,255,170,250,169,125,190,153, 61,120,240,192,201,199,199, 71,128,242, 78,255,149, 77,167,245,220,118, 6, 0,213, + 71,222,159,159, 5,167,155,155, 27,231,205,155, 55,178,127,215,181,105,224,252, 87,114, 90, 54,117, 1,129, 73,208,206, 29, 84, +173, 69, 75, 75,160,209,244,207, 40,136, 77,169,162,159,154,235,220, 50, 33, 33,193,181, 97,195,134,201, 0, 10, 42,244,163,178, +121,180,225, 24,253,223,115, 86,134,201, 40, 95,138,206,128, 74, 14,132,129,211,192,105,224, 52,112, 26, 56, 13,156, 6, 78, 3, +103,109,133,214,103, 13, 18, 6, 24, 96,128, 1, 6, 24, 96,128, 1, 6,252, 45, 32,170, 81,165,250,152, 4,107,163,108,175, 25, + 56, 13,156, 6, 78, 3,167,129,211,192,105,224,252,191,227,172,137, 91,123,249,207,117,232,240, 31,235,183,193,172,106,224, 52, +112, 26, 56, 13,156, 6, 78, 3,167,129,243, 67, 4,203,103, 13, 38, 12, 48,192, 0, 3, 12, 48,192,128,207, 6, 61,220,193,103, +170, 64,254,241, 70,167, 32,170, 26,209,199, 13,117, 0,224, 99,241,253,159,130, 15,224, 43,173,255, 23,160,142,140, 55, 8,173, +207, 23,141, 0, 44, 1,160, 93,139,236, 33,128,245, 21,218, 29, 5,160, 93,144, 80,132,210, 58,129,175,245, 89, 25, 73,146,235, +187,116,233, 50,253,206,157, 59,155,149, 74,229,170, 90,244,215,149,207,231,111, 36, 8,162, 53, 0, 22, 65, 16,111, 50, 51, 51, +215, 43,149,202, 15,137, 90,105,224,232,232,184, 1, 64, 75,146, 36, 89, 4, 65, 36,100,102,102,174, 81, 42,149, 55, 63,128,211, +204,193,193,161, 19, 77,211,142, 0, 24, 44, 22, 43, 55, 45, 45,237, 1,106,153, 91,201, 63, 48,150, 93, 40, 82,178, 0,192,220, +132,169, 8, 13,108, 42,215,117,154,225, 20, 55,192,128,255,111,208,165,145,201,229,208,219, 13,107,105, 37,190, 87, 1, 68,175, +250,216,113, 57, 17,223, 87,181, 60, 81, 73, 84,115, 69,206,222,110, 88,171,162, 75, 57,122,185, 97,211,229, 55,168, 54,210, 94, + 23, 78, 13,246, 1,228,100, 29,170, 20, 16,186, 69, 95,255,219,241, 21,202, 15, 21,150, 13, 29, 86, 43,180,134,185,131,175, 98, +130, 25, 26, 11, 77, 24,175, 25,128, 22,234,135,252,107,148,230, 42, 42,250,192,206,125, 46,156,255, 54, 44,167,105, 58,160,220, +201, 90, 73, 30,162, 47,190,248, 98,192,149, 43, 87,140, 53,245,238, 40,138,130,145,145,145, 18,192, 88, 61,214,101, 63,108,216, +176, 69, 7, 14, 28,192,208,161, 67,151,134,133,133,109, 5, 80,172,235,194, 86, 86, 86,254,150,150,150,193,251,247,239,183,107, +223,190, 3,193,225,112,240,230, 77,130,243,148, 41, 83,188,226,226,226,206,102,101,101, 77,212,119,227,173,173,173, 71, 90, 90, + 90,110,217,187,119,175,109,231,206,157, 65, 16, 4, 34, 35, 35,157,231,204,153,211,226,221,187,119,199, 51, 51, 51,103,232,203, +105, 99, 99,227,110, 97, 97,209,109,231,206,157, 70,157, 58,117, 2,143,199, 67,116,116,180,233,212,169, 83, 29,211,210,210, 98, + 51, 51, 51,111,233, 43,178,158, 69,158,255, 90, 41,151, 6, 1, 0,147,205, 93,208,126, 75,196,249,103, 55,206,247,175,105,154, +127, 96,236,239, 6,177,101,128, 1, 6,104, 99,164, 19, 28,105, 26,243,175,252,188,140, 4,128, 94,227, 87,207, 26,233,132,205, + 71,210,171,174, 97,171, 39,223,247, 99,234, 32,248,112, 26, 50, 63,164,159,251, 0,114, 14,147, 57,171,157,143,143,237,183,119, +239, 38,200,129, 95,254, 79, 14, 81,165,195,156, 85, 10,173,193, 77,177, 74, 89,106, 49, 33,250, 52,196,241,171,137,140,240, 47, +190,248,162,225,132, 9, 19,136, 86,173, 90, 33, 50, 50,210,253,248,241,227, 95, 93,184,112, 33, 65,165, 82, 69, 2,120, 1,221, +179, 90,179, 0,120, 50, 24,140,214,255,114,206,127, 51, 76,212,226, 42, 19,127, 37, 58,125, 47,225,233,245,235,215,207, 49,153, + 76,141, 69,171,157, 72, 36,114,168, 96, 5,211, 5,245, 20, 10, 5,226,227,227, 65,146, 36, 11, 64,125,188, 95, 82,163, 42, 56, + 27, 27, 27,239,142,120, 24,105, 67, 48,141,144, 47, 1, 32,145,131, 99,234,128, 3,135, 66,172,231,205,158, 49,248,230,205,155, +225, 69, 69, 69,191,234,209,159,250, 38, 38, 38, 91,159, 62,125,106, 99,108,108, 12,138,162, 80, 84, 84, 4, 71, 71, 71,236,223, +191,223,114,222,188,121, 1,133,133,133, 55, 37, 18,201,111,250,136,115, 11, 11,139,110,207,159, 63, 55,210, 20,148,150,201,100, +112,118,118,198,209,163, 71,185,179,102,205,106, 90, 80, 80,144, 42,147,201,222,234, 74, 88, 40, 82,178,148,114,105,208,225, 93, +129, 46, 0, 48,102, 70, 96, 16,167,200,252,162, 46,211, 10, 69,202, 11, 0, 12, 66,203,128,127, 26,173,109,109,109, 67,115,114, +114,110, 1,152,136,143, 99,105,112,231,241,120,205, 41,138,114, 36, 73, 18, 12, 6, 35, 67, 36, 18, 61, 5,240,170,182,132, 54, +110,126,253,193, 53, 30, 7,154,106, 65, 2, 32, 72, 50, 90, 37, 47, 57,148,251,234,230,249, 15,226,228, 24,141, 7,232, 22, 36, + 64, 17, 36,249,148, 82,150,236,207,137,191,121,233,223,114,112,238, 11,209,216,205, 81,247,194,152, 31,131,111,120, 3,240, 73, + 10,228,209, 36,221,135, 21,103, 2,125,103,207,158,237, 56, 99,250,116, 98,220,216,177,141,110,221,185, 67,116,213,167, 90,193, +231,137, 42, 29,223, 43, 21, 90,254, 77, 97, 69, 3, 11,143, 7, 47, 33,153, 12, 6, 49, 98,246,250,128,131,187, 54,145, 61,251, + 15, 41, 27, 62,241,245,245,133,175,175, 47, 17, 20, 20,212,232,207, 63,255,108,116,244,232, 81,101, 68, 68,196, 83, 0, 39,170, + 90, 89,111, 55,136, 41,128,199,102, 49, 69, 35,150,253,186,215,199,199, 7, 92, 46, 23, 31,194, 9, 0, 61, 27,146,111, 89,214, + 13,158,142,152,185, 60,185,125,251,142,244,199,224,252,140,240, 16, 40, 43,106,109,229,226,226,210, 73,169, 84,242, 0,128,201, +100, 74, 82, 82, 82,102,162,180, 54, 32, 0,156,165, 40,106,128, 30,220, 36,128, 21, 3, 6, 12, 88,250,237,183,223,162,110,221, +186,152, 53,107, 22, 20, 10, 69,228,165, 75,151,150, 3,216,128, 26, 46, 30,123,123,251,229,187,119,239,182,102,114, 76,208,106, + 97, 34, 4, 5, 74, 0,128, 41, 23, 56, 55,141,198,172, 89,179,204, 31, 63,126,188, 70, 31,161,101,111,111,191,106,255,254,253, +214,198,198,198,160,105,186,172, 22, 99,113,113, 49,138,139,139, 49, 99,198, 12,243,216,216,216,141,250, 8, 45, 7, 7,135, 78, + 59,119,238, 52,226,241,120, 40, 46, 46,102,203,229,114,162,168,168, 8, 37, 37, 37,180, 76, 38,147,207,156, 57,147,251,226,197, + 11, 63,129, 64,240, 22, 6,252, 91,192, 0,240, 13,139,197, 26,212,176, 97,195, 54,175, 95,191,126,162, 84, 42, 79, 3, 56,253, + 17, 94,166,186, 59, 57, 57,173, 77, 79, 79,223, 9, 32,228,255,101,135, 58, 56, 56,156,190,119,239,158,203,238,221,187,199,110, +222,188,249, 34,128,223, 62,128,142,205,102,179, 7,119,237,218,213,101,204,152, 49, 28, 7, 7, 7, 72,165, 82, 36, 38, 38,154, +159, 60,121,210, 53, 58, 58, 58, 85, 93, 17, 67,231, 23, 10, 27,247,142,166, 96,154, 31,239,208,177, 83,231,161,131,191, 49,115, +176,177,128, 88,166,194,235,100, 65,221, 63, 46,158,235, 26,199, 54,186, 39,151, 11,135,231,190,186, 87,172, 47,103,183,110,221, + 59,247,232,222,221,204,194,210, 2, 66,145, 28,111,146,210, 92,111, 92, 61,239,203,100, 26,221,166, 8,197,168,172,231, 87, 75, + 62,229,177,153, 5, 48, 69, 60,155,230, 45, 58,182,122,220,107,194,154, 54, 52, 77,131,164,177,163,162, 53,107, 22,192,220, 81, + 90,246, 75, 47, 62,208, 52, 77, 16,216,164,109,205,234,237,134,181, 52,141,239, 65,130,232, 93,195, 48,165, 6,189, 0,174,165, +181,181,207,212,201,147,137,162,194, 66, 68, 71, 71,151, 84, 20, 89, 91,235,128,125,155, 68,189,179, 41,181, 23,219,255, 82,107, + 86,165, 67,135, 58,231,209, 50, 54, 54,174,116,186,133,133, 5,186,117,235,134,245,235,215, 51, 1,180,174, 48,187,124,145, 85, +128, 27,182,103, 49, 44, 76,184,100,221,186,117,205,204,205,205, 63,152, 19, 0, 64, 83,245, 59,214,165,191,124,244,235,146,177, +215,142,110,241, 20, 21, 21,176, 42, 54, 49, 53, 53, 69,227,198,141,177,116,233, 82,221, 56, 63, 28,255, 40,167,163,163, 99, 19, + 95, 95,223,214,215,111,221,178, 76, 79, 79,231,166,167,167,115,175, 92,191,110,217,161, 67,135,214,142,142,142, 77,202,118, 21, + 77,235,211,207,213,187,118,237, 90,126,246,236, 89,210,215,215, 23, 86, 86, 86,232,214,173, 27, 46, 94,188,200,220,188,121,243, + 58, 0, 75,107,234, 39, 73,146,157,125,125,125, 9,208, 52, 50,132, 74, 60, 88,223, 4,209,155, 60, 80, 36,161,145, 39, 44,132, + 88, 44,129,177,177, 49, 15,165,195,189,186,110,123,199, 14, 29, 58, 16, 0,202,196, 85, 81, 81,233,167,184, 88, 4,153, 76, 14, + 46,151,107, 6,128,167, 43, 39, 77,211,142,157, 58,117, 2, 0,200,229,242,178, 55,188,130,130, 2, 66, 40, 20, 66, 38,147,129, +197, 98,177, 81,179, 95, 99, 25,167,185, 9, 83,193,100,115, 23,140,153, 17,152, 50,102, 70, 96, 10,147,205, 93, 32, 51, 43, 84, +233, 50,205,220,132,169,248,196,231,167, 29, 73,146, 63,187,185,185,197,146, 36,121, 24,128,227, 7,114,182, 5,176,206,200,200, +232,154,135,135, 71,138,177,177,241,117,181, 80,239, 80, 75, 78,142,177,177,241,245,117,235,214,157,122,242,228,201,208, 63,255, +252,179,254,179,103,207, 6, 7, 5, 5, 29, 55, 53, 53, 13, 71,121,191, 68,189,175,205,250,245,235, 31,124,240,224, 65,219,142, + 29, 59, 30, 0,192,253, 72,215, 59, 3, 64, 75,232, 84,145,227,147, 28,119,167, 86,173, 90,185,240,120, 60,244,232,209, 3, 0, +252, 62,132,147,205,102, 15, 94,186,116,169,219,178,101,203, 56, 2,129, 0,215,175, 95,199,195,135, 15,161, 84, 42, 49,109,218, + 52,238,152, 49, 99, 26,152,153,153, 13,214,171,159, 76,243,227,179,231,204,237, 51,127,214, 36,179,167,239,228, 56,116,237, 29, +126,143, 16, 32,171,132,131,254,131,199, 88,244, 30, 56,172, 55,135,107,113, 92, 95,206, 69, 11, 23,246,153, 60, 62,192, 44, 70, + 64,225,220,253, 12,220,143, 23, 66,201,178, 68,223,193, 19,173, 90,116,234,243, 21, 19,172, 95, 62,245, 49,218, 15,180,159, 61, +123,182,221,130, 77, 71,238, 58,181,253,102, 71,118, 62,124,181,133,143, 59, 96,105,109, 98,242, 77,124,215,174,147,140, 74,235, +197, 86,203, 89,142,175,245,192,224,172,124,116,209,246,207,234, 98,141, 70,234, 97, 69,198,149,159,151,145, 52,129, 89, 35,157, +202,221, 7, 42,237,231, 77, 96,232,236,185,115, 89, 22, 86, 86,216,181,107, 23,164, 34, 81, 57,159,217,238, 46,232,115,205,152, +153,218,192,195, 57,182,155, 43, 17,254, 31,124, 95,153, 92,165, 69, 43, 44, 44,140,238,215,175, 31, 1, 0,161,177,200, 31,220, + 20, 27,135,125,187,110, 41, 65, 18,116, 61,207,142, 49,117,220,154,137,108,108,108, 80, 82, 82, 2,169, 84, 10, 54,155, 13,137, + 68,130,119,239,222,225,254,253,251,176,178,178,210,171, 39,133,133,133, 48, 53, 53,133,169,169,233, 71,225, 92, 60,182, 7,247, + 77, 74, 54,247,242,253,155, 93,183, 79,255,173,189, 91, 75,191,103,221,135,205,122,110,110,231, 36,121,246,236, 25,238,221,187, +135,252,252,124,248,248,248,252, 87, 14,230, 67,181, 79,214, 67, 0, 86, 13, 27, 54,116,190,124,237,182, 85,177,132, 50, 79,202, + 84,176, 40,138,130,177, 49, 95,121, 34,244,156,112,232,224,254, 68, 70, 70, 70, 22,128,135,106,113, 91, 83, 77, 69, 30,128, 38, +254,254,254,139,166, 79,159,142,132,132, 4, 76,154, 52, 73,252,240,225,195,220,142, 29, 59,218,236,223,191,223,104,222,188,121, +184,117,235,214,138,176,176,176, 51, 0, 18, 1, 84, 90,171,141,166,105, 54,155,205,134, 82, 45, 27,228, 42,170, 76,223, 23, 22, + 22,130, 22,231,131,205,102, 51, 0,216, 65, 71, 63, 58,138,162,216, 44, 22,171, 76,100,189,203, 44,196,187,172, 18, 20, 22,203, + 32, 22, 43, 33, 19,211, 96, 24,219, 48,129, 36, 7, 0, 73, 80,170, 87, 0, 0, 0, 32, 0, 73, 68, 65, 84,186, 90, 71,120, 60, + 30,148, 74, 37,138,138, 74,187,161,177,148,201,100, 50, 8,133, 66, 48, 24, 12, 83, 0,230, 0,242,116, 33, 84, 59,185,255,174, + 30, 6,196,163, 35, 3,108, 95, 95, 88, 92,110,154,185, 9, 83, 17, 58,175, 41,195,198,185,197,157,150, 67,127,241, 40,155,246, +105,253,179,184,118,118,118, 55, 78,157, 58,213,180, 81,163, 70, 72, 76, 76,244, 24, 50,100,136,143, 64, 32,104, 9,253,107, 50, + 26,147, 36,185,113,204,152, 49,211, 71,140, 24, 65,184,187,187,131,201,100, 66,169, 84, 58, 39, 36, 36,116, 59,121,242,228,194, +131, 7, 15,238, 87,169, 84,223, 65,119,191, 63,146,195,225,156,216,187,119,111, 23, 31, 31, 31, 28, 62,124, 24, 15, 31, 62,164, +218,182,109, 75,142, 30, 61, 26,174,174,174, 62,163, 71,143,254, 93, 42,149,246,173,165,101,203,181, 67,135, 14, 46, 12, 6, 3, + 29, 59,118,100,223,187,119,175, 21,128,123, 31,184, 79, 77,157,157,157,111,249,249,249,181,188,118,237, 90, 84, 70, 70,134,159, + 30,219, 11, 0, 3,157,156,156,130, 44, 44, 44,172,244,184,199,150,164,165,165,125, 15, 32, 84,199, 69,218,183,110,221, 26,201, +201,201,104,210,164, 9,216,108,118, 7,185, 92, 62, 5, 64, 31, 0, 63, 0,136,213,163,191,238,221,187,119,119,241,243,243, 35, + 66, 67, 67,203,252, 67, 73,146,132, 82,169, 4,155,205, 70,251,246,237,201,200,200,200, 58,143, 30, 61,114,135, 14,195,136, 54, +110,126,253, 59,118,238,218,185,139, 79,115,114,115,232,107,168, 40, 21, 24,132, 18, 76,130, 2,165,224,130,203,102,192,221,179, + 13, 35,254,197, 83, 31,153, 84,222, 63,247,213,181,243,186,112,246,233,213,211,183,105, 19,119,114,251,239,111, 80,144, 22,171, + 74,139,187,157, 67, 50, 72, 52,109,253,133,173,123,179,150,140,150, 62,126,172,244,196, 23,221, 36,146, 46, 61,242, 19,110, 95, +251, 20, 23,228, 74,128,225, 92,199,246,155,126, 61,253,216,130,244,116,209,201,208,243,207, 75, 20,184, 15, 0,183, 0,162, 47, +208,220,187, 93,187,174,251, 55,108,176,225,243,249,172, 81, 35, 70, 40,247, 69, 69, 69,161,138,161,223,149, 0,195,214,209,177, +199,212,169, 83, 25,130,244,116,250,228,233, 11,207, 52,124, 40,125, 75,241,110,238,236,209, 15,162,120,189,134, 41,251, 3, 28, + 7, 71,199,166, 83,166, 76, 65, 70,122, 58, 14,135,132, 20, 75,128, 8,141, 21,235, 28, 3, 59,155,185, 57,142, 91, 48,113, 0, +225,194,183,197,212, 21,251, 58,116,147,103,185, 65,240,215,241,215,214, 34,159,177,200,154, 92,169,208,170,136,223, 98,177,220, +140,141,250, 39, 79, 30, 35,179,139,228,162,132,132, 4,216,218,218,130,207,231,195,194,194, 2, 49, 49, 49,184,126,253, 58, 94, +190,124, 9,138,162,208,162, 69, 11,189,122,147,147,147,131,167, 79,159,194,202,202,234,163,113,186,185,216,225, 91, 23, 59,118, +102,110, 33,251,218,195,151, 62,251, 22, 15,110, 70,122, 12, 62,168, 93, 36, 86, 38,147,225, 63,130,178,232, 66, 23, 23,151, 78, +135, 14, 29, 98, 75,149, 48,115,159, 18,241,163, 72,162, 50, 1, 0, 19, 30, 67, 20, 25,212,248,187,213,171, 87,139,198,143, 31, +239,145,146,146,178, 94, 7, 91,255,218,238,221,187,207,167,105,154, 53,123,246,108, 0,192,152, 49, 99, 10,239,223,191,239, 14, + 32,235,250,245,235, 78, 19, 38, 76,120,117,227,198, 13,227,185,115,231, 50,148, 74,101, 12,147,201,164,195,194,194, 86, 1, 8, +124,239,137, 72,146,143,163,162,162,234, 57,185, 54,134,171, 13, 9,223,165, 47, 75,111,112,198, 20, 82,147,222, 32,238,217, 67, + 56, 58, 58, 90,240,249,252,216,212,212, 84,121, 90, 90,218, 66,145, 72,180,187,134, 62, 70, 71, 70, 70,242, 93, 93, 93, 81, 92, + 92,140,212,236, 18,204, 58,109,140, 66,113,169, 17,131, 5, 49, 90,186, 52, 54, 51, 34,101, 15,179,178,178,228, 50,153,108,153, + 80, 40, 60, 84, 29, 39,139,197,202,125,246,236,153,105,221,186,117, 33,145, 72,232,188,188, 60, 66, 36, 18,161,168,168,136,184, +112,225,194,215, 2,129,160,109,253,250,245, 9,103,103,231, 85, 2,129, 64,156,150,150, 54, 73,151,161, 73,181, 96, 82, 49,153, +204,205,147, 39, 79, 30,122,230,204,153,199,161,129, 77, 7,106, 13,151, 88,120,122,122, 94,110,222,188,153, 83,200, 38,239, 29, + 0,126,252, 23,156, 91,227,150, 44, 89,210,212,218,218, 26, 83,167, 78,197,202,149, 43,177,124,249,242, 70, 83,167, 78,157, 12, + 96,171, 30, 60, 70,142,142,142,143,182,111,223,238,209,169, 83, 39, 92,188,120, 17,199,142, 29,195,219,183,111,149,245,235,215, +103,250,248,248, 96,197,138, 21,232,221,187,247,164,153, 51,103,118, 77, 79, 79,111,165,163,248, 24,191, 98,197,138,129,157, 59, +119,198,216,177, 99,165, 55,111,222, 28, 10,224,202,213,171, 87,191,184,117,235, 86,232,145, 35, 71,140,214,173, 91,215, 99,222, +188,121, 83, 1, 4,215, 98,251,191,238,210,165,180,134,114,231,206,157, 17, 20, 20,212,251, 3,133, 22,199,198,198,230,194,225, +195,135, 91, 54,110,220, 24,163, 70,141,106, 53,116,232,208, 11,249,249,249, 61, 1,232,116, 67,170, 83,167,206,198,179,103,207, + 54,172,106,100,161, 50, 72,165, 82,235,111,190,249,102, 67, 82, 82,146, 94, 66,235,232,209,163,248,254,251,239,209,162, 69,139, +230,237,219,183,223, 51,101,202, 20,248,251,251,119,143,137,137,113, 64,105,212,114,141,224,241,120,205,135, 15, 31,206,121,240, +224, 1, 0,192,211,211, 19, 45, 91,182, 68,114,114, 50, 30, 63,126, 12,169, 84, 10, 7, 7, 7, 12, 26, 52,136,151,148,148,212, + 60, 39, 39,167, 70,161, 69,114,141,199, 13,236,215,215,236,220,125, 1, 84,148, 18,109, 26,154,195,199,195, 30,241,169,133,136, +140, 77,133, 74,198,134,185,181, 13, 58,116,237,101,157,145,246,118, 92, 46, 80,179,191, 22,215,120,220,160,129, 95,153,158,139, + 72, 71, 65,122, 28,253,250,225,153,235, 10,137,104, 18, 0, 60,254,243,248, 30, 71, 27,163,158,238,173,219, 48,252,122, 14,176, + 58,125, 44, 99, 92,254, 63, 83,219,239, 61,220,114,193, 94, 87, 86,206,152, 5, 1,190, 52,203,202,249,161,153, 66,177, 83, 51, +175, 55,208,107,225,146, 37,237, 39, 78,158,204,163, 40, 10, 71,126,253,181,240,105, 84, 84,252,100,128,154, 82, 5,223, 78,192, +117,232,192,129, 92, 51,115,115,204,153, 53, 11,102, 10,197,141,178, 93, 2,116,159, 51,127,126,167, 25, 51,102, 24,237, 89, 53, +253,113,239, 9,107, 90, 83, 52, 77,104,134, 41,143, 86,111,138,107, 59, 97,224, 64,152,153,155, 99,246,236,217, 32,228,242,203, +101, 2,138,137, 27,227,191,246,245, 9,232,223, 25, 4, 8, 28, 11,187,131,215,201,217,207,110, 8,240,230,115, 85, 85, 21, 80, +165,143, 86,181, 67,135, 69,114,100,118,255,106,176,192,221,221,189,168, 81,163, 70, 69,185,185,185,120,254,252, 57,242,243,243, + 17, 28, 28,140,184,184, 56, 80, 20, 85,107, 1, 67, 81, 20, 62, 54, 39, 0, 56,216,152, 99, 84,223,118, 76,169, 68,196,203,206, +206, 46, 55,124,244, 31, 18, 90,101, 80, 42,149,188,250,245,235,131, 4, 8, 97,137,194, 52,227,104, 23, 34,227,104, 23, 66, 88, +162, 48,149,201,100,164,169,169, 41,164, 82, 41, 79, 7, 42,214,151, 95,126, 57,255,204,153, 51,172,181,107,215,194,203,203, 11, +114,185, 28,247,239,223, 79, 5,144,165,110,147,126,251,246,237,116,141, 16, 94,191,126, 61, 78,159, 62, 77,244,232,209, 99, 97, +101,231,147, 64, 32,216, 56,101,202,148,188,146,162, 60,236, 29, 38, 70,232,168,108,252, 60,240, 45, 70,216,156, 66, 94,230, 59, +236,219,183, 15, 87,175, 94, 35,174, 92,185,202,190,121,243,166,201, 87, 95,125,181,163, 78,157, 58, 97,213,117, 50, 61, 61,125, +237,140, 25, 51, 10,138,138,138, 80, 84, 84, 4,177, 88,130, 60, 17,240,108, 75, 83, 60,219,210, 20, 18,202, 8,187,118,238, 38, +159, 61,123,102,251,246,237, 91,167,254,253,251,111,225,243,249, 7,171,227, 76, 75, 75,123,240,237,183,223, 74, 10, 11, 11, 33, +147,201,228, 42,149, 74, 38, 22,139, 21,199,143, 31,159,107, 99, 99,211,225,226,197,139,172,171, 87,175, 49,111,222,188,197,190, +126,253,186, 69,183,110,221, 78, 56, 56, 56,252,162,139,165,140,193, 96,108, 11, 9, 9, 25,183,107,215, 46, 7, 31, 31,159,102, + 21,134,162,248, 61,123,246,172,247,235,175,191,214, 9, 10, 10, 90,136,210, 0,148, 79, 10, 91, 91,219,153, 3, 7, 14,196,174, + 93,187,112,254,252,249,121, 59,118,236,192,151, 95,126, 9, 39, 39,167,111,161,251,176, 23, 0,252,184,117,235, 86, 15, 15, 15, + 15,140, 25, 51, 70, 54,105,210,164,239, 14, 29, 58, 84, 63, 60, 60,156,253,203, 47,191,212,155, 58,117,234,236,128,128, 0, 73, +131, 6, 13, 16, 28, 28,220,144, 36,201,109, 58, 93,223, 14, 14,115, 71,140, 24,129, 77,155, 54,225,230,205,155,131, 81,250, 64, +149, 1,184,116,247,238,221,254,235,214,173,195,224,193,131,225,236,236, 60,187, 54,150,167,166, 77,155, 46,235,211,167, 15,194, +195,195,209,170, 85, 43,116,232,208, 97, 30, 0,219, 90,238, 78,210,212,212,244,196,161, 67,135,124,235,213,171,135, 53,107,214, +192,205,205, 13, 7, 15, 30,244, 53, 49, 49, 57, 1, 29,221, 55, 44, 44, 44, 76,141,141,141,177,112,225, 66,122,240,224,193,121, + 53,125,230,205,155, 71,115,185, 92, 88, 89, 89,233, 26,248, 98,196,227,241, 58,122,121,121,225,254,253,251,184,122,245, 42,150, + 46, 93,138,185,115,231, 34, 59, 59, 27,195,135, 15, 55, 6,224,175,199,118,219,219,217,217,161,176,176,180, 46,188,151,151, 23, +158, 60,121,130,236,236,108, 56, 59, 59, 35, 35, 35, 3, 54, 54, 54,104,220,184, 49, 40,138,178,215,141,146,246,178,181,182, 64, + 86,190, 20, 76, 40,209,218,221, 22, 55,158,231,226, 93,182, 12,246, 54,150,200,200,202, 70, 29, 27, 30, 92, 92,234,130,166, 41, + 47,157, 20, 48,131,108,205,229, 25, 33,175, 72,142,180,216,155,185,114,149,116, 74, 65,226,221,148,130,196,187, 41,114,169,100, +202,227, 59, 87,115,235, 57, 24,193,197,197, 5, 4, 77,181,251, 20,215,227,144,186,112, 49, 49, 98,142,185,250,243, 50, 34,108, +255, 98, 66,154,251,174,109, 31,135, 82,203,178, 29, 80,127,200,240,225, 29,191,251,238, 59, 94,102,102, 38, 21, 48,108, 88,222, +218,192,192,107,127,212,240, 98, 80, 12, 52,234,217,179, 39, 72, 0,127, 92,185, 34,202, 0, 82, 1,192, 1,112, 25,240,205, 55, + 93,150, 44, 90,100,148,147,155, 75,221, 79, 40, 62, 23,151, 69, 15,178, 86,161,190, 46,254, 89, 42,192, 91,195,123,249,242,101, + 90, 12, 60, 6, 0, 63, 23,124,219,171,147,167,207,232,129, 93, 32,200,202,199,236,181, 63, 99,207,201, 91,151, 45, 20,244, 23, +255,161, 71,241,228, 90, 9, 45,245,208,207,123,211, 74, 74,222, 31, 61,248, 80, 1,243,119,112, 86,134,255,162,208,210, 64,161, + 40, 29, 37,145, 41, 40,200, 20,148,230,173, 22, 98,177, 88,103,138,203,151, 47, 31,158, 53,107, 22,182,108,217,130, 87,175, 94, +129,205,102,195,203,203,139, 15,192, 84,115,207,111,221,186,181, 61, 73,146,136,143,143,199,230,205,155, 49,126,252,120,250,222, +189,123, 7, 81,121,190,148, 39,121,121,121, 59,167, 76, 26, 95,144,159,249, 14, 10,113, 62,178,210,222, 64, 42, 42,192,154,245, + 27, 81,162, 96, 34, 67, 40, 71,134, 80, 14,146,107,141, 61,251, 15, 49,154, 54,109,218,135,193, 96,244,171,166,159,247, 51, 51, + 51,247, 79,155, 54,173, 32, 35, 35,163,108,251,100, 10, 26, 50, 69,249,243,213,216,216, 24,219,182,109,179,112,119,119, 31,200, +100, 50,187, 85,195, 41, 72, 73, 73,137,155, 54,109,154, 44, 51, 51, 19, 66,161, 16,231,206,157,235, 95,175, 94, 61,171, 13, 63, +110, 33, 68,114, 38, 50, 10,228,200, 40,144,131, 99,106,143, 19,161,103, 24,141, 27, 55, 14, 96, 50,153, 29,106, 18, 89, 71,142, + 28, 25, 61,108,216, 48,179, 31,127,252, 49,239,236,217,179,187, 0,104, 31,144,248,109,219,182,157, 60,113,226, 68,209,252,249, +243,173,131,130,130,230,125, 98,177,213,109,216,176, 97, 77, 40,138,194,169, 83,167,158, 1,216,122,230,204,153, 71, 82,169, 20, +195,135, 15,175,175, 30, 70,210, 5,109, 3, 2, 2,166,251,250,250, 98,206,156, 57,242,107,215,174,181, 6,176, 5,165, 67,185, + 52,128,100, 0, 59,110,221,186,213, 98,230,204,153,210,118,237,218, 97,236,216,177,227, 1,248,214,192,219,113,196,136, 17, 30, + 20, 69,225,248,241,227, 79, 1, 92,172, 48,255,122,104,104,232,125,153, 76,134,145, 35, 71, 54, 0,160,207,141,156,205,229,114, + 79,173, 94,189,218, 50, 45, 45, 13,163, 71,143,150,198,199,199, 35, 48, 48,208,200,194,194,226,162,214, 53,160, 51,184, 92,238, +190,159,126,250,105,160,183,183, 55,166, 77,155, 38,219,189,123,247,172,233,211,167,203, 90,183,110,141, 93,187,118, 13,228,112, + 56,122,149,232, 72, 79, 79, 47,136,141,141,181,169,233,147,154,154,170,107,120,190,177,169,169,105,132,167,167,103,161,151,151, + 87, 27,165, 82,137,152,152,152, 55,135, 15, 31,166,188,188,188,176,115,231, 78, 4, 5, 5,161, 95,191,126, 96, 48, 24, 58, 11, + 45, 6,131, 1,185, 92, 14, 99, 99, 99, 48,153, 76,188,121,243, 70,147, 90, 6,108, 54, 27, 0, 96, 98, 98, 2, 35, 35, 35,144, + 36,169, 83, 52, 26, 65,128, 46, 44, 81,128,197, 34,193, 36, 41,196, 37, 11, 33, 87, 80,224,177, 25, 96, 49, 9,128,166, 96,105, +194, 2,143,195, 0, 73, 16,148,142,156, 16,138,228,224,176, 73,176,216, 28,130, 84,170,140,202, 30,142, 76,149,145,145, 17,135, +176, 53,231,130,199,254, 23,149, 5, 38, 74, 29,203,199, 1, 44,147,186,117,135,110,218,188,153, 83, 88, 92,140,193,131, 7,231, + 37, 61,122, 20, 34, 6, 30,117,173, 33, 72,137,100, 50,221,253,186,118, 69,100, 84, 20,138,242,243, 95, 3,165,206,241, 28, 39, +167, 97,219,182,109,227,136, 37, 18, 12, 30, 52,168,224,213,157, 59, 71, 82,138, 17,118, 60,185, 84,136,213,120,220,217,108, 71, + 13,175, 48, 63, 63, 31, 40, 77, 33,225, 96,103,186, 97, 70, 64,111, 20,149, 72,176, 96, 99, 8, 21, 21, 39,248, 54, 60, 21, 95, +157, 73,135,240, 63,246, 24,158, 92,225, 3, 64,135,132,165, 26,235, 82, 77, 98, 69, 42,149,126,116, 1,244,161,156,149,137,196, + 15,229,252, 55,130,201,100, 74, 94,190,124,201, 49,183,113,162,108,204, 88,249,245,198,223,177, 0, 0,107, 83,166, 80,174, 82, + 80,233,233,233,224,114,185, 18, 29,135, 27, 38,237,219,183,111, 13,128,102, 76, 38, 51,236,208,161, 67, 68, 72, 72,136,213,136, + 17, 35, 18, 98, 99, 99,211, 60, 61, 61, 93, 15, 29, 58,100, 14, 0, 59,118,236,160, 79,156, 56,209, 27,165, 41, 51,170,204,227, +146,153,153, 25,152,155,155,123,111,198,140, 25,193, 28, 14,199,202,196,196,196, 38, 60, 60,156,144,200,105,180, 93,146, 92, 22, +137,104,110, 68,226,246, 98,115, 76,158, 60,153, 17, 27, 27,187, 62, 45, 45, 45,172, 26,206,133, 5, 5, 5,225,175, 94,189,218, + 98,225,220,210,206,196,117,137,133,207,226,120, 0,128,171, 45, 11,164,250,190, 88, 80, 80,128,236,236,108, 76,159, 62,221, 42, + 33, 33, 97, 97, 90, 90,218,141,106,172, 90,183,114,114,114, 82, 95,188,120,225,199, 98,177, 56, 38, 38, 38,109, 35, 34, 34, 8, +137,140, 66,243,133,201,200, 43, 46,237,167,181, 41, 19,143, 87, 59,224,219,111,191,101,190,126,253,122,163, 64, 32,232, 92,233, +205,140, 36,131,180, 69,214,130, 5, 11,162, 1, 52, 0, 80,110,104, 84,165, 82, 17, 35, 71,142,124, 14,192,107,254,252,249,214, + 52, 77,207, 91,184,112, 97, 30,128,189,255,244,185,100,110,110,190, 97,202,148, 41, 56,113,226, 4,242,243,243,183, 1, 64, 97, + 97,225,214,163, 71,143, 30,159, 52,105, 18,126,253,245,215, 13,217,217,217,127,160,230, 80,237, 47,135, 15, 31,142, 75,151, 46, +225,207, 63,255, 92, 6, 32,166,138,118,175,194,195,195, 23,158, 61,123,118,251,136, 17, 35,240,243,207, 63,247, 1, 80,157,131, +108,207,222,189,123,227,226,197,139,200,205,205,221, 85, 89,131,130,130,130,221,231,206,157,107,223,187,119,111,172, 95,191,190, + 39,128,235, 58,108,186,135,133,133,197,161,237,219,183,183,245,246,246, 70, 64, 64,128, 68, 46,151,247,153, 63,127,254,249, 99, +199,142,153, 29, 62,124,184,205,228,201,147, 31,168,115,190,221,215,201,148, 69,146,235, 54,111,222, 60,193,207,207, 15,243,230, +205, 83, 94,190,124,121, 0,128, 43,127,252,241, 71,194,130, 5, 11, 46,108,222,188,153,177,105,211,166, 9,179,103,207,206,166, + 40,234, 83,137,235,213, 59,118,236,104,223,171, 87, 47,188,121,243, 6,247,239,223,135, 92, 46,255, 53, 34, 34,226,118,163, 70, +141, 86,203,100,178,243, 38, 38, 38, 99,204,204,204, 60, 91,182,108,249,197,227,199,143,141,161,155,159, 94,102, 98, 98,162,165, +133,133, 5,148, 74, 37,158, 61,123,134,186,117,235, 66, 46,151,227,237,219,183,240,246,246, 6,155,205, 70,102,102, 38,180,172, +229, 53,136, 34,242, 89, 66, 82,122, 3,107, 51, 19, 64,197,195,147,248, 84,216,217, 90, 65, 69,144,200,200, 16,160,101, 19,103, + 16, 4,129,130,220, 12, 16, 4,241, 92, 23, 78, 21, 77, 69,190, 75,207,170, 99, 99,198,133,119,251, 94, 54, 17,127,100,135,152, + 55,232, 52,153,201, 32, 24, 28,174,233,222, 9, 99,199,218, 82, 20,141,130,220, 76, 48, 73,242,225,167, 56, 64,167,222, 33,165, +171, 27,239, 73,175, 9,107, 90, 18, 52,104,177, 28,135,127,206, 68,190, 49,208,114,199, 15, 63, 88,218,216,218, 34, 32, 32,128, +202, 77, 75,187, 86,162, 99, 98,229, 6,141, 26, 57,152,154,153,225,238,221,187, 96,148,250,216,226, 32,224, 17,180, 96,129,141, +189,163, 35,198, 79,152, 64,101,190,123,119, 93, 12,164,235,211,215, 6,110,110, 44, 13, 47,169,230, 21, 48, 48,107,254, 0, 95, +174,137, 17, 23,235,246,156, 65, 74,142,232,120,132, 0,123,254,163,246,142,125,213, 90,180,170,114, 62, 43,117,170, 54,174, 86, +172,240,120,188, 50,107,138, 30,111,122, 31,157,179, 38,252, 29,156,159, 16,139, 1,156, 5,176, 56, 37, 37, 37,110,194,132, 9, +114,165, 92, 90,116,111, 77,131, 69, 81,235,235, 77,139, 8,228, 79,251,125,150,197,162, 18, 97, 94,209,142, 29, 59, 20, 41, 41, + 41,113,218,203,212,192,253, 14,192,197, 95,126,249,101,247,169, 83,167,224,229,229,133,152,152, 24,123,145, 72,212,234,249,243, +231,214, 30, 30, 30, 8, 9, 9,193,137, 19, 39,182, 0,184, 90,157,200,210, 64,169, 84, 94,203,200,200,104,156,156,156,220,208, +210,210, 82, 97,105,105,137,138,145,136,133, 98, 10,185, 5, 66, 88, 91,219,192,220,220,188,190, 14,226,252, 98, 70, 70,134, 59, +101,213,164,139,123,206, 54, 97,228, 58, 23, 68,174,115,193,197,133, 78,224, 91,114,144,159,159,143,236,236,108,100,103,103,131, + 32, 8, 40, 20,138,166, 58,112,190, 21, 8, 4, 7,222,189,123,119,214,193,193, 1,102,102,102,160, 1,100, 20, 40, 16,189,201, + 3,209,155, 60,144, 81,160, 64, 97, 81, 17,234,213,171, 7, 51, 51,179,170,134, 40,200, 58,117,234,244, 29, 54,108,152, 25, 0, +168, 5, 84,119,154,166,167, 85,242,153,170, 84, 42, 59,105,218,126,255,253,247,214, 0,122,255,195,231, 19, 3,192,140, 73,147, + 38,181,225,241,120,216,185,115,231, 91, 0, 71, 52,247,250,221,187,119,199, 3,192,172, 89,179, 60, 1,204, 67, 21,153,160,203, + 76, 67,108,118,235,166, 77,155, 34, 34, 34, 2, 0,206,212,176,238,208,123,247,238,161, 81,163, 70,224,241,120,109,107,104, 91, +223,197,197, 5,241,241,241, 0,240,164,138, 54, 79,226,227,227, 75,135,123, 8,162,190, 14,219, 62,176, 87,175, 94,207,110,220, +184,209,182, 99,199,142,152, 48, 97,130,236,193,131, 7,125, 1,220,126,242,228, 73,183,145, 35, 71,138,220,221,221,113,235,214, + 45,143,145, 35, 71,222, 35, 73,114,141, 14,156,227, 87,173, 90,181,248,235,175,191,198,170, 85,171,232,147, 39, 79, 6, 0,184, +162,158,119,249,248,241,227,163,215,174, 93, 75, 15, 26, 52, 8, 43, 87,174, 92, 12, 96, 90,117,100, 34,145, 72,168, 82,169, 32, + 18,137,116, 50,201,235,218,222,214,214,246,203, 94,189,122, 97,233,210,165,168, 83,167, 14,206,159, 63, 79, 3, 8, 3, 16, 46, +147,201,186, 0,216, 44, 18,137,126,143,136,136, 64,207,158, 61,217, 40, 95, 98,164,186,245, 63, 59,122,244,168,212,194,194, 2, +174,174,174,104,208,160, 1, 50, 50, 50,144,148,148, 4,111,111,111,180,110,221, 26, 74,165, 18, 7, 14, 28,144, 20, 21, 21,233, +148,147, 79, 41, 19, 29,190,122,225,180,208,198,140, 11,103,123, 11,212,171, 99,141,226,130, 28,100,103,164,163,117,211,186,232, +218,186, 30,114,132, 50, 92, 14, 59,157, 95, 84, 84,114, 88, 39, 19,190,180,228,208,181, 63,206, 11,173,204,216,104,220,196, 19, + 35, 39,204,106,217,178,149,207,213,118,237, 58, 93,254,113,195,186,230,221, 59, 52, 37, 82,115, 36,184, 20,118, 38, 95, 88, 88, +120,232, 83,220,232, 87, 2, 12,137,133,251,237, 93,103, 35, 15, 52,235, 51,233, 64, 92, 42,182, 1,128,130,193,240,232,251,229, +151, 72, 77, 77,197,233, 83,167, 4, 37,192, 83, 93,249,140,140,140, 72, 0, 16, 10,133,224,170,253,238,148, 64,147,175,190,250, + 10,217, 57, 57, 56,122,228, 72,246, 37, 32, 74,159,126,246, 7, 56,198, 70,165, 6, 65,161, 80, 8, 2, 40, 4, 0,130,137,190, +237,188, 26, 33, 59,175, 16, 55, 30,198, 21,215, 19, 99,122,117, 60,159,177, 35,124,237,124,180, 0,228,204,155, 55, 15, 92, 46, + 23,124, 62,191, 76, 28,105,196, 10,135,195, 1,159,207,135, 82,169,196,241,227,199, 1, 32,167,218, 55, 60, 64, 58, 96,218,122, + 74,170,160, 75, 88, 44,214, 71,225, 84,191, 57, 74, 7, 47,248,153,250,227, 94,229, 65, 49,181,225,252, 12,208, 78,157, 19,171, + 29,128,252,164,164,164,212,161,131, 7, 8,147, 19, 94,100,136, 10,210, 5,133,185, 41,130,148,183,207, 51,150, 44,156, 39, 76, + 77, 77, 77, 65,105, 46,173,118,233,233,233,154,101,116,193,188,161, 67,135,254, 52,105,210, 36, 58, 58, 58, 26, 0, 16, 25, 25, +137,177, 99,199,210,163, 71,143,222, 6, 96, 81, 45,250, 45, 18,139,197,229,172, 33,114, 21, 85, 54,228, 87, 88, 88,136,244,244, +116,200,100, 50,157, 21,241,171,203,155, 94,230, 37, 61, 86,120,186,154,192,211,213, 4, 30, 46,198, 32,148,197,101, 34, 43, 59, + 59, 91,243,230, 44,209,163,159,133, 82,169,180, 92, 63,181,135, 38, 11, 11, 11,145,145,145, 1,149, 74, 85,213,131,140, 74, 75, + 75,187,124,226,196,137, 34, 0,248,241,199, 31,243, 8,130,248,147, 32,136,159, 42,249,236, 97, 50,153,119, 53,109, 55,109,218, +148,135,247,135,196,254, 78,124,237,237,237,157,191,120,241,226,157,179,103,207,198,158, 61,123, 32, 16, 8, 22,225,175, 92, 60, + 84, 78, 78,206,130, 93,187,118, 97,220,184,113, 88,190,124,249,166, 86,173, 90, 21, 2, 24, 89, 21,161,157,157,157, 51,147,201, + 68, 84, 84, 84, 33,128, 55, 53,172, 63, 35, 42, 42, 42,147, 32, 8,240,249,124,183,234, 26, 90, 91, 91, 55, 52, 51, 51, 67, 90, + 90, 26,160,126, 99,174, 4, 73,233,233,233, 52,135,195,129,147,147, 83,163,154, 54,222,202,202,106,193,129, 3, 7,152, 47, 94, +188, 64,247,238,221, 83,111,221,186,213, 19,128, 38, 36, 61, 42, 50, 50,210,183, 91,183,110, 47,175, 94,189,138,141, 27, 55, 18, + 45, 90,180,152, 86, 19,167,171,171,235,212,241,227,199, 35, 56, 56, 24,123,247,238,157, 6,224, 84,133, 38,199,118,237,218, 53, +107,239,222,189,152, 48, 97, 2,234,215,175, 63,178, 58,190,228,228,228,133,126,126,126,145,175, 94,189,210,169,226,129,142,237, +187,249,248,248, 52, 20,139,197, 56,116,232,208,155,134, 13, 27, 62, 58,117,234,212, 60,188,255,192,254,253,244,233,211, 24, 53, +106, 20, 90,180,104,113, 8,192, 8, 93, 46,203,216,216,216,148,235,215,175, 83,108, 54, 27,174,174,174,232,215,175, 31, 2, 2, + 2,208,188,121,115,200,229,114,156, 62,125,154,122,254,252,121,170, 76, 38,211, 41,151, 82,238,171,155,231, 19, 19,255,199,222, +121,135, 55, 85,253,127,252,125,179,119,210,180,105,210, 69, 75,129,210, 77,161, 64,217,163, 80,138, 64,153,162,136, 40, 34, 10, +200, 16, 21, 21, 84,134, 32, 75,217, 32,171,130,130, 8, 10,136,128,148,165,226, 23,100,211, 2,165,133,178,186,103,210,189,146, +102,159,223, 31,180,252, 74,237, 72, 90,220,247,245, 60,247, 73,114,110,238, 59,231,174,115,223,249,156,117,239,194,245, 43,231, + 76, 44, 38, 3,158,174,142, 24, 29,209, 9,175,141,237,133,206,254,238, 72,215,232,112,230,204, 79,166,212,212,228, 75,182,244, + 56,172,209, 76,186, 29,127, 49,241,250,121, 51,155, 69,193,223,175, 61,230,127,248,190,124,217,162,185, 14,237,219,122, 34, 62, +165, 20, 63,157, 62, 97,202,201,202,252,245,175,234,113,120, 22,224,136,121,148,136,201, 96,192,194,224, 85, 50,171, 59,210, 4, + 7, 6,250,170, 92, 92, 16, 19, 19, 3,134, 29, 61, 66,207, 2, 28,177,248, 81, 45,120, 69, 69, 5,106,244,218,249,249,249,121, +122,121,225,120, 76, 12,152, 86,235,157,126,118, 14, 48,122,247, 81, 53,244, 99, 93, 10,168,154,222, 10,146,118,173,148,126,114, +153, 8, 87,226, 31, 64,111, 34, 87,191, 41,198, 95, 58, 30,217, 31,200, 20, 52,179,234,112,213,182,109,219,194,118,236,216, 49, +232,157,119,222, 17, 79,156, 56, 17,124, 62, 31, 90,173, 22, 30, 30, 30,176, 88, 44, 56,121,242, 36, 98, 99, 99, 43,172, 86,235, + 79,248,253,176, 1, 17,168,213, 75,227, 84, 50, 4,143,252,150, 54,236,200,115,207, 61, 21, 77, 0, 16, 63,176, 74, 11, 91, 27, +246,108, 60,112,126,204,222, 83,215,169,183,198,247, 99,116,246,107, 5, 0, 80,169, 84,144, 74,165,118,107, 62, 5,254,112,205, +218,213,186,121,121,121,119,243,242,242, 52,175,191,254,186,127, 77,195,119, 30,143, 87, 85, 29,201, 42,174,111, 27, 27,242,105, + 4, 48,125,199,142, 29, 71, 75, 75, 75, 79,189,247,222,123, 88,182,108, 25,126,252,241,199, 62, 0, 46, 52,115,223, 45,197,197, +197, 37, 87,175, 94, 85,249, 4,132,162,141,146,141,190, 11,238,131, 16, 2, 39, 33, 65,121, 73, 17,110,220,184,142,242,242,242, + 43,246,228,211,104, 52,150,104, 52, 26,133, 82,169, 68, 81, 81, 17, 10, 10, 10, 30,155,172,226,226, 98, 20, 21, 21, 17,138,250, +221,152, 45,141,105, 86,106, 52, 26,109, 82, 82, 18, 87,213,202, 7,109,149, 28,116,251,240, 46, 64, 8, 60, 29, 25, 40, 47, 43, +193,165, 75,151, 80, 90, 90,250,191,134, 52,173, 86,235,156, 9, 19, 38, 48, 1,188,252,222,123,239, 57, 2,232,248,254,251,239, +255,132, 58, 61, 11, 89, 44,214,186, 61,123,246, 4,215, 84, 49,206,157, 59,119, 45,128, 29,127,214,181,228,228,228, 52, 39, 38, + 38, 70, 98, 52, 26,177,113,227, 70,172, 93,187,118, 39,126, 63, 80,101,204,231,159,127,190,153,193, 96,204,152, 57,115, 38,166, + 78,157, 42,236,210,165,203, 59,185,185,185,223,212,167,153,157,157, 61,191,115,231,206, 11, 53, 26,205,114,155,204,242,253,251, + 83, 58,119,238, 60, 95,163,209,124,214,216, 57, 18,137, 68, 34,139,197,130,212,212,212, 98,160,193,246, 29, 85,169,169,169,217, + 22,139,197, 67, 40, 20, 58, 54,117,125, 22, 23, 23, 47,239,210,165,203,199,106,181,250, 52,128,165,245, 24,242,155,185,185,185, + 65,179,103,207,158,181,114,229,202, 49,121,121,121,223, 54,165,153,158,158,190, 60, 60, 60,124,193,189,123,247,118,161,225, 42, +224,207, 23, 47, 94,108,220,179,103,207, 27,169,169,169, 43,154,208, 60, 86, 80, 80,112,204,142,243,219,208,247, 31,107, 50,153, +204,247, 87,174, 92,201,216,182,109, 27, 8, 33,171, 45, 22, 75, 67,249,140, 63,124,248,240,238, 94,189,122, 77, 60,112,224, 0, + 63, 40, 40,104,170, 94,175,223,215,212,245,169,213,106, 15, 29, 56,112, 96, 76,124,124,188,199,196,137, 19,249,190,190,190, 48, + 26,141,200,205,205,197,182,109,219,170, 18, 18, 18,178, 74, 74, 74, 14,217, 83,134,152, 13,101,227, 47,158, 57,178, 47,237,126, + 66,143,254,207,140,148, 27,140, 30,224, 21, 50, 81, 82,152,135,147,199, 14, 21,167,166, 38, 95,210,106, 75,198,219,163,105,212, +151,190,112,233,215,163,223,102,165, 38,117,239, 27, 62, 84, 94,101,240, 2,143,195, 64,161, 58, 27, 39, 99,142, 20,165,166,166, +252, 86,101,210,191,242, 87,149,243, 76,111, 44,101,230,197,190, 62,109,120, 39, 8,228, 30, 55,216,192,198, 94,128, 64,161, 82, +113,170,239, 29,136, 31,181,121,180, 73, 83, 13,112,125,170,107,169,180, 90, 45,216,128, 97, 18,192,118,118,118, 22, 0,192,189, +123,247, 32,124, 84,171, 97, 87, 62, 43, 0,145,176,150, 46, 3,208, 22,178,224,222, 78, 42,162, 0, 32, 43,175, 16, 6, 83,163, +207,141,127, 58,209,181, 12, 87,116,115, 4, 56, 0, 34,196, 98,241,178,133, 11, 23,174,190,114,229,202,234,168,168,168,213, 60, + 30,111, 89,245,193,230, 52,114, 34,254, 52,205,174,110,112, 12,111, 75,157,139,108, 71, 89,167,245,145, 91, 94,233, 38, 50, 12, + 24, 48, 96,115, 11,243,217,146,155,229,143,212, 60, 98, 50,153, 8, 30, 85,219, 29, 65,195, 85,130, 31,212, 90,159,151,145,145, + 65,170,223,219,147, 79,197,184,113,227,172,229,229,229,228,249,231,159, 39,104,122, 10,159, 70, 53,121, 60, 94,120,223,190,125, + 77,234,252, 34,114, 55, 37,155, 92,142,187, 77, 78,157,185, 72,190, 61, 20, 67, 54,109,222, 78, 66, 66, 66, 12, 0,188,236,209, +100,177, 88, 3,194,195,195, 11,213,106, 53, 73, 74, 74, 34,231,206,157, 35, 7, 15, 30, 36,219,183,111, 39, 91,183,110, 37,173, + 90,181, 82, 3, 80,217,163, 41, 16, 8, 70, 14, 25, 50,196, 84, 82,166, 37,169,217,133,228, 86, 82, 42,185,112,245, 22, 57,121, +230, 2,249,102,223, 1, 18, 24, 24, 88,101,131, 38,147,201,100,110,250,246,219,111,203, 8, 33,100,228,200,145, 89,120,114, 32, +213, 54,115,230,204,209, 16, 66,200,103,159,125, 86,136,250, 27,194,255,209,215,210, 51,238,238,238,119, 57, 28, 78, 12,128,151, +155,216,238, 5, 22,139,245,163,139,139,203, 53, 0,163,255,130,251, 40, 74,169, 84, 94, 6,208,212, 12, 7, 53,223, 27,245, 47, +185,223,255, 8,205, 1, 44, 22,235, 28,208,248, 36,194,181,202,235, 79,152, 76,230,113, 0, 3,237,204,103,123,133, 66,241,188, + 92, 46,127, 75, 46,151,191,165, 84, 42,159,231,114,185,237, 91,178,239, 78,237, 35,134,123,134,142, 56,220,170,227,176,116,207, + 78, 81,233,222,157, 71, 30,118,106, 31, 49,188,165,154, 94,157, 71, 30,241,236, 20,149,225,217,105,120, 90,155,174, 35, 15, 43, +252, 34,134,252,149,231,232,101,119,184, 13,106, 3, 51, 57,183,128,144,115, 11, 72, 68, 27, 88,123, 56, 32, 48, 12,144, 12,142, +136, 88, 67, 44,150, 53, 99, 70,141, 90,227, 3, 56, 17,128, 89,119,169, 79, 51, 20,144, 62,222,118,228,200, 53,109, 1,197, 32, + 64,216,175, 79,159,213,196, 98, 89, 51,225,133, 23,214,120, 2, 46,245,233, 53,164, 73, 0,166, 59,224, 86, 91, 87, 1,180, 27, +235,141,160, 15,134,123, 19,114,110, 1, 89,252,156, 47,233,172,194,203, 77,104, 54, 20, 41,250, 71, 71,180,236, 69, 84, 93,184, +174,168,126, 21, 61,133,139,240,169,107,118,119,133,111, 68, 59, 42,105,168, 31,171, 8,143,186, 36,139,254,133,133,228, 46,131, +193, 64,170,170,170,136, 86,171, 37, 21, 21, 21,117, 13,212, 99, 67,150,147,147, 67,178,178,178, 72, 70, 70, 6, 73, 75, 75, 35, +248,255,182, 55, 54,231, 83, 42,149,238,120,238,185,231, 44,108, 54,123,211,211,216,119, 71, 71,199, 21,221,186,117, 51,110,216, +176,129, 28, 62,124,152,124,241,197, 23,100,230,204,153, 36, 56, 56, 88,239,224,224, 48,190, 57,154, 46, 46, 46,243,253,252,252, + 10,119,238,220, 73,190,249,230, 27,178,126,253,122,242,209, 71, 31, 89, 60, 60, 60,242, 36, 18,201,224,230,104, 42,149,202,232, +222,189,123, 27,163,163,163,201, 79, 63,253, 68,246,238,221, 75,230,204,153, 67,252,253,253,245, 34,145,232, 89, 27, 53,153, 44, + 22,107,205,180,105,211,242,220,220,220, 98,234,172, 19, 6, 6, 6, 94,155, 48, 97, 66, 14,128,185,255,162,235,147,214,164, 53, +105,205, 63,192,104,189,232, 6,119, 2, 48,133, 28,206, 11,253,250,244, 89,205, 1, 94,176,215, 20,241,153,204,177,189,186,117, + 91,205, 1,198,215,124,151,207,100,142,237,215,167,207,106, 54,147,249, 82, 67,122,141,105, 18,128,201, 97,177,230,246,234,209, + 99, 13, 11,248,176, 38,109, 64, 27,234,206,156,103, 90,145, 62, 94,212,131,151,148, 16,254,139,141,214, 83,135,245, 7, 92,132, +255, 20,205,191,203, 77,237, 83,109,152,142,216, 17,209, 58,130, 71,179,168,251, 52, 51,159,130,167,188,239, 29, 20, 10,197, 9, + 31, 31,159,252,214,173, 91,231,200,229,242,125, 0, 60, 90,168, 25,228,226,226,242,181, 74,165,186,239,234,234, 26,175, 80, 40, +214,225,209,168,243,205,214,100,179,217,221, 84, 42,213,255,188,189,189, 75,188,188,188,212, 10,133,226,219,122, 34, 89,182,104, +186,162,254, 66,133, 83,189,142,126,232,208,154,180, 38,173,249,132,129,137,108,139,149,131,218,192, 60,168, 13, 44,145,222, 88, + 87,219,160, 68, 1,130,230,154,162, 87, 0, 94,221,239, 55,165,215,148, 38, 1,152, 61, 1,113,221,109,134,122, 32,208, 70,205, +127,122, 68,171,166,156,183,111,120,135, 6, 48,255, 1,153,252,167,104,254, 93,120,128, 70, 26, 35,215, 98,197, 83,252, 77,221, + 83,222,135, 91, 5, 5, 5, 67, 10, 10,158,106,223,132,196,188,188,188,151,159,166,160,201,100,186,162, 86,171,251, 63, 5,169, +134,186, 94, 27, 97, 99,183,108, 26, 26,154,255, 14, 20, 96, 65, 50,230, 69,180,199, 70,150, 5,140,147, 41,200,174,211, 37, 79, + 71, 53, 71,243, 17,150, 93,245,148,241, 84,115,243,249,255, 84,252, 78, 35, 11,183,169,255,206,105,203,197,163, 54, 90, 45, 54, + 90, 52, 52, 52, 52, 52, 52, 52,127, 2, 63,223,167,255,136,253, 3,136,193,147,209,183,152, 90, 70,180,193,208,167, 61, 61, 41, +154, 19, 62,253,153,214,164, 53,105, 77, 90,147,214,164, 53,105,205,255,156,102, 13, 13,205,157,122,183,206,231,102,245,226,251, +175, 64,215,179,211,154,180, 38,173, 73,107,210,154,180, 38,173,249,111,167,217,227,104,209,208,208,208,208,208,208,208,208, 52, + 78,131, 81, 55,218,104,209,208,208,208,208,208,208,208,180, 12, 87, 60,154,162, 42, 6,255, 63, 85, 85, 52,208,244, 20, 60, 79, +176,114,229, 74,134,143,143,143,152,203,229, 6, 39, 39, 39, 51,166, 79,159,222,226,142, 4,171,215,109, 98,120,121,121,137, 1, + 4, 23, 22,151, 51, 94,125,237, 61,138, 62, 95, 52, 52, 52, 52, 52, 52, 52,255, 32,134, 85, 27,171,154,215,199, 17, 46,187,140, +214,210,165, 75,145,145,145, 33, 2, 48, 46, 40, 40,136,187,101,203, 22,178,127,255,254, 22, 25,163, 15,231,206, 65,122,122,186, + 8,192, 56,165,194,129,251,229,142, 85,228,192,143,231,159,186,217, 82, 40, 20, 78,127,230,118, 52, 52, 52, 52, 52, 52, 52,255, + 41,166,212,122,157,210, 44,163,197, 98,177,152, 92, 46,183, 45,131,193, 24,194,231,243,187, 2, 64,245,148, 44,205,134,197, 98, + 49,185, 60, 94, 91, 38,147, 57,132,199,123,164,249,220,240,222, 45,213, 28, 40, 18,137, 50,133, 66, 97, 44, 0,129, 68, 34,185, +110, 52, 26,111, 75, 36,146,139,246,232, 72, 36,146,139,213,219, 93, 7, 32, 16, 10,133,177, 34,145, 40,147,197, 98, 13,164,175, + 39, 26, 26, 26, 26, 26, 26,154,106,162,235, 89,126,207,177, 99,199, 26, 52, 56, 92, 46,151, 17, 20, 20,212,219,203,203,235, 66, + 64, 64,128,193,195,195,227,160, 80, 40, 20,181, 48, 99, 12, 31, 95,255,222,110,174,170, 11,157,218,186, 26,148, 74,229, 65, 54, +155,221, 18, 77,166, 68, 34, 89, 31, 25, 25, 89,122,225,194, 5, 34,149, 74,213, 0, 28,156,157,157,115, 8, 33,196,197,197,197, +106,143,152,139,139,139,149, 16, 66,156,157,157,115, 0, 56, 72,165, 82,245,133, 11, 23, 72,100,100,100,169, 68, 34, 89,143,166, + 71,180,165,161,161,161,161,161,161,177,131,198,188,200,223,152,154, 40,150,107,179,119,142,203,229,134, 42, 20,138,132,183,223, +126,219, 18, 29, 29, 77,188,188,188,174, 42,149,202, 30, 10,133,226,137, 6,245,147, 38, 77,178,167,218, 47, 84, 34,149, 37,236, +154,253,140, 69,247,229, 72,226,238,170,188,234,224,224,208, 67, 42,149, 62,161, 57,225,213,169,182,104,186,156, 17,217,210, 0, + 0, 32, 0, 73, 68, 65, 84,201,100,178,248,149, 43, 87, 86,149,148,148, 16, 66, 8,145,201,100,106, 0,114,149, 74,149,147,146, +146, 66, 20, 10, 5,129,237, 81, 60,134, 66,161, 32, 41, 41, 41, 68,165, 82,229, 0,144,203,100, 50, 53, 33,132,148,148,148,144, +149, 43, 87, 86,201,100,178,120, 0,110,244,109, 65, 67, 67, 67, 67, 67,243,159, 54, 90,117, 13,151,109, 85,135, 93,187,118,229, +169, 84,170, 30, 18,137,100,148, 88, 44,222, 60, 98,196,136,160, 49, 99,198, 48,244,122,189, 37, 40, 40,200,205,219,219,123,150, + 92, 46,127,153,207,231,135,112,185,220,151,164, 82,169,235,190,125,251,124, 26,211,236,208,177, 11,207,193, 65,222,131,203,229, +141, 18,139, 37,155,167,141, 29, 16,244,242, 59,207, 50, 56,134, 52,203,128, 16, 79,183,224,182,174,179, 92,228,162,151, 89, 76, + 70, 8, 69, 81, 47,241,249,124,215,111,190,220,238,211,196,142,181,117,115,115,187,190,111,223,190,224,113,227,198,241,146,146, +146, 0, 0, 22,139,133, 11,192,196,100, 50,193,227,241, 96, 52, 26,139, 1,216,122, 2,137,209,104, 44,230,241,120, 96, 50,153, + 0, 96,170,214, 67, 82, 82, 18,198,141, 27,199,219,183,111, 95,176,155,155,219,117, 0,109,233, 91,131,134,134,134,134,134,230, + 63, 75,141,185,138, 65,157,170, 67, 86,141,123,140,138,138,122, 34,106,196,229,114,183,220,187,119,175,151,163,163, 99, 91, 54, +155,109,121,225,133, 23,120, 19, 38, 76, 64,126,126,190,181,162,162,130, 25, 26, 26,170,186,118,237,218, 16,179,217,220,199,193, +193, 65, 91, 82, 82,162,208,235,245, 15, 0,204,106, 36, 35, 91,238,223, 77,232,229, 36,119,108,203,101, 51, 45, 51, 39, 79,224, +125, 56,247, 25, 80,250, 56,171, 69, 83,200,252,164,179,131,106,221,197,202, 33,247,140,150, 62,149, 50,190, 54,175, 84,223,164, +166, 66,161,232,204,225,112, 98, 79,156, 56, 1,161, 80,136,210,210, 82,112,185, 92, 0, 64, 69, 69,133, 12, 0,139,162, 40,112, +185, 92,148,149,149,201,237, 57,106,101,101,101,114, 46,151, 11,138,162, 0,128, 85,173, 7, 46,151,139,210,210, 82,248,248,248, + 80, 39, 78,156, 80, 14, 25, 50,228,161,209,104,236, 82, 80, 80, 16, 71, 95,107, 52, 52, 52, 52, 52, 52,246, 83,159, 23,249, 7, +209,228, 56, 90,253,171, 67,117,181, 39,206,221,237,236,236,236, 34, 22,139, 3,166, 76,153,194, 80, 40, 20,136,141,141,181, 86, + 86, 86, 50,216,108, 54,216,108, 54,115,192,128, 1, 98,179,217, 44, 60,126,252, 56,245,240,225,195,124,147,201,244, 73, 97, 97, +225,181, 70, 50,178,187,157, 3,207, 69,224,192, 13,248,241,189,190, 12,103,159, 66,224,212, 98, 43,169,208, 48, 88, 86, 2,133, +200,202, 92,211,135, 18,231,201,188,133, 51,191,205,167,126,123, 88,146,111, 50,153, 62, 41, 47, 47,111, 76, 51, 27, 0,170,243, + 4,169, 84, 10,139,165,246,252,150, 32, 12, 6, 3, 60, 30,175, 89, 71,142,199,227,129,193, 96, 0,181, 34, 97, 50,153, 12, 76, + 38, 19, 12, 6, 3,108, 54,251,137,124,208,208,208,208,208,208,208, 52,139,250,188,200, 63,133,218,227,104,217, 54, 55,165, 74, +165,162,164, 82,169,107,199,142, 29, 63,142,140,140, 76, 25, 61,122,180,118,195,134, 13,100,237,218,181,100,205,154, 53,100,231, +206,157,150, 95,127,253,213,244,218,107,175, 85,181,111,223,254,193,230,205,155, 3, 0, 96,232,208,161, 13, 86, 71, 58,200, 29, + 41, 49,151,229, 26, 24,208,225,227, 23,251, 7,167, 44, 24,229,171, 53,238, 10, 37,214,133,173,136,101,147, 55,177, 28, 24,104, + 33,247, 86,153,150,191, 62,176,170,181, 87,235, 7, 91,119,126, 23, 0, 0, 17,145, 67, 27,173,226, 84, 40, 20, 93, 61, 60, 60, +212,167, 79,159,182, 22, 23, 23,147,194,194,194,154, 54, 90, 37, 0,100, 94, 94, 94, 57,102,179,153,200,229,242, 34,123,142,154, + 92, 46, 47, 50,155,205,196,203,203, 43,231,145,191,146,149, 16, 66, 72, 97, 97, 33, 41, 46, 46, 38,167, 79,159,182,122,120,120, +168, 21, 10, 69, 87,250,254,160,161,161,161,161,161,249,207, 50,165,206,107,211,244,234,213,139,146, 74,165,140, 14, 29, 58,136, +221,220,220,186,187,185,185, 93, 89,183,110, 29, 89,187,118,173,121,219,182,109,228,235,175,191, 54,191,242,202, 43,101, 34,145, + 40,134,203,229,202, 1,192,219,219,187,209,144, 95,215,238, 61, 40, 1,159,199,240,243, 11, 20, 43,156,156,186, 59, 59, 57, 94, + 49,174, 13, 38,100,177,187,153,236,232, 68,200,129,103,204,171,158, 15, 43, 99,179, 57, 49, 0,228, 0,224,225,230,106,107, 24, +209, 77,169, 84,198, 47, 94,188,184,210,104, 52,146,234, 94,134,106, 0, 14, 94, 94, 94, 57,132, 16,226,225,225,145, 9, 64, 97, +163,158,194,195,195, 35,147, 16, 82, 99,180, 28, 92, 92, 92,212,132, 16, 98, 52, 26,201,226,197,139, 43,149, 74, 37,221, 24,158, +134,134,134,134,134,134,166,193,185, 14, 27,140, 20, 93,184,112,129,148,149,149, 89,179,179,179, 45, 21, 21, 21,210,208,208, 80, + 57,147,201,132, 74,165, 98, 50,153, 76,107,101,101, 37, 83,161, 80,228,176,217,236,111, 12, 6, 67,241,168, 81,163,168,212,212, +212, 70, 27,154, 95,187,124,137,232,170,244,214,172,172, 76,139,182,162, 76,250,114,136,163,156,101, 54,194, 26,218,139, 89, 38, +104,111,181,234,138,153,254,174,188, 28, 14,135,253, 13,128,226,209, 81,195,168,172,156, 92, 91, 27,175,231,104, 52,154,208, 45, + 91,182,236,232,219,183,111,177, 86,171,173,105, 91, 85,119, 8, 6, 7, 27,245,234,126,143, 73, 81, 20,180, 90, 45,250,246,237, + 91,188,101,203,150, 29, 26,141, 38, 20, 64, 14,125,125,209,208,208,208,208,208,252,167,105,112, 28,173, 38,135, 58,208,106,181, +114, 14,135, 19, 17, 22, 22,214,186,178,178,210,186,116,233,210,204, 13, 27, 54,236,121,240,224,129,201,193,193,161,173, 64, 32, +120,107,220,184,113,138,195,135, 15,147, 62,125,250,212,141, 62,213, 59,187,183, 78, 87, 33,231,113,216, 17,111,117,147,180,206, + 52,202,173, 1,111, 93,205,236,183,240,226,158, 31, 18, 89,166, 14,142,186,182,142, 92,234,173,113,227,158, 87,252,112, 44,134, +244,232,209,221, 38,205,106, 44, 26,141,230,173,216,216,216,231,219,180,105,147,101, 50,153,178, 0, 20,234,116, 58,181,155,155, +155,198,104, 52,102, 1, 48,214,179, 93,125,154, 70,163,209,152,229,230,230,166,209,233,116,106, 0,133, 38,147, 41,171, 77,155, + 54, 89,177,177,177,207,107, 52,154,183, 0, 88, 26,201, 11, 61,171, 59,173, 73,107,210,154,180, 38,173, 73,107,254,119,248, 93, + 52, 11,176, 97, 82,105, 30,143,215,215,211,211,179,119, 98, 98,162,229,210,165, 75,165, 12, 6, 99,235,208,161, 67, 15, 30, 58, +116,168,155,163,163,163,178, 85,171, 86,170, 95,126,249, 37, 28,192,254,223,126,251,205,166,232,147,128,199,233,219,201, 67,214, + 59,250, 38,177,124, 25,123,191,212,194,228,109, 29,240,236,179, 7,223,220,179,183,155,155, 66,162,236,228, 42, 85, 29, 63,126, + 50, 28,192,254, 75,151, 46,219, 61,158,134,217,108,254, 69,163,209,180,170,249,156,159,159, 31,170, 80, 40, 2,240, 40,250, 84, +106,163, 76,186,213,106, 29,106,181, 90,221, 10, 10, 10,238, 0, 64, 65, 65, 65, 23,250, 58,162,161,161,161,161,161,161,169,199, +100, 69,215,247,185,209,136, 22,151,203,117,103, 50,153,129, 89, 89, 89,233,199,143, 31, 79,236,218,181,235,144,244,244,244,149, +132,144, 52,161, 80, 56, 37, 51, 51,243,126,102,102,166, 65,167,211, 77,179, 35, 51,238, 96,112, 2, 99,115,116,233,159,254,114, + 59,177, 67,143,193, 67,242,242,114, 86, 90, 8, 73,227, 10,165, 83,238,101,228,223,191,172,209, 27,170,170,236,210,108,146,130, +130,130, 59, 5, 5, 5,165,118,110, 83, 90, 99,178,104,104,104,104,104,104,104,104,236,165,169,136,150,209, 98,177,172,210,235, +245,242, 31,126,248, 33, 59, 50, 50, 82, 15, 0, 91,182,108,177, 78,158, 60,249,124,114,114,242,192, 59,119,238, 12,113,113,113, + 57, 3,128, 74, 73, 73,177, 37,250,100,180, 90, 45,171, 12, 6,189,252,151, 95,227,178,251,246,238,160, 7,128,109,159,111,180, +190, 48,101,246,249,228,164,196,129,247, 18,174, 15,113,113,113, 57, 99, 49,179,168,220,188, 52, 66,159, 38, 26, 26, 26, 26, 26, + 26,154,191, 49,209,120,178,202, 48,218, 38,163,101, 48, 24,242, 13, 6, 3, 0, 20, 71, 70, 70, 62,177,110,231,206,157, 4, 64, + 37,128, 3,133,133,133,246,100, 38, 95,167,211, 1, 64,113,223,222, 29,158, 88,241,109,244,134,199,154, 21,229,101,244,105,163, +161,161,161,161,161,161,249, 39,153,173,223,193,160,143, 11, 13, 13, 13, 13, 13, 13, 13, 77,139,152,210,208,103, 10, 13,247, 28, +248,217,142, 31,104, 78,239,131,159,105, 77, 90,147,214,164, 53,105, 77, 90,147,214,252,207,105, 54,165,253, 51,254,121, 52,216, + 24,254,143,134,238,250, 74,107,210,154,180, 38,173, 73,107,210,154,180,230,191, 29, 87, 60, 57,188,131,107,205, 10, 22,125,108, +104,104,254,217,144, 3, 96,162,216,207, 27,132,184,129,201,205, 69,238,173,100,234, 99, 88, 91,172,169, 14,244,130,192,164,130, +153,159, 15,117,124, 74, 75, 53,105,104,104,254,125,184,244,156, 62,154, 98, 48,183, 82,196, 10,157, 58,137,199,209,165, 9, 53, +185,233,255, 69,111,145,139, 6, 34, 88,180,209,162,161,249,167,147,239,239, 11, 22, 86,128, 1, 87, 16,227, 67, 56, 7,174, 0, +110, 39,180, 88,147, 99, 93, 10, 11,195, 3,196,120, 15, 74,191,149,192,221,219,244,193,254,247, 49,107,230, 27,228, 78,194, 21, +100,100,228,160,109, 59, 87,248,250,247,196,134,141,155, 41,250,200,208,216,246,175,140,138,142, 24, 62,193, 81, 32,148, 0, 0, +172,102, 19,118,190,211,233, 39,179,217,188, 27,192, 97, 0,186,255,250, 33,250,211, 27,195,179,217,108, 53, 0, 43,159,207, 63, +132, 90,161, 53, 26,154, 63, 0,215,234,235,204, 90,125,221,217,131,152,197, 98, 45, 20, 10,133,191,242,120, 60, 13,143,199,211, +136, 68,162, 95, 89, 44,214, 66, 0,226,191, 77, 25,247,117,176, 16, 12,203, 16,131,201,234,126,242, 86,137, 82,171,183,248,130, + 97, 30, 74,118,182, 23,183, 72,147, 69, 69, 86, 25,173,158,223, 92,213,170, 42, 13,230, 0, 16,180, 72,179, 22, 14, 28, 14,231, + 36,108,159,115,148,230, 15, 38, 61, 37, 1,199,143,173,193,210, 37, 19,241, 85,244, 52,220,189,115,185, 69,122, 1, 64,151, 46, + 44,214,187,254,192, 0, 60,106, 7, 76,243,111,134, 34, 83,126,254,241,155,252, 31,247,125,158,255,221,154,105,228,200,138, 40, +108,220,184, 49, 98,226,196,137,223,120,122,122,230, 3,120,142, 54, 90,127, 50, 38,147, 73, 89, 80, 80, 64,237,222,189,123,132, + 76, 38,123,200, 98,177, 62, 0,192,249,175, 28,112,177, 88,124, 81, 42,149,170,101, 50,153, 90, 42,149, 94,111, 42,253, 95,138, +175,179,179,115,186,163,163,227,189,218,137,206, 33,163,123,250,244,122,121,145, 83,224,200,126, 45,212,231,176, 88,172, 15,100, + 50,217,195,221,187,119,143,200,206,206,166, 76, 38,147,210,142,237,251,202,229,242, 59, 87,174, 92, 89, 80, 80, 80,208, 47,243, +242, 78,231,188, 43,219,157,211,255,183,166,127,236,241, 77, 11, 28, 28,100,183, 1,244,253, 91, 28,201, 42,171, 10, 12,102,120, + 98,174, 86,152, 91,102, 82,197,165,105, 37, 0,179, 63, 12, 45,248, 19, 83,106, 85, 1,100,192,205, 44,157,232, 98,145,179,234, +183,100,189, 20, 12, 70, 56,170, 40,151, 22, 23, 56, 12,198, 27, 86,171,117, 16,135,195,121,139,126, 66,253, 61,224,241, 56, 0, + 33, 16,139,248, 0, 8, 24, 45,180, 70, 92, 6,163,215,197, 17, 35,150,206, 13, 9,153,229, 15, 12,111,192,108, 81, 0,222,244, +247,247, 63, 1,224,133,167,184, 59,159,250,249,249,101, 3,152,253,180,202,165,206,157, 59,247, 12, 15, 15, 95,212,169, 83,167, +126, 79, 75,243,223, 68,222,197, 45, 63,228,158,223,164,204,185,176, 89, 89,146,114,238, 77, 87,149,220,154,146,146,130, 97,195, +134,225,243,207, 63, 23, 6, 5, 5,237, 1,224,246, 31,184,149, 66,107,254,224,163, 78, 27, 45,155,141,214, 88,111,244, 26,223, + 6,103,159,247, 70,249,184, 54,168,120,169, 13,206, 63,235,141, 1,205,201,141,147,147, 19,250,246,237,203,204,206,206, 22,204, +153, 51,103, 17,159,207, 79, 5, 48,184, 57, 90, 2,129, 32, 86, 40, 20,102,178, 88,172, 39,242, 34, 20, 10, 99, 69, 34, 81, 38, +139,197, 26, 88, 59, 93, 34,145, 92,148, 74,165,106,137, 68,114,189, 1, 35, 20, 43,149, 74,213, 98,177, 56,182,118, 58,139,197, + 26, 40, 22,139,179, 36, 18, 73,221,244, 1, 18,137, 36,179,110,122, 67,176,217,108,143,204,204, 76,101, 86, 86,150,146,203,229, +170,106,167,103,100,100, 40, 51, 51, 51,159, 72,183, 7, 22,139, 53, 64, 36, 18,101, 10,133,194,216,250,210,235,238, 83, 67,212, + 58,118, 3,108, 73,183,183,224,137,140,140, 60,159,155,155,235,233,224,224,240,196,196,221,142, 50,135,193, 95,239,220,252,206, +200,161,145,111, 56, 7,140,234,208, 76,253,193,124, 62, 63,117,206,156, 57,139,178,179,179, 5, 61,122,244, 96, 50, 24,118,253, +159,136, 24, 57,114,228, 17,181, 90,237,222,177, 99, 71,166,217,108, 70,226,209,133, 16,198,191, 5,126,234, 54,180, 18,228,179, + 30,254,180,210, 35,178,127,151, 35,248,139, 27,131,146, 3, 1, 28, 80,214,190, 86, 66,156,239,100, 87, 57, 15, 27,241, 28,235, + 70,166,206,217,100,177, 56, 2,204,254,228, 43, 47, 94,179, 52, 89,166, 62, 86, 66, 84,191,164,177,157,195,159,159,197, 60,147, +198,114, 54, 89, 44, 78, 96,160, 95,115, 52,107, 95,254, 76, 38,243,157, 53,107,214, 48, 0,204, 4,192,253, 47, 25,154, 48, 55, +184, 15,104,199,188, 26,234,138, 94, 79, 81, 54,168,250,126,247,109,169,208,142,175, 78, 96,242,212,104,180,247,239,222, 34, 29, +131,213,122,247,219,148,148, 83, 47,181,107, 23, 53, 55, 36,100, 82, 61,102,139, 2, 48,119,229,202,149, 47, 39, 38, 38, 58,183, +105,211,102,234, 83,250,211,191,126,229,202,149,239, 39, 38, 38,186,121,123,123, 47,182, 83,179,193,114, 73, 46,151, 15,222,177, + 99,199, 59,195,134, 13,123,163,115,231,206, 29,158,134,230,191,152,207,111,222,188,233,185,102,205,154,121,147, 39, 79, 46, 3, +128,129, 3, 7,114, 0,244,104,113,121, 71, 8,151, 16, 18, 78, 8, 25, 70, 8, 25, 72, 8, 9,171,126,223,181,122, 25, 70, 8, +137,168,243,218,181,122,219,154,245,221, 26,208, 24, 86,119,187, 90,219,212,253,252,196,251,122,140,214, 48, 60,106,171, 53,236, +137, 29, 56,118,236, 24,169,253, 90,151,113,222,248,120, 86, 79,119,237,157, 31,247,146,138,204, 20, 82,156,116,131,220,136, 94, + 78,102,117,117,214,190,216, 6,159,218,127,188, 8,185,112,225, 2, 73, 76, 76, 36, 21, 21, 21,228,254,253,251,164, 91,183,110, + 58,161, 80,248, 11, 0,111,123,196, 36, 18,137,250,151, 95,126, 33,145,145,145,165, 98,177,120,117,205,205, 37,149, 74,213, 23, + 46, 92, 32,145,145,145,165, 18,137,100, 61, 0, 38, 0, 60,251,236,179, 26, 66, 8,113,118,118,206,169, 79,111,228,200,145,197, +132, 16, 34,147,201,106,170,154,152, 18,137,100,253,140, 25, 51, 42,174, 93,187, 70,228,114,121, 77, 58, 67, 42,149,174,158, 57, +115,102, 69, 92, 92, 92,237,244, 70,113,116,116,204,180, 88, 44,228,199, 31,127, 36, 74,165, 50,167,214,205,156,105,177, 88,200, +145, 35, 71, 26,204, 91, 99,129, 2,177, 88,188,234,165,151, 94, 42, 79, 75, 75, 35, 78, 78, 78,234, 90,233,171, 39, 78,156, 88, +158,145,145, 65, 20, 10,133, 77,121,116,114,114, 82, 95,188,120,145,140, 25, 51,166,172,246, 49,117,114,114, 82, 95,186,116,169, + 38,125,149, 45, 5,153,155,155,219, 84,165, 82,153,163, 84, 42,115, 28, 28, 28,150,185,186,186,230,229,231,231, 19, 66, 8,105, +219,182,173,166,118, 36, 75, 25, 52,226,237,109, 7, 46, 93, 57,151, 80,152, 31, 50,232,141, 85,178,144,145, 50, 59,142,129,183, + 80, 40,252,165, 95,191,126,186,204,204, 76, 82, 89, 89, 73,226,227,227,201,133, 11, 23,200,131, 7, 15, 8, 0, 91,102, 24,144, +136,197,226,108,189, 94,111,213,235,245,214,252,252,124,139, 70,163,177, 36,173,118, 37,228, 75,246,227,165,228,200,112,146,119, +110,133, 85, 42, 22,102, 1,144,252,101, 70,107,115,160, 7,217,238,247,237,237,133,158, 73,231, 86, 62, 99, 34,105,103,200,222, + 73,206,166,179,111,187, 63, 36, 91,253,191, 39,219, 3, 90, 53, 75,115,107,192,222,248,143, 60,239,110, 90,252,166, 41, 61, 61, +157,188, 59,241, 25,243,233, 89,238,201,100,155,255,129,230,104,214, 98,252,232,209,163, 43, 50, 50, 50, 72, 96, 96, 96, 37,147, +201,156,252, 95, 50, 89, 17,190,220,236,248,111,222,181, 14, 15, 18, 22, 62, 37,179, 21,164, 84, 42, 11,118,237,218, 69, 36, 18, +137,166,185,102,107,236,168,254, 68, 87,250, 11, 25, 21, 21,214,232, 61,242,252,243,207,147,240,240,112, 50,107,214,172,166,238, + 37,202, 31, 24,177, 59, 36,228,136,117,236, 88,203,238,144,144, 35,254,192,136,106,131, 69, 1,152,247,217,103,159,197,153, 76, +166,184,175,190,250, 42,110,196,136, 17,113, 0,222,109,225,177,216,240,233,167,159, 18,147,201, 68,190,250,234, 43, 50, 98,196, + 8, 2, 96, 99, 75,202,165,154, 72, 86,104,104,232,219,135, 15, 31,190,114,247,238,221,252,168,168,168, 85, 33, 33, 33,178,230, +106,254, 29, 17,139,197, 62, 29, 58,116,216, 19, 24, 24,152,209,177, 99, 71, 67, 64, 64, 64,149,175,175,111, 90, 80, 80,208, 46, + 30,143,231,221, 76,217,238,189,122,245,178,156, 61,123,150,140, 30, 61,154,212, 50, 33,141,210,152, 23, 33,132,132,205,155, 55, +239, 3, 0,100,222,188,121, 31, 16, 66,134, 85,251,137, 97,181,223,215,125,173, 49, 79, 53,159,235,211,168, 89,234,211,172,239, + 55,234,252, 14, 26,136,100, 77,249,221,206, 29, 59,118,172,223,177, 99,199,206,214,221,185,231,218,160,231,172,158,238, 58, 93, +126, 46, 73, 88,254, 22,249, 53,220,131, 92,232,239, 66,238,189, 51,154,228,126,179,158, 76,239, 36,215,142,109,131,112,123,141, + 86, 92, 92, 28,137,139,139, 35,215,175, 95, 39,169,169,169,164,180,180,148,124,247,221,119, 22, 39, 39, 39, 29,143,199, 91, 9, + 64, 96,139,152, 84, 42, 85, 19, 66,136, 94,175, 39,203,150, 45,171,170,142, 84,169,100, 50,153,154, 16, 66, 74, 74, 74,200,202, +149, 43,171,100, 50, 89, 60, 0, 55,133, 66,145,153,146,146, 66, 84, 42, 85,189,102, 70, 46,151,171,239,222,189, 91, 99,156,220, +229,114,121,194,209,163, 71,141,132, 16,146,149,149, 69, 28, 29, 29,213, 0, 84, 78, 78, 78, 55,142, 29, 59,102, 36,132,144,156, +156,156,154,116,155,140,150, 78,167, 35,167, 79,159,126, 34, 15, 53,233, 39, 78,156,120,194,128,217,128, 74, 38,147,197,125,247, +221,119, 6,139,197, 66, 18, 18, 18,106, 76,162,202,193,193,225,250,129, 3, 7, 12, 22,139,133, 36, 37, 37,217,108, 6, 91,183, +110,173, 33,132, 16,179,217, 76,182,109,219,166,175, 57,166, 53,233, 6,131,129,108,217,178, 69, 47,149, 74,227, 0, 52, 26,125, + 83, 40, 20, 57, 6,131,129,148,148,148,144,110,221,186, 85, 92,184,112,129,148,149,149, 17, 66, 8,105,221,186,181, 6, 0,252, +250, 77,254,228,202,253,138,178, 87,223,223,188,223, 59,236,197,229,167,174,102,103,237, 56, 28, 27,167, 8, 26,249,140, 45, 65, + 77, 30,143,183,210,213,213,181,234,183,223,126,179, 24,141, 70,146,145,145, 65,174, 95,191,254,248, 26,187,117,235,150, 77, 70, +139,197, 98, 45,188,114,229,138,209, 98,177, 88, 11, 10, 10, 44, 26,141,198,162,209,104,204,117,141, 22,249,146, 77, 10, 78,188, + 78, 98,162,103, 27, 56, 28,206,194,191, 38,154, 5, 38,217,238, 55,146,108,247,139,219,245,146,162,160,252,250, 62, 66,126,154, + 77,146, 63,105, 67, 22, 62, 35, 41,183,110,247,139, 35,219,253,199,146,143,251,177,236,210,140, 14, 24, 78,182,251,197,125,250, +156, 87,225,141,184,107,228,236,217,179,100,203,250,207,200,172, 8,247, 74,235,118,191, 56,178, 53, 96,140, 61,154,181,225,241, +120,247,207,159, 63, 79,206,157, 59, 71, 22, 47, 94, 76,132, 66, 97,198,211,136,234,145,173,190, 94,228, 11,223,126,100,103,123, + 87,242,191,126,127,187, 14, 62, 97,110,112, 31,228,203,205, 42,184,113,152,144,162, 7, 36,111,117, 32,121,198,143,221, 82,179, + 21,164, 84, 42,243,211,210,210, 72, 94, 94, 30, 89,187,118, 45,145, 74,165,205, 50, 91, 99, 71,245, 39,186,146,159, 27, 53, 90, + 35, 71,142, 36,235,214,173, 35, 38,147,137,116,239,222,221,150, 63, 45,191, 51, 91,126,192, 72, 0, 31,172, 90,181,234,177,201, +218,188,121,115,220,173, 91,183,226, 60, 61, 61,143,183,224, 88,108, 92,181,106,213, 99,147,181,121,243,102,114,235,214, 45,226, +229,229,149,217,146,114,105,208,160, 65,159,164,166,166,150,205,159, 63,127,127,223,190,125,151,223,184,113, 35, 43, 38, 38, 38, + 46, 52, 52,244,153,230,106, 62,133,168, 14,171, 58,178,195, 37,132,176, 9, 33, 53,230,149, 5,128, 93, 19, 80,176,133,151, 94, +122, 73,216,179,103,207,184, 9, 19, 38,104,119,237,218, 69,210,210,210, 72,124,124, 60, 89,181,106, 21, 89,180,104, 17,249,242, +203, 47,201,152, 49, 99, 42,187,117,235,118,101,236,216,177,124, 59,178, 25,232,237,237, 93,122,228,200, 17,178,119,239, 94,194, +225,112, 98,108,221,176, 49, 47,210,144,153,106,200, 96,213, 93,215,136, 17,107,212,176,217,240,123,191, 55, 85,117, 35, 33,181, +222,255, 47, 42, 42,170,223,239, 30, 62, 4, 75,166,204,249,132,159,186,107, 45,212,223,125, 14,102,137, 26,236,242, 66,232,207, +199,192,116,254, 40, 94,238,209, 67, 32,160,168,165,246, 94, 48, 92, 46, 23, 92, 46, 23, 28, 14, 7, 90,173, 22, 57, 57, 57,232, +221,187, 55,227,250,245,235,252,169, 83,167,206, 22, 8, 4, 25, 0, 70, 53,121, 55, 83,143, 34,210, 23, 47, 94,196,235,175,191, +206,219,179,103, 79, 71,103,103,231,155, 22,139,133, 11, 0, 73, 73, 73, 24, 55,110, 28,111,223,190,125,193,110,110,110,215,141, + 70,163,144,199,227,129,201,100, 54,168,199,229,114, 97, 50,153,120,237,219,183,143,191,121,243,102, 80, 84, 84, 20, 59, 61, 61, + 29, 41, 41, 41, 48,153, 76, 92, 95, 95,223, 91,215,175, 95,239, 56,108,216, 48,118,102,102, 38,210,211,211, 31,231,195,150,252, + 26, 12, 6,240,120, 60,212,174,210,162, 40, 10,122,189, 30, 92, 46,215,102, 45, 22,139, 53,192,223,223,255,214,205,155, 55, 67, + 71,142, 28,201,185,118,237, 26,178,178,178, 96,177, 88,184, 1, 1, 1,183,110,222,188,217,105,196,136, 17,156,248,248,120,168, +213,106,216, 90,133, 86,243,189,155, 55,111, 98,194,132, 9,220,147, 39, 79,118,114,117,117,141, 55,155,205, 92, 0,184,117,235, + 22,198,141, 27,199, 61,117,234, 84,104,171, 86,173,226,155,168, 74,100, 2,128,201,100,194,212,169, 83, 69, 82,169, 20,153,153, +153,176, 90,173,176, 88, 44, 0,128,194,226,194, 91, 55,111, 37, 36,189, 60,254,185,126, 58,163, 94,127,233,106,236,157,182,173, +189, 60, 40,138,180,110, 34,171,163, 68, 34, 81,198,234,213,171,223, 78, 75, 75,227,249,251,251, 51,146,147,147, 81, 94, 94, 14, + 14,135,243,248, 26,179,117,191,185, 92,110,255,192,192, 64, 86, 85, 85, 21,172, 86, 43, 0, 16, 6,163,254, 22, 43,252,146,243, + 8, 80,153,217, 2,129,160,255, 95,242,244, 46, 11,116,130, 21,131,210,243, 13, 60,158,131,135, 68,236,234, 11,100,156, 67, 27, +103, 30,152, 12, 38,255, 90,138, 86, 4,144, 65,240, 44,112,178, 79,211, 58, 40, 69, 99,224,153, 28,131,197,110, 30,158, 40, 44, + 44, 68,171,182,254,168,226, 58,115, 47, 62,168, 20,131,178, 83,243,255,233,211,190,125,123, 23, 31, 31, 31, 20, 20, 20, 32, 52, + 52, 20,114,185, 92, 14, 96, 80,179, 31, 58, 95,121,241, 80,134, 94, 0, 99, 53, 44,212, 98,152, 88, 43,240, 32, 63,148,108, 15, +101,255,157, 76,150, 84,204,189,188,239,219,239,220,157, 60, 3,128,152, 87,161,114,224, 97,231, 27,161,142,206, 50,222,145,102, +154,173, 32,149, 74,117,230,202,149, 43, 10, 62,159,143,235,215,175, 35, 48, 48, 16,107,215,174,117,150,203,229,231,154, 23,217, + 34, 32, 84,195, 38,171,111,223,190,152, 57,115, 38,246,236,217, 3, 71, 71, 71, 76,152, 48,161, 41,179, 69,146,128, 31, 63,141, +143,255,106,207,195,135,199, 94,106,215, 46,106,130,175,239,178,105, 47,188, 48,249,205, 55,223,196,103,159,125,134, 35, 71,142, +160, 87,175, 94,152, 50,101,138, 41, 35, 35, 99,119,115,171,170, 86,175, 94, 61,107,246,236,217,117, 53,141,233,233,233,159,182, +168, 92, 42, 44,188, 21, 31, 31,159, 52,126,252,248,126, 85, 85, 85,250,171, 87,175,222,241,246,246,246, 0,208,186,185,154, 45, + 48, 88, 20, 33,132, 15, 64, 88,189,136, 0, 8,247,237,219, 39, 27, 57,114,164,180, 58, 77, 80,189, 52, 89,189, 31, 24, 24,232, +113,255,254,253,236,119,222,121, 39,116,207,158, 61, 2,161, 80,136,146,146, 18,124,241,197, 23,248,224,131, 15, 64, 81, 20, 8, + 33,248,242,203, 47,133,147, 38, 77, 10,123,248,240, 97,182,151,151,151, 45, 77, 90,120, 98,177,248,192,178,101,203,164, 86,171, + 21,115,231,206, 45, 48, 26,141, 51,171,215,205,119,112,112,184,140, 71,134,187, 49,234,245, 34,181,158,149,199,234, 28,155,168, +186,105,117,215, 17, 66,162, 26,211,176,243, 92,212,247,123, 49,141,153,173,218, 79,160,254,245,186, 72, 32,196,197,219, 15,165, + 63, 29,128,128, 69, 65,192,172, 94, 88, 20, 24,201,183,208,138,207,134,137,144,160,230, 26,173,154,133,205,102, 67,171,213,194, + 98,177,224,131, 15, 62,224,157, 62,125,218,137,193, 96,124,223,148, 78,109,195,116,239,222, 61, 4, 4, 4, 80, 63,254,248,163, +106,230,204,153,130,154,223, 41, 45, 45,133,143,143, 15,117,226,196, 9,229, 71, 31,125, 36,110,204,204, 80, 20, 5, 14,135,131, +217,179,103, 11,174, 94,189,234,232,230,230,134,228,228,100, 20, 21, 21, 65, 44, 22, 99,246,236,217,130, 43, 87,174, 56,187,185, +185, 33, 45, 45, 13,165,165,165, 16,139,197,118, 27, 45, 14,135,243,196, 54, 20, 69,193,104, 52,218,101, 12,100, 50,217,222,184, +184, 56,103,153, 76,134,248,248,120,152,205,102,200,100, 50,204,154, 53, 75, 16, 23, 23,231,236,224,224,128,164,164, 36, 16, 66, + 32,149, 74,237,202, 35, 0, 88,173, 86, 36, 37, 37,161,117,235,214, 56,119,238,156,114,218,180,105,252,154,244, 7, 15, 30,192, +195,195, 3,231,206,157, 83,138, 68,162,189, 13,105, 89,173, 86,228,230,230, 34, 49, 49, 17,201,201,201,200,207,207, 71, 65, 65, + 1,202,203,203, 97, 54,155, 1, 0,194,242,178,152,125,251,127,188, 41, 16, 8,132,129,190,237, 61,111, 37,220,214, 8, 4, 2, +161,151,167,167, 47,240, 49,163, 17, 67,248,125,122,122,186,211,164, 73,147, 56,121,121,121, 40, 46, 46, 6,139,197,250,221,181, +197,229,218,214, 20,200,108, 54, 7,240,249,124,202,104, 52, 62,142,128,113,185, 92,188,189, 87,139,192,133,120, 98,121, 97,189, + 6,196, 98,130,193, 96, 8,248,211,163, 89, 0, 5,202,208, 30, 20, 21,122, 57,185,210,177, 79,212,120, 14, 82, 78, 2, 86, 19, +192, 96,161,127,136, 7,235,200,173, 74, 21, 8, 66,160,135, 63, 33, 77,247,252, 34, 0, 5, 24,125, 0,170,203,233,251,102,167, + 94,163,223,224,100,103,103,131,195,225,128,199,227, 33,116,192,179,172,125, 55, 77, 46,160,208, 17, 70,248,217,162,249, 68,216, + 81, 32, 88,176,104,209, 34, 81,109,205,201,147, 39,139,100, 50,217,162,102,155,172, 74, 97, 15,152,201,236,196,108,109,235,101, + 49,121, 1, 15, 53, 58, 63, 16,242, 14, 96,234,244, 20,204, 86,127, 30,143,151, 2,160,119,139, 76,150,132,123,233,219,111,191, +115,119,108,245,200,100,193, 92, 5,176, 5,112,113,118,192,206,183,195, 29,157, 29, 4,246,154,173, 32,149, 74,245,203,229,203, +151, 21,124, 62, 31,113,113,113,224,112, 56,224,243,249,232,208,161, 3,182,111,223,238,236,232,232,104,183,217, 34, 32,245,198, +124, 71,141, 26, 69,250,246,237,139, 25, 51,102, 96,247,238,221, 48, 24, 12, 88,182,108, 25,210,211,211,109,146, 77, 2,126, 92, + 25, 31,191,107, 69, 98,226,189,121, 65, 65,254,163, 68, 34,199, 25, 19, 38,200, 62,250,232,163, 99, 71,143, 30,253,106,216,176, + 97, 5, 87,175, 94, 93, 7,224,128,157,135,151, 2,176,121,205,154, 53, 51,106,140,219, 71, 31,125,244,229,209,163, 71, 87, 12, + 27, 54, 44,247,234,213,171,239, 0,216,220,146,114,201,106,181,198,124,255,253,247, 55, 5, 2,129,208,207,207,207, 51, 33, 33, + 65, 35, 16, 8,132,158,158,158,190,253,250,245, 99, 52, 71,179, 57, 40,149,202,129,151, 47, 95, 14,196,163, 78, 99,188, 26,163, +149,144,144,224, 80, 86, 86,230, 32, 22,139, 29, 92, 93, 93, 37, 53,102,107,244,232,209, 14, 44, 22,171,209,235,182,162,162,226, +232,252,249,243,101,163, 71,143,174,249,140,243,231,207, 99,247,238,221, 16,137, 68, 79,124,119,196,136, 17,120,253,245,215,229, + 6,131,225,123, 27,178, 59,113,234,212,169,126, 42,149, 10, 11, 22, 44,208,103,103,103, 15, 4,144, 14, 64, 22, 17, 17,241, 73, + 66, 66, 66,183,176,176,176,253, 0, 58, 55,118,239,213,231, 69,106, 27, 29, 91,210,154,251,125, 91,205, 86,157,164, 6,199,208, +122,194,104, 69, 69, 69,157, 69, 3, 61,169,140, 69,106,240, 96,129,128, 73, 65,200,172,101,182, 96, 5,171, 84, 3,170, 25,189, + 84,234,123, 24,114,185, 92, 48,153, 76, 24, 12, 6,216, 58, 81,117,141, 41,144, 74,165, 16,139,197,208,233,116, 48,155,205,224, +243,249, 53,102, 4, 82,169, 20,108, 54, 27,108, 54, 27,124, 62,255,119,209,164,186,209, 28, 14,135, 3,145, 72,132,220,220, 92, +164,167,167,195,106,181, 66, 44, 22, 67, 36, 18,129,203,229, 34, 39, 39, 7, 57, 57, 57, 32,132, 64, 36, 18, 65, 36, 18,193,158, + 6,215, 22,139,165,222,135,191,201,100,178, 43,162,101, 54,155,113,231,206, 29,100,100,100,128,207,231, 63,222, 87, 30,143,135, + 7, 15, 30, 32, 47, 47, 15, 66,161, 16, 82,169, 20, 50,153,204,102,221,154,125,145, 72, 36, 16, 8, 4, 40, 46, 46,134, 86,171, +125,124, 76,165, 82, 41, 68, 34, 17, 74, 75, 75,161,209,104, 26,221,119,139,197,130,156,156, 28,228,231,231, 35, 51, 51, 19, 5, + 5, 5,143, 11,160,234,168, 81,203, 2, 59,101,101, 40, 44, 44,124, 28,137,108,104,177, 5,171,213,138,242,242,114, 92,190,124, +153,178, 90,173, 40, 41, 41,177,230,231,229, 89,166,231,112,113,228,227,173,228,187,147, 55,170,246, 29,143,211, 29,250, 37, 81, +183,249,208, 45, 29,191,219, 98, 51,254, 10,182, 4,201, 96, 98, 71, 22, 84,152,120,249, 70,142, 76, 21, 20, 1,164,156, 0, 24, + 44,128, 47, 71,247,224, 54, 72, 47,182,136,238,170, 13,124, 80, 24,140,205,190,114,155, 52, 45,236, 65,249,229, 38, 94,154,209, + 89, 26, 16,210, 25,106,181, 26, 60, 30, 15, 60, 30, 15, 93,122, 69, 32,165,208, 34,188,157,173, 19,130, 32,210, 38,205,255,167, +173, 88, 44,238,209,187,119,111,170,182,230,208,161, 67, 65, 81, 84, 7, 0,254,118, 21,114, 27,219,114, 97, 20,118, 7,139,204, +190,157,171,117, 59,146, 80,229, 59,124,212,179,142, 27,126,214, 4,220,201,211,123,131,152,230,128, 24, 59,183,192,108,245,147, + 72, 36,199, 54,109,218,228,205,231,243, 79, 0,232,211, 28, 17,177,128,185,109,193,140,241,238,242, 26,147,101,210, 2, 44, 1, +192, 22, 0, 44, 1, 92,148, 10, 44,125,125,144,163,144,207, 62,100,135, 97,221,183,121,243,102,231,186, 38,171,102, 9, 13, 13, +197,194,133, 11,157, 29, 29, 29,247,218,162,183,122,213,103,164,164,180, 20, 32, 64, 89, 89, 5, 86,175,250,172,184,102,221,232, +209,163, 73,159, 62,125, 48, 99,198, 12,172, 88,177, 2,199,143, 31, 71,247,238,221, 49,101,202, 20,132,133,133, 53, 37, 29, 41, +147,201,246, 68, 68, 68, 92,206,145, 72, 94,207,237,220,153,251,139, 76, 86, 58,176,180, 84,230,149,144, 96,244, 3,110, 1,216, +146,149,149,245,140, 29, 38,235, 5,169, 84, 26, 55,112,224, 64,163, 68, 34,201, 88,187,118,237,244,153, 51,103,226,179,207, 62, +195,252,249,243,191, 0,240, 26,128, 15,179,178,178,220, 26, 51, 89,127, 84,185,244, 71,149,117, 22,139, 37,243,192,129, 3, 97, + 70,163,209,163,186,122,144, 87, 82, 82, 34, 45, 42, 42,146, 24,141, 70,145,213,106, 21, 57, 56, 56,136, 1, 8, 95,126,249,101, +214,237,219,183, 3,204,102,115,118, 99,154,121,121,121, 47,206,157, 59,183,160,160,160, 0, 0,208,161, 67, 7,148,148,148,224, +221,119,223,197, 91,111, 61,234, 16,220,169, 83, 39, 16, 66,160, 86,171,177,122,245,106,117, 94, 94,222, 43, 54,100,183, 93,251, +246,237,145,144,144,128, 59,119,238,252, 12,192,138, 71,237, 88, 75,111,220,184,113, 51, 63, 63, 31,123,247,238,229,184,187,187, + 31, 69, 3, 67,188, 52,230, 69,154, 3, 69, 81, 49,205,217,174, 38,114, 85, 95, 68,172, 1, 26,143,104, 69, 69, 69, 81,181, 95, +159,136, 24, 81,136,207,136, 61, 7,199,160,206, 79, 68,179,132, 76, 10, 2,169, 12, 41,153,233,224,128, 74,124, 90, 70,171,184, +184, 24,211,167, 79,215,189,248,226,139,133, 86,171,245, 89, 91, 77,129, 76, 38,131, 76, 38,195,237,219,183,201,152, 49, 99,212, +107,215,174,213,213, 54, 90,247,238,221, 35,145,145,145,154, 69,139, 22, 85, 52,102,180,106, 34, 90, 43, 87,174,212,245,239,223, + 63, 63, 49, 49,145,212,152, 41,177, 88,140,213,171, 87,235,194,195,195,213,215,174, 93, 35, 53,105,246, 68,180, 24, 12,198, 99, +163, 85,123, 27, 6,131, 1,171,213,106,151,209,170,172,172,124,113,216,176, 97,234,164,164, 36, 82,179,159, 50,153, 12,107,215, +174,213, 13, 26, 52, 72,157,152,152, 72,106,210,164, 82,169,205,102,176,230,247, 37, 18, 9,164, 82, 41,110,223,190, 77, 34, 35, + 35,213, 27, 55,110,172,170,157,126,231,206, 29, 50, 98,196, 8,117,121,121,249,139,141,153,151,154,234, 60,179,217,140,170,170, + 42, 20, 20, 20, 32, 51, 51,243,113, 56, 93, 39,146, 62, 51,254,249,225, 29,117, 58,157,246,246,189,251, 25, 29,130, 3,149, 58, +157, 78,155,158,145,113, 15,248,216,218,136,246,179, 65, 65, 65,133,211,167, 79,215, 21, 23, 23,183,216,104,113,185,220, 36, 22, +139, 69,250,244,233, 67, 12, 6, 3,201,204,204, 52, 21, 20, 23,155,253,151, 47, 39,137,111,191, 77, 9, 98, 99,121, 98,177,152, +170,214,100, 36, 39, 39, 91, 5, 2, 65,210,159,110,180, 24, 86, 23, 80,164,247,111,247, 43, 28, 6, 13, 31,199,165,242,174, 2, +198, 10,128, 39, 7,120,114,176, 68, 78, 24,210,167, 19,115,215,229, 50, 23, 16,107, 79,112,120, 30, 77,106,178,137, 10,176,246, +249,233, 94,149,188,247,216, 89,220,162,162, 34, 48,153,204,199,166, 72, 40, 18, 97,224,168,151, 25, 95, 94,213,187, 0,164, 23, + 40,166,135, 29,247,250,251, 11, 22, 44,224, 20, 23, 23,131,193, 96,252,191,166, 80,136,105,211,166,241,164, 82,233,124,155, 11, +191, 3, 1, 28,176,121,221, 1,242,214,221,188, 42,183,163,183,116,126,115, 86,238, 20, 4,117, 10,195,212,254, 74,193,202, 24, + 77,208,205, 76, 93, 27,192,242, 54,204,134, 46,205, 48, 91,125, 36, 18, 73, 76,108,108,172,112,232,208,161, 88,189,122,181, 72, + 32, 16,156,104, 78,193, 95, 89, 97,153,185,100,227,215,234,248,117,131, 1, 99,229, 35,131, 85,107,209, 84, 88,177,112,231,153, + 82,147,137,140,183, 85, 83,167,211, 77,124,237,181,215, 10, 15, 29, 58,244, 59,147,197,231,243,145,154,154,138,101,203,150, 21, + 21, 21, 21, 53,249, 80, 92,187,102,117, 92,194,205, 95,241,229, 23, 75, 0, 16,108, 90,251, 6, 46,253,246,173, 67,255,126,125, + 73,235,214,173, 73, 88, 88, 24,166, 79,159,142,165, 75,151,226,238,221,187, 80, 40, 20,120,227,141, 55,208,175, 95, 63,172, 89, +179,166,177, 66, 42,114,230,204,153,203,178,178,178,252,126,250,233, 39, 86,126,126,190,114,205,142, 29,165, 7, 75, 75,139, 86, + 36, 36,220,253, 48, 56,184,253,188,144,144, 87, 26, 25,250,161, 94,147, 53, 99,198,140,125, 89, 89, 89,161, 63,255,252, 51, 59, + 63, 63,223, 99,198,140, 25, 88,181,106, 21,230,207,159,191, 29,192, 84,216,214,225,197,230,114,137,201,100, 62,243,236,179,207, +118,212,233,116,218,187,119,239,102, 4, 7, 7, 43,117, 58,157, 54, 35, 35,227,222,217,179,103,173,205,209,108, 14,133,133,133, + 15,247,238,221,123,111,214,106, 89,229, 44, 0, 0, 32, 0, 73, 68, 65, 84,172, 89,161, 89, 89, 89, 1, 0,156,202,203,203, 69, +229,229,229, 60,131,193, 32,144,203,229,242, 78,157, 58, 41,166, 76,153, 34,190,113,227, 70, 64, 86, 86, 86, 69,117, 20,169, 65, +140, 70,227,221,226,226,226,168,193,131, 7,151, 20, 23, 23, 35, 36, 36, 4,195,135, 15,135,139,139, 11,220,220,220, 48,114,228, + 72,248,250,250,162,176,176, 16,227,199,143, 47,202,207,207, 31, 12, 32,217,134,236, 62,204,203,203, 67,207,158, 61,177,100,201, +146,168,231,158,123, 46,177, 79,159, 62,101,193,193,193, 90, 15, 15, 15,255, 13, 27, 54,192,221,221, 29, 7, 14, 28,112,229,241, +120,123,235, 49, 89, 13,122, 17, 0,249,213,134,199, 80,231, 53,191,137,117,182,110, 91,239,123, 27,190, 87,215,108,213, 94,126, + 87,117, 88,255, 9, 1, 22,238, 62,176,171,138,235,233, 3,153, 95, 71, 8,249,124, 8,184, 92, 8,228, 78,208, 91,173,216,145, +154,167,173, 36,100,190,189, 23, 79,221, 7, 33, 69, 81,248,252,243,207,205, 61,122,244,168, 58,115,230,204, 38,157, 78,231,137, + 71,163,202,218,108, 10, 54,110,220,168,157, 61,123,246, 77,141, 70,211,145,207,231, 27,106,210, 55,109,218,164,125,249,229,151, + 19,178,178,178, 66,133, 66,161,182,161,246, 89,181,141, 22,143,199,211,107, 52,154,176,201,147, 39, 39,109,217,178,165, 82, 40, + 20, 66, 36, 18,129,199,227, 25, 52, 26, 77,199,233,211,167,223, 92,181,106,149, 86, 32, 16, 64, 36, 18,217, 85, 45, 71, 8,249, +157,161,170,157,110, 43,102,179,249,140, 70,163,233, 56,123,246,236, 27, 27, 54,108,168,172, 49, 64,181,243,184,102,205, 26,173, + 88, 44,182, 43,162, 85,243, 61,145, 72,132,245,235,215,107,103,205,154,117, 83,163,209,116,228,241,120,134, 90,233,149, 51,103, +206,188,161,209,104, 58,154,205,230, 51,141,252, 27,179,148,149,149,129,197, 98, 33, 33, 33, 65,207,225,112,192, 96, 48,240,224, +193,131,199,133,143,163,163, 99, 96,199, 14,193,254, 95,239, 59,112, 86,192,225,241,122,132,117, 9, 72, 78, 75,207, 34,132, 74, +107, 34,171,135,117, 58,157,231,153, 51,103, 54,245,232,209,163,234,243,207, 63, 55, 55, 20,217,178, 5,189, 94,127,246,250,245, +235, 38, 62,159, 79,229,230,230,154,153, 76, 38, 44, 22, 11,209,135,133,233, 59,108,216, 64,110,207,155, 71, 73, 69, 34, 22,135, +195,129, 80, 40,164, 78,158, 60,105,208,106,181,103,255,124,163, 5, 33, 40, 8,238,107,244, 18, 62,195, 76,225,222,225, 71, 38, +139,239, 0,240,229, 0, 95, 14,119,119, 15, 92, 77,213, 74,192, 0, 23, 22, 27,198, 16, 35, 68, 4, 10,194, 4, 53, 36,108,174, +128,202,203,203,123,108,136,106, 22,111,159, 0, 92, 79,175, 16,131, 34, 60, 48, 97,207, 16, 36, 81, 78, 78, 78,172,220,220,220, +223,105, 6, 6, 6, 50, 77, 38,147,237, 67,187,228, 88, 92, 1,235,140,123,121, 85,174, 63,220,172,244,123,123,197,151, 2,129, +165, 4,136,221,136,160,182,110,120,123,108, 39,238, 71, 71,243,131,174,165,105,219,130, 73,166,194, 90,225,108, 71, 62,123, 75, + 36,146, 19,215,174, 93, 19, 74, 36, 18, 36, 39, 39, 35, 44, 44, 12,209,209,209, 66,161, 80,120, 28,128, 93,237,241,174,168,145, + 94, 81,110,233,241,254,129,140,188,248, 92,243, 19, 38, 43,191,146,224,181, 79,143,150, 20,151, 85, 61,123, 57,179,225,251,167, + 30,110,148,148,148, 68,206,159, 63,191, 48, 63, 63,255, 9,147,149,158,158, 94,243, 80,236, 15,160,201, 63,191,255,251,245, 84, +232,242,165,179,113, 45, 54, 17, 67,162,222,194,245,248,135,248,112,238, 40, 56, 72, 5, 56,115,230, 12, 70,143, 30,141, 37, 75, +150,224,193,131, 7,248,238,187,239,168,232,232,104,234,242,229,203,212,167,159,126, 74, 53,209,164, 97,194,138, 21, 43,112,237, +218, 53, 12, 29, 58, 20,231,206,157, 67, 81, 81, 17,190, 61,113,226,254,222,251,247, 63,172,105,179,213,192,208, 15,245, 34,149, + 74,231,172, 88,177, 2,177,177,177,143, 53, 11, 11, 11,177, 98,197,138, 44, 0,111,216, 99,178,236, 41,151, 66, 66, 66,252,247, +237,219,119,150,207,231,243,194,194,194, 2, 82, 83, 83,179, 0,164, 53, 67,179,172, 37, 53, 85, 5, 5, 5, 23,163,163,163, 47, + 15, 24, 48, 64, 56,113,226, 68,231, 35, 71,142, 56,105,181, 90, 55, 30,143,167, 52, 24, 12,220, 59,119,238, 48, 15, 30, 60,232, +114,251,246,237,212,170,170,170,171,182, 28, 15,141, 70,115,245,238,221,187,131, 67, 66, 66,238,108,218,180, 41,203,213,213,213, + 58,101,202, 20,188,246,218,107,112,118,118,182,172, 95,191, 62,163, 79,159, 62, 9, 15, 31, 62,140,208,106,181,183,108,204,235, + 87,203,151, 47,191,176,111,223, 62, 12, 31, 62, 28,159,126,250, 41,190,253,246, 91,252,250,235,175,130,223,126,251,141, 27, 29, + 29, 13, 14,135,131,238,221,187, 35, 50, 50,114, 96,117,117,167,173,207,165,107, 20, 69,197, 80, 20,245,115,157,215,107,141,173, +179, 99,219,134,222, 55,250,189, 58,217,140,174,179,216,206,132,182,248,120, 90,176, 68,123,241,165,238, 36,111, 74,111,162, 30, + 23, 64,206,247,115, 36,147,219, 81,149, 19,155, 57,188,131, 78,167,123,188, 28, 58,116,136,184,184,184, 84, 74, 36, 18,187,135, +119,112,113,113, 81,151,149,149,145,174, 93,187, 22, 57, 59, 59, 63, 30,138,192,213,213, 85, 93, 89, 89, 73,186,119,239, 94,164, + 84, 42, 31, 15,239,224,225,225,145, 73, 8, 33, 94, 94, 94, 57, 13,233,153,205,102,226,226,226, 82,211, 67,143,237,232,232,184, +181, 91,183,110, 69,106,181,154,184,186,186, 62, 30, 58,193,217,217,121,117, 88, 88, 88,221,244,166,242,155,153,149,149, 69,178, +178,178, 72,171, 86,173,114,106,167,167,167,167,147,244,244,116,226,225,225, 97,247,240, 14,206,206,206,171,234,201, 75,179,242, +232,233,233,169,214,233,116,164,103,207,158, 79, 28, 83, 79, 79, 79,117, 85, 85, 85, 77,186, 77,195, 59, 8, 4,130,169,124, 62, + 63,135,207,231,231,240,120,188,101,173, 91,183,214,236,223,191,159,172, 95,191,190,166, 75, 58,156, 3, 71,244,240,233,249,202, +135,206,129, 35,231,180,100,120, 7,137, 68,242,139,139,139, 75,229,161, 67,135,158,184,190,116, 58,157,205,195, 59, 8, 4,130, +172,138,138, 10,171, 90,173, 54, 93,184,112, 65, 27, 27, 27,171, 77, 72, 72,208,166,166,166,234, 10, 53, 26,163, 90,173,214,149, +150,150,234,111,222,188,169, 23, 10,255,154,225, 29, 72,180,175, 15,217,234,127,244,225, 18,239,219,179,251, 10,171,110, 45,237, + 72,200,247,163, 9, 57,254, 26, 33,103,222, 39, 87,183, 79, 33, 61,189,121,150, 11,239,182,186, 71,182,249,253, 96,203,144, 12, + 36,186,131, 15,217,234,127,252,254, 98,239,219, 19,251,184, 85,237,216,178,158, 92,185,114,133, 36, 36, 36,144,228,228,100,114, +252,240,126,210,179,173,240,145,230, 86,255,163,118, 14,243,208,139,199,227, 85,172, 93,187,150, 92,190,124,249,177,230,209,163, + 71,137, 80, 40,212, 2,182,245, 90, 38, 0, 69,182, 6,142, 50,111,241,251,237,163, 65,226,242,194, 99,239, 19,114,107, 23, 33, +209, 65,132,124,213,141,144,253,195, 8,249,241, 21,114,121,253, 88,210,203,155, 99, 34,219,252,206,145,237,129, 54, 55,182,103, +179,217,101,135, 14, 29, 34, 57, 57, 57,228,220,185,115, 36, 54, 54,150, 36, 37, 37,145,140,140, 12, 18, 19, 19, 67,216,108,118, + 21,154, 49,109, 89, 55, 21,188, 34,218,115,114,111,174,236, 69,200,145,241, 36,127,239, 4, 18, 21, 44, 41,234,222,170, 69,227, +209,117,114,114,114, 42,136,137,137, 33,169,169,169,228,236,217,179, 68,169, 84, 22, 0,176,185,189,108,212,144, 62,132, 24,110, +146,240,190,193, 36, 36, 36,152,244,235,213,158,100, 63,220, 72,194, 58,183, 38, 91,183,110, 37,106,181,154,180,110,221,154,216, +155,177,136,136,136, 43,132,144,184,161, 67,135,198, 1, 56, 25, 17, 17, 17,151,146,146, 18, 23, 22, 22,118, 25,141, 15,253,208, + 32, 3, 7, 14, 52, 18, 66,200,208,161, 67, 9,128,156,136,136, 8,146,146,146, 66,194,194,194, 12,205, 57,120,182,148, 75,161, +161,161, 61, 6, 12, 24,240, 97,104,104,232, 28, 91,134,119,104, 66,243,105, 13, 66,205,196,163,193, 63, 3, 1,116,169, 94, 2, +170,211,152, 45,208,124,133,205,102,239,112,116,116,252, 85, 46,151,159, 97, 50,153,209, 0, 94, 66,243,198, 55, 99, 84, 71, 24, + 79, 59, 59, 59, 63, 8, 9, 9,209, 13, 30, 60,152, 12, 25, 50,132,204,152, 49,131, 88,173, 86,178,127,255,126,178,100,201, 18, +210,206,201,201,188, 30, 40,216, 6, 76, 2,205,163, 1, 75, 39,181,165,206,190,216, 6,229,227,219,160,226,213,118,148, 45, 3, +150, 70, 52,100,180,172, 86, 43,185,119,239, 30, 9, 15, 15,175, 20,137, 68,217,176,125,192,210, 39, 52, 21, 10, 69,172, 82,169, +252,221, 32,154,181,210,159, 24,176, 84,169, 84, 94,116,117,117, 85, 59, 59, 59, 95,175, 79, 83,161, 80,196,186,186,186,170, 21, + 10,197, 19,131,123, 50,153,204,161, 10,133, 34,187,110, 58,139,197, 26,160, 84, 42, 51,235,166, 55,176,239,112,113,113,201,204, +201,201, 33,249,249,249,196,211,211, 51,167,174, 1,203,203,203,123,194,128,217,162,217, 84, 94, 26,201, 99,189,154, 54, 28,211, +230,156,247, 26,124,221,221,221, 53,107,214,172, 33, 98,177,248,137, 46,207,126,125, 95, 93,112,229,126, 69,217,107,115,183,238, +175,103,192, 82, 91, 7, 7, 29, 44, 18,137,178,195,195,195, 43,239,221,187, 71,172, 86, 43,177, 90,173, 13, 25,173,250, 52,159, +233,210,165, 75, 97, 65, 65,129,165,188,188,220,156,153,153,169, 79, 73, 73,209, 45, 93,186,212,152,159,159, 95, 85, 81, 81, 97, +136,143,143,215,187,186,186,230, 3,120,198,222,115,212, 76, 34,234, 86,159,145,237, 1,189,200,182,128,152,164, 69, 94,119, 94, +233, 38,210,199,173, 25, 74,200,153,247,201,229,173,175,145, 30,222,220, 71,134,104,187,255, 9,242,165,111, 95,178,177, 45,215, + 38,205, 29,237,250,144,237,254, 39,110, 47,244,186, 51,186,179,179, 97,223,174,237,228,193,131, 7,228,232,193,189,164,123,155, +106,147,181, 45,224, 52,217, 26, 16,110,139,102,125,102,107,231,206,157,228,193,131, 7,228,135, 31,126,176,213,100, 69,212,103, +180, 62,136, 16,151,188,214,141,175, 31,223,137,107, 24, 25,196, 49, 70,250,112,204, 61,189, 88,150,142,174, 12,107,128, 51, 72, +164,159, 64, 79,182,249,157, 35,219, 2, 6,219,154, 79, 46,151,155,129, 90, 99,234,212, 93,120, 60, 94,126, 35, 70, 43,162, 73, +179,229,203,203,253,101,201, 0, 50, 60, 68, 82,104,163,201,106,234, 90,234,164, 80, 40, 10,190,250,234, 43,162, 82,169,242,109, + 52, 89,143, 53, 71, 68, 69,146,244,135,199,201, 15,251, 87,144,240,190, 1,100,207,206,217,228,202,185, 69,100,216,144,112, 18, + 17, 17, 65, 10, 10, 10,200,128, 1, 3,136,189,249,148,201,100,123, 42, 42, 42,226, 78,157, 58, 21, 23, 17, 17, 17,183,103,207, +158,184,243,231,207,199, 9,133,194, 61, 53,193,137,186,102, 43,224,247,229,127, 68,157,136, 86, 92,121,121, 57, 57,117,234, 20, +137,136,136, 32,123,246,236, 33,231,207,159, 39, 66,161, 48,174,185,247,145,173,229,210,160, 65,131, 22,164,166,166,150, 45, 92, +184,112,127, 61, 3,150,218,170,249,224, 41,229,243,169,148, 33,127,129,166, 68, 32, 16,196,221,188,121,147, 20, 23, 23,147, 96, +149,138, 44,103, 50, 73, 22,135, 67,114, 56, 28,178, 21, 40,250, 23,216,164, 41, 13, 85, 29,254,209,212,107,180,170,170,170,200, +187,239,190,107,224,243,249, 90, 14,135, 99,239, 20, 60,255,232,139, 80,161, 80, 92, 84,169, 84,106,149, 74,245,132,217,171,157, +174, 80, 40,174,255,203,111, 64, 95, 14,135,147,206,102,179,159,156,130, 39,112, 68,143,118,189, 38,206, 87, 5,141, 24,210,194, +124,114, 56, 28,206, 7,124, 62, 95,251,238,187,239, 26, 42, 42, 42,236, 49, 90, 0, 48, 72, 40, 20,102,239,222,189, 91,119,255, +254,125, 83, 81, 81,145,249,202,149, 43,166,216,216, 88,195,199, 31,127, 92, 46, 20, 10,179,209,240,176, 4,127,202,241, 36, 27, +219,114,107,204,214,173,249, 94, 73,195,131,133,198,232,119, 34, 73,143,214,117, 76, 86,195, 35,185,215,175, 89,109,182,110,124, +228,153, 20,238, 43, 54,175,152,255, 54,233,222, 70,240,164,201,178, 67,179,174,217, 18, 10,133,229,139, 22, 45,178, 39,146,245, +164, 33,220,225,231, 73,182,251,239,121,100,162,154, 88,182,250,125, 65, 62,247,243,252,187,220, 71,221, 84,240, 26,232,203, 75, +180, 35,146,101, 75, 62, 59,201,229,242, 59,118, 68,178, 30,107,126,254,249, 38, 50, 97,220, 32,242,240,206, 33, 82, 81,120,156, + 92,191,180,150,140, 25, 17, 74,186,119, 15, 35,219,183,111, 39,119,239,222, 37, 93,187,118, 37,205,200,103,228,180,105,211,226, + 82, 82, 82,226,146,147,147,227,206,159, 63, 31, 55,106,212,168, 56, 0,145,181,107,130,106,204,150,113,204, 24,125, 39, 6,227, +237, 38, 52, 95,152, 54,109, 26, 73, 73, 73, 33,201,201,201,228,252,249,243,100,212,168, 81, 4,246, 77,223,211,172,114, 41, 52, + 52,180, 71,120,120,248,252,206,157, 59, 15,121, 90,154,255, 65,163, 37, 26, 61,122,180,213, 98,177,144, 33, 67,134, 88, 54, 0, + 37,209, 20,165,142,166, 40,245,118, 32,255,223, 30,209,250,163, 39,252,140, 0,240,115,237, 4, 62,159,175,174,170,170,114, 22, +139,197,135, 43, 42, 42,102,225, 81,183,200, 22,105,254, 17,249,164, 53,255, 21,154,174, 98,177,120, 83, 69, 69,197, 40, 62,159, +159, 95, 85, 85,165,178, 67,211,129,199,227,189,205,231,243,195,181, 90,173, 47, 0,136, 68,162,123,122,189,254, 87,157, 78,183, + 14, 64,201, 95,189,239,100, 99, 91, 46,184,220, 46, 32,152, 23,151, 81,217,102,197,169, 34,175,119, 6,200, 51,122,182, 19,165, +130,109,253, 20,148,254, 42, 53, 41, 93,111,183,166,128, 10,131,133, 61,239,106,154,182,245,167, 63,149,123,205, 9, 23,103,244, +108, 43,206, 0,193,167,224,105, 47,217,171, 89,215,108,137, 68,162,221,149,149,149,175, 3,248,213,222,125, 39, 7, 2, 56,168, + 52,185,195,196, 12, 6,105,100, 10, 31, 66,180, 96, 48, 19,144, 7, 53,245,241, 29, 35,125, 31,213,175,185,101,203,102,242,243, + 79,199,161,215, 22, 33, 87, 83,134, 9, 47,189,138, 78,157, 66,161, 80, 40,176,124,249,114,248,248,248, 96,201,146, 37, 84, 51, +242, 25, 41, 22,139, 39,248,251,251,183,189,125,251,118,178, 86,171,253, 6,192,233,186,207, 31,127, 32, 92,200, 98,117,212,153, +205,231,238, 0,177, 77,104,190, 32, 22,139,231,248,251,251, 7,221,190,125, 59, 81,171,213,174, 1,240, 45, 93,214,253, 51, 52, + 25, 12,198, 58, 47, 47,175, 49,169,169,169,243, 0,236,195,127,136, 63,221,104,209,154,180,230, 63, 80,179,230, 62, 33,127,183, +124,254,191,217,178,206, 2,133, 54, 32, 84, 22, 56,214,245, 77,152,172,166, 53, 5, 84, 24,204,172,183, 64,161, 21, 8,242, 64, + 24,235,154, 48, 89,127,174,201, 4, 40,124,220, 72,249,245, 49, 8,213,240,249,162,175,249,122, 88,176, 96, 1, 57,121,242, 36, +132, 66, 33,116, 58, 29, 6, 15, 30,140, 79, 62,249,132,162,203, 16, 90,243, 79,212,252, 87,194,162, 15, 1, 13, 77,147,144,191, +107,198,168, 55,147, 13,228, 64,192, 53, 20, 48,223, 5, 3,109, 0,115, 58, 42,205,121,212,155,233,134, 22,106, 94, 65, 1, 53, + 27, 76,248,130,107,126,136, 10, 67, 30,245, 70,243, 53,255,128,127,136, 4, 31,255,125,207,203, 63,145,186,166, 42, 54, 54,150, + 62, 40, 52, 52,182, 51, 5, 79,246, 52,124,252,153, 54, 90, 52, 52,255,112,168,231,238, 24, 1,100, 85, 47,127, 91, 77, 26, 26, + 26,154,255,160,225, 2,133,134, 27,180,217, 19, 18,108, 78, 67,187,159,105,205,102,105, 50, 1,200, 0, 56,224,209, 24, 36, 53, + 93,122,155, 26,102, 99, 8, 0, 19,125, 60,105, 77, 90,147,214,164, 53,105,205,191, 88,179, 41,237,127, 98,149,100,125,189, 12, +163,255,140, 31,142,160, 53,159, 42,131,255, 53,251, 78,208, 17, 4,235,171,151,142,244,121,167, 53,105, 77, 90,147,214,252,207, +107,254, 43,161,171, 14,255, 89,240,255,177, 57, 39,196, 21, 64,205, 32,151, 9,168,162,252,193,199,108, 0, 64, 57,174, 19,130, +251, 0,130,171,215,103, 82,148,221,189, 81,105,104,104,104,104,104,254, 42, 66, 1, 92, 7,224, 10, 96, 24,128, 24, 84,143,170, +240,151, 26, 45,129, 83,123, 87,176, 24, 33,148,149,248, 3, 0, 97, 80, 73, 48, 91,227,117,133,247, 91,252,144, 21,187,249, 58, + 18,112, 15, 80, 48, 60, 87,145,115,175,197,131,161, 5,251, 74,199,168, 20,146, 9,121,133,165,187, 19,239, 86, 28,177,103, 91, +153,204, 75,198,119,148,143,213, 27, 77,193, 92, 14, 39,195, 88, 82, 22, 93, 92,156, 92,222,140,108, 56, 54,182,242,227,143, 9, +117, 44,247, 58,197, 17, 26, 25, 78, 82, 14, 85,129, 10, 82,145, 43,182,122,151,164,146,131, 7,159, 35,246,158, 27,138,129,254, + 34,137,164, 51,143, 47, 12, 19, 74,228,237,173, 4, 40, 82,103,167, 25, 76,230,243, 22,131, 54,142, 88,241, 63, 59,206,213,203, + 0, 86, 0, 0, 6, 12,248, 25,193,144, 98, 93, 77,198,241,198,128, 91,120,249,204, 25,212, 12, 46,251, 1,128,149,118,100,215, + 1,128, 23,128,210,224,224, 96,109, 66, 66, 66,254,211,186, 70, 91,114,222, 27,131,199,227, 11, 76, 38,163,209, 98,177,180,120, + 98,106,158, 80,186,232,119,211, 43, 81, 12, 84, 85, 20, 47,166,203, 62, 26, 26, 26,154, 63,213,104, 13,195,163, 42,195,166, 27, +195,123, 5,246,190,198,231, 11,188, 1,192, 74, 8,172, 4,168, 44, 43,137,203, 75,142, 29, 12, 0,138,214,161,167,216,124,105, +103, 43,121,180,222, 98, 5,204,198,170,212,178,244, 43, 93,109,201,145,200,217,119,244,128,136,129, 99,162,162,134,249,117, 8, +238,208, 14, 0,110, 37,220,122,120,236, 88,204,221, 51, 63, 83,135, 42,243,239,253,208,162, 0, 10,248,159,116,233,210,169,119, +108,236,245, 37, 0,102,180,244, 8, 58, 57,137,103,157,254,254,221,190, 3,199,172, 22, 1,246, 61,112,249,142,242,177, 35,135, + 63,211,233,189, 55,167, 49, 94,123,119,185,247,181, 11,255,251, 76,236, 26, 84, 66,172,166,211,149,234,113,191, 53, 54,113,114, + 93,255,216,144,193,250,166,232, 36, 99,253, 87, 61,228,186,162,135,227,136,213, 50,142,162, 40, 48,185,194,131,206,109,123,239, +119,232,255, 78, 49, 0,155,123,140, 73, 93, 3, 35,148,174, 30,135,198,189,250, 54, 95, 40, 83,177,192,228, 0,160,144,147,118, + 7,103,190, 93, 33,127,107,241,206,208, 11,241,233,230, 95,190,223, 92, 69,113,216, 99,180,185,183,155,174, 79, 79, 79,119,128, +151,215,163,247, 95,124,177, 0,222,109,110,225, 81, 91, 51, 96, 45, 74,191,206, 65, 48,240,200,104,165,165, 65,110,107, 94, 7, + 15,125,126, 80, 70,250,253, 37, 57,217, 25, 71, 24, 44,150,181,184,180,242, 29, 39, 39,101, 69, 97,161, 38, 28,213, 13,185, 21, + 10,133,168,160,160,192, 8,192,248,103,158,247,177,147, 62,249,226,224, 87, 11, 94,175,111,221,244,183, 62, 89,231,229,225, 32, +122,115,198,228,122, 39,228,238,247,204,228,247,206,158,220,185,170, 73, 67, 44,146, 44,122,246,245,249, 31,247, 31, 16,249, 68, +250,149, 75,231,177,247,243, 5,168, 44,167,205, 22, 13, 13, 13,205,159, 64, 76,181,185,138,169,187,162, 65,163,197,231, 11,188, + 47,255,239,152,227, 15,231, 51, 1, 0, 17,161, 46,248,112,233,166,200, 61, 27, 99,239, 2, 64,143, 1, 81,190, 75, 62,120, 19, + 23, 19, 53, 32,132,160,147,143, 19,134,140,124,206, 54,227,161, 10,232, 58,118,236,179, 47,190,251,238,156, 17, 15, 30, 60, 72, +219,183,111,223,111, 0,208,167,111, 95,159,229,203,151, 63,191, 90,238,200,251,238,224,247,217, 85,234, 59,215,154,179,183,124, +183,182,238,126,237,219, 76,248,238,203, 77,140,254,131,159, 29,159,134,202, 21, 85, 57,201,217,182,108,171, 80, 40,102,179,217, +108, 25,240,104, 54,246, 26,140, 70,226, 2, 0,102,139, 85, 34,119,243, 43,103,114,248, 22, 30,143,115,187,188,162, 98,119, 89, +246,157, 29,141,105,234, 77,166,160,183,222,152,196,184,145, 92, 8,239,160, 62,204,245, 43, 62,130,213, 98,146,191,253,193,210, +177,177, 87,190, 67,165, 26,103,109,220, 53,118,221, 4,119,247,238,204, 79, 86,136, 7, 81, 20, 94,241,234,241,234,168, 37,187, + 14,178,187,248, 72,161, 55, 89,113, 34,174,176,199,214,117,159,172,186,176,117,216,143, 0,182, 3,248, 5, 64,147,166,206,209, +201,241,155,217,243,215,137, 43, 13,255, 31, 37,169, 54, 89,248, 98,247, 1,220,204,180,194,223,207,159,229, 50,251, 51,241,246, +165, 83,118,105, 31,205,179, 85,159,221,109, 11,160, 23,144,228,136,169,139, 7,226,235,149,203,160, 84, 86, 66, 34,201, 0, 5, + 21,128,246,213, 95,188,207, 45, 64, 38,128, 15, 52, 26,136,150, 76,195,224, 27,192,220,142,128, 6,192, 5,170,177, 89,227,137, +121,197, 91,243, 86, 5, 59,183, 9, 14, 75,184,155,141,203, 49,155,145,159,151,238, 80, 92, 92,176,187,149, 79, 71, 34,146, 57, +135,150,228,165, 64,234,128, 20,138, 88, 70,150,150, 22,231, 1,176, 41,138,228,226,226,178,200,221,179, 91,223,154,243,238,232, +213,169,184,102, 29,131,201,250,166, 32,229,218,155,141,109,239,229, 63,124,242,138,205,125,194,147,110,158, 58,144,145, 28,119, +222,108, 50,234,219,251,133,116,153,244,202,248,231,147,178, 21, 29,243, 75,244,184,121, 43,177,211,202,149,159,174, 76, 76,184, +117, 75, 34,113,144,183,241,237,216,205, 63,100,232,248, 34,131, 99, 91, 91,140,150,217,108,129,147, 75, 91,176,249, 18,120,168, +100, 40, 41,215,163, 82,111,134,194,165, 13,204,102, 51, 93,244,209,208,208,208,252, 57,228,226,201,198,239,209, 77, 26, 45, 0, + 16, 11, 88,184,155,146, 7, 0,112, 16, 0,179,166, 78, 68, 97, 65,190,175,193,108,197,171, 19, 95,194,245,164, 92,220, 77,205, + 7, 33, 4,190, 30, 54, 79,194, 13, 38,172, 93, 94,157,252,106,191, 83,167, 79, 95, 93, 48,127,193,215, 20,133, 75, 0,176, 61, +250,139, 30, 11, 23, 45,124,253,165,137, 47, 13, 58,120,240, 96, 34,128,102, 25, 45, 22, 37,217,180,106,229, 50,110, 86, 65, 85, +213,236,119,231, 89,231,188, 51,123, 61,128,103,109,114, 50,108,182, 44, 43, 43, 75,204, 96, 60, 57,151,230,167,203,230,157, 27, + 52,102,245,253,180,140,146, 27,167,142, 30,237, 26, 24, 24,136,172,236,188, 94,159,109,216,214,241,196, 41,193,164,242, 50,221, + 24,109,193,157,122, 39,109,230,177,217,137,139, 63,219,218,201,234,224,195,248,240,245,161, 8,106,231,134,108, 77, 9,250, 14, + 30,193,138,187,118, 45, 18,176,217,104,213, 29, 60,112,172,193,170,233,184,124,247,149,129,163,122,186,117, 97, 48,152,168,208, +153,144, 95,170,135,197, 10,244, 9,144,225,153, 61, 27, 88, 69,149,166,209, 75,191,207, 28,125,105, 99,148,186,170, 52,103, 38, +128, 67, 77,196, 3, 29, 61,148, 82,220,205, 44,175,215,100, 85, 86, 61,122,128,115,152, 22, 80, 32, 78,141, 8,245, 2,240, 21, +224, 15,252, 52,243, 69,168, 84,251, 84, 42,213, 88,165,202, 37,206,247,197, 73,148,187,119,128,164, 66,103,196,237,196, 91,229, +129,157, 19, 72,121,145,230,237,170,202,226,131,119,128, 4,127, 96,127,181,198, 36, 52, 98,180,238,223,191, 83, 50,233,133,112, +214,141,135,229, 72, 22,137, 16,212,115, 20, 74,243,179,216,207, 76, 90,220, 77, 87, 94,202,119, 82,121,225,206,197, 3,200,207, +120,208,169,202,160,255,193,209,179, 71,248,143, 95,205, 53, 52, 21,221,114,113,113, 89, 52,117,234,212,143,243,115,147, 62, 25, + 52,102,117, 72, 90, 70,201,141, 23, 23,255,218,117,250,104, 31,156,136, 47,195,178,201,225, 19, 0, 52,106,180,152, 44, 98,225, +139, 93,188,199,188, 48,115,158,155, 51,127,158, 80,192,128,131,136,139,211, 87, 52,248,238,116, 38, 76,102,130,238, 33,237,125, +103,189,183,110,151,171, 19, 23,185, 5, 6,100,231, 87, 65, 93, 80,133,138, 66,173,222,166, 11,130,162,160,201, 47, 68,204,143, + 49,160,216,124, 80, 12, 10, 38,163, 17, 44, 6, 3, 20,131,162,139, 62, 26, 26, 26,154, 63,135, 6,123, 29,178, 0,224,216,177, + 99, 36, 42, 42,234,119,165,178,197, 66,112, 55,245, 81, 19, 28, 38,147,137, 97,189,125,176,254,179,197,208, 25,204,184,153, 82, +138, 31, 46,102,194, 80, 89, 2, 66, 8, 10,130,148,245,253,240, 19, 85, 74,171, 87, 8, 66,153, 60,246,184, 11, 87, 68,173, 29, +229,114,249,253,196,175, 43, 23,190,163, 14, 96, 17, 99,220,210, 79,125, 82, 56,142,172,158, 7, 14,236, 15, 28, 30, 21,197, 21, +139, 37,239, 19, 86, 71, 15,118, 37,153, 83, 90, 26, 95,218,144,102, 93, 4, 74,255, 17, 35,134, 61, 51,192,197, 69,101,125,113, +249,149,164, 77, 51, 67, 61,219,251,180,239,117,215,164, 27,161,211,220, 63,218,192,102,143, 53,173, 86, 43, 24, 12, 6,212,106, + 53, 44, 22, 11,244,122, 61, 76, 38, 19, 50, 51,211,212, 86, 66, 60, 44,176, 50, 92, 93, 61,192, 98,113,225,221,218, 11, 91,215, +175, 16,238,249,238,104,216,220, 5,159, 28,209, 22,160, 59,254,127,112,203,199,154, 85, 69,197, 7,143,159, 60,237, 76,112,198, +237,195,215,135, 50, 53,197, 21, 56,115,237, 1,174,223,206,180,247, 68,214, 29,194,161,117,118,250,131,178,213,171, 87, 51,151, +156,120,144, 57, 96,200,179, 22,175,118, 33,173,245, 22, 2,128, 2,143,195, 2,135,197,128,151, 51, 31,135,231, 5,227,202,200, +120, 85,100,168,243, 58, 66,200,161,198,142,167, 94,111,178,244,246, 23, 49, 59,182,149, 33,254, 97, 49,174,158,184,132,217,243, +215, 33, 54, 69,143,242, 10, 45, 40,139, 30, 76,162, 71, 65,122, 50,204, 22, 11,105,234,188, 63, 34,180, 24, 0,120, 60,222, 7, + 63,252,120,210, 77,111,229, 35,175, 68, 15,117,177, 30, 62,221,199,136,210,179,243,241,213,226,231, 63, 0,112,208, 31, 40,183, + 65,147, 7, 32, 60, 45,229,158,201, 96,176, 88,171,140, 22, 70,144,167, 12, 59,126,186,134,224,240, 23,170,184, 76,166, 64, 34, + 83, 0, 4, 8,234,251, 2,174, 30,249, 28, 98, 6,179,179, 64,202,235, 8,224,106, 99,215, 82,141,201, 90,180,104, 17,102, 76, +125, 30, 86, 66,216, 22, 88, 25, 0,176,229,135, 7,240,242, 86, 54,118,142,254,127,186, 24, 11,131, 50, 26, 9,202, 43, 76,200, + 47, 49, 64,194,103,225, 94, 70, 37, 30,164, 87,224,249,193,238, 24, 51,208, 21, 22, 43,193, 75,239, 95,199,179,145,174,120, 49, +202, 3,160, 40, 20, 20, 27,160, 55, 88, 26,220,119, 6,131,209,134,201,100,134, 90, 44,150,235,143, 62, 51, 97, 1, 80, 86, 92, + 0,189, 94, 15, 38,147, 9,185,163, 51, 0,234,137,239, 90,173,214, 20, 91,239,163,102, 66,107,210,154,180, 38,173,217,108, 26, +242, 34,255, 16, 26, 28,202,129,209,216, 86, 15, 51,139,112, 55, 37, 15,157,253,221,209,174,181, 43,174,222, 43,198, 55,103, 50, +177,243, 84, 58,206,220,204,135,149, 37, 65, 94, 25,112, 63, 77,141,251,233, 5, 77,142,159,205,228,177,199,189,245, 86,233,187, + 29, 2,203,186,255,239,196, 44,184, 59,223, 15,156, 59,183,100, 22,147,199, 30, 39,111, 37,217, 55,239,221,183, 39, 72,132, 66, +174, 65,111, 64,219, 54, 94,252, 55,103,206,154, 68,201,121, 54,207,137, 36,113, 15,144,243, 4,130, 29, 75, 63,126,159,183,238, +135,251, 25,149, 6, 84, 30,186,164, 78,158, 51,111, 97, 17,139,205,223, 42,113, 15,176,185,237,143,201,100,130, 94,175,135,193, + 96,128,209,104, 68,118,230,157, 17,191,252,240,222,224, 54,173, 28, 7,243,248,124, 16, 0,101, 58, 51, 82,114,181, 8, 31, 56, +136,217, 57, 52, 52, 72,236, 26, 48,185, 62,173,210,210,244, 82, 43, 97, 74,142, 29,222,203,220,255,211, 13,124,125,236, 26,142, +252,122, 3, 87,207,158, 48, 19,171,233,241,252, 95, 98, 87, 31, 95,177,107,135,116,177, 91,136,250,241,226, 30,220,232,240,204, + 76, 38,131,132, 15,140,248,121,234,140, 55,255,167, 45, 47,212,236,216,180, 56, 59, 63, 39,237, 14,143, 67,153,133, 60, 38, 42, +170,204,216,245, 75, 14,198,174,184,137,219, 25, 21, 32,132, 52, 57,129,183, 21,120,103,220,228,247, 44, 38,163, 17,126,158, 98, +236,141, 94,137, 17,225, 29, 49,160,131, 28, 93,219,137, 32,100,233,145,152,116, 23,223,238,221,101,182, 90, 25,115,154,184, 17, +159,169, 94,226, 0,160,162,162,226,189,185,239,207,201, 55,152,173, 48,154,172, 48, 86,191,254,242,237,167,249,150, 42,237,123, +213,219,197,213,218,174,161,155,121,227,107,211,231,134,239,248,230,231,255, 99,239,187,195,163,170,214,238,215, 41,211, 75,122, + 38, 9, 33, 9, 36, 64, 66,239, 16, 80, 64,122, 64,186, 32, 69, 64, 65,154, 10,138,162,130,162,130,212, 75,175, 42, 40,136,244, +222, 59,132,170, 32, 29, 18, 32,129,144,222, 39,109,122, 59,237,247,199, 36, 16, 32,101, 2,222,251,221,223,247,101, 61,207, 60, +147, 57,156,243,178,219,217,123,237,245,190,123,239,238,251, 46,102,145, 57,249, 14, 68,159,216,131,128,160, 48,136, 41, 82, 14, + 2, 0, 65, 0, 4, 1, 65, 16,224, 27,210, 0, 86,158,199,222, 95,190, 13, 68, 5,241,106, 37, 36,107,252,248,241,120,240,224, +193,115,245,158,240, 56, 9, 9,143,147,112,230,228, 85, 0,128, 87, 72,243, 66,175,144,230,133, 62,161,173,215,149,101,203,206, + 49,188,133,229,144, 93,100,133, 66, 70, 34, 56, 80,129,129, 93, 2,176,250,155,166, 24,209, 59, 16,233, 57,102,140,159,115, 7, +126,126, 34, 28,184,152,133, 85,219, 19, 80, 47, 68,137, 1, 93,106,224,253,190, 53,203, 86,107,105,186,151, 72, 36, 26, 62, 96, +192,192,217, 82,153,114,193, 39,115,182,206,146, 75,233, 18, 53, 22, 20, 69,129, 97, 24,144, 36,129,161,159,174,158, 37, 85,168, + 23, 12, 24, 48,112,182, 72, 36, 26, 78,211,116,175,234, 73,103, 53,170, 81,141,106,252,219, 20,173,146, 79,192,115,253,118,121, + 79, 88,173,150,164,119,134,142, 68,128,198, 95,213,255,173,247,197, 55, 19,138,160,205, 74,193,227,248, 24,152,173, 12,196,158, +161,128,204, 31,181,106,135,224,110,220, 65,199,170,197, 71,141, 60,107, 75, 42,207, 94,191,126, 1, 53, 31, 63, 36,200,197,139, +130,175,198,199, 21,182,220, 54,243,119,140, 24,161,242, 89,188, 40,248,106,242, 19, 37,169,144, 9,237, 63, 24, 61,156, 32, 9, + 1, 95,127, 61, 13,253,251, 68, 97,204, 7,163,136, 63,254,216, 20, 89,228, 98, 46,121,136,214,204,248,118,182, 36,167,136,181, + 95,139, 55,218, 20, 74,185,252,207, 71, 70, 83,163,218,193,242,222,131,222,207, 60,186,251,183,229, 0, 70,187, 98,171,132, 96, + 49, 12, 3,135,195, 1, 0,156, 83, 61,112,126,231, 27,236,200, 45,178, 33,167,200, 6,150,227, 49,104,232,104,249,245, 27,119, + 70, 3, 40, 39, 94,139,231, 25,150,193,190,211,183,144,113,125, 15, 79,144,148,174, 84, 48, 60, 84, 1,117,195,253,253,131, 47, +246, 25, 52,202, 87, 34,115,186, 97, 13, 38, 27,254,248,101, 81,133,233, 36, 9, 66,224, 57,182,136,101, 24, 83, 88,104, 88, 70, +253,134,205,100,151,207,159,236,247,231,153,125, 70, 54,108,148, 71, 66,114, 22, 40,145, 20,148, 88, 6,155,195,181,133,135, 57, +143,175,174, 5, 64,140,253,104,218,138,169, 95,126, 67,125,190,234, 18,236, 86, 51,108, 22, 19,244,186, 66,200,105, 6,177,127, + 29, 98, 5,142,153,106,202,186,189,182,124, 75, 68, 38,128,204,210, 87, 10, 10, 10,162,255,186,116,241,240,223,127, 93, 26,227, + 31,214,146,180, 51, 60, 30,199,252,205,103, 60,186,113,216,102,211, 71, 3, 0, 1,228, 3, 56, 89,145,112,169,118,243,112, 31, +243,241,151, 99, 61,228, 74, 50, 38,189, 8, 41, 89,122,112,242, 64,248,215,172,243,204,191,202, 59,243,219, 38,194, 23, 61,154, +189,139,203,247, 82,185,147,187,214,118, 7,112, 8,128,185, 34,146,117,243,230, 77,136,197,226,231,234,189, 78,221,218, 40,113, + 29, 22, 21, 76,246,216,180,248,125, 0, 64,151, 55, 59,142, 7, 48,225,165,137, 74,182, 30,222,118, 22,109, 27,120, 33, 34, 84, +133,140,124, 59, 4,130,198,238,179,121,120,148,110,194,233,107, 90, 4,120, 73,192,219, 73, 80, 82, 96,223,229, 12, 92,142,205, +195,200, 94, 65,120,152, 88, 80, 14,177,166, 90,124,254,197,180, 31, 87,174, 92,117,238,157,143, 22, 15,238,208, 34, 12,122,131, + 17, 25, 5, 12,140, 38, 3, 76, 70, 19,228, 10, 5,164, 18, 9, 40,154, 70,175, 15,230, 13, 62,246,251,183,231, 63,255, 98,218, +143,203,150, 46,249,158,101,217,227,213,253, 97, 53,170, 81,141,106,252, 91, 21,173,241,165,175,149, 75,180, 82,238, 95,110, 13, + 0,225,173,122,228,171,100,180, 23, 77, 18,200, 73, 79,192, 31, 75, 62, 5,207, 11,232, 61,110, 49,212,181,253, 33, 23, 83,176, + 25,243,141, 5, 9, 23, 42,138,213, 1, 65, 48,221,215,174,203,168,253,209,164, 48,183,109,219,140, 34, 0,216,182,205, 40,154, + 52, 49,200,237,167,117, 73,181,219,190,217, 18, 2,199,161, 79,255,119, 48,116,216, 80, 36,103,155,177,247, 98, 42, 76, 22,187, + 75,171,229,228, 62,245,155,249,120,251, 70,125,246,126,148,146,166, 8,162, 94,136, 59,149,166,101, 88,138, 18,113,135,175,235, + 50, 7, 13, 26,230, 19,125,108, 87, 23,206,167,126, 51, 75,222,195, 59,149,217,179,217,108,207,185, 14,189,124, 66,143,117,127, +103, 73,122, 86,182,225,104,118,161,181,173,137, 97,145, 83,100, 67,110,145, 13, 69, 38, 7,252,213,158, 96, 25,123,147,242,236, + 9,130,176,121,192, 59, 35, 71, 1, 32, 9,146,253,221,152,245, 48,222,249, 47,207, 72, 86, 84,255, 17,190, 23,111, 38,224,241, +141,227,133, 2,207, 58,119,113, 39,248,244,138,203, 21, 2, 69,128, 23,211, 4, 67,145, 36,239,112, 24, 25,141,198, 55,250, 66, +244,137,190, 86,246, 9, 40,177,244,233,189,150,231,221, 81,149,145,173, 53, 0,176,114,213,138,165,237,187,143, 16, 95,184,149, + 4, 11, 3,180,107, 17,142, 3, 59,127,181, 9, 2,243,165, 41,235,246,154, 42, 52, 66,143,160,160,160, 79, 69, 18, 73, 23,185, + 66, 29,228, 27, 16, 76, 58, 88, 14, 14,134,131,210, 59,144,148,170,188,186,243,164,248, 50,235,176, 71, 59, 76,218,149, 0,202, +229,215,167,175,222,239,242,203,202,165,131, 3,188,149, 8,242, 17,227,240,133, 66,142,161,121, 82, 19, 18, 65, 0, 64,176,198, + 13,247,111,157,199,221,187,247,208,164, 93, 20,188,213, 53,161, 18,115, 66,222,227, 63, 11,252,252, 3,155,231,100,103,136, 95, + 36, 90,254,254,254, 63,140, 28, 57,114, 86, 64, 64, 0, 86,172, 88,241,244,122,233,122,111, 12,180, 45,237, 58,252,105,255,227, + 10, 51,252, 65,159, 90,120,179,153, 6, 60, 15, 76, 89,126, 23, 49, 9,122,172,159,209, 2,131, 58, 7, 98,221,193, 36, 52,173, +167,132,209,194,195, 97,231, 32,150,144,104, 16,170,130, 84, 76,225,220,173, 60, 24, 76,166, 10,109, 19,148, 20,221, 59,183, 67, + 94,145, 25,190,238, 18,132, 6,249, 66,165, 8,133,193,194, 34, 37, 91, 7,157,137, 65, 94,161, 9,111,180,107,131, 83, 91, 36, +213, 93, 96, 53,170, 81,141,106,252,103, 84, 45,160,212, 30, 90,207, 17,173, 35, 71,142, 8, 0, 80,150,127, 52, 35,167, 0,222, + 42, 26,190, 53,106,227,189, 79,151, 98,243,242,207,193,113, 12, 4, 1, 96, 57,215,118, 38, 16, 4,209,233,143, 39,213,174, 95, +171, 54,229,251,222, 8,133,101,235, 54,179,252,189, 17, 10, 75,227, 38,222,186,143, 39,213, 78, 50, 88,131,223, 96, 57, 14,127, +198,230, 34, 38, 73,135,152,100, 61, 84,114,215,183,249,162, 36,226, 73,139, 22, 46, 16,211, 20, 65,196,166, 24,141,233,249,172, +145, 18,137, 28, 10,185, 68,176, 11,180, 45, 57, 79,200,239, 58,224, 3,203,225, 45, 43,199, 2,248,164, 92, 85,172,120,165, 97, +137,146, 85,242, 45, 8,130, 64, 0, 60, 79,112, 92,122,158, 21, 70, 7,131,156,194,103, 68,139, 96,203,247,156,170, 2,234,134, +187,169, 85, 39, 40,138,146, 10, 2,192, 56,216,119, 17, 80,183,167, 49,235,113,124,105,146,117, 53, 54, 19, 9,183,207,228,112, + 14,243, 72,115,110,220, 89, 87,243, 78, 16, 16, 40, 10, 60, 69, 18, 60, 65,128, 23,145,130, 29,130,192,191,152, 34,115, 21,136, + 86, 9,217,146,136,168,153,167,118, 44,215,140,121,187, 1,118, 94,116,114, 62,171, 65,171, 55,101, 84,137,100,193,219,219,123, +244, 87, 95,125,245, 67,191,119, 70, 64,103, 37,144, 83,232, 84, 3,237, 12, 15,177,210, 7,221, 63,222, 24,148,165,213, 7, 61, +190,118,248,141,188,219,219,116,140, 85,183,162,220,116, 37,100, 94,179,152,139,252,161,230, 0, 0, 32, 0, 73, 68, 65, 84, 77, +208, 91,156,249,153, 54, 58,130,250,110,237,105,176, 2, 13, 47,223, 64,248,186,137,241,254,187,189,112, 49,164, 22, 30, 60,124, +136,153,179,143,194,207,195, 45,230,202,249, 67,117, 90, 68,118, 88,118,108,255,246,151, 72, 92,118,118,246,236, 45, 91,182,160, + 89,179,102,179, 90,182,108,137,236,236,236, 18,130,252,180,222, 19, 30, 59, 5,219, 18,162,117,235,214, 93,180,104,209,180,220, + 60, 55,169,227,134, 61,231, 50,177,241, 72, 50,228, 82, 10,181, 3,101,152,180,232, 54, 58, 55,247,193,228, 33,161, 80,201, 67, + 80,100, 96, 96,103,120, 88,108, 44,242,245, 14,100,228, 91,145,150, 99,129,131,169, 56, 22, 94,128,128,152,248,116,216,108, 86, +120,122,122, 66,165,176, 66,230, 17, 12,128, 66, 97,142,206,185,250,208,108,133, 66, 46,173,238,250,170, 81,141,106,252,127,131, +138,184,200,255, 71,170,214,203,138, 86, 69, 25, 18, 4,224, 81, 74, 30,106,213,244, 69,205, 90,117, 16,255,224,110,169,206, 30, + 96, 57,215,220, 81,135, 14,101,165, 47, 93,234,198,127,254,185,174,221,162, 69,193, 87, 38, 77, 12,114,111,220,196, 91,247,213, + 87,169,237,150, 45,115,191,114,250,170,136, 19,138,247,235, 42,217,155, 75, 16,170,178,199, 38,217,166, 89,195, 80,106,246,182, + 71,169,103,239, 25,114,197, 98, 49,227,239, 41, 35,212, 42, 9, 69,145, 34,137,141, 33,109,225,141, 90, 80,135, 73,162, 69, 69, + 86, 74,136,214,139,174,195,124,109, 66,191, 83,123,167, 53,126,107,192, 98,175, 12,173, 5, 58, 59,245,212,117, 72,145, 4,238, + 61, 72, 1, 40,113, 76, 89, 54,221,212, 94, 39,183,111,221, 28,188,108,209, 60, 56, 88, 14, 31,127,254, 29, 62, 24, 61,242, 36, + 2,234,246, 12,174, 29,113,243,210,225,223, 21, 61, 39,254,140,148,184, 27,217,172, 77,191,163, 42, 36,235, 41,217, 2, 4, 78, +224,201,130, 66,189,202,198, 66,134, 50,120,159,205,193,191, 82,203, 49, 90, 88, 28,254, 59, 27, 71,246,239,128,187, 90,249, 74, + 54,220,221,221, 27,116,236,216, 9, 4, 45,129,157,177,193,206,242,176,151,138,209,114, 48, 60, 24, 65, 4, 69, 64, 83, 20,220, + 63,208, 0, 86, 93,185,182, 70,141,234, 81,208,176, 73,203,221,223,126, 62,110,200,144,247,198,160,109,228,155,136,187,251, 23, +252,130,234, 67,229,225, 35, 92, 73, 42,100,219,213, 15,166, 71,247,111, 77, 68,215, 12, 67,237, 6,237,241,232,254,245, 38, 98, +177,248, 94,234,227,135,229,186, 36,179,179,179, 75,246,156,154,213,178,101, 75,164,166,166,162,160, 84,189,215,169, 91, 27, 0, + 16,255,208,185,136,161,132,100,241,124,217,237,116,252,130,219,208, 91, 56,248,120, 74, 64, 17, 36, 32, 8,168, 21, 32,199,141, + 71, 5, 24, 57,187, 16,145, 13,189, 16, 28,160, 0, 4, 1, 70, 43, 3,187,157,135,131, 7,236, 86, 22, 20, 89,238,146, 65,142, +227, 56,142, 20, 24,234, 86, 76, 60, 36, 98, 17,220,139, 76,144,203,229, 16,139,243, 64,144, 36, 88,150,135,131, 97, 96, 49, 91, +176,251,198, 85, 8,156,131,226, 56,142, 67,177, 27,180, 26,213,168, 70, 53,254, 27,241,255,113, 32,124,105,114, 85,190,162, 85, + 17, 66,106,250,225,239,152, 36, 52,169, 31, 10,119, 55, 53, 30, 38,164,131, 34, 69, 32, 9,128, 97, 93, 39, 67,130,131,217,185, +108,153, 59, 82,146,148,228, 79, 63, 39,213,254,120, 82,237,164,101,203,220,175, 8, 14,102, 39,128,145,130, 0, 56,201,150,147, +112,113, 85,224, 5, 2,207, 4,249,121, 41,168, 27, 79, 76,249, 36, 73,217,188,221,101,188,183,187,148,244, 86, 75, 68, 98, 17, +197,179, 2,233,168,169,169,109, 21,120,222,149,115,245,158,115, 29,114, 28, 7,130, 32,185, 98, 34,166, 76,203,183, 64,103,165, +144, 83,100, 67,161,193,129,122,129, 74,156,137,222, 99,230, 24,203,182, 50,213, 54,145,216,189, 78,237,154,248,102,206, 50, 88, +108, 28, 30,101, 24, 33,150, 74,253,253,252, 27,221, 25,249,209,116,233,148,245, 9, 24,219,197, 27,159, 95, 74,200, 48,231,200, +166, 87,165,102, 57,142,131,197,106, 23,231,228, 21,122,234, 13, 38, 55,185, 76,106,241,245,114,207, 43,235, 94,171,253,213,198, + 89,133,140, 70,223, 72,127, 88, 29,195, 97,177,177,248,235,236,190, 87, 49, 19,234, 87,163, 38,140,246, 82,228,170,152,108,149, + 38, 93, 34,149, 47, 0, 34,180,178,108,223,191,119,243,221,251,247,110,254,120,253,202,133,237,139,126, 59,219,120,203,154,239, +177,250, 96, 2, 40,138, 34, 4,134, 21,173, 60,152,132,154, 30,148, 96,100, 68,132,149, 35, 96, 42,208, 34,162, 77,175, 70,219, +215,126, 59, 29,206, 45, 35,108,174,144,173,194,156, 27, 79,235,253,196,241,167,235, 22, 80,120,103, 83, 81,194,185,213, 78,138, + 79,209,123,202,102,237, 14,187,198, 93, 34,112,172,131, 47,189,163,149,187,156,128,192, 3,215, 99,115,112, 43,158,132,183,155, + 24, 42,185, 8, 12,203,195,108,103, 97,177,114, 36,207, 58,108,229,212,247,173,149, 43,150,127, 63,124,248,240, 73, 59,118,205, + 58,212, 44,234,179,126,250,162,124,136, 36,114,136,105, 49, 72,138, 4,203,113,176, 91, 77, 40, 44, 42, 64,210,159,127, 28, 26, + 58,100, 96,139,149, 43,150,127, 95,178, 74,177, 26,213,168, 70, 53,170,241,111, 83,179, 94,130, 75, 68, 75,165,144, 65,160,100, +184,116, 51, 1, 17, 13,155, 98,211,161,107,168,219, 36, 18, 89, 6, 22, 2,200, 74, 87, 27,150, 96,218, 12,203, 45, 0,183,250, +245, 83,212, 28, 56, 48,176,187, 32,136, 78,255,188, 78,159, 14, 0,161,141,157,102,120, 94,128, 32, 0, 2,239, 36, 92,174, 75, + 58,116, 74, 82,150,190, 86,109,127, 37,238,167, 59,108, 74,169,152,244, 84, 74, 40, 95,119,137, 88, 76,211,224, 4,194,150,149, +149, 96, 35,128,100, 87,204,189,232, 58, 84,168, 2,142,117, 29,176, 88,155,156,170,187, 81,175,192,220, 76,231,144, 64, 16,128, +122,129, 74,196, 92, 61,202,229,100, 60,126,100,201,137,251,165,108,149, 12,148,131,229,113,231,137, 14, 69, 38, 6, 69, 70, 7, +222,232,220, 87,252, 70,183,126,184, 20,147, 7,158,101,176,232,215,163, 6, 78, 96,134, 2, 15,152, 42,100,154,252,251, 86,108, + 77,109,161, 73, 42,162,233,162,250,117, 67, 18, 37, 98, 17,171,215,235, 37,207,223, 69, 65, 41,151,160,192,200, 0, 0, 83,213, +214,163, 51, 49, 56,116, 53, 27,135,247,109,135, 92, 46,135,240, 10, 45, 80, 44, 22,123,136,196, 50, 56, 76, 78,119, 97,201,199, +241,194,135,164,165, 0, 73,123,184,104,246,129,221,110,249, 43, 41,238,106, 3,174,115, 93,106,116,183,218, 24, 53,126, 42, 2, +235, 52, 65,223,190, 3,209,180,182,154,216,119, 37, 21, 12,195, 26,252,195, 26,169, 5,231, 42,219, 71, 0,154, 1,184,234,138, +178,165, 46, 85,239, 13,222, 8,107,246,140,104, 1, 5, 41,183, 43, 92,197,202,217,243, 51,204,118,146, 20, 4,190,204, 41,131, + 8,128, 96, 7,114,178, 4,100, 3,160, 73,128,166, 72,128, 32, 40,142,227,202,172, 39,150,101, 79,241, 60,159,179,117,235,214, + 28,142,227,110,221, 60,186,244, 78,157,183, 38,206, 2, 91, 0,134,113,134, 51, 74,164, 10,240, 4,137,132,139, 27,103,113, 14, +203,193,173, 91,183,150,108,239,112,175,186, 47,172, 70, 53,170, 81,141,127, 11, 74,159,113,248,118,105,242,229, 18,209,226,120, + 1, 62,222, 94, 96, 4, 26, 73, 57, 58,152, 8, 13,172,102, 1, 28, 71,128, 19,132,138,182, 26,239,134, 50,150,231, 31, 58,148, +149, 14, 96,195, 11,154,212, 83, 37,235,233,119,217, 46,153, 50,109, 18, 2,119,230,208,241,243, 67,250,117,232,226,249, 48, 43, + 59, 93, 44, 34,105, 90, 76,137,196, 52, 73,136,105,210,238, 38,167,169, 61,235,118, 72, 4, 2,231, 43,179,105,181, 90,209,173, +219,243, 7,147,199,197, 94,209, 20,228, 62,178, 11, 4,207,251, 74, 12,240,113,247, 69, 98,114, 42,206, 30,223,103,206,201,120, + 28,199,217,172,253,241, 60,229,124,102, 83, 16,248, 2,157, 13, 86, 7,135, 66,163, 3, 69, 38, 7, 88,223,118, 56,240, 87, 38, +100, 98, 10, 57,119,246, 88,180,217,233,159,218,114, 31, 39, 85, 82, 21, 95,227,185,189,180,132,244, 15,199,140, 22, 45, 95,178, +200,214,162, 69, 75,161,160,160, 0, 70,163,241, 89,153, 16, 4,100,110, 26,168,229, 52, 30, 95, 63,134,199,103,151, 89, 0,124, +235, 74,121,150,134,155,130, 70,191,182,254,176, 57,134, 35, 79,103,195,245,243, 7, 42,107, 50, 47,217, 84, 40, 20,242, 18,245, +170,244,182, 14,246, 82,170, 22, 87, 92,223, 36, 45,149,151, 97,179, 59,128,211, 47, 94,212,235,116, 71,111, 93, 57, 51,201, 58, +126, 20,114,138,108,176,228, 39,224,143, 3,191,156,117, 24, 30,117,238,177,124, 9, 57,181,127, 29,156,189, 85,160,190, 71, 83, + 0, 15, 68, 13,159, 54,248,196,246, 37, 91, 42,203,123, 9,217,234,212,161,245, 44,146, 34, 14, 11,196, 51,178,148,153,153,233, + 82,222,117, 57,143,139, 21,164, 42,249,192, 65, 16, 36, 37,240,207,157,129,248, 92, 58,121,158,191, 87, 66,154,104,130,232,175, + 86, 40,144,167,213,161,100,147, 93,171,197, 0, 47,159, 26, 32, 9, 2, 76,169,123,171, 90,239,175,128,106,155,213, 54,171,109, + 86,219,252,191,138,151,206, 56,172,130,162, 37, 32, 44, 64,137,186,129, 74, 88, 29, 26, 88,237, 28, 76, 86, 14,122,179, 3,122, + 51,131,164,108, 51, 98, 14,189,126, 10,157, 42,150,115,235,115,193,185,223, 38, 56, 94,112, 89, 61,145, 56,236,115,150, 46,154, +255,238,142, 22,205,237, 83,222, 14, 8,186,155,100,207, 36, 8,210, 66, 82, 52,227,165,166, 69, 15, 31,222,213, 94,185,120,172, +163,140,229, 70,153, 43,176,195,178,172, 46, 48, 48,176,100, 64,123,122,189, 65, 29,121,255, 63,143,126, 29,218,169,223, 34,223, +229,243,166,153, 73, 74,204, 19,180, 56,134, 99, 44,219, 45, 57,113, 63,163, 2, 93,143, 20,203, 30,252,125,251,126,164,135, 87, + 16, 30,103,152, 96,178,178,112,176, 60, 60, 85, 98,164,223, 59,233, 72,122,120, 99,151, 49,243,238,166, 87, 40,182,109,241, 15, + 98,106, 70, 69,245,124, 39, 50,178, 29,245,253,247,223, 33, 34, 34, 2, 22,139, 5, 36, 73, 34,168, 86, 29, 36,197,223,198,213, +163,115, 56,115,126,242, 47, 0,126, 4, 80,229, 3,151,243,244,118, 28,191,145,139,163,251,119,130, 18,189,210, 10, 54, 82, 46, +151,203,202, 34, 87,165, 73,215,211,155, 69, 18, 25,156,234, 19,255, 92, 67, 44, 27, 39, 18,226,239, 63,120,255,189, 97, 13,212, +238, 30,232, 61,112,104,238,149, 75,103,251,236,255, 99,221,138,252,228,180,119,191, 91,176,202,173,123,171, 0,194, 75, 37, 65, +145,137,199,182,148, 7, 97,112, 81,131,205,206,206,158,157,150,116, 99,228,159, 71,191,238,219,169,223, 34,223, 27,123,103, 62, + 13,162, 39, 41,122,107,101,207, 23,164,221, 60, 91, 85,146, 85, 66,181, 4, 65,112,201,113, 46, 0, 16,137, 37,208,104, 2, 64, + 16, 0,195,242,176, 51, 44,104, 81,245, 74,195,106, 84,163, 26,213,248, 15, 99,252, 11,223,174, 41, 90, 86,171, 53,233,205,110, +125,193,243, 2, 56, 1,224,185, 98,229,137,127,166, 62,113,140, 53,233,117, 83,199,243,220,181, 53,235, 55,244,110,209,166, 19, +213, 48, 88, 5,125,126, 54,174,254,121,142, 5, 47, 92,113,229,249,252,252, 71, 70,185, 95,221,119,222, 29, 60,112,247,232, 49, + 19,139, 58,118,238,172,212,104,252,109,233, 25,233,230,141, 91,182, 50, 39,143, 29,236,200,131, 29,150,159,255,216, 88,145, 29, +157, 78,183,178,172,235, 82,137,234, 13, 0,161, 20, 77,216, 45,218, 71, 85,138, 8,207,203, 72, 27, 52,127,206,172,228, 17,227, +166, 74,194, 2,235, 32, 87, 71, 33, 41, 61, 27, 15, 47, 30,180,101,196, 95,223,175, 79,191, 53,214, 69, 83, 89,101, 92, 75, 7, +176,252,234,213, 43,141,162,162,162,122,118,233,210, 69, 24, 63,126, 60, 4, 1, 56,187,126,146, 80,144,116,117, 79,177,138,245, +228, 21,235, 37,229,226,149,219, 94, 67, 58,182,162,189,213, 99,177, 97,231, 49, 6, 2,159, 82, 69, 51,126, 53,131,107,209, 78, +119,161,115, 75,135, 23, 63,118,230, 89,252,152, 88,229, 71,155, 17,227, 87, 78,126, 95,226, 26,143,227,239, 55,121, 28,127,127, + 12,128,220,221, 91,127, 61, 12, 0, 54,139,101, 98,244,217, 67, 41,247, 99,111,140,234,247,222, 23,117, 26, 53,107, 77,239,217, +180, 28, 14,171,105, 31, 0,151,219,171, 84, 66, 37,151,212,123,101,174,194,151,234, 61,249,234, 49,130,164,104, 87, 73, 83, 41, + 37,146, 20,120,222,165,128, 58,129,231,144,241,228, 30,188,252,131,161, 86,187,131, 23, 28,128,221, 6,109, 90, 28, 56,174,250, +172,195,106, 84,163, 26,213,248, 15,225,213, 99,180,210, 30, 56,247,211,250,119,195,144,157, 59,114,211,166,205,115, 55,111,217, +241,134,213,110, 15, 20, 32, 78,227, 88,251, 5, 35,135,239, 93,181, 97,201,121,124,195,219,187, 94,227,141,191,174,249,118,227, +134,159, 58,129,231,234, 19, 64,178, 64,224,188,140,225, 70, 87, 70,178, 42, 28, 52,243, 12,235,186,191,179,196,146,159,111,220, + 92,213,103, 45,249,113,217, 36,229, 8, 90,183, 98,206, 98,146,164,122,112, 28, 47,226, 57,230, 49,231,176,254,203,162,141, 59, + 4,151,163,220, 80, 80,193,191,197, 2,136,141,142,142,238, 16, 29, 29,221, 6,192, 74, 56,207, 80,188,241, 58,245, 98,203, 55, +116,253,114,218,151,103,191, 0, 17,194,243, 2, 88,142, 79, 17, 91,204, 93,171,104, 38, 40, 44,172,142,194,193,112, 47, 5,192, +151, 14,132,127, 74,180,220,107, 42, 0, 4,185, 72,180, 0,231,106,186, 95, 95,186,200,178, 11,179, 50,211,118,254,252,175, 79, + 39, 0,168, 13,224, 50,128, 53,255,169,122,119, 88,245,121,255,238,247,134,117,216,102,167,223, 61,132,204, 88,113, 0, 65, 59, +183,114, 16, 56, 59,120,214,158,197, 50,142,217,213,125, 95, 53,170, 81,141,106,252,199,212,172,245,101,253,166,255, 91, 82, 88, + 88,248,196,128,194,138, 15,233,117, 5,249,249,143,140, 0, 94, 90,185,103,126, 77,187, 49,143,244,123,241, 72,191,247, 85,159, + 55,229, 38,106,129,196,209,175,153, 12, 87, 2,217, 47, 21,127,254, 17,228,229, 61, 48, 33, 15,109, 95,183, 90,182,109,221,242, +112,199,142,157, 34,129,164, 68,188, 64,137, 89,129, 16,177, 60, 33, 98, 24, 30, 54, 7,195, 56, 88,150, 1,199, 58,192,115,140, +192, 59, 24, 56,119,135,255, 39,144, 2, 96,198,255, 84,189,255, 39,192, 50,142,217, 96, 28, 0, 76,213, 93, 93, 53,170, 81,141, +106,252,119, 17,174,255, 30,162, 85,141,255,213,120,146,240, 56, 62,178,186, 24,170, 81,141,106, 84,163, 26,255,203, 73, 86,233, +111, 0,206,216,243,110,229, 60, 80,149,213, 4,221, 94, 33, 65,103,170,109,190,182, 77, 17, 0, 9, 0, 21,128,202, 92, 91, 61, + 81,245, 13, 43,255, 39,242,254, 53,128,219,213,245, 94,109,179,218,102,181,205,106,155,255,107,109, 86,102,187,122, 53,227,191, +153,128, 85,219,172,182, 89,109,179,218,102,181,205,106,155,213, 54,255,239,217,252,255, 25,227,203,248, 0,168,118, 29, 86,163, + 26,213,168, 70, 53,254, 15,194,219,187,158, 10,120, 26,215, 91, 41, 20, 62, 13,252, 0,192,156,247, 32,167,186,244,170, 81, 6, + 74,159,115,248, 92,140, 22,249,138, 6, 69, 36, 45,249, 82,161,246,126,160,116,247,206,248, 63, 94,184, 68,120, 45,229,228,238, + 29,107, 31,136, 8,149,247,175,202,131, 10,223,240,223,253,235,180, 77, 85,106,194, 39, 35,160,133,252,117, 18,161,212,132,250, +170,130, 90,253,169, 14,108,212,235,223,144, 71,105,195,134, 13,219, 53,108,216,176, 29,128,127,228,148, 98,133, 38,124,120,205, +186,145, 23, 53, 97,205,207, 41,253,234, 13,254,167, 19,172, 10,168,235,173, 10,106,185, 87, 85,163,105,161, 42,160,169, 94, 85, +179,229, 5,181, 79,131,176,202,158, 11,234, 55,191,254,236,237, 49,219,131,250,205,175, 95,214,191,123, 70,173, 82,255,176,227, +209, 60,239,190,255, 82, 85,247, 43,175,134,160, 55,134,123, 4,116,250,194,187,170,207, 5,134, 71,198,214,106,212, 33,183, 70, +189,182, 49,174, 62, 83, 51,162,221,173,144,134,111,228,212, 12,111,119,163,186,228, 93,131,204, 55,180,157,204, 51,248,168,212, + 51,248,152,212, 43,180,243,235,218, 11, 8, 8,144,215,175, 95, 63, 42, 50, 50,114, 66,215,174, 93, 63,107,222,188,249,248,144, +144,144, 30,255,147, 19,125,133, 38,124,134, 77, 68,228,217, 68, 68,158, 66, 19, 94,233, 98, 25,165, 38, 98, 46, 65,114,153, 4, +201,101, 42, 53, 17,115,255, 91,234, 74,234, 23, 30,162,208,132, 47, 83,251, 55,188, 38,215,212,235, 91,213,231, 61, 61, 61,123, +248,250,250, 14, 40,249,120,122,122,246,168,126, 3, 94, 25,165, 85,172,215, 86,180, 40,145, 84,113,121,196,152,143, 27, 47,156, + 53, 93,182, 98,195, 1,172,152, 55,237,190,205, 84,212,240,191, 49,231, 62,161,109,110, 80, 36, 85,179,244, 53,142,231,210,243, + 18,175,181,250, 39,236, 71,212,146,143,253,246,171,145,159, 15,127,183, 91, 72,183, 62,159, 18,113,137,150,131,174, 83, 52, 52, +219,181,119,127,208,197,243,231, 86,109,216,176,254, 71, 45, 27,177, 76, 36,165,215,232,211, 98,139,170,146, 6, 55,223,176, 80, + 90,233,115,241,205,254, 31,251,223, 60,179,117, 19,103,231,187,155,243, 74,157,254,253,234,240,173, 83,167, 78,107,138,162,188, + 39, 79,158, 44, 6,128,229,203,151,215,229, 56, 46, 63, 33, 33,225, 58, 94, 97,243, 83, 39,193,140, 24,185,114,241,236,205,189, +122,245, 70,102,158, 9,139,150,173,125,235,196,145, 93, 67, 76, 57,143,246,252, 19,117,226,225, 81,219, 13, 98,245,189, 79,191, +250, 81, 19,245, 86,107,202,104,101,113,226,226,237, 14, 91,215,254,120, 13,104,208,198,144,247,160,220, 61,197,120,179,110,166, +159, 74,136,226,205, 58, 0, 24,254,210, 96,175, 98,186,249,202,185,168, 0, 41,125, 59, 31,168,244,208, 71,143, 90,111,156, 20, + 73,165, 33, 36, 73,130, 36, 0,146, 36, 64, 17,132,243,156, 80,135, 37, 37,227,225,165,158,255, 13,239,137, 58,184, 77, 54, 40, +218,155, 36,158,165,143, 32,139,191, 5, 65,159,253,232,178,247, 63,240,223,184, 55,174,235,209,232,141,186,166,141, 23, 18, 11, +148,116,199,207,142, 18, 2,249, 83,234,165,101,119, 92, 34, 0, 50,153,231,225,195,135,125,163,162,162,220, 53,141,250, 95,112, +229, 25, 9,101,108,120,228,200, 33,113, 84, 84,207, 42,180,207,240,238, 32,201, 45, 4, 32,226,121, 97, 57,197, 11,187,140,249, +241, 9, 64,213, 78,159,146,107, 34,198,146, 16, 92,238,103,120, 16, 55, 44,185,113, 27, 94,181,112,105,169, 91, 87,145, 88,252, + 89,104,120,147, 22, 25,201,143,111,152,140,134,101,172, 77,119,161,202,134, 24,246,203, 51,151,110,246,162, 69, 34, 34,170,107, + 91,202, 6,156,123,157, 74,247,243,243, 27,176,122,245,234,176,118,237,218, 1, 0, 88,150,117,219,189,123,183,255,156, 57,115, +148,241,241,241,251, 94,209,108,160,175,175,111,176, 68, 34, 9, 4, 0,187,221,158,161,213,106, 83, 1, 84, 58,241, 87,250,133, +249, 64,192,143,151, 46, 94,164, 1,160, 67,135,142,115,131,223,252,196,147, 18,171, 44,101, 22,135,221,160, 44, 74, 56, 55,245, +234,223, 87, 8, 0,136,108,219,110,186,194,167,193,154,255, 73,101, 75,166,137,104, 75, 2,159, 71,118,232, 54,104,232,176,145, +100,163,122,193,232,209,189,203,215, 22,224,112,149,218, 12, 77,203,175, 93,187, 86,135, 36, 73,138,101, 89,107,100,100,100,234, +235,164,171, 70,120,187,191, 8,144, 65, 14,214,254,171,246,201,141,185,192, 75, 7,199, 80,238, 65, 45,190, 5, 69,143,227,121, + 62,205,144,122,163,253,255, 66, 69,235,229,114,174,170, 37,146,150,124, 54,252,131,143, 26, 79,253,226, 27,217,167, 43,162,113, +116,237,244,188,255, 86,146, 5, 0, 20, 73,213, 60,121,234,164, 70, 33,161, 0, 0, 70, 43,139, 94, 81, 81,149,143, 8,181,218, +156, 39, 9, 34,162,228, 40,113,142,117,200,104,145,196, 74, 56, 9, 18, 8, 0, 62, 53,106, 69,251,177,151, 21,195,223,237, 22, +178,101,199,233,244,212,244,252, 42,119,106, 4, 37, 70,100,199, 30,232,214,189,167,251,181,191,255,250,113,253, 47, 63,207, 96, + 29,204,207, 60,195, 47,179, 22, 60,206,172,180, 51,247,175,215, 82,162,242, 57, 49,104,194, 28,111, 43,233,133,239,231,173,244, +185,120,124,219,133,140,180,102,124, 74, 74,154, 85, 32,136,251,133, 5, 89,159,153,178, 19,226, 92, 45, 50,149, 74, 21,166, 82, +169,154, 53,109,218, 84, 54,109,218, 52,209, 91,111,189,245,140,178,143, 31, 47, 62,127,254,124,192,146, 37, 75,122,223,189,123, +215,106, 52, 26,239, 24,141,198, 39,168, 66,160,189,191,191,239, 39,239, 12,236,139, 46,131, 62, 6,199, 19, 24,255,209, 84,156, + 60,190,111, 34,128,127,132,104, 49, 10,183, 57,227, 38, 76,243,141,108,221,156,250,113, 91, 28,228, 18, 26, 61, 91, 69, 16, 31, + 76,158,233,177, 97,213,143,191, 33, 15,157,202, 82,178,120,179,110,102, 99, 31,251,176,126,237, 66,113,104,187,125, 24,186,126, + 5, 82,225, 62, 55,237,208, 55, 15, 1, 32, 44,106,178, 90,202,105, 87,215,240,160, 52, 82, 78,187, 58, 44,106,242,153, 39, 39, + 86, 27, 42, 74,139, 72, 42, 13,217,190,109, 91, 61, 79,181, 24, 52, 73,128,162, 8,208, 20, 9,171,157,195,144,119,135,253, 99, +205, 92,174,169,215,155,116, 30,150, 13, 30,248,221,146,251,232, 88, 85,234,132,160,196,222, 71, 14,237,167, 53,238, 82, 80, 20, + 1,138, 4, 40,146, 64,114,142, 5, 99,199,126,224,254,186,132,189,215, 27,154,214, 95, 14,141,232, 25,217,216,171,233,206, 43, +132,123,100,175,161,222,121, 86,197,251, 59, 14,158, 27, 38,116,152,250,183, 32,240,139,211, 47,175, 60, 85,145, 17,155,205,150, +211, 51,170,151, 27, 65, 43, 21,103, 14,108,234, 72,147, 4, 24, 78, 0,203, 9,224,138,207, 70, 37,138,103, 48, 36, 73, 64,224, + 5,140, 27, 55, 22, 61,163,122,153,121,150, 79,119,189,147, 35,183,156, 56,243,167,175,141,225,177,100,245,134, 31, 77, 58,237, +143,137, 15,189,147,141,186,188,169,150,220, 71, 46,159,131, 65, 66,104,149,246, 36,102,194,182, 35, 87,209,184, 97, 3,112,188, + 51,157, 17, 53,149,216,118,244, 42,234, 71,212,119,166,155, 23, 16, 30,164, 66,235, 86,173,129,151,142, 38,115,149,100,169,191, +239,244,246,200,217,125,134,140,129,198,215, 23,164,192,244, 57,115,116, 91,159,223,127, 90,252, 37,107,213, 47,169,146, 49,129, +123, 58, 46, 8, 60,255,218,170, 83,141, 26, 53,124, 91,183,126,182, 29, 35,203,178,168, 93,187, 54, 50, 50, 50, 34, 94,101,158, + 22, 16, 16,240,246, 15, 63,252,160,233,221,187,183,200,223,223, 31, 0,144,157,157, 29,120,226,196,137, 22, 63,252,240, 67,110, + 86, 86,214, 81, 84,176,163, 15,199,144, 98,146, 6, 37,147, 41,156,121, 4, 65, 78,251,100, 84, 83,191,128, 26,101, 30,228,174, +213,102, 75,190,250,248, 28, 65,211,226,226,251, 65, 10, 2, 79, 84,160, 18,117, 19,137, 68,101,122, 40, 28,148, 91,164, 32,114, +255,144,164, 72,103, 99,101, 25,109, 97,234,173, 6, 85, 80,226, 26,137, 36,226,159,223, 25, 58,166,253,224, 65,253, 17,224,235, +142, 51,151,239, 98,226, 39,159, 51,172,131, 89,246, 74,157, 7, 69,209,185,185,185,201,158,158,158,254,175, 63,222, 18,161,167, + 79, 30,215,156, 57, 27, 61,125,233,138, 85,147, 28,118,150,225, 5,225,233, 57,198,114,185, 84,212,189,207,187,110,154, 58,145, +178, 85, 63,124, 40,250, 95,168,104,173,255, 71,136,150, 68,174,126,247,187,175, 38,203,230,108,189,138,163,107, 39,230,153,245, +121,190, 79,103, 10,110, 30,183, 76,250,162, 22,175,146, 66,149,111,120, 59,130,162, 39, 16, 20,165, 36, 72, 66,194,115,124, 26, +107,183,207,181,228, 63,202,122,221,220,243,188,128,189,127,229, 86,141, 0, 9,168,187,101,231,126,141,159,135, 20, 86, 7,135, +161,195, 71, 98,243,230,205,106, 95,119, 9,172,118, 22,139,151, 46, 53, 24,147,143,106,146,211, 10, 51,186,245,253,252,212,147, +164,220,152,212, 44,235,174,170,166,205,230,224,160, 55,179, 48,219, 72,212,107,212, 26,139,151,213,151,165,166, 36,126,190,233, +247,223,166,220,191, 79,109,230, 41,114,182, 53,235, 65, 90,153, 47,157,127,227,158,110,158,222,219, 7, 78,152,231,241, 40,151, +134, 0, 7, 18,220,100,120,247,253, 41,110, 97,254,114, 40,101,148, 71, 98, 74, 70,192,180, 47,191,188,252,132, 19,218,232,181, + 79, 18, 43, 75, 79,173, 90,181, 6,245,233,211, 71,241,197, 23, 95,136,130,130,130,240,251,182,221, 33, 29,122, 14,233,155,153, +149, 19, 36, 8, 2,252, 52,154,180,113, 31, 12, 57,124,236,216,177,148,180,180, 52,209,162, 69,139,218,238,223,191,191, 97,118, +118,182,203, 51, 83, 78, 16, 96,181,113,224,138, 7, 72,173,206, 86,101,126, 26, 24, 24, 40,205,200,200,176,149, 82, 25,136,103, + 66, 33,209,179,107,167,182,244,186,227, 73, 48, 90, 57, 40,101, 34, 36,229,152,209,170,121, 19,226, 87,142,109, 86,150,193,177, +239,190, 61,211, 79, 37, 68,245,107, 23, 10,141,167, 2, 27,215,204,195,161, 43,137, 81, 57, 70, 2,171, 5,106, 66,128,148,238, +174,228,179, 86,191,213,170,142,127,151,150, 33,184,222,170,142,255,197,155,113,241,242, 33, 75, 39,103, 24, 69,103, 10, 79, 76, + 49,148,221,241,144,240, 82,139,177,225,100, 10, 20, 50, 26, 74, 25, 13,165,212,249, 77,146,196,235,205,106, 3, 26, 4, 81, 60, + 55,150,162,232,177,195,222, 29, 82, 99,196,176, 33, 2, 40, 18,187,247, 30,238,191,117,235,150, 44,198, 97,255,141, 35,169, 13, +229,181,159,231, 10,148, 4, 52,238, 18,124,249, 91, 12,220,228, 34,168, 21, 34,184, 41, 68,232,210,212, 23, 20,249,202, 73,244, +156,216, 63,172,247,196,129,181, 58, 71, 4,171,234,221, 73,208,221, 31, 59,247,198,138,243, 69,157, 63, 91,179,188,161,183,177, +200, 78,127, 63,109, 28,157,158,153,217,121,247,225, 11, 93, 56,251,152, 56,214, 97,250, 70,123,119,119,153,170,112,122,220,149, + 22,129,145,131,101, 14, 35,115,239, 78, 92,122,157, 66,155, 20,177,201,122, 40,101, 52, 84, 37,101, 43,163,161,148,137,160,146, +209,200, 76, 79, 66,129,137,186,156,225, 77,118,198,133, 43, 85,218, 38,223,234,224,112, 59,209,136, 90, 17,205, 17, 16, 80, 3, +246,222,239,213,250, 59,122,239,193,107, 23, 14, 44, 48,103, 63,252,198, 85, 59,219,142, 92,197,244,169, 19,110, 18,192,173,226, + 65,186,197,247, 11,215,182,252,113,250,199,207, 93,155, 54,123, 85,203, 87, 87,178,212, 51,187, 12,252,104,118,135,238, 3, 97, + 40,200,193, 95,167,118,161,103,159,119,240,222,152, 79,225,225,225,179,120,217,220,175,238,176, 54,125,244, 75,125,174,127,253, + 55,155, 52,110,176, 53,176, 70,141, 32,158,119,158,242, 33, 8,128,209,160,195, 87,159,141, 3, 47, 8,104,214,162, 77, 23, 89, +135,238,130, 80,124, 26, 72, 94,126,158, 41,238,225,253,110,214,220,184,191, 93, 46, 75,171,149,209,106,181,184,125,251, 54,226, +227,227, 17, 27, 27,139,252,252,124,184,187,187, 27, 77,166, 42,237,253,230,214,180,105,211, 17,209,209,209, 50, 79,207,103,135, + 52,216,237,118,168,213,106,140, 24, 49, 66,212,163, 71,143,192,183,223,126,123,116, 76, 76,204, 54, 0,250, 50,211, 83,240, 56, + 83,237, 23,241, 75,167,183, 58, 77, 2, 0,185, 91, 64,226,234,223, 15,199, 86, 56,161,117,175, 17,210,190,253, 27,117, 32, 8, + 32, 32,172, 52,231,199,103, 87,160, 18, 41,175, 94,189, 26, 70, 81, 20,253,108, 12,226,241,211,198,157,245, 79, 95,186, 55,104, +225,226, 37, 50, 55,165, 20, 90,157, 29, 31,190, 55,208,229, 49, 88,238, 23,209,187,125,251,142, 7,127,156,253, 29,173, 82, 42, +113,234,239, 39,152,252,217,151,214,172,228,152, 37, 2, 47, 90,107,214,198,231,190,230, 80, 41,224, 31, 64,189,154, 42,168,251, +245,148, 77, 28,213, 79,102,103, 56, 20,153, 24,216, 28, 28, 56, 94,128,206,196,224,126,170, 1, 62,110, 85, 63, 34, 76, 16,132, +214, 0,124, 1,104, 9,130,184, 94,250,119,201,132,174,132, 27,191,240, 59,175,120,124,240, 6, 96,135,115,165,254,211,230, 83, +252,187,188,235, 37,207,223, 7,208,160,216, 38, 7,224, 26, 65, 16,133,229,144,173,151, 84, 46,250,200,145, 35, 66,159, 62,125, +158,246,248, 47,254,126, 17, 82,177,168,134,210,221, 23,130,240, 0, 4,241,236, 54,141,127, 96,254,146,101, 43,188, 62,249,104, + 66,138,190,168, 32,164,248,242, 25, 87, 6, 11,154,160,150,117,122, 35,178,199,164,143, 62, 66, 68, 88, 77, 49,199,113, 66, 76, +124, 34,179,105,195,198,247, 47, 94,145,172,208,167,199,204, 44, 37, 65, 86,105,217, 39,199,115,233, 47, 42, 88, 28,207,189, 56, +187,125,249,144,106, 2,240, 80, 73,240,203,241, 36, 8, 2, 64, 64,128,187, 82,132, 29,231,211,145,120,115,159,190, 79, 51,189, +105,196,194, 89, 93, 58,247,158, 18,125, 63,193,186, 43, 55,215,122, 18, 64,118, 69, 54,203,238,208,121,216, 28, 28, 24,150,197, +158,195,135, 17,213,165, 45,218,183,111,139,142, 29,218,211, 55,110,222, 29,243,209,164,113, 65,120,182,186,227,169, 77,153, 95, +221,214, 42,119,159, 93,131, 38, 45, 82,223, 75,103, 65, 83, 64,168,191, 28, 94,106, 49,236, 44,129,100,173,163,248,205,241,192, +228,105,179,189,166,127, 62,233,152, 94, 43,105, 12, 60,112, 84,148,119,179,217, 44, 25, 57,114,164,136, 97, 24,199,136, 15, 63, +237,145,157,173,237,255,211,202,127, 73, 53, 26, 63,152,173, 44,110,198, 62,110,240,227,143,179, 67, 15,159, 56,127, 96,214,151, + 19, 15, 70, 69, 69,185,239,220,185,147,175,172, 60,159,155, 33,230,228,173,217,184,117,207,230,229, 75,230, 35, 46,165, 16, 27, +214,173,133,192,177,191, 84, 82, 84,165,109, 10, 35, 71,142,148, 31, 56,112,160,102,122,122,186,222,108, 54,107,159,211, 35, 72, +130,206, 41, 48,195, 71, 45,129,152, 38,225,231, 41,131,198, 93, 10, 17, 5,144, 4,193,149,101,115,195,174,163,115,121,179, 14, +135,182,219,135,109, 92, 51, 15, 99, 62,249, 22, 49,121,146, 19,164,194,125,238,199,195, 6, 77,247,149,115, 81, 53, 60, 72, 77, +151,150,181,160,148,137, 49, 99,202, 72,180,185,153,172,201, 40,226,191,213, 90,168,230,179, 79, 60, 61,172,251,204,243,226,136, + 83,193, 82, 43, 68, 56,177,117,113,174, 73,167,213,149,184,228,236, 54,107,138,139,205,248, 76, 25, 51,219,233,205,155, 52,154, + 55,105,252, 88,242,141,118,109, 4,146, 20, 33,207, 96, 39, 4, 1,248,108,242, 68,124, 60,113,156,127, 90,102,238,247,107,215, +254, 50, 51,250,180, 48,199,164,125, 56,171, 34,155, 36,225, 84,129, 84, 50, 26, 42,185,147,184,168,100, 52,172,118, 14, 4, 1, +202, 35,184,133,142,112, 42,185,153, 5, 41,229,206,192,159,179,233, 21,220,232,236,233, 68,117,253,194, 93,133, 87,146, 50, 99, +231,222,188,155,115, 13, 64, 65, 80, 71,143,209, 14, 86,128,209,202, 34, 41,199, 12,214, 33, 16, 99,122,133,160,246, 96, 34, 98, +254,198, 91,155,143,223,133, 91,169, 78,255, 57,155, 25, 87,247, 88,189, 27, 15, 28,186,124,213,186,235, 75,230,125, 75,229,233, +236,224, 5, 1, 50, 9, 5,185,132, 46,254, 80,176,152,116, 88,251,243,175,217, 44,136, 65,184,112,129,173, 74,251, 4, 47,188, + 55,176,119,199, 29, 4, 32, 33, 72,113,122,141,144, 90, 33, 93,251,190, 47,235,218,111, 36, 56,214, 62,253,230, 37,225,156, 57, + 55,238,172, 43, 54, 27, 55,108, 0, 2,184,101,202,141,159, 8, 0, 74, 77,248, 47,245, 35,234,183,124,241, 90,221,186, 17, 45, + 93,169,247,167, 74,169, 76,253,137,167,151,239,183, 17,141,154,107,114, 10,109,132,218,187, 38,146, 30,221,198,246,159,191,223, +194, 91,237,179,207, 30,221, 53,111,197,134,253,239,118,141, 26,136,141, 63,253,107, 70,126,214, 83,162,117,166,148, 90,245,222, +166,223,214, 7,137, 36, 82, 48, 44, 15,134, 19,156,223, 44,135,130,130, 66, 48, 44, 15,153, 66, 13,150, 39,192,112, 60, 24,150, +135,205,206, 42, 39,142,124,251, 35, 43,240,119, 89,233, 12,172,223,233,164, 88, 42, 13, 17,224, 60,187, 86, 16, 4, 36,101, 91, +200,128,128,128,109, 0, 32,149, 74, 33,149, 74,193,243, 60,110,198,105, 63,241,137, 8,159,132, 98,130,199, 57,236, 41, 69,201, +127,246, 44, 47,239,254,254,254,125, 95, 36, 89, 86,171, 21, 70,163, 17,151,174, 92,119,255,109,243,158,168,164,148,244, 48, 94, +112,183,169, 53, 97, 61, 13,185, 79,250,150, 87,158,134,156,184,143,220, 34,199,145, 95,124, 60,186,238,170, 77, 71,174, 61, 62, + 57,183,194, 56,173,218, 93,191,182,127, 49,225,157, 86, 11, 87,110,120, 84,248,231, 47, 83, 43,171, 35,154,166, 69, 90,173,246, +233,251,189,250,215,237,173,110,197,101, 12, 88,177,124,133,236,230, 19, 3,238, 37,101, 98,116,183, 96,231, 12,199,133,122, 87, +250,133,249,132,214,169,179,109,237,202,133,244,163, 76, 43,214,236,187,134,232,131,191, 92,202,206,253, 59, 10, 57, 89,150, 87, +233, 67,254, 1,162, 85,174,205,115,119,243, 96,180,178,176,217, 89, 48,188, 0,189,153, 65,110,145, 29,122,179, 3, 70, 11,139, +209,221,131,203,124,174, 18, 62,226, 75, 16,196, 17, 65, 16,250, 8,130,208, 13,128,164,228,183,115,204, 38,142, 20, 19,178,231, +126, 79,159, 62,253,155, 5, 11, 22,196,150,220, 91,114,189,228,222,138,174,151,122,222,123,198,140, 25,141, 23, 46, 92, 56,191, + 93,187,118, 59,254,250,235,175, 68, 0,133,174,186, 15,233,210,153, 57,114,228, 72,101, 5, 29,230, 96, 28, 82, 55,185, 8,161, +181,131,241,193, 55, 27,125,254, 88, 56, 54, 87, 38,161,169,227,199,143,123,229,219, 85, 32, 73,202,229, 41,138,202,183, 94,123, +177, 88,114,116,233,210,165, 24,214,183,131, 60, 53,143, 49,222, 77,181,228,152,236, 96, 53,190,225,146,185,243, 23,170, 22, 46, + 90,252,241,145, 67,124,145, 49,231,254,226,178, 93,124,173,110, 80, 68,169, 24, 44,130,128,192,115,233,133,201,215, 91, 1,192, +235,196, 98, 25,173, 12,168,226,216, 26,130, 0,204, 86, 22, 20, 69,228, 22,197,237,186, 63, 98,206,220, 46, 91,118,156,206, 20, + 72, 15,131,201,148,164,128,243,204,193, 42,195,106,231, 96, 99, 56,196,222,185,137,142,145, 13,209,190, 85,125,152,173, 28,204, + 54, 22,181,235, 68, 0,128, 79,153, 21, 71,145,137, 2,199, 88, 5,129, 83,247,105,237, 11,141,135, 4, 1,158, 82, 72, 37, 52, + 24, 22,176,216,121, 88,237, 28,146,115, 45, 48, 88,228,104,210,105, 72,168,119,192, 13, 91,118,178,252, 64, 65,234,141, 65, 21, +146, 83,142,195,166,109,123,234,102,102,230,244, 63,118, 96,171, 84,171,103,112, 55,217,132,220, 34, 27, 64,249,226,135,249,107, +164, 95, 79, 29, 63, 96,211,246,189, 41, 93, 59,180, 77,169,106,158,205,218,184, 45,187,118,239,249,165, 79,159, 1,242,216,191, +143,225,209,237,179,243, 76,185, 85,138,207, 34,155, 53,107,198,142, 31, 63,222, 48,127,254,252,160, 67,135, 14,213,214,106,181, +183, 1, 48, 30, 30, 30,245,195,235,134,220, 57,117,226,120,224,219, 3,134,136,210,243, 44,112, 87,136, 17,162, 81,224,202,165, +147,140, 68, 34, 42, 51,222,164,216, 61, 56, 28, 93,191,194,161, 43,137, 81,177,249,178,243,227,198,142, 78, 57,117, 49, 46,127, +245,230, 83,255, 10, 84, 49,183,101,188,118,245,141, 86,117,252,167, 79, 30,137, 5,171,182,224,194,205,184, 92, 19, 25, 48, 47, +203,198,158, 46, 95, 74, 7,104,138,128, 90, 46,130, 73,175,213, 37,220, 58, 17,254, 15,201,212,163, 79, 29,216, 66, 22, 24, 24, +164,229, 89,137,204, 2, 3, 56, 94,128,135, 66, 12,150, 23, 80, 84,144, 71,108,221,178, 25,215,175, 95, 33, 65,145, 31, 2,152, + 85, 97,129, 18, 78, 87,161, 74, 38,114, 42, 66,114,231, 55,195,241,136,168, 91, 7,235, 87, 47,115,243,209,248,225,205,142,174, +199, 70,171,189, 67,154,237,248,125, 53,206,255,117,235,173, 11, 43,214,180, 86,213,240, 93, 69, 16,220, 18, 8,176,218, 28, 28, +116, 69,133,144,216,211,208, 38, 80, 11, 47, 5,135,100,125, 0, 98,178, 31,169, 42,235,240,243, 99,246,223, 38,132, 1, 51,247, + 28,142, 94,208,179,251, 91,136, 73,214, 67, 46,161, 33,147, 80,144, 73, 40,136, 8, 14,203,126,254,133, 41,212, 25,250,228,199, + 30,204,123,133,246,121,166,120,246,235, 36,119,156,209,119,203,170,153,127,140,251,106, 81,207,168,129,239, 19, 49,215,207,125, + 99, 6,206,186, 54,209, 19, 92,186,198,243,174,143,113, 50,181,207,202, 41, 95,207,157,210,163,207, 16, 80, 20, 13,134, 97,255, +137,233,136, 0, 0, 32, 0, 73, 68, 65, 84,176,119,231, 22,252,190,230,135,135,118, 99,254,251, 0,120,123, 46, 53,126,215,150, +159,135,124,245,253, 50,162,113,179, 54,109,207,101,189,124,188, 39, 79, 17,235, 70,141,157, 48,212,207,207, 79,253, 76,209, 18, + 16, 30,209, 16,189,251,189,131,147, 7,247,227,126,236, 93,240,130,147, 48,241,188,128,162,194,252,108,150,177,111, 42,215,227, + 33,147,133,108,252,125,115, 61,146, 36,158, 30, 32, 63,245,163, 15,236, 19, 63,251,230,205,222, 61, 58,197, 74, 40,232,147, 83, +179, 60,174,220,122,208,132, 23,169,130,198, 78, 91, 38,182,218, 56,232,204, 12,142,109, 40,159,235,200, 60,131,219,213,106,217, +123,236,196,239,214, 75,165, 20,233,104, 20, 30,148,216, 41,178, 81, 90,112, 13, 31,195,143, 11,215,180,185,252,247,173,222,239, +142, 24, 43, 27, 93,191, 37, 81,195, 91,174,254, 96,196,192,166, 28,235, 24,101, 46, 72, 43,119,127, 65,145,194,179, 40,184,118, + 93,243, 51,197, 40,124, 31, 33, 32,244, 57,230, 65, 32,209,146, 19, 63, 8, 0, 2,106, 4, 91, 69, 82, 55, 67, 21, 20, 24, 1, + 0, 86,253,186,189,213,157,248,204,113,203,151,175, 80,220,124, 98,192,237, 39, 58, 72,197, 36, 28, 12, 15,194, 69, 81,155, 23, +168, 9,223,206,152,238, 86,104,226,112,254,174, 22,177, 55,206, 9,118,163,117,132,130,117, 27, 4,141,122, 20,128, 58, 0, 18, + 8, 66, 88,103,202,241, 63, 8, 92,168,242, 65,167, 60,239,156, 47,187,249,134,133,114,180,180,183, 72,162,108, 71, 16, 66, 35, + 66,128, 39, 32,100, 20, 20,143,169,174, 50, 53, 83, 78, 60, 22,205,255, 30, 43,127,219,143,204,124, 43,220,185, 52, 28,220, 48, + 23, 95, 44,216, 6,139,173,252,168,134,202,248, 72, 89,196,232, 69,194, 85,242,119,201,125, 11, 22, 44,232,243, 66,221,244, 41, +167,206, 94,186,175,228,249,133, 11, 23,206, 47,245,239,102, 87, 73,214, 83,162, 85,146,169, 74,200, 86,184,111, 64,200, 95, 7, + 15,236,243, 44, 52, 58, 32, 19, 83, 8,174, 93, 23,179, 86, 31,244,237,213,202, 7,121, 14,119,108, 95,191,164,192,106, 54,236, +116,169,179,208, 68,180,149,171,148,199,246,237,221,143,176, 96,141,120,235,165,130,164, 91,137,150,167, 82,175, 94,155, 34,169, +237,102,166, 7, 13, 28,168, 56, 27,125,238, 51, 35, 80, 38,209,162, 8,170,230,175,155,247,106,212,114, 17, 8, 2, 48, 88, 88, +140, 27,245,206,235, 15, 99, 2, 79,141,125,127, 52,136, 98,146,165,207,207,198, 55, 95,127,100, 85, 50,143,238,167, 38,167,102, +116,235,251,197, 89,189,145,176, 14, 29,249,209,245,251,241, 11, 10,205,230, 87, 59,228,199,102,231, 96,115,240,120,242, 36, 1, + 83, 71,119,135,136, 34, 65, 81,188, 51, 88,154, 45,191, 49, 26, 51,227, 11,224, 47, 30,188,101,233, 39,191,214,240,211,120,171, +148,114, 65,165,144, 18,141,234,215, 19, 71, 70,182,151,212,142,104, 42,190,244,192,130, 84,173, 5,137,153, 58, 72,253,154,211, +195,186,244,194,150, 21,211,222, 42, 72,189, 65,226,229, 32,197,231,112,250,252,213,190,191,253,188, 92,154, 83,228,192,195, 84, + 35,178, 11,173,200, 42,180, 33,187,192, 10,149, 92,132,142,253,198, 75,143, 30, 92,215,183,107,135,182,171, 94, 37,223,137,137, + 73, 71,147, 51,178,134, 52,109,209, 6, 91,254,248,189,131,135, 71,109,183,162,162, 36,189,171,181, 51,119,238, 92,201,194,133, + 11,233,213,171, 87,235, 35, 35, 35,253,103,204,152,209, 51, 55, 55,247, 90,173, 90,181, 34, 78,238,219, 20,221,188, 99,255,214, +224, 29,190, 29, 58,117, 22, 75,121, 26,167,142, 28,113,236,218,185, 53,223, 98, 49, 76,172,144,112, 40,220,231,230, 24, 9,248, + 6, 6,198,170, 36, 92,119,154, 44,138, 47, 60, 49,101,115, 33,176, 47, 44,106,242,153,115, 55,226,226, 91,221, 76,214, 68,223, +124,156, 91, 96,118,132, 63, 57,241, 69,133, 29, 47, 69, 16, 16, 81, 36,212,114, 26,100,113,175,170,170,209,244, 49, 8,194,183, + 68, 57, 37, 64, 20,127, 3, 4,129,204,194,212,219, 46,196,108, 16, 2, 47, 0,113,233, 38, 24,173, 78,105,190,166,143, 2,218, +156,116,252,180,106, 19,110,221,184,142, 30,189,250, 97,237,175, 91, 49,110,212, 16,107,101,179, 31,146, 44, 86,180, 74,169, 89, + 42, 57, 13,128, 64,145,137,193,222,203,105,168, 19, 74,186, 60, 48, 0,128, 90,165,128,206, 96, 1, 41, 86, 35,225,230, 49,197, +241,115,127,207,152, 57,103,249,151,133, 89,119, 83, 31,223,187,132, 8, 31, 29, 66, 3, 29,136,205,118,195,141,252,218,136,168, + 27, 6, 82,124,221, 37,219,121,177, 77, 22, 29, 36,247,246,105,213,188, 97,187, 16,141, 7, 44,118,174, 88,213,162,240,251,198, +205, 72, 78, 74, 31,155,127,255,224,173,127,130,209,154,114, 19,181, 82, 77,221,143,239,253,125, 54,113,224,136,143, 17, 16, 24, +220,172, 40,245,182,139,131,151,107,164,138,115,145,104,137, 21, 30, 51,166,126,251,175, 41, 61,222, 30,140,171,151,206,226,118, +108, 2,218,182,109,141, 94, 3,134,193,160, 47,168,191,123,243,138,238,172,217,112,146,150,178, 83,218,180,239, 66,240, 28,135, + 71, 15, 99, 18,202,178,101,201,138,187,125, 37, 43,206,237, 57,247,148, 79,253,102, 42,119,175,219, 54, 7,135,140,140,116,252, +249,215,249, 22,150,172,184, 42,109, 32, 44, 21, 83, 56,117, 43, 23,142,226, 51, 76, 59,118,234,110, 23,147,182, 14,243,150,111, +140,204,202,204, 34,149,110, 62,188, 87, 96, 3,113,128,212, 97,187,243, 68, 39,118, 48, 60,194,106, 40, 43,180,233, 91,163,238, +252,105,211,166, 54,160,196,114, 24, 76, 54,123, 86,102,134,255,250,237,231,140, 15, 30,222, 11,172,169,113,119,251,215,138,117, + 98,189,149, 64,174,206,134, 2,131,158, 24, 49,225,171, 26,191,173, 89,240, 94, 69, 68,171,140,112,145,208,163,167, 46,213,247, + 84,139, 9,163,149,229,243,245, 14,110,196,128,215, 91,116, 89, 76,178,198, 47, 95,182, 66,113,235,137, 1,119,158,232, 32, 19, + 83,144,136, 73,216, 25, 30, 46,190, 78,164,191,198,127, 98,251, 86, 77,112,242,118, 30, 40,138,132,197, 80,104,166,145, 31,223, +234,173, 30,138,150,109, 34,209,249,173, 78,120, 28, 31, 23,124,228,208,222,174, 87,254,188,144,205, 58,194, 63, 49,105,227,247, + 87, 73, 88, 48,155, 41, 70,226,255, 65, 64, 96,173, 55, 6, 13,251,192, 61, 36, 56,144,208,248,120,131, 21,104,140, 31,245,142, +203,111,190,147,152, 3, 11,231,204,128,205,102,135,175,135, 4,130, 0,108, 92, 53, 11,118,187, 29, 53,188,165,208,153,202, 63, + 77,174, 50, 62, 82,158, 10, 85,165,216,147, 82,100,172,162,235, 4, 65, 28,153, 62,125,250, 55, 0,132,233,211,167,127, 83,242, +123,193,130, 5, 22, 0,153,149,184, 14,215, 63, 71,180, 74, 50, 87,254,219, 45,142,240,241, 14,184,114,234,228, 9,247, 3,119, +120, 92,221,127, 3,111,183, 13,128,152, 38,161,112,175,129, 59, 73, 58, 28,221,247,115,209,193, 29,235, 50,108, 54,219,226,202, +125,205,117, 91,169, 20,202,147,127,108,217,201,251,120,123,147, 63,157,210, 62,201, 55,176, 79, 93, 90,241,127, 31,226,111,156, + 92, 31, 32,128, 56, 33,147,201,234,218,237,118,207,202, 42,118,227,169,148,226, 32, 94,226,159,232, 91, 65, 80, 20,183,101,235, + 22,248,184, 73, 96, 99,120, 76,255,242, 83,203,232, 30,170,162, 17,239, 14,235,210,185,247,148,104,145,178,222,217,246, 45,234, + 9,205,155, 55, 47,162, 40,202,165, 80, 10,141, 70, 51,139, 36,201,225, 18,137, 68,109,183,219, 13,118,222,170, 48, 89,237,176, + 58, 0,179,217, 10,145,216, 73, 22, 69, 20, 1,139,213, 14,179,197, 94,241,139,145, 29,115, 25, 64,184,190,148,166,116,246, 65, +152,100,219,238,131,159, 14,126,119,232,204,192,102, 3, 84, 73, 89, 58,136, 9, 7, 90, 55, 8,192,185, 19,251,133,244,228,248, +169,149,145, 44, 0,200,213, 22, 4,249,250,250,225, 86,162, 17, 25,249, 22,100, 23,147,172,172, 66, 27, 12, 22, 3,154,134,212, + 64,145, 78, 23,244,202,229, 11,236, 63,121,242,228,144,222,253,135, 98,202,151,179,223,220,240,243,146,187, 74,137,104,140, 41, +231,209,121, 87,136, 86, 76, 76, 76,193,215, 95,127, 93,231,215, 95,127, 37,223,123,239, 61, 75,147, 38, 77,100, 35, 71,142,124, +115,243,230,205, 50,133, 66,102,185,115,233,208,204, 15, 39, 79,239,191,126,229,220,102,133,133,133, 4,203, 48,199, 29,133,133, +211,141,149,144,185,180, 67,223, 60,252,225,137,227,253,238, 29,124, 15,121, 41,200, 70, 82,193, 62, 12, 13,102,237,196,131, 89, +142, 39, 39, 86, 27,228, 67,150, 78,206, 44,226,191,181,146,154,121,149,145, 44, 0, 32, 41, 2,118,150,131, 90, 46, 2, 73,146, + 37, 36, 62,224,247,157,199, 21,190,238, 18,136, 40, 18, 52, 69, 64,111,102,144,167,119,224,227, 15, 92,221, 33, 68,224, 89, 78, +128,197,206,194, 92, 60, 59, 52,232,243, 48,227,203,207,209,171,239, 64,124, 56,241,115, 20, 90,128, 27,137, 6, 56, 24,166,210, +151,130, 36, 72,152,109, 44,198,244, 8, 65,129,209, 1,147,133,133,157,229,161,144,208, 16,209, 36,148, 50, 26,110, 10, 17, 32, + 8,226,146,206, 68, 36, 18, 89, 25,134,217, 82,193,140, 30,181,131,252, 96, 97, 72,180, 25,186, 4,221,218,133, 35,246,242, 94, +250,194,213,123,161,159,125,249, 45, 62, 29,215, 23,123, 30,214,129,151, 38, 4, 42,165, 28,140, 64, 2, 16, 92, 12,216,155,197, +147,142,129,195,127,249,117, 99,220,143,223, 79,151, 21,153, 8, 72,197, 20,162,207,158,193,149,191,111,172,204,187,127,112, 11, +254, 65,136, 4,210,207,205,205, 13, 50, 9, 5,187,195,102,119, 61,116, 65,128, 0,180, 80,106,194,127, 41,158,241,183,224,120, +148,113,173,114,162, 69,203,220,166,127,242,229,143,243,123,188, 61, 24,167,142,236,193,238, 61, 59,185,118, 81, 99,169,173,191, +255,140, 55,187,245,195,155, 61,134,226,248,254,205,159,155,120,162,225,248, 41, 51,231,116,236,210, 27,167,142,238, 65, 78,118, +250, 82, 87,211, 75,137,136, 41, 93,186,247,133,213,206,161, 67,215, 62, 56,113,120,255,100, 20, 47,178,112,125, 16,123,161,127, + 6,201,126, 62,117,138, 40,183,200, 46,210,234,237, 72,215,154,145,148, 99,198,193, 29, 27, 4,215,251, 11,123,235,142, 77,107, +138,198, 47,138, 78, 11,170, 25, 96, 19,217, 44,242,248,132, 39,245, 63,252, 96,180, 40,180,110,125, 50, 87,103,131, 86,103, 67, +158,206, 6,163,149, 69,221,154,245, 72,134, 37,218, 85,181,158,125,220, 37,162,181,135, 19,225,166, 20,161,125,253, 87, 95,104, +203,243,252, 51,146,181,220, 73,178,238, 38,234, 32, 21, 83,144,138, 73, 72,197, 20, 88, 78,112,105,226, 34,215,132,247,254,248, +147,143,106,216, 89, 32, 95,103, 7, 77, 17,208,248,120, 42, 91, 55, 27,142,141, 75, 38, 3, 0,198,125,253, 19, 62, 28, 51, 18, + 13, 26, 53, 65, 81, 97,161,255,240,193,189,151, 3,216,239,106, 90,143,157, 58, 31,124,234,226,173,175, 63,158,246,131,234,221, +190,157,169,219, 79,116,200, 42,176, 33, 33,222, 80, 37,229, 13, 0, 88,142,135, 0, 1,155,118, 30,129, 92, 66, 67,171,115, 64, + 16, 4,204, 93,189, 11,106,185, 8, 89,133, 78,119,127, 69,168,144,143, 84,160, 72, 85, 65,109,236, 3,103, 44,151,175,171,138, +214,130, 5, 11, 98, 23, 44, 88, 80,166, 66, 86,138,100,189,218,161,210, 98,177,178,190,155,183,207,213, 83, 39,142,169,247,223, +225,112,238, 78, 62, 6,119,168, 9, 99, 65, 42, 22,127,249,110, 1, 1,193, 78, 82, 84,145,205, 98,222,103,177,152,230, 1,112, + 84,216,104,252,195, 91, 40,101,170, 51,107,215,255,193,250,104, 52,216,114,169, 32,189,208,196, 50,207,220, 86, 12,113,227,228, +250, 80,150,103,162,172, 57,143,175, 87, 54, 19,231, 5,136, 23,252,124, 16,128, 0,158,231, 33,240, 60, 68, 50,149,210, 39, 44, + 50,167,184,163,147,209, 36, 97, 45,221, 3, 8, 60,155,158,151, 88,177, 12, 74, 0,112, 87,136,176,243, 66, 6, 0,228, 80,134, +155, 15, 70,188,235,116, 23, 90,237, 50,125,163, 58,117,132,214,173, 91, 23,201,229, 46,109,127, 69,249,249,249, 93,155, 57,115, +102,253, 15, 63,252, 80, 42,145, 72,192,178,172,215,186,245,235,249,245,243,198, 97,208,228,181, 16, 75,164,176, 88, 29, 16,137, +104, 20,234,140, 40,210,155, 97, 48, 51, 85,111, 65, 79,158,216,181,192,162, 3,251, 37, 3,123,170,154,182,145,144, 98,180,140, + 8,192,185,147, 7,132,171, 39, 54,142,179,228,198,255,225, 98, 67,132,209,202, 32, 51,223,138,140,124, 43,178, 11,173,200, 46, +176, 33,187,208, 10,130, 32, 96,181,179,175, 53,112,153,114,227,118,111,249,227,183,126, 54, 7,134,117,236, 49, 16,159,255,176, + 54,100,203, 47, 11,207, 36, 10,228, 27, 46, 6,218,114,177,177,177,201, 31,124,240, 65,179,237,219,183, 83,141, 27, 55,182, 60, +120,240, 64, 81, 76, 34, 29, 42,149, 66,190, 97,205,130,147,109,218,180,217,153, 17,255,240,108,177, 63,189,210,142, 61,164,211, +251, 82,185,227,214,248, 96,101,251,158, 97,254, 10, 4, 43, 13, 61,235,171,238, 44,206,239,242,233,124,109,244,202,220, 44, 27, +123, 90,107,161,154,103, 24, 69, 46,197,224, 49, 54,107,202,160,193,195, 64, 17, 36, 28, 86,115, 74, 73,227,210,184, 75, 48,107, +235, 67,168,100, 34,168,229, 52, 84,114, 17,222,108,232,133, 42,244,103, 2,195,241, 48,219, 56, 88,108, 44,172,118, 22, 62, 65, +158,248,117,203,110,164,230, 90,112,240,122, 30,226, 82, 12,168, 87, 83, 9, 65,168,188,155,228, 57,198,212,247,157,247,212, 20, + 73,128, 34, 9,178, 97,253,112, 20, 24, 29, 16,211, 36,196, 50, 57,148, 82, 26,110,114, 17,196, 98, 17,114,115,115, 97,179,217, + 16, 28, 28, 44,171,152, 10, 10, 80,171,228,168, 23, 90, 3, 14,134,197,177,139,247, 49,111,234, 32,116,239,216, 10,132, 72,133, +135,182, 22, 80,123,169,193,147, 36, 28, 44, 15,187,131, 3, 64, 90,203,179, 23, 20, 20,212, 69,169, 84, 42,205,102,179, 33, 53, + 53,245,124,118,220,254, 84,142,234, 63,254,196,169,232, 45,125,122,117,199,173,187,177,216,179,255,208,165, 60,111,221,180,146, +103, 26, 53,106, 20,233,227,227,163,202,207,207,215,199,196,196, 92,123,213,121,129, 64,146,159,181,123,243, 45, 24,139,114,145, +147,150,228,242, 44,186, 65,136, 26,223, 45, 88,219, 50, 34, 60,162, 37, 39, 56,137, 87,195, 96, 53,190,248, 97, 85,203, 58,245, +194, 91,150, 44, 8,105, 16, 92,241,182,108,180, 66,221, 99,212,135,159, 47,232, 55,248,125, 68,159, 58,132,101,243,190,220,162, +116,247,109,224,229,233,222,188,113,100, 15, 92, 58,115, 8, 50,181, 63, 60,189,253,223,124,111,204, 39,221, 6,191, 55, 1, 87, + 46,157,193,202,133,223,108,230,108,134,109,174,164, 85,169, 9,245,109,214,162,205, 8,181,151, 31,138,116, 6,168, 61, 53,104, +208,180,245,136,251,119,108, 95,155,114, 19,181,175, 76, 58, 4, 1, 54,135,128, 66,163, 3,105, 90, 11,146,179,157, 68,139,231, +171, 16, 19,196,241,132, 74, 70,211, 94,204,227,224,123,103,162,133,144, 32, 63, 98,209,156, 47, 41, 7,100,208, 22, 57, 73,150, + 86,111,135, 86,103,135,209,202,192, 75, 73,131,231,248, 42,207,186, 11,141, 14,168, 21, 34,184, 43,196, 46,171,140,101,225,231, +223,119, 70,220,137,207, 28,176,108,217, 10,197,237,196, 82, 36, 75,228, 84,179,164, 98, 10, 28,207, 3, 46,188,241, 34, 90, 52, +165,127,239,110, 72,203,179, 56, 87, 45,147, 4,234, 53,105, 3, 31, 57,143,174, 67,167, 3, 0,250,246,118,134,182, 37,102,153, +112,248,170, 22,120, 62,176,187,226,190,216, 98,161,214,111, 61,250,217,238, 93, 59,220,173, 28,141,117,199,147, 97,182,177,144, +137, 41, 72,197, 20,228, 98,234,185,120,236,202,137,150, 51,230, 46, 53,143,129,217,106,133,222,194, 64, 0,112,237,177, 17, 22, + 59, 11,157,137, 65,100,125,207,215, 19, 66, 8,226,168, 32, 8,111,191, 72,136, 94, 36, 75,165, 20,169,178,108, 92, 47,109,163, +228,254,242,136, 92,233,152, 45, 0, 85, 90,193, 69,191,200, 28, 75,255, 22, 43, 61, 27,184,171,221,175,158, 56,126, 68,181,255, + 14,143,243,119,157, 36,139,177,228, 97,233,215,195,211,245, 69,121,157, 1, 60,113,245, 63, 83,248, 52,104, 42,147, 72,163,255, +181, 98,157, 67,227, 23,200,239,187, 90,148,171, 51,115,207,177, 9,206,102, 35, 5, 94, 16, 91,115, 30,187,228, 67, 32, 73,194, +241,195,228,129,224, 5, 1,179, 86,236,198,252,105, 67,161,146,191,167, 32, 8, 66, 97,178,178,152, 58,251, 55, 44,253,110,172, + 90, 33,165, 65, 16,206,152,168, 81,195, 6,186,214, 0,173, 44, 18,254,222,110, 52, 36, 30,121, 80,218, 93,216,246,205, 94, 55, +218,182,109, 91,228,233,233, 9,185, 92,254, 76,169, 40, 7,126,126,126,223,253,240,195, 15, 17, 19, 39, 78,124,186,217, 39, 77, +211,248,248,163,143, 72,142, 19,112,252,248, 70,248,214,106,129, 67,167,175, 34,170, 75,107, 24,205, 86, 20, 20, 25,192,131,122, +229,134,104, 40,202,139,206, 78,190,215,230,141,206,125,113,254,228, 1,225,234,241, 13,227,170,178, 71,143,167,151,103,218,205, +123, 9, 13, 8,194,203,169,104, 21,147, 44, 59,195, 35,196, 79,129,180,228, 4,120,184,187,167,185,106, 79,238, 27,209,159, 32, +133,137, 4,132,141,166,156, 71,187, 1, 8,166,172, 7,195,119,111, 91,127, 55, 54,230,246,188, 62, 35,166,208, 61, 6,127, 68, +253,178,224,147,111, 0,184,186,241,158, 35, 46, 46,238,254,216,177, 99,219, 95,185,114,133, 3, 96, 38, 8,130,161, 40, 74, 97, +183,219,197,157, 59,119,214, 61,124,248,240, 60,202, 14, 90,124, 14,111,126,176,219,135,144, 26,122, 73,120,199,240, 16,181,161, +123,231, 14,237,208,174, 81, 16,210, 58,180, 3,128, 41, 41, 70, 85,132,181,206,111, 59, 25, 86,126,236,151,223, 15,207, 31, 55, +180,219,212, 45,244,172,101, 89, 71,102, 85, 24,136,154,246,224, 66,207,178,104, 60, 77,145, 80,203, 69, 80,201,105,168,229, 34, +168,101, 34, 48,172, 80,149,153,163,192,176,188, 83,209,178,179, 48, 90, 88, 68,223,206, 65,182,206,142, 34,131, 3, 22, 7, 7, + 1,130,115, 54,234, 66,111,174,125,252,167, 71,201, 72,234, 17,220, 66,183,126,245, 18,183,189,151,211,159,174,232,115, 87, 72, +160, 86, 56, 87, 99, 95,188,120, 17,222,222,149,207,246,121,158,199,158, 19,215,176,108, 83, 52, 78,108,252, 10, 50, 49,133,166, +253,103,227,253, 1,109,193, 11, 60, 18,226, 98,115,234, 53,108,230, 71,146,114,144, 4, 1, 27,195, 3, 16,202, 45, 79,187,221, +238,157,154,154,170,175, 91,183,174,127,141, 26, 53, 6, 83, 20, 37,192,112,219,118, 96, 71,129,249,236,145,109, 10,147,197,198, + 41, 88,221,198,186, 89,150,183, 81,183, 46, 8,130, 16,220,220,220,196,209,209,209,198, 38, 77,154,248,190,226,171, 68,202, 53, +225, 43, 63,156,244,217,224, 58, 97, 97,216,189,109, 35, 4,129,216,235,234,195, 91, 15, 95,193,156, 25,207,175, 48,252,226,135, + 85, 45,151,206,158,242,220,181, 73, 51,150, 85,184,234, 80, 46, 85, 77, 27, 52,124, 60,110, 92,251, 11,139,103,127,177,195,102, + 44,120,159, 97,153, 33, 5, 89,137, 59, 66, 27,182,133,224, 48,224,212,174, 37, 24, 58,114,156,180, 71,159,193,184,114,233, 12, +230,127, 51,105,171,185, 40,247, 3,184, 24,228,204, 11,162,137,157,123, 14, 16, 89,108, 14,172, 90,244, 61, 38, 76,155,135,200, + 46,125, 69, 49,183,175, 78, 4,240,163,203,225, 16, 14, 14,157,155,248, 56,201, 51,195,227, 80, 34, 69,151,213, 2,105,138, 32, +155,135,121,192, 98,103,161,175,100, 82, 73,139, 69,217, 69, 58,125,173, 53,243, 63,163, 76, 86, 22, 90,157, 29,185, 58, 27,242, +138,158, 17,172, 60,157, 13, 90,157, 29, 34,154, 64,252,147, 20,144, 34,186,202,241,121,133, 70, 6,109,194, 61,157,239,232, 43, +122, 71, 24,218,173,237,137, 11,119, 6, 45, 91,182, 92,118, 39,201,128,187,137,250, 98, 37,139,130, 84, 68, 66, 82,252, 55,199, + 59, 99, 35, 43,130,155,111, 88,232,232, 81,239,117,117, 83,201,145,249, 40, 23, 52,229,220, 34,198, 93, 19, 4,119,169, 21,159, + 76, 26, 15, 31,111, 15,164,230,217,176,114,127, 60,238,222,127, 12,222, 82,181,108,175, 90,183, 35,234,195,143,191,240, 32, 69, + 18,108, 62,153,228, 76, 39,197,225,225,213,195,214,204,132,123, 38,163, 62, 95,128,192,185, 24,131, 76, 8, 44,231,108,110,243, +103, 77,199,142, 77, 63,225,228,205,220,167, 45,240,242,222,165,248,108,198, 92,228,233,237, 40,171, 93, 86,196, 71, 0,104, 75, + 41, 81, 47,253, 46, 69,142,202,250, 77, 20,255,182,151, 99,195,254, 2,185,178,191,112,221,254,130,189,178,246,254, 91, 95,169, +235,240, 37, 82,228,225,219, 88, 33, 83,254,117,252,248, 97,229,129,187,194, 83,146,229, 48,231, 9,243,166,244, 77,215, 23,105, +123, 84,137,100,249,214,107, 44, 85, 72, 47,204,156,187,210,230, 23, 88,139, 61,118, 91,159,111,176,114,236,203, 49, 8, 74, 78, +233,238,107,165, 37,210,101, 34,139,253,251,188,188, 7,166,202,148, 39, 94, 16,112,228,239,108, 8,130,115,138,180,235, 98, 6, +138,103,230,224,120,167, 91,229,244,237, 92,208,197,113, 40,174,202,223, 63,175,251, 73,255,118, 19,157,105,196,252, 89, 79,221, +133,145,205,156, 74,150,155,155, 27, 60, 60, 60,160, 82,169, 80,153,235,144, 32,136, 81, 31,126,248,225, 75,179,255,220,220, 92, +116,235,218, 25,171,127,250, 21,205,186,142,198,233, 63, 79,194,193,240,104,218, 48, 12,181,106,120, 34, 45,199,240, 74, 47,186, +210, 47,226,227, 54,157, 7,124,243,102,151,190,136, 62,177, 79,184,122,226,247,241, 85,221, 8,241,237,110,237, 15,207,153, 51, + 43,116,230,188, 53, 82,181,140,198, 3,163, 29, 36, 65, 32,196, 79, 1,111, 37,137,243, 7, 54, 91,135,246,109,239,242,230,120, + 65, 65,129, 91,150,174, 94,175, 92,186,112,118,231, 27, 55,137,104, 99,102,124, 1, 0,152,115,226, 22, 61, 4,238,215,252,235, +212,177,102,157, 6,194,175, 70, 88,247,196,156,135, 46,147, 13, 0,230, 39, 79,158, 36,206,156, 57, 51, 98,225,194,133, 2, 69, + 81, 60, 0,233,138, 21, 43,204,143, 30, 61,186, 13,231,210, 92, 84, 54,216,116,237,222,104,170, 74,194, 69,122, 41,200, 70, 97, +254, 10,180,107,228,244,138, 14,125,251, 77, 4, 5, 7,227, 73,182,185,121,129,153, 23, 25,237, 84,216,218,117,119,175,215,246, +161,198,177, 22,251,125, 0, 7,171, 90, 63, 4,158, 5,200,151,168, 89,106,185, 8,188,179,173, 84,137,104,217, 28, 28, 44, 54, + 14, 22, 59, 11,147,157,131,217,206,129, 23,156,239, 4, 65, 16,112,176, 60, 92,154, 54,191,208,246,221,188,124, 16, 86,155,128, +155,194,153, 54,183,226,237, 30, 8, 0,222,222,222,208,104, 52, 46,169,162,118,135,243, 21,183, 51,252, 83,183,190,221,193, 66, + 16, 4,196,199,199,125,149,156,152,216,191,110,189,186, 29, 27, 54,109,230,165,144,146, 0, 80, 46,209, 50,155,205,156, 90,173, +214,120,121,121,145, 25, 25, 25, 79,201,115,221,230,157,217,253,251,246, 98,208,160,129,198, 7,215,238, 60, 93,226,110,177, 88, +136, 55,222,120,195, 45, 40, 40,136,180,217,108,250,170, 86,147,210, 55,124,128,167,183,215,188, 81, 31, 76, 8,239,220, 45, 10, +231,206,158,194,193,125,219,255, 48,107,227, 79,185,106, 36, 34,162,254, 75,171, 14,235,212, 11,127,105,213, 97,173,208,122, 21, + 18,173,134, 77, 91,183, 21, 8, 26, 39,143,236, 18,172,164, 99, 18, 0,158,179, 26,118,237,252,249,187, 31,135, 79,156, 81,167, +119,191,225, 24, 53,242,125,208, 52,133,243,167, 15, 99,233,236,207,143, 26,117,185,163, 93, 9, 19,112, 74,111, 13,196,129,242, +160, 79,131,235, 52,198,205,171,151,144, 16, 31, 19,123,231,250,149, 70,117,155, 68,194,183, 70,200,167, 41, 62,212, 66, 60,120, +224,168,204,140,221,106, 77,121,127,244, 72,148, 94,117,216,174, 69,132, 55,241,226, 11, 0,192,108,200,117,108, 88, 50,245, 81, +201,170, 67,222, 97, 79, 41,207,174,174, 80,187,231,252,159,127, 79,235,255,118, 20,153,167,183, 59, 21, 44,157,189,248, 99, 67, + 94,201,223,122, 27,234,213, 80, 33, 46,246, 38,111,213,229,237,173,226,123,105,125,127, 72,207,251, 37,109,151,231, 5, 16,128, +181,202,110, 41,145,219,248, 69,139,151,201,238, 36, 26,113, 55, 73,239,116, 21,138, 40, 39,193, 18,145, 79, 73,151,115, 53,123, + 37,234, 16, 65,205, 31, 51,122, 24,242,244, 14,240, 60, 64, 83,100,241, 71,140, 84, 3,129, 52,131, 25,121,133, 90, 36, 38,167, +160, 40, 59, 1, 36, 73,194,167, 70,184,203, 59, 73,115,130, 36,192,108, 23,154, 12,126,187, 35,189,239,175, 44, 40,164, 52,108, +134, 28, 28,223,185, 68,107, 51,234,231, 89,204,198,125,174,236,231,248, 44, 4,129,208,234,141, 86, 63,169,136,194,238, 77,107, + 48,228,253, 73,207,245,190, 95,125, 59, 7, 32, 9, 20, 20, 26, 64, 16,132,182,106,253, 18,113,189,162,223,175,168,140,189,182, +141, 50,200,214,203, 19,133,242,103,163,194,241, 83, 39, 14, 43, 47, 39, 75,113, 45, 46,171,152,100,105,249,185,147,223, 78, 55, +232, 10,122, 2,136,175,218,188,144,236, 57,116,204,180,216,176,240,134,182,115, 49,198,164, 34, 19, 83,110,156, 67,187,193, 51, + 99,111, 28, 93,221, 91,199, 60,249, 72, 25,208,144,227, 89,118,145, 69, 27, 63,187, 28,215,161,100,246,202,221, 79,221,134, 95, + 47,220,236,252,155,227,192, 9, 60, 4, 30,248,228,187,159,193,242, 28,120,142, 3,207, 9, 96, 56, 65, 81, 89,114, 53, 53,106, +237, 43,124,184,171,254,136, 31, 95,118, 23,122,120,120,192,219,219, 27,222,222,222,112,115,115,171,148,104,137, 68, 34, 21, 77, + 63, 95,212, 41, 41, 41, 72, 78, 78,134,155,155, 27, 4,158,129,157, 1, 26, 71,246,192,189,132, 24,156,185,124, 27, 2,207, 65, +169,170,250, 41, 47, 74,191,136,143, 90,191,213,127, 77,151,126, 99,113,122,223, 58,225,250,197,195, 19, 44,185,241,191,185,172, +208,115, 28,193, 48, 12,222,238,241, 86,202,173,216,199, 39,190,157, 54, 49,170,125,159, 9,210,118, 17,129,176,218, 57,164, 39, + 39,224,252,129,223,173,225,161, 1, 39,187,118,104,155,194, 48, 12, 56,142,171,116, 32,183,218, 29,121,148, 72,174, 28, 54,108, +132,232,250,181,107,123,149,190,245,118,115, 4,121,135, 16,248,166,132, 32, 12,106,218,180, 1, 28, 12, 15,179, 89, 95, 88,213, + 60, 27, 12,134,196,141, 27, 55,134,142, 30, 61, 90,209,176, 97, 67, 81, 66, 66, 2,150, 46, 93,154,111, 48, 24, 18, 93,181,113, +234, 98,220, 10,154, 40,124, 84,162,104,165,190,217, 14,195,250,188,137, 29, 71, 47,227,252,165, 43, 72, 49,170,110, 27, 89,250, + 64, 90, 74,166,173,145,151,126,111,191,118,181,168,221,155, 10,247,198,190, 53,253, 93, 65,144,158,202,187, 48,203,228,250,203, + 13, 24, 44, 12,220, 20,206,253,158, 74,148, 45,138, 32, 92,102, 68, 4,144,120,233,202,205,198,173,234, 53,196,173, 68, 29,114, +139,108,176,216, 88,240,188, 0, 30, 2,188,213, 18,200,196, 36, 82,147, 19,193, 11,142,164, 42, 14, 21,218, 78, 29, 59,209, 0, + 1,130, 16,104, 17, 77, 67,128,115,127, 69,185, 92,110,212,104, 52, 46, 41, 90, 14,150,197,160,168,182,136,108,221, 20,253, 39, + 56,247,204, 60,251,199,116,120,170, 68,216,177,229, 55,164, 93, 92,177, 37,180,221,196, 83, 49,247, 98,223,137,189,245,215,136, + 94, 45,229,205,253,233, 76,113,121, 50,169,201,100,218, 11, 64, 34, 22,139,163, 58,118,236,232,181,119,239,222, 34, 31, 31, 31, + 94, 34, 22,107,251,245,237,195,139,196,226,130,146,123,255,252,243, 79,209,132, 9, 19,212,133,133,133,169, 57, 57, 57, 87, 0, + 48, 21, 79, 4, 35,186,129,196,118, 16,132, 76, 37, 87,164,212,174, 29, 86,163,117,100, 91,247, 1,131,134, 64, 42,145,226,244, +169, 19, 88,181,124,225, 46, 99,214,131, 49, 85, 41,201,127,106,213, 97,122,106, 82,162,217, 98,107,210,184,213, 91,196,165, 83, + 7,166, 56,224,179,156,146, 58,150,116, 27, 52,169, 78, 98,166, 17,171, 22,124, 5, 79,119, 37,146, 18, 30, 90, 30, 61,184,247, + 51, 99,213,127,229, 50,201, 2,160,200,231,222,105, 55, 50,202,211,230,224,112, 49,250,168,149,103,249,168, 43, 23,142, 37,212, + 12,111, 45,107,220,186,171,103,222,193,223, 6,153,129, 29,149,217,201,120,248,178,130, 43,216,139,146,206, 70,159,113,247, 11, +105, 68, 17, 32,224,176, 89,161,125,114,157, 53,231, 60,212,235, 51, 98, 92, 90,133,155,159,134,239,102,252,240,175,143, 90,183, +106,165, 20, 32,123, 78,193, 42, 33, 88,121,122, 59,124,212, 18, 88,244, 90, 60,186,126,194,106,214, 82, 21,238,119,198,218, 77, +138,188,220, 28,201,179,112,134,248,200,138,238,207,203,205,145,176,118,147,162,242,161,142,130,155, 82,130,123, 73, 25, 79, 3, +223,165, 34,103,108,150, 68, 68, 61,141,211, 42,233, 11, 42,193, 91, 98,153, 7, 50,242,173, 32, 32,128,231, 88,176,140, 29, 6, +189, 30, 25,153,217,200,201,206,129,193, 80, 4,133,202, 19,141,155,183,129, 90, 41,195,157,243,187, 32, 8,130, 75,251, 26, 50, +132, 40,162,117,100, 7,105, 76,178, 51, 22, 75, 38, 18,112,120,251,194,124,163, 62,183,131, 49,235,209,163,170,246,197, 44,199, +157,185,123,255, 81,163,154, 1,181,137,219, 9, 58,108,249,117, 53,236,197,202, 38,195,112,136, 73, 53, 33,171,192,140,212, 39, + 15, 4,158,227,206,224,255, 8,232,242, 5, 64,208, 77, 27, 55, 64,143,247, 6,224,167,159,126,198,147,196,100,126,222,148,222, +169, 70, 67, 81,175, 42,144,172,110, 40,222,107,195,156, 19,183,200,226,217, 58,253,208,173, 2,210, 98, 23, 42, 12,240,145,249, +134,160,195,152,165, 39, 45,134, 2, 9,103, 51,211,135,183,140,217, 94,150, 77, 39,131,134,125,222, 23, 67,161,146,211, 32, 8, + 2, 37,238,194,181,115,198, 67, 33,117,250,150, 45, 54, 22,239, 77, 93,134, 45,203, 62,135, 0, 96,248,144,203,230,242,210, 9, +231,217,133,159, 4,224, 90,205,148,228,220,140,110,125,191, 56,107,117, 72,109,125, 6,142,190,209,170, 85,171, 34,185, 92, 14, +185, 92, 14, 55, 55, 55,120,122,122,194,195,195,163,210,188, 51, 12, 99,180,219,237,222, 18,137, 4, 60,207, 35, 41, 41, 9, 73, + 73, 73,208,233,116,208,106,181, 48, 25,245,236,181,179,187,233,198,237,122,163, 70, 88, 19,132,212,107, 6, 17, 69,128,166, 73, +156, 63,244,107,121,233, 44,155,100,117,234,183,182,107,255, 15,113,122,223,122,225,250,197,195, 19, 45,185,241,191,186, 90, 71, +197,238,158, 59,131, 6, 13,106, 50, 97,194, 4,241, 15,211, 38,156, 60,122,234,124,252,238, 35,235,251, 22, 22, 22, 5, 9,130, + 0, 15,119,247,180,161,125,219, 31,238,252, 70,235,148,179,103,207,242,219,183,255, 63,246,238, 59,174,234,234,255, 3,248,235, + 14,184,131, 11, 92,246, 30, 38, 67, 92,160,104,166,162, 56, 83, 75, 83, 83, 83,115,102,206,242,167, 13,115,164,137,166, 86,106, +238,180, 52,247,200,189,194,109,185, 35,149,139,226, 6, 4, 1,145, 61, 46,151,187,231,249,253,193,200,148,233,248,182,222,207, +199,227, 62,224,194,189, 47, 62,235, 94,222,247,124,206,231,156,159,116, 28, 14,231, 70,117,153,165,111, 82,185, 91,126, 57,253, +235,156,246, 29, 58, 98,253,230,159, 58,220,186,125,167,195,253,251,137,240,245, 15,192, 43,245,131,161,230, 56,226,215,115, 23, +160,148,231,110,169,205,114, 62,209,170,197, 41, 42, 42,250,109,208,160, 65,221, 46, 94,188,200, 29, 52,104,144, 58, 63, 63,255, +210, 99,173, 88,172,166,204,152, 31,222,206, 3,176,197,191,195,200,221,143, 12,242,201, 0,190,241,243,247,195,217, 11, 49,136, +185,120,249,251,124, 27,191,185,163,134,190, 55,182, 94,111,222,232,222,109,234,241,220, 28,109,176, 99,221, 18,222,225,152,212, +165,169, 5,230,245,223,156,155, 51,175, 54,251,168,226, 31, 71,137, 1, 17,141,156, 96, 52, 51, 88, 88,233, 27,174,157,200,170, +170, 55,222,167, 50,249,122,225,168,241,227,198,221,111, 26,214,252,163,161,239,141,183,110, 30,224,139, 43, 73,114,128,195,129, +147,135, 4, 89, 89, 89, 56,191,119,157,169,232,209,221,239,121, 60,203,151,117,216,158, 40, 74,187, 22,244,216,221,177,249,249, +249, 56,123,246, 44,202, 11, 44, 87, 87,215,170, 10,173, 63,101, 22,228,100, 94,154,183,120,109,196,152,225,111,163, 87,199, 38, + 56,119,245, 62,244,101,227, 53,149, 95, 74,158, 18,243,131, 96,242,160, 0,253, 7,253, 26, 40, 52, 70, 65,234, 23, 15,138,207, +163,116, 14, 86, 75, 21,203,169, 47, 44, 44, 60,124,239,222,189,118,205,154, 53,171,119,244,232,209,194, 91,151, 79, 76,122,124, + 33, 62,253,244, 83,219, 53,107,214,216, 48,198, 46,233,245,250,228, 90,173, 59, 23, 59,100,177,177,206, 6,163, 5, 23, 46, 95, +111,212, 37,162, 57, 44, 12,184,122,245, 42,214,111, 88,175,189, 17,127,237, 91, 85,142,199,151,213, 20, 47,149,110, 79,243,243, + 93,117, 88,145,153,245, 40,245,219, 83, 71,246,110,123,181,195, 91, 24, 50,241,203, 47,207, 30,249,105, 78,139,246,189,184,141, + 94,237, 6, 89,204,175, 56,125,244,248, 66,131,178,112, 14,106,238, 59, 82,233,114, 10,197, 54,255,215,184, 69, 7,164,167,165, +226, 65,226,205, 45,218,194,164,204,180,251,188, 45,153, 25,105,227,235, 55,137,192,197, 19, 59, 39, 85, 83,104, 85,123,204,251, +186,138,215, 29,141, 62, 60, 56, 35,227, 7, 15,149, 70, 43,100,140,105,133, 2,126,182, 45,183,100,151,162,214,203,121,199,144, +151, 89,175,223, 59, 67,199, 31, 89,185,114,153,149,187,131, 13,178,139,180, 80,104, 12, 40, 81, 27,192,229,112, 16,228, 37,129, +186,164, 16,231,246, 46, 54,234,149, 69,131,128,251,134,170, 50, 37,110, 33,243,139,146,126,157,248,233,132, 51, 16, 72,125,189, + 94,233, 60,163,218,214,186,146, 71,215,222,250,116,194,207, 33,140,177, 46, 18,183,144, 18, 85,238,189, 89, 85,173, 59,135, 83, +250,250, 30,210,201, 23, 6, 83,233,248, 99, 38, 11, 96,182, 88,202, 90,249, 0, 86,113, 62,159, 83,195,186,115, 44,187,142, 92, + 66,102,142, 28, 26,189, 17, 58,189, 9, 6,163, 25, 92, 30, 15, 14,142, 14, 8,126, 37, 28, 82, 7,123,228,100,103, 34,230,151, +195, 72,136, 63,119,137,195, 48, 87,147,151,248, 75,109,246,145,181,216, 33,196,211,203,131,155,165,208, 67, 44,224,225,218,185, +163, 6,163, 94,247,109, 45,139,172,167, 50,229, 5,133, 75, 63,154,242,217,187,155, 54,110,246, 8,173,111,143,140,124, 13, 50, +242,180, 40,209, 26,203, 10, 49, 11,116,202,124,196,255,186, 57,219,172, 45, 89,138,255,136, 42, 11, 45,147, 65, 91,178,239,248, + 21,231,233,115, 22,243,146,238, 39, 27,231, 79,238,153,161, 81, 42,222,172,115, 75,214, 99, 54,125, 88,127,231,203, 88,137,167, + 78, 23, 50, 11, 44,140,225,231,203,217, 21,167, 11, 45,101, 61, 47,227,238, 87, 63,141,224,227,115, 23,118,124,115,210,169,248, +123, 37,219, 53,154, 28,233,221,164,111,139, 0,128,199,227, 85,220,202,251,102,105,181, 90,125, 13,167, 80,182,254,248,227,143, +211,198,143, 31, 47,124,248,240, 33,238,223,191, 15,185, 92, 14,145, 72,132,227,199,143, 27, 97, 49,125, 27,127,241,192,131,123, +178,147,179, 67, 90,118,243, 9,109,243, 38,108,108, 36,224,179,218,119,198,180,113,107, 48,184,101,135,222,223,117,233, 59, 6, +167, 15,252,200,174,158, 59, 60, 65,147,151,176,174,174,219, 82, 46,151,223, 2,144,248,237,183,223, 54, 95,191,126,125,253, 41, + 83,166, 36,111,253,110,206, 74, 0, 40, 40, 40, 0, 0,196,197,197,177, 9, 19, 38,232,180, 90,109, 74, 81, 81,145, 12, 53, 92, + 0, 1, 0,154, 60,155,175,214,175,254,166,233,195, 71, 89,111, 7, 52,109, 5,215,250,173,224, 17,244, 26,138, 74, 12,184,146, +148,137,228, 59,191,224,206,133,189, 71,213,182,166, 57,168,227,248,198,205,154, 53,243,229,114,185,175, 40,149, 74,143,198,141, + 27, 55,147, 72, 36,113,205,154, 53, 11,231,243,249, 25,177,177,177,169,117,201, 74, 59,183, 89,231,223, 97,228,138,180, 18,187, + 78,201,217,234,240,180, 18,187, 56,181, 80,250, 73,222,175, 43,116,155,120,222, 75,153, 33,255,214,158,205,138,125, 59,214, 45, +225, 13, 29,251,169,249,102,177,227,100,190, 88,112,170,110,205,213,220,172, 15, 70,244,249, 99,120,135,178,150,172,178,239,107, +213, 76, 95, 92, 28, 95, 12, 96, 90,252,109,171,239,110, 78, 30, 55, 47,236,213,136, 97,145,111, 12,226,154,172,109,113,226,192, + 15, 44, 37,254,215, 61,124,102,158,169,169, 69,170, 17, 16, 0, 0, 32, 0, 73, 68, 65, 84,197,108, 0, 53,158, 14,210,235,107, + 83,100, 61,189,140, 15, 37, 29,247,252,180, 97,228,190, 3,251,191,238,219,187,143,243,234, 47, 6, 98,241,218,131,144,136,133, + 96, 22, 11, 6,118,242, 29, 48,123,116,195,183,124,221, 69,222,251,206,100,156,159,184,236,230, 52,181,218,144, 80,139,150, 24, +150,159,159,127,193,214,214, 54,175, 93,187,118,173,133, 66, 33, 39, 63, 63,159,239,230,230,102,146, 74,165,250,140,140, 12,181, + 78,167,219, 7,160, 78,195,142, 27,140, 22, 60,200,209,226,208,254,125,184,126,249, 23,220,185,115,175,228,206,237, 59,171, 56, +124,182, 76,149,147, 88, 8,212,249, 3, 62, 44,149, 94,117,200,234,124,213,161, 89, 87,178, 99,235,247,243, 59,171,181,186,145, +205,218,246, 68,189, 70, 17, 92,131,209,140, 27, 87,207,224,204,222,101,139, 13,202,194,233,207,179,143,189,124,234, 7, 51,158, + 0,191,157, 61, 2,102,177,124, 15, 0,204, 98,249, 62,238,226,209,241,175,189, 57, 26, 78,110,245,154,201,211,227, 56,120,134, +209,195,173,249, 92,213,177,125,155, 14, 60,120,240, 0,119,239,222, 69, 82, 82, 18, 10, 11, 11,177, 99,199,131, 58,237, 31,117, + 81,234,169,132,219,220,238,253, 7, 14,249,121,192,224,225,162,250,193,161,220, 16, 31, 71, 56,219,242,113, 47, 41, 21, 9,177, +241,150,123, 87,142,106, 13,138,220,190,154,162,212, 42, 11, 63, 27,151, 70,238,128,121,122,249,220,133,109,218, 68,132,124,182, +224,235,214,206,174,110,149,190,143, 23,228,229, 10,166, 78, 60, 28, 18,243,251,111,181,154,235,208, 98, 54, 23,140, 29, 57,200, +194, 43,157, 40, 20, 21,237,212,101, 91,175,244,195, 84,233,207,153,197, 84, 99, 11,254,123,111,183,135,201, 98,129, 74, 99,128, + 66,165, 67,113,137, 22, 89,185, 5,184, 30, 31,143,115, 63, 31,198,253,123,215, 83,140,122,253, 73, 46,151,179, 87,147,147,112, +174,110,103,154,248,245,157,157,156,144, 82,168,132, 72,192, 71,106, 66,172, 78,165, 40,222,254,172,199,145,166, 32, 49, 43,151, +199,233, 54,104,208,224,227,157,187,247,150,190,218,182,171,141,139,189, 3,172,249, 12,137, 15, 50, 33,187,116, 92,149,124,253, +188,194,168, 87,246,120, 17,179,190,252,205,213,124,213,161, 65,167,122,235,221, 62, 29,246,243,120,124,129,197, 98,210, 25,244, +186,254,207, 83,100,189, 44,140,153, 51, 70,190,251,246,159, 62, 27,152, 44, 76,252,238, 59, 39, 52,143,127, 86, 48,154,153,205, +187,239, 92, 82,151,190,129, 84,221,177,207,211,211,169,103,249,220,133,105,105, 5, 87, 11, 11,117,103, 0,100,104,181,218,103, + 94,198,156,156,156,121, 11, 22, 44,232,165, 86,171, 27,118,236,216, 81,104,111,111,143,130,130, 2,156, 60,121,210, 24, 29, 29, +125, 59, 55, 55,119, 54,144,107,210, 32,124, 75,188,246,192,136,123,177, 39,103, 55,108,217,221, 39,180,237,155,181,127, 51, 19, +138,199,116,238,253, 62,231,244,193, 31,217,149,179, 7, 63,208,228, 37,174,125,142,205,106,208,106,181,151,181, 90,237,205,153, + 51,103,190,234,238,238,238, 62,123,246,108,145, 66,161,176, 90,189,122,181, 54, 63, 63, 63, 91,161, 80,196,160,154,254, 52, 79, +139, 51, 22, 63, 66,191, 99,251,126,236,196,246,253,248,186,131,139,119, 55,169,171, 79,160, 60,239, 81, 74,113, 94,230, 73, 0, +167,203, 6,138,172,147,230,205,155, 7,112, 56,156, 65, 0,154, 74, 36,146, 32, 91, 91, 91, 33, 99,172, 33,135,195,185,101,177, + 88,226, 27, 55,110, 28,125,251,246,237, 58, 13, 38,155,118,110,179,206, 55, 36,226,167, 66,181,197, 90,207,181,254, 41,237,220, +102, 29, 0,228,158,250, 76, 13,224,208,237,142,211,250, 29,142, 73, 93,121,171, 72, 58, 41,239,236,215,135,235,186,204,197, 25, +215,131, 94,212,241,175,205,186,157, 1, 96,100,124, 44,150,220,136,139,137,226, 48, 88,153, 97,154,175,201, 77,138,125, 17,249, + 86, 86, 86, 90,111,111,239, 74,175, 46, 20, 10,133, 90,157,174,186, 6,148,115, 38,101, 22,214, 3, 29, 54,239,223,189,121,228, +193,195,135,190,142,236,210,215, 89,228,227,131, 87,220, 56,216, 60,189,197,164, 95,226,242,174,244,254,236,252,154,228, 76,109, + 60,234,216, 31, 70,169, 84, 38, 0, 40, 82, 42,149,125, 24, 99, 15, 57, 28,142,111, 81, 81,209, 53,163,209,120,163,206, 5,129, + 5, 67,218,180,105,181,131,195,225,240,153,201,178, 40,198,138,247,147, 54,235, 78, 6,158,115, 90,146,208, 87,236,241,241,236, + 21, 45, 2,131, 26,180, 40,159,235,176, 73, 61, 59,140,155,182,164, 69,189,250,193, 45,254,152,255,176,198,110, 2,204,168, 46, + 26,181,127,195,162,243,113,191,159,249,220,197,179, 94,189,236,140,228, 59, 15,147,174,205, 51,107, 21,251,159,119, 63, 63, 72, +186,181,108,253,183,211,166,100, 61, 74, 89,175,206, 75,188, 9, 0,234,188,196,155,119,100,248, 34, 63, 59, 99, 74, 65,110,242, +183,207,186, 45, 84, 42, 85,230,246,237,219, 29, 34, 34, 34,184,238,238,238,200,203,203,195,153, 51,103, 44, 22,139,229, 81,157, +179, 10, 83,206,168, 10, 57, 78, 91,214,126,183,200, 90, 98,247,166,201,100,242, 98, 12,224,243,249, 89,122,181,226,120, 9, 87, +242, 25,138, 82,181,213,255,207,176,112, 0,112,203,231, 46,180, 88, 44,156, 69, 43, 55,167, 90,137,236, 42, 29, 12,209,168, 45, +177,177, 88, 44,181,158,235, 80,158, 46, 11,124, 81,175,111, 14, 99,115,155,181,108,253,185,209,104,208,150,189, 62,180, 0,180, +140,161,128,203,229,156,227, 89,140, 39, 20,207,241, 97,138,195,129, 61,227,240, 97, 39,230,131, 3, 14,148,197,133,172, 46,125, +178, 42, 45,136,115, 19,110,169,115, 59,248, 31,211,239, 30,241,235,169,163,239,152,205,230, 87,202,218, 12, 30,232, 52,170, 61, +202, 44,199, 45, 64,172, 9,255,126, 71,202,139, 45,206, 75,254, 67,181, 58,141,242,119,202, 12,169, 47,238,227,227,237, 62,226, + 65,106,238,149,228,135,234, 45,248,243,180, 58,207,179,156, 60,119,119,247, 47, 56, 28,206, 48,129, 64, 96,171,215,235, 85,140, +177,173, 57, 57, 57,243,240,212,228,191,225, 86, 98, 55,205, 8,129,200,102,150, 65,171,250, 77,157,155, 48,164,166,117,183,113, +109,208, 77, 36,145, 76,211,106, 84, 91,213, 57, 9,155, 95,240,246,148, 10,133,194,112, 91, 91, 91,171,252,252,252,203, 0,138, +255, 78,251,189, 89,179,102,126, 92, 46,247, 21,139,197,226, 14, 64,138,210,171, 66,242,249,124,254,163,178, 22, 45, 86,215,204, +118,239,237,113,233,242,122,147,143, 79,158,191,183,188,236,180, 98, 5,239, 1, 75, 69,195,222,236,244,233,150,253,135, 42,187, +234,240, 31,119,204,255,239, 50, 59,240,109, 61,243, 71,114, 5,210,249, 93, 66,180,234,252,204, 71, 19, 46,220,200,187, 12,160, +228,121,150,211,218,218,122,168,193, 96, 16, 91, 91, 91,107, 12, 6,195,246,191,203,186,139,221, 66,222,231,130,213,122,102, 10, + 11, 56,177, 79, 92,180,242,111, 57,150,120,161,161,161,237,173,173,173,253,204,102,179,141, 94,175, 87,107, 52,154, 7,169,169, +169,191,161,234,137,207, 95,234,114, 74,220,130,151, 89, 91, 11, 39, 3,128,193,160, 91,161,202, 77,252,184,186, 39, 86,243,248, +127,244, 62,114,121,165,101, 34,159,103,229,138,178,129,185, 45, 38, 83, 94, 78,202,213,224,191,112, 57,201, 51,238, 92,202,164, + 76,202,164,204, 39,113,105,123, 82,230, 95,153, 41,242,108,228, 43,242,108, 84,235, 65,151,171,120, 60,109, 79, 82,110,108, 37, + 55, 0,181, 24,176,148, 16, 66, 94, 2, 11,109, 2,242, 87,210,102,221,121,248, 50, 31, 79,254,115,170,236, 19,205,169,166, 42, +173, 75,147,224,179, 84,182,167, 41,147, 50, 41,147, 50, 41,147, 50, 41,243, 63,151, 89, 83,246, 63,241,148,228,216, 39,238, 31, + 1,240, 63,233,240, 79,205,170,148, 73,153,148, 73,153,148, 73,153,148,249, 95, 83, 81,120,113,105, 91, 16, 66, 8, 33,132,188, + 28,212, 71,139, 16, 66, 8, 33,228,249, 84,118,234,144, 10, 45, 66, 8, 33,132,144, 23,160,202,206,240,116,234,144, 16, 66, 8, + 33,228,249,148,183,104,121,226,137,225, 29,168,208, 34,132, 16, 66, 8,121, 49,178, 80, 89,235, 86,116,116, 52,171,236,123, 66, + 8, 33,132,144,255,133,127,120, 45,242,120, 75,214,216,178,251, 0, 30,107,209,162, 2,139, 16, 66, 8, 33,127,151, 98,235, 31, +166,188, 37,171,252,150,245, 84,161,213,171, 87, 47, 14, 21, 91,132, 16, 66, 8,249,171,252, 27,107, 17,238,147, 43, 72,187,153, + 16, 66, 8, 33,127,101,177,245,111, 90, 31, 26,222,129, 16, 66, 8, 33,228,249,120, 2,232,249,216,253,255,217, 20, 60,132, 16, + 66, 8, 33,255,118, 99,171,186, 79, 45, 90,132, 16, 66, 8, 33, 47,190,216, 34,132, 16, 66, 8, 33,255,100, 52,179, 57,101, 82, + 38,101, 82, 38,101, 82, 38,101,254,219,149,143,163, 5, 84, 53,142, 22, 33,132, 16, 66, 8,121, 38, 61, 81, 58,126,214,216,178, +175, 61,169,208, 34,132, 16, 66, 8,121,177,158,154,126,135, 10, 45, 66, 8, 33,132,144, 23, 91, 96,173,163, 66,139, 16, 66, 8, + 33,228, 37,163, 66,139, 16, 66, 8, 33,228, 37,225,160,234, 43, 7, 78,215, 33,231, 89,174, 62, 56, 77,153,148, 73,153,148, 73, +153,148, 73,153,255,185,204,154,178, 79,227,159,167,124,100,248, 35,248,163, 35,252,186,255,197, 31,166, 75, 95, 41,147, 50, 41, +147, 50, 41,147, 50, 41,243,223,110,236, 19, 95, 43,208,169, 67, 66, 8, 33,132,144, 23, 91,108,209, 20, 60,132, 16, 66, 8, 33, + 47, 72,149,167, 9,169, 69,139, 16, 66, 8, 33,228,249, 84, 57,169, 52, 21, 90,132, 16, 66, 8, 33, 47,167,224,162, 66,139, 16, + 66, 8, 33,228, 5, 22, 89, 99, 43,253,109,116,116, 52,163,109, 68, 8, 33,132,144,191,202,191,182, 22, 41, 95, 49, 42,182, 8, + 33,132, 16, 66,181, 72,157,121,226,143,171, 13,199,150,221, 7, 64, 87, 29, 18, 66, 8, 33,132, 60,175,158,248,243,149,135, 99, +203,239, 83,161, 69, 8, 33,132, 16,242,252,198, 86,251, 91, 58,109, 72, 8, 33,132,144,191,210,191,177, 22,225,208,110, 37,132, + 16, 66, 8,121, 46,149,181,102,173,163,205, 66, 8, 33,132, 16,242,114, 11, 46, 66, 8, 33,132, 16,242, 50,138,172,151, 61, 96, + 41,205,108, 78,153,148, 73,153,148, 73,153,148, 73,153,255,149, 34,235,241, 33, 30, 0,208, 85,135,132, 16, 66, 8, 33,207,139, + 38,149, 38,132, 16, 66, 8,121, 73,104, 82,105, 66, 8, 33,132,144,255,113,193, 69,133, 22, 33,132, 16, 66,200, 11, 44,178,254, + 84,108, 81, 31, 45, 66, 8, 33,132,144,231, 83,101, 31, 45, 14,170,190,114,224,116, 29,254,192,179, 92,125,112,154, 50, 41,147, + 50, 41,147, 50, 41,147, 50,255,115,153, 53,101,159,198, 63,223, 88,252,143, 6, 44,165, 75, 95, 41,147, 50, 41,147, 50, 41,147, + 50, 41,243,191,134,134,119, 32,132, 16, 66, 8,121,209,133,213,147,168,208, 34,132, 16, 66, 8,121, 62, 52,142, 22, 33,132, 16, + 66,200, 75,226,137,210, 86,173,242,175,225, 84,104, 17, 66, 8, 33,132,188, 24, 61, 81,218,170, 85,254,149, 10, 45, 66, 8, 33, +132,144, 23,168,210,113,180, 56, 0, 16, 29, 29,205,202,238,119,236,213,171,215, 57,218, 86,132, 16, 66, 8,249, 95,250,183,214, + 34, 21, 45, 90,189,122,245,226, 0, 56, 75,187,154, 16, 66, 8, 33,127,133,127, 99, 45,194,125,162,146,236, 72,187,153, 16, 66, + 8, 33,127,133,127, 99, 45,194,127,162,138, 36,132, 16, 66, 8,249, 75,252,131,107, 17, 79,148,118,132, 63, 82,246, 21, 40, 27, +242,129,198,209, 34,132, 16, 66, 8,121, 62,229, 87, 27, 62, 53,245, 14,181, 98, 17, 66, 8, 33,132, 60,159,202, 70,134, 95, 71, +155,133, 16, 66, 8, 33,228, 37,162, 22, 45, 66, 8, 33,132,144,231,247,120,171,214,255,172, 53,139,102, 54,167, 76,202,164, 76, +202,164, 76,202,164,204,255, 82,145,245,167,251, 52, 50, 60, 33,132, 16, 66,200, 75, 66, 87, 29, 18, 66, 8, 33,132, 60,159,242, + 43, 14, 31,191, 79,133, 22, 33,132, 16, 66,200, 11, 44,182,158, 66,167, 14, 9, 33,132, 16, 66,158,207,216,170,126, 65,133, 22, + 33,132, 16, 66,200, 75, 42,184, 56,168,250,202,129,211,117, 8,126,150,171, 15, 78, 83, 38,101, 82, 38,101, 82, 38,101, 82,230, +127, 46,179,166,236,211,248,231,249,203, 6, 44,165, 75, 95, 41,147, 50, 41,147, 50, 41,147, 50, 41,243, 63,139, 78, 29, 18, 66, + 8, 33,132,252, 13, 10, 45, 87, 62,159,255,185, 88, 44, 94, 35, 22,139,215,242,249,252,111, 1, 56,214,245, 15, 74, 36,146, 73, + 30, 30, 30,119, 61, 60, 60, 50,252,252,252,142,218,217,217,124, 20, 32, 68, 36, 0,171, 23,180, 62, 33, 0, 62, 18,139,197,119, + 68, 34, 81, 42,128,109, 0, 62, 2,224,242, 60,193,243,188,208,255,230,228, 62, 7,231,121,161,255, 19,191,234,233,238,238,126, + 1, 64,183, 23,181, 83, 6,219,160,235, 0, 9,210, 7, 72,144, 62,216,230,217, 63, 53,216,217,217, 13,243,244,244,140,113,118, +118,126,228,233,233,121, 73, 36, 18, 13,168, 99,132,155,187,187,251, 98, 95, 95,223, 4, 47, 47,175,229, 40,157,157,252,111,171, +189, 16,237, 91, 11,145,215, 70,128,146, 8, 1,214,180, 17,224,245,215, 1,155,103,140,107, 7, 96,175,189,189,253, 53, 62,159, + 31, 13,160, 95,217,241,213,143,207,231, 71,219,219,219, 95, 3,176,183,236,113,207,114,156, 46, 6,240, 8,192, 87,101,247,255, +207,215,215,183, 36, 44, 44, 44, 53, 44, 44,108, 83, 80, 80,208,240,218,134,217,216,216,188,238,235,235,187,207,207,207, 47,181, + 77,155, 54,133,222,222,222,247,124,124,124, 54, 11,133,194,142,244, 22, 71, 8, 33,127,127,111, 1,248, 26,192,170,248,248,120, + 25, 99, 76,198, 24,147,197,199,199,203, 0,172, 1,240, 13,170,110, 66,252,211,207,157,157,157,231,206,159, 63, 95,155,149,149, +197,242,242,242, 88, 66, 66, 2, 91, 54,107,154,165,187, 19,159, 5,184, 58,170, 61, 61, 61,239,251,251,248,236,108, 98,203,157, + 6, 32,176, 54,153,143,113, 20,139,197,151,103,205,154,165,188,112,225,130, 82,175,215, 43, 45, 22,139, 50, 51, 51, 83,121,250, +244,105,101, 68, 68,132, 18,192,199, 0,120,117,200,172,240,165, 23,206,177, 13, 95,176, 47,189,112,238,241,159, 55,108,216,240, +182,197, 98, 97,253,251,247,215, 1,240,174, 75,230,147,188, 1, 81, 19,123, 56, 12,176, 69,142,105,243, 60,198, 86, 79, 97, 3, + 36, 72,127,150, 76, 55, 55,183, 67,147, 38, 77, 82, 60,122,244,136,233,116, 58,150,158,158,206,198,141, 27, 87,236,230,230,182, +189,150,235,238, 28, 26, 26,154, 19, 19, 19, 99,145,203,229,236,236,217,179,150,166, 77,155,230,212,178,216,234,250,196,178,172, +243,242,242, 58, 90,151,155,155,155,219,250,186,238,163,215,132, 72, 55,200,206, 48,118,245, 36, 59,220,191, 13, 91,214,210,135, +245,115, 18,200,219, 9,240,127, 29, 42, 31,202,164,170,204,119, 58,116,232,160,186,113,227,134,185,160,160,128,221,190,125,219, + 50,102,204, 24, 45,128, 91, 99,198,140,209,222,190,125,219, 82, 80, 80,192,110,220,184, 97,238,208,161,131, 10,192,232, 58, 44, + 39, 23,192,198, 57,115,230, 48,198, 24,155, 63,127, 62, 11, 11, 11, 99,157, 59,119,102, 74,165,146, 49,198, 82, 25, 99,155, 76, + 38,211,200,218,100, 74,165,210, 97,147, 38, 77, 82,170,213,106, 86,206, 98,177, 48,185, 92,206, 86,173, 90,165,242,240,240, 56, + 90,197,135, 12, 58,229, 65,153,148, 73,153,127,183,204,127, 50, 79,148,246,211, 42,191,213,186, 97,226,221,105,211,166,149, 23, + 85,199,218,181,107,119,101,228,200,145,178,145, 35, 71,202,218,181,107,119, 22,192,137,216,216, 88,217,212,169, 83,101, 0,222, +173, 97, 71, 56,182,109,219, 86,158,157,157,205,130,131,131, 89,189,122,245, 88,118,118, 54, 99,140,177,171,239,180, 96,191, 52, + 2,123,120,254, 24, 59,121, 96, 47, 27,227,201,103,237, 61,165, 70, 79, 15,143, 2, 23, 23,151, 5,248,243,156,140,149,237,220, +183, 27, 53,106, 84,114,235,214, 45,101, 98, 98,162,114,238,220,185,202,206,157, 59, 43, 67, 67, 67,149,253,250,245, 83,174, 92, +185, 82,105, 48, 24,148,235,215,175, 87,218,219,219,223,170,164,216,122,230, 66,139,207,231,175,136,143,143,103,247,239,223,103, +101,173, 20, 85,101, 74, 29, 28, 28,122, 56, 58, 58,126,236,224,224,208, 3,128, 20, 0,130, 1,219,102, 82,248,253, 95,179,128, +134,209,239,118, 13, 92,213,245,213, 22, 3,236,184,114,227,119, 83, 24,235,239,247, 76,133,150, 84, 42, 29,246,209, 71, 31,149, +232,116, 58,166, 86,171,153, 82,169,100,106,181,154,149,148,148,176,119,223,125, 87, 33, 18,137,222,174, 41,211,197,197,101,222, +249,243,231, 77,217,217,217,236,252,249,243,236,232,209,163,108,245,234,213, 22, 55, 55,183,165,117,125, 1,122,120,120,156, 58, +121,242,164, 44, 46, 46, 78,118,249,242,101,153,209,104,148, 25, 12, 6,153,193, 96,144, 69, 71, 71,203,246,239,223, 47,219,181, +107,151, 76,175,215,203,244,122,189, 76,167,211,201,234,215,175,127,188,174,251,168,149, 16, 15,245, 23, 14, 51,182,244, 67, 86, +188,112, 2,147,127,242, 38,203, 29, 23,201,214,188,234,195, 34,197,248, 25, 79,207,237, 89,105,166,149,149,213,185,212,212, 84, +203,140, 25, 51,244,141, 27, 55, 46, 30, 53,106,148, 86,167,211, 49,198, 24,211,233,116,108,212,168, 81,218,198,141, 27, 23,207, +152, 49, 67,255,224,193, 3, 11,159,207, 63, 93,135,229,252,166,188,200, 58,119,238, 28,123,156, 82,169,100,157, 59,119, 78, 13, + 11, 11,219,244,202, 43,175, 12,169, 41,211,214,214,182,207,244,233,211,149,172, 18, 70,163,145,149,148,148,176, 7, 15, 30, 88, +234,213,171,151, 9,192,153,222,204, 41,147, 50, 41,147, 10,173,151,102,108, 13,247, 43,223,136, 83,167, 78,149, 49,198,100, 51, +103,206,148,149,181,108, 89, 3,176, 45,187,241, 1, 12,158, 62,125,186,140, 49, 38,155, 54,109, 90,249, 99,170,218, 17,111,237, +217,179,199,176,124,249,114,230,238,238,206, 60, 60, 60,216,138, 21, 43,152,197, 98, 97,217,209,219,217, 47,141,192,238,124, 62, +130, 49,198, 88,194,130,137,236,151, 70, 96,201,223,127,201,134, 14, 29,170,182,177,177,121,183,154,157,235,212,162, 69,139, 18, +141, 70,163,220,188,121,179,210,198,198,230, 42,128,198, 40, 61, 21,201, 41, 91,214,225,141, 27, 55, 86,220,188,121, 83,249,211, + 79, 63, 41, 1,204,173,229, 1, 19, 8,160,147, 68, 34,233, 55,221,219, 42,145,109,248,130, 77,119,199, 13, 0, 77, 1,184,150, + 61,198,107,218,180,105,140, 49,198,124,125,125,207, 87,145, 41, 13, 13, 13,157,150,152,152, 24,101, 52, 26,163,226,226,226,162, + 26, 52,104, 48,163,119,125,207, 54, 7,223,125, 61,188,248,203, 9,225,108,201, 39,161,223,190,209,170,235,206, 65, 29,223,125, +239, 21,151, 11,163,220, 68,234,129, 82, 94,201, 19,167, 14,107,117, 96,123,123,123, 95, 78, 79, 79,175, 40,174, 74, 74, 74,216, +163, 71,143, 88, 74, 74, 10,187,112,225, 2,243,244,244,252,165,166, 76, 15, 15,143,219,233,233,233,236,251,101,203, 88,255,166, + 13, 89,164,131, 29,235,224,104,199, 90,218,138, 84,141,128,150,117, 45,180,174, 93,187, 38, 3, 32, 3, 32, 43, 40, 40,144, 21, + 20, 20,200,138,138,138, 42,126, 6, 64, 86, 92, 92, 44, 43, 46, 46,150,233,245,122, 89, 64, 64, 64,157, 11,173, 8, 17, 34, 94, + 19,161,176,141, 16,154,183,188, 93, 50, 39,212,119, 49,255,254,110, 27, 86,244, 97,103,182, 60,220,155,181, 19,224,255,106,153, +249,150, 64, 32, 56, 11, 96, 74, 89, 81, 62,162, 71,143, 30,106,198, 24,235,209,163,135, 26,192,136,178,159,127, 84, 86,100,245, +168,229,114,114,131,130,130, 84,229, 45, 89, 0,126, 11, 10, 10, 82,133,133,133,177,176,176, 48,230,235,235, 91, 82,150, 93,171, + 55,180,192,192,192, 4,141, 70, 83, 81, 0,202,229,114,150,153,153,201,146,147,147,217,173, 91,183,216,213,171, 87, 89,106,106, + 42,219,189,123,183,217,193,193,225, 8,189,153, 83, 38,101, 82, 38, 21, 90, 47,181,208,122,242,246,103,209,209,209,236,137, 31, + 45,140,141,141,149, 77,159, 62, 93, 86, 67,101, 54,118,230,204,153,229,173, 94, 95, 87,243,207,127,125, 66, 66, 2, 27, 49, 98, + 4, 11, 9, 9, 97, 33, 33, 33,108,228,200,145,172,184,184,152, 41,147,110,178, 95, 26,129, 93, 29,216,146, 49,198, 88,201,157, + 56,246, 75, 35, 48,217,208,182,236,250,245,235,204,199,199,231,100, 53,127,255,231, 75,151, 46,229,109,223,190, 61, 27,165,253, +177,172, 0,180, 6,176, 66, 44, 22,111, 68,233,233,194,122, 0, 28,131,131,131, 11,213,106,181,178,127,255,254, 74, 0,126,213, +100,118, 8, 9, 9,185,191,126,253,122,150,155,155,203, 10, 11, 11,217,162,136, 6,140,109,248,130,205,111, 89,207,242,253,247, +223,235,166, 76,153,162,114,114,114,138, 6,224,213,191,127,127, 19, 99,140, 69, 70, 70,230, 84, 22,230,224,224,208, 35, 49, 49, + 49, 74,171,213, 70,201,229,242,168,194,194,194,168,195, 7, 15, 70,117,111,218, 96, 68,241,151, 19,194, 15,190,251,122,248, 27, +222,142,253,150,118,123,117,252,163, 25,163,251,207,108,219,248,142,246,155,201,103,222,169,239,190,248, 89,246,182,171,171,107, +150, 78,167, 99, 0,158,186,221,191,127,159, 57, 59, 59,167,215,148,225,228,228, 52,243,163,193,131,204,111,215,243,102,247,151, +207, 98,198, 83, 63, 49,227,209,205, 44,105,225, 39,172,183,135,139,162,181, 53,119,122,109,151,199,195,195,227,212,229,203,151, +255, 84,104, 21, 21, 21, 85, 90,104, 41, 20, 10,153, 94,175,151, 5, 5, 5, 29,127,222,163,190,181, 0, 1, 29,196,188,171,113, + 35,218,179,188, 9,157, 89, 15,169, 85,234,115,196, 13, 6,112, 22,192,208, 58, 62,143, 11,224,155,242,130,106,225,194,133,140, + 49,198,130,130,130, 84,120,190,139, 81,164, 13, 27, 54, 76, 25, 61,122,180,169, 81,163, 70,185, 17, 17, 17,242, 43, 87,174,176, +115,231,206,177,163, 71,143,178,189,123,247,178,155, 55,111,178, 71,143, 30,177,132,132, 4,214,179,103, 79, 57,128, 14,244, 94, + 72, 8,249, 59,171,164, 22,249,199,227,150,175, 88,175, 94,189, 56,143,173,160, 20,128,168,101,203,150,121,223,124,243,205, 18, +148,142, 5,193, 9,229,225,157,206, 98,254,245,206, 98,254,245, 80, 30,222, 41,107, 49, 90,183, 96,193,130,121, 97, 97, 97, 89, + 0,196, 0, 60, 42,251, 67,140,177,246,206,206,206, 72, 79, 79,135, 84, 42,133, 84, 42, 69,122,122, 58, 24, 99, 48, 49,192,200, + 0,157,193, 0,141, 70, 3,173,133, 65, 99, 1, 20, 74, 37, 60, 60, 60, 96, 48, 24, 2,170, 88,254,102, 3, 7, 14, 12, 8, 13, + 13,205,155, 58,117,106, 38, 74,251,202,108,124,255,253,247, 79,253,246,219,111,161, 74,165,178,240,214,173, 91,218,166, 77,155, +246, 0,224,145,152,152, 56,108,213,170, 85, 24, 49, 98, 4,170,249,167,211,180,103,207,158, 71,111,222,188, 25, 48,116,232, 80, +156, 61,123, 22,139, 22, 45, 66,126,126, 62, 3, 0,157, 78,199,204,102,179,161,109,219,182,134,229,203,151,183,138,140,140,188, + 92,191,126,125, 30, 0,164,164,164, 36, 85, 22,200,225,112, 26,248,251,251, 67,167,211, 33, 47, 47, 15, 55,111,222,132,157, 84, +138,248,204,124,247,142, 75,191, 47,248,252,224, 41,171,193,173, 66,157, 62,126, 61, 66,247,213,201,179,193,141,189,220,221,245, + 6,163, 71, 66, 86, 78,230,179,236, 84,107,107,235,244,252,252,124,232,245,122,104, 52, 26, 40, 20, 10, 20, 20, 20, 32, 63, 63, + 31,153,153,153,176,182,182,190, 95, 83,134,125, 97,225,249,148, 75,231, 56,187,127, 88,136, 0, 83, 33,248,251, 86,128,127,104, + 13, 2,245,121, 88, 59,107,156,157,222,217,117,142,189,157, 93,145,131,131,195, 58, 0, 65, 53,229,133,135,135,163,160,160, 0, + 5, 5, 5,112,118,118,134,163,163, 35, 28, 29, 29, 33,151,203, 81, 92, 92, 12,133, 66,129,224,224, 96, 52,107,214, 12, 91,183, +110,125, 33, 7,247,239,122, 36,155, 96,158,112,234, 94, 38,172, 37, 18,212,119,180,245,127,213, 22, 78,213, 60,165,179,149,149, +213, 30, 39, 39,167,147, 0, 62, 4, 32, 1,240,161,147,147,211, 73, 43, 43,171,190, 0,230, 3,216, 94,199,197,248,106,206,156, + 57,211, 18, 19, 19,109,174, 95,191,142,169, 83,167, 98,238,220,185, 72, 74, 74,250, 14,128,165,236, 49, 31, 56, 59, 59, 71,115, +185,220, 31, 1,188, 9,160,135,167,167,103,151, 26,114,251, 78,153, 50, 69,219,162, 69,139,132, 59,119,238,244,189,116,233, 82, +203, 79, 62,249,164, 56, 45, 45, 13, 9, 9, 9,240,244,244,132,175,175, 47,148, 74, 37,138,138,138,208,183,111, 95,169,189,189, +253,187,244, 54, 78, 8,249, 59, 23, 89, 79,212, 34,255,180, 22,173, 74,239, 87,250,137,218,198,198,102,142, 76, 38,107, 19, 22, + 22,198, 7,176, 27, 0, 66,121, 24,208,183,109,243,141, 7,215, 45, 12,219,191,124, 86, 88,247,176,224,141,161, 60,148, 95,197, + 22,221,178,101, 75, 71,153, 76,214, 86, 40, 20,254, 95, 21, 11,193, 0,192,209,209, 17, 82,169, 20, 14, 14, 14,112,116,116,132, +197, 98,129, 82,173,133,202, 12,148,104,245, 40, 46, 46, 70, 73,217,125,165,206, 0,149, 74, 85,241,220, 74,116, 28, 61,122,116, +222,170, 85,171,114,179,178,178, 22, 2,104, 58, 98,196,136, 62, 43, 87,174,196,175,191,254,170,125, 51, 36,208,121, 65,251,230, +243, 26,103, 37, 69,133, 88, 97, 12,128,243,231,207,159, 71,219,182,109,193,225,112, 6, 85, 22, 40, 22,139,215,236,220,185, 83, +124,235,214, 45, 4, 6, 6,222, 26, 52,104,208, 59, 11, 23, 46, 12,144, 40, 11, 47, 2,128,169, 32,251,214,196,137, 19,191, 88, +176, 96, 65, 94, 94, 94,158, 65,173, 86,187,245,238,221, 27,233,233,233,120,244,232,209,111, 85, 20,153, 9,113,113,113,172,184, +184, 24,201,201,201,136,139,139, 19,127,241,197, 23,173,204, 92,110,159, 12,216,189, 55, 34,162,101,171,161,173,155, 99,123,204, +117,235, 11,247, 82, 28, 90,214,243,118,188,246, 48,235, 21, 35, 7,247,159,101,111,151,148,148,172,152, 55,111,158, 82,169, 84, + 34, 35, 35, 3, 55,110,220,192,157, 59,119,144,154,154,138, 69,139, 22, 41, 11, 11, 11, 87,214,148,225, 37,226,127,186,248,147, +247, 57,252,219,191, 1,215,207, 1,234, 18, 64,163,132,238,174, 12,155,238,102, 99,245,190, 3,130,180,244,116,135, 93,187,118, +141,246,243,243,147, 1, 8,174, 46,143,177,210, 93,200,229,114,159, 44, 66,193,229,114, 75, 0,100, 75, 36,146,135,118,118,118, + 15,185, 92,110, 54, 99, 76,245, 66, 62, 73,152, 96, 0,143, 7, 8,196,224, 90, 85, 59,181,231, 59,131, 6, 13,218,249,240,225, +195,238,201,201,201,109, 86,174, 92, 57, 79, 36, 18,197,175, 92,185,114, 94,114,114,114,155,135, 15, 31,118, 31, 52,104,208, 78, + 0,195,235,242,247,131,130,130, 38, 70, 69, 69, 97,209,162, 69,104,214,172, 25,130,131,131,213,115,230,204, 89, 1, 96, 22,128, +255, 11, 10, 10,186, 56,113,226,196, 81,185,185,185, 30, 25, 25, 25,205,190,251,238,187,113, 43, 86,172,120, 53, 51, 51, 83, 84, + 67,116,187,110,221,186,225,216,177, 99, 0,144, 5, 32,185,160,160,192,148,153,153,137,134, 13, 27,162, 85,171, 86, 80, 42,149, + 80, 42,149,144,203,229,240,247,247,135,197, 98,105, 67,111,229,132, 16,242, 63, 45,184, 42, 47,180, 68, 34,145, 99,120,120, 56, +234,215,175,239,136,178,171,181,156, 5,252, 25, 31,143, 30,108, 99, 43, 59, 14, 78,220, 47, 24,212,190,137,141,179,128, 63,163, +236, 41,124,127,127,127, 97,120,120, 56, 36, 18,137,119, 21,127,252,108,118,118, 54,194,195,195,225,224,224, 0,169, 84,138,240, +240,112, 24, 12, 6, 20,151,148, 64,101, 6,212, 70, 11,138,139,139, 81,152,151, 3,181, 25, 48,217, 57, 35, 53, 53, 21, 60, 30, + 47,165,138, 76,207,192,192,192,188,248,248,248, 60, 0,231, 1,140,159, 59,119, 46,166, 79,159,142,217,179,103,239,180,201,122, +208,109,231,177, 67,206, 59,230,124,224, 26, 44,224, 12, 6, 96,120,248,240, 33, 28, 28, 28, 32,145, 72, 42, 45, 12, 34, 35, 35, + 91, 72, 36, 18,108,222,188,153,101,100,100, 68,160,244, 18,254, 20, 14,167,180,216, 19,115, 81, 12, 96,133, 76, 38,123,237,139, + 47,190,184,215,181,107, 87,171,214,173, 91, 99,254,252,249, 0, 16, 93, 89,166, 92, 46,255,125,248,240,225,250, 51,103,206,224, +238,221,187,146,131, 7, 15, 14,152, 63,127,126,147,180,180, 52,225,207, 71,143,191,177,237,161, 98,192,194,147, 23, 68, 11, 78, +156,253,221,197, 94,210,248, 21, 23, 39,196,165, 61,178, 54,243,112,165,166, 61,250,154, 21,111,116, 71, 17, 63,174,189,144,155, +213, 81,196,151,189,106,197,123,191,164,164,100,215,225,195,135, 79,124,242,201, 39,202,220,220, 92,216,217,217,161,160,160, 0, + 95,125,245,149, 50, 46, 46,110,159, 94,175,255,185,166, 92,179,133,181,240,173,231, 7,220,143,175,248,153,193,194,112, 69,111, +141, 94,227, 39, 35,164, 97, 67,232,245,122, 52,109,218,148, 51,119,238, 92,137, 84, 42,253,172,198,162,135,251,212,225,102,226, +112, 56,217,140,177, 71, 74,165, 50, 67, 44, 22,167, 89, 91, 91,167, 21, 22, 22,102, 48,198,114, 94, 68,157,197,184,248,180,109, +211, 32, 64, 40, 70, 90,129, 50,243,170, 18,133,149, 61,208,206,206,238,253,213,171, 87,139, 54,108,216, 96,156, 56,113,162,110, +220,184,113, 86, 26,141,198,109,220,184,113, 86, 19, 39, 78,212,109,216,176,193,184,122,245,106,145,173,173,109,191,103, 89, 16, +163,209,136,248,248,248,133, 73, 73, 73, 18,148, 14, 55, 50,121,206,156, 57, 35, 18, 19, 19, 69,171, 86,173,194,222,189,123,177, +119,239, 94,244,233,211, 7,147, 38, 77, 66, 84, 84, 84,117,113, 54, 97, 97, 97,225,206,206,206, 56,119,238, 92, 38,128, 52, 0, + 45,108,109,109,237,250,244,233,131,238,221,187, 67,171,213,194, 96, 48, 84, 20, 90, 60, 30, 15, 14, 14, 14,206,244, 30, 72, 8, + 33, 47,189,200,250, 83,177,197, 7,128,242,166,186, 94,189,122,113,170,251,199,104, 46,202,133, 92,165, 70,106,177, 26,233, 69, +150, 63,253,206, 98,177, 84,251,215, 51, 51, 51,127,142,137,137,121, 63, 60, 60,156,159,153, 89,122, 70, 44, 60, 60, 28,106,181, + 26,153,215, 47, 67,101, 1, 36,129,161, 80,169, 84, 40,186,115, 13,182, 97,109,224,220,115, 40,150,174, 90,165, 43, 40, 40,248, +161,178, 76,129, 64, 96,229,227,227,147,151,146,146, 98, 2, 80, 40,149, 74,187,249,249,249,225,236,217,179, 0,176,157, 1,139, + 17,119, 6, 56,183, 31,172,180, 73,197,214,223,223, 31,185,185,185, 80, 42,149,103, 43,203,140,137,137, 73, 52, 26,141, 77,123, +247,238,205,217,178,101,203,110,133, 66, 49, 27,192, 13,157, 5,188,235, 15,115,160, 50, 67, 4,224,117, 71, 71,199,143,162,162, +162,186, 76,156, 56, 17,135, 15, 31,198,201,147, 39, 13, 40,237, 11, 22, 83, 73,108,113,114,114,242,218, 41, 83,166,180,230,114, +185,227, 79,157, 58,101, 10, 14, 14, 86, 24, 12, 6,115,131,144, 16,238,236,185, 95, 90,127, 56,126,172, 67,129, 26,183,187, 55, +240,108,203,225, 0,183, 31,229,166, 37, 41, 81, 80,221, 54,141, 20,240,162,251, 70,132, 69,190, 63,232, 45, 91, 73, 96, 99,168, +110, 94,246, 88,187,231,232, 82,113, 92, 98,175,115,185,185,125, 14, 31, 62, 60,224,236,217,179, 31,234,245,250,250, 66,161,240, +190, 92, 46, 95,174, 84, 42,107, 44,178,120, 60, 94, 79,157,167,143,163,188,176, 16,162,178,150, 40,133,209,130,124,157, 9,119, + 29,130,241,174,143,111,197,105,208,236,236,108,120,120,120,112,204,102,243, 91,213,101,158, 60,121, 18,189,122,245, 42, 47, 60, +193,225,112,192,225,112,242, 67, 66, 66,114,132, 66, 97,129,181,181,181, 98,241,226,197, 90,173, 86, 11, 62,159, 47, 50,155,205, +188,231, 57,218, 91,217,192, 77,200, 56,107,198,245,238,212,181, 89,227,134,236,252,213,235,156, 34,181,118, 83, 53,173,128,223, + 5, 5, 5,241, 11, 11, 11,127, 6,112,215,104, 52,238,216,189,123,183,104,216,176, 97,218, 61,123,246, 12, 1, 16,176,100,201, +146, 1, 74,165,178, 78, 83, 42, 36, 37, 37,125,183, 96,193,130,105, 51,103,206,196,214,173, 91, 39, 38, 37, 37, 77, 47,107,233, +234, 19, 21, 21,133,197,139, 23, 99,235,214,173,150,187,119,239, 30,181, 88, 44, 73,159,124,242, 73,152,187,187,123,126, 86, 86, + 86, 82, 53,177, 45,123,244,232,161,187,120,241,162,160,164,164,228, 2,128,143, 38, 76,152, 48,250,181,215, 94, 83, 12, 26, 52, +200,182,176,176, 80,110, 99, 99, 35, 88,191,126,189, 35,159,207,135, 74,165, 2,135,195, 65, 73, 73,137,158,222, 7, 9, 33,127, + 87, 85,213, 34,255, 16, 85,254,111,224, 87,182,130,106,181, 58, 39, 61, 61,189,225,163, 71,143, 76, 0, 76, 0, 80,160, 55,125, +189, 96,253,254, 13,253, 90, 7, 73,178,140, 70, 28,188,122, 75, 93,160, 55,149,119,126, 55, 61,122,244,168, 36, 45, 45,205, 78, +163,209, 40,171,248, 91,191,173, 89,179, 70,115,230,204, 25,187,228,228,100,152,205,102,180,104,209, 2, 9, 9, 9, 40,186, 27, + 15, 73,195, 22,144,116,232,133, 91,178,171,136, 59,121, 26, 15,148,122,211,189, 89, 11,138,149, 42, 85,148,193, 96, 56, 88, 89, +160,149,149, 85, 33, 0,198, 24, 51, 3,128, 66,161,184,161, 84, 42,219,187,187,187,227,246,237,219, 18,149, 25,147, 6,204, 88, +186,146, 49,102,182, 46,189,154,235,227, 65,131, 6, 33, 54, 54, 22, 0, 98, 43,203, 84, 40, 20, 19,199,140, 25,115,102,243,230, +205,252,228,228,228,238, 27, 54,108,232,126,239,222, 61,198, 41, 76, 55, 95, 84, 91, 33, 96,196,164, 87,191,247, 15, 57,217,171, + 87, 47,120,122,122, 98,253,250,245, 88,190,124,185,241,131, 15, 62, 72, 92,190,124,249,171,185,185,185, 59,170, 88,255, 98,185, + 92,126,220,217,217,249,195, 38, 77,154,148,168, 84, 42, 20, 20, 20, 32, 51, 51, 19, 78,206,206, 92, 19,184,109, 93, 29, 28,118, +252,156, 93, 34,225, 31,255, 29,151, 51,178,170,109,205,106,109,197, 27,222, 47,178,121,228,255,205,156, 97,139,139, 7,193, 25, + 19, 5,182, 97, 30, 38,143, 28, 96,167,213,237,232,160,186,158, 58, 76,166, 80,108, 83, 40, 20,123,235,120,176,244,104,219,182, +237,206, 5, 11, 22,136, 63, 95,180, 0, 75, 26,122,195, 84, 80,128, 60,157, 25,249, 58, 19, 20, 69,119,113,251,246, 45, 56, 59, +187,224,193,131, 7,208,106,181,184,115,231, 14,227,241,120, 63,215,212,162, 83,238,177,211,133,114,161, 80, 88, 96,101,101,149, +195,231,243, 11,147,147,147, 85, 90,173, 22, 92, 46, 87, 98, 54,155,197,181, 88, 86, 31, 23, 23,151, 79, 80, 58,152,232,225,146, +252,252, 21,225, 86,112, 0, 31, 29,253, 93,156,223,152, 53,110,152,139,159,151,155, 60, 57,241,190,241,135, 19,151,242,181,186, +170, 47,214, 0, 16, 93, 88, 88, 88,209, 34,185,103,207,158,201,123,246,236, 25, 13, 96, 35, 74,231,221, 58, 45,151,203,191,127, +134, 23,223,172,125,251,246, 77,155, 57,115, 38,196, 98,113,197,224,169, 98,177, 88, 4, 0, 63,253,244, 19,110,223,190,253, 26, +202,250,107, 89, 44,150,157, 89, 89, 89, 53,101, 6,132,134,134, 38,239,223,191, 95, 0,192,107,194,132, 9,109, 86,174, 92,137, +145, 35, 71,230,221,186,117,171, 53,128, 20, 0, 1,227,199,143,191,178,117,235, 86, 71,139,197,130,162,162, 34,232,245,250, 20, +122, 43, 39,132, 80,177,245, 82,132, 3,136, 67,233,248, 89, 61, 1, 28, 65,105,183,142, 42,249,150, 85,103, 39, 0,244, 46,255, +255, 88, 69,103,120,160,244,138,172,227, 0,126, 4,224, 94, 85,168,179,179,243,103, 35, 70,140, 48,102,100,100,176,236,236,108, +182,119,239, 94,246,241,251, 35,204,175, 7,122, 89, 2,189,220, 85,174,174,174, 9,158, 46, 78,155,154,219,224, 99, 0, 62,181, + 88,177, 17,247,238,221, 27, 59, 98,196,136,247,203,254,238,251, 59,119,238, 84,158, 58,117, 74,201,227,241,162, 81, 58,180, 67, +121, 65, 57,252,173,183,222, 82,234,116, 58,101, 72, 72, 72, 33, 74, 59,238, 87,101, 64,199,142, 29,139,142, 29, 59,198,204,102, +243, 83, 99, 20,229,229,229,177,147, 39, 79,178,136,136, 8, 57,128, 97, 93,186,116, 57,123,233,210,165,179,237,218,181,219, 87, +211, 2,187,184,184,204,184,126,253,122,108,106,106,170,236,200,145, 35,178, 29, 59,118,200,198,143, 31,127, 35, 44, 44, 76,147, +152,152,104, 49,153, 76,236,250,181,107, 44,164, 65, 3, 21, 0,255,170,114, 58,139,249, 87, 20,235,231, 49,237,252,145, 76,219, +215,151, 1, 96, 37, 75, 63, 99, 57, 19,187,178,132, 15,223, 96,157, 68,188,152,103, 57, 82,125,108,111,173, 0, 0, 32, 0, 73, + 68, 65, 84,156,156,156, 78,196,198,198,178,146,146, 18,118,243,230, 77, 54,188, 87,119, 22, 51,186, 43, 59,222, 61,136,109,237, +240, 10, 91,218, 45,140,117,239,208,158,173, 89,179,134,237,223,191,159,205,152, 49,195,226,226,226, 82,130,106,250,104,121,120, +120,156,218,189,123,183, 12,128,140,199,227,201, 20, 10,133,172,164,164,228,231,135, 15, 31,174, 14, 9, 9,153,214,164, 73,147, + 33, 13, 27, 54,236,220,233, 21,255,105, 93,236,132, 9, 93,237, 69,247, 27,216,218, 44,197,211,227, 94, 85,144, 2,254,129, 1, + 1, 37,231,206,157,179,232,116, 58,118,225,194, 5, 75,163, 6,193,218, 37, 3,123,236,123,176,254,155,125,218, 99, 91, 78,168, + 15,173,187,180,231,189, 94,241, 29,109,184, 91,218, 72, 42,134,227,120, 86,131, 1, 28,196, 31, 87, 29,142, 0,112, 8,213, 95, +133,200, 5,176,113,254,252,249,143, 95,105, 8, 0,220,176,176, 48, 25, 99, 76, 22, 22, 22, 38,171,235,130,216,216,216,124,114, +248,240,225, 57,126,126,126,139, 6, 13, 26,180, 94, 46,151, 31, 25, 50,100, 72, 60, 74, 47, 6,225,160,116,118,132,183,124,124, +124,242,226,226,226,216,217,179,103, 89,255,254,253, 75,172,173,173,135,210,219, 56, 33,132,188, 20, 99,171,248, 90,173, 5,241, +241,241,229, 99,104, 77,168, 46,124,250,244,233,178,216,216, 88, 25, 74, 71,137,175, 22,159,207, 63,240,193, 7, 31, 48,119,119, +119,165,155,155,219, 1, 43, 30,111,180,175, 24,225,120,182, 75,221,219,111,219,182,173,207,119,223,125,215, 19,192,107, 0,172, +188,189,189, 51,179,179,179,149,151, 46, 93, 82, 70, 68, 68, 40, 93, 92, 92,114, 67, 67, 67,149, 75,150, 44, 81, 26,141, 70,229, + 39,159,124,162,196,211,227,125, 85, 70, 4,224, 67,129, 64,112,160, 81,163, 70,241,179,122,119, 54, 46,154, 52,154,141, 8,114, + 85, 2,248, 14,192, 7, 0, 28, 0, 88, 13, 24, 48,224,151, 59,119,238,156, 8, 13, 13, 93, 91,139, 92,175, 38, 77,154,252,186, +115,231,206,216,253,251,247,203, 62,251,236,179, 88,103,103,231,140,196,196, 68,139, 86,171,101, 69, 69, 69, 76, 46,151,179, 35, + 71,142,152,157,156,156, 86, 85,185,226, 66, 94, 22, 59,185,189,210, 33, 28, 30,206, 28,202, 34, 4,220, 71,207,114,164, 72, 36, +146,194,130,130, 2,150,157,157,205,146,147,147,217,190,125,251, 88,143,182,173,216,174,241,253,216,246,247,251,176,197, 61, 90, +177,215,236, 68, 42, 15, 59,219, 88, 59, 59,187,220,218, 92,117,232,225,225,113, 74,167,211, 85, 12,223,224,227,227, 35, 11, 9, + 9,217, 31, 26, 26,186,244,240,225,195,147,151, 45, 91,214,167,211, 43,254,211,190,234,222, 86,163, 62,189,135,149,236,254,142, + 77,111, 17,172, 45, 43,230, 43,229,237,236,180,237,220,217,179,150,242,226,215,100, 50,177,131, 7, 14,176,129,111,188, 30, 95, +124,252,167, 31, 47, 68, 77,220,249, 73,139,224,131, 17, 34, 12,174,174, 96,171,248, 40, 98, 11,231, 72,123,238,234, 55,253,156, +178,218, 75,185,223,181,182,251,211,244, 82, 3,131,131,131,147, 25, 99, 89, 13, 27, 54, 76, 6,176,189, 97,195,134,143,223,127, +175,138,216,138,193, 73,231,204,153,195,202, 94, 31, 92, 0,179, 23, 44, 88, 32, 99,140,201,130,130,130, 46, 2, 64, 51, 9, 92, + 58, 72,185, 63,246, 14,112, 47,232, 32,229,254,216, 76, 82,249,148, 81,254,214,104,208,222,213,230, 66,159, 32,207,146,142,222, +210,243,219, 55,109, 88,244,230,155,111,174, 7,176, 10,192, 60,103,103,231, 11,131, 7, 15,190,189,117,235,214,219, 75,150, 44, + 49, 36, 38, 38,178, 81,163, 70,169,132, 66,225, 60,122, 31, 36,132,144,151,166,124,100,120,207,186, 20, 90,111, 77,155, 54, 77, +198, 24, 43, 31, 75,107, 88, 37,143,233, 61,115,230, 76, 25, 99,172,124,116,248, 39, 7, 48,171,108, 64,179, 57,171, 87,175,102, + 66,161,240,199,103, 92,153,199, 51, 61,250,246,237,219, 90,161, 80,188,234,238,238,254,106, 89,203,149,175,139,139, 75,242,142, + 29, 59,148, 26,141, 70,201, 24, 83,154, 76, 38,101,108,108,172,178, 99,199,142,202,199, 62,245,215,180,156,127,242,185, 7, 46, + 94,157,245, 62,251,220, 3, 23,159,248,213,208,141, 27, 55, 30, 75, 73, 73,249,217,222,222,126,106, 45, 51,125, 93, 93, 93,103, + 59, 57, 57,157,112,113,113,249,220,201,201, 41,203, 96, 48,176,162,162, 34,150,144,144,192,206,158, 61,203, 98, 98, 98,152,147, +147, 83, 70, 85,203,217, 69,204,255,189,104,209,135,204,178,113, 1,211,175,156,193, 0, 48,249,178,233, 44,127,205, 92,118,117, + 76,119,214, 81,196,251,237, 25,182, 39, 28, 28, 28,214, 29, 56,112,192,146,148,148,196,162,163,163,217,145, 35, 71,216,164, 73, +147, 88, 3, 47, 79, 93,107, 1, 55,167,189,144,127,226, 89, 6, 44,213,233,116, 50,133, 66, 33, 83, 42,149,178, 70,141, 26,201, + 90,181,106,181,191,117,235,214, 75,247,236,217, 51,249,171,175,190,234,211,197, 78,152,160, 62,189,135,177,207,222, 96,236,195, +118,236,254,232,142,172,179,152,127,189,202, 76,119,247,140,242,209,218, 85, 42, 21, 59,127,254, 60,251,245,215, 95,153,135,139, +139, 34, 82,204, 27, 27, 33, 68,135, 8,123, 56,212,118, 57, 59, 73,185,155,126, 95,243,181, 89,115,108, 43,251,105,196, 27,166, +142, 14,220,213,143, 61,110, 23, 99, 44,171,127,255,254, 15, 24, 99, 89,251,246,237,123,200, 24,203,234,215,175,223, 3,198, 88, + 22,128,157,149,101, 62, 49, 56,233,198,178, 34,235,195, 57,115,230,200, 24, 99,178, 57,115,230,200,128,210, 65, 84, 59, 72,185, +155, 47,175, 93,108,209, 29,217,204,246,140,234,105,238, 32,229,110,174,116, 57, 29,248, 63,199,109, 92,198,244, 39,182,179, 3, +147,134,152,219,121,216,159, 11, 14, 14, 94, 60,121,242,228,253, 49, 49, 49, 55,204,102,243,237,228,228,228,219,171, 86,173,186, +221,166, 77,155,139,206,206,206,241, 2,129,224,131,154,246,209, 11, 66,153,148, 73,153,148, 73,158,108, 96,170,230,119, 63, 47, + 92,184, 80,194, 24,251,100,192,128, 1,248,230,155,111, 6, 54,105,210,100,176,183,183,183, 43, 0,100,102,102,170,111,222,188, +169, 24, 48, 96, 0,102,207,158,141, 69,139, 22, 45, 69,105, 95,150,255,165,236,131, 7, 15,250, 76,156, 56, 49,247,171,175,190, +178,140, 26, 53,170, 33,128,155,249,249,249, 13,134, 12, 25,242, 33,159,207, 31,224,239,239, 31,154,149,149,149,167,209,104,182, + 3, 88,139, 26,206,153, 86, 69,200,133,185,101, 61, 79,156,224,194,252,216,143,223,152, 61,123,246,160,126,253,250, 25,150, 45, + 91,102, 82, 40, 20,135,107, 25,247, 48, 47, 47,239,203,242, 59, 78, 78, 78, 30,215,175, 95,255,192,205,205,141,155,156,156, 12, +157, 78,135,164,164, 36, 11, 74, 79, 77, 85, 74,105, 98, 43,190,223,119, 42,228,147,161,189,236,213,119,175,193,154,199,131,209, + 74,128,236,223, 79, 96,227,249,187, 10,149, 1, 43,159,101, 61,229,114,249,183,147, 38, 77, 26, 50,117,234, 84,145,191,191, 63, +231,183,223,126,195,238,221,187,117,185,185,185, 61, 0,156,251, 99,232,167,186,177, 88, 44, 16, 8, 4, 0,128,233,211,167,131, +203,229, 90,229,230,230, 10, 56, 28,142,144,195,225,216,112, 56, 28,158, 49,229, 54, 44,138, 34,228, 20,201,241, 48, 71, 94,109, +158,217, 98,217,125,249,242,229,143,155, 55,111,206,189,122,245, 42,242,242,242,144,148,148,196,204,140,237, 60,175, 49,151,118, + 74,212,213,126,249,108,156,156,251, 54,115, 20,114, 5,155,102, 35, 82,207,229,253, 96, 65,127,148,142,165, 5, 0, 27, 57, 28, +142, 53,128,130, 70,141, 26,117,186,115,231,142,184, 81,163, 70,154,187,119,239, 30,227,112, 56,222, 0, 54, 87,150, 41, 22,139, +243, 1,228,239,219,183, 15, 0,198,160,116,227,181,136,138,138,202, 58,127,254, 60,230,204,153,147, 3, 96, 53, 0,216, 58, 58, +247, 14,149, 90,115, 4, 91,230,160,141, 14,220,149, 22, 86,105,171,171,173,155,123,231, 38, 18, 46,172, 54,124,129, 87, 61, 66, +184, 2,147,161,233,220,185,115,207, 43,149, 74,221,174, 93,187,244,239,189,247, 30, 47, 49, 49,241, 10,128, 11, 0,246,161,172, +143, 37, 33,132,144,151,234,201, 22,172, 26,251,104, 61, 89,181,126, 3,224,251,123,247,238, 85, 76, 42,125,239,222, 61, 25,128, + 31, 80, 58, 26,252, 91,117,168,120,103,149,181,104,173,125,198,149,121, 50, 83, 20, 30, 30, 46,190,115,231,142, 53, 42,159,196, +145,243, 12,153, 79,169,108,174,195,224,224,224,229, 70,163,113,255, 15, 63,252,176,135,199,227, 13,121,142,106,223, 63, 40, 40, +168,104,199,142, 29,150,232,232,104, 54,107,214, 44,179,167,167,103, 17,158,238,163,245,167,204, 72, 1,111,239,148,134,222,138, +216, 97,237,216,253,201,189,217,133,161, 29,217, 88,111, 91, 69,164,136,183,251, 57, 63,149, 4, 73,165,210,141, 98,177, 88, 97, +111,111,127, 10, 64,219,231,217, 71,206,206,206, 91, 61, 60, 60, 78, 61,126,115,119,119,223,239,234,234,250,157,139,139,203, 44, + 7, 7,135,113, 1, 34,193,178,201, 13,188,180,241,125, 27,177,211, 17,174,108,168,139,224,201, 83,135, 79, 46,167,103, 64, 64, + 64,193,182,109,219, 44, 63,255,252, 51,155, 49, 99,134,165, 94,189,122, 10, 84,211,175,173,218, 22, 45, 7,222,238,189,253, 90, + 91,114,122,122,179,111, 26,218, 89, 58, 57,242,170,186, 66,113,104, 89, 1, 60,162,166,204,192,192,192, 31, 24, 99,155,230,207, +159,191, 9,127,204, 5,250,250,220,185,115,163, 24, 99, 81,115,231,206,141, 2,208, 29, 0, 34,165,220,109,219,251,180, 52,103, +190,233,197,190,110,104,107,142,148,114,183, 85,218,146,233,196, 63,120,104,116, 79, 75,214,232, 8, 54, 59, 72, 98,110,237, 36, +252, 69, 32, 16, 76, 70,105,139,115, 43, 0, 2,250,212, 76,153,148, 73,153,212,162,245,183, 43,188,106,197,195,201,201,105, 99, +253,250,245,247,248,251,251,239,177,181,181, 93,138,210, 78,243,117,221, 17, 1, 11, 22, 44, 80, 72,165,210,102, 47,112,231,186, + 1,240,198,211, 19,231,190,176, 3,230, 75, 79, 76, 76,156, 58,240,250,151,158,152,248,216,143, 91, 53,108,216,240,107,148,142, +230,253,188, 7,161,191,147,147,211, 42, 39, 39,167,140,178,190, 89,254,181,201,108,201,227, 13,233, 36,226,253,214, 86,192,205, +238, 36,226, 95,122,149,199,123,247, 31,250, 2,172,238, 98,139,170, 50,125, 92, 92, 92,150, 57, 57, 57,101,186,184,184,172,170, + 99,145,245,167,204,102, 98,120,118,118,224, 29,108,107,199, 81,117,150,242,246,181,180,169,250,162,142, 58,172,123,248,156, 57, +115, 70, 50,198, 70,122,121,121, 13,120,172,240, 15,157, 61,123,118, 47,198, 88,175,242, 17,224, 91,217,192,173,163, 3,111, 71, +132, 61, 71,222,209,129,183,163,149, 13,220,170, 90,206, 78, 14,188,221, 17,246, 28,121,164, 61,119,135,159, 16,245,232,205,156, + 50, 41,147, 50,169,208,250,119, 20, 90,116,192, 80, 38,101, 82, 38,101, 82, 38,101, 82, 38, 21, 90,149, 23, 86,143,223, 42,206, +176,241,105,219, 16, 66, 8, 33,132, 60,151, 42, 7, 44,229, 84, 83,149,214,165, 99,251,179, 84,182,167, 41,147, 50, 41,147, 50, + 41,147, 50, 41,243, 63,151, 89, 83,246,255,250,194,186,127, 52,106, 86,165, 76,202,164, 76,202,164, 76,202,164,204,255, 44, 46, +109, 2, 66, 8, 33,132,144,231, 18, 94,246,245,201,129, 75, 43,239,163,197,111, 53, 63,199,100, 50,185, 1, 0,159,207,207, 53, + 94,153,229, 89, 93,186, 21,208,197, 84, 58,253, 14,248,192, 24, 19,112,170,146,204, 83, 38,147,201,177, 44,179,200,120,101, 86, +247,106, 51, 91,205, 63,241,248,227, 77, 87,102,189,254,228, 99, 24,192,179,106, 53, 63,243,137,101,245,170,237, 86,225,224, 79, + 99, 98,189,180,229,252,167,100,254,151, 89,189, 54, 63,199,104, 44, 61,142,172,172,248,185,134,203,213, 31, 71,214,175,205,207, +124,252,241,198,203,179,220,171,203,180, 17, 11, 11, 2,189, 93,151, 86,151,153,156,153,255,137, 74,173,117,174, 46,179,174,175, + 77, 95, 79,207, 46,230,178,215, 38, 15, 24,147,145,149,117,234,111,118, 44,181, 4, 48, 11,128,253, 99, 63,139, 7,240, 17, 29, +149,132,144,127, 88,161, 21,135,210,121, 14,215,149, 21, 91,235,170, 44,180, 76, 38,147,155,236, 64, 20, 84, 58,160,203,240,249, +110, 1,125,215, 62, 53, 81,178, 73, 91, 36,144,223,218, 21,202, 51, 42, 28, 93,249, 6,251,204,204, 76, 14, 0,112, 56,156, 31, + 1,248, 85,146,233, 40, 59, 16, 5,181, 30,136, 28, 60,215,209, 15,176,207,179,182,254, 84, 44,145,116,210,104, 52, 77, 0, 64, + 44, 22,223,210,168, 84,103, 92, 13,134, 37, 79, 62,190,170, 53,123,124, 89, 59, 15,155,239,214,176,239,218, 73,102,139, 69,240, +232,234, 15,145,218,252, 68,190,149, 73,183,250,115,224, 88, 84, 37, 69, 85, 21,121,127,252,221,119,102, 56, 91, 1,157, 5, 34, + 81, 51, 7, 71,199,246, 22,198, 26, 89, 44, 22,142,217,100,186,173, 40, 46,190, 96, 49,153,174,155,244, 42,103,217,225,175, 45, +213, 45,231,147,235,242, 14,192, 63, 0, 12,144,216,218,118,226, 89, 89,181, 5, 0,179,209,248,155, 74,169, 60,243, 54,176,183, + 54,235, 94,219,237,243,172,143,255,175, 49, 26, 77,110, 41, 39,162,160, 51, 2,225,253,191,118, 11, 27,178,101, 7, 0,232,115, +175,187, 43, 19, 15,191, 6, 0,146,192, 94,151,133, 30,225, 57, 0,192, 79,203,114, 75,136,158, 9,157, 17,104,212,107,174, 91, + 77,153,239,205,222,237, 60,117,108, 63, 33, 0,156,220,247, 93,131, 95,247,127,255, 6, 0,116,238, 55,225, 88,183,254, 19, 19, + 0, 96,209,186,253,206, 59,191, 30, 88,109,102,237, 94,155,197,214,197,137,209, 65,122, 69,150,131,175,132,239,145,152,152,200, + 5, 0, 47, 47,175, 90,189, 54,125, 0,105, 22,240, 33,151,199,107, 31, 24, 20, 20, 14,128, 37,223,191, 31,103, 54,153, 46,122, + 2,171, 95,240,177, 52,137,177, 63, 15,206,202,225,112,232,128, 36,132,252,211, 28, 41, 43,174,142, 60,245, 97,182,170,103,168, +116,192,185, 36,160, 67,235, 48,140, 29,242,166,237,227,191,219,187,118,174, 95,226,213, 67, 13, 55,108, 89,194, 13, 11, 11, 67, + 74, 74, 74,173,150, 66,173, 7,206, 38, 2,144,223,177, 43,146, 72,238, 47, 91,188,216,254,245,215, 95,231,123,121,121,129,195, +225, 32, 59, 59,187,245,233,211,167, 91,126,252,241,199,227, 33,191, 83,164,214,163,228,108, 98,205,185,229,203,218,164, 65, 61, +204,154, 56, 80, 10, 0,159, 15, 95,221,242,234,189, 28,167,251,247,239,119,153, 54,109, 90, 1,239,204,153,239, 93,128, 77, 57, +192,195,218, 44,231,214,159, 47,139,164, 89, 63, 5, 12,157, 56,113, 95, 80, 80,144,173,191,191, 63,199,206,206, 14, 60, 30, 15, + 69, 69, 69,126, 55,111,222,124,227,202,149, 43,170,211,231,126, 20,196, 94,233,157,156, 43,122, 77, 91,171,117,215,100,138, 78, +218,217,221, 26,246,246,219, 62, 3, 7, 14, 20, 5, 6, 6, 2, 0,238,223,191, 31,188,119,239,222,193,251,246,237,155, 13, 77, +166, 73,173,135,182,166,117,175,200, 4, 32, 2,218, 58,184,185, 13,229, 89, 89, 53, 49,153, 76,222,101,173, 13,143,204, 70,227, + 45,121,110,238,246, 39, 31, 79,158,166, 51, 2,119,178,128,174,237,195, 49,172, 95, 87, 9, 0, 76, 27,180,160,117,218,131, 36, +107,189, 94,143, 6, 33,141, 34,230,125,189,244, 4,184, 92,108,219,127,186,226,241,181,201,140,191,147,130,168,121,203,144,121, + 99,111,107,115,113, 82,167, 18, 69, 49, 15, 0,236,165,210,126,123,119,253,116,198, 43,116,192,239, 73,249,134, 90,101, 86,247, +218, 60,190,107,149,103,198,205, 51,141,215,156,220,104,229,231,231,135, 27, 55,110,212,237,181, 89,124,207,206,226,233,121,123, +201,103,159,121, 68, 70, 70,194,214,214, 22,124, 62, 31, 38,147,169,235,197,139, 23,187, 70, 69, 69, 77, 64,241, 61, 85,109, 95, +155,181,176,132,195,225,116,122,111,236, 36,207, 55,251, 12, 64,191, 30, 17,116, 32, 18, 66,254,105,202, 91,175, 30,191,242,112, + 93,181,133, 22,159,207,207,125,125,196, 87,110,237, 95,107,138,171,215, 19,138, 83,211,179,148,229,191, 43,188,181,183, 65,159, + 8,239,198,231,207,159,131, 78,167,195,111,191,253,134,235,215,175,227,193,131, 7, 24, 55,110,156,174,236,212, 97,101,153, 69, +145,131,231, 58,162, 56,209, 54, 88,112,239,149,211,119,239,242,180, 90, 45,206,159, 63,143,162,162, 34, 8, 4, 2,248,248,248, +160, 91,183,110,252,187,119,239, 58,117,121,189,135, 52,178,199,187, 41,144, 6, 43,249,124,126, 81, 85,243,136,240,249,252,220, + 46,195,231,187, 53, 14,174,135,251,169,153,197,179,190,222,160,180, 88, 24, 63,249, 65,154,225,220,185,115, 8, 15, 15,199,169, + 83,167,156, 11, 11, 11,191, 88,189,122,245, 44,171,133,107, 86, 24,245, 5, 83, 80,117, 94, 81,228,224,185,142,206,185,123,252, +127, 61,126,208,250,214,173, 91,214, 63,252,240, 3, 10, 10, 10, 32, 16, 8,224,224,224, 0, 15, 15, 15, 52,104,208,128,243,249, +231,159,219,246,234,117, 11,255, 55,102,128,191, 33, 96,244,189,170,150,179, 98,221,149,105, 54, 46,138,147,129,251,143, 28,225, +182,107,215,238, 79, 31,219,235,215,175,143,238,221,187,139,134, 14, 29, 26, 56,112,240, 16, 75,100,207,247,238,195,214, 95, 93, + 99,166,234,161,216, 89, 29,227,213,117,240,224,195,115,231,206,117,240,240,240,128, 68, 34, 1, 0, 20, 23, 23,251,164,166,166, +182,158, 61,123,118,255,203,241,187,248,145,189, 30,102, 66,226,171,169,110,123,254, 87, 89, 89,241,115,203, 91,145,236, 36,226, +162,135, 25, 57, 42, 0,208,235,245,208,235,245,208,233,116,248, 96,194, 56,222,152,254,173,130,252,219, 79,186,246,224, 81, 78, + 97,163,211,191, 59,149, 63,215, 88, 67, 38, 95,253, 64, 46, 79,255,101, 76,212,103,159,121,184,187,255,113, 70,112,219,214,173, +188,194,194,194,174, 81, 81, 81,141,153, 77, 71,121,163, 94,115, 29,170,203,172,238,181, 41, 79, 56,242,202,188,137,221,155,173, +253, 58, 26,102,179, 25, 49, 49, 49, 56,127,254, 60,150, 46, 93,202,142, 29, 59, 86,108, 47,145,140, 65,181,175,205,123,118,237, + 60,179, 3, 22, 46,220,199, 17, 10,133, 56,116,232, 16,238,222,189, 11, 46,151,139,176,176, 48, 12, 27, 54, 12, 93,187,118,245, + 24, 59,118, 28,139,236, 49, 40, 25,210,144,146,231, 60,150,184, 0, 38,205,136, 90,232, 57,124,244,135, 88, 52,239,115, 42,180, + 8, 33,255,228,214,172, 42,135,120, 64,116,116, 52, 43,187,117, 0, 0, 6,112,235,247, 93,187,115, 79,172,229, 72,253,190,107, +119, 50,128,203, 0,174, 61, 80,175,121,243,230, 70,185, 92,206,174, 92,185,194, 62,248,224, 3,213,138, 21, 43,206, 28, 57,114, +100,175,201, 96, 88,239,229,233,249, 45,171,162,131, 61, 3,184,254,128,212,198,198, 38, 47, 61, 61,157, 29, 61,122,148,205,153, + 51,135,109,223,190,157, 29, 59,118,140,157, 62,125,154, 29, 59,118,140,237,220,185,147,197,199,199,179,132,132, 4, 38,145, 72, +242,252, 1,105, 53,153, 60, 6,240, 26,244,253, 97,202,190,171,198,185, 33,125,215,126,204, 0,158, 35,208,176,121,243,230,230, +189,123,247,178,109,219,182,177, 45, 91,182,176,248,248,120,150,159,159,207,248, 66, 73, 94,249,243,170, 90, 78, 6,112,189,189, +189,243,228,114, 57,243,245,245,101, 2,129,128,185,187,187,179, 6, 13, 26,176,214,173, 91,179, 55,222,120,131, 13, 25, 50,132, +125,241,197, 23, 76, 46,151, 51,145, 72,148, 83,254,188,170, 50,195, 1,177, 68, 34, 73,151,201,100,172, 42, 26,141,134,229,231, +231,179, 19, 39, 78, 48,137, 68,146, 30, 14,136,171,203, 20, 3, 45, 66, 67, 67,243,242,243,243,153,193, 96, 96,233,233,233,236, +230,205,155,236,238,221,187, 44, 61, 61,157,105, 52,154,138,236,132,132, 4, 22, 16, 16,144, 39, 6, 90, 48,186, 8,162,202, 99, +233,201,155,159,187,251, 27, 30, 30, 30,154,125,251,246,177, 71,143, 30,177,205,155, 55, 51, 46,176,224,201,199, 85,151, 41, 0, +186,181,107,215,206, 28, 19, 19,195,174, 93,187,198,166, 79,159,206,186,119,239,206,122,244,232,193,162,162,162, 88, 70, 70, 6, +203,200,200, 96,111,188,241,134, 89, 0,116,171,233,248,172,236,181, 41, 5,252,122,245,234,165, 49, 24, 12, 44, 57, 57,153, 53, +105,210, 36,131, 7, 12,149, 0,141, 59, 0,194,154,142, 79,111,192,209,211,211, 51, 43, 38, 38,134,237,223,191,159,249,251,251, +231,241,128,247,236,129,250,246, 64,125, 30,240, 94,253,250,245,243, 98, 98, 98, 88, 65, 65, 1,243,243,243,203,242, 6, 28,159, +227, 88,226, 2,216, 56, 35,106, 33,187,151,161, 98, 51,162, 22, 50, 0,233,140, 49,134, 74,250,120, 18, 66,254,253,158,172, 69, +254, 45, 42,222, 36,123,245,234,197, 1,112,182,186, 7,107,120,188,175, 22, 45, 90,196,215,106,181,216,176, 97, 67,201, 59,253, +251,239,233,208,190,125,242, 43,254,254,114, 14,151, 91,227,108,195,121, 66,225,228, 69,139, 22, 57,232,245,122,196,198,198,162, +101,203,150,240,240,240,128,173,173, 45,108,109,109,225,230,230,134,144,144, 16,228,230,230,194,206,206, 14, 83,167, 78,149,230, + 9,133,147,107,202,181, 88, 24, 31, 0,204, 22,139,192, 26, 24, 27,240,234,171,177,179,103,207,230, 58, 59, 59,195,201,201, 9, +182,182,182,184,123,247, 46,244,122, 61,108,196, 54,181, 26,164,149,203,229,114,109,109,109,241,235,175,191, 98,210,164, 73,104, +219,182, 45, 28, 28, 28, 96,103,103,135, 38, 77,154,160, 91,183,110, 24, 51,102, 12,146,147,147,193,169, 69,167,146,219,124,254, +135, 99,198,140,113, 11, 15, 15,175,244,247, 90,173, 22,114,185, 28,121,121,121,240,241,241,193,128, 1, 3,220,110,243,249, 31, + 86,149,231, 12,120,248, 4, 7, 31,190,114,229,138,139, 68, 34,193,182,109,219,112,240,224, 65, 28, 63,126, 28, 71,143, 30, 69, +116,116, 52, 14, 29, 58,132,188,188, 60, 0, 64,112,112, 48,118,239,222,237, 98,235,230, 22,237, 12,120,208, 75,186,118,210,114, +114, 78, 54,201,206,118, 25, 58,100,200, 5,165, 82,137,161, 67,135,226,171,111,190,249,220, 10,248,184, 54,207, 15, 1,164, 78, +158,158,155, 22, 46, 92,200,205,206,206,198,219,111,191,157,191,228,155,111,222,143, 59,113, 34, 80,118,252,120,224, 87,115,231, +190,223,161, 67,135,252,140,140, 12,108,221,186,149,235,238,231,183, 41, 4,144,214,117, 57, 75,128, 73,203,151, 47, 23,105,181, + 90,188,254,250,235,201,150, 91,183, 66, 76,192, 79, 74,224,238, 89,192, 80,211,243,179,128, 15,167, 78,157,234, 33, 20, 10,241, +233,167,159,230,171,211,210,154,154,128, 45,197, 64,106, 49,144,106, 2,182,148,164,164, 52, 29, 62,124,120,190, 80, 40,196,178, +101,203, 60,178,254,152,116,187,182, 90, 2, 56, 12,224, 28,128,204,247,198, 78,122, 47,188, 85, 27,108, 93,191, 26, 95,207,157, +182, 9,192, 59, 28, 14,103, 59,128, 41,116,228, 17,242,223, 84,155, 90,228,111,170,202, 41,119,248,143, 87,146, 0, 58, 86,151, +226,232,236,220,178,105,211,166, 56,127,254, 60, 66, 67, 67,175, 56, 56, 56,152,172,133, 66, 88, 89, 89,129, 89,106,172,179, 32, +150, 72,186,116,237,218,149,255,251,239,191, 35, 32, 32, 0, 98,177, 24, 86, 86, 86,127,186, 89, 91, 91,195,211,211, 19, 10,133, + 2, 93,186,116,177, 90,185,114,101, 23,232,116,243,106,252,135,152,120,211, 54,239,247,133, 67,126,220,188,169,126,100,100, 36, +138,139, 21,176, 88, 44,176,177,177,129, 94,175, 7,159,207, 47, 61, 5,100,100,138,218,108, 49,179,217,108,230,241,120, 8, 8, + 8,192, 87, 95,125, 5,173, 86, 11,107,107,107, 0,128, 66,161,128, 92, 46,199,205,155, 55,145,154,154,138,178, 79,225,213,178, +147, 74,223, 28, 56,112, 96,165, 19,254,234,116, 58, 20, 23, 23,163,184,184, 24,114,185, 28, 90,173, 22,109,218,180, 17, 28,137, +142,126, 19, 5, 5, 75, 42,125,142, 72,212,127,235,214,173,110, 2,129, 0, 26,141, 6, 37, 37, 37,120,248,240, 33,210,210,210, +180,185,185,185, 38, 59, 59, 59,174,191,191, 63, 87, 40, 20, 10,251,246,237,203, 81, 40, 20,224,112, 56,232,213,171,151,243,142, +109,219, 6, 66,175, 95, 74, 47,233,218, 57, 9,232, 90,232,245,111,189,214,170,213,175, 87,174, 94, 13,159, 60,121, 50,226,227, +227, 23,218,236,218,117, 78, 13, 92,175,238,185,201,192,135,223, 62, 86,192,176,180,180, 80, 3,144,247,216, 67, 82,253, 83, 82, +142, 15, 31, 62,252, 70,124,124,188,203,178,101,203, 60,222,121,251,237, 15, 1, 44,168,203, 50,218, 73,165,175,122,122,122,226, +216,177, 99, 72,127,240, 96,154, 9,208,212,233, 19, 23,143,215, 46, 50, 50, 18,135, 14, 29, 66, 70, 90,218, 52,211,159,151,177, +244,131, 18,144,199, 79, 78,158,182,105,211,166,141,163, 70,141, 2,143,207,111, 7, 83,157, 78, 28, 62,213,241,125,212,184,201, +216,180,110,229, 38, 0,163, 1, 88, 0, 92,161, 35,142,144,255,118,171, 86, 77,181,200, 63,168,216, 90, 87,231, 22, 45, 55, 55, + 55,111, 91, 91, 91,100,102,102,162, 81,195,134,185, 66,161, 16, 2, 43, 43,136, 4,130, 90, 45,129, 90,173, 14,245,242,242, 66, +113,113, 49, 92, 92, 92, 96,109,109, 93,113, 19, 8, 4, 21,223,219,217,217,129,203,229,194,207,207, 15,106,181, 58,180,198,220, +156,155,110,187, 86, 78,248, 32,230,220,177,250,111,191,221, 15,142,142, 78,240,245,245,129,155,155, 27,196, 98, 49,124,125,125, + 17, 24, 24,200,150, 44, 89, 2, 27,183,176, 90,189,145, 63, 94, 60,241,249,124,152,205,102,228,228,228,224,222,189,123,136,143, +143, 71, 76, 76, 12,174, 93,187,134,146,146, 18,212,162,206,130, 90,163,105,198,231,243, 43, 45,178,228,114, 57,228,114,121, 69, +161,149,151,151,135,212,212, 84, 40, 85,170,230,213, 20,189,253,154, 54,109,202, 3, 0,177, 88,140,230,205,155, 99,237,218,181, +166,159, 15, 30, 28,212, 56, 38,198,201,247,196, 9,135, 31,127,248, 97,208,128, 1, 3,204,191,255,254, 59, 20, 10, 5,238,220, +185, 3, 87, 87, 87,190, 64, 36, 26, 72, 47,231,186,145, 1, 42,151,146,146, 30,109,219,182, 77, 41, 46, 46,198,226,197,139,185, + 86,118,118,235,230, 86,113,138,175, 2,143, 23, 17, 25, 25,137,195,135, 15, 35, 51, 45,109,122, 90, 37, 5, 76, 26,144,151,158, +156, 60,125,211,166, 77,232,214,173, 27, 56,124,126,157, 59, 42,181,110,221,186,169,197, 98,193,141, 27, 55,224, 0, 92,174,235, +243, 3,131,130,194,203, 91,126, 37,192,133,170, 30, 39, 1, 46,196,197,197, 65, 44, 22,163, 81,227,198, 45,234,248,103,150,112, + 56,156,172, 81,227, 38, 99,255,241, 75, 0,128, 77,235, 86,230, 60, 86,100, 17, 66,168, 69,235,159,218,162, 85, 94, 88, 61,126, +195,159, 10,173, 90, 22, 31, 0, 0, 43, 43, 43, 8,132, 66, 8, 4,130,210, 2, 73, 40,172,117, 6,135,195,129, 72, 36,170, 40, +172, 30, 47,176, 30,255,222,198,198,166, 86, 5, 12, 0, 20, 37, 29,111, 63,250,253, 81, 2,161, 80, 8,189, 94, 7,198, 24,132, + 66, 17, 28, 28, 28, 16, 16, 16, 0,133, 66,129,182, 17, 29,116, 15,229,214,209,206,141,250,198, 63,203,214, 51,153, 76, 80,169, + 84, 40, 42, 42, 66, 97, 97, 33, 20, 10, 5, 52, 26, 77,173, 47, 69,183, 88, 44,188,135, 15, 31,226,167,159,126, 66, 65, 65, 1, +128,210,142,214,229,197, 85,249,215,148,148, 20,108,219,182, 13, 15, 30, 60,168,211,254,105,223,190, 61,162,163,163,121, 29,187, +116, 89,127,202,223, 63,243,148,191,127,102,199, 46, 93,214, 31, 62,124,152,231,237,237,141,212,212, 84,196,198,198,162,168,168, + 8,140, 49,186,126,254, 25,220, 7,138,212,133,133,163, 62,255,252,115,102,107,107,139,197,223,126,219,108, 1,240,110,109, 11, + 24,105, 53, 5,140,244,249, 10, 24, 48,198, 96,177, 88, 96, 54,155,159,105,221, 56, 28, 14,199,202,202,170,174, 67, 43,212,229, +193, 21, 29,223,167,126,241, 21,142, 30,218, 91,254,243, 68, 42,178, 8, 33,255, 2, 85,118,132,231, 63, 86, 65, 86,124,173, 74, + 78, 78,206, 35,149, 74, 85,223,223,223, 31, 25, 25, 25,110,126,126,126,105, 2, 43, 43, 88, 11, 4,224,112,107,174, 9,108,108, +108,110,100,102,102, 70,120,123,123,195,100, 50, 85, 20, 85, 79,158, 58, 44,111,165,185,118,237, 26,108,108,108,110, 64, 91,237, +200, 9, 48,235,139,234,181,104,209,162,162,101,200,193,193, 1, 14, 14, 82, 8,133, 34,204,156, 57,211,178,108,201,146,213,126, +157,231, 22,143,252,248,115,246,249,130,245, 47,116,203,214,246, 31,147,141,141,205, 13, 95, 95,223, 54, 82,169, 20,251,247,239, + 71,106,106, 42,138,138,138,160, 86,171,161,211,233,160, 86,171,161,215,235, 33, 18,137,208,184,113, 99,216,219,219,227,244,233, +211, 55,160,211, 85, 94, 92, 22, 20,236,191,113,227, 70,155, 86,173, 90, 85,180,168,116,234,212,137,211,169, 83, 39,151,138, 86, + 52,181, 26,249,249,249,184,114,229, 10, 78,159, 62, 13, 14,135,131,196,196, 68,179, 78,163,217, 73,175,137,103,163, 5,126,227, +109,218,180,113,252,248,241,239, 71, 68, 68,192, 12,188, 1, 96,219, 95, 88,192, 0, 0, 98, 98, 98,110,154,205,230,136, 6, 13, + 26, 64, 14,188, 6,224, 80,157,138,200,164,164, 56,147,201,212,165, 89,179,102,216,191,103, 79,123, 0,169,149, 61, 78, 5,180, + 15, 15, 15,135, 70,163,193,157,219,183,101,117, 40,178,214,207,136, 90,248,222,240,209, 31, 98,235,250,213,216,180,110,229,195, +141,107, 87,248,162, 22,253,199, 8, 33,255,169,214,172, 26,107,145,191,169,177, 85, 21, 95,252,186,164, 20, 23, 21,201,226,226, +226,234,183,104,209, 2,235,215,175,111,213,182, 77,155, 71,214, 2,129, 73, 96,109, 13,110, 45,254,145,104, 84,170, 95,126,249, +229,151,215,250,246,237,203,255,253,247,223,225,225,225, 81, 81,104,149,127,229,243,249, 96,140,193,198,198, 6, 7, 14, 28, 48, +104, 84,170, 95,106,108, 45, 50, 91,204,220,178, 66,143, 49, 6,185, 92, 14,107,107,107, 44, 93,186, 12,171,150, 44, 25, 98, 6, +246, 6, 75, 92, 63, 3, 32,250,203,254, 65,171,213,191, 30, 61,122,180,229,236,217,179,173,124,124,124, 32,151,203, 81, 84, 84, +132,130,130, 2, 40, 20, 10, 40, 20, 10, 20, 21, 21, 65, 46,151, 67, 36, 18, 33, 62, 62,222,168, 85,171,127,173, 42, 79,168,213, +238, 27, 49, 98,196,212,184,184, 56, 79, 62,159, 15,163,209, 8,139,197, 2,139,197, 2,131,193,128,164,164, 36,220,186,117, 11, +119,239,222, 69, 97, 97, 33,172,172,172,192,227,241,112,237,218,181, 34,137,209,184, 71, 79,175,233,103,102, 5,236,191,120,241, +226,251,195,134, 13,131,151,143, 79, 7,100,100,212,170,128, 57, 88, 77, 1, 83,252,108, 5,204, 31, 5, 80, 73,201,213,148,148, +148,136,142, 29, 59,194,211,199,103, 97,227,140,140, 83,183,235,208, 79,203,108, 50, 93,184,120,241, 98,151,225,195,135, 99,253, +250,245, 11, 93, 83, 82,142,231, 61,113,154,211, 21,112,125, 37, 48,112,225,123,239,189,135,147, 39, 79,194,108, 50, 93,168, 38, +242,241, 17,223,235,189, 55,118,146,239, 19, 29,223,215,114, 56,156,137, 0, 22,211, 17, 69, 8,249, 55,183,104,213,233,212,161, +216,108,158, 49,101,202, 20, 35,151,203, 69,191,126,253,236, 14, 29, 62, 60,224,218,245,235, 1,185,185,185, 14,102,179,185,198, + 44, 87,157,110,197,148, 41, 83,228,122,189, 30, 33, 33, 33, 40, 44, 44,132,217,108, 6,159,207, 7,159,207, 7,135,195, 1,151, +203,133,173,173, 45,226,226,226,176,113,227, 70,133,171, 78,183,162,198,127, 18,102,243,141,109,219,182,129,199,227, 49,145, 72, + 4, 14,135, 3, 62,159,143,101,203,150,229,174, 2,246, 3, 0,143,203,213, 3, 0,151,203,169,109,239,221, 26,207, 91, 10, 4, + 2, 88, 74, 47, 2,168,241,177,142, 58,221,242, 69,139, 22,149,220,185,115, 7, 42,149,170,162,245, 77,169, 84, 86,116,174,151, +203,229,224,112, 56, 80,169, 84, 56,124,248,112,137,163, 78,183,188,170,188, 2, 32, 59, 35, 49,177,119,171, 86,173, 10, 82, 82, + 82, 80, 92, 92,140, 27, 55,110,224,244,233,211,216,189,123, 55, 78,158, 60,137,164,164, 36,152, 76, 38,120,123,123,131, 49,134, +131, 7, 15, 22,155, 74, 74,222, 40, 0,178,233, 53, 81,181,122, 30, 30, 93,220,221,220,210, 93, 93, 92, 50,234,121,120,116,121, +242,247, 82, 32, 33, 33, 33, 1, 38,147, 9, 1, 1, 1, 78,213,245,211, 98, 38,211,197,139, 23, 47, 98,248,240,225,240,173, 95, +255, 27,127,192,245,201,199,248, 3,174,254,129,129,223,148, 23, 48,204,100,186, 88,215,101,182, 3, 86,126,246,217,103, 26,107, +107,107,236,218,181, 43,192, 24, 20,116,151, 15,188,107, 11, 52,236, 8, 88,215,244,124, 79, 96,245, 23, 95,124,145,205,225,112, +176,125,251,118, 23,105, 96,224, 77, 62, 48, 66, 10,212,147, 2,245,248,192, 8,105, 96,224,205, 93,187,118,185,152, 76, 38,124, +252,241,199,217,158,192,234,106, 34, 39, 49,198,222, 98,140, 69, 50,198,124, 55,174, 93,129,163,135,246,150, 23, 89,163, 81,218, +233,125, 24,128,155,116,196, 17, 66,254,205, 42,109,134,226,183,154,159, 3, 48,183, 14,173,195,112,245,250,189, 98, 23, 71,251, + 19,229,191, 43,188,181,183, 65,231, 80,251,176, 53,107,214,192,202,202, 10, 15, 31, 62,196,237,219,183, 97,111,111,143, 33, 67, +134,232, 52, 37, 37,189, 31,155,235,176, 43,128,211,101,153,165,243,169, 21, 39,218, 6,242,227,235, 31, 63, 26,205,147, 74,165, + 80, 42,149,224,114,185, 16,137, 68,176,177,177,129, 88, 44, 70,108,108, 44,122,190,213,199,156,103, 19,249,199,128,165,127,204, +167, 86,145, 89, 62,214,208,107,128, 77, 28,240,169,155,151,215,148, 89,179,102,137,187,119,239, 14,107,107,107,248,212, 11,206, + 14,232,177,120, 37,151,203, 49,101, 20, 40,102, 6,214,243,146,222, 78, 76, 5,192,201, 53, 94,153,229,245,216, 92,135, 79, 45, +167,159,254, 92,192,129, 45, 75,236,155, 55, 47,237,143, 46,151,203,145,147,147,131,220,220, 92,200,229,114,168, 84, 42, 0, 64, +116,116, 52,142,158,191,171,208,248, 12, 72,174,106, 57,255, 88,247,123,118, 94,134,203,175,236,216,182,133,231,234,234,138,156, +156, 28,228,229,229, 65, 46,151, 67,163,209,192,108, 54,163,176,176, 16, 27, 54,109, 49, 23,216, 70, 62,168, 24, 16,178,186, 76, +213, 67,177,147,242,146,119,120, 99,127,246,254,251,239,219,217,219,219,195, 98,177,160,168,168, 8,233,233,233, 72, 73, 73,193, +249,243,231, 85,185,114, 61, 84, 46,175,103, 84, 12, 88, 90, 73,230, 11,244,143,203,124,124,220, 42, 47, 79,207,204,180,180, 52, + 55,179,217, 12,111,111,111,147,188,176,240, 27, 1,112,210, 14,200,250,127,246,174, 59, 44,138,107,125,191, 51, 59,219,119, 89, +250,210, 81, 68, 64,186, 34,150, 24, 75, 20,236,216, 75, 52, 26, 77,108, 49, 49,177,196, 36, 26, 19, 91,212, 24, 99,162,166, 89, +163,198,146,216,176, 4, 59,138, 98,185, 54,176,208, 65, 4, 1, 41, 75,221, 93,182,183,249,253, 33,112,209, 0,187,152,228,222, + 27,127,251, 62,207, 62, 44,187,179,239,156,115,230,204,153,247,124,231, 59,223, 7,128,174, 0, 62,219,248,221,119,111,143, 24, + 49, 2, 93,186,116, 41, 44, 45, 43,243,105,170, 47,209, 0,163, 3, 96,171,244,244, 76,189,117,235,150,107, 65, 65, 1,222,124, +243,205,138,199, 15, 31, 46,170,247,215,146, 2,189,218,180,111,191,246,192,129, 3, 78,237,218,181, 67, 88, 88, 88, 41,183,160, + 32, 36, 19,144, 54,211, 63,155,189, 55,107,178, 78,250,204, 30, 21,218,229,221,119,223,133,193, 96, 64, 98, 98, 34,110,222,188, +137,199,143, 31,227,218,181,107, 53, 34,129,224,245, 70,185, 14,155,236,159,131,253, 21,190,251,246,237, 37, 88, 44, 22,118,237, +218,133,228,228,100, 0, 64, 68, 68, 4,222,122,235, 45, 24, 12, 6, 76,154, 52,153, 62,153,201,203,109,169,127, 2, 8, 5,176, + 30, 79, 69, 94, 23,154,166,185, 4, 65, 20, 3,240, 66,235,124,178,172,253,211,202,105,229,252,255,195,249, 82,194,108,174,195, + 85,155, 97,251,108,154,143, 25,197,135,183,174,160,122,246,234, 29,184, 98,249, 50,178,107,215,174,240,242,242, 66, 68, 68, 4, + 10, 10, 10, 56,118,118,118,230,242,169,213,246, 30, 52,241, 81,120,120,184,221,162, 69,139,108, 7, 12, 24,192,244,242,242, 2, + 77,211, 72, 78, 78, 70,108,108,172,110,199,142, 29, 50,165,203,176,154,164,132, 95,107, 45,201,167,118, 19, 80, 2, 88,233, 89, + 92,188,237,189,217,179,151,117,234,220,121,218,242,229,203, 73, 33,159,199, 92,179,100, 58, 23, 0, 86,253,112,208,118,196,216, + 55,176,209,237,243,221,133, 0, 0, 32, 0, 73, 68, 65, 84, 15,232, 51,177,233, 60,114,141,203, 89, 80, 52,227,241,144, 81, 81, +126, 31,206,121,219, 56,126,252,120,129, 72, 36,130,151,151, 23,236,237,237,145,155,155,139,162,162, 34,250,247,223,127,175,253, +215,221, 44,230,177,115,183, 31,115,109,221, 44,201, 75, 40,239, 61,112, 92,222,144, 33, 67,236,167, 76,153, 98, 19, 25, 25,201, +228,112, 56,224,112, 56, 40, 43, 43, 67, 78, 78,142,238,247,223,127,175, 85,138, 7, 87, 39, 37, 28,144, 91,152,235, 80,213,123, +194,138,156, 43,231,151,207, 79,125,240, 96,178, 9,232,168,211,233, 60,140, 70, 35, 65,146,100,137,201,100,122,160,147,203,119, +106, 34,150,111,176,230, 58,180, 12, 70,163,145,101, 52, 26, 81, 83, 83,131,243,231,207, 83, 15, 31, 62,252,236,222,189,123,159, + 21, 23, 23, 67,175,215, 99,204,152, 49,136,136,136, 64, 66, 66, 2,202,203,202,126,111,137, 43, 19,144,114,138,138,222,154, 49, + 99,198,233,189,123,247,146,247,238,221,115,218,181,107,215,207, 77, 9,152,201,147, 39,155,202, 10, 10,222,210, 0,210, 22,250, +103, 75,247,102,197,153, 3,223,223, 27, 57,122,108,240,242,165,159, 49,123,244,232, 1, 39, 39, 39,244,234,213, 11, 58,157,206, + 46, 40, 40,200,220,189, 41,239, 61,232,245,220,142, 29, 59, 10, 54,108,216,224,250,246,219,111, 99,206,156, 57, 0, 0,149, 74, +133,115,231,206, 97,254,252,249,165, 5, 84, 55,133,185,254, 89,103,169,170, 23, 96,151, 1,244, 6,144, 11,171,227,187, 21, 86, + 88,241,114,162, 62,169,180, 27,158, 38,150, 62,137,167,147,115,243,185, 14,175,220, 76, 65,227, 52, 31, 79,225,150,102,240,158, +242,112,214,194,181, 97, 12,189,204,158, 73,168, 69,217, 89, 89,132,185,156,135, 13,249,212,108,253,107, 29, 31,253,214,117,205, +170, 85,115, 55,110,220, 24, 85, 31,194,129,207,231, 63, 80, 41, 20, 23,156, 53,154, 77, 74, 91,255, 11,173,205,205, 87, 4,148, + 1,152,109,159,148,244, 93,204,136, 49,235,184, 14,190,204, 79, 87,239, 80, 51, 72, 82,155, 83, 92,142,141,126,128,192,130, 13, +146, 74, 45,144, 90,227,102, 40,115, 28,155,249,249, 71, 31,125,184,106,229,202,174, 66,161,176,143,206, 96,240, 55,153, 76,128, +201,148,173, 84, 40, 46,211, 58,221, 45, 77,196,210,111,184,182,110,180,197,121, 9,237,130,228, 14,121,135,187,238,222,185,243, +131, 67,135, 14,253,161,238,142, 26,205,119, 74,187,160,120, 75,234,222,248, 24, 53,112, 29, 18,201,245,150, 76,151,214, 92,135, + 22,206, 62, 76,166,153,246,246,246,123,162,162,162,184,209,209,209, 24, 58,116, 40,122,244,232, 1,147,201, 4,154,166, 33,151, +203,113,240,224, 65,172, 91,183, 46,219, 7, 88,105,142, 79, 3, 92,224,156, 58, 53,184, 99,199,142,187, 90, 18, 48,117, 34,203, +172, 79, 98,203,247, 38, 39,219, 96, 59, 60,127,194,123,107,252,180,178, 18, 59, 71,190,193, 53, 53,229, 1,105,249,189,217, 65, +110, 76, 62,216,109,204,168, 81,239, 49, 40,170, 87,221, 14, 72, 58, 61, 45, 45,169, 62,169, 52, 34,222, 58,223,202,190, 84, 31, +187,206,234,248,110,133, 21, 86,188,236, 66,107, 40,158,250,107, 53,164,228,105, 54,215, 97,189,213,135,162, 40, 73,238,177, 89, +111,180,196,206, 4,162,234, 44, 89, 48,155,235,176,238,125, 62, 32,135, 70,243,197, 51,193, 72, 27,237, 46,100, 62,119,124,107, +194, 34, 86, 3,153, 48,104, 98, 32, 73, 3, 78,204,126,202,215,117,213, 39,141,235,212,236, 67,246,153,243,178,170,212,192, 21, +212,214, 94, 65,109,109,147, 78,187, 76,138, 85,101,174,156,207,215,189, 0,144,253,217,186, 63,207,105, 86, 60,252,137,246,252, +255,134, 39, 21, 21,199, 0, 8, 61,227,226, 92,206,196,197,141,255,112,193,130, 49,110,238,238,237,157,156,156,236,109,108,108, +200, 27, 55,110, 60, 50,168,213,223,117, 2,118,215, 89, 83,205, 66, 3, 92,232, 80, 80, 16, 50,110,212,168,247, 8,138,234,217, + 88,192,208, 6,195, 53, 95,224,199,150, 44, 89, 47,122,111,122,113,220,162,234, 44, 89, 96, 0, 51, 44,233, 27, 69, 79,203,177, + 26, 6,195,106,220,191,223, 68,159,111,117, 95, 90, 69, 16,132, 28, 86,199,119, 43,172,176,226,229, 69,125,190,195,147,255,233, + 19, 71, 91, 57,173,156, 47, 17, 39, 3, 79,119,209, 89,219,211,202,105,229,180,114, 90, 57,173,176, 8,148,181, 9,172,176,194, + 98, 24,241,239,101, 48, 43,172,176,194, 10, 43,172,168, 71,189,111, 86, 99,108, 3,158,186,238, 52,167, 74, 91,179,155,224, 69, +148,109,188,149,211,202,105,229,180,114, 90, 57,255, 43,156,124,252,113,217,219,218,158, 86,206,255, 20,167, 57,238,127,226,110, +198,122,159,172, 6,223,172,255, 20,172,102, 85, 43,167,149,211,202,105,229,180,114, 90, 57,173,156, 47, 59,220,234, 68, 86,227, + 23,128, 86, 6, 44,181,194, 10, 43,172,120, 89,177,124, 57, 72,154, 6, 65,211,203, 73,154, 62,196,160,233,177, 12,154,198,159, + 74, 5, 50,118,108,211,193,108,223,127,195,222,198,218,226, 86, 88,241, 82,161, 4,205, 36,149,182,250,104,253,119,225,237,234, +234,186, 21, 0, 81, 90, 90, 58, 19, 64,129,181, 73,254,247,224,224,224, 16,101, 48, 24, 32,147,201, 46,188,140,245, 11,110,143, + 81, 52,137,160,134, 15,104, 20,164,231, 96, 79, 83,199, 6,249,225, 77, 16,255,142,197, 69,152,144,158,246, 16, 71, 91,113, 58, +114,112,180,215,143, 0,112, 58,190,240, 61,252, 61,113,181, 2,156,157,157,207, 82, 20, 69, 25,141,198,217, 18,137, 36,174,121, + 33, 52,150, 1, 0, 76, 58, 97,113, 77,169,120,209,188,119, 8,166, 82,179,179, 70,163, 82, 72, 25, 76, 70, 30,135,233,122,117, +214,219,228,233,234,218, 87,210,154,250,253,225,195,135,155,205,226, 29,226,135,193,164, 49,120, 88, 68,232,163,220,245,155,186, +110,236,227,235,196,124, 84,120, 87,248,213, 22,233, 86,182, 93,155, 97,111,142, 39,226, 40, 62, 49,121,231,206,202,218,151,245, +222, 89, 3,144,122, 38,179, 3, 97, 50,249,130, 32,248, 4, 0,218,100, 50, 17, 36,249,136,107, 48,100, 45, 4,106, 95,128,211, + 65, 7,132, 49, 57, 28, 47,163,193,224, 66, 0, 52,131,162,202,244, 26, 77, 33, 11,184,191, 24,168,121,217, 57, 89, 28,142,167, +209, 96,112, 1,128,255,197,114, 90,241, 44,154, 21, 90, 66,161,240, 14, 73,146,158,141,147,225,214,231, 19,172,255,172,241,119, + 4, 65,192,104, 52, 22, 85, 87, 87, 71,182,226,252, 34, 0,227, 1,212,111, 81,223, 15,224, 32, 94,220,225, 88,196, 98,177, 22, + 10, 4,130,126, 42,149, 42, 4, 0,120, 60, 94,170, 66,161,184,168,211,233,214,191, 32, 47, 5, 96,156, 80, 40,236, 75,146,100, + 95,154,166, 9,154,166, 19,106,107,107, 47, 2, 56, 4,224, 69, 34, 37,240,196, 98,241,106, 7, 7,135,137,139, 23, 47,174,116, +116,116,236, 48,127,254,252,219, 85, 85, 85,191, 86, 84, 84, 44, 65, 43,114,212,253,205,104,239,234,234,186,159,201,100, 50, 10, + 11, 11,251, 2,128,151,151, 87,130, 86,171, 53, 74, 36,146, 55, 0, 60,108, 37,159, 0, 64,119,161, 80, 24, 41, 20, 10,123, 27, +141,198,160,186,252,140,233,181,181,181,137, 58,157,238, 14,128, 27, 0, 20,255, 67,247,136, 13, 69, 81,123,235,250,186, 63, 0, +249,203, 54, 8,208, 36,130,210, 82, 51, 58, 52, 8,175,144,192,230, 15, 38,224,221,196,177, 22, 11,173,126,125,220,134, 13, 31, +222,159, 4, 0,173,254,244,176,139,151, 75,142,255,197,213, 9, 24, 61,122,244,245,189,123,247,218,107, 52, 26,204,156, 57,115, +127,124,124,252,143, 50,153,108,113,139, 3,135,208,126,254,215, 27,206,241, 9,130, 4, 0,177,201,100, 20, 63,121,242,208, 63, + 45,229,250,160,212,212,127,173, 81,101, 92,188, 97, 34,152,179,116,232,149, 97, 73, 33,130,124, 17, 51,108,204,168,161, 43, 87, + 46,199,196,215, 39,182, 77, 77, 85,243, 60, 68,185,236, 42,149,192,207,209, 89, 60,124,229,170,195,196,213, 43,199,134,239,221, +181,226,226,219,111, 59,246,123, 9,197, 22,177,140,205,246,214, 27,141,131, 72,160,132,178,177,201, 5,139,165, 4, 0,210,104, +100,104,101,178,246, 74,138,154,244, 5,112,235,115,131,225,174,165,156,171, 40,170,187,173,159, 95,239,215,143, 29,131,208,203, +139,162, 56, 28, 18, 0, 12, 26,141, 87,109, 97,161,219,129,225,195,187, 45,207,202,186,180, 28,184,105,229,252,175,112, 90,209, + 26,161, 69,146,164,231,147, 39, 79,196, 2,129,224,233, 96, 76,211, 48, 26,141, 48, 26,141, 13,201,139,105,154,110,248,107, 48, + 24, 16, 24, 24,104,209,140, 22, 64, 63, 0, 83, 95,123,237,181,177,235,215,175,103,134,133,133,213,167, 12,233,245,233,167,159, +254,144,156,156,124, 4,192,110, 60, 13,222,104,233,140,119,160, 64, 32,216,247,245,215, 95,139,250,247,239, 79,185,187,187,131, + 32, 8,148,150,150,118,143,143,143,143,156, 63,127,254,108,133, 66, 49, 9,192,217, 86,180, 79,168,141,141,205,225, 81,163, 70, +121,246,233,211,135, 27, 28, 28, 12,163,209,136,187,119,239,190,125,231,206,157, 9, 71,142, 28, 89, 38,151,203,199,194,242,124, +109,132, 80, 40,156, 34, 18,137, 86, 47, 93,186,212, 97,210,164, 73,236,148,148,148,106, 95, 95, 95,226,234,213,171,206, 7, 15, + 30,156,189,118,237,218,113, 50,153,108, 73,109,109,237, 47,176, 32,135,162,141,141,205, 29,146, 36, 61, 45, 17,194, 0, 90, 35, +134, 59,249,248,248, 28,188,114,229,138, 79,126,126,190,113,228,200,145,123, 0,224,226,197,139, 97,122,189,158, 24, 48, 96,192, +233,162,162,162,241, 0, 44, 29, 36,195, 29, 28, 28,142, 79,156, 56,209,161,125,251,246,124, 31, 31, 31, 66, 32, 16,128,193, 96, + 64, 42,149,186,167,164,164, 68,223,188,121, 83, 21, 31, 31, 95,165,209,104,134, 3,184,223,138,235,212, 67, 44, 22, 79,102, 50, +153,161, 6,131,193, 3, 0, 40,138,122,162,215,235, 83, 36, 18,201, 94, 0,215, 95,244, 6,113,113,113,249,126,245,234,213, 78, + 18,137,132, 94,187,118,237,247,114,185,124,202,203, 58, 24,236,255,245, 16,238,220,190, 9, 60, 77,155, 67, 52,209,255, 8, 0, +172,121,243, 22, 32,178, 75, 55,188, 49,113,156, 89,206, 33, 81,158, 95, 51,217, 44, 71,181, 90,125, 93,170,212, 28, 18,240,185, +227, 39, 78,136,201, 6,128,211,103, 46,141,239,218,213, 62,193,150,207, 25,199,229,114,123,232,181,186,202, 83, 23,138, 62,106, +141,168,242,240,240, 56,107,111,111,207,175,170,170, 42, 45, 47, 47,223, 60,108,216,176, 85,187,119,239,182,127,244,232, 17, 10, + 11, 11, 49,119,238, 92, 97, 81, 81,209,123,247,239,223,255,151, 86,171,109,214,178, 37,151, 87,109,250,116,209,136,165,182,182, + 78, 12, 1, 95, 4, 27, 91, 7,248,182,239,136,238, 61,134, 97,240,208,105,200,201, 78,238,190,123,215,202,228, 39, 79,226,191, + 20, 58,180, 91, 85, 83,227,211,236,184, 20, 28,128, 62,195, 71, 61, 21, 89, 75,151, 46, 71, 86, 70,134, 60, 63,143,124,255,228, + 49,138, 63, 56, 42,144, 99,208,150,230, 95,189,114,204,167,103,175,145, 0, 16,185,119,215,138,139,239,191, 97, 31,245,253,254, +234,151, 69,196, 19, 43,153,204, 80, 24, 12, 1,142,110,110, 7,212, 38, 19,173,151, 74,189, 76, 74,165, 27, 0, 24,152, 76,173, + 64, 40,124,224,238,231,151,152,149,148,212,251, 11,138,234,245,121,203, 9,202,235, 57,167, 12,220,176, 65, 28, 49,123, 54,171, + 54, 47, 79,151,187,101,139,178, 44, 49,209, 72,113, 56,180,215,160, 65,132,115,223,190,220,217,233,233,172,107,107,215,246,102, +174, 88,225,187, 68,167,219,103,229,252,143,114,254,127, 71,189, 19,124,227,221,135,219, 90, 20, 90, 4, 65, 64, 32, 16,224,192, +129, 3, 96, 50,153,160, 40, 10, 76, 38,179,217,247,222,222,222,150, 20,100,180,171,171,235, 15, 63,254,248,163,203,192,129, 3, +193,229,114, 27,190, 96, 48, 24,232,223,191, 63,162,163,163,153,197,197,197, 19, 14, 28, 56, 48, 97,205,154, 53,101, 53, 53, 53, +115, 80,151, 24,186, 5,244,237,208,161, 67,236,185,115,231,120,106,181, 26,137,137,137,168,174,174, 6,155,205,134,167,167, 39, + 6, 12, 24, 64,101,100,100, 56,244,239,223, 63, 54, 43, 43, 43, 6, 64,130, 5,101,141, 20,139,197,151, 15, 29, 58,196,237,216, +177, 35,145,147,147,131,136,136, 8, 0,128, 84, 42,197,200,145, 35,185,147, 38, 77,106, 63, 97,194,132, 27, 18,137,164, 15,128, + 59,102,248, 58,187,186,186,254, 50,106,212, 40,247, 53,107,214,136,108,108,108,144,159,159, 95,226,234,234,234, 95,223,222, 19, + 38, 76, 96, 15, 27, 54,204,109,221,186,117,155, 14, 31, 62,252,145, 68, 34,153, 2, 32,169, 69,213, 90, 39,136,249,124, 62,202, +202,202,176,127,255,126,188,247,222,123, 96, 48, 24,144, 72, 36, 56,120,240, 32,222,127,255,253,122, 65, 99,145, 24,230,243,249, +209,126,126,126, 63, 95,188,120,209,211,206,206, 14,238,238,238,228,231,159,127, 30,234,235,235,203,107,219,182, 45,163,164,164, + 4,177,177,177,190,147, 39, 79, 62, 94, 80, 80,240,182, 70,163, 49,187,164,230,226,226,178,243,228,201,147,222,169,169,169,216, +178,101, 11,170,170,170,192,102,179, 97,103,103, 7, 87, 87, 87,248,251,251, 19,139, 22, 45,226, 15, 27, 54,140, 63,103,206,156, +157, 90,173,182,147, 5,215,168,163, 88, 44,222,218,183,111, 95,223, 21, 43, 86,216,185,186,186,162,126, 98, 32,149, 74, 61,243, +243,243,187, 47, 93,186,116,236,157, 59,119, 30, 73, 36,146, 89, 0,238,181,242,198,233, 20, 28, 28, 28, 51,114,228, 72, 70, 73, + 73, 9,246,238,221, 27, 35,151,203, 59,181, 66, 92,254,163,112,231,246, 77,204,124,119,110,173,187,151, 23,235,220,217,159, 71, + 31, 62, 26,112,219,142,247, 52, 33,117,141, 10,186,177,163,178,186, 12, 24, 56,141, 53,100,232,200,218,109, 63,109, 18, 90, 34, +180,152,108,150,227,254,125,223, 22, 92,185,122, 39,244,124,252,205, 65,163,135, 15,167, 89, 44, 59, 95, 0,248,104,254, 60,102, +236,137, 19,187,250, 71,119, 43,238,213, 51,178,224,141, 73, 11,188, 91, 81,220,128,128,128,128, 75,201,201,201, 46, 28, 14, 7, + 85, 85, 85,142,219,182,109,251,182,103,207,158,100,110,110, 46, 50, 50, 50,144,151,151, 7,169, 84,138,254,253,251, 11,147,146, +146, 54, 3,104, 86,104,233,200,126,171,221,219,234,191,115,228, 9,124,116, 70,153,152,214,151, 4,159, 63,121, 62,252,183,189, +170, 8, 23,183, 64,255,169,111, 45,195,202, 85, 71,152,191,238,255,106,233,133,248,223, 0,210,167,249,140, 0, 52,122,124,186, +100, 49,100,114, 13, 38, 77,156,129,201, 19,103, 56,210,208,186,209, 70,181, 64,171,170,182,179, 97,165,199,253,184,227,219, 81, + 0, 60, 27,137,173, 11, 47,139,216, 90,201, 98,249,192,100,242,245, 31, 57,242, 88,238,153, 51,237,104,157,206,137,193,102, 23, +217, 56, 56,148, 25, 52, 26, 90,175,211,177, 84, 42,149, 71,110,106,170, 91,207, 69,139, 46, 92, 93,187,182,207, 23, 12, 70,151, +207,141,198,219,205,114, 82, 84,183,152, 31,126,112, 14,157, 62,157,115,111,197, 10, 69, 69, 98,162,202,111,200,144,234,136,119, +222,209, 0,128, 60, 47,143,149,181,108, 25,223,185,119,111,222, 43, 11, 23,218, 27,181, 90,215,149, 43, 87,118, 93,250, 52,121, +121,171, 56,189,199,143, 55, 46,221,181,171, 75,226,130, 5,175, 17,122, 61, 99,208, 43,175,220, 93,187,119,239,147, 63,195,249, + 87,150,179,248,242,101, 77,149,175, 47, 34, 70,142,172,244, 22,139, 53,127,101,221,255, 76, 57,173,104, 64,189,175,214,204,198, + 51, 84,196,197,197,245, 1,112, 9,192,138,152,152,152,229, 0, 96,107,107, 91, 86, 83, 83, 35,142,141,141, 53, 43,178,152, 76, + 38,220,220,220,224,239,239, 47,145, 72, 36, 46, 45, 20,160,208,100, 50,121,210, 52,221, 96,125,105, 14, 26,141, 6,217,217,217, + 8, 15, 15, 47,194,211, 68,180,205, 26,117,248,124,126,110, 70, 70,134, 83, 90, 90, 26,238,220,185, 3, 95, 95, 95,216,219,219, +131,201,100, 66,175,215, 67, 38,147,161, 67,135, 14,224,112, 56,232,220,185,115,133, 66,161,240, 53,179, 4,196, 17, 8, 4,217, +151, 47, 95,246,138,136,136,192,173, 91,183,224,229,229, 5, 87, 87, 87, 0, 64, 94, 94, 30,174, 94,189,138, 33, 67,134, 32, 57, + 57, 25, 99,198,140, 41, 84, 40, 20,254, 0, 52,205, 17, 58, 56, 56,148, 92,188,120,177, 40, 44, 44, 76,173, 80, 40,200,178,178, + 50,102, 98, 98,162, 65, 46,151, 11,165, 82, 41,179,166,166,134, 41,147,201, 40,133, 66,193, 36, 73,146,165, 82,169,152, 23, 46, + 92, 96,232,116,186, 22, 3,100,214, 95,167, 19, 39, 78, 32, 44, 44, 12,177,177,177,248,240,195, 15,113,237,218, 53,120,121,121, +225,208,161, 67, 88,184,112, 33, 50, 51, 51,225,228,228,132,224,224, 96,115,215, 8,237,219,183,207,121,240,224, 65,123, 22,139, + 85,159,215,177, 62, 95, 30,202,203,203,241,240,225, 67, 60,121,242, 4,126,126,126,152, 56,113,226,195, 39, 79,158,248,153,235, +121, 30, 30, 30,229,169,169,169, 78,225,225,225, 40, 43, 43,131,157,157, 29,108,109,109, 97,103,103,215,240,222,215,215, 23, 11, + 22, 44,128,171,171,171, 68,173, 86,187,152, 19, 65, 97, 97, 97,103, 47, 92,184,224, 36, 18,137, 80, 90, 90, 10,153, 76, 6,138, +162,192,231,243,225,228,228,212, 32,228,179,179,179, 49,116,232,208,138,220,220,220,129,173, 16, 73,164,139,139, 75,198,253,251, +247,253,105,154, 70, 65, 65, 1, 50, 51, 51,241,238,187,239,102,171,213,234, 64,188, 68, 57,251, 26,249, 93,177,166,188, 53,147, + 53,106, 68, 15,109,122,106, 28,193, 49,101,162, 83,168, 72, 10, 0,119, 83,100,182, 26,178, 3,130, 66, 98,232,163,199,175,179, +127,217,189,141, 9, 19, 92, 64, 32, 51, 61, 27, 95, 52,199, 61,160,175,219,244,121,243,222, 14,125,173,103, 31, 82,174, 80,136, + 55,111,222,208, 57, 55, 55, 93, 12, 0,190,190, 65,146,217,179,231, 39,217, 8, 4,146, 75, 87, 47,155, 54,110,220,153,114, 46, +161,100,135, 5, 69,246,245,247,247,255,215,137, 19, 39,156,196, 98, 49,108,109,109,161, 80, 40,160,211,233,144,150,150,166, 62, +112,224,128, 94, 36, 18,217,148,150,150,162,166,166, 6, 4, 65,224,196,137, 19, 5, 0,218, 60, 79, 84,239,163, 5, 0,239, 14, + 14, 98, 6,247,243,183,103,113, 12, 60, 30, 51,203, 13,132,145, 67,208, 66,151,211,103,239,134,159, 62,127,235,141, 81,163, 63, +116,238,213,103, 20,150,126, 54, 86, 95, 92, 92, 16,161, 67,175,140,166,124,180, 2,253,208,111,228,152, 81,227, 86,174, 92,142, +229, 75, 87, 32,238,196, 49,169, 80, 64,106, 68,118, 76,219,222,221, 95, 85, 47,120,111, 68, 97,109,109,177,215,202,117, 7, 38, + 14, 29,177,192,179,103,175,145,184,122,229, 24,246,238, 90,113,135,224,209,255,232,101,196,101, 0,139,164,168,105,238, 62, 62, +251, 36,197,197, 30,124,161,144, 57, 55, 62, 94,108, 52, 26,111,143, 91,184, 80,126,244,194,133, 6, 43,233,231, 36,233,206, 96, + 48,220,253,135, 14,189,159, 19, 23, 55,141, 99, 48,196,126, 2,148, 63,207,185, 28,176,183,243,245,157,245, 65,118, 54,235,222, +242,229,181,134,226,226,234,200,249,243, 43,154, 58,127,209,249,243, 2,182,187,187,200,126,248,112,135, 77,109,218,208,122,137, +100,107, 83, 62, 70, 77,113,198, 11,133,118,191,157, 62, 29, 69, 51,153,125, 62,254,228, 19, 94, 76, 76, 12,100, 50, 25,142, 28, + 57,130,173, 91,182,104,220,220,220, 30,184,167,164, 36,135,202,100,159, 89,202, 25, 57,127,126,133,209,104, 36,198, 45, 92,216, + 63, 53, 47,175, 95,169, 68,210, 22, 0,220, 28, 28, 10, 35,125,125,239,236,140,139,203,252,222,199,199,100,105, 57,183,159, 57, +227,114, 56, 63,127,186,131,131, 3,175, 76, 34,161, 56,108,118,101,247,224,224, 67, 63, 45, 89,114,201,112,255, 62,139,235,233, + 41,178,141,137,105,117,221, 35,231,207,175,168,146,203,169, 15, 86,173,122,245,113, 89, 89,219, 90,141,198,175, 70, 46,119, 53, +234,245,164,136,207,175,108,215,161,131, 68,149,152, 88,210, 78,169,156,187, 3,144,252, 93,253,167, 41, 45,242, 15,194,243,113, +180,254,144,235,240, 82, 76, 76,204, 31,118,215,208, 52,109,145, 53,139,201,100, 62,179, 76,213, 2, 88, 4, 65, 32, 41, 41, 9, +142,142,142,112,117,117, 5,135,243,108,242,193,242,242,114, 92,187,118, 13,233,233,233,232,216,177, 99,253, 50, 70,243,138,136, +195,153,183,110,221, 58, 59,173, 86,139, 59,119,238, 32, 50, 50, 18, 28, 14, 7, 44, 22,235, 25, 17, 40,145, 72, 16, 18, 18,130, +143, 63,254,216,118,205,154, 53,243, 52, 26, 77,179, 51, 82,138,162,230,204,152, 49, 67, 92,111,193, 42, 44, 44, 68,231,206,157, + 27,190,119,118,118,198,221,187,119, 17, 25, 25, 9, 79, 79, 79,140, 29, 59, 86,188,119,239,222, 57, 6,131, 97,125,115,156,108, + 54,155, 12, 11, 11,235, 2, 0, 2,129, 0, 36, 73,102,137, 68, 34,103, 23, 23, 23,129, 72, 36,250, 67, 29,119,237,218, 85, 67, +146,164,222,172, 26, 32, 73,148,150,150, 34, 52, 52, 20, 82,233,211, 12, 46, 10,133, 2,126,126,126,144,201,100, 13,162,213,221, +221, 29, 42, 85,203,174, 95,225,225,225,203, 3, 3, 3, 7, 8, 4, 2, 14,147,201,196,189,123,247, 16, 17, 17,129, 3, 7, 14, +192,219,219, 27,124, 62, 31,217,217,217, 8, 11, 11,195,229,203,151,225,236,236,140,144,144, 16,142, 88, 44,190, 82, 85, 85,149, +240,248,241,227,229, 45,148,147, 20, 10,133,184,124,249, 50,118,238,220,137,188,188, 60, 20, 23, 23,195,198,198, 6,157, 58,117, + 66,112,112, 48,122,244,232,129,236,236,108, 16,230, 59,147,171,191,191,127,220,173, 91,183,156,104,154,198,222,189,123, 81, 91, + 91, 11,173, 86, 11,146, 36,193,229,114, 97,111,111,143,126,253,250,193,217,217, 25,254,254,254, 56,120,240,160,211,224,193,131, + 79, 73, 36,146, 78, 0, 74,205,181,171,189,189,253,220,101,203,150,121,137,197, 98,228,231,231, 67, 42,149,194,197,197, 5,175, +189,246,154, 71,124,124,252, 92,189, 94,191,225,101, 17, 90,141, 28,223,137,115,103,127, 30,237,223,174, 58,172, 99, 7,190, 87, +108,156,139,215,129, 56, 73, 8, 0,132, 6,185,164,142,142,225, 23,222, 75,141, 43, 60,119,246,216,157,244, 44,196,194,130,165, +109,169, 82,115,232,124,252,205, 65, 17, 29, 59,155,214,125,181,112,232,123,239, 78,231,136, 93,166,161,172,224, 24,226, 47, 38, +121, 47,252,112,134,243,250,111,182,159, 62, 31,127,147,148, 42, 53,159, 89,102,202,242,254,126,247, 79, 61,156,228, 21,135,145, +147,193, 6,207, 38, 20,190,190, 1,144,201,100,224,114,185,220,137, 19, 39, 26, 23, 47, 94,172, 20,137, 68,124,130, 32,144,144, +144, 32, 1, 48,208, 28,175, 90,108, 79, 27,117,122, 3,205,102,152,104,194, 70, 69, 24,171,216, 41,105,143, 48, 32,186,111, 89, +207,110,161,107, 22,175,252,230, 83,255,128, 8,231,183,167,175, 96,174, 90,254,198, 22, 16,232,213, 20, 79, 70, 14, 46, 18,135, +142,242, 0, 12, 93,249,197,114,228,230,102,219,207,156, 90,179,130,226,240,220, 3,219,188,106,179,101,103,194, 32, 63, 63,159, +182, 11,230,140, 61,249,237, 15,223, 14,109,108,217,218,189,107,217,113, 0, 81,150,180,237,255, 34, 72,138,234, 64, 18, 68,161, + 76,169,100,208, 58,157,211,220,248,120,213,185, 27, 55, 46,220,159, 57,211, 38,156,197, 10, 8,103,177,192,208,233, 42,151, 0, + 21, 95,152, 76,197,203, 40, 74,244,232,248,113,119,138,205, 78, 86,155, 76, 97, 48,153,154,138,159, 20, 62, 57, 46, 14,181, 5, + 5,250,170, 43, 87,212, 81, 63,252, 80,225, 53,112,224, 6,173, 78,231, 84, 63, 84,144, 4, 1,162,222,117,194,100, 34,168,143, + 63, 38,105,138,130,222,222,126, 42,170,171, 3,204,113,126, 88, 82, 50,250,141,233,211,135, 30, 63,115, 6, 62, 62, 62, 13,207, + 51, 59, 59, 59, 44, 92,184, 16,243,231,207,231,220,189,123,183,235,225,195,135,187,174,255,250,107, 23, 0,163, 45, 41,231,185, + 27, 55,236,223, 89,185,114, 73,199,200, 72,239, 61,251,247,115,218,183,111, 15, 0,120,248,240,161,255, 87,107,215,182, 9, 13, + 11, 43, 91, 51,111,222,238,212,197,139, 67, 0, 92,105,137,179, 52, 49, 81,123, 56, 63,127,250,197,132, 4,187,208,208, 80, 0, + 64,102,102,166,120,211,166, 77, 51, 66,198,142,157,180,114,246,236,207, 98,212,234, 26, 81,121, 57, 39,230,251,239,169,223,198, +141, 51,203, 89, 95, 78, 0,120,237,237,183,231,245,234,219, 55,120,244,244,233, 14,222,222,222,132, 80, 40,132, 78,167, 67,113, +113,177,125,106,106,106,251, 56,185, 92,118,244,198,141,189, 48, 26,251,255,141, 93,168, 73, 45,242, 15,179,100,253,241,190,168, +251,251, 90, 92, 92, 28, 93,167, 38, 27, 30,224, 70,163,209, 34,145, 69, 81, 20, 8,130,176, 84,108,129,166,105, 84, 84, 84, 32, + 37, 37, 5, 15, 31, 62,132, 66,161,192,163, 71,143,176,109,219, 54,124,245,213, 87,184,125,251, 54,244,122, 61,116, 58,243, 57, +104, 5, 2, 65,116,116,116, 52,117,227,198, 13,248,250,250,130,199,227,129,205,102,131,197, 98, 53,188,184, 92, 46,220,220,220, + 32,147,201, 16, 21, 21,197, 20, 8, 4,209,102,172, 68, 67,198,143, 31,207,174,255,191,182,182, 22, 12, 6,163, 65,180,212,214, +214,162,170,170, 10, 53, 53, 53, 40, 41, 41,193, 43,175,188,194,182,181,181, 29, 98,233,213, 80, 42,149,181, 18,137,196,174, 87, +175, 94,246,233,233,233,127,200,246,123,233,210, 37,181, 90,173,102,146, 36,105,145,163,253,190,125,251, 16, 27, 27,139, 11, 23, + 46,160,168,168, 8, 91,182,108,193,158, 61,123,112,226,196, 9,100,103,103,227,187,239,190,195,230,205,155,177,123,247,238, 22, +175, 81, 96, 96,224,224,189,123,247,118,235,222,189, 59,159,193, 96, 32, 51, 51, 19, 11, 22, 44, 64, 77, 77, 13,156,157,157, 1, + 0,101,101,101,216,176, 97, 3, 52, 26, 13,132, 66, 33, 60, 60, 60,184, 43, 87,174,236,233,236,236, 60,160,165, 50, 26,141, 70, + 35,131,193, 64,155, 54,109,176,116,233, 82,108,222,188, 25,103,207,158,197,161, 67,135, 48,123,246,108, 4, 7, 7, 35, 57, 57, + 25,183,111,223, 6, 77,211, 45, 62,100,184, 92,238,216, 61,123,246,136,217,108, 54, 76, 38, 19,228,114, 57, 10, 10, 10,112,243, +230, 77,245,177, 99,199,106, 79,158, 60,169,188,114,229,138,250,250,245,235, 52,128, 6,193, 25, 19, 19,227,200,102,179, 95,183, +160, 73,157, 93, 93, 93, 63,157, 49, 99, 6,183,113,159, 45, 45, 45,197,232,209,163,249, 60, 30,111, 49, 0,231,151,208,228, 77, + 31, 62, 26,112,155, 99,202, 68,108,220, 19,175,199, 69,198, 87, 23,126,244,141,195,194,143,190,113,120, 92,100,124, 53, 54,238, +137, 23,199,148,137,195, 71, 3,110, 91, 32, 4,200,126,125,220, 70,184, 56,218,109, 29, 61,124, 56,189,121,243,134,206,239,189, + 59,157,211, 38, 96, 33,184,182, 19,225,225,251, 14,162,122,123, 19,225,193, 36,119,243,230, 13,157, 71, 15, 31, 78,187, 56,218, +109,237,215,199,109, 4,204,132,157, 17, 59,114, 61,248, 28, 5,218,251, 7,227,181, 62, 29,193, 36,114,112,228,208, 78,148,148, +148,160,184,184, 24,101,101,101,130, 97,195,134,161,180,180, 84,157,144,144, 32, 81,169, 84,125, 0,100,153,171,124, 81, 81,154, + 73, 93,107,212,153,140, 76,131, 92,202, 82,206,158,123, 56,250,118, 42,235,173,210, 26,143, 97,108,142, 61,123,112,255,174,251, +119,238, 88,138,118,237, 66,209,165,235,128, 87,236,133,255, 10,110, 86,188,230, 34,238,247, 35, 71,143, 79, 28, 63,209,144,247, + 40,255, 81,128, 11, 87, 75,211,180,126,238,162,237,253,153, 2,175,240,246, 65,189,157,211,115,140,110, 75, 63,126,253,215,147, +199,191, 45,186,122,229, 24,122,246, 26, 9, 15,119,255, 62, 83,167,130,253, 79,237, 64, 4, 77,251, 50,133,194, 92,189, 84,218, +134,226,112, 10,140, 70,163,211,173, 89,179,236,116, 44,150,155, 81,167, 43, 54,234,116,197, 58, 54, 91,244, 99, 80,144, 39, 77, +211,142,118,158,158, 79,104, 54,219,219,160,211,229, 16, 36,217,174,201,217, 57,135,227, 41,108,211,134, 42, 61,119, 78,235, 59, +108, 88, 53, 0,104,117, 58,167,188,252,124,219, 50,137,196,182,180,172,204,246,113, 97,161,109,238,163, 71,182,217, 57, 57,182, + 25, 57, 57,162, 7, 41, 41,194,187, 15, 30, 8, 9, 6,195,197, 18,206,188,226,226,240,143, 63,254, 24, 60, 30, 15, 6,131,161, +169, 49, 27, 10,133, 2, 83,167, 78,133, 18,232,110, 9,167,209,104, 36,222, 89,185,114,201, 39, 75,150,180,143,141,141,229,116, +235,214, 13, 14, 14, 14,112,112,112, 64,183,110,221,112,248,200, 17,246,236, 57,115, 60, 63,221,177, 99, 42,201,225,120,153,227, +172,240,243,131,131,131, 3,175, 94,100, 1, 64,135, 14, 29,176,101,203, 22,206,153,179,103,109,191,248,249,231,111, 86, 92,191, + 30,166,121,252, 88,225, 24, 16, 64,179, 57, 28, 79, 75,219, 19, 0,228,106,117,232,134, 77,155, 28,157,156,156,136,178,178, 50, +228,228,228,224,241,227,199, 48, 24, 12,232,210,165, 11,113,232,200, 17, 91, 45,131,209,245,111,238, 66,127,208, 34,255, 32,204, + 68, 51,113,180,168,186, 7,208,101, 0, 68, 92, 92, 28, 93,191,156, 88,247,112,108, 16, 83,150, 8,173, 23, 65, 77, 77, 13,106, +106,106,176, 99,199,142, 6, 97, 84, 15,173, 86,107,137,104, 9,115,119,119,135, 84, 42, 69, 64, 64,192, 51,150, 44, 22,139, 5, +138,162,192, 98,177,192,225,112,160,209,104,224,237,237, 13,165, 82, 25,214, 18,167, 74,165,234,228,224,224,208,240,128,213,104, + 52, 13, 34,171,190,188, 90,173, 22,213,213,213,168,173,173,133, 92, 46,135, 66,161,136,176,164,190, 38,147, 9, 41, 41, 41, 15, + 59,116,232,208,137,193, 96, 64, 40, 20, 10, 20, 10, 69,131,111, 81, 85, 85, 21,126,249,229, 23,197,155,111,190,233,116,226,196, + 9,179, 9,139, 9,130,192,251,239,191, 15, 14,135, 3,165, 82,137,205,155, 55,227,131, 15, 62, 0,139,197,130, 92, 46,199,150, + 45, 91,176, 96,193, 2, 80, 20, 5,173, 86,139, 77,155, 54, 53,203,149,150,150,150,119,227,198,141,136,206,157, 59,219, 31, 61, +122,180,188,127,255,254,206, 3, 7, 14, 4,143,199,131, 74,165,130, 94,175, 71,247,238,221, 17, 24, 24, 8,137, 68,130,211,167, + 79, 87,248,251,251, 59,221,188,121,211, 84, 90, 90,250,216,140,184,166, 27, 89, 12, 97, 52, 26, 81, 86, 86,134,154,154, 26,148, +151,151,163,184,184, 24, 69, 69, 69,160, 40, 10,102,116, 22, 28, 29, 29,199,132,134,134, 50, 0,128,199,227,161, 83,167, 78, 88, +178,100,137, 65,165, 82,141, 7,112,186,238,176,193,219,183,111, 63,122,245,234, 85,202,221,221, 29, 25, 25, 25,112,118,118,166, +184, 92,238,235, 90,173,182, 69,107,148,171,171,235,174,223,127,255,221,161, 94, 92,215,183,179, 82,249,244,114,140, 30, 61,218, + 97,207,158, 61,187, 12, 6,195, 16,188,100,176,227,129,213, 41, 84, 36, 61, 16, 39, 9, 89,248,209, 55, 84, 96,232,211,201,235, +204, 89,160,214,127,253, 97,200,164, 17,162,147,118, 60, 25,203, 28,207,224,104,175, 31,135, 15,239, 79, 78,156, 16,147,205, 98, +217,249,110,221,182, 66, 44,118,153,214, 72,134,137,224,232, 36,130,111, 27, 54,113,248,100,186,120,209,226, 47, 52,251,246,124, +155,251,235,111,113,131,216,204,243, 3, 78,199, 23,206,110,142, 59,235, 97,205, 9,165,134, 27, 36,171,188, 79, 56,184,188,138, + 78, 29, 59, 64,236, 92,141,237,187, 14,192,167, 93, 23,104, 52, 26,136, 68, 34,190,209,104,212, 49, 24,140,125,150,136, 44, 0, +184,112,161,198, 20, 18, 82,163,101,200, 77,134,247, 62, 88, 63,170,255,224,225,193,253,250, 69,155,206,157, 63,167,123, 53, 66, + 87, 50,120, 96,167,178, 51,231,127,204, 46, 41,126,228, 31, 18,214, 19,105,169, 9,131,104, 26, 41, 4,209,180,232, 76,205,193, + 25,181, 41, 45,225,192,129,153, 38,149, 41,153,183,106,245,131,193, 67,135, 78, 9,237,221,171,183,233,124,252, 69, 45, 27, 21, +233,162,158, 61,158,188, 55,125,240,209,159,247,109, 26,112,230,244, 46, 63,169,236,113,220,238,221,205,187, 32,252,207, 43,117, +130,112,182, 17, 8,202, 43,229,242,142, 99, 86,172,144,141, 91,184,240,108, 56, 69, 5, 27,117,186, 71, 43, 0, 21, 77,211,132, +201, 96, 88,252, 96,255,126,198,114,130, 88,180, 2, 48,173,102, 48,152, 69, 38,147,210,131, 36,249,203, 0,106,197,115, 59,185, +141, 6,131, 11,197,225,144,229, 9, 9,134,176,105,211, 52,245,247, 35,159,207,199,241,227,199,193,102,179, 27, 94, 44, 22,171, +225,189,139,139, 11,136,186,109,164,127,152,248, 53,193, 9, 0, 37, 37, 37, 40, 45, 45,133,173,173, 45,156,157,157, 81, 90, 90, +138,235,215,175, 35, 43, 43, 11, 76, 38, 19,131, 6, 13, 2,217,140,111,243,243,156,227, 22, 46,236, 31, 20, 22,230, 61,107,214, + 44,242,249,231,163, 78,167, 67, 85, 85, 21, 70,140, 24, 65,158, 62,125,218,245, 76, 65,193,112, 0,251, 90,226,140, 24, 58,180, +178,236,240,225, 38,207,221,185,115,103,226,218,181,107,156, 65, 3, 7,206,255,112,245,234, 31,191,223,179,167,208,104, 48,184, +182,166,238, 36, 73,146, 4, 65,192,203,203, 11, 85, 85, 85,168,173,125,186,130, 45, 20, 10, 97,111,111, 15,189, 94, 15, 19, 77, + 51,255,206,254,211,156, 22,249,135, 96, 91, 35,193,245,140,101,139,170, 91, 23,173, 31, 40, 94,107,252, 96, 49,153, 76, 22,137, + 44, 38,147,105,214,231,202, 18, 43,215,243,176, 68,104,213,151,149,203,229, 62, 99,201,170, 23, 88,245,229, 36, 73, 18, 12, 6, +195,236, 67,188, 78, 12, 49,228,114, 57,142, 28, 57,130, 62,125,250, 52, 44, 75, 73,165, 82,212,212,212, 64, 42,149, 66,173, 86, + 35, 47, 47, 15, 23, 46, 92,128,159,159, 31, 96, 97,240,215,220,220,220, 59, 62, 62, 62,145,245, 15,241,190,125,251,122,238,222, +189,187,120,200,144, 33,238, 52, 77,227,179,207, 62,171,232,222,189,187, 83,227,135,188, 57, 48, 24, 12, 92,191,126, 29,126,126, +126,160,105, 26, 44, 22, 11,153,153,153, 16,139,197, 48,153, 76,160, 40, 10,229,229,229,176,177,105, 57, 70, 98, 74, 74,202, 91, +111,191,253,118,177,173,173,109,120,101,101,101, 9,135,195,233,149,152,152,232,165,211,233, 32, 18,137, 32, 18,137,112,234,212, + 41,216,217,217, 97,222,188,121, 5, 42,149,234,186, 64, 32,112, 81,169, 84,247, 75, 75, 75, 63,107,205,245, 54, 24, 12, 80, 40, + 20,168,174,174, 70, 85, 85, 21,100, 50, 25,212,106,181,217, 50, 54,133, 94,189,122, 33, 46, 46,142,241,229,151, 95,254,156,155, +155, 11, 0,240,245,245,197,188,121,243, 24, 30, 30, 30,200,203,203,195,157, 59,119,160,211,233, 64,211,116,139, 55, 47, 69, 81, +125,223,124,243,205,158,222,222,222,132, 78,167,131,201,100,130, 70,163, 65,253,251,130,130, 2, 4, 5, 5,145,109,218,180,121, + 37, 55, 55,183, 47, 44,219, 88, 97, 5,128,178,130, 99,240, 96,138, 1, 82, 4, 90,117, 12,149, 21, 47, 22,197, 69, 34,145,172, +254,248,243,107,211,190, 95,167,115, 41, 42, 1, 58,132,142,132,127,112, 20,222,154,108,192,151, 95, 31,129,119,155, 14,120,252, +248, 49,250,246,237,203, 42, 46, 46,126,187,182,182,118,161,165,220,231,207,223, 48,158, 59,117,122,236,184,215,167, 68, 70, 71, + 15, 49,156, 61,123, 10, 41,247,207,166,190,253,250, 24, 9,109,170, 37, 28,236,120,201,153, 25,183,253,195, 59,189, 6,173,193, +216, 11, 88,190, 14, 88, 78, 55,127,191, 67,123,242,164, 27,121,242,216,174,201, 19, 39, 77,237, 24, 21, 53, 64,127,246,252,239, +184,243,175,243,247,190, 89, 55,227,242,151,155, 14,246,237, 63,104, 76,136,179,203,245, 83,161, 1,154,233, 94,142,182, 15,183, +239,174,250, 39, 95,102,138,197,229, 26, 0,144,118,109,218,120, 30,189,112, 33,191, 19,147,201, 16, 1, 70,154,166, 59, 0,112, + 34, 41,234,211, 19,211,167, 71, 4,213, 61, 72, 13,128, 41, 8, 32,165,128, 86, 0,176,209, 76,200, 28,138,203, 53,161,110, 92, + 36, 9, 2, 52, 77, 63, 35,178,158, 23, 90, 36, 73,154, 53, 0, 52,230,108,252, 44,170,159, 80,111,221,186, 21, 28, 14, 7,108, + 54, 27, 76, 38,211,172,251, 69, 99,206,212,188,188,126,191,236,219,199,105, 74,100, 85, 86, 86,162,178,178, 18,181,181,181,152, + 48, 97, 2,107,197,237,219,157, 81,231,250,209, 28,167,183,155,155, 70,192,227,149,165,165,165,185, 7, 7, 7, 63, 83, 94,153, + 76, 6, 30,143,135,125,251,247,179, 98,134, 14,125, 55,234,212,169,111, 96, 38,254, 85, 83,117, 39, 8, 2, 98,177, 24,246,246, +246, 32, 8, 2, 6,131, 1,165,165,165, 72, 77, 77,197,237,175,151, 40,128, 0, 0, 32, 0, 73, 68, 65, 84,219,183,193, 32, 8, +195,223,217,121,154,210, 34,255, 64,171,214, 31,150, 15,235, 45, 90, 68,115,214, 23, 75,133, 22,131,193,120, 97,171, 86,115,176, +100,233,144,207,231, 63, 40, 46, 46,126,213,195,195, 3, 6,131,161, 65,104, 53,182,196,213, 91,201,120, 60, 30,238,222,189, 11, + 62,159,255, 64,173, 86,183,200, 73,211,244, 43, 93,187,118, 69,108,108, 44, 18, 18, 18,240,232,209, 35, 40,149, 74,104, 52, 26, +168, 84, 42,164,166,166,194,100, 50, 33, 52, 52, 20, 2,129, 0,124, 62,255, 65,189,229,171, 57, 40, 20,138, 18, 38,147,217,129, +199,227, 53,124,230,230,230,134,202,202, 74,147, 94,175,199, 47,191,252, 34,115,117,117, 21,240,120, 60,139,133, 43, 65, 16,144, + 72, 36,240,244,244,108,240,209,146,203,229, 16,139,197,245,194, 2, 26,141, 6, 54, 54, 54,160,105,218,220, 53, 82,231,228,228, +124,216,232,255, 46,227,198,141,251,245,192,129, 3,237,226,227,227,113,243,230, 77, 56, 59, 59, 99,205,154, 53,143,242,243,243, + 39, 2,184, 45,145,252,181,126,145,150,244,161,202,202,202, 35, 15, 30, 60,120,165,107,215,174, 13,163, 68,223,190,125,137,190, +125,251, 58, 53, 54,245,151,151,151,227,214,173, 91,136,143,143, 7, 65, 16,200,206,206, 54,170, 84,170, 95, 91,160,102,121,120, +120,236, 94,178,100,137,208, 96, 48, 52,244,109, 30,143, 7, 46,151, 11, 22,139, 5, 6,131,129,252,252,124,140, 24, 49,194,246, +135, 31,126,216,165,209,104,218, 3,208,225, 37, 65,141, 10,186,187, 41, 50,219,208, 32,151,212,109, 91,191,124,117,230,172,167, + 99,196,182,173, 95, 26, 66,131,196,169,119, 83,202,108, 35,197,230,235,123, 58,190,240, 61,173,254,244,176,211,103, 46,141,255, +104,254, 60,166,175,111,144, 36,254, 98,146,119,148,225, 11,194,209, 73,132,202, 10, 25,242, 11,202,144,251, 88, 75,251,250, 6, + 73,238,220,122,192,249,122,195, 70,127,133, 82,125,240,226,229,146,223,205,208,171,175, 92,127, 52,242,155,239, 56,151,167,188, +221,133,205,227,185,163,170,226, 1,188,189,157, 49, 34, 38, 28, 59,247, 92,135,173,173, 3, 92, 92, 92, 64,146,164,192,210,186, + 87, 84, 84, 16, 71,126,187, 50,237,205,169, 51,186, 15, 28, 48,212,112,230,236, 73, 42,225,220,137,235,187,182,125,122,148,102, + 40,248, 4, 45,231,181,245,113,189,255, 48,231,238,196,126,209, 19,192, 99,217,248, 1,129, 77,118,216,134, 13, 6, 52, 10, 98, + 15, 44,231,190, 57,117,102,143,129, 3,135, 27,206,158, 61,134,179,167,246,220, 88,182,172,237,169, 71, 79,246,179,254,117,187, +136, 59,114,236,236,234,184,211,233,218, 49,195,124,178,220, 5,157, 84,192,163,127,108,255, 33, 9, 66, 86, 81, 94, 46, 98, 50, +153,170, 93,111,188,145, 13, 0,122,138,170,148, 51, 24,206, 4, 65,100, 2,200, 92, 13, 56,129,205,150,142, 51, 24,140, 11,189, +189, 89, 84, 73, 9,163,218,104, 52, 50, 0,246, 71,127,204,191, 8, 6, 69,149, 25, 52, 26, 47,207,129, 3, 25,202,199,143,153, + 66, 23, 23, 3, 0,232,245,122,179, 66, 11,205,108, 90,121,158,211,210,250, 41,149, 74,152,154, 17,130,207,115,150, 74, 36,109, +235, 38,225, 13,208,235,245, 13, 34,171,178,178, 18, 53, 53, 53, 16, 8, 4, 40,215,104, 92, 44,225, 28,208,173,219, 47, 43,150, + 47, 95,120,248,200, 17, 86, 99,145, 85,255, 98, 50,153,248,106,221, 58,214, 7, 31,125, 52,251, 93,138,154,139, 38,150, 65,155, +107,207,250, 73, 59,131,193, 0, 69, 81,120,252,248, 49, 10, 10, 10,240,248,241, 99, 60,126,252, 24, 60, 30, 15,244,223,188, 9, +232, 31,236,159,133, 70, 75,133, 51,159,183,114,181, 24,222,161, 53,206,240,150, 10, 3,163,209,248,151, 10, 45,133, 66, 17,127, +225,194,133,110, 35, 71,142,164,110,220,184, 1, 87, 87,215, 6,161, 85,255,183,126, 57,138,207,231,227,232,209,163, 58,133, 66, + 17,111,230,102,186,112,234,212,169,200,165, 75,151, 50,223,122,235, 45,164,165,165, 97,214,172, 89,168,169,169,129, 76, 38, 67, +101,101, 37,148, 74, 37,186,117,235, 6, 46,151,139,251,247,239,235,149, 74,229, 5,115, 75,103, 18,137,164,214,217,217,217,237, +249,239,198,142, 29,235,242,211, 79, 63, 41, 51, 50, 50,244,175,190,250,170,200, 82,193, 81,143,223,126,251,173,193, 82,151,149, +149,133,159,126,250, 9, 52, 77,131,166,105, 36, 37, 37, 97,253,250,245, 13,177,207, 90,137,219, 21, 21, 21, 6,189, 94, 15, 63, + 63, 63,120,120,120, 64,173, 86, 99,227,198,141, 6, 0,183,255, 91,189, 89,173, 86, 31,158, 50,101,202, 39,201,201,201,110, 20, + 69, 61, 53,105,215,213, 79,167,211, 33, 39, 39, 7,169,169,169,200,200,200, 64, 85, 85, 85,195, 68,224,238,221,187,213,122,189, +254, 96,115,188,206,206,206,159,237,220,185,211,149,207,231, 63,211,159,235,173,161,245, 86,210,242,242,114,216,217,217, 33, 42, + 42, 74,124,225,194,133,207, 52, 26,205,210,151, 68,103, 17, 99, 71,101,117,249,224,189,145, 24, 29,195, 47,140,141,123,114,109, +253,215, 31,214, 57,195,139, 83, 71,199,120, 20,222,203,180,195,216, 81,199,186, 0, 40, 66,203,126, 90,166,139,151, 75,142,119, +237,106,159, 16,123,226,196,174,197, 31,207, 79, 90,248,225, 12,103,165,234, 33,215,183, 13,155, 0,128,220,199, 90,250,126,154, + 73,189,254,155,249, 73, 95,174,251,129, 44,171,172,153,117,235, 86,243,225, 13, 26,139, 23,146, 4,215, 55,176, 79,177,127, 64, + 79,159, 27,215,247, 65,200, 87,161, 67, 96, 23, 12, 28,240, 10, 18, 46,221, 69,105,185, 26, 37, 37, 37,208,104, 52, 45,134, 75, +200,184,127,116, 50, 77,208,222, 4, 77, 20, 16, 36,205,157, 60,101,122,175,161, 67,135,211,113,113, 39, 12,199,142,238,187,122, +112,239,119,135, 73, 22,147, 82,105,109,181, 4,161,150,130, 76, 73,171, 85, 60,157,208, 48, 57,172,230,205,175,117,129, 93,131, + 67, 2, 93, 39, 79,153,101, 59,100,240, 8,250,212,169, 99,166,131, 7,126, 73, 56,184, 35,108,159,137,148,177, 74, 10,149, 28, +169, 76, 47,165, 9,182, 93,173,204,164, 44,203,109,175,118, 31, 58, 86, 7, 28,254,199,118, 32,218,100,122, 76,107,181, 62, 96, + 50, 11,105,131,193, 21,122,125,213, 10,181,250,201, 23,108,118,219,101, 20,213, 25, 4, 97,210, 17,132, 2, 90,109, 46, 0, 56, + 20, 20,184,105, 69,162, 82,134, 90,221, 30, 70, 99,147, 1,144,117, 26, 77, 81,109, 97,161,155, 67,159, 62,156,156,229,203,249, + 46,221,186,169,137, 58, 31,226,150,132, 22,131,193, 0, 72,210,100, 9,167,165,245, 83,169, 84, 48, 1,250, 23,225, 52, 24, 12, +207,136,172,122,161, 85,127,191, 88,194,185,109,217,178, 27,222, 3, 7, 86, 93,186,116,201,229,181,215, 94, 35,228,114, 57,228, +114,249, 51, 98,203,221,221,157, 8, 14, 13,229,255,150,144,224,107,105,123, 90, 36,162, 73,242,111, 23, 90,255,112, 52,155, 72, +154, 50,179,132,102,177,208,178,208,162,165,215,235,245, 16,139,197,168,168,168,104,246,193, 79,146, 36,120, 60, 94,253, 26,113, +139, 59,239, 52, 26,205,198,133, 11, 23,206, 25, 60,120,176, 83,135, 14, 29, 80, 94, 94, 14, 23, 23, 23,112,185,220, 6,223,177, +122,190,164,164, 36,236,220,185, 83,166,209,104, 54,154,225,220,176,110,221,186,247, 70,143, 30,237,224,234,234, 10,123,123,123, +220,191,127, 31,246,246,246,144,201,100,200,204,204,132,141,141, 77,131,223,206,137, 19, 39,228, 26,141,102,131, 25,241, 70, 39, + 38, 38,234,108,108,108,238,151,151,151, 51,170,170,170,168,234,234,106, 74, 38,147, 49,165, 82, 41,243,204,153, 51, 78,182,182, +182,202,139, 23, 47,150,123,123,123, 51, 30, 61,122,196,208,235,245,102,213, 43, 65, 16,152, 59,119, 46, 88, 44, 22, 52, 26, 13, + 54,110,220,136,133, 11, 23, 54,248,100,173, 91,183, 14, 75,150, 44,105, 16,206,219,183,111,111,221,192, 73,211,208,233,116,208, +235,245, 22,111, 80,248, 83, 51, 98,203, 4,123,105,118,118,118, 76,215,174, 93,207, 29, 58,116,200,177, 46, 38, 25,202,202,202, + 80, 86, 86,134,242,242,114,212,214,214,194, 96, 48,192,195,195, 3,101,101,101, 56,118,236,152, 84, 46,151, 15, 68, 11, 59, 14, + 25, 12,198,148, 94,189,122, 81,207,151,161,126,150, 87, 47,222, 57, 28, 14,138,139,139,209,183,111, 95,246,165, 75,151,166, 0, +248, 71, 11,173,198,225, 29, 6, 12,156,198, 10, 10,233,161,189,151, 26, 87, 24,232, 83, 86, 56,105,132,232, 36, 0,220, 77, 41, +179,189,151,105,135,160,144, 24,122,192, 64,251,200,178,210,109, 97, 0,116, 45,165,235, 1, 0, 91, 62,103, 92,255,232,110,197, + 54, 2, 1,185,254,155,237,167, 55,111,222,208,249,240,201,127,135,119, 88,255,205,211,240, 14,253,163,187,153, 50,210, 51,198, + 1,216, 97,169,120,137,137, 25,150,188,115,247, 78,100,164, 94,116,255,100,110, 56,187,170, 76, 15,158,208, 11,145,157, 92,176, +109,247, 3,220,187,119,175, 84,171,213,246,109,177,127, 19,180,119,106, 90, 74, 64, 88, 72,176,235,228, 41, 51, 69, 49, 49, 35, + 16, 23,119, 28,123,127,217,145, 56,102,194,232,159,159, 84,203, 24, 98, 38,159,197,167, 77,108, 6,203,150, 98,113,120, 18,173, +246,105, 4, 2, 38,147, 43, 2,198,181,248,224,121,103,230, 36,219,126,209, 35,112,242,212,113,236,253,101,219,229,207, 67,198, +238,240,137, 8, 34,186,117,254,122,182, 79, 59,159, 54,138,218, 50, 25, 73,176,117,106,181,201,230,235, 95,242,191,205, 93, 50, + 37, 23,192, 55,248,135,238, 58,100, 27,141,247, 52, 58,221, 36,175,200,200,219,197,183,111,135,173,209,235, 29, 62, 5,170, 62, +215,106,243, 15, 1,133, 53, 0, 57,171,110, 76,255, 6,224,170, 40,202,205,150, 36,239,202,141,198,193, 96, 48, 82,209,244, 68, +252,254,222, 33, 67,186,126,240,240, 33,203,185,103, 79, 94,113, 66, 2,191, 46, 19, 73,139, 66,139,162, 40,208,205, 47,117, 61, +195, 73,236,217, 67, 2, 0,139,197,106,118,140, 99,177, 88, 80, 42,149,208, 55,111,193,126,134,211,237,236,217,194,135, 15, 31, +250, 59, 56, 56, 60, 35,178,170,170,170, 26,222,171,213,106, 40,149, 74,240,120,188, 84, 85,211, 43, 34,207,112,150, 37, 38,170, +215,206,157,187,116,226,132, 9,223,197, 95,184,192,117,116,116,132, 84, 42,125, 70,104,105,181, 90,244,139,138, 98,173, 75, 78, +158, 12,153,108,153, 37,237,233,210,183,175, 89,127, 96, 6,131, 1,211,223,188,116,248, 18, 96,102, 83,194,139, 52,183,132, 99, +233,174,195,102, 30,144,207,239,238, 91, 18, 25, 25,169,206,202,202,130,183,183,119,131, 88,105,124, 78,145, 72, 4, 59, 59, 59, + 36, 37, 37, 97,245,234,213, 42, 0, 75,204,112,202,149, 74,229,235,253,251,247, 87, 81, 20,133,192,192,192,134,248, 89, 38,147, + 9,108, 54, 27, 2,129, 0,201,201,201, 24, 54,108,152, 82,169, 84,190,142, 63,198,208,122,158, 83,170, 84, 42,223, 24, 48, 96, +128, 50, 45, 45, 13,189,122,245,194,189,123,247, 80, 91, 91,139,218,218, 90,228,229,229, 33, 56, 56, 24, 74,165, 18, 63,253,244, +147, 74,169, 84,190, 1, 64,218, 18,167, 92, 46, 31,182,112,225, 66,198,175,191,254,234,227,225,225, 17,210,165, 75,151, 14, 81, + 81, 81,237, 71,141, 26,213,102,200,144, 33,110,254,254,254,234,129, 3, 7, 58, 15, 30, 60,216, 89,169, 84, 50,175, 93,187, 86, +162,215,235, 7,155, 41,103,131, 56,201,202,202,106, 88, 42,164, 40, 10, 21, 21, 21, 13,145,251,235, 7,165,102,132,112,180, 57, +177, 93, 47,176,234, 5,151, 5,126,110, 77,113,154,253, 17,155,205,174,183,120,210, 22,112,222, 77, 79, 79,239,223,167, 79,159, +187,211,166, 77,147,151,150,150,194,198,198, 6,190,190,190, 8, 8, 8,128,147,147, 19,116, 58, 29,142, 30, 61,170, 56,118,236, +216, 3,169, 84,218, 23,127,140,161, 21,253, 92, 59,230, 53, 53,200,214, 91,179,234,133, 22,151,203,133,135,135, 71,125,219,230, +181,166, 61, 95, 16,127, 47,103,157,128,137,234, 55,176,221,144,161, 35,109,143, 30,191,206,254,238,199, 99, 15, 34,163,177,221, +177,173,236,132, 99, 91,217,137,200,104,108,255,238,199, 99, 15,142, 30,191,206, 30, 50,116,164,109, 84,191,129,237,210, 82, 51, + 58, 52,206,123,216, 84, 57,185, 92,110,143, 94, 61, 35,171, 47, 93,189,108,250,114,221, 15,100,191,190, 99,146,119,252,124,244, +232,142,159,143, 30,237,215,119, 76,242,151,235,126, 32, 47, 93,189,108,234,213, 51,178,154,203,229,246,176,164,238,239,204,156, +100, 59,116,200, 8,196,197, 29, 53, 28,254,237,167,117, 7,142,100,247,153, 62, 39,177, 44, 43,235, 30, 45, 41, 58, 11, 38,249, + 24,233,233,233,210, 58,145,149,101, 9,231,172, 25,147, 26,139,172, 43,142,174,189,182,167,167,195,120,254,252,239,250, 11, 23, +146, 85, 87,238, 74,164,119,210, 42,170,138,203,171, 30,201,100,149, 90,147,201, 8,163,209,200, 88,177,162,193, 97,183,201,107, +244,234,171,175,225, 98,252,126,252,178,123,171,212,100,130,122,220,225,195,198,113,227,150,211,109,218,182,109,179,239,183,253, + 68,204,240,145,182, 52, 96, 26, 54,122,132,221,175, 7,126, 37,218,249,181,107,235,235,219, 16,210,230, 31,215,151, 62, 1,106, + 9, 32,189,228,214,173, 46,194, 94,189,238, 27,152,204,128,149, 44, 86,251, 77, 0,123, 28, 96,156, 5,232,151, 1,228, 50,192, + 67, 69, 81, 29,121, 6,195, 61,185, 82,233, 9, 0, 95,208,244,163,166, 56,151, 3,213,178,199,143, 47, 39,253,240,131,198,229, +245,215, 29,216, 46, 46, 34, 24,141, 68,253,248,222,220,139,162,168,231, 45, 48,205,114,122, 56, 57, 61, 57,113,226, 4, 2, 2, + 2,224,225,225,129,198, 62,178,245, 1,185, 29, 29, 29,113,228,200, 17,208,207, 6,167,110,150, 51,194,199, 39,233,171,181,107, +181, 38,147, 9,213,213,213,127,176,102, 85, 87, 87,195,100, 50,225,212,201,147, 90,217,211, 76, 32, 22,213,189, 47,131, 81, 59, +177,119,239, 47,135, 14, 29,170,123,248,240, 97,195,206,235,122,203,150, 68, 34,129, 80, 40,132, 90,163,241, 2,192,183,132, 83, +114,230,140, 0,102,198,245, 38, 44, 90,127, 71, 95,250,167,139,172,198, 9,165,103, 90,100,209, 50, 24, 12,240,242,242,122, 38, +165, 11, 73,146,207,188, 90,185,227,112, 79, 90, 90,218,217,129, 3, 7, 46,237,222,189,251, 59, 75,151, 46,101,116,232,208, 1, + 82,169, 20,246,246,246, 16,139,197,200,204,204,196,137, 19, 39,140, 21, 21, 21, 91, 0,172, 68, 19, 1,236,154, 64, 66,118,118, +118, 76,120,120,248,129, 69,139, 22,217, 14, 24, 48,128,233,229,229, 5,154,166,145,156,156,140,216,216, 88,221,142, 29, 59,100, +117, 34,203, 82,231,229,115,197,197,197, 99, 6, 15, 30,188,111,202,148, 41, 54, 70,163,145,153,151,151, 7,141, 70, 3,189, 94, +143,130,130, 2, 93, 92, 92, 92,173, 82,169,156, 4,224,156, 5,124, 73, 53, 53, 53,193,231,207,159,159,114,237,218,181,213,211, +166, 77,115,140,138,138, 98, 25, 12, 6, 92,189,122,181, 60, 34, 34, 66, 44,145, 72,116, 71,142, 28,169, 84,171,213, 75,140, 70, +163, 69, 41,120, 8,130,128, 76, 38,131,147,147, 19, 52, 26, 13, 76, 38, 19,180, 90, 45,132, 66, 97, 67,218, 36,154,166,209, 26, +231,250,231,250, 0, 67,167,211, 97,194,132, 9, 48,153, 76,216,184,113, 35, 12, 6, 67,171,201,108,109,109,239,220,189,123, 55, +166, 83,167, 78, 13,226,165,190, 15,113, 56, 28, 56, 57, 57,193,209,209, 17,113,113,113, 96, 50,153,119,204,249,187,213,225, 94, + 69, 69, 69,196,249,243,231,123, 60,120,240,224, 77, 0,157,116, 58,157,135,209,104, 36, 72,146, 44,161,105,250,190, 76, 38,251, + 25, 22,166,224,145, 72, 36,171,167, 78,157, 26,177,127,255,126, 33, 69,253,251,214,160, 40, 10, 28, 14, 7,245,193, 49,105,154, +134, 86,171,197,103,159,125, 38, 83, 40, 20,171, 95,150, 81, 34,178, 75, 55,108,251,105,147,240,194,197,179,229,233,217,136,181, +183, 79,127,190,255, 21,149,149,110, 11, 43, 46, 44, 20, 70,118,233,102, 17,167, 94,171,171,124, 99,210, 2,239,186, 20, 60,159, +229,229,229,111,221,183,231,219, 92, 0,248,122,195, 70,255,178,202,154, 89, 25,233, 25,227,182,110,253,173,135, 94,171,171,180, +132,243,223,226,101,159, 20, 52,212, 0,110, 38, 63, 40,243, 25,246,250,153, 37,126,237, 68,195, 37,149,170, 39,181,181,202,247, + 1,228, 90, 90,247,158,175,246,193,197,115,191, 98,239, 47,251,100,180,137,161,118,114,114,162, 1, 32, 61,221,137, 78, 79,175, +161,255,237, 87,108,167, 96,210,247, 86, 46,120, 63,106,129, 84, 86,181, 97,227, 79, 45, 47,165,132,119,236,142,240,142,221, 49, +231,253, 79,109,131, 67, 2,189, 1,224,240, 97, 24, 67,252,210,126, 95,250,249,242,225, 43, 87, 46,135, 76,174, 65,125,186,158, +204,148,180,147,185,185,208,254,147,251,209, 82,131,225,234, 74,154, 30,165, 76, 76, 12,235,241,209, 71,183,174,172, 95,239, 35, +101, 48, 94, 93, 1,152, 72,130, 48,130,166,121, 36, 73,150, 8,244,250,100, 57,155,237, 70,152, 76,157,109,140,198,163,122,163, +145,110,129,243, 38, 22, 44,240, 87, 86, 85, 57,247,252,228, 19, 39,234,163,143,200,150,156,225, 27,223,191,150,112,222,190,127, +255,228,172,233,211,159, 44, 91,186,116,224,150,173, 91,121, 97, 97, 97, 40, 45, 45, 69, 96, 96, 32, 60, 60, 60,112,254,252,121, + 28, 57,120, 80, 81, 35,151, 47, 1,176,217, 18,206, 61,167, 78,101,118, 8, 9,169,216,186,117,171,251,208,161, 67, 9,133, 66, + 1,169, 84, 10,169, 84, 10,141, 70,131,186,128,208,116, 86,118,118,186, 94,175,223, 98,105,221,141,229,229,220,149,221,186, 21, +177, 76,166,175,198,140, 30,189,112,229, 23, 95,112,218,181,107, 71,104, 52,154, 6,171,150, 78,167,131, 80, 40,212,105,181, 90, + 71, 52,225,247,214, 20, 39,103,199, 14, 67,121,121, 57,156,157,157, 27,194, 53, 53,142, 75, 40,151,203, 65,211,244, 75,155, 0, +253,239, 68,179, 10,201,222,222,254, 14, 69, 81,158,141,173, 91, 77,229,206,107,252,153, 94,175, 47,170,168,168,136,124, 78,241, + 54,231, 15,229, 11, 96, 77,191,126,253,198,124,248,225,135,196,165, 75,151,112,236,216, 49, 58, 55, 55,247,112,157, 21, 43,183, +133,217, 83,115,156, 54, 28, 14,103,158, 64, 32,136,174, 15,225,192,231,243, 31, 40, 20,138,248,186,229, 66,249, 11,112,138, 56, + 28,206, 92,129, 64,208,191, 46,253, 10,108,108,108,238, 42, 20,138,243, 26,141,102, 19,154, 79, 84,221, 18, 39,207,214,214,118, +181,147,147,211, 27, 31,125,244,145, 99, 98, 98, 98,201,197,139, 23, 89, 53, 53, 53,251,181, 90,109, 75, 73,165,255,192,233,224, +224,112,135,193, 96,120,254, 77,215, 8,225,225,225,113,195,134, 13, 27, 58,105,210, 36,232,245,122,108,222,188, 25,231,207,159, + 63,153,147,147, 19, 99,102,134,251, 60,167,147,167,167,231,165,119,222,121,167,205,132, 9, 19,248,246,246,246,160, 40, 10, 10, +133, 2, 57, 57, 57, 72, 78, 78,166,143, 31, 63, 94,155,148,148, 84,164, 84, 42, 95, 3, 80,209,138,246,252, 51, 51,241,103, 56, + 41,138,234,227,229,229,245,219,178,101,203,108,250,247,239,207,115,116,116, 4,131,193,128, 94,175, 71, 73, 73, 9, 82, 82, 82, +112,246,236, 89,197,225,195,135, 21,149,149,149, 19, 0, 92,254,111,148,243,175,228, 12,242,199,231,207, 37,138,110, 54,218,187, +153, 99,205,150,179, 95, 31,183, 17,227,198, 12, 30, 4, 0,135,142,156, 62, 99, 65, 82,233,102,203,105,174,172,150,112, 6,250, +145,203, 82,211, 82,158, 9,104, 25, 18, 28,154, 21, 20, 54,122,149, 37, 68,141, 34,195, 63, 83,247, 70,203,177,141,109,186,207, + 44,179, 6,249, 34,102,196,184, 81, 67, 63, 93,178, 24,107, 86,127,137,227,135,142,158, 76,207,125, 38, 77,208, 63,174, 47, 53, +126,182,172, 96, 48,250,145, 36,233, 69,176,217,183,244, 10, 69,182, 13,192,148, 3,140, 21,128, 98, 37,139,213, 30, 70, 99, 8, +104,154,146, 19, 68,220,122,163,209, 30, 64,177, 57,206, 85, 20,213,157,239,230,214,123,163,201,180,248, 94, 74,138,176,241,132, +173,222,242,220,120, 82,233,238,238, 46, 41, 41, 41,113,177,132, 51,230,251,239,117, 74,129,128,179,248,171,175,250,212,170,213, +125, 86,174, 92, 73,221,190,125, 27, 63,253,240,131, 65, 93, 84,180,175, 28,152,219,204,106, 72,179,156,109,230,206,229,126,252, +211, 79,111,249,250,249,137,223,124,243, 77, 38,147,201,132, 66,161, 64, 97, 97, 33,206,157, 61,171, 77, 75, 79, 79,147,201,100, +195, 91, 83,247,152,239,191,215,217,249,250,130,239,236, 76, 95, 72, 72,176,157, 53,111,222, 59,109,125,124,108, 7, 14, 26,196, + 20,137, 68,168,174,174, 70, 94, 94, 30,142, 30, 61, 42,169,173,173,117, 7, 96,180,132,115,223,181,107,225,167, 46, 95, 30,187, +106,213, 42,118,104,104, 40,108,109,109, 33,151,203,145,146,146,130,203,151, 47,107,182,108,217, 34,149, 74,165,239, 24,141,198, + 19,127, 99, 95,122, 41,151, 14,255,110, 15,127, 75, 46, 68, 36,128,207,235,222,127, 1,243, 57, 3,255,201,131,207,243,240,118, +112,112,216,166, 86,171,105,149, 74, 53, 11, 64,193,255, 96, 57,169,200,200,200,159, 36, 18, 73, 15,154,166, 97,107,107,123, 61, + 53, 53,245, 93, 52,179,243,198, 12, 39, 3, 64, 15,161, 80,216,205,198,198,166,143, 70,163, 9,170, 91,126, 75, 87, 40, 20,151, +117, 58,221,205, 58,235,147,241,191, 92,119, 6,128,254,238,238,238,211, 77, 38,147, 31, 65, 16,118, 70,163, 17,122,189,190,198, +100, 50,229, 72,165,210, 29, 0,206,255, 15,148,243, 47,225, 12,110,143, 81, 52,137,160,230, 4,193, 51, 66,235, 57, 1, 65,152, +144,158,246, 16, 71, 91, 81, 78,114,112,180,215,143,192,211,157,137, 48,239, 92,251,111,161,101,129,120,105,181,200,108,207,152, + 74, 19,244, 51,156, 4, 77, 20, 4,134,143,218,251,103,132,150,165, 8, 14, 64, 31,208,232, 97,162,113, 51, 35, 7, 23, 95,182, +177,110, 25,224, 66,146,100, 87,130, 36,219,211,128,130, 32, 8, 3,104,218, 1, 52,253, 16, 12, 70,234, 82,157,238, 33,154, 78, + 96,222, 44,231, 26,192,225, 7,123,251,235, 36, 69,185, 2, 32,235,172, 47, 38, 19, 65, 24,105,130, 48, 52, 94,222,122,110, 98, +217, 34,167, 14, 8, 99,114, 56, 94, 70,131,193,165, 20, 16,158, 50, 26, 59,171,105,186,214, 19,248,252, 46,144,217,218,186,215, +115, 50, 56, 28,239, 83, 52, 61,162, 92, 32, 8,151,168, 84,206, 0,104,161, 64,144, 46, 83, 40,126, 81,171,213, 63,182,182,238, + 58, 32,140,197,225,120, 26, 13, 6, 23, 0, 32, 41, 74,114, 64,163,241, 42, 18,137,222, 84,107, 52,109,132, 66,161, 94,171,213, +202,212,106,245, 36,131,193,112,161, 53,117,207, 49, 24,130,175,145,100, 47,157, 64,224,168, 35, 8,129,214, 96,208,105,117,186, + 66,181, 90,253, 0,192,183, 0, 30,254,205,125,201,138, 23,188, 1,173,156, 86, 78, 43,167,149,211,202,249,255,156,115, 45, 32, + 90, 3, 56, 88,219,243,111,229,228, 3,240,174,155, 44,254, 19,235,254, 82, 90,183, 40,107, 91, 88, 97,133, 21, 86, 88,241,119, + 99, 81,243,110, 22, 86,252,117, 80,162, 9,159, 44, 43,254,187, 32, 90, 80,165,173, 49, 9,190,136,178,141,183,114, 90, 57,173, +156, 86, 78, 43,167,149,211,202,249,255,142,211, 28,247, 63,113, 73,114,102, 19,159,109,251, 79,156,216,106,254,181,114, 90, 57, +173,156, 86, 78, 43,167,149,211,202,249,255, 22,164,181, 9,154,133, 75,221,235,175, 62,214,138,151,187, 47,252, 39,224, 81,247, +106,205,241,110,214,203,104,133, 21, 86, 88,241,255, 67,104, 89,250,208,250, 51, 15,183, 63,251, 96,252,146, 32, 80, 76, 16, 40, + 6,240,229, 95,120,172, 57,184, 59, 57, 57,125, 16, 28, 28,188,207,197,197,101, 14, 0,113, 43,127,239,207,231,243, 55, 9, 4, +130, 75, 2,129,224, 18,159,207,223, 4,192,255, 47,186,110, 4,128, 89, 28, 14, 39,193,205,205,237, 9,155,205, 78, 0,240, 14, + 94,124,231,106, 7, 60,141,147,246, 5,128,240,214,252, 80, 28, 50,226,160,115,200,136,251,206, 33, 35, 82, 28, 67,135,249, 59, +135,140, 72,113, 14, 25,113, 95, 28, 50,226,224,223,208, 95,255,202,235,251, 87,149,167,128, 32, 80, 96, 97,121,190, 37,128, 66, +130, 64,209,255, 72,249,173,176,194, 10, 43,172,104, 86, 5,184,187,143,113,115,115,139,119,115,115, 59,239,238,238, 62,198,130, +159, 68, 55,241,144, 48, 18, 4,140,102, 6,253,150,142, 51,103,174,108,252,219,245, 22, 86,173, 49,167, 11, 65,192, 72,215,129, + 32, 96, 18,139,197,223,185,185,185,125,249,252, 75, 44, 22,127, 71, 16, 48, 53, 58,214,216, 72,224,181,214,172,234, 50,121,242, +228, 67,213,213,213,113, 90,173, 54, 46, 59, 59, 59,238,181,215, 94, 59,240,156, 37,162, 89, 78, 46,151, 59,177,107,183, 30, 73, +151,175,222,204,206,202,201, 47, 78,203,124,148,255,251,153, 11,183, 67,195,194,111,113,185,220,137,173,184, 70, 4,128, 89, 20, + 69, 37, 8,133,194, 34,138,162, 18, 0,204,102, 48, 24, 39,214,174, 93,155,159,154,154, 90,118,237,218,181,154,203,151, 47, 63, +153, 54,109, 90, 14, 65, 16,191, 55, 33,216,163, 45,176,192, 44,125,252,248,241,153,146,146,146,179, 60, 30,111,181, 5,199, 55, +112, 58,135,140,184, 47,145,234,104,137, 84, 71, 59,135,140,160, 27,189,191,223,202, 54, 55,119,141,254,208, 23, 56, 28,142,183, + 25, 65,255,119,154,232,255, 80, 30, 0,174,117,223, 69, 2,248,190,238, 85,191,157,221,149,203,225,252, 85,253,243,175,104, 79, + 43,167,149,211,202,105,229,124, 89, 17, 81,247,215, 13, 79,253,181, 26,158,221,173,221,117,248, 94,118,118,182, 16, 0, 2, 2, + 2,222, 5,112,164, 53, 66,130, 32,240,177,201, 68,147, 0, 64,146,196, 39,125,251,246,139,224,241,120,207, 68, 65, 86,169, 84, +236,132,132,139, 81, 38, 19, 77,212, 29,247, 49, 77, 99, 19,128, 50, 75,207,161,213,106, 72, 38,147, 13,146, 36, 22,132,134,134, +181,173,168,168, 72, 36, 73,114,223,147, 39, 79,170, 91,109,198, 33, 8,108,223,190, 61,192,205,205,237, 15,209,154, 75, 74, 74, +216, 35, 70, 12,111, 21,223, 84,128,163,225,112,186,177, 8,194,205,104, 48,216, 1, 0, 69, 81,213,183,217,236,200, 53,171, 86, +241, 9,130, 48, 85, 86, 86, 66,165, 82, 97,254,252,249,188,180,180,180,145, 21, 21, 21, 63,154,161, 13, 8,239, 24, 49,255,236, +217, 51, 65,178,170,106,245,246, 13, 91,147, 84, 20, 75,233, 19, 28,200,250,105,219, 47,246, 51,223,154,244,126, 70, 70,234, 93, + 52,157,142,164, 49, 72, 0, 71,231,205,155, 23, 18, 19, 19,195,150,203,229, 92,149, 74,213,118,223,190,125,159, 69, 70, 70, 10, + 59,117,234,196,254,237,183,223, 8,169, 84, 10,154,166,249,129,129,129,244,248,241,227,213, 7, 14, 28,152, 3,224,187, 22,132, +239,199, 79,219,146,220,216,161, 67,135,101, 0,144,157,157,205,106,212,198,204,160,160, 32, 1, 0,100,102,102,174,160,105,211, + 60, 0,160,105,172, 3,176,184, 9,211, 90,118, 72,207,113, 0, 1,191,212,171,135,184, 33,189,198,169, 65, 35,135, 0,178,235, + 38, 4, 43,129, 70,113,161,158, 69,122,113,113,241, 11,229, 38, 28, 58, 52,134, 32, 8,226,112, 82, 82,210, 17,137, 68,226, 99, + 50, 25,103,180, 84,206,230,174,149,179,179,243, 89,163,209,168,169,170,170,106, 8,148,233, 28, 62,170,135,163,141, 32,170,188, + 90,158, 88,153,118,252,178,133,125,147,112,116,116,156, 90, 81, 81,241, 37,128,233,233,233,233, 17, 0, 16, 20, 20,196, 2,112, + 71, 36, 18,189,170,211,106, 9,235,248,103,133, 21, 86, 88,241, 31, 17, 90,201, 0,134,226,223, 41,120,182,189,136,208, 98, 3, + 64, 98, 98, 34, 0,112, 94,160, 32, 68, 99, 1, 51,119,238, 92,184,185,185, 61, 47, 94,112,233, 82,194,159,169,236, 51,231,248, +226,139, 47,132, 53, 53, 53,209, 63,255,252,115,111,154,166,215, 23, 23, 23,223, 48,243,251, 50,154,198, 58,146, 36, 62, 33, 8, + 2, 28, 14, 55,235,157,119,222, 73,174,251,174,237,239,191,255,206, 31, 54,108,152, 18, 64, 62, 0,112, 56, 92, 15, 6,131, 12, +160,105,186,254,129,219,172, 32, 28, 11,248, 26,216,236,126,179,190,255,222,208,121,216, 48, 74,224,236, 76, 0, 64,126, 70,134, +227,186,175,191,126,181, 58, 55,151,173,114,116,172,172, 84, 40, 84, 89, 89, 89,224,112, 56, 4,131,193,232,108,174,194, 2,129, +224,131, 85,107,190, 18,200,170,106, 84,106,153, 92,203, 48,232, 53, 54, 60,190,177,172, 84, 82, 41,228, 9,148,159,124,190,156, +253,222,140, 41, 31, 40, 20,138,119,205, 80,205, 89,176, 96, 65, 80,215,174, 93, 61, 14, 30, 60, 72, 72,165, 82, 80, 20, 37,236, +212,169, 19, 34, 35, 35,141, 23, 47, 94, 36,124,124,124, 16, 26, 26,138,171, 87,175,226,250,245,235, 68, 68, 68, 4, 63, 54, 54, +118,178, 94,175,255,206,156,184,102, 48,200,249,129,129,129,157, 4, 2,129, 54, 32, 32, 0, 51,102,204, 0, 77,211,136,142,142, + 14, 21, 10,133, 71, 20, 10, 5, 59, 51, 51,163,183, 57,145, 45, 73, 61, 62,190,222,178, 5, 32, 12, 52,114,202, 83,143, 55, 94, +126, 12,202,204,204,236, 94, 93, 93,141,167,215,133,110, 72, 96,222,187,119,239,214,244,165, 50,154,198,186, 97,195, 98, 62, 1, + 8, 34, 58, 58,186,102,206,156, 57,100, 70, 70,198, 27,163, 70,141, 12,205,206,206, 65, 43, 39, 3, 1, 3, 6, 12,184,122,234, +212, 41,199,128,128,128,242,170,170,170,134, 47, 92, 29,237, 6, 94,142,221,248,193,234, 77,251, 2,247,208, 68, 77,121,250,177, + 7,102,250, 38, 49,117,234, 91,101, 66,161,112,244,225,195,135, 51, 75, 74, 74, 40, 22,171, 65,187, 50,196, 98,177,115, 64, 64, +192,108, 7, 7, 7, 9,131, 36,197, 52,104,218, 92,255,180,194, 10, 43,172,176,226,133,113,178, 78, 92,157,124,254, 11, 10, 0, +226,226,226, 26, 34,211,198,196,196, 52, 59, 3,166,105,186,236,222,189,123, 94, 74,165, 18, 52, 77, 91, 50, 96, 55,222,162, 89, + 70, 16,228, 79, 36, 73,188, 75, 16, 4, 66, 67,195, 30,109,220,184,177,169,156, 94,218,208,208,176, 71, 12, 6,217,142,166,105, + 16, 4,185,153,166, 77,101,205,112, 54,249, 32, 98,179, 57, 31, 3,128,171,171, 91,238,233,211,167,181, 99,199,142,197,215, 95, +127,205, 90,180,104,209, 66,138,162,230, 20, 20, 20,148,182, 80, 78, 0, 88,236,236, 44,230,111,223,190, 61,224,157,119,222, 73, + 46, 41, 41, 89, 12, 0,110,110,110, 95, 2, 8, 6,144,223,232, 51,108,217,114,224,201,140, 25, 51,178, 36, 18,201,226,230, 56, + 71, 3,237,189, 2, 3,251,173, 76, 76,164, 73,141,134,168,184,114, 69, 86, 94, 86,166,127, 88, 94,206,223,125,231, 78,204,103, + 95,126,201,244,242,246,198,165, 19, 39,156, 42,148,202,114,169, 70,163, 46, 43, 43,163, 13, 6,195,117, 11,234, 30, 34,118, 22, +243,183,126,187,249,182, 13,147, 97, 18,123,122, 16, 76, 7, 7,138,228,139,216, 12,138,212,180,107,235,207, 6, 16, 98,238, 26, +177, 88,172,201, 3, 6, 12,224, 31, 56,112,128, 8, 13, 13,133,157,157, 29,174, 92,185,130,187,119,239,162,186,186,154,212,235, +245,232,210,165, 11,190,250,234, 43,120,123,123,163,166,166, 6, 5, 5, 5, 78,108, 54,219, 89,175,215, 55,215,158,207,244,167, +143, 63,254, 24,110,110,110, 48, 24, 12,168,170,170,130,193, 96,128, 80, 40, 4, 0, 20, 21, 21,225,196,137,227,150,244, 37,179, +160,105, 26,175,188,242,138,156, 32,136,244,231, 45, 90,173,225,244,240,240,248,173,188,188, 98,112,191,126,253, 80, 93, 93,173, + 95,190,124, 57,194,195,195, 17, 16, 16, 96,182,156,238,238,238,179, 12, 6,195, 82, 0,208,233,116,187,185, 92,238,219,123,247, +238,117,108,156, 34,164,222,146, 85, 38,169,172,190,126, 59, 53,115,193,172,177,175, 37,222, 72, 41,212, 49, 71, 20, 72,239, 31, +151, 54, 81,206,197, 44, 22,251,231, 54,109,218,124, 59,119,238, 92, 55, 7, 7, 7,104, 52,154,207, 74, 75, 75, 49,123,246,108, + 0,192,144, 33, 67,194,153, 76,230,233,105,211,166,193,199,199,231, 73, 85, 85, 85, 65, 82, 82,210, 12,165, 82,153,242,162,237, +105, 33,172,156, 86, 78, 43,167,149,243,133, 97,169, 22,249, 31, 69, 9,158, 13,231,176,237, 25,161, 21, 19, 19, 67,196,197,197, +209, 22, 84,172,210,211,211,211,139,199,227, 1, 64,101,107, 75, 97, 50,153,230, 56, 58, 58, 74, 22, 47, 94,220, 51, 32, 32, 64, + 59,103,206,156,148,252,252,252, 37,141,143,105,219,182,237,234, 31,126,248, 1, 89, 89, 89,249, 95,126,249,229,213,202,202,202, +214,230, 49, 91, 68,211,216, 88,103, 29,171, 56,113,226, 68,120, 98, 98,226,187, 27, 54,108,112,126,239,189,247, 88, 31,124,240, +193, 36, 0, 95,155, 35, 97, 48, 24,202,166,150, 11,155,130,155,155,155,150,193, 96, 52, 27, 36, 46, 6,224,113,217,236,190, 43, + 19, 19,105,109,126,190,114,231, 55,223,216,108,189,117,107,153,158,166, 93,196, 98, 49,122,189,250,106, 45,151,193,168,144,148, +150,154,196,237,219, 51,242, 78,159,118, 82,177,217,197, 7, 14, 28,144, 86, 86, 86, 30, 51,107,194, 35, 8,153,137,166,181, 66, + 79,111,253,216,145,253, 67,111,223,188,155, 97, 35,118, 34, 35, 58,133,134,103,100,229, 39,193,100,210, 17, 4, 97, 54, 88,160, +173,173,109, 64,101,101, 37,100, 50, 25,156,157,157,177,113,227, 70,184,186,186, 66,169, 84, 34, 53, 53,149,246,244,244, 36, 18, + 19, 19,225,233,233,137,242,242,114,104,181, 90,200,229,114,137, 70,163,105, 46, 55, 99, 25, 73, 50,118,145, 36,241, 22, 65, 16, +104,215,206,247,241,143, 63,254,168, 53,153, 76, 8, 10, 10,194,168, 81,163, 16, 27, 27,139,212,212,212,122,203,147,182, 77,155, +182,143, 73,146,104, 83,167,149, 94,216, 2, 83,159,218,167,184,184,120,244, 11,222, 52,164,187,187,251, 36, 63, 63,191,119, 39, + 78,156,168,103,179,217, 80, 40, 20,245,109,161, 31, 60,120, 72,205,176, 97, 49,182, 39, 79,158,108,182,156, 58,157,110,233,147, + 39, 79,220, 84, 42, 21, 6, 13, 26,244,193,250,245,235, 5,108, 54, 27, 0, 96, 52, 26,159,177,100,173,218,176,231,236,188,165, + 63, 38,156,253,237, 43,247, 85,139,222,126,109,210,156,213, 9, 0,206, 52, 85, 48,173, 86,155, 43,149, 74,167, 47, 88,176, 96, +223,150, 45, 91,236,151, 44, 89, 2,147,201, 4,154,166, 97, 48, 24, 26, 18,137,155, 76, 38, 28, 61,122, 20, 15, 31, 62, 92,253, +156,200,178,194, 10, 43,172,248,159, 67, 43,180,200,255, 34,220,240,116,217, 16,207,139,173,255,120,100,120, 6,131,177,245,220, +185,115,157,122,247,238, 77, 69, 69, 69,133,158, 57,115, 38,244,201,147, 39, 41,117,214,131,208,168,168,168, 80,177, 88,140, 77, +155, 54, 41, 25, 12,198,214, 23, 60, 77,195, 67,175,180,180, 52, 25,192,250,216,216,216,117,179,102,205,130,171,171,107,112, 73, + 73,201,127,180,206, 34, 14, 39, 98,218,198,141, 6,166, 94, 79,126,191,126,189,232,155,132,132,117, 7, 15, 29,162, 94,121,229, + 21,130,166,105, 60,184,127,159,247,213,119,223,241, 39,140, 28,153,159,153,155,107, 56,126,246,172,190,236,201,147,170, 39,229, +229, 75, 1, 84,153,227,215,235,245,255,202,206,206,118,239,213,231, 21,143,203,183, 82,238,142, 29, 57,164, 31,147, 34,137,156, +252,162, 59,110,174, 78,182,151, 18,226, 85,122,189,254, 95,230,120, 20, 10, 69,158,193, 96,112,160,105,218,249,210,165, 75,112, +118,118, 70,117,117, 53,244,122, 61,180, 90,173, 86,169, 84,114, 43, 43, 43,161, 86,171,161,209,104, 32, 18,137,240,224,193,131, + 50,131,193,112,177, 57, 78,163,209, 56,141,195,225,124,193,100, 50,217, 44, 22,171,248,206,157, 59,144,201,100,109,237,236,236, +190, 54, 24, 12, 40, 46, 46, 70, 98, 98,226, 71, 34,145, 40, 31, 0,184, 92, 46,216,108,142,163, 70,163, 49, 0,120,242,162,109, + 78,211,244, 11, 95, 47, 87, 87, 87,111, 30,143,183,242,147, 79, 62, 14,234,216,177, 19,202,203,203, 97, 50,153, 32, 16, 8,160, + 84, 42, 33, 18,137,208,163, 71,143,188,149, 43, 87,150,208, 52,102,182, 32, 6, 25,117,215, 7,179,102,205, 18,136, 68, 34, 20, + 22, 22, 34, 48, 48,176, 65,104,149,148, 87, 62,184,118, 59, 37, 99,193, 59,227,250,236, 63,145,144,126,246,210,157,244,145,131, + 94,237, 72, 16,116,219,150,202, 40,145, 72,202, 41,138,154, 51,107,214,172, 47, 2, 2, 2,218,209, 52, 13,127,127,127, 12, 24, + 48, 0,167, 79,159, 70, 86, 86, 22, 20, 10,133,241,198,141, 27,191,150,148,148,252,110, 29,194,173,176,194, 10, 43,254, 86,252, +193, 55,235, 25,139,214,127, 18, 18,137,164, 60, 35, 35,227, 76, 82, 82, 82,204,248,241,227,113,233,210,165,241,103,103, 1, 0, + 0, 32, 0, 73, 68, 65, 84,169, 0, 22, 0, 0,135,195,153, 58,126,252,120, 36, 37, 37, 33, 35, 35,227,140, 68, 34, 41,255, 43, +206,201,102,179,213, 90,237, 83,227, 20,151,203,229,182,242,231,109,235,150, 12, 1,160,109, 11,159, 53,111, 26,161, 40,183,176, + 65,131,168,234,187,119,101,219,111,222,252, 98,223,190,125, 84,207,158, 61, 9,189, 78, 7,163,201, 4, 95, 95, 95, 34, 42, 58, + 90,176,107,223, 62, 7,163, 66,145,184,234,147, 79,174,108,155, 54,173, 54,187,206, 15,204, 28, 52, 26,205,119,239,206,158, 30, +157,112,233,138, 71,112, 96,123,135, 51,231, 18,146, 29, 29,109,249, 1,126,126,130,202,234, 42,227,146, 69, 31, 81, 26,141,230, +123,115, 60, 42,149,234,104,124,124,252, 72, 47, 47, 47,231,148,148, 20,104,181, 90, 24,141, 70, 68, 69, 69,129,166,105, 14, 0, + 19, 69, 81,200,200,200,128, 78,167,147,100,103,103, 23,231,228,228,112, 0,172, 53, 83,190,199, 26,141, 6,233,233, 79, 87,237, + 60, 61, 61,251, 15, 29, 58, 20, 6,131, 1,131, 6, 13,194,241,227,199,251,167,167,167,127,211, 88,243,253,217,107, 94,103, 33, + 11,114,119,119,143,173,251,200, 34, 39,120, 15, 15,143, 80, 95, 95,223, 45,107,215,174,101,121,122,122,130,166,105,216,219,219, + 65,169, 84,162,162,162, 18,193,193,193,240,242,242,194,218,181,107, 1,224,215,150, 44,110, 38,147, 9, 37, 37, 37,200,203,203, + 67,110,110, 46,188,188,188, 64, 16, 4,228,114, 57, 12,134,167, 57,185,249,114,217,201, 31,118,253,222,247,208,150,165, 33,221, +194,252,189,111, 38,167, 73, 38,143,238,207,247,247,241, 14, 40, 79, 89, 78, 2,203,155, 77,186, 92, 92, 92,156, 83, 92, 92, 60, + 94, 34,145,176,106,106,106, 34,251,247,239,191, 41, 58, 58, 26,201,201,201,184,114,229,202, 4, 14,135, 35,209,233,116, 6, 87, + 87,215,153, 4, 65,136,116, 58,221,254,202,202,202, 18,235,120,104,133, 21, 86, 88,241,151,163,222, 71, 11,141,254,182,206,162, +245,127,236,157,119,120, 20, 85, 27,197,207,108,223,108,122,217,144, 66, 2,132,146, 16, 2, 4,164, 72, 15, 8,210,130,116, 80, + 41,130, 74, 19, 69,164, 8, 22, 64, 44,128, 74, 83,145,170,210,123,211,128, 64,162,180, 72, 64, 58, 36, 36,129, 4, 82,119,211, +203, 38,219,167,220,239,143, 20, 19, 72,217, 77, 98,129,111,126,207, 51,207,236,206,206,156,185, 83,246,206,153,247,182,192,192, + 64,219,164,164,164, 73, 77,155, 54,149, 2,128,141,141, 77,155,230,205,155,207, 79, 76, 76, 44,178, 54, 53, 58,157,238,192,238, +221,187, 95, 92,179,102,141,100,200,144, 33, 45,142, 28, 57,210, 5, 0,134, 12, 25,210,194,222,222, 30,187,119,239, 54,235,116, +186, 6,235, 19,137,166,233,222,157, 59,119, 70, 94, 94, 30,146,146,146,172, 42, 66,249,229,151, 95, 20, 40,169,151, 85,227,178, +154, 96, 76, 38,103, 39,111,111, 65,250,217,179,230, 60,141,198,179,119,159, 62, 20,109, 54, 67, 32, 16, 32, 55, 55, 23, 41, 41, + 41,112,116,114,162, 98,239,223,183,219,182,112,225, 47, 77,131,131,165,172,201,228,106, 69, 50,181, 57, 89,153, 83,222,158,253, +214,209, 61,123,246, 42, 11, 52,154, 4, 27, 27,133, 81, 38,147,120,204,121,251,109, 54, 47, 47,111, 50,128, 98, 11,116, 86,238, +217,179,103,208,160, 65,131,110,251,250,250,186,103,103,103,123, 20, 20, 20,176,121,121,121, 66,148,212,181,162, 0,224,236,217, +179,208,104, 52, 12,203,178, 23, 80,210, 23,150,201,210,132, 54,105,210,196,177, 83,167, 78, 33, 74,165, 18,133,133,133,112,117, +117, 69,135, 14, 29, 66,132, 66,225, 15,201,201,201,133, 13,121,215,135,135,135,219, 19, 66,158, 39,132, 96,208,160, 65, 22,109, +195,178,236,212,161, 67,135, 74, 40,138,130, 94,175,131, 92,110, 3, 91, 91, 59,216,219, 59,192,223, 63, 0, 42,149, 10, 3, 7, + 14, 52, 37, 36, 36,124,175, 86,171, 15,212,162, 5,149, 74,133,236,236,108,164,164,164, 32, 39, 39, 7, 0,144,147,147, 83, 94, + 57,191, 33, 40, 44, 44, 28,222,189,123,247,121, 51,103,206, 4,195, 48, 24, 62,124, 56, 82, 83, 83, 87, 63,122,244,104,191,151, +151,215,132,169, 83,167, 42, 93, 93, 93, 49,111,222, 60, 27, 0,159,240,249, 33, 15, 15, 15, 79,131,243,120, 29,173, 39, 35, 90, + 53,149,137,122,120,120,244,162, 40,234, 35,189, 94, 47, 45, 43,146,161, 40, 74,170, 84, 42,143,235,245,250, 21,106,181,218,170, + 74,113, 5, 5, 5,154,135, 15, 31, 30,143,138,138, 26, 59,106,212, 40,132,135,135, 79, 6,128, 81,163, 70, 33, 42, 42, 10, 15, + 31, 62, 60, 94, 80, 80,208, 32, 3,144,122,123,123, 15,238,211,167,207,168,206,157, 59, 35, 44, 44, 12, 44,203, 94,178,102,251, +138, 45, 12, 81, 69,171,195,178,101, 22,137, 9,133,160, 40,170, 60,154,145,147,157,141,248,184, 56,228,229,231,195,104, 48, 64, +171,211,177,254,205,154,233, 11, 77, 38, 49, 5, 88, 91,246,149,124,253,234,229, 20,157, 86,235,238,234,236,162, 87, 40,100, 40, +208, 20, 74,174, 93,189, 92, 12, 32,193, 66, 13, 19, 33,164,207,175,191,254,186, 68, 40, 20,142,179,179,179,195,172, 89,179,132, + 33, 33, 33,144, 72, 36, 48, 26,141, 40, 40, 40,192,238,221,187,179, 89,150,245, 43,221,198, 78,161, 80,236, 16, 10,133,105, 69, + 69, 69, 31,213,186, 3,147,105, 72,104,104,168,200,100, 50,225,179,207, 62,195,210,165, 75, 49,104,208, 32,209,213,171, 87,135, + 0,216,211, 80,119, 60,199,113, 24, 48, 96, 64,197,202,240,247, 44,217, 78, 44, 22,183,109,217,178, 37,178,179,179,145,157,157, + 13,165, 82, 9, 47, 47, 47,120,120,120, 96,245,234,213,100,253,250,245,167,204,102,243,247, 57, 57, 57,153,150,164, 33, 49, 49, +177, 60, 50,104, 48, 24,160,213,106,145,154,154, 90, 94,116,168,183,117, 24, 52,123,202,176, 96,173, 94,175,187,114,231,126,202, + 71,239, 76,232,166,213,235,117,247, 31,165,196, 3,223,112, 22,220,223,211, 38, 79,158, 60,109,236,216,177, 40, 46, 46, 70, 84, + 84, 20,122,244,232,129, 47,191,252,210,243,194,133, 11,239,117,238,220, 25, 98,177, 24,231,206,157, 3,195, 48,169,124, 94,200, +195,195,243, 95,230, 41,173,159, 85, 35, 53, 70,180,124,124,124,156, 88,150, 93, 48,116,232,208, 1, 35, 70,140,192,192,129, 3, + 43,253,190,103,207, 30,251,195,135, 15,175,248,230,155,111, 6,153,205,230,149,214, 20,245,113, 28,119,116,207,158, 61, 67,186, +117,235,166,232,219,183,111,115, 0,144,201,100,166, 61,123,246,232, 56,142, 59, 90,135, 99, 41,235,136, 49, 19, 0,188,188,188, +218,139, 68,162, 81,131, 7, 15,110, 63,101,202, 20, 68, 71, 71, 99,247,238,221, 15,252,253,253, 35, 51, 51,173,170, 95,157, 84, + 75,171,195, 21,181, 69,183,132, 82,105,110, 65, 70,134,147,157,175,175,216,217,222, 94, 29, 22, 22,230,211,191,127,127, 42, 53, + 53, 21,249,249,249, 48, 24, 12,184,122,245, 42, 39, 2,146, 69,206,206, 84,114, 84, 20, 37,148, 74,115, 81,185, 37, 95,173,248, +120, 58,183,250,120,209,140,166, 6,163, 33,168,176,176,144, 17,137,197,226,198, 30, 78,169,113, 9, 86,149,196, 25, 21, 10, 69, + 39, 0, 34,142,227,116, 46, 46, 46,138, 51,103,206, 64, 42,149,130,162, 40,180,107,215, 14,114,185, 92, 66, 8, 73, 1, 0,123, +123,123,233,230,205,155, 29, 39, 76,152,112,177, 54,225,142, 29, 59,138,101, 50,217, 75,254,254,254,136,138,138,194,221,187,119, +147,163,162,162,154,116,236,216, 17,190,190,190, 47,121,122,122, 30,188,113,227, 6,221, 16, 55,118, 73,139, 85,235, 43,195,179, + 44,203, 81, 20, 5,129, 64, 0,142,227,144,157,157, 13, 63, 63, 63,108,216,176, 1,235,214,173,251, 76,173, 86,255,108,133, 22, +171,209,104, 96,107,107,139,187,119,239, 26,135, 14, 29, 42, 19, 8, 4,120,240,224, 65,185,209,114,119,115,105,211,163,115,219, +214,159,173,221,121,218, 86, 38,147, 13, 12,233, 20, 24,115, 63, 57,141, 16,170,214, 98,227,192,192, 64,137,159,159,223,228,177, + 99,199, 34, 49, 49, 17, 43, 86,172,200, 81,171,213,103, 79,159, 62, 61,122,230,204,153,194, 30, 61,122, 32, 55, 55, 23, 63,253, +244, 19,115,237,218,181, 31, 51, 50, 50,118,242,217, 56, 15, 15, 15,207,127,196,104,249,248,248,140,149, 72, 36,243,198,143, 31, + 47, 12, 8, 8, 64,102,102, 38, 28, 28, 28,104,138,162,196, 0,224,228,228, 68,219,216,216, 96,198,140, 25, 8, 14, 14,238,181, +112,225,194, 30, 34,145,104,131, 74,165,218, 97,201,142,179,178,178,116, 2,129,224,208,172, 89,179, 86,222,188,121,195, 15, 0, +254,252,243,207,135, 42,149,106, 81, 86, 86,150,206,202,227, 40,235, 20,147,146,201,228, 87, 90,181,106,245,168, 83,167, 78, 14, + 35, 70,140,128, 82,169,196,245,235,215,177,106,213,170,251, 38,147,105,201,249,243,231,153,127,250, 36, 51, 70, 99,198,181, 99, +199,236, 67, 94,125,213, 97,206,208,161, 95,191, 53,107,214,154,143, 63,254, 88, 20, 16, 16, 64,233,116, 58, 92,185,114,133, 28, + 62,124,152,254,233,211, 79,215,193,214, 86, 28,117,248,176,212,100, 50, 37, 91, 25,185,235,211,179,119,175,128,175,215,124, 3, +131,190, 24, 87, 46,157, 64,126,126, 54, 54,111, 57, 18,224,237, 77,250,164,167,167,159,183, 84,139,162, 40,255,240,240,112,119, + 66, 8,164, 82, 41,150, 47, 95, 14, 47, 47, 47, 56, 56, 56,160,168,168, 8,239,189,247,158,227,187,239,190,235, 8, 0,209,209, +209,229,221, 51,212,134, 74,165,234, 62, 99,198, 12,123,134, 97,112,234,212, 41, 19, 69, 81, 31, 69, 68, 68,252,208,174, 93, 59, +105,175, 94,189,236,119,238,220,217, 3,192,185,134, 50, 90,117,220,238,193,153, 51,103, 58,143, 27, 55,142,136,197, 98,170,160, +160, 0, 78, 78, 78,216,176, 97,131, 86,173, 86,159,176, 82,107,249,162, 69,139,150,148,126,222,254,209, 71, 31,189,177,114,229, + 74,101, 70, 70, 70,121, 84, 51, 43, 39,239,247,238, 67,223,102,115, 11, 10, 77, 63,174, 93, 56,198, 70, 46,147,126,180,242,199, +115,180, 16,151,107,189,175, 24, 70,170, 80, 40,164,132, 16, 28, 58,116, 8,201,201,201, 83,115,115,115, 51, 88,150, 61,178, 96, +193,130,249, 1, 1, 1,205,226,226,226,146,139,138,138,190,204,202,202,122,196,103,119, 60, 60, 60, 60,127, 27,101,149,224,203, + 90, 31,158, 64, 73,113, 98,245, 70,139,101,217, 25,167, 79,159, 22,114, 28,135, 45, 91,182,224,218,181,107, 68,161, 80,124,164, + 80, 40,190,179,177,177, 97,245,122,253,244, 55,223,124,115,194,210,165, 75, 5,189,122,245, 66, 84, 84,148,192,207,207,111, 50, +128,138, 70,171, 63,106,232,107,163,176,176,240,106,102,102,134, 95,133, 14, 42,253,100, 50,249,213, 90, 14,230,113,205,199, 59, +197,236,186,124,249,114,173,167,167,167,233,238,221,187,216,180,105, 19,119,237,218,181,179, 82,169,116,179, 90,173, 54, 90,168, +217, 16,148,107, 74, 25,230,250,174,249,243, 3,159, 27, 62,156,123, 99,222,188, 98,137,141,205, 59, 95,127,243,205,194,130,162, + 34, 47, 80, 20,113,117,116, 76,222,178,124,249,138, 65, 47,189, 84, 28,125,254,188,252,102,120,184, 88, 73,211,183,172, 73,103, +122,122,250,249,115,231, 46, 98,251,214, 53, 48,155,141, 80,167,151,248,180,156,220, 66,212, 98,178,158,208,100, 24,166,112,244, +232,209, 18, 0, 54, 19, 39, 78,148,102,101,101,161, 69,139, 22, 0, 0,141, 70,131, 19, 39, 78,160,117,235,214, 0,128, 59,119, +238,148,127,174, 45,157,182,182,182, 47,245,232,209, 3,201,201,201,136,142,142,254, 77,173, 86,231, 2,248, 45, 53, 53,117, 72, +231,206,157,113,244,232,209, 97, 53, 24, 45,171,174,145,133, 70,235, 9, 77, 27, 27,155, 69, 71,142, 28,153,122,233,210,165,113, +243,231,207, 23,191,240,194, 11, 0,128,162,162, 34, 29, 0,214, 26, 77,189, 94,191, 25, 64,121,203,217,164,164,164, 93,243,230, +205,187, 48,119,238, 92,101, 89,250,178, 99,126,142,202, 6,162,130, 66,166,126,220,189,115, 80,192,231,235,119,159, 78, 73,205, +220, 93,120,239,120,161, 37,199, 78, 8, 1, 77,211,224, 56, 14, 46, 46, 46,218,220,220, 92,100,101,101, 61,202,202,202,154,149, +144,144, 96,213,177, 55,228, 61,207,107,242,154,188, 38,175,249,127,138,229, 61,195, 19, 66, 24,142,227,112,238,220, 57, 28, 57, +114,132, 53,155,205,211,212,106,117,197,222,170,191,185,126,253,122,248,232,209,163,119,196,197,197, 9, 99, 98, 98, 64, 8, 97, +173, 73,141,193, 96,160, 41,234,201,101,245, 61,202,237,219,183, 35, 35, 35,195,156,154,154, 26,193, 48,204,209,122,182, 94,172, +119,171,195,237,128,241, 21,147, 41, 98,105,207,158, 3,150,132,135,203,222,248,224, 3,227,107, 83,166, 44, 96, 77, 38, 90, 40, +145,112, 82, 91, 91, 1, 43,147,137,163,207,159,151,175,159, 57,211, 69,111, 52,158,218,109, 69, 5,243,178,136, 86, 72, 72, 47, +188,246,198, 92,232, 43, 68,180,162,174,198,195,104,134, 85, 17, 45,163,209, 24,164, 86,171, 33,151,203, 83, 0,120, 76,154, 52, + 9, 28,199, 65,175,215,163,168,168, 8, 42,149,170,112,202,148, 41,108,169,121, 18,141, 26, 53,202,193, 18,221,230,205,155,123, +137,197, 98,156, 58,117, 10, 98,177,248, 4, 0,136,197,226, 19,225,225,225, 67, 94,126,249,101,120,123,123, 55, 79, 76, 76,164, + 80, 75,253, 52,247,160,225, 7, 8,208, 10, 20, 90,150,132,224,208, 82, 25, 52,252, 54, 5,220, 47,237, 53,254, 94,199,142, 29, + 1, 11,235,101, 85,164,180,113,199, 58,154,166, 15, 46, 92,184,112, 86,215,174, 93, 95, 92,186,116, 41,133,210,174, 26,234, 73, +124,122,122,122,239,197,139, 23,159, 38,132, 84, 50,253, 89, 57,121,191,119, 11,157, 77, 10, 10, 10,111,102,223,251,249,142, 85, + 17, 83,134,169, 87,119, 22, 60, 60, 60, 60, 60, 13, 22,213,122,130,106,141, 22, 69, 81, 91,250,244,233, 51, 13,128,144,162,168, + 77, 42,149,234,137,204, 95,173, 86,199,123,121,121,125,213,172, 89,179,233, 0, 8, 69, 81, 91,172, 76, 84, 38, 33, 88, 37, 16, + 80, 11, 75,204, 93,157, 58,168, 44, 27,150,100, 33, 0, 74, 32, 16,238,184,113,227,198, 7, 41, 41, 41,217, 22, 70, 32,106,164, + 33, 90, 29, 2,192, 94,224,209,248,228,228,211,243,218,182,237, 63,104,230, 76,180, 31, 52,200,193,171, 73, 19, 86,111, 54,115, +119, 34, 35,169, 75,135, 14, 73,110,134,135,139,245, 70,227,169,163, 64,138,181,233, 76, 79, 79, 63,255,251,217,243,103,198,140, + 26,242, 98,243,102, 94, 37,166,225,145, 10, 57,121,133,103,172, 49, 89,143,153,222,225, 27, 54,108,248, 89, 34,145,136, 42, 14, +101, 99, 54,155,243,140, 70, 99, 16, 0,228,231,231,123,109,217,178,101,159, 64, 32, 72,174, 77, 47, 38, 38,230,248,146, 37, 75, + 70, 37, 37, 37,157, 73, 77, 77, 77, 2,128,148,148,148, 36,154,166,119,168,213,234, 81,201,201,201,135, 97, 65, 35, 0, 2,180, +138,142, 60,216, 14, 0,130,122,142, 69,116,228, 65, 57,128,118, 65, 61,199, 2, 0,234, 58,150, 97, 69, 74,187, 65,248, 40, 42, + 42,106,207,139, 47,190,248, 38,234,209,167,215,227,102,203,108, 54, 55,121,124, 97, 89,100,203, 26, 33,147,201, 68,235,245,122, +134,101, 89,145,217,108, 38, 38,147,137,230,243, 57,158, 90,224,199,190,228,121,106, 33,132,116, 6,160, 44,203, 54, 75,231,202, +199, 62,155, 80, 58, 92, 96, 89, 86, 89,250, 61,155,162,168,171, 21, 52,202,151, 91,176, 45, 0,228, 0,184, 77, 81, 84,117, 65, +144, 45,213,125,175,214,104,169, 84,170,195,176, 96,208,104, 75,215,171,129,197,165,227,196, 1,117, 31,135,173, 92,131,101,217, +204,148,148,148,122, 95, 80,129, 64,240,104,216,176, 97, 86,173, 95,219, 58,251,129,228,183,141,198,157, 97,223,126,219,225,212, +166, 77,222, 44,195,184, 82, 0, 17, 74,165,185, 38,147, 41, 73, 73,211,183,172,141,100, 85,138,198, 60, 76, 31,152,248, 48, 29, + 45, 91,182, 36, 15, 30, 60,104,136, 76,245,150, 86,171,245,169,237, 22,208,233,116,189, 44, 52,131,123,211,211,211,247, 86, 97, +216,247,169,213,234,125, 86, 60, 41,238,151,154, 42, 1, 71,113, 99,130,122,142, 61, 4,128, 43, 27, 84,186, 33,201,200,200,136, + 67,105, 63,111,255, 53,146,147,147,141, 20, 69,237, 90,181,106,213,196,155, 55,111,238, 87,169, 84, 70, 62, 43,230,225,225,121, +150, 77, 22, 69, 81, 97,165,223, 67, 75,131, 66, 97,143,127, 46, 91,167,108,189,138,235,148,105, 60,190,188,166,109, 1, 96,209, +162, 69, 31,172, 88,177, 66, 1,192,210,193,152,235, 60,168,244,223, 69,230,127, 68,163,162, 41,216,250,119, 28,232,183,128, 9, + 12,115, 25, 76,133, 58,249,116,195, 6, 34, 30, 60,120,240, 76,191,181,150, 13, 42, 93,129,182,255,175,153, 79, 82, 82,210, 6, + 95, 95,223,205, 42,149,138, 1, 15,143, 5,207, 43,254, 20,240, 60,165, 40,171, 50, 70,213,152,178,208,154,126,175,244,226, 94, +197,122, 85,125,167, 40, 42,108,197,138, 21,161, 86,164,183, 60,162, 37,224,175, 29, 15,207,211,205,191,209,146,150,135,135,135, +231,153,120,243,120, 44,138, 85,102,190, 30,255,190,104,209,162, 15, 80,115,137,147, 39, 74,162, 88,158,165,223,203,235,107, 81, + 40,105, 57, 80, 21,214,180, 38,232, 95,135,227,139,224, 53,121, 77, 94,147,215,228, 53,121, 77, 94,243,255, 78,179, 54,237,136, + 42, 12,209,208,234,138,250,106, 42, 70,124,252,115,109,219,214,182, 46, 69, 81,213,117,243, 83, 86, 84,248,248,252,111,167, 63, +175,201,107,242,154,188, 38,175,201,107,242,154,188,102,125, 32,132,116, 38,132, 12, 69, 73,241, 55, 33,132, 12, 37,132, 12, 90, +180,104,209,226,178,101,139, 22, 45, 90, 76, 8,121,161,108,189,210,117,202,183, 41, 91,246,248,252,241,101, 53,173, 91, 67, 18, +167, 61,246,185,252,251,127,165,142, 22, 15, 15, 15, 15, 15, 15, 15, 79,149,148,181, 24,172, 16,109,202, 6,112,103,197,138, 21, +249, 21,234, 78,101, 3,184, 5, 32,184,116,189,236, 82,147, 86,177,110,149,169,244,187,169,138,117, 76,150,172, 91, 13, 91,170, +249,204, 27,173,234, 8,246, 16,124,234,219,216,189, 83,233, 5, 0, 41, 29, 4,152, 43,237,175,136,148,117, 92,196,113, 32,132, + 64,149, 85,112,253, 78, 22, 62,174,235,254,252,189,224,226, 46,151,175,227, 8,233, 89,186,232,124, 97,174,113,110,180, 6, 5, +150,106,180,110,132, 64,185, 0, 11, 56,130,246, 0, 32,160,112,219,192,225,171,216, 76,235,251,147,170,234, 62, 15, 82, 98,154, +212, 70, 49,222,209,201,185,101,126,126,206,125,179,193,120, 48, 38, 27,155, 81,135, 10,182,205,157,241, 60, 71,240, 1, 0,129, + 88,128,213,247,243, 44,110,201,193,195,195,195, 83,223,232, 72,189,250,197,163, 40,138,173, 66,147,170,167, 38,223, 80,193, 2, +179, 85,197,226, 63,171, 88,118,245,191,148,110,171,140, 86, 27, 37,102,130,194, 50, 0, 4, 4,159,196,100, 99,163, 85,219,123, +162,191, 92, 40,220, 6, 64,104, 48,179,243, 8,135, 11, 85,158, 76, 1,122,203, 37,194,213, 0, 56, 3,203,190, 30,163,182,188, +190, 88,144, 55, 6,137, 56,193, 46,142, 16, 49,203,145, 29, 32, 8,179,147,224,143,203,233, 48, 88,147, 86,223,198,238,157,142, +253,169,126,241,236,198, 57,232,218,190, 5, 8,203, 0, 28, 13, 69,175, 5,248,109,237, 36,116, 13,244, 5,225,104,128, 99, 96, + 55,248,107, 12,110,235, 72,238,100,213,109, 28,108,127, 47,184, 52,113,115,191,187,117,235, 54, 15,175,230,109, 40,142, 49, 35, +238,207, 51, 19,222, 93,184,164, 95, 16, 10,219, 90, 98,182,218,123,226, 13,223,166, 1, 11,230, 46, 91, 35,244,244,242,177,229, +104, 35,147,241,232, 94,199,111,190, 92,114, 88, 34, 72, 94,125, 91,141,109,150,222,203,109,148,152, 46,146, 73,199,218,200,109, + 91,234,116, 69, 15, 88, 51,125, 80, 32, 22, 13,250,234,235,117, 29, 66, 6, 12,177, 99,139, 50, 4, 52,135, 54, 7,246,239,107, +242,237,134,239,135,220, 85,179, 47, 1,224,172, 57,102,142, 96, 97,252,206,105, 67,196, 34, 33, 21, 56,117,171, 16, 96,234,100, +180, 2,221,241, 10, 69, 80,107,247, 18,132,194,197,123, 89,216, 91,151,125,180,118,199, 15, 20,129, 63, 40, 28,162, 8,246,197, +100, 35,139,207,242,120,120,158, 45, 4, 2,193, 89,142,227,250, 54,176, 49,120,158, 16,114,153, 63,187,255,223, 88, 23,209,162, +240, 89,116, 66,170, 51, 88, 51,130,252,155,127, 10, 88,103,180,228, 66,225,142,171,247, 51, 61,192,152,177,245,243, 89,251, 77, + 52,192,208,102,176, 12, 13,150,161,193, 48,102,176, 52, 13, 66, 27,177,228,199,179,128,169, 8,157,218,182,218, 1,176,158,150, +238, 67, 76, 4,187,174, 71,158,113,161, 76,133,216,187,113,197,219,169,217,197,111, 71,220, 86,229,180,113,215, 47,142,201,194, + 79,214, 24,130,179,155,230, 96,247,209, 19,105,235,127,208,198,114,132,192,197,193, 38, 96, 66,104,180,207,206,227,103, 83,215, +237, 48,196, 2,128,163,173, 52, 96,242,237,251,190,245,185, 8,238,114,249,186,205,223,127,235,225,233,106, 67, 49,151, 86,130, + 97, 89,248, 52, 25, 42, 92, 60,123,130,231,103,107,183,173,133,198,248, 90, 77,219, 7,184,163, 77,211,102,129,243,118,156,184, +228,171,213,100,153,206,236,249, 32, 1, 70,208, 30,222,129,226, 79, 87,172, 17,126,248,254,156,247, 76,108,218,149,184, 44,196, +212,150,215, 4,186,227,248,138,149, 95,183,239, 55, 56,212,142, 43,206, 22, 26,180,197,254, 91,127,220,182,172,117,251, 46,138, + 94,109, 27, 75,178, 14,206,160,244, 69,121, 48, 11,228,178,126, 65,253, 29,244, 19, 95,166,183,110,223, 61, 59, 38, 11,223, 88, +115,204, 44,249,235,222,227,184,186,247,186, 78, 17,244,186,121,249,236,116, 86,117, 21,132,165, 1,214, 92, 62, 7, 75,131,112, + 37,243,174, 51,126, 4, 80, 55,163, 37, 32,120, 49, 34,242,170,103,102,134,186,243,218,175,191, 88, 76,174, 94,253, 21, 44,118, +221,203,195,121,107, 13, 38, 0,127, 63, 87,225,105,154,133, 49,181,128,245, 47, 91,216,207, 95,214,221,211,142,122, 33,165,144, +186,112, 49, 65,127,158,207,154,120,120,254,149,136, 9, 67, 8, 17, 53,176,230, 16, 66,200,201,122,202, 44, 0,240, 70,233,231, +109, 0,190,106,128,164, 53, 6,224, 81,250, 57, 3, 64, 26,127, 7,212,139,199, 43,191,215,185, 31, 45, 57, 8, 7, 28, 26, 1, + 0, 54,214,166,130, 0,114, 80, 66,128,214, 98,248,224, 1,112,115,247, 0,104, 29, 96,214, 1,180, 30,160,181, 0,173, 71,142, + 58, 25, 48,107,129,196, 95,193, 16, 34,179,250,112,141,133, 64,252, 65,188,208,209, 23, 74, 71, 57,230, 12,111,227,182,229, 84, +252,182,109,103,226,250,199,100, 97,188, 69,105, 37, 4, 93,219,181,196,250,109,218,216, 95,110,100, 15, 4,128, 33,193,174,167, +186,182,105,226,179,110,135, 33,246,228,157,252, 65, 0, 48, 40,200,225,215, 46, 1,158,190, 92, 61,186,167,225, 8,233,229,213, +180, 37,197,222,220, 12, 78,147, 6,141, 70,143,180, 71, 59,225,236,253,156,128,229,208,167,182,237,109,132, 88,244,206,135,171, +196, 58, 77,166,137, 51,103,179, 74, 97,190, 80, 36,229, 40,164,159, 55, 22,115, 5,236,220,105,147,152,121, 31,127,190, 8,192, +132,154,116,218,184, 99,246,234,213,235,218,245,232,212,218, 61,227,240, 28,170, 56, 63, 19,140, 80, 33, 27,222,173, 7,156, 90, +181,225, 50,207,173,166,164,205,251,195,201,181, 57,210, 47,237, 65,210,229, 35, 84,207,142,163,100, 63,237,149, 76, 4,204, 85, + 26,173,150,110,232, 57,176,119,151,253,205,125,189, 60, 9,225,192,113, 4,132, 99, 81,108,160,177,248, 64, 34, 88,150,197,232, +129, 61, 95,176,149, 82,132,227, 56, 16,194, 33, 53, 35, 87,247,251,149,216, 23, 18,243,113,197,146, 72, 85,240,243,125,123,222, +190,126,185, 53, 29,255, 11, 58, 77, 88, 17, 75, 1,145, 21,238,185,158, 55, 78,255,212, 26,248,177,238, 94,142, 2,155,116,106, + 37,124,123, 79, 19,110,222,123, 74, 89,152,157, 62,249,240,206,239,199,108,220,188,121,119,108, 22,102, 88, 99,178,222,237, 45, +141, 92,251,187,198,181, 91,115,219,236,212, 10,113, 74, 63,103,193,192, 77, 39, 99,222,137, 90,222,181,245,135, 39, 72,193,133, + 4,195, 29, 62,223,226,225,249,103, 33,132, 52,184,217, 74, 78, 78, 86,213,199,108,121,123,123,247, 78, 79, 79,255,178,172,182, + 10, 69, 81, 95, 54,109,218,116,201, 95, 47,170,149,222,245, 10, 89,150,157,144,158,158,126,161, 38,205,161, 67,135,122,157, 56, +113,162, 89, 5,205,102, 0,154, 85,181,174,147,147, 19,219,189,123,247,164, 19, 39, 78,168,248, 59,164, 78,134,203,106,163, 21, +155,114,112, 78, 71,163,186, 24, 0, 98, 45, 88,191, 82,145,159,129,102, 87,110, 95, 54,105,101, 80, 83, 23, 20,105, 77, 56,115, + 45, 9, 44, 75,131,101,152,210,200, 22, 3,150,161, 49, 48,216, 13,221, 13, 51,240, 77, 88, 28, 24,150, 91, 81,147,230,227,152, + 9,247, 74,135,254,227, 14,112, 28,145,202,196,130, 66,127, 31, 87,247,121,163,131, 5,115,134, 7, 65,111,102,198,237, 57,151, +240,251,189, 44,108,181, 72,147,123,178,123, 34, 82,213, 50,150,169,245,216,107,136, 70,117,237, 31,210,203,129, 24, 11, 65,231, + 36,162, 72, 71, 35, 49,151, 70,134,161, 0, 50, 74,109,145, 38, 71,208,190,177,183,167,226,143,253,239, 63,114, 21,106, 68,238, + 66, 70, 34, 21, 48, 96, 57, 34, 36, 5, 49, 70,151,214, 3,196,101,245,182,106, 74,167,141,194,126, 82,239, 23,135, 58,166,236, +153, 70,217,248, 15,132,123, 71, 31, 60,186,176, 29, 89,215,194,144,171, 74,162, 28, 12, 5,104,228,218, 2,131, 39,140,199, 87, +227, 59,163, 72, 83, 4,161, 58,193, 81, 42,150, 57, 1,230, 42, 53, 9,139, 9,171, 87,125,238, 41, 18, 10, 74,206,103,217,196, +210,208, 27,141, 0,203, 64, 46,226, 64,145,178,223,104,176,180, 89,209,126,212,251,179, 0,246, 74,109,199,126, 47, 11,123,219, + 40,209, 11, 28,221,154,208,122, 80, 64,100, 76,246, 95,230, 39,208, 29,175, 60, 55,112, 74, 47, 66,225, 98, 93,174, 81, 91, 87, +132,118,106,102,103,107,171,137, 69,218,161,183,145, 0, 57,105,212,227, 13,188, 50,117,182, 98,203,150, 45,195, 0, 50, 19,149, +235,168,149,107,182,110, 36,156, 78,179, 88, 2, 0,122,154,108,183,151, 82, 83, 87,239,139,114,133,240,175, 17, 30,202, 34, 89, + 9,185, 92,190,249,236, 71,113,207,207, 11, 11,105,119, 51, 36,149,162,100, 41,231, 31, 24, 11,173,185,151,172,132,215,228, 53, +255,118, 77, 7, 7, 7,191,166, 77,155, 46,161,105,186,183, 68, 34,105,100, 54,155,193,113, 92,134, 84, 42,189,152,148,148,180, + 92,163,209, 60,252,175, 29,251,237,219,183,173, 49, 91,181,106,138,197, 98,196,197,197, 61,176,194,108, 69, 60,182,253,174,200, +200, 72, 28, 56,112, 0, 0, 16, 31, 31,143, 86,173, 90,217, 86,181,225,163, 71,143,108, 67, 66, 66,118, 1,240,169, 73,243,206, +157, 59,126,191,252,242, 11, 14, 29, 58, 4, 0,136,139,139,131,191,191,127,149,137,137,140,140, 20,190,250,234,171,126, 0, 84, +255,192, 53,122, 22, 76, 86,197,249, 95, 70, 43, 44, 44,140,132,134,134, 82,143,127,174,130, 68, 95,103,105, 71, 24, 88, 0, 72, +180, 54, 5,247, 50,177,106,253,206,211,131,126, 59,180,161,183, 92, 34,192,210,173,243, 82,179,243,138,158, 23, 81, 37,197, 47, + 12,129,192,217, 78, 26,181, 98,114,176,111,126,177, 1, 63,255,153,126, 33, 38,203,186, 16,105,140, 26,225, 0,231, 84,242,141, +133, 65,159,229, 63,249,171,240,125,251, 22, 13,106, 63,119,120,123, 28,191,148, 52, 23, 96,106,237,245,157,112, 28, 8,199,148, + 87,126, 47,125,117, 0,184,202, 3,248,114, 32, 37,203, 56,235, 34, 90,125, 0, 81,190, 59, 6,219, 43,164,223, 77,159,254,166, + 3,157,125, 31,121, 38, 9, 82,243, 13,200,208,139, 81, 44,114, 71,122,236, 29, 86, 64, 33,188,214,144, 11, 5, 13, 97, 12, 78, +206, 82, 59, 65,219, 1,179,188, 53,167, 62,200,151, 82,140,208, 97,228,103, 78, 57,191,173, 73, 98,180,217, 90,138, 66,173,221, +207, 59, 58, 58,181, 50,228, 38, 9, 11,243,115,224,228, 17,132, 65,227, 66,241,201,208, 54, 40,210,104,145,157, 23, 69, 90,122, + 58, 80,201, 23,119,227,195,193,129,200,205, 84,195, 72, 3,148,214,152,103, 48, 25,138,171, 61,143, 2,108,126,119,254,194, 87, +154,120, 42,109,203, 26, 21, 16,142, 69,112, 96,115, 12,232,221, 21,225,145,127,224,234,157,120,112,165,141, 10, 8,199, 33, 45, + 43, 63,211, 96,102,183, 91,117, 66, 89, 6,132, 54, 84,105,196, 80,135, 34,195,182,238, 80,176,192,199,157,253,236, 95, 95, 20, +218,196,222, 86, 70,193, 64,179, 48,152,104, 20,253,241, 29, 92,155,182,131, 66, 46,167, 58, 66, 47,186,129,170,207,173,129,198, +146,135,234, 2, 79, 20,103,224,213, 1, 65,239,236, 88,241,150, 45, 37, 47,185, 53,105,182,114, 36,235,143,101,157, 79,191,250, +233,177,179, 7, 14,190,236,245,213,130, 73, 33, 3,223,219,126, 22,192, 41, 62,223,226,121, 26, 25, 51,102,140, 60, 51, 51,243, +156,143,143, 79,155, 1, 3, 6, 40,122,245,234, 5,173, 86,139, 51,103,206, 64,171,213, 54,241,241,241,105,114,230,204,153, 81, + 41, 41, 41, 49,141, 27, 55, 14, 57,116,232,144,197,117,104, 75, 13,144,176, 60, 11, 6, 24,138,162, 80,186,140, 42, 93, 86,231, +113,110,165, 82, 41,146,147,147, 27, 60,178,149,158,158,254,160, 46,145,173,226,226, 98,137,183,183, 55,148, 74, 37, 88,150,133, + 86,171,197,177, 99,199, 80, 88, 88, 8,142,227, 96, 99, 99,131,207, 86,111, 69,236,141,115,184,114,229, 10, 10, 11, 11, 37,181, +105,166,165,165, 81,193,193,193, 48, 26,141, 96, 24, 6, 6,131, 1, 17, 17, 17,229,223, 69, 34, 17, 22,126,186, 22,241,215,206, +225,230,205,155, 72, 75, 75,251, 71, 70, 27,177,194,139,252, 23,169,182,207,172,127,188,213, 33,203, 50,139,183,236,216, 23,181, +120,198,120,204,126,185,191,207,242, 13, 71,250,223,203,193, 14, 0, 8,116,195,228,137,125, 91,250, 58, 41,196,248,100,207, 53, +128,144,197,245,221, 95,116, 30,226,219, 52,226,230, 30,189,146,124,238,131,241, 29,209,220,211,161, 85,190, 52, 79,154,152,104, +193,152,130, 28, 3,103, 59, 89,192,144, 96,215, 83,224, 56, 56,217,203, 90,131,101,224,100, 39, 11, 24, 20,228,240, 43, 0, 56, + 40,196,173,171,138,124, 85, 71, 39, 31,241, 52,133, 76, 52,205,214,222,201,247,181, 97, 3,108,134, 12, 27,101, 99, 39,102,144, +123,229, 12, 52,226,198,160, 93,154,192, 72,231, 33,237, 97, 2,251,219,229,123,233, 57, 69,198,121,181, 38,147,224, 66,250,195, + 56,165, 95,251, 1,206, 57, 97, 31,102,249, 77,217,211, 76, 0, 78, 80,180,123,100,166,173,123, 23,155, 63, 19, 31, 22,115,164, +202,136, 78, 37, 52,133,133, 73, 52, 11, 79, 61, 43,178, 79, 56,251, 19, 22, 13,110,135,252,188, 44, 24,204, 12, 10,245,140,217, +195, 73, 46, 51, 62,188, 11,163,153,129,137,230, 32,118,242,198,153,168, 59, 57, 28, 77,255, 90,157,102, 98, 46,110, 38, 30,187, +105, 87,113, 89,115, 55, 4,191,239, 96,115, 19,180, 30,201,105, 42,236, 56, 17,213, 49, 49, 23, 55,235,115,157, 9,199,148, 20, + 63, 87,136,100, 81, 4,189,234, 82, 9,190,181, 59,186, 72,228,146,111,191,156,251,106,155,110,254, 46, 50, 46, 45, 10, 20,103, +134, 45, 43,130, 94,202,194,209,167, 57, 56, 83, 17,209, 25, 12, 5,209, 64, 77, 23, 95, 8, 0,196,172,197, 87,147,130,108, 41, +231,230, 96, 19, 79, 65,212, 97, 26,232,210,104,127, 66, 46,119,199,124,246,163,216,238,243,127,233,243,105,120,223,123,170, 19, + 75,239,121,143,249, 46, 24,216,222,148,127, 92,243, 60,141, 4, 4, 4,120,164,167,167, 71,207,159, 63,223,101,228,200,145, 56, +122,244, 40, 52, 26, 13,182,111,223,142,117,235,214, 97,217,178,101,160,105, 26, 91,182,108, 81, 28, 62,124,184,203,247,223,127, +159,230,235,235, 27,148,146,146,146, 81,139,193,162, 0,200, 0,136, 75,159, 93, 20, 0,238,228,201,147, 24, 50,100, 8, 78,158, + 60,201,149, 46, 99, 81,242,242, 83,167,177, 63,165, 82, 41,164, 82, 41, 10, 11, 11, 27,196,108,137,197, 98,216,217,217, 65, 42, +149,162,168,168,200,106,179,197, 48,140, 48, 45, 45, 13,133,133,133, 24, 48,108, 24,214,174, 88,129,190,125,251, 98,192,128, 1, + 32,132, 32, 34, 34, 2,253,123,180,197,248,151, 66,112,239,222, 61, 48, 12, 99, 81,122, 51, 50, 50,144,153,153,137, 65,195,134, + 97,235,247,223,163,107,215,174, 8, 8, 8, 0,195, 48, 56,119,238, 28,198, 12,236, 1,249,136,254,136,143,143,231,111,106,203, +163, 89, 13, 82, 71,171,222, 68,103,227, 50,119,252,124,216,203, 3,187,132, 14,235,217, 6, 91,247,255,246, 57,148,154,125, 0, +224,106,148,125, 54,169,111,115,196,164,228,227,183,155,170,176,123, 57,104,144,214, 26, 28, 11, 55, 87, 7, 5, 32,148, 66,111, +230, 24,135,196,218, 43, 48,115,132, 64,209,251,125, 76, 28, 22,227,211,181,141,143, 79, 89,171, 67,187, 33,107, 48,249,206, 3, +223,206, 1, 30,190, 96,105,128,165,225, 48,126, 15,240,169,109,173,233,232,209, 76, 26,254,238,156, 57,221, 7,143, 24,103, 35, + 85, 56,130,213,164,130,206,184,131,220,251, 23,160, 85,180, 66, 70,114, 34, 14,156,190, 82,120, 63, 45, 87, 35, 16,224, 76,102, +161,113, 65, 98, 62,138,107,211, 53,208, 88,177,228,195,121, 67, 15,236,219,111, 47,107,222,147, 74,248,110, 72,161, 84,196,200, +148,205,158, 19,232,228,110,228,139,237,251, 29,180, 38,172,172, 77, 71,167,213, 28,137, 56,115,106,124, 75,191,158,246,143,174, +158,128,222, 96,132,145, 6,130,186,132,128,101,137,148, 18, 80,156,131, 80, 72,101,229,230,131,162,217,204,139,183, 30,169, 35, +111, 37, 10,141,246, 88, 89, 99,239, 34,143,187,123, 74,248,206,176,144, 14, 0,173,199, 75,189,219, 97,237,238,223,222, 6,216, + 41,245,187,200, 37, 17, 45, 2,244,108,163,196, 38, 66,208,243,218,177,117,173, 59,141,120, 23,214, 68,180,130,220, 48, 56,208, +207,235,167,181,159,189,239,226,218,184,149,144,226,104, 16,143,246,128, 38,141, 80,105, 81,112,244,238, 10,214,171, 7,182,124, +243,117, 49,199,145,125,168,161,107, 11,150, 3,184,148,243, 96, 99,143, 34, 49, 49, 17,110, 77,174, 1,148, 0,164,233, 35,152, +153,146,205,140,102,114, 98,253,246, 95,250, 46,232,183, 34,104, 88,107,145,111,212,173,132,172,113, 83,189, 20,207,251, 10,253, + 99,212,182,130, 28,173,150,227,243, 47,158,167, 9,131,193,112,100,213,170, 85, 46,161,161,161,101, 17, 25, 68, 69, 69, 97,219, +182,109,176,181,173,156, 79, 14, 25, 50, 4,132, 16,151,165, 75,151, 30, 1,208,173, 58,205,238,221,187, 15,187,121,243,166,170, + 67,135, 14,137,165,102, 75, 2, 64,112,247,238, 93, 65,106,106, 42,229,236,236, 76,188,188,188,104,149, 74,197, 1, 96,167, 78, +157, 42, 60,120,240, 96, 75,173, 86,123,190,174, 70, 75, 42,149, 54, 72,157, 45,177, 88, 12,138,162, 32,149, 74, 33,145, 72, 64, + 8,177,202,108,177, 44, 43, 58,121,242, 36,174, 93,187,134,101, 29, 58, 96,174,183, 55, 92, 92, 92,112,238,220, 57, 16, 66, 96, +107,107,139,188,188, 60,236,219,183, 15,253,250,245, 3,195, 48, 18, 75,116, 15, 29, 58,132,235,215,175,227,211, 78,157, 48,215, +209, 17,118,118,118,136,136, 40, 41, 13,148,201,100, 72, 78, 78, 70, 68, 68, 4, 66, 66, 66,248,155,186,158, 88,124,243,244, 1, + 68,121, 20, 60,204, 38, 61, 8, 67, 0, 10, 94,129,129,144,220,187, 87,185,114,142, 37, 8, 4,248,240,155, 29, 97, 67,215,188, + 59,140,154, 54,188,163,215,242,159,206,206, 4,128,215, 71,251,123, 43,100, 34,172, 63, 30, 67, 4, 2,124,216, 16, 7, 24, 24, + 8, 9,149,139,153, 3,186, 6, 64, 85, 96, 66,130,170,224,247,123,128, 69,163, 56,255,182,102, 34,118,254,124, 46,117,221, 78, + 67, 44, 33, 4, 78,118,178,128,201,183, 19,124,127, 58,121, 61,101,245, 1, 67, 44,225, 8,156, 20,226,214, 83,238,245,168,181, +213, 97, 39, 31,241,180,247,230,205,235, 49,124,202,124, 57, 19,123, 16,166,132,211,224,204,122,104,204, 18, 20, 8, 61,144,150, +146,130, 47,182,132,165,106,180,166,241,209,217,214, 25,204,251,185, 40, 22, 81,154,145, 95,124,242, 65,248,138,207,150,218,233, + 19,207, 21, 11, 41, 70, 47,108,218, 71,244,217,178, 53, 84,145,209, 52, 46, 49, 31, 69,181,233, 24,237,177,114,213,234,111,134, +190, 57, 97, 84,172,127,171, 62,174,172,234,161,171, 65,163,201,218,115,234,186, 71,233,155, 34, 5, 0, 9,105,185,200, 46,212, + 50, 44, 67,159,183, 23, 99, 63,250, 14, 83, 0, 0, 32, 0, 73, 68, 65, 84,121,140, 37,209,193, 82,252,220,161, 12,237, 25,244, +170,210, 94, 2,125,113, 1,220,237,197, 24,216,181,197,171,244,159,241,239, 63,204,178,198,174, 61,110,180,104, 16, 90,143,203, + 43,251,181, 38, 44,221, 26, 44, 13,243,237, 93,214, 71,198, 40,204,157,221,219,206,193,217,244, 72, 0,173, 45, 96,227, 6,202, +161, 9,224,216,140, 18, 7,142,131, 42, 49,154,121,251,213, 9,185, 15,147,210,126,112,179,169,185, 88,155,230, 8,184,164,115, + 40,206, 76,192, 93,149, 25, 65, 89, 37,165,237, 14,153, 55,192,242, 61,230,240, 60,163, 36, 39, 39, 79, 90,188,120,113,100,215, +174, 93, 27,185,185,185,161, 93,187,118,248,249,231,159, 49,127,254,252,242,117, 58,116,232, 0, 66, 8,242,242,242,176,106,213, +170, 12,149, 74, 53,169,198, 23,244,232,232,216,157, 59,119,246,110,211,166,141, 89, 34,145, 20, 0,144, 21, 20, 20,200,243,242, +242, 40,131,193, 0,142,227, 56, 71, 71, 71, 86,165, 82,209,227,199,143, 55, 94,186,116,169,133, 86,171, 77,174, 79, 68,203,199, +199,231,110,110,110,110, 33, 69, 81,245,238,250,161,204,100,185,185,185, 41,139,139,139, 57, 0,249,117,233,250,129, 97, 24,116, +234,212, 9,167, 47,220,192,201,223, 46, 65,163,138,195,204, 55, 39,161, 93,187,118, 56,125,250,116,157,175, 89,112,112, 48, 78, + 69, 68, 34,242,218, 45, 36,199,223,198,219, 51,223, 68, 80, 80, 16, 78,157,226,107, 47, 88,193, 9, 84,174,155,117,226,113,163, + 21, 18, 22, 22, 86,150,245, 63, 97, 95, 91,187, 33, 88,236, 36,221,181,116,112,139, 64,241,128,165,160,196, 54, 56,216,234, 84, +143, 15,191,248, 46, 86,232,158, 60,225,110, 86,237,173,195, 42,253,105,178, 16, 77,174,196,238,189,117,175,245,171, 47,117,245, +193,214,159, 21, 31, 3,192,184, 94,126,248,243,126, 54,174,196,103,237,141,201, 70,116,125,143,186,173, 59, 20,108, 14,246,174, +122,103,120, 72,147,198, 30,216,118, 52, 18, 20,133, 35, 22, 61,112, 9, 33, 93,219, 52,193,186,157,143,183, 48,244,240, 93,125, +192, 16,123, 38,186,104, 48, 0, 12,104,173,248,181,115, 11,103, 95, 82,177,226, 86, 21,216, 72, 69,211, 7,143,154, 40,103,226, +127, 6,146, 34, 64, 49, 70,232,205, 28,212, 57, 69,208, 57,250,224, 92,212, 45,125,161,193,244,110, 76,118,221,162,120,247,114, +144, 40,185,122, 43,165, 88,171,247, 84, 40, 91, 24,132, 2,142, 43, 54, 18,252, 25,147,164,137,201, 64,156, 37, 26,137,137, 48, + 61,239,205,244,218,180,227,192, 18,177, 68, 58, 78, 72,129,114,119,178, 85,110, 90,243, 41,236,237,237,192,153,138, 1,109, 54, + 70,190,245, 69,246, 93, 21,237, 7, 0,173, 92, 97,215,203, 79,188, 67, 36,160,210,206, 38,152, 63,170,109, 31, 20,141, 25, 19, + 6,118, 16,115, 38, 45,222, 89,181, 31,155,223, 31,142,137, 47, 4,138, 79,252, 17, 63, 3,192,242,186, 94,107,194, 50, 32,180, + 30,221, 62,184, 16, 75, 1,145, 4,232,121,237,192,103,173,129, 27, 22,107,116, 4,196,172,136, 10,108,239,107, 43,225,210,254, + 0,151,246, 7, 17,250,244, 0,229,219,155,162, 60, 58,145,111,191, 92,166,221,186,117,219, 25, 78,128, 79, 44,232, 42, 3, 44, + 7,228,196, 71,194,100, 50,129,102, 1,131,193, 0,173, 86, 11,219,132, 83,229,117,180, 36, 98,106,208,156,215,134, 5,147, 98, +149,238,151, 88, 38,101,219,155,173,187,145, 98,149,238,114, 10, 27,159,163, 53,242,209, 44,158,167,145, 68,149, 74, 53,104,200, +144, 33,191,157, 62,125,218,165,109,219,182, 0,128,107,215,174,149,188,116,118,234, 4,127,127,127,100,102,102,226,229,151, 95, +206, 81,171,213,131, 80, 75,157,223,162,162,162,135,135, 14, 29,106,164,213,106, 59,124,244,209, 71, 89, 77,154, 52,209, 24, 12, + 6,170,160,160,128, 99, 24, 6,206,206,206,210, 14, 29, 58,160,123,247,238,197, 81, 81, 81, 77, 83, 83, 83,139, 0, 36,213, 37, +241,195,135, 15,199,133, 11, 37,141,246, 26,162, 95, 45,137, 68,130,182,109,219,122, 39, 38, 38,166,151, 62, 91,172,206,227, 43, + 62, 94,110,221,186,133,243, 55,210, 32, 50,233, 33,205, 86,225,242,209, 67, 24, 54,125, 22, 24,166,238, 99,203,223,186,117, 11, +199, 34, 46,195, 86, 38, 66, 92, 92, 52, 14, 29, 58,132,153, 51,103,214, 75,179,142,212,232, 69,254,227,168, 81, 77, 61, 45, 17, + 0,132,134,134,158, 47,139, 86, 84,164,121,115, 72,101,197, 88, 58,160,163,247,194,113, 61, 91, 8,105,141, 10, 28,203, 65, 40, + 6,220,221, 28,176,107,215, 94,191,189,251,247, 71,125,191,225,251,111, 56,134,249,240,110, 22,116, 86, 36,106,233,154,253,145, +227,118,205, 11, 17,205, 28,220,218, 5, 0, 36, 34, 1,214,255, 28,205, 0, 88, 90,159,163,125,222, 27,242, 98, 26,211,220, 93, + 29, 63, 94,252,198, 80,151,144, 78,254, 56,127,229, 46,190, 57, 20,117, 65,154,133,157, 22,223,220, 28,141,199,253, 83, 85,173, + 14,193,213, 94,239,146,101,137,135,196,214, 25,230,164,179,128,217, 0,131,209,140,212, 92, 22,169,121, 6,136, 20, 18, 92,139, + 79,211,187,102, 32,172, 30,135, 77,217, 42,228, 94, 75, 62, 95,221,216,160, 47,102, 52,249, 57,140, 68,122, 89,172,176,145,169, +173,169,170,112, 57, 29,134,222,205,196,207, 1,156, 80, 42, 39,186, 15,222,123,205, 54, 61,230, 52, 90, 10, 84,160, 8,129, 77, +224, 80,216,219, 8, 37, 61,155,138, 83, 0,192,214, 86, 33, 93,245,201,124,199,119,223,255,164,214, 58, 96,129,128,196,191,185, +199,187,109,155, 56,227,194,245, 88, 92,184,147, 28,125,225, 90, 92, 80,223,118, 94,240,111,236, 52, 71,154, 95,176,242, 30,172, +143,144,150, 92, 24, 6,160, 13,229,173, 14, 3,221,241, 74,231,113, 31, 85,215,218,176, 74,154, 1, 92, 60, 75, 64, 9,133, 0, + 37, 40,105, 1,153,250, 7, 68, 78,205,201,222, 3,199,116,219,182,237,252,244, 94,142,229,141, 51,104, 22,172, 70,163,129,173, +173, 45, 78,197, 51,198,137, 3, 37, 50,129, 64,128,212,248, 27,127, 85,134,119, 17,180,145,244,253,172,245, 31,203, 58,159,182, +151, 82, 50,175,161,159, 4, 50,119,118,166,213,245, 33,193,195,243, 95,160,176,176,240,246,189,123,247, 6,182,111,223,126,251, + 59,239,188, 99, 63, 97,194, 4,175, 55,223,124, 83, 0, 0,153,153,153,220,186,117,235, 84,223,126,251,109, 97, 78, 78,206, 20, +154,166, 45,233,202,132,168,213,234, 75, 63,252,240, 67,246,197,139, 23,131,186,116,233, 34,123,238,185,231, 56,103,103,103,145, + 76, 38, 99, 77, 38,147, 33, 62, 62,158, 77, 76, 76,244, 44, 40, 40,120, 0, 32, 1,117, 24,177,162, 52,122,181, 92, 40, 20, 46, + 33,132,180,109,136, 58, 90, 10,133,194, 11,192, 3,138,162, 90, 90, 91,108,248,196, 3, 91, 36, 66,126,126, 62,116, 25,209,144, +167,221, 71,123, 91, 1,218, 56,219,193,193,193,161, 94,166,168,176,176, 16,208,166, 35, 50,242, 22,192, 48,112,116,116,132,163, +163,227, 63,110,180,170,243, 34, 79, 9,211,170, 88, 86,115, 29,173, 54, 74,204,180, 49, 97,221,244,161, 45, 36,205,124, 27,195, +152,118, 13,183, 82,139,241,225,243, 93, 98,132, 50,123,195,244, 73,195, 59,141, 26,211, 20, 33,221, 59, 83,205, 60, 29,231,172, + 92,179,241,173, 54,200,153, 31,147,133,245,150,164, 40, 38, 27, 15, 57,100,109, 59,123, 59,109, 70, 99,133, 30, 28, 71,112,246, +142, 26,119,146,242,183,197,102,227,161, 53, 71,215,198, 19,253, 69, 16,236, 39,132,200, 29,109,109,139,218,248, 55,118,235,223, + 45, 88, 48,168, 79, 39, 72,132, 64,228,159,183, 48,119,205,145,203, 28, 71,134,222,176,176,216,176,164,133, 97,101, 3, 85,210, +194,144,174,212,194,144, 16, 66, 74, 90, 29,214, 28,124, 16, 10,169, 12, 93,242, 85, 15,177,107, 43,232, 19,206, 34, 41,159, 67, +114, 86, 17, 52, 34, 15, 24,211,211, 1,194,165,156,175,185, 98,117,141,184,185,185,185,251,181,241,111,241,221,142, 67, 48,235, + 10,241,240,220,118, 20,231,171,241,217,166,159, 91,120,123,187,246, 73, 79, 79, 63,111, 69,102,227,255, 91,216, 94,119, 16, 64, + 40,150,225,196,247, 7,144,227,106, 3, 55,133, 4,156, 62, 27,211,223,157,224, 56,120,192, 4, 71, 0, 72,142,187,137, 38, 10, +189, 69,186,102, 87,140, 26,215, 55,192, 9,180, 30, 59, 78,221, 52, 8,128, 65, 59,207, 68, 39,244,109,237, 36, 31,215,179,137, +243,114, 85,193,104,228,214,173, 83,209,178,136, 86,121,132,175, 14,173, 13, 15, 1,108,107, 14, 9,251, 47,101,217,142, 25,240, +156, 66, 34,162, 40, 82,156, 14, 98,227,134,141, 59, 14, 22, 75,105,235, 70, 98,231,128,229, 93, 87, 60, 92, 82,114,159, 96,251, +224, 21,215,222, 8,255,248,121,101, 70, 70, 6,204,165,101,135, 15,243,184,223, 39, 13,104,195,166, 21,114,166, 51, 43, 71,142, +161,108,148,210, 5, 95,237, 60, 71, 0,190, 55,105,158,167, 26,189, 94,127, 93,175,215,183, 91,176, 96,193, 43, 31,124,240, 65, +111, 91, 91, 91, 63, 0,208,106,181, 15,105,154,190, 80,250,255,180,166,117, 32, 1,240, 32, 33, 33,225, 97, 66, 66, 66,163,221, +187,119, 59, 1,144,151,254,102, 0, 80, 0, 32, 19,245,104,113, 88,102,170, 40,138, 90,210, 80,231,161,204, 84, 81, 20,213,178, + 46,219, 11, 4, 2,150,162, 40, 80, 20, 5,153, 76,134,139, 23, 47, 98,236,208, 1,184,119,162, 0,109,157,236,208,101,202,116, +236, 15, 15,135, 80, 40, 4, 69, 81, 16, 10,133, 86, 61, 71, 68, 34, 17, 34, 35, 35, 49,241,229, 49,144,137, 0, 71, 71, 71, 44, + 88,176, 0,199,143, 31,135, 72,196,143,210,103, 5, 91, 42, 24, 46, 11,251,209,162,176, 60,124,251, 23, 18,176, 52,126,217,254, + 53,194,238, 22,155,226,178,241, 97, 64, 54,214, 29, 66, 17,151,189,102,231,140,240,200,187, 95, 77, 29, 31,170,232,215,119, 0, +250,133,244, 21, 5,117,238,243, 49, 80,201,104,245, 71, 13,125,109,176, 28, 62,221,114, 42,118,250,254,115,241, 20,204, 69, 24, +255, 98,103,194,114,248,180,150,131,121, 66,211,209,198,110,127,100, 84,148, 51,204,197, 72,186,249,187,188,169, 95, 11,128, 53, +227,193,131,251,248,118,199, 81,238,220,159,113,187, 76, 12,222, 73,204,135,214, 82,205,146, 39, 37, 3, 71, 91,105,192,160, 32, +135, 95, 57, 16, 56, 41, 36,173, 9,199,194, 73, 33,110, 61,160,181,226, 87, 66, 8,177,183, 17,183, 38, 44, 93,171,166,222,196, +108,222,241,227,182,213,175,191,254,186,109, 78, 90, 6, 84,154,187, 40,150,122,131, 86,248, 32,225,230, 5,189,206,200, 88,242, + 16,175,246,124,230,228,228,100, 93,191,146,135,253,155, 86,128, 54, 25,145,149, 86,226, 85, 85, 57, 26, 56,184,121, 71,165,167, +167, 91,172,105,102,184,194, 81, 19,166, 73,108,236, 97, 51,113, 84,168, 52, 33,215,136,142, 94,246, 37,153, 70,113, 54,238, 69, + 68, 34,164,180,142,105, 98,170, 0, 77,130,189, 44, 74,167,189, 92,242,206,224,231,188,241, 48, 69,141,139,209,233, 59, 30,230, + 65,197,198,170,119, 36,168, 10,102, 12,127,222, 23,107,143,199,188, 13,208,123,173, 57,246, 64,119,188, 66, 8,122,150, 84,134, +215,131, 0, 61, 3,221,241,138,133, 45, 13,159,208, 20, 73,240,234,234, 95,147, 63, 58,120, 53,103,248,194, 87,123, 57,116,239, + 62, 68, 10,198,132, 34,189,145,190, 87, 0,141, 53,154, 26, 61,183, 25,192,230,178, 31,174,167,113,187,122, 45,141,186,176,247, + 77, 31,101,153, 87,191,144, 96,140, 2, 16, 53,181,171,205,199,146,190,159, 5, 68, 45,239,122,250,142,154,219,125, 33,161,188, + 15,173, 90,255, 71,117,132,215,228, 53,255, 9, 77, 22,192, 46,154,166,119, 21, 20, 20, 52,164,166, 10, 79,246,235, 84,175, 99, +175, 88, 76, 72, 8, 17,149, 70,179,106,171, 12, 95,163,102,197, 98, 66, 66,200,201,210,104, 86,109, 81,173, 74,154, 28,199,169, + 58,117,234,228, 50,108,216, 48,176, 44,139,251,247,239, 35, 57, 53, 21,253,103,188, 13, 39, 39, 39, 92,184,125, 27,113,113,113, + 88,178,100, 9,104,154,198,177, 99,199,210,106,211, 20,137, 68,230, 22, 45, 90, 72, 70,140, 24, 1,134, 97,144,152,152,136,244, +244,116,204,157, 59, 23,142,142,142,184,126,253,122,185,102, 78, 78, 14, 68, 34,145,185,138,232,214,223,113, 47, 61,237, 60, 97, +178,106, 54, 90, 0, 11,150, 70, 97,248, 82,172,191, 8,179,153, 70,235,152,108, 60,138,249, 43, 34,181, 81,120,229,246, 47,183, +239,198, 62,188,254, 71, 63, 41,178,238,192,218, 55,137,251,185, 80,219,203,139,138, 96, 46,114, 64,226,175,120,148, 89, 84,124, + 63, 23,106,171,223, 24, 56,150,130, 89, 7,168,175,225,210,133,243, 56,119,249, 22,174,222,137,101, 47, 93,143,223, 47,224,240, +233,189, 92,220,175,195, 91, 8,236,134,174,197,107,119, 30,248,118,246,111,228, 11,150, 1,225,104, 56,142,223,139, 41, 49,221, +125, 59, 55,119,242, 45,137,100,209,112,126,227,119, 96,181,188, 70,189,107,169,244, 22,233,241,211,163,139, 10,114,159,127,161, + 79, 55, 91,199,192,193,200,121, 16,143,251,183, 34,245,215,239, 38, 92,186,150, 74,111,169,207,213,245,246,246,238,253, 66,159, + 0,140,159,190, 24,102, 93, 33, 18,207,253,136,226,188, 12, 92,140,178, 67,172, 70,211, 13,128,197, 17,173,168, 20, 38, 8, 41, +249,232,209, 84,156, 98, 15,163,199,164,208, 97,144, 81, 6,112, 70, 13, 40, 93, 14, 18,210, 77,133,163, 55,165,178, 0,160,144, + 81, 34, 91, 82,232, 96, 81,228,177,137,107, 43,133,144,198,206,240,104,112, 92,201,240, 77, 28,135,141, 59,127, 79,152,241,233, +196,142,104,227,235, 28,124, 51, 61,139,130, 21, 33,127,138,160,215,213,253,159,180, 54,252,246, 49,192,153, 17, 57,199,165,117, +175,245,121,189, 80,199,225,118,238,170,144, 14, 96, 6, 68,186,205,115,214,159,250,184, 83,120, 76,207,121,111, 12,119, 0,105, +144, 22,186,241, 49, 25,108,239,174, 43,147, 79,115,164,114,121,110, 73,100, 43,144,168, 52,228,230,133, 4, 35,223, 43, 60, 15, + 15, 15, 0,160,184,184,120,250,148, 41, 83, 54,139,197, 98, 37, 0,138,227, 56,112, 28, 39,250,234,171,175,196, 44,203, 10, 4, + 2, 1, 43, 20, 10,153,147, 39, 79,210, 44,203,102, 27, 12,134,233,181,105, 50, 12,147, 48,107,214,172, 22,181,181, 80,220,183, +111, 95,153,201, 74,224,175,132, 69, 38,171,226,188, 60,202, 37,170, 33, 72,251, 73,143,137, 75,151, 2,160, 64,176, 44, 38, 27, +143, 30, 95,229, 78, 30, 84,109,132,230,185, 65,157,251, 44, 45,219,198,218,148, 25, 88,118, 76,231,118,254,251, 0,192, 72,216, +137,117, 57, 58,141, 81, 63,174, 67,231,110,251, 57, 66, 68, 12, 33,219, 4, 28, 14, 27, 24,220,179,164,165, 93,117,168,178, 10, +174, 15,110,235, 72,128,146, 34,195,242,226,194,210,110, 28, 8, 33,164,188,184,240,107, 57,114, 10,141,181,246, 3,245,199, 35, +211, 0, 19,115,117,218,153, 63,110, 78,103, 89,226, 33, 20, 82, 25,122, 19,179,185,190, 38, 11, 0,210,211,211,207, 71,132,167, +159,185, 29,220,232, 69, 55, 69,105,148, 75, 7,228,232,112, 38, 61,187,248,124, 93, 52,243,181,244,240, 15,214, 29,255, 89, 42, + 22,138, 64, 72, 73,135,162,132,192, 96,102,243,162, 82,152, 32, 0,104,231, 2,175, 5,199,152,125, 66, 33,149, 92,155,222,149, + 56,245,218,241, 43, 35,230, 71, 39,229,111, 75, 42,192, 93, 0, 72, 42,192,221, 3,145,143, 62, 78,200, 40,154,127, 55, 57,255, +107, 88, 89,175,130, 80,184,216,121,252,210, 39,150,213,247,124,198,170,113, 11,192, 72, 32,109,192,248,121,223,206,163, 40, 52, +212,240, 19,241,122, 51,105,242,248,194,178,200, 22,159, 87,241,240,252, 55, 40,139,106, 9, 4,130,229, 13,168,121,146,162,168, + 33, 0, 30, 88,177,217,149,226,226,226,118, 13,124,120,185, 12,195,228, 90,178,226,191, 80, 33,254,105,101,203,191,181,227,254, +188,230, 63,175,217,178,101, 75, 98,133, 97,225,207, 39,175,201,107,242,154,255, 87,154,132, 16, 97,125,166,106, 52,169,250, 76, +252, 53,122,234,153, 86,221,119,190,166,219, 51,200,131, 7, 15, 40,254, 44,240,240,240,240, 84, 13, 69, 81,236,223,160,201,247, +142,199, 83,102,176, 42, 69,183, 4,252, 57,225,225,225,225,225,225,225,225,105, 16,147, 85,113, 94, 98,194, 81,125,248,207,154, +214, 4,117, 9, 33, 70,240,154,188, 38,175,201,107,242,154,188, 38,175,249,127,167, 89,155, 54,223,154,241,111, 54, 96,188, 38, +175,201,107,242,154,188, 38,175,201,107,254,255,105, 62,205, 84, 91, 71,139, 47, 58,228,225,225,225,225,225,225,225,249,155,224, + 43,195,243,240,240,240,240,240,240,240,212,143, 90, 7,149,230,225,225,225,225,225,225,225,225,169, 27, 53, 15, 42,205,195,195, +195,195,195,195,195,195, 83,103,172, 31, 84,154,135,135,135,135,135,135,135,135,199, 34,182,240,167,128,135,135,135,135,135,135, +135,231,159,161,114,171,195,176,176, 48, 82,113,206,195,195,195,195,195,195,195,243, 79,242,172,122, 17,190,232,144,135,135,135, +135,135,135,135,167,126, 76,227,141, 22, 15, 15, 15, 15, 15, 15, 15,207,223, 67,181,117,180,202, 58, 44, 13, 41, 13,213,133,240, +231,138,135,135,135,135,135,135,231, 95,224,217,246, 34,124,253, 44, 30, 30, 30, 30, 30, 30, 30,222,139,240,240,240,240,240,240, +240,240,240,252,151,224,199, 58,228,225,225,225,225,225,225,225,249,135, 13,215,223,110,180,248,145,205,121, 77, 94,147,215,228, + 53,121, 77, 94,147,215,252,127, 50, 89,149,204, 22,223,234,144,135,135,135,135,135,135,135,167,126,212,218,234,144,135,135,135, +135,135,135,135,135,167,110, 76, 3, 16, 90,250, 57, 20, 21,162, 90,124, 68,139,135,135,135,135,135,135,135,167,126,108, 1,224, + 89,106,176, 78, 0, 80,243, 70,139,135,135,135,135,135,135,135,167, 97,168, 88, 47,107,104, 5,243,197, 27, 45, 30, 30, 30, 30, + 30, 30, 30,158,122, 82,109, 29, 45, 10,213,183, 28,136,176, 98, 7,117,105,125, 16,193,107,242,154,188, 38,175,201,107,242,154, +188,230,255,157,102,109,218, 17,120,250,152,102,141,249,106, 72,248,166,175,188, 38,175,201,107,242,154,188, 38,175,201,107,254, +223,210,224,173, 14, 59, 2, 54,252,105,125, 38,105, 84, 58,241,240,240,240,240,240,240,212,204,223,211,234, 48, 16,120, 99, 66, + 91,229, 38,250,110,182,195, 93, 64, 87,211,186, 74,165,114,179, 66,161,152,160,211,233,180, 20, 69,113,101,203, 9, 33, 0, 80, +113,172,163,196,236,236,236, 94,181,237, 91, 42,149,174,107,212,168,209, 27,197,197,197, 58,138,162, 8, 69, 81,160, 40, 10, 0, +158,152,179, 44,155,150,155,155,219,233,169,190,132,132, 8,221, 26, 53,250, 83, 44, 20,122, 91,187, 41,203,113,143,178, 50, 51, +187, 89,177,201, 10,138,194,194,146,221,226, 75, 0,139,159,181,127, 4, 1,132,150,172,215, 22,176,143, 7,198,179, 2,193,219, + 98, 96,131,145,227, 54, 1, 0, 5,176,117,221,183,241, 10, 90, 80, 4,193, 20, 5, 71, 66, 80, 72, 40,220,146,117, 69,194,191, +116, 42, 70,137,197,226,225, 14, 14, 14,118,185,185,185,231, 1,236, 3,240,178,171,171,107, 31,141, 70, 83, 76,211,244,113, 0, + 71,234, 34,220, 43, 24,239, 75, 37,226,169, 6, 51,189,234,143, 91,248,177, 79, 71,184, 50, 28, 86,202, 37,162, 94, 70, 19,243, +101,228,109,108,179, 82,146, 42,157,202,242, 12,171,199, 72, 59,104,225,117, 7,128, 99,206,206,254, 50,165,195,111, 98,169,240, + 81, 65,102,241,132, 49, 89, 89,169, 99,235,113,221,255,139,184,185,185,189, 38, 16, 8, 62, 39,132,128,101,217, 15,243,242,242, +182, 55,144,244,135, 0,156, 74, 63, 23, 0,248,188,158,122,201, 0,124, 75, 63,167, 0,104,194, 63,215,235,204,198,163, 71,143, +206,232,219,183, 47,214,174, 93,139,141, 27, 55, 38,101,103,103,175, 4,176, 3,128,233, 95,208,225,169,142, 54,192,144,175, 6, +118,101,233,159, 62,229, 42, 44,238, 95,205,159,249,135, 73,147, 38,153, 9, 33, 36, 46, 46,142,152, 76, 38, 66,211, 52, 97, 24, +134, 48, 12, 67,104,154, 46,159,188,189,189,211, 31,219,252, 9, 77,129, 64,176,126,244,232,209, 69,132, 16,114,237,218, 53,162, +215,235,137,209,104, 36, 38,147,137, 24, 12, 6,162,215,235, 43, 77,141, 26, 53,202,172, 73,211,193,193,225,154,179,179,115,166, +179,179,115,166,139,139, 75,166,139,139, 75,166,171,171,107,249,228,230,230, 86, 62, 41,149,202, 76,165, 82,153,233,226,226,114, +173,182,116,150, 50, 16,192,121, 11,166,129, 85,108,219,191,162,209,242,244,244,204, 36,117,160,113,227,198,169, 22,164,179,140, + 70, 20, 5,182,108, 91,138, 2, 39,147,201,124, 43,254,142, 39, 35, 93,181,134,148,189,188,188, 70,123,122,122, 70,120,122,122, +134,123,121,121,141,182,224, 22,171,164,105,111,111,127,205,205,205, 45,211,195,195, 35,171,108,242,244,244,172, 52,121,121,121, +149, 79,141, 26, 53,202,116,118,118,174,246, 26, 17, 64, 88,221,116, 14, 16,201,128,126, 34,161, 48,172, 81,163, 70,154, 59,119, +238,176,132, 16, 34, 16, 8,210,203,214,177,230,216, 31, 55, 89,186, 72,124,152,115, 86,118,165,248,209,202,194,156,179,178, 43, +186, 72,124,104,188,130, 22,117,213,180,144,170, 52, 39, 79,158, 60,249, 86,102,102,102,122, 65, 65,129,122,211,166, 77,241,114, +185, 60,114,211,166, 77,241, 5, 5, 5,234,204,204,204,244,201,147, 39,223, 2, 48,203, 10, 77, 0, 64,183, 96, 60,255,250, 40, + 79,221,173, 99, 19,117,253, 58,139,110,246,104,139,208, 1,221, 36,233,223, 45, 10,212, 93,216,218, 83,215,247, 57,193, 93, 43, + 53, 41,145, 72,212,221,215,215,119,170, 82,169,156, 84, 58, 77, 44,155, 60, 60, 60, 38,122,120,120, 76,116,118,118, 30, 91,147, +230, 65, 64,104,201,228, 35,151,119, 31,235,231,171, 75, 94,190,140,220,121,247,109, 50,181,185,143,102,140,187,123,211,127,225, + 26,253,173,154,238,238,238, 42,154,166,137,217,108, 38,174,174,174,170, 6, 76,231,215,132,144,175, 9, 33, 95, 3,248,186, 1, + 52,203,243, 51, 43, 12,118, 77,154,114,145, 64, 48, 79, 33,149,134,203, 68,162, 44,153, 72,148,165,144, 74,195, 69, 2,193,124, + 0,242,255,210, 53,250, 27, 52,237,148, 74,229,195,117,235,214, 17,157, 78, 71,116, 58, 29, 89,183,110, 29, 81, 42,149, 15, 1, +216, 89,161, 89, 87,157,103, 41,130,245,248,212,112, 17,173, 64,160, 83,191,224,150,135,231,188, 54, 30,220,161,117, 84, 45,111, + 76, 63,116,235,212,105,234,142, 29, 59, 0, 0, 19,134, 15,199,139, 93,186,192,222,206, 22, 82,105, 73,114, 40, 66, 65, 34,150, + 96,196,220,247, 44,217,253,151, 35, 70,140,120,245,208,161, 67,118, 0,176,113,227, 70,140, 26, 53, 10, 46, 46, 46, 80, 40, 20, +144, 72, 36, 16,139,197,149,230,181, 33, 20, 10, 27,167,167,167,187,203,229,242,242, 40, 27,199,113,149, 38, 66, 72, 89,244, 13, + 12,195,160, 85,171, 86,150,158,174, 69,133,133,133,189,181, 90,109,185, 70, 85,147,159,159, 31, 0,156,182, 68,240,243,207, 62, + 5,199,104, 33, 18, 1, 12, 3, 24,205, 2,112,164, 74,115,131, 89,179,102,149,167,187, 46, 12, 29, 26, 74, 81, 20,117,232,250, +245,235,135,179,178,178,154,113, 28,251,102, 29, 35, 93,111,221,191,127,223, 14, 0,252,253,253,103, 1, 56,108, 77, 58, 68, 34, + 81,227,219,183,111,187,203,100,178,106, 35,151, 21, 34,152, 48,155,205,232,216,177, 35, 99,205, 62, 26, 1,190,121, 2,193,155, + 29,158,123,110,218,210, 17, 35,228,127,254,249,167, 92, 32, 16,128, 97, 24,124,245,213, 87, 12, 33,196,169, 13,224, 16, 3,104, +106,144,249, 0,192,107,165, 15,131,109, 0,190,170,228, 22, 8,130,245,180, 44, 52,177,120, 68,151,174, 77,223, 71, 76,244,157, + 46,205,237,142,193, 94,100, 76, 0,254,217,168,150,131,131,195,240,181,107,215, 42,183,109,219,166,137,139,139, 51,111,218,180, + 73, 57,125,250,116,123,179,217,140, 25, 51,102,100, 7, 4, 4, 72,214,174, 93,171, 60,114,228, 72, 63,173, 86,251,189, 85,215, +139,194,167, 47, 15,127, 17, 6, 90, 0,154,102,148,158, 74,251, 93,115, 38,135,136, 9, 49, 97,231,241,235,160, 25,238, 71, 43, + 35, 89,221,198,140, 25,211,124,239,222,189,162,216,216, 88, 81,235,214,173,193,113, 28, 88,150, 5, 77,211, 0, 0,142,227,208, +178,101,203,122,159,151,169,128,191, 91, 35,151,240,110, 67, 6,219,120,202,101,112,201,207,198,235, 18,145,253,118,133,113, 55, +128,238,207, 84,100,151, 16,136, 68, 34,164,166,166,194,221,221,221,134,227, 56, 53,128,101,249,249,249, 91,240,236,210, 69, 42, + 18, 29,222,249,227,122,143,174,221,187, 11, 27,121,186, 35,254,126, 10, 68, 20,219,255,246,213,235, 33, 83,103,206,155, 99, 98, +152,209, 0,254,124,214, 14,220,163,251,172,145,148, 64,184,145, 34, 28, 62,249,238,231,162, 21, 95,174, 83,204,120,115,178,112, +238,220,185,240,241,241,105, 54,114,228,200, 47, 1,204,172, 85,167,235,172,145, 16, 10, 54,130, 16, 44,253,246,231,162, 47,190, + 92,167,152, 89, 7,157,167,156,106,255, 35,245, 54, 90,129, 64,243, 32, 31,247, 51, 43, 22,206, 20,147, 95,127, 18,232,114,179, +170, 93, 87,169, 84,110, 30, 52,104,208,132,237,219,255,138, 70,119,107,219, 22, 35,251,245,132,187,171, 35, 20,182,210,146,199, + 17, 71,225, 86,220, 35,139, 12,129,143,143,207,140,195,135, 15,219, 85, 52, 19, 18,137,164,124,170,104,178,202,166,178, 7,112, + 77,200,229,114, 68, 68, 68, 64, 36, 18, 65, 40, 20, 66, 36, 18,149, 79, 21,191, 11,133, 66, 52,106,100, 85,213,165,149,142,142, +142,237,139,138,138, 28, 10, 10, 10,224,235,235,171, 1,112,187,194,239,237,179,179,179, 29,172, 17,228, 24, 45,230,190, 30, 8, +177,233, 50, 76,226, 46,208,139,122,224,210,213,123, 8, 59,125, 30,233,170, 12,244,124,190, 3, 38,189, 50, 6,225,225,225, 96, + 89,171, 75, 58, 50, 9,193,151,195,134,133,190, 15, 80, 84,255,254,253, 11,102,207,158, 45,136,141,141,125,117,228,200, 17,109, +239,223,127, 80, 26, 85,164, 22, 18,130,245, 0, 50, 45,212,149, 2,192,133, 11, 23, 0, 64, 86,151,123, 79, 38,147, 33, 42, 42, + 10,101,197,196, 2,129, 0, 2,129, 0, 66,161, 16,191, 60,112,131,214, 36,128, 46,243, 46,222, 14,245,133,159,159, 31, 4,130, +218,171, 36,134, 0,242, 75,192, 72, 74, 44,158,235,233,229,213,172, 79,243,230,138,136,136, 8, 33, 0, 52,105,210,132,168,213, +234,130,227,199,143, 23,137,128,141, 77, 8,217, 81,147,201,242,241,241,233,145,158,158,254,121,217, 57,167, 40,234,203,166, 77, +155, 46, 41,191,110, 28,135,101, 63,106,197,115,230,188, 43,233, 26,242, 17, 0,160,235,176,189,208, 36,174, 8,164,242, 62,112, +252,167,115, 9,141, 70,179,191,101,203,150,194,220,220,220, 75, 0,146,105,154, 94,180,107,215, 46,247,215, 95,127, 61,107,247, +238,221, 43, 1,120,173, 90,181, 42, 68,171,213, 30,176, 70,183,103,123, 12,121,174,125,219,231,125,125,124,112,254,210,159,144, + 72,197, 78,179, 94, 11,133,157,157, 8, 95,111, 59,193, 37,167,229,205,142,188,141, 29, 86,152,172, 46, 99,198,140,105,182,119, +239, 94, 41, 0,220,190,125, 27, 25, 25, 25, 80, 42,149,176,177,177,129, 88, 44,134, 80, 40,132, 88, 44,110, 16,147,229,232,227, +122,229,216,177,227, 54, 46, 46, 78,248,238,189, 57,152,148,149, 9, 39,123, 59,208,197,218,102,207,216,131,194,191, 87,175, 94, +114,150,101,161,213,106,113,238,220, 57, 71, 27, 27, 27,199,198,141, 27, 47,133, 21,173,167,228,114,121,166,193, 96,112, 47,253, +156,101, 48, 24, 26, 1,208,200,100,178,178,124,186,184,116,110,105,113, 98, 50,158, 44, 38, 76,161, 40,170,226,178,186,210,185, + 75,231,246, 17, 71, 14,237,177, 43, 44,202,128,147,115, 22, 4, 40,196,150, 45, 27, 96, 99,227,128,165, 75, 63, 16, 61,234,223, +207,123,224,144,209, 17,209,247,226,251, 63,115,102,139, 80, 91,250, 15,155,224, 98,163,176, 47,125,150,208,216,190,117, 14, 4, + 2, 1,150, 44, 89,130,160,160,160,105,209,209,209, 31, 1,200,171, 89, 6, 91,218,245, 30,231, 34,149,151, 92, 98,142,165,177, +105,223,252, 18,157,197,211,241,242, 48,191,105, 11,198, 60, 60, 21,212, 28, 69,165, 47,230,122,177, 0, 41, 84, 87,148, 27,134, +176,176,176, 62,161,161,161,231,171,251,254, 20,224,137,191,250,207,170,100,190, 68, 97, 97, 97, 36, 52, 52,148,170,112,112,149, +190,215, 68, 48,224,230,236,168,136,216,184,108,142,157,232,242, 9,161, 62,229, 1, 84,134, 74, 15,242, 74, 77, 52, 21, 10,197, +132,237,219,183, 87, 10, 41,249, 54,114,135, 68, 34,134, 88, 66,193,169, 87, 73,239,245, 5, 23,195, 64, 81,213,154,172, 74,154, + 90,173,214,112,243,230, 77,187,109,219,182,193,221,221, 29,205,154, 53,131, 66,161,128, 92, 46,175,100,174, 42, 26,174, 42,140, + 86, 37,205,178,223, 69, 34, 17, 4, 2, 1,194,195,195,193, 48, 12,198,140, 25,243,132,201, 18,137, 68,213, 25,183,234,154,167, +158, 6,112,155, 16,210,187,244, 1,124, 27, 64,159, 10,191, 15, 84, 42,149,139, 0,172,180, 84, 83, 40, 36, 16, 26, 46,129,107, +188, 14,162,212, 57, 48,137,131,113, 54,242, 58,182,111, 94, 11, 0,104,214,186, 51,198,142, 12, 45,143,198, 89,152,206,114,188, +189,189,247,101,103,231, 12,238,215,175, 31,242,243,243,233,101,203,150,161,125,251,246,240,247,247,183,232, 26, 85,243,230,156, +121,251,246,109, 31,189, 94, 15, 66,136, 37,230,236, 9, 77,138,162,176,107,215, 46, 24, 12,134, 39, 86,118,238,243, 5,230,143, +106,130, 41,111,239,192,151,113, 7,240,253,247,223,215,120,236, 10,160,189,193,177,229,122,169,144,105,191,242,131,183,100,147, + 38, 77, 18, 78,153, 50, 5, 41, 41, 41,120,253,245,215, 13,225,225,225,166, 12,181,250,184,148,227,190, 51, 87, 54,198,213,106, +202,100,178,157,167, 79,159,198,129, 3, 37,190, 36, 62, 62, 30,173, 90,181,178,173,100,146,243, 14,162, 40,249, 59, 92,249, 37, + 22, 93,135,237,197,149, 95, 94, 1, 91,112, 66,220,169, 21, 10,173, 57,159,117,160, 42,205, 3,185,185,185,229, 38,106,247,238, +221, 54,187,119,239, 30, 1,224,103, 0, 7, 0, 32, 47, 47,111,141,149,154, 0,133, 41,227, 70,141,128, 72, 98,143,216, 7,105, +232,211,173, 35, 26,185,187,227,246,189, 4, 36,167,231,101, 82, 20, 94, 27,216, 93,186, 82,175, 55,125,116,241, 22,126,168, 69, +147,106,220,184,177,255,193,131, 7, 37, 21, 34,208,229,255,113,161, 80, 88,254,189,204,120,215,229,254, 44, 51, 89,246,141,237, +174,124,186,161,135,237,149, 59,187,209,170,201, 16, 56, 15, 9,197, 15,103,206,224,126,116,140,193,164, 99, 94,248, 23,174,209, +223,165,233, 63,106,212,168, 75,123,246,236,113, 74, 77, 77,197,133, 11, 23,208,172, 89, 51,232,116, 58, 75, 94,120, 43,105, 26, + 12, 6,247,178,109, 40,138,114, 47, 11,188,155, 76,166,178,139, 81,246, 71,116,170,176,158, 83, 13,154,190, 21,214, 43, 51, 87, + 77, 26,224,216,165,114,137,228,224,177, 35,251,236, 98, 98, 47,160, 67,240,243,176,115,108, 3,142,205, 64,110, 94, 49,242, 31, +168,240,217,103, 95, 98,233,178, 15,241,243,209, 67,118, 1,129,193,135, 77, 12,211, 18,128,225,153,185,238, 20,153, 22,241,203, +238,141, 20,225,160,207,140,149,137,181, 15, 21, 19, 94, 25, 45, 28, 63,126, 60,126,254,249,103, 68, 71, 71,111,172,193,100, 69, + 84,136,204, 79,187,123,225,192, 70, 16, 2,125, 86,172, 76,162,127,168,152,252,234, 88,225,164,151, 95,196,229,223,215,227,197, + 14, 15,239,122,185, 99,100,126,169,197, 22, 9,145, 43,147,227, 15,114, 5,151, 43,152,173,115, 0,168, 10, 6,235, 28,254,170, +131,249, 52, 48,180,212, 88, 77,123,252,197, 68, 84, 23,131, 5, 0,173, 0, 59, 74, 42,185,178,125,233, 91, 94,138,148,104,145, +241,110, 20, 84, 70,142,108, 74, 98,184,142,128,205, 13, 64,255,248, 54, 58,157, 78,155,144,144, 96,243,218,200,145,232,222,182, + 45, 60, 93, 93,209,178,113, 99,216,200,164,144, 74,196,149, 94, 89, 45, 46, 67,160, 40, 18, 16, 16,128, 97,195,134, 65, 44, 22, + 67,161, 80,192,206,206, 14, 82,169,180,202,104,150,165,111,185,132, 16, 8,133, 66,220,189,123, 23,201,201,201,112,114,114,194, + 31,127,252,129, 23, 94,120,225,137,168, 86, 69,115,102, 77,136,190,138, 7,127,153, 17, 59,109,141, 22,203, 82, 40, 38,193,144, + 39,205,134,142,234, 8,163,145,129,209,104,196, 15,145,102,252,153,160,133,217,108,130,209,104,172,105,159,213, 33,240,242,242, +154,208,178,101,203, 89,175,188,242, 10, 45,149, 74,161,213,106,161,211,233, 16, 29, 29, 77, 15, 30, 60,164, 96,216,176, 80,199, + 19, 39, 78,144,210,162,195, 76, 43,180,115,189,189,189,125, 74,139,103,115,235,114, 87, 83, 20, 85,110, 98, 30,231,181, 53, 49, + 16, 9, 75,174,201,198,141, 27,193,178, 44, 8, 33,213, 94, 36, 3, 69,253,182,236,139,213,142,171,214,253, 8, 71,151, 70, 56, +127,254, 60,123,234,212,169, 34, 10,136,191, 31, 29,189,230, 37,224,228, 65,192,108, 77,250,242,243,243,109,154, 53,107,134,198, +141, 27,131,227, 56,208, 52, 93, 30,125,201,205,205,133, 94,175,135,139,109, 1, 90,184, 54, 6, 83,116, 14,234,187,159,192,211, + 46, 22, 59, 78,155,232,231,252,113,235, 63,144,113,252, 84, 58,213,243,173, 25,222,238, 30, 62, 16, 16, 26,170,172, 92,140, 24, +250, 34,132, 18, 59, 60, 74,205, 65,112,155,230,158,175,190,212,195, 83, 72, 49, 88,184,114,239, 44,128,251,161, 54,185,226,226, + 98, 54, 54, 54, 22,183,111,151,248, 93, 7, 7, 7,216,218,218, 86,250,143, 11, 4,130,122, 69,180,202, 76,214, 23, 27, 95,176, + 21,136,181,208,176, 17,216,182,235, 58,130, 3, 66,177,233,202, 85, 3,155,153,215,255,107,131, 33,126,223, 83, 28,204,240,240, +240,152,206,113,220, 82, 66, 72, 65,207,158, 61, 27,237,221,187,215, 57, 61, 61, 29,215,175, 95,199,146, 37, 75,178, 89,150,101, + 8, 33, 20, 33,228,147, 6,216, 29, 87,193, 96, 53, 36, 98,133, 28,111,187, 57, 80,195, 69, 2,135,102,140,166,248, 81,142,137, + 28,215, 49,220,183, 0,232, 26, 51, 55,129,224,141, 67,251, 55,122,185, 41, 57,132, 40,251, 65,157,105,198, 23,239, 77, 70,110, +110, 17,126,216,186, 2,128, 20,102, 70,136,222, 33,163,225,238,238,141,105,111, 78,243,216,184,121,211, 91, 12,199,125,141,103, +132,140, 75,223, 31, 5, 16,161, 84, 42,163,223,154, 54, 77,217,172,217, 68,200,229,114,236,219,183, 15,123,191,251,142, 93, 7, +140,149, 1,103,103, 0, 71,107,212,185,242,151,206,156, 25, 51,148,129,129, 51, 32,147,201,240,251,169,159, 96,200,216, 85, 52, +180, 59,204, 58, 3,134, 54, 29, 70, 92,146,126,161,242,196, 98, 60, 0, 0,177, 28,106, 0,143, 23,131, 61,109, 6,171,140, 19, +248,171, 94,214,180, 74, 17,173, 58,231,157, 98,233,157,173,239,190,220,164, 17,140,148, 41,242, 23,164, 27, 57,118,213,125,179, +240, 70, 33,153,127,175, 10,147, 85,122, 99,115,190,190,190,232,215,169, 19, 70,246,234, 5,145, 72, 4,185, 84, 2,123,185, 13, + 8, 91, 18,201, 42, 43, 58,172,225,153,136,170,162, 79,174,174,174,144, 72, 36,229, 6,203,138,104, 86,149,154, 28,199, 65, 36, + 18,225,246,237,219,232,217,179, 39,124,124,124,112,224,192, 1, 12, 28, 56,240,137,162, 68,107, 77, 86,153,209,122,172, 24,111, + 32,128,178, 72,150, 85, 70,203, 96,162,144, 99, 10, 6, 69,181, 5,195, 0, 44, 1,140, 6, 3, 8, 1, 8, 1,104,179, 9, 6, +131,161,124,159,150, 20,201,122,120,120,248,218,216,216, 44,127,255,253,133,129,193,193, 29,144,157,157, 13,142,227, 96,107,107, + 11,157, 78, 7, 7, 7, 7,116,239,222,253,209,242,229,203,213,132, 96,154,149, 38,171,222,148,157,243, 51,103,206, 84, 42, 54, + 44,155,180,234, 52, 76,121,103, 55,164,162,146,162,165,178, 58, 60, 53,229,187,125,123,247,192,165, 27,241,204, 27, 11,215, 27, +197,185,215, 87,122,112,220,246,180,122, 28, 23, 33, 4, 57, 57, 57,200,204,204,196,240, 17, 35,176,119,207, 30, 36, 37, 37,161, + 77,155, 54,232,219,183, 47,220,221,221,145,148,148,132, 63, 47, 26, 97,204,207, 67,158,233, 58, 20,246, 93,113,236,124,130,113, +201, 70,115,194,191,152, 97, 12, 7, 48,217,193,193,193, 79,167,211,169, 25,134, 57, 8,224, 32,128,177, 34,145,104,172, 66,161, +240,212,104, 52, 15, 81,210,154,232,120,109, 98, 54,114,185,171, 76,238, 0,142, 49, 66, 36, 18,193,199,167, 25, 8,107, 66,190, + 70,143,215,198, 15,195,141,219,247,112,234,236,101,134,166,185,111, 44, 57,165,223, 22,203, 0, 0, 32, 0, 73, 68, 65, 84,173, + 66,161,144,248,251,251, 35, 43, 43, 11, 98,177, 24, 54, 54, 54,176,179,179,195,226,197,139,241,221,119,223,149,155,172,186, 26, +173,169,128,191,131,175,221,229,207, 55,148,152,172, 12,149, 26,153,105, 98, 40, 93, 27,225,155,239,214,105,243,147, 50,186,254, + 8,196, 63,237, 15, 89,142,227, 62, 73, 79, 79,119, 23,137, 68, 30, 12,195, 32, 53, 53, 21,215,174, 93,195,236,217,179, 51,115, +115,115, 67, 80,199, 99,148,203,229, 89,101,145,172,210,162,195,234,138, 19, 11, 42, 68,178, 10,106,144,172,174,152,176,121,179, +198,246,225, 91,215,206,245,237,220,181,187, 64, 33,114,200, 47,126,144,209, 51,242,194,249,238,179,215,254,240, 86,114,126,241, +139, 0, 18,171, 19,149,137,197,131,159,239,209, 67, 4,146, 9,145,180, 39,190, 92, 53, 30,217, 57, 26,228,231, 21, 65, 34,177, +133,137, 22,130,229, 40,116,239,217, 11, 63,237,216,143,160, 55, 95, 23, 74,197,226, 1,140,201,244,204, 24,173, 82, 86,124,251, +237,183,190, 1, 1, 1,216,190,125, 59,206,238,220,137, 73,133,133, 56, 47, 16, 8,105,177,216,237, 36, 77,111, 65, 45, 70,171, +162, 78, 80, 80, 16,126,252,241, 71,236,218,181, 43,101,194, 11, 89,135,231, 78,128,187,217,140, 65,215,227,224,210,116, 24,112, + 61, 14, 46,207, 5,160, 37, 35,194, 3,138,170,220, 29, 84, 88, 88, 88,159,138,243,167, 12, 53,170, 41, 98, 23, 1, 8, 9, 11, + 11, 35, 21,231,181,102,156,202, 86, 51, 86,188,232,215,164,109, 11, 95,138, 62,176, 30,169, 90,198,244, 81,156, 89,122,191,152, +204,189, 7,172,171,225, 13,130, 8,133, 66,216,219,216, 64,233,228, 84, 18,230, 23, 8, 0, 14,224,104,128, 98, 75, 12, 0,225, + 40, 16,214,170, 12, 3, 82,169,180,202,138,239,214,214,205,170,168, 89, 84, 84,132, 71,143, 30, 97,218,180,105, 80, 40, 20, 37, +206, 61, 35, 3, 77,154, 52,129, 72, 36, 66,122,122, 58,126,255,253,119,248,249,249, 65, 38,147, 89,229,182, 42, 68,151,218,163, +164,149, 97,123,181, 90,237,224,233,233, 9,171, 35, 90, 28,129,206, 72,193,100, 98,113,255,254,125,168, 84, 42, 60,122,248, 0, +157,181, 26, 16, 8, 65, 8,177, 42,162,229,237,237,221,182,121,243,230,155, 86,174, 92, 41,105,220,184, 49, 8, 33,112,118,118, +130, 78,167, 67, 78, 78, 46,218,180,105, 3, 31, 31, 31,172, 92,185, 18, 0,246,254,211, 38,235,177,123,170,220,104, 85, 52, 92, +239,188,228,139,188, 60, 59, 8,133,130,114,227, 92, 75, 29, 45, 9, 0,132,188, 56, 74, 20,126,234,164, 45, 3, 44,207, 16, 10, +151,139,106,191,142, 52,203,113,138,234,126, 79, 77, 77,133, 88, 44,198,161,131, 7,145,151,153,137,224,224, 96,116,233,210, 5, + 15, 30, 60,192,141, 27, 55,224,234,234, 10,101,227,110, 56,255,208,140, 24,149, 30,142,142,142, 72, 72, 19,252,155, 93, 6,188, +217,191,127,255, 37,107,214,172,113,247,240,240, 16,103,103,103, 7,108,216,176, 33,120,195,134, 13,115,222,122,235,173, 70,111, +189,245,150,179, 82,169, 20,101,100,100,248,191,247,222,123,207, 69, 68, 68,248, 1, 88, 93,147,160,173,173,189,139, 80, 98, 11, +138, 18,193,201,209, 25, 34,169, 45, 56, 70, 4,150, 3, 28, 28,149,184,116,227, 16,254,184, 83, 52, 61, 43, 23, 7, 45,138,143, +149, 94,119, 87, 87,215, 39, 34,213,179,103,207,198,214,173, 91,203,139, 17,235,106,178,190,216,240,130, 29, 85,106,178, 50, 82, + 69,160,140,126,248,229,104, 84, 65,126, 82, 70,207,103,193,100,149,229,113,132, 16, 60,124,248, 16, 58,157, 14, 23, 47, 94,196, + 39,159,124,146,253,184,201,114,119,119,127,211,193,193, 97, 89,113,113,241,151, 25, 25, 25,235,107,125,241, 43, 49, 81,101,159, +203,230, 85, 22, 39, 90,152,212, 38, 85, 69,178,124, 60,229,167,111, 92,220,221,196,145,220,162,144, 60, 13,184,175,137,182,191, +226,222,123, 72,231,161,130,142,223,127,218,180,203,244,197,167, 83, 53,134,128,234, 34, 91, 28,203,118,180,181,179, 7,144,133, +235,215,206,149,155,172,220,188, 66, 24,205, 66, 24, 77, 20, 12,102, 1,250,245, 31,132,239, 54,237, 66,122, 86, 30, 88,150,109, +247,140,153, 44,151,182,109,219,206, 24, 59,118, 44,150, 47, 95,142,136, 53,107, 76, 51, 41, 74, 35, 2,200, 9,150, 5, 71, 8, + 37,176,172, 18,123, 37,157,175,191,254,250, 40,128,151, 87,206, 70,183,252, 98,188,230, 53,140,184, 52, 29, 86,178,226,152,247, + 9, 0,184,100, 71, 84,126,100,134,134,134, 82,101, 37,107,214,150,176,253,215, 17,133,134,134,158, 15, 11, 11, 67,197,121, 77, + 27,216, 55, 10, 24,178, 96,222,172, 85,157, 7,246,162,212,243, 6, 32, 79, 99, 96, 62,136, 49, 75,211,244, 53,155,172,138, 44, +216,176, 1, 55,226, 75,254,199,141,221,221,177,240,213, 87, 65, 24,224,143,232, 24,236,143,136,192,248,254,253, 97, 43,151, 91, + 28,217,224, 56,174,202, 40, 86,197,104,150,181, 81,167,130,130, 2, 28, 60,120, 16, 93,186,116,129, 66,161,128, 72, 36, 66,251, +246,237,113,239,127,236, 93,103, 88, 20, 87,219,190,103,182,194,178,244,222, 85, 20, 12,138,189, 37, 98,236, 45,182,168, 81,177, +188,246, 26, 11,106, 84,108,177,196, 26, 53,246,138, 49,118,236, 26, 43,118, 44,216, 5, 65, 17,164,151,101,233, 44,176,125,118, +118,230,251, 65,121, 81, 41, 11,166,188,201,231,115, 93,123,205,206,206,238,189,103,230,204,156,115,159,167, 70, 69,193,195,195, + 3, 4, 65,224,252,249,243, 24, 56,112, 32,226,227,227,241,229,151, 95,138,147,147,147,107, 76,180,222,188,121, 99,198,178,236, +215,165,218,143,218,138, 70,163,193,219,183,111,209,175, 95, 63, 88, 90, 90,194,217,249, 56,110, 6, 31,133,200,231, 63, 32, 8, +212,136,104,233,245,250,113,125,250,244,225, 19, 4, 1,149, 74, 9, 35, 35, 99,152,152,136, 97,106,106, 6, 47,175,134, 72, 79, + 79, 71,207,158, 61,181,113,113,113,187,164, 82,233,201,154,182,213,219,219,219, 36, 41, 41,233, 63,117,234,212, 17, 0,128,177, +177,113, 35, 15, 15,143, 31,226,227,227,139,106,170,213, 42, 37, 88, 4, 65,128,195,225,148, 17, 45, 46, 73,194,209,193,174,108, +191,196, 63,141,168, 2,171, 80,146,171, 17, 2,128,155,155, 27,118,236,253,157,236,211,167, 15,102,205,154, 5,157, 78,135, 93, +187,138,131,236,134, 15, 31, 14,138,162,112,230, 76,113,144, 36,151,203,173, 82,109,242,252,249,115,188,120,241, 2, 58,157, 14, + 5, 5, 5,184,122,245, 42, 66,238,221, 67,208,249, 91, 72, 74,136, 69,211,134,238, 24, 63,126, 28,120, 60, 30, 14, 29, 58, 4, + 95, 95,223,191,117, 64,224,241,120, 35, 3, 3, 3, 29, 15, 30, 60, 40, 59,127,254,188,162, 93,187,118,194, 45, 91,182,216,237, +216,177,195, 86,171,213,194,223,223, 63,235,241,227,199,154,111,191,253,214,100,223,190,125,142,245,235,215,239, 78,211,116, 69, + 68,203, 4,192, 48, 0,163,242,139,180, 92, 89,145, 10, 12,173, 69, 66, 82, 34, 10,228, 90, 48,122, 10, 41,105,233,144,171,245, +200,205, 43, 66,211, 22, 61,182,223,189,123,119, 49, 69, 81,139, 0, 92,170,174,157,175, 95,191,198,227,199,143,145,148,148,132, +132,132,132,247,153,226,196,137, 56,114,228, 72,141, 53, 90, 21,147, 44, 14, 8,141, 7, 46,157,127, 34,203,138,149,254,107, 72, + 86,201, 24,180,204,209,209,113,153,163,163,163,209,245,235,215,205,235,212,169, 3,154,166,181, 31,106,178, 58,117,234,180, 36, + 48, 48,208,209,195,195, 99, 58,128,173,255, 11,109, 39, 73, 76,252,121,247, 20, 27, 83, 65, 74, 58,222,109, 42,201, 37,200, 1, +148,133,192,221, 99,224,182, 95,154, 56,253,219, 5,150, 1, 7, 87, 78,100,192, 84, 26, 33, 27, 23,159,138,221,187,119, 96,182, +255, 24,252,246,235,207, 96, 24, 46, 52, 58, 14,220,234,182,131,134, 98, 64,144, 92, 52,107,209, 10,119,238,222, 7,143, 4, 78, + 29,220,253, 47,227, 89,200,139,140,140,220,117,254,252,249, 25,179,102,205, 2,195, 48,130,229,187,119,171,178,179,179,215,162, +102,249,175, 62,196, 25,184,123,247,238,152,128, 29,217,231,102,143, 4, 39,233, 34,145,247, 34, 26, 86,223, 45, 96,113,122, 61, +129,150, 13,145, 39,170,120,138,191,247,193,246,223, 65,180, 74,153,100,249,109, 69,210,194,179,222, 79,230, 86,150,227, 72, 83, +103,155,249,179,166,114,227, 51,212, 56, 83,103,132,252,246,225,109, 38, 25,180,112,123, 28,212, 91,106,242,199, 39,110,223, 46, +123,191,225,248,241, 10,143, 73,191,251,206,224,149, 89,101, 90,172,154,106,178, 0, 64, 36, 18, 89,116,239,222, 29, 93,187,118, +197,224,193,131,203,124,178,154, 55,111,142,160,160, 32, 12, 26, 52, 8, 97, 97, 97,112,116,116,196, 23, 95,124,129, 47,190,248, + 2, 87,174, 92,169,233, 32, 7,189, 94, 15, 31, 31,159,210,168,195,166,105,105,105,102,181,237, 72,141, 70,131,220,220, 92, 88, + 89, 89, 65, 32, 16,160,109,219, 54,152, 49,179, 45,108, 28, 15,192,199,187, 33, 20, 10, 69, 89,248,187, 1,147,173, 79,131, 6, + 13,144,157,157,141,236,236,108,216,218,218,194,201,201, 9, 14, 14, 14,216,180,105, 19,187,117,235,214,107, 20, 69,237,202,201, +201,169,177, 38,203,193,193,161, 3, 65, 16, 75, 84, 42,149,160,220, 10, 87, 96,107,107,123, 65,165, 82,173,149, 74,165, 6, 59, +130, 18, 4, 1,138,162, 64, 16, 4, 46, 39, 56, 65,161, 37, 80,152,246, 2,179,250,187,191, 71,188,120, 60, 94,181,230, 82,150, +101, 21,126,126,126,118,174,174, 46, 72,141,123,141,211,167, 89,252,242,203, 47,165, 81,145,136, 41, 89, 24,148,238,119,238,220, + 25,117,235,214, 5, 91,131, 92, 25, 12,195,224,213,171, 87, 56,126, 33, 4,142,238,222, 72,121,247, 22, 47,175, 92, 68, 29, 91, + 43, 52,110,209, 10, 58,157,238,147, 82,111,252, 17,162,211,233,246,123,122,122,178, 90,173, 54, 4,192,142,136,136,136, 49, 82, +169,212,255,247,223,127,119, 26, 50,100, 72,250,197,139, 23,183, 0, 56, 24, 17, 17, 49,101,213,170, 85, 93,105,154,174, 48, 90, +144,195,225,252, 54,103,206,156, 78, 67,134, 12, 33,248,164, 78,123, 61,248, 16,151,166,117,196,188, 69,251,245,119, 31,132,144, + 52,173, 35, 6,251,205, 97,174,220,142, 32, 39,207,220,160,111,222,174, 15, 34, 35, 35, 29,250,246,237,187, 74,167,211, 85, 73, +180, 74, 53, 85,149,105, 40, 57, 28, 14,198,140, 25,131,160, 32,195, 61,168,198, 3, 30,102,238,226,199,107,118,118, 19, 19, 92, +121, 57,146, 85, 31,151,206, 63,145,101,190, 75,255, 87,145, 44, 0,200,205,205,221, 11, 96, 47,195, 48,153, 38, 38, 38, 40, 42, + 42,170,232,254, 51,138,136,136, 48, 18, 8, 4,232,209,163,135,213,205,155, 55, 99, 72,146,220,154,158,158, 94, 41,227,168,200, + 76, 88,145, 57, 17,159, 16,117,104,105,139,190,109, 59,180, 48,141, 54, 95,105,106,196, 85,135,213,137, 49, 50, 35, 0, 20,104, +236, 19, 66,147,135, 21, 18, 89,194,230,173, 58,183,132, 25,215,164,175,140, 46,170,144,104,145, 28,206,203,130,124, 89,239,194, + 34, 45, 30, 60,140,132,223,176, 6,208, 80, 4, 24,134,132, 92,161, 1, 56, 60,144, 0,134,143, 24, 13,150,224, 34, 47, 51, 29, + 28, 14, 39, 2, 52,141,127,153, 44,156, 50,101, 74,239, 69,139, 22,213,155, 63,127, 62,230,207,159,239, 30, 24, 24,184,119,205, +154, 53,243,179,179,179,155,160,154,228,227, 85,224,212,185, 24,180,116,238,133,251,123, 10,250,124,165,122,215,178, 97,177,230, +171,101, 67,228,241,120,136,229,114,144,203,178,239,187, 25,245,237,219,183, 99,249,237, 63, 76, 62,116,130, 47,219, 55,200, 71, +171, 65, 61,231, 94, 45,154,251,204, 92,188,104,177,105, 84,232, 93, 4,252,180,131,245,108,213,189,104,239,253,151, 90,185, 73, +221,222,242,156,216,135,134,242, 11, 0,232,213,101, 16,154, 54,106,243,209, 65,223,206,197,201,218, 31,220,121,142,204,108,137, +193,147,109, 9, 57,168,208, 39,203,144,144,254, 15, 69,165, 82,201, 34, 35, 35,237,210,210,210,222,115,124,175, 91,183, 46, 8, +130,192,147, 39, 79,240,248,241, 99,248,249,249,129,203,229,130,199,227, 33, 36, 36,164, 70,218,152,114,218,165,210,168,195,158, + 46, 46, 46,149, 69, 27, 86,139,165, 82,169, 80, 80, 80,128,224,224, 96, 52,104,208, 0,107,214,172,129,147,163, 61, 22, 47,158, + 11,134, 97, 80, 88, 88, 8,189, 94,111,168, 70,139, 41,213, 22, 49, 12,131,236,236,108,212,171, 87, 15, 59,119,238,196,150, 45, + 91, 86, 73,165,210,223,107,218, 70, 87, 87, 87, 11,189, 94, 63,175, 79,159, 62,221,191,253,246, 91,244,236,249,126, 62,214, 99, +199,142,153,158, 57,115,102,237,182,109,219,122, 81, 20,181, 46, 43, 43, 43,219, 16,220, 3, 7,138,211, 47,137,218, 45, 67,192, +144, 58, 24, 53,237, 16, 54,109, 58, 11,161, 80,248,222,196,187,114,229,202, 42, 73, 12,195,178,158,252,156,208,244,185, 11, 54, +218,173, 93,123, 19, 55,111,102,129, 36, 73, 56, 58, 58,130, 36, 73, 36, 38, 38,130, 36, 73,184,187,187,131, 36, 73, 72, 36,146, + 82,159,192,124, 84, 16,245, 88,241, 42,156,132, 90,173, 70,106, 74, 18,210,226, 98, 32, 46,204,128,173,153, 8,249,175, 95,161, +233,248,137,101,249,159,254,102, 57,162,213,106,143,148,219,223,120,241,226, 69, 45, 65, 16,131, 81,236,167, 81,170,209, 88, 69, +211,244,170,202, 64,218,181,107,215,124,209,162, 69,188,210,116, 27, 78,110,171,105,138,162, 24, 0,104,216,244,235,247,216,126, +108,108, 44, 54,109,218, 4,133, 66, 1, 62,159,207, 55,228, 58, 48, 12, 83, 22, 97, 88, 17, 9,171, 9,201, 2, 0,107,119,151, +237, 79, 94,132,232,195,227,246,168, 34,162,175, 26, 75, 83, 72,144,218,127, 47,201,250, 80,179,229,226,226,178,140, 97, 24,150, +101,217,165,229, 14, 9,221,220,220,238, 95,191,126,221,154,166,105,108,219,182,205, 34, 35, 35,195,226,235,175,191, 14, 0, 80, + 41,209,170,200, 76, 88,145, 57, 17,229,162, 14,133, 66,161,149, 86, 91,169,242,228,163,168, 67,189, 30, 94,102,166, 22,200, 71, + 26, 52, 54,186,230, 50,107, 58,239,134,116, 98,152, 83,114,139, 70, 38,122, 93, 61,178, 80, 11,103,145, 5, 24,150,173, 52, 52, + 90,163,211, 93, 13,123,241,178,135,155,107, 3,206,239,151,238, 97,192,192, 33,208,104, 72,168,117, 4, 8, 14, 15, 4,135,143, + 38, 77, 91,224,139,198, 77,193, 2,120,254, 52,148,214,234,116, 55,254, 77,125,239,216,126,134, 31, 65, 96, 43, 88,134,173, 32, +143, 86,189,129, 3, 7,174, 5, 48,179, 58, 28,187,118, 51,252, 72,178, 24,167,124, 30,173, 57, 51,166,224,245, 83,158,249,189, + 23,235,249, 61,219,225,114,246, 77, 2, 34,163,255, 70, 29,242,200, 79, 74,205,241, 79, 33, 92,213, 19, 45, 87, 87, 87, 11, 51, +161,209,129,239,199,143, 51, 77, 14,127,132,140, 55, 79,240,240, 94, 76,254,137, 51,103,243, 20,185, 89,227,107, 64,178,202,204, +124,214, 14,117, 80,215,251, 99,162,101, 36,182, 5, 0,212,245,110, 3,142, 73,205,210, 8, 85,164,205,170, 13,201, 42, 63, 96, + 87,148, 67,107,242,228,201, 8, 12, 12, 68,251,246,237,225,233,233, 89, 54,216,215, 84,107, 86,129,118,169,198,209,134,229,165, +168,168, 8,238,238,238,216,183,111, 31, 34, 34, 34, 96,106,106, 10, 63, 63, 63, 20, 21, 21,149, 17, 44, 67,157,225, 89,150,141, +189,126,253,122,235,161, 67,135,178, 60, 30,143,144,201,100,176,176,176,192,206,157, 59, 21, 82,169,244,114, 45, 72,214, 16, 62, +159, 63,119,216,176, 97,156,134, 13, 27, 34, 51, 51, 19,102,102,102, 58,130, 32,120, 0, 96, 97, 97,161, 51, 54, 54,198,148, 41, + 83,208,172, 89,179, 14,243,231,207,111,207,229,114,119,166,167,167, 31,170,234, 94, 34, 8,162,108, 66, 29,191,245, 45,180,218, +226, 9,122,215,174, 93, 40,241,117,251,175,137, 32, 46, 14, 48, 32,146, 69, 44, 22,195,211,211,179,194,190,239,208,161, 3,158, + 63,127, 94,108,154,228,114, 97,103,103,135,135, 15, 31, 26, 20, 73, 85,154, 8, 50, 50, 50, 18,222,117,109, 16,113,243, 58,108, + 68, 60, 52,115,114,128, 75,135,142,136,137,137,249, 59,181, 89, 4,138,253, 48,186,149,220,131,251, 1, 76, 46,183,191, 19,192, +246,154, 0,210, 52,205,146, 36, 73,164,166,166, 82, 34,145,136,176,178,178,226, 10,133, 66,104, 52,154, 50,194, 21, 27, 27,139, + 75,151, 46, 33, 45, 45, 13, 86, 86, 86,164,185,185, 57, 40,138,202, 55, 4,223,203,203, 11, 14, 14, 14,239, 57,190,143, 31, 63, +190, 86, 36,107, 12,224, 19,184,122, 93, 29, 33,201, 49,247,182,233,133,132,183,137,106, 82, 11,163,255, 15, 36, 11, 0,100, 50, +217, 94, 0,123, 75,247,109,108,108,198,114, 56,156,197, 26,141,198, 60, 36, 36,196,194,214,214,150, 56,116,232,144,110,233,210, +165, 50, 14,135,147, 79, 16,196,230,191,159, 28,226, 77, 78, 65,156, 59,207,210,137, 9, 87,179,161,254,169, 1, 95,228,243, 26, +216, 18,141,125, 48, 48, 43,234,193, 88, 58,238,171, 76,105, 6,201,130,121, 83,197, 24,188, 63, 96,209,202,121, 49,111, 95,186, + 25,153, 25, 97,242,148, 69,184,124,237, 14, 8,146,135,251,161, 79,160,165,244,200,201, 43,192,176,225, 35,225,226,104,131, 55, +143,131,179,105,134,217,249,239, 34,217,204,142, 30, 3,198, 90, 10,141, 69, 37,215, 68,143, 35,191,206, 5, 73,110,197,143, 63, +254, 8, 31, 31,159,105,145,145,145, 43, 80, 77, 30, 45,130, 96,118, 52,233, 56,220,146, 47, 44,198, 97, 25, 61,246,157, 10, 40, +201,163, 53, 27, 59,247,158,105,210,184,110,194,242,170,242,104,253,139, 72, 86,249,109,213, 68,203,221,221, 93,104,194,195, 36, + 30,135, 59,255,251, 17,223,218,102,197,189, 70, 90,212,203, 98,243, 2,165,162, 50,222, 69, 25,146, 10,189, 27,222,207,223,193, + 86,101,186, 82,171, 13, 90,209,191,135, 89, 58,225,126,168,205,170, 33,201,250, 8,179, 60,217, 42,159, 55,203,213,213, 21,107, +215,174, 53, 36,143,214,135,231, 94, 42, 61, 81,236, 0, 95,222, 25,190,167,129, 36,171, 66, 76, 91, 91, 91,228,230, 22,103, 72, +232,212,169, 19, 58,117,250,111, 60, 3, 69, 81,101, 90, 44, 83, 83,211,138, 52, 90, 31, 97, 26, 27, 27, 7,156, 61,123,118, 92, +104,104,232,208, 31,126,248,129,215,181,107,215, 82, 50,167,132, 97,181,221,222,195,212,235,245, 83,130,131,131, 57, 12,195, 96, +223,190,125,120,254,252, 57, 43, 18,137,150,136, 68,162, 29,198,198,198,122,149, 74, 53,121,226,196,137, 35,151, 47, 95, 78,118, +232,208, 1,143, 30, 61, 34,235,213,171, 55, 26,120, 47,137,101,133,231,254,228,201, 19,144, 36, 9, 58, 47, 5,211, 2, 78,192, +196,152,139,183,111,223, 34, 47, 47,239,163, 36,166,134, 92,207,242,154,146,210, 87,135, 14, 29,202,204,144,109,219,182, 5,135, +195, 65, 88, 88, 88,101,102,216,242,152,172,181,181,117,217,253,193,231,243,113,231,206, 29,252,244,211, 79,112,179,178, 64,126, + 84, 4, 28, 58,117, 65,247,113, 19,225,231,231, 7, 14,135, 3, 43, 43,171, 50,205,175, 1,247,210,167, 72,121,204,113,222,222, +222,163,223,188,121,227,210,164, 73, 19,199,200,200,200,206, 62, 62, 62,238, 17, 17, 17,165,251, 66, 24,230,155, 83,134,249,236, +217,179,211, 59,118,236,152, 50,102,204, 24, 62,195, 48,250,228,228,100, 29, 0,194,193,193,129,243,236,217, 51,230,247,223,127, +135, 74,165,130,139,139, 11,233,236,236, 76,220,184,113,131,137,138,138,122,194,178,236, 34, 67,206, 93,175,215,191,151,198,161, +244,253,177, 99,199,106,252,188,215,249,194,107, 77,215,175, 27,186,230,164,135, 65, 42,137,131,190,192,150,186,116,254,162,166, +134, 36,235,207,238,163,191, 18,115,229,187,119,239,156, 53, 26, 13, 4, 2, 1,118,237,218, 69,173, 93,187,246, 77, 78, 78,142, + 47, 42,142, 40,127, 15,179,150, 81,135,121, 85, 96,126, 20,117, 88,144,139,203,231, 47, 60,107, 45, 30,184, 31,211,210,179,203, + 28, 27, 89,130,176, 58,107,223,200, 87,212,166,137,132,188,178,140, 44,210, 43, 47, 87,113,238, 90,149, 86, 59,100,224,160,225, +183,130,130,142,139,151, 46, 91,134,135, 79, 34,144, 43,147,131, 97, 57, 96, 8, 2,139, 23, 47,133,131,141, 21, 10,211,223, 41, + 53, 20, 53, 16,239,231,208,250,199,247, 59, 65,144,211,111,252,126,104, 43, 73,128, 81,100, 70, 11, 57, 69,113,162, 81,126, 3, +185, 67,134, 12,193,217,179,103, 17, 25, 25,185,167, 10,146, 85,134,201,178,228,244,136,144, 19, 91, 9,128, 81,101, 71, 11,185, +242, 4,209,232, 17, 3,185,126,126,126, 56,119, 41, 20, 65, 23, 19,118, 7, 93,196, 69,252,187,165,230,153,225, 77,185,136,244, +109,228,225,220,161, 69, 99, 35,174, 94,133,180,168, 56,228, 41,212,184,241, 58, 89, 70,178,100,173,115,235, 20, 15,144,124,164, +164,188,171, 96,101,101, 84, 50,161,171,107,132, 73,146,228,123,218,172, 79,209,100,149,111,167,189,189,253,123,229, 92,202, 79, +220,165, 62, 64,181, 72,237, 16,144,146,146, 98,150,146,146, 2,150,101,241,228,201, 19,179,182,109,219, 6,124,138, 54,107,238, +220,185,101, 90,171, 15,183, 21,125, 86,157,148, 56,165,111,209,233,116,167,230,207,159, 63,173,109,219,182, 61,150, 45, 91, 70, +160, 6, 5,120, 63,208,230,208, 12,195,224,238,221,187, 56,123,246,172,158,162,168, 73, 82,169, 52,162,220, 87,182,189,120,241, +226,198,160, 65,131, 14, 69, 71, 71,115,222,188,121, 3,150,173, 62,238, 84,165, 82,193,211,211, 19, 52, 77, 99,253, 52, 87, 20, + 21, 53, 1, 77,211,208,235,245, 48, 49, 49, 41,211,226,149, 39,207,213,221, 71,122,189,254, 35,162,245,228,201, 19,112, 56, 28, +248,250,250,226,229,203,151,101, 26,173,234, 52, 80, 20, 69,165,216,219,219,219,175, 92,185,178,172, 93,217,217,217,184,126,253, + 58,218,125,249, 21, 26, 77,154,140,244,244,116,108,222,188, 25, 78, 78, 78, 88,179,102, 13,242,242,242, 64,211,244, 95,173, 78, +239,253,230,205, 27,151, 17, 35, 70,100, 69, 68, 68,184, 92,186,116,201,162,111,223,190, 38,195,135, 15,207,138,136,136,112, 33, + 8,226, 43,212,208, 9,154, 97,152,133,139, 23, 47,190,182,102,205,154,128,153, 51,103,182, 29, 51,102, 12,143,199,227, 49, 18, +137,132, 62,126,252, 56,225,233,233, 73,242,249,124, 34, 56, 56,152,121,250,244,233, 99,154,166,215, 3,184, 95, 19,141,115,121, +146,197,225,112, 12, 37, 89,239,137,191,157,112,180, 41,153,237,187, 99,215, 90,178, 97, 93, 23,234,240,241,235,169,247, 31,189, +139,231,104,104,255, 3, 85,164, 6,248, 55, 11,135,195, 57,233,237,237, 61,118,250,244,233,198, 61,123,246, 20, 46, 95,190,188, +160,168,168,168, 50,146, 85,193,130,249, 47,137, 58,252,117,225, 15,151,252,231, 52, 25,235, 49,193,161, 14,110, 42,178,144,207, +229,144,102, 22, 36, 90,184,115, 80,148, 19,107,123,241,214,193, 68, 0,213,229,101,123,246,226, 85,100,183,198, 77,154,159, 89, +191,102,189,221,146, 5,243,121,103, 46, 93, 5, 75, 83,120, 18, 18, 2, 49, 95,207, 70,189,184,153,169,161,180,223,226, 95, 88, +130, 71,250,112,123, 16,128, 11, 86, 86, 86,225,227,198,140,241,244,246, 30, 14,145, 72,132,211,167, 79,227,200,182,109,250, 45, +192, 80, 33,240,114, 74, 53,249,244,178, 30,151,225,132, 77, 28, 55,206,171, 69,139, 9, 16,137, 68, 56,117,234, 20, 14,109,217, + 98, 48,206, 63, 92, 74, 51,195, 95,198,127, 51,196, 87,227,163, 69, 18, 69,143,223, 37,203,159,188, 75,150,131, 97, 89,134,101, + 53, 36,137, 84, 5, 69,173,121,151, 32,169, 21, 41, 40, 53, 29,174, 90, 61,253,143,179,121,148, 35, 63,181, 13,233,174,128,100, +165,149,175,145, 86,126,146,174,236,189, 78,167, 75, 51, 16,126,157,155,155,219, 71,159,213, 94,245,203,214,136,100, 25,154, 71, + 11, 0,114,115,115,165, 0,150, 60,122,244,232, 88,143, 30, 61, 38, 2,144,212,178,143,246,117,236,216,113, 18, 0, 14, 65, 16, +123,210,211,211, 35, 62,122,224,165,210, 24, 39, 39,167, 13,117,235,214,157, 92,188, 48, 37,246, 85, 51,145, 39, 52,105,210,132, +170,168, 47, 42,219,103, 24,166,218, 62,146,201,100,104,211,166,205, 71, 53, 45, 89,150, 69,114,114,114,169,198,169,236,218, 87, + 69,224,228,114,249,228, 25, 51,102,236,229,241,120,110, 0,136, 82,146,171,215,235, 57,219,183,111, 55,210,235,245, 28, 0, 4, + 73,146, 52,143,199, 83,159, 61,123,150,166,105, 58, 69,163,209, 76,254,139, 7,136, 83, 68,113, 41, 6,197,155, 55,111, 26,150, +104,178,210, 34, 35, 35,195,130,130,130,108, 1,156,168, 37,238,125,165, 82,121,127,237,218,181, 29,118,237,218,181,112,242,228, +201,109,252,252,252,184,157, 58,117,194,229,203,151,245,119,239,222,125,162, 82,169,214,213,132, 96,149,244,101,129,171,171,107, + 25,225,170,230, 89,174,210,145,215,218, 93,184, 99,228, 84, 39,163,125,235,174,203,115,210,181,161, 58,185,118,209, 65, 32, 18, +255,143, 37, 51, 51,243, 7, 0, 75, 55,111,222,156,222,172, 89, 51, 33,159,207,215, 26, 74,178,254, 66,161, 25,153,252,155, 95, +186,127,119,161,227,226, 25,117,187,119,246, 21,185,214,177,115,142,138,203, 68,236,163,203,138,240,139,171,147, 88, 77,254, 0, + 0,134,120,174, 63,213, 80, 84,131,185,243,231, 78, 19,240,120, 61,244,122,125,211,174, 55,206,179, 28, 14, 39, 66,171,211,221, + 40, 49, 23,170,255,197, 93,190,106,195,134, 13,158,222,222,222, 56,125,250, 52,110, 28, 61,138, 97, 57, 57,184,195,225,112, 72, + 62,223,250, 34, 69,109,132, 97, 4,105,213,166, 77,155,188,124,124,124,112,242,228, 73, 4, 31, 58,132,161,181,195,169,108,174, +107, 13,192,182,100, 55, 7, 64, 52,128,150, 0,140, 1,104, 80, 92,218,201,166,252, 20, 86,114,172,244,248, 61,130, 32,254, 76, + 71,216,234, 51,195,127, 40,145,177, 73, 45,255,232, 86,168, 84,170, 60, 79, 79,207, 26,197, 92,235,116,186, 42,109,184, 52, 77, +167,121,120,120, 24,172,181, 48,132, 20,229,229,229,181,250, 19, 59,227,147,124,177,222,155, 68, 24, 38,201,209,209,145, 41,157, +244, 43, 34, 97, 21,125,198, 2,137, 53,249,159,140,140,140,104, 0,115,106,219,206,244,244,244, 51, 48,160,104,180,161,223, 3, +128,252,252,252, 63,188,152, 47,193,178,146,229,203,151,215,136, 96,131,101,171, 34,159, 17,114,185,188,173, 33,255, 77, 81, 20, +254, 70, 57, 89,242, 34, 35, 35, 35, 39, 18, 4,209, 19,197, 38,129, 61,248, 99,178,121,223, 47, 44, 44,188,255,243,207, 63,119, +216,183,111,159, 63,203,178, 40, 44, 44,220, 82, 83,130, 85,182,122,206,202,186,252, 71,157,120, 94,166,246,246,241, 61,105, 93, + 84, 50,202, 63, 80,174, 61,132,207, 82,166,140, 98, 89,246,183, 81,163, 70,181, 3,112,240, 83,193, 42,137, 58,252, 84, 73,100, +242, 11,154,221,153,251,211,184, 59, 22,166,125,160,231, 54,132,150,188, 8,109,238,101, 0, 7, 96,152,155, 67,217,249,210, 12, +179,137,214,106, 55,149,155, 92,254, 63,244,179,149,143,143,143,255,216,177, 99,177,116,233, 82, 4,111,220, 72, 77, 37,136, 2, + 30,192, 94, 43, 94,104,146, 4,176,192, 80,156,209,163, 71, 99,233,210,165,184,178,126,125,109,113,170, 18, 91,130, 32, 46, 1, + 64, 64, 64,192,162,181,107,215, 90, 46, 92,184,176,233,186,117,235,214,148,236,191, 46, 61, 94, 50,215,245, 93,184,112, 97,227, +114,199,139, 0, 60,251,147,175,103,133,153,225,255,108,233,246, 25,243, 51,230,103,204,207,152,159, 49, 63, 99,126,198,252,140, +249, 41,194,178,108,159,226, 77,229,219,202,222,151,219,254, 45,194,197,103,249, 44,159,229,179,124,150,207,242, 89, 62,203, 63, + 80,202,107,177,106,115,252, 15,148, 82, 31,173,242,178, 15, 40, 14,235,174,140,149,214, 36,234,161, 54,204,246,230,103,204,207, +152,159, 49, 63, 99,126,198,252,140,249, 25,243,255, 29,102,117,216, 31,253,158,101,217, 62, 4, 65, 92, 98, 89,182,111,101,219, + 82, 98,245,225,251,114,219, 63,204,237,160, 2, 41,245,205,250,200, 71,235,207,150,207,106,213,207,152,159, 49, 63, 99,126,198, +252,140,249, 25,243, 51,230, 39, 73,169, 9, 16, 0, 27, 16, 16,176,240,127,208,116,232, 88, 66,178,202,191, 0, 84, 97, 58,100, +217, 83, 28,137, 4,102, 2,129,136, 15, 0, 90,173,146,114,118, 70, 33, 65, 12,249, 59, 11,222,126,150,127,166,148,134,123,103, +254,193,223,253, 44,159,229,179,124,150,207,242,255, 67,178, 75, 53, 85, 0,178, 1, 16, 37,251,218,146,109,118, 9, 33,251,240, +253,123,199,255, 68,145,162, 18, 77, 22,183, 50,146,149,147, 35,178,225,114,243,189,244,122,245, 23, 0,192,229,146,111,115,114, + 44, 99, 88,246, 84, 78,109,200,150,141,157,221, 11, 30,135,227,108,200,119,117,122,189, 36, 39, 51,243,253,212,241, 4,241,111, + 32,120,134,146,136, 79, 33, 27,127, 58, 81,177,177,177,177,183,183,183,239,111,102,102,246,165, 76, 38,123,154,157,157,125,174, +138,186,135,107, 9, 2,243,139,239, 43,252, 12, 96, 97, 21,208, 53,249,238,135,226, 41, 18,137,166, 17, 4,225, 83,242,128, 69, + 42,149,202, 93, 0,222,253, 63, 28,144,140, 1,124,203,229,114, 71,219,216,216,180,201,200,200, 88, 14,160,182,217,188,185, 0, +230, 90, 88, 88, 12,179,176,176,240,200,203,203,139, 47, 44, 44, 60, 9, 96, 19,128,106, 67,165,151,207,116,252,178, 83,207, 78, + 75,238, 6,223, 93,181,124,155,244,209, 71,199,231, 58, 90,247,232,222,126,233,221,139,161, 43, 23,237, 76,207,171, 97,219,200, +146, 23, 80, 28, 29,201,226,227,100,175,159, 42, 60, 0,253, 0,116, 2,112, 23,192, 69, 67,206,187, 18,105, 7, 96, 81, 73,155, + 55, 1,184,243, 63,126, 31,153,216,219,219,175, 7,208,143,203,229,190,145, 72, 36,147, 0,164,253,205,109,226, 2,104, 13,192, + 7,197,105, 56,158,193,176, 20, 14,213,138,181,181,117, 95, 46,151, 59,173, 36,181,203,174,220,220,220, 75,255,171, 29, 35, 16, + 8,182, 56, 56, 56, 76, 80,169, 84, 74,130, 32,216,242,249, 30,105,154, 78,203,201,201,105,245,111, 27,212, 8,130,120,246, 63, +222,196, 73, 21,124, 86,121, 30, 45,137, 4,102, 92,110,190, 87, 86, 70,196,176,116,233,171,161, 0,224,228,216,244,164,157, 67, +147, 19, 18,137,128,114,104, 56, 80,204, 19,113,119,113, 56,188,230,106,173,198,134,199,229,229, 80,180, 46,140,212,178,211, 50, +162,207, 85,152,108,145,199,225, 56, 39,197,220,177,163,169, 60,240,140,156,192, 51,118,171,180,181, 78, 78, 78,181, 58, 75, 75, + 75, 15, 83, 74,104,228,207,227,113,186, 51, 44,237,195, 50, 0, 73,240, 34,105,189,238, 22, 95,163,249, 37, 63, 63,190,168,182, + 87,176,161, 53, 28, 88,192, 15, 4,186,131,197, 13, 2, 8,138,206, 69, 70, 13, 32, 12, 37, 17,159, 66, 54,202,255,118, 51,128, + 31,254,232, 59,201,217,217,217,178,111,223,190, 91,126,250,233, 39, 99,177, 88, 76,164,164,164,244, 92,176, 96,193,215,207,159, + 63,159, 35,145, 72,210, 63, 36,125, 4,129,249, 12,195,146, 0, 64,146,196, 2, 91, 91, 59, 17,135,195,249, 40,183,145, 94,175, + 23,101,103,103, 77,103, 24,150, 40,249,238,124,150,197, 86, 67, 8,163,145,145,209,112,159, 38,205,231,172,223,176, 73,108,111, +103,103, 66,235, 25, 42, 49, 57, 73,180, 36,224,135,182,113,177,239,182,170,213,234,227,181,121,174, 57, 28,206, 48,161, 80,216, + 23,128,119,201,103, 81, 26,141,230,146, 94,175, 63, 97,232,132,110,111,111,127,143,195,225,212,169,201, 31,235,245,250,148,204, +204, 76,223, 90,118,209, 16, 55, 55,183, 3, 29, 59,118, 20,181,105,211, 6, 2,129, 0, 75,151, 46,157, 43,149, 74,171, 35, 90, + 92, 0,115, 69, 34,209, 48, 19, 19, 19, 15,185, 92, 30,167, 82,169,206, 8, 4,130,110, 91,183,110,117,109,223,190,189,105,102, +102, 38,193,225,112,236,175, 92,185,242,159, 45, 91,182,244,164,105,186,107,117,147, 92, 65, 28,187, 68,216,207,187, 67, 65,220, +157, 37, 0,122,127,120,156, 86, 27,141,102, 57,174,125, 85,236,203,212, 18,242, 97, 48,201,226,241,120, 91, 29, 28, 28,198,170, +139,115, 5,176, 31, 78, 56, 0,160,213,106,243,101, 50, 89,195,218, 60,242, 0,198, 91, 88, 88,140,157, 55,111,158,101,239,222, +189,113,244,232,209,239, 3, 3, 3,243, 11, 11, 11,127, 67,113, 34,204,232, 26, 98,206,207,200,200,248,134,199,227, 17,174,174, +174, 28,149, 74, 85, 19,162,229,133,226, 34,204,207, 0,236, 66,113,234,130,206, 64,241,243, 14,224,231, 82,226, 70,146,228,174, +134, 13, 27,246,143,138,138,218, 13, 96, 85,109,159,117, 7, 7,135,189, 59,119,238, 28, 58, 96,192, 0, 78,118,118,182,115,179, +102,205,142,101,100,100,116,248, 3,134,145,113, 66,161,112,118,211,166, 77, 27, 69, 71, 71,199, 20, 22, 22,110, 42,185,158, 85, + 61, 83, 46, 0,186, 89, 88, 88,116, 93,188,120,177,184,111,223,190,216,183,111,223, 55,129,129,129,242,162,162,162, 91, 40,246, +233,249, 36, 18,200,229,114,167,165,165,165,217,176, 44, 11, 71, 71,199,105, 0,254, 39,137, 22, 73,146, 91, 7, 13, 26, 52,246, +216,177, 99,162,164,164, 36,145,179,179,115, 89,242,108,130, 32,106, 61,127,126,150, 79,150,125,229, 8, 87,245,121,180, 4, 2, + 17, 95,175, 87,127,145, 46,125, 53,244,235,142,219,205, 1,224, 94,200,140,161,118, 14,141, 35, 5, 2, 81,140,208,204,232,236, +160,126,221,154,127,215,183, 35,225,226,104,135, 52,105,150,253,175, 65,193,189, 46, 5,223, 57,139,226, 4, 98, 21, 10, 77,229, +193,152,186,137,232, 7,219, 96,211, 41, 29, 59,174,164,225, 81,120, 34,148, 5, 57,168,227, 96,140, 13,254, 61,224, 96, 41,170, +221,210,203,206,179, 51,205, 21,158, 24, 49,124,148,121,255,111,189,121,238, 14, 14, 96, 89, 33, 98,226,228, 95, 93,189,126,167, +245,153, 83,199,167,153,240, 60,135, 41,178,222, 25, 60,184,181,112,132,177,130,194,183, 92, 14,241,159,246,173, 26,117, 29,254, + 77, 7,178,145,119, 3,188,121, 29,213,227,194,237, 39, 27,200,208,215,183,104, 61,123,216,132,143,243, 47,165, 85, 38,244,251, +136,112,116,237,218,173,131, 80, 40,124, 47,121,146, 70,163,225,223,186,117,179, 93,109,200, 70,233,127,104,181, 26,146,199, 19, +128, 36,137, 57, 62, 62, 77,188,115,114,114,238, 16, 4,113, 32, 61,189,102,218,130, 25,128, 32,159,203,109, 73, 10,133,142,122, +173,214, 26, 0, 8,129, 32, 63,145, 36,155, 44, 94,180, 72,204,225,112,152,220,220, 92, 40,149, 74, 98,226,196,137, 70,113,113, +113,131, 36, 18,201,182,106, 86, 36, 8, 12, 12,244,114,116,116,252,168,122,172, 84, 42, 21, 12, 24,208,191, 54, 93,239,213,180, + 89,139,217,193,193,215,188, 11,243,242,213,129,155,247,190,208, 25,137, 52,245,188, 27,242,118,237, 59,100, 62,105,236,200, 25, +111,223,190, 14, 67,205,234,213,185, 25, 27, 27,159,221,184,113,163, 79,231,206,157,121,118,118,118,200,204,204, 68, 84, 84,148, +207,237,219,183,191, 61,116,232,208, 92,149, 74, 53, 8, 48,168, 32,170,231,173,195, 7,236, 76,172,172,161,215,233,224,212,180, + 69, 89,126,179,216,219,215, 65, 83, 20, 24,157, 14,222,125,191, 45,209, 38,179,240,246,246,174,109,214, 93,167,198,141, 27, 31, + 89,179,102, 13, 95,163,209,224,201,147, 39,184,115,231, 14, 35,149, 74,171, 75,136,203, 37, 8,226,250,178,101,203, 92,124,125, +125, 77,115,114,114,160,215,235,109,206,159, 63, 63,173,121,243,230,102,174,174,174,130,195,135, 15, 67, 46,151,131,166,105, 43, + 15, 15, 15,171,225,195,135,107, 15, 31, 62, 60, 23,192,250,202, 52, 89,133,113,236, 18, 41,225,209,171, 97,203,209,200, 32,174, +245,154,221, 11, 87,205,234, 19,101,154,173, 94, 30, 30,166,133, 18,209, 2,177, 89, 19,171, 66,201,205, 5,189, 60, 60, 2,175, +197, 27,180, 24, 34, 75, 38,155, 17, 65, 65, 65,162,168,168, 40,145,183,183, 55, 24,134, 41,203,192, 95,154,112,214,211,211,179, + 54,215,113,221,148, 41, 83, 22, 12, 29, 58, 20, 77,155, 54, 45, 75,138,250,227,143, 63, 98,193,130, 5,150,247,238,221,155,123, +252,248,241,185,231,206,157, 91, 15, 32,160,134,218,152, 82,169,105, 31,175, 72, 72, 72, 24,114,246,236,217,145,243,231,207,247, + 4, 48, 29,192,210,220,220,220,142, 37,218, 24, 65, 9,209, 26, 55,119,238,220,169, 1, 1, 1,248,230,155,111,150, 62,121,242, +100,117, 45,181,124, 28,154,166,191, 25, 48, 96, 0, 71,167,211,193,196,196, 4, 58,157,174,254,167, 42, 37, 0,236,156, 60,121, +242,212, 41, 83,166,192,210,210, 18, 58,157,206, 43, 40, 40, 40,112,233,210,165, 95, 2, 24, 95, 73, 91, 71, 79,157, 58,117,129, +137, 32,113, 0, 0, 32, 0, 73, 68, 65, 84,240,168, 81,163,208,170, 85, 43,112,185,197,151,113,227,198,141, 88,185,114,165,248, +250,245,235,223, 30, 62,124,248,219, 11, 23, 46,156,193,251,101,187,106, 36, 12,195,128,203,229, 34, 53, 53, 21,118,118,118, 66, +134, 97,130, 9,130,216,151,151,151,119,238,127,104, 50,255,121,200,144, 33, 35,142, 29, 59, 38, 6,128, 13, 27, 54, 96,246,236, +217,176,183,183,135, 88, 44,254, 76,117,254,119, 52, 90,147,170,213,104, 85, 39, 74,165,178,197,194,153,255, 1, 73, 22,175, 26, + 27,212,115,195,218, 69,147,136, 11,151,130, 91, 84,169,131, 55,114, 66,244,131,109, 16,186,250, 67,163,163,241, 56, 60, 1, 55, + 54,244, 44,158, 45,123, 47,134,134,234, 90, 58,217, 88, 9,140,141,127,214,234,245, 15,225,224,240, 4,201,201,217,213,145, 44, + 91, 7,251, 75,123,246,172, 55,246,169,223, 16, 20,173,131, 36, 75, 2,130, 16,194,197,217, 20,227, 70,247,230,117,236,232,100, +179, 98,197,222,203, 25, 12, 6, 42,115,222, 85,155, 48,212,203, 6, 7, 91,248,120, 14, 29,222,199, 87,216,196,167, 49,248, 66, +227,178, 99, 45, 91,181, 66,203, 86,173,200, 0,121, 81,247,167,207, 94,116, 63,125,253,177, 70,169, 75, 62, 25,147,131, 49,213, + 12, 50,101,132, 99,214,172, 89,176,183,183,127,239, 11,153,153,153,184,125,251, 86,133,191,169,193, 64, 86,246, 31,171, 87,175, + 54,205,207,207,239,189,127,255,254, 46, 12,195,172,206,200,200,120, 96, 8,200, 40,160, 78,129, 80,216,117,236,166, 77, 76,243, +254,253, 57, 22, 14, 14, 36,163,215, 19,233,241,241,214,155,183,109,235,148, 23, 27,107,172,176,178,202,203, 87,169,148, 49, 49, + 49, 48, 50, 50, 34,184, 92,110,235, 10,160, 50, 89, 22, 63,147, 36,177,128, 32, 8, 8,133, 70, 49, 83,166, 76,121, 89,114,172, +206,197,139, 23, 69,253,250,245, 83, 2, 72, 2, 0,161,208,200,153,195, 33,189,138, 51,177,227,103, 67, 8,166,137,137,201,204, + 85,107,214,155, 20,230,201, 84,148, 66,161,179, 53, 19, 19,132,216,148, 83, 88, 80, 84, 36,145,102,107, 22, 47, 95,201,153, 60, +110,212, 76,133, 66, 49,205, 80,146,213,172, 89,179,167,103,207,158,181,179,182,182,134, 76, 38, 67,110,110, 46,158, 62,125, 10, +134, 97, 48,104,208, 32,225, 87,109,219,180, 88,180,120,201,163, 84,137,228, 75, 67,200,150,137,149, 13, 54,248, 54, 47,158,172, +147,114,203,250,103,223,144,190,101,223, 89,153, 86, 80,170,157,251,148, 18, 82, 95,118,237,218,149, 15, 0,227,199,143, 47, 44, + 42, 42, 90, 11,224, 24,170,207,232, 63,119,201,146, 37,206,245,234,213,115, 63,118,236, 24,228,114, 57, 0,216,213,171, 87, 15, + 94, 94, 94,250,187,119,239,194,203,203, 11,166,166,166,184,119,239, 30, 30, 61,122,132, 86,173, 90,153,242,249,252,161, 20, 69, + 85, 72,180, 58,245,236,180, 68,216,207,187, 67,195,150,163, 33, 54,115, 68,224,241, 19,136,126,113,168,131,134,138, 90,194,215, +135,140, 82,177,194, 49,217, 41,226,128, 58,173, 58, 90, 55,104,220, 31,238, 45, 95,218,168,245,247, 19,150,116,175,183,142,107, +164, 62,180,124,147, 52,183, 50,146, 5, 96,195,160, 65,131,134, 4, 5, 5, 89, 0, 64, 68, 68, 4, 50, 51, 51, 97,107,107, 11, + 35, 35, 35,240,120,188,178,250,164,181,148, 49,187,118,237, 42, 35,109, 52, 77,151, 85, 1, 16,137, 68,248,250,235,175,209,188, +121,115,156, 59,119,110, 76, 37, 68,203,183,109,219,182, 71,221,221,221, 93,203,127,168, 80, 40,224,231,231, 7, 0,232,216,177, + 99, 87, 99, 99, 99,182,148, 16, 74,165, 82,249,179,103,207,186, 3,120, 82, 9,179, 84, 73, 36, 18,204,155, 55, 15,137,137,137, +223,239,217,179, 39, 25,128,145, 64, 32, 40, 91, 31, 3,240,106,220,184,241,214,217,179,103, 35, 46, 46, 14,111,222,188,121,138, +218,155, 82,245, 38, 38, 38,177, 58,157,174, 21, 77,211, 80,169, 84, 24, 56,112,160,209,153, 51,103, 50, 57, 28,206,219,156,156, +156,145, 40,246, 73, 49, 84,140, 0,108,154, 50,101,202,212,249,243,231,227,214,173, 91,184,112,225, 2, 70,141, 26, 5,127,127, +127,136,197,226,177,254,254,254,143, 80, 92,208,252, 67,233,186,107,215, 46,232,245,250,143,158, 13, 35, 35, 35,248,250,250,162, + 81,163, 70,184,112,225, 66,215, 79, 32, 90,238,190,190,190, 2,134, 97,160, 80, 40,112,247,238, 93,177,177,177,177,216,197,197, +101, 34,128,255, 25,162,229,238,238, 62, 37, 40, 40, 72, 92,222,250, 35, 20, 10, 81,238, 62,248, 44,127,191, 70,171,202, 21, 86, +153,104,181, 74,138,203, 37,223, 58, 57, 54, 61,121, 47,100, 70,153,233, 16, 32,223,106,181, 74, 10, 0,244, 12,139, 66, 37, 13, + 99, 33,137,164,140, 34,188,142,207,169, 8,234,189, 16, 77,158,177, 27,132,109,146,192,178, 44,180,148, 30,154,130, 12,172,189, +172, 68, 84,154, 26, 90, 69, 62,180, 84,177, 27,150,141,141, 13, 55, 56,248,234,236,155, 55,111, 79,253,237,183,223, 56,105,230, +230,111,138,128, 22, 21, 97, 90, 90,122,152, 50, 2,193,201,221,123,150, 26,179,156,120,196,164, 40,208,192,165, 13,108, 44, 92, +145,145,163,192,195, 55, 87,240,246,221, 37,212,115,116,135,255,204, 94, 70,171,214, 28, 59,193,167,235,186,201,100,137,133,149, +181,179,116, 21,181,247, 90, 12,232,188,120,232,115,227,160, 47, 74,255,232, 11, 98, 91, 55,180,236,236, 12, 91,215,250,194, 49, +254, 43, 71, 3,239, 17,173,242,152,153, 4, 65,238, 38, 73, 98, 42, 65, 16,104,218,180, 89,218,166, 77,155, 42, 74, 5, 78, 53, +109,218, 44,141,195, 33, 93,138, 7,118,114, 23,203, 50,153,213,180,243, 61, 82, 35, 16, 8,231, 23,171,253, 29, 83, 47, 95,190, + 76, 13, 25, 50, 4, 27, 55,110, 20, 44, 88,176, 96, 49,135,195, 25, 95,129,121,239, 61,204,129,128,155, 69,253,250, 61, 86, 63, +124,200,242,116, 58, 34,239,233,211, 66,153, 84, 74,103, 20, 21, 9, 78,189,125,251,205,132, 31,126, 16,184,186,186,226,193,165, + 75,214,217, 10, 5, 43,211,104, 84, 50,153,140,165,105,250,105, 37,152, 11,109,109,237, 68,129,129,129, 94, 83,166, 76,121, 41, +149, 74, 23, 2,128,163,163,227, 90, 0,141, 0, 36,149,251, 12,123,246,156,144, 76,156, 56, 49, 38, 43, 43,107, 97, 85,237, 44, + 39,141,237,108,237, 68,199,247, 30,126,101,101,106, 76,218,186, 56,145, 60, 11, 11, 46, 45, 48,230, 51,128,170,158,107,125, 19, + 0,141, 43,249,237,135,152,132,177,177,241,217,223,127,255,221,142,199,227, 65,175,215,195,214,214, 22,137,137,137,144,201,100, + 40, 42, 42, 66,194,219, 40,212,117,117,197,138,128, 5,142,211, 23, 4,156, 85, 42,149,173, 62,152,204, 62, 46,128,172,163, 62, +210,236, 85, 84,197,224, 67,179,151,129,253, 94, 94, 18, 83, 82, 82, 32, 22,139,225,227,227, 35,126,248,240,225,253, 42, 72, 86, +249, 34,192, 67,219,183,111,111,122,236,216, 49,180,106,213, 10,230,230,230,184,123,247, 46, 34, 34, 34, 64, 81, 20, 41,151,203, + 33, 22,139,177,110,221, 58,184,185,185,161,168,168, 8, 73, 73, 73,214, 60, 30,207,230,131,140,246,101,152,119,131,239,174, 42, +136,187,179, 36,131,184,214, 43,240,248, 9, 76, 28, 62, 12, 14,108,252,125,243,250,196,170, 30,253,218,255,200,114, 92,251,154, +152, 54,181,244,244,233, 7,190, 64,140,233,243, 87, 34, 38,242,162,165,178,232,213,247,132, 62,213,117,249,166, 83,179, 42, 56, +119, 2, 0,233,234,234, 58,225,212,169, 83,166,101,170, 23, 14,167,172,230, 97,249, 34,240, 85, 20,124,175,246,122, 18, 4,129, +196,196, 68,216,217,217, 65, 44, 22,151, 21, 16,143,138,138,194,227,199,143, 81, 90,141,162, 18,204,145, 55,111,222,116, 53, 49, + 49,121,239, 11, 44,203, 34, 39, 39, 7, 52, 77, 67, 36, 18, 65,175,215,131,162, 40,232,116, 58,168,213,106,113,163, 70,141,166, +233,116,186, 39, 21, 97, 50, 12, 51,103,232,208,161,237,159, 60,121,226,177,109,219, 54,104,181,218, 13, 25, 25, 25, 24, 60,120, + 48, 24,134, 65,215,174, 93,219,177, 44, 27,189,120,241, 98, 0,192,236,217,179,117, 10,133, 98, 74,109,206,189, 68, 26,181,108, +217,210,227,214,173, 91,232,208,161, 3, 52, 26, 13, 54,110,220,104,182,103,207, 30,179,195,135, 15,219,206,159, 63,255, 64,118, +118,118,207,106, 48, 9, 0, 27, 28, 28, 28,166,118,234,212,201,184,164,134, 41, 14, 29, 58,132, 21, 43, 86, 4, 1, 88,124,245, +234,213,101, 23, 46, 92, 24, 61, 97,194, 4,172, 88,177,194, 95, 38,147,237,175, 12, 51, 33, 33, 1,182,182,182, 48, 51, 51, 43, + 30, 44, 41, 10, 97, 97, 97,184,113,227, 6,190,248,226, 11, 67,206,169,178,118,186, 15, 26, 52,232,192,241,227,199, 77, 83, 83, + 83,113,239,222, 61,212,173, 91, 23, 74,165,210,144,218,176, 55,255,132, 9,187, 82, 76,149, 74,165, 78, 73, 73, 17,175, 95,191, + 30,142,142,142,112,119,119,135,145,145, 17, 8,130,128, 78,167,171,170,188, 90,181,237,236,216, 17,220, 28,137,229, 0,115, 11, +203,239, 89,150,229, 22, 20,228,239,165, 32, 59, 29, 31, 15,237, 95,120,238,255,100,105, 1,224, 37,222,175,121, 40, 45, 35, 90, +151, 46, 93, 98,251,246,237, 75,148,110,157,157, 81,152,147, 99, 25, 99,231,208,228,132,157, 67,227,146,186, 95,228, 91, 14,199, + 50,198,222, 94, 89, 8, 0, 20,205, 34,244,173, 12,175, 98, 51, 16, 17,155, 1, 19,161, 97,202, 23, 13, 69, 23,123,172,178, 44, +212,242,255, 46, 90, 41,101, 62, 52, 84,177,187,135, 86,163, 68, 65,246, 27, 98,200,192,238, 70, 83,167, 78,134,163,163,179,109, +101,120,148,208,200,127,250,236,111, 44,172, 44,120,184,244,240, 26,218,125, 49, 16, 70, 66, 30,114, 11,212, 0, 1,188,139,191, + 1, 48,166,136,140, 73, 65,219,198, 34,244,236,225, 45, 62,119, 58,250, 7, 0, 75, 13,105, 47,157,246, 20,124,207,222,224,233, +117,208,229, 68,131,145, 37, 3, 38, 14, 80, 17, 98,228, 74,147,241,246,254, 25,131,214,140, 12,195,124,111, 99, 99, 35, 91,188, +120,113,167, 6, 13, 26, 80,211,166, 77, 11, 79, 78, 78,158,243,193,106,229,151, 93,187,118, 33, 54, 54, 86,178,122,245,234,187, + 57, 57, 57, 75,106,216,209, 1, 44,139, 45, 37,166,184,156,243,231,207,183, 12, 9, 9,241,223,178,101,139,253,140, 25, 51, 4, + 51,102,204, 24, 7,224,167,170,204,133,133, 66, 97,183,213,247,238,177,116, 90,154,230,200,246,237,130,157,161,161,139, 41,134, +113,178,177,179, 35,190,106,219, 86, 33, 34,201,156,220,204, 76,218,214,195,131,147,120,227,134, 53,107,108,156,126,245,234,213, + 66,185, 92, 94,105,233, 28, 14,135,163,172,200, 92, 88,145, 56, 58, 58,106, 43,242,225,170, 98, 66, 44,100, 88,150,178,168, 87, +143,237,209,245,203, 6,177,209,241,241, 70, 22, 22, 28,207, 6,117, 27,190,126,155,248,148,213,235,213, 4, 65, 20, 26,100, 43, +225,112,134,109,217,178,165,137,153,153, 25, 24,134,129,185,185, 57,178,179,179,161,213,106, 81, 88, 88, 8,109, 81, 1,180, 5, + 5,136, 72, 78, 68,251, 78,157, 48,164, 87, 15,239,195,231,127, 31,166,215,235,131,170,180,231, 53,109, 81,166,201, 90, 89,199, +250,191,182,160, 84, 89, 25,233, 90,223,194, 19,124,177, 24,221,231, 4,124,202,131,254,242,242,229,203, 87, 6, 13, 26,244,205, + 15, 63,252, 64, 74,165,210,107,137,137,137,237, 1,188,169,234, 71, 98,177,184,126, 78, 78, 14,228,114, 57,204,205,205,177,101, +203, 22,216,219,219, 67,169, 84,226,217,179,103,172,139,139, 11,113,247,238, 93,184,184,184, 32, 55, 55, 23, 20, 69, 65,165, 82, +101,104,181,218, 74,205,229, 37,230,193,222,179,123,225,106,244,139, 67, 29,156,137,132,103, 67,231,118,140,141,142,120,155,114, +253,198,195,159,104,181, 81,170, 44,237,230,130,122,173, 95,218,124, 63,111, 5,118,108, 88,134,232, 39,247,242,236,221, 10,119, + 26, 19,154,131, 85,181, 87,161, 80,168,223,190,125,107, 26, 30, 30, 14,130, 32, 96,110,110, 14,145, 72, 84, 33,217,170,133,144, +229, 53, 80, 10,133, 2,124, 62, 31,214,214,214,216,191,127,127,217,196, 91,183,110,221,170, 48,246,118,239,222,125,152,155,155, +155,105,249, 15, 91,183,110,141,201,147, 39, 99,247,238,221, 8, 13, 13,125,175,158,102, 70, 70,134, 84,167,211, 85,117,222,178, +204,204,204, 94, 3, 7, 14,124,113,255,254,125,179,253,251,247,131,166,233, 10, 95,129,129,129,120,252,248,241, 82, 0,111,107, +121, 31,125, 49,120,240,224,123, 71,143, 30,181,200,206,206, 70,233,189,161, 80, 40,160,215,235,209,176, 97, 67,130,166,233,234, +252,222, 72, 14,135,115,126,251,246,237,253, 38, 78,156, 8, 46,151, 11,173, 86,139,237,219,183, 99,193,130, 5,153, 37,139, 82, + 10,192,226,131, 7, 15,142,238,223,191, 63,154, 53,107,230,125,231, 78,229,158, 29,114,185, 28,114,185, 28, 60, 30, 15, 14, 14, + 14, 88,181,106, 21,180,218,226, 97,197,203,203,171,236, 49, 6,176,215,203,203,171, 95, 76, 76,204, 70, 20,251,174,125, 36, 14, + 14, 14, 3, 89,150,157,164,215,235,139, 58,116,232, 96,125,252,248,113, 83,137, 68,130, 23, 47, 94, 96,233,210,165,249, 12,195, +232, 25,134, 33, 84, 42, 85,130,157,157,221, 11,161, 80,104,172, 84, 42,243,114,115,115,215, 0,184,246,119,205,228, 4, 65, 16, + 60, 30, 15,227,199,143, 7,151,203,133,177,177, 49,212,106, 53,116, 58, 93, 25,153, 71, 13,205,210, 13, 26,136,173,185,224, 79, +180, 52,109,228, 63,100, 86, 95, 91, 71, 39,103, 88,152, 9, 17, 21,245,166,253,237, 91, 55,182, 11,184,209,123, 24,173,110, 79, +116, 82,193,159, 94,236,254, 67, 46,242, 15, 37, 90, 31,213, 60,228, 86,220,153, 67,244, 44,123, 42, 71, 34, 17, 80, 2,129, 40, +166, 84,203,101,111,175, 44, 36,136, 33,122,219,198, 3, 64, 83,186,146,129,130, 45,121, 25, 72,180,116,122,196, 70, 71,226,254, +245,223, 97,163,148, 32, 39,161, 57,192,111, 2,173,170, 0,106, 45, 85, 66, 74,244, 8,127,113, 11,133, 5,121,240,105,213, 23, + 32,201,199,149,225,153, 91, 19,125,191,106,217,148, 19,155, 18,137,214, 94,223,193,195,165, 3,146,165,133,144,201, 53,200, 47, + 84,163,185, 79, 0,178,243, 85, 40, 84,170,241, 38,246, 48,156,157, 60, 72,130, 27,223,213, 80,162,165,121,115, 22,154,183, 23, +192,119,111, 15, 65,195,254,224,184,251, 34,229,213, 29,132, 95,221,140,180,215, 15,192, 50,122, 56,122,181, 49,244, 33,217,126, +237,218,181, 54,237,219,183,231,118,235,214,173,217,149, 43, 87,154, 73,165,210,240, 18,130,209,172, 91,183,110,205,108,109,109, +177,117,235, 86, 21, 65, 16,219,107,217,217,101, 26,176,172,172,172,167, 0, 86,159, 61,123,118,251,228,201,147, 97,103,103,215, + 36, 61, 61,189,210, 31,102,243,120,205,198,172, 89,195,242, 56, 28, 54,104,199, 14,254,138,107,215, 54,253,118,240, 32,191, 75, +231,206, 4,203,178, 8, 11, 11, 19,173,223,177, 67, 52, 98,192,128,164,228,172, 44, 58, 36, 52,148,146,166,165, 21,101, 41, 20, + 43,164, 82,105,198,223,113,103,235,116,186, 71, 9,137, 9,206,173,218, 54,183,125, 25,149,240,186,103,151,175,190, 34, 73,146, +140,142, 79, 14,181,181, 53, 19,221,184,126,131,210,233,116,143, 12,193, 18, 10,133,125,187,116,233,194,205,207,207,135,147,147, + 19,178,179,179, 33,145, 72,138, 53, 14, 5,249,160, 10, 10,160, 43,148, 65,175,144, 35,225,217, 83, 52,247,168, 39, 60, 37, 20, +246, 85, 42,149, 85, 18,173,210, 85,102, 69,133,174, 75, 63, 19,152,154, 66, 32, 22,131,168,185,217,112,128,133,133,197, 2,153, + 76,118, 5,192, 42,138,162,166, 47, 88,176,160,245,182,109,219,108, 86,175, 94,109, 54,105,210,164, 83,114,185,188, 57,138,139, +170, 86, 54,129,197,209, 52,109, 13,192,254,214,173, 91,176,179,179, 67, 65, 65, 65,169,166, 69,171, 84, 42,141,114,115,115,161, +209,104,160,213,106, 97,102,102,134,231,207,159,231,209, 52,125,177,186,198,153,213, 39, 86,105,168,168, 37,214,222, 38,233, 20, +109,217, 49, 43,143,201, 95,190, 73,186, 18,192,166, 94, 30, 30,129, 20,115, 47,225, 93,228, 69,203,196,103,119,243,210,223, 41, + 60,246, 95, 73,168,202, 71,139, 5,192, 16, 4,193,122,121,121, 33, 59, 59, 27, 28, 14, 7, 34,145, 8, 98,177, 24, 11, 23, 46, +196,246,237,219,107, 67,180,140, 76, 76, 76,214,144, 36, 57,140, 36, 73, 91,189, 94,143,128,128, 0,244,235,215, 15, 2,129, 0, + 20, 69,149,105, 52, 75,181, 84,213,104, 58,194, 30, 63,126,108,246,248,241,123,195, 86,103, 27, 27,155,219, 26,141, 6,241,241, +241, 56,127,254,124, 39, 0, 33, 53,236,235,248,176,176,176, 94,190,190,190,135, 90,182,108, 89,159,101, 89, 52,105,210, 4,126, +126,126, 56,124,248, 48,194,195,195, 81, 80, 80,192,220,184,113,227, 55, 0, 27,107, 58,135,151, 92,223,134,131, 7, 15,126,112, +236,216, 49,203,220,220, 92,168, 84, 42, 40, 20, 10,156, 58,117, 10,237,219,183,135,141,141, 13,142, 30, 61, 74,179, 44, 91, 85, +223,147, 36, 73,238,223,179,103, 79,191, 9, 19, 38, 96,231,206,157, 8, 10, 10, 66,255,254,253, 49,108,216, 48,100,103,103,219, +111,216,176, 97,116,137,153,112,153,159,159, 31,228,114, 57,158, 61,123, 22,101,224, 51, 15,153, 76, 6,153, 76, 6, 99, 99,227, +242,207, 24, 1,224,240,230,205,155,135,251,251,251,195,195,195, 99, 89, 66, 66,194,102, 84, 16, 37,202, 48,204, 20,137, 68, 98, +201,229,114,173,105,154, 70,106,106, 42,158, 63,127,142,239,191,255, 62, 47, 47, 47,111, 50,128,100, 0,139,199,143, 31,191,106, +206,156, 57,101,247,210,156, 57,115, 46, 93,185,114,165,215, 95,173,205,241,242,178,104, 44,224, 8,103,229, 23,113,172,243,243, +243,203,198, 14,173, 86, 11,141, 70,243,158, 38,139,207,231, 89,183,110,238,118, 89,165, 44, 90,244,230,157,172,210, 2,233,222, +245,205,155,138, 76,204,253,219,119,232, 50,178, 71,175,111, 57,180, 78,135,224,224,139,248,245,215, 93,232,236,235, 5,143, 6, + 77, 48, 99,230, 44,115,141,150, 14,184,113,227,218, 2,139,199,247,175, 21, 21,202, 22, 86,133,249,255, 92, 46,151,144,171,203, + 21,154, 14, 43, 98,144, 37, 41, 28,242, 75,118,109, 44, 45, 45,119,232,245,250,206,102,102,102, 96,100, 49,120,243,252, 9,242, +242,121,208,168,244, 96,216, 98,178,101, 16,113,209,104,113, 47,248, 2,182,108,222,132,220,220, 92,248,126,221, 9,114,174, 43, +220, 92,221,160, 86, 41, 75, 30, 26,128,210,234, 96,107,239,142,151, 47,195,117,133, 10, 69,165, 3, 18,223,136,242,118,179,247, +130,134,250, 18, 70, 2, 1, 10,138,180,200, 47, 33, 89, 71, 79, 15,133, 70,169, 2,173,165, 64,107,117,176,117, 27,140, 47,236, +187,128,209, 95,108, 92,163,203,199,232, 65, 37,222, 3,149,120, 15,198, 95,206,196,239,107,135,127, 48,145, 26, 86,119, 55, 59, + 59, 59,235,245,235,215, 23,195,194,194, 6, 14, 29, 58, 20,119,238,220,153, 4, 96,106,137,249,102,210,208,161, 67, 17, 22, 22, +134,215,175, 95, 95,204,206,206,206,250, 35,122, 94, 32, 16,168, 52,154,226, 57, 86, 36, 18, 25, 85,243, 93,231,214,131, 6,145, + 5, 47, 95, 22,110,126,248,112, 89,224,254,253,252,110, 93,187, 18, 58,154, 6,163,215,163,129,167, 39,209,163, 71, 15,147,195, + 39, 79, 90,115,116,186,199,243,166, 79,191,181,123,212,168,162,167, 10,133,161,142,230,117, 74, 76,134, 0, 80,167,138,207, 12, + 22,141, 70,179,109,202,196,177,221, 66,238, 61,112,117,115,117, 54, 11,190, 17, 18, 46, 52, 22,144, 30,117,235,115,242, 11,242, +184, 43,151, 45, 50,214,104, 52,134,146, 86,111, 27, 27, 27,100,100,100, 32, 54, 54, 22, 26,141, 6, 58,157, 14,140, 82, 1,109, +190, 12,218,130, 60, 16,106, 21,132,122, 61,212, 57,153,168,227, 81, 15,248,111, 68, 98,181,166,168,138,136, 86,233,214,200,204, + 12,124, 19, 49, 72, 30,207,224,226,232, 0, 90,182,105,211,230,228,153, 51,103,248,227,198,141,107,123,243,230,205, 29, 0,146, + 37, 18, 73,215,165, 75,151, 62,221,177, 99,135,112,242,228,201, 13, 55,110,220, 56, 26,192,222,202, 64,212,106,245,201,203,151, + 47,143,112,119,119,183,143,136,136,128, 90,173, 6,195, 48,232,221,187, 55, 80,236, 91, 3, 0,136,142,142, 86,169,213,234,172, +200,200,200,194,228,228,100, 10, 6, 68, 9, 46,223, 38,125, 84,152,113,111,144,189,131,243, 99, 35,227, 58,117, 89,249,203,129, +179,191,115,222,176,249,180, 68,125, 45, 62,190,104, 73,247,122,235, 20, 69,175,190,183,112,145,239,188,118, 41,193, 16, 71,248, +178,232, 66,107,107,107,112,185, 92,240,120, 60,240,249,124, 16, 4,129,153, 51,103, 98,223,190,125,213,153, 14,223, 35, 89,166, +166,166,175, 87,172, 88,225, 50,121,242,100,190,145,145, 17,242,243,243,113,244,232, 81,140, 31, 63, 30,191,254,250,107,133,254, + 47, 6,152,148, 62,212,150,250,143, 26, 53, 10, 90,173, 22,126,126,126, 8, 12, 12,244,215,235,245, 33,181,120,164, 31,135,135, +135,123,134,135,135,155, 1,232, 63,108,216,176,131,131, 7, 15, 70, 72, 72, 8, 46, 94,188,216, 9,197, 65, 31, 42, 0,107, 1, +216,149,108,171,122, 62, 77,236,237,237,119, 49, 12,211,223,214,214, 54,220,203,203,203,231,216,177, 99, 22, 89, 89, 89,165,193, + 15, 72, 76, 76,196,129, 3, 7,164,251,247,239, 47,212,235,245,214, 36, 73, 94,150,201,100, 11,171, 32,108,251, 55,111,222, 60, +182,196, 28,136, 51,103,206,176,155, 54,109, 34,150, 46, 93,138,252,252,124,116,238,220, 25,123,246,236,153, 37,151,203,155,109, +218,180,105,226,144, 33, 67,176,114,229, 74, 40, 20,138,205,213, 45, 86,170, 32, 95, 4,128,175, 54,111,222,236,238,239,239,143, + 51,103,206,160,101,203,150,198, 9, 9, 9,187, 1, 76,168,168,255, 88,150, 69, 66, 66, 2,148, 74, 37, 30, 60,120,128,101,203, +150,229,151, 35, 89,179,166, 78,157,186,106,214,172, 89, 88,179,102, 13, 27, 17, 17,145, 53,120,240, 96,251,125,251,246,113, 26, + 52,104, 48, 75,169, 84,254,101, 68,171, 97, 3,171,117,173, 91,118, 88,224,232,220, 0, 71,143, 29, 71, 94, 94, 94,217, 53, 41, +189, 46, 44,203,162,168,168, 8, 25, 25, 25, 48, 55, 51,197,134,141,171,190,153, 54,105,172, 43,138,211, 96,124,172,178,244,176, +220, 56,120,216,184,185,126, 35,198, 34, 34,252, 5, 14, 31,220,139,200,136,176, 50, 60, 90, 71, 33, 38,234, 57, 98,162,158,195, +222,193, 29, 61,186,117, 34,134, 15, 31,222,123,212,136, 97,182, 0,254,180,212, 17,255, 96,109, 22,240,113, 30,173,125,239, 17, +173,106,212,117, 54,150,150,150,175, 79,156, 56, 97,237,235,235,203,161,105, 26,215,130,131,241,253,212,255, 96,244,168, 0, 80, +176, 4,173,229,131,225, 27, 25,212, 18,149, 74, 9, 22, 44, 20, 10, 5, 66, 67, 67,193, 50, 52, 14,239,219, 4,150,101,202,136, + 22,192, 66, 75, 81,112,118,107,136, 93,129,171,105,240,120, 79,161,171, 56,117, 77, 97, 46, 71,175,163, 89, 72,178, 82,144, 34, +141,132,185,169, 27,184, 60, 55,228,202,148,224,146, 14,208,169,163,161, 47,249,173, 82,145, 6, 21,245,105,253,167,175, 64,123, +202,214, 96,208, 85,169, 84, 71,142, 28, 57,242,205, 47,191,252, 34,232,211,167,143,215,233,211,167,191, 2,128, 62,125,250,120, +153,153,153,225,200,145, 35, 90,149, 74,117,228, 15,212,248,116,105,211,166, 13,242,243,243,145,152,152, 24, 94,229,185,105,181, +214, 98, 59, 59, 78,214,157, 59,186,236,252,124,215, 46, 93,186, 16, 58,154, 6, 73, 16,200, 43, 40, 64,114, 82, 18, 44, 44, 44, +136,215,209,209,226,237, 51,102,156,243,242,241,225,150, 70, 36, 26, 34, 23, 47, 94, 20,161,216, 47,171,202,207,106, 40,138,172, +204,140,177,211,167, 79, 63,119,228,200, 81,243,204,172,204, 24,161, 64, 64,139,197, 70, 78,163, 70, 78,227,202,100,178, 17, 0, +228,134,130,229,231,231, 35, 33, 33, 1,198,198,198,224,243,120, 96, 84, 74,232, 21,114,168,243,178,193,161,180, 16,232,245,176, + 18, 9,225,106,111, 15, 55, 91, 27,131, 48, 99,111, 95, 47,115,124, 47,111, 46,220,208,198, 27, 2, 19, 49, 4,166, 98, 76,187, +116,183,100, 53,202, 7,150,254,100, 8,172,141,179,179,243,239,199,142, 29,227,103,103,103, 35, 44, 44, 44, 28, 64, 1, 0, 83, + 0, 76, 84, 84,212,205,200,200,200,190, 37, 81,119,213, 69,139,109, 58,123,246,108,119, 95, 95, 95,186,110,221,186, 38, 89, 89, + 89,174,249,249,249,140, 84, 42,125, 79, 37,116,253,250,117, 97, 81, 81,145,130, 97,152,115, 37, 36,171,218,252, 69,179,191,115, + 54, 10,125,137,153, 29,123,214,105, 98,102,211, 20,121,244,203, 38,143,195,165, 51,103,127,231,188,109,243,105,137,218,152,208, + 28, 36,244,169,174, 92, 35,181,161, 78,204, 44, 80,236, 43, 21, 26, 26,138,228,228,100, 36, 36, 36,188, 71,168, 38, 77,154,132, +195,135, 15, 27,164,209, 50, 49, 49, 89,179,124,249,114, 23,127,127,127,126, 57, 82,132,233,211,167,163,160,160, 0,129,129,129, +152, 62,125,122,141, 39,254, 15,164, 94,151, 46, 93,250, 56, 58, 58, 34, 55, 55, 23, 14, 14, 14,240,245,245,237, 23, 18, 18, 82, + 23, 64, 98, 45,239,251,105, 61,123,246, 92,181, 98,197, 10,232,116, 58,140, 31, 63, 30,239,222,189, 59,249,238,221,187, 45,110, +110,110, 51,231,207,159,111,111,111,111,143,161, 67,135,154,208, 52, 61,168, 50, 16, 43, 43,171,181,123,247,238, 29,209,167, 79, + 31,146,162,168,175,111,223,190,141,164,164, 36,104,181, 90,208, 52,141,184,184, 56, 76,159, 62, 93, 90, 18,221, 24,103, 64,187, +198, 45, 94,188,120,236,204,153, 51,177,126,253,122, 44, 95,190,252, 55,115,115,115,159,230,205,155,183, 88,190,124, 57,230,205, +155, 7,119,119,119, 88, 91, 91,127,177,116,233, 82,239, 57,115,230, 96,219,182,109, 88,182,108,217,111, 0, 14,212,230, 66, 48, + 12, 67,172, 91,183,174,217,230,205,155, 29, 75, 73, 22, 73,146, 56,113,226, 4, 94,190,124,217, 47, 62, 62,190,162,223,236,113, +112,112,152,228,232,232, 40,184,113,227,134,216,221,221, 29, 52, 77,235, 74, 72,214,118, 55, 55,183,239,227,226,226,208,167, 79, + 31,196,199,199, 31, 1, 48,218,220,220, 92, 49,103,206, 28,145,177,177,177,185, 82,169,252,171, 38,111,112, 72, 98,204,154,149, +243,240,236,101, 52,206,158,229,227,217,179,103,176,183,183,135, 80, 40, 4,203,178,208,104, 52,200,206,206,134,142,210,160, 73, +227,122, 56,180,127, 29,178,178,178, 1,146,168,212,229,134, 32,137,145, 99,255, 51, 16,247, 31, 4, 99,247,238,189,144,203, 21, +149, 44,190,141,208,192,203, 27,206, 78,118, 72, 77, 75, 5, 65,194,230,207, 60,215,127,184,233,176,108, 8,130, 33,233, 29,202, +139,133,133,197,150,160,160, 32,235,206,157, 59,115, 20, 10, 5, 24,134, 65, 7, 95, 95,204,244,247,199,197, 99,199,224,217,214, + 15,132, 86, 12, 90,100, 88,212,131, 90,165, 68,163, 22, 95, 97,200,208, 97, 72, 73, 78, 70,207,190,131,161, 86, 43,203, 86, 24, +165, 26, 45,173,150,130,141,157, 43,174, 95,191,206,193,248,241,111,176,189, 98,165,132,158, 18,188,138,137, 83,183,151,169, 94, + 34,244,217, 97, 80, 26, 10, 77,154, 44, 5,197, 88,195,206,101, 18,116,186,243, 40,204,190, 93,108,198,176,238,140,180,148, 20, +144, 28,254,235,218, 94, 65, 70,145,253, 73,131,110, 65, 65, 65, 65, 66, 66,194,233,208,208,208,145,131, 6, 13,194,245,235,215, + 39, 2,192,160, 65,131, 16, 26, 26,138,132,132,132,211, 5, 5, 5, 5,127, 68,111, 59, 58, 58,246,239,212,169,147, 95,235,214, +173,113,233,210, 37,176, 44,123,223,160, 7,155,199, 99, 73,146, 4,195, 48, 32, 0,228,202,100,120,247,238, 29,114,115,114,160, +211,233,160,144,203, 25,111, 47, 47, 57,203, 48,166, 53,105, 79,249, 8, 67, 84, 16,117, 88,250, 89, 45, 78, 53,249,233,227,135, + 41, 69,114,185,173,165,133,101,145, 64, 32,208,231,203,100, 5,111, 94, 71,104, 13,156, 28, 74, 37, 42, 50, 50,210, 39, 61, 61, + 29, 41, 41, 41,160, 21, 69,224,104,180, 32, 53, 74,116,253,234, 75, 24,131,133, 17, 24,240, 24, 29,120, 28, 30,138,138,163,243, +170, 53,119,232,203, 45, 18, 74, 73, 22, 65, 16,197,230, 66, 19, 19, 8,196,166,239,105,184, 12,185,159,132, 66,225,177, 83,167, + 78, 57, 58, 59, 59, 99,229,202,149,112,113,113,249,194,201,201, 73,105,110,110,110,108,111,111,143, 70,141, 26,225,171,175,190, +194,213,171, 87, 97,192, 53,160, 89,150,237,113,255,254,253,185, 15, 31, 62, 28, 98, 98, 98, 66,204,152, 49,131,219,187,119,111, + 8,133, 66, 40,149, 74,228,231,231,227,248,241,227, 57, 12,195,148, 6,165, 88,139, 68,162, 3, 4, 65, 36, 42, 20, 10,255, 15, + 1, 15,253,210,196, 41, 43,143, 25,207,202, 69, 3, 59,246,172,211,164, 75,207,110,168,231,217, 5, 93,122,166, 0,192, 58, 43, +110,146,223,207,139, 45,206, 89,152, 18, 7,174, 95,187,177,204,183, 99,151,197, 11,228,119, 86,173,223, 39,171,214,159,142, 32, + 8, 48, 12,243, 94,238,160, 15,143,143, 30, 61, 26, 39, 78,156,168,246, 58,146, 36, 57,108,242,228,201,252, 15, 52,207,144, 72, + 36,232,219,183, 47, 6, 13, 26,244, 30,209,178,177,177,129,131,131, 3,146,146,146, 0, 32,215,192,251,106,230,184,113,227, 8, +149, 74,133, 9, 19, 38, 32, 48, 48, 16,126,126,126, 68, 72, 72,200, 76, 0,254, 53,189,217, 73,146,220, 48,127,254,252,185,211, +167, 79, 71, 94, 94, 30,174, 92,185,130,222,189,123,227,196,137, 19,182, 87,174, 92, 89,211,185,115,103,112, 56, 28, 92,186,116, + 9, 52, 77, 87,153,235,139,207,231,247,239,211,167, 15,153,154,154, 10, 62,159,143, 86,173, 90, 33, 45, 45, 13, 74,165, 18, 18, +137, 4,179,102,205,202,200,205,205,237,100,232,115,196,231,243,253,103,206,156,137,160,160, 32, 4, 4, 4, 28, 4, 48,161,160, +160, 96,200,195,135, 15,131, 6, 12, 24, 0,137, 68,130,115,231,206, 97,217,178,101,196,232,209,163,177,115,231, 78,204,154, 53, +235,183, 18,173, 83,101, 55,126, 81, 86, 86,150,121,253,250,245,145,153,153, 9,185, 92,142,115,231,206,217, 93,189,122,181,174, +179,179,179, 89, 66, 66,130,254,167,159,126, 18,248,251,251, 99,203,150, 45, 8, 11, 11,195,225,195,135,209,165, 75, 23, 58, 62, + 62,190, 66, 45, 89, 73,202,134,115, 44,203,222, 48, 49, 49, 65, 81, 81, 81,233,115,247, 67, 64, 64,192,244,181,107,139,149,236, +233,233,233, 24, 51,102,204,168, 91,183,110, 49,157, 59,119, 22,241,249,124,168,213,106,197, 95, 57,107, 51,122, 6, 0,131,186, +174, 98, 4, 95,220,143, 23,225,241,120, 17, 30, 9,129,176,216, 9, 94,165, 82,162, 69,147, 6,104,219,170, 13,210,165, 18, 28, + 57,188, 31, 86, 54,206, 85,142, 35, 44,203,130,207,213,195,219,203, 1,199, 14,239,197,165, 43,183,112,248,200,241, 50,159, 55, + 46,151,135,230, 45,218,162, 85, 43, 95,196, 39,196, 97,255,254,221,176,181,115,253,108, 28,172,165,148,153, 14,203,111, 63, 96, +254, 93,124,125,125, 57,114,185, 28,106,181, 26, 25, 25, 25, 72, 74, 74,130,133,165, 5,226,211, 19,209, 73, 68, 33,131, 41, 68, + 84,248,107, 61,193,225,133, 85,247,135,125, 58, 54, 7, 58, 54,199,247,227,252,170, 88,178,178, 48, 49,179, 41, 54,221,208,116, + 44,182,109,163, 43, 35, 90,180, 94,119, 51,248,198,237, 54,227, 70,247,231, 93,191, 29, 8,157,150,129, 74,103, 14,133, 90, 11, + 5,197, 3,105,222, 27,200, 9, 1,135, 43, 68,187,102, 13,112,238,236, 85,138,165,117,183, 12,190, 64,246, 62,160, 51, 35,203, + 17,173,172, 15,236, 14, 86, 6,155, 14,203, 38, 94,189,254,196,209,163, 71,191,253,242,203, 47, 69,157, 59,119,174, 95, 50,113, + 82, 71,143, 30, 85,150, 36,195,172,169,188,151, 13,222,193,193,161, 5,159,207,247,235,221,187,119,139,177, 99,199,226,205,155, + 55, 56,114,228, 72, 76,131, 6, 13,238, 72,165,149, 71,100,115, 4,130, 92,121, 86,150,133,184,110, 93,174,165,169,105,250,213, + 43, 87,220,187,117,239, 78,164,164,164, 32, 55, 55, 23,106,181, 26, 97,225,225, 44,143,195, 73, 35,204,204,200,232,151, 47, 73, +142, 64,144, 91,153,182,177, 2, 73,170, 38,234,112,109,109,181, 91,174,142,150,245,151, 5, 76,169,167,214,168,125, 10, 11, 11, +105, 46,143,199,115,113,176, 72,142,142, 51,124, 76,212,104, 52,151,110,222,188,249,109,183,110,221,132, 49,175,194, 64, 23, 20, + 64, 91,144, 15, 62,163,135, 85,139,102,224, 80, 26, 64,171,131,179, 55, 11,181, 76,132,144, 39,209, 58,141, 70, 83,109, 82,195, + 82,162, 69,126, 64, 12, 4, 98, 49,132,166,102, 16,138,197, 31, 18,134,234, 86,114,162, 30, 61,122,116,109,215,174, 29, 88,150, +197,190,125,251, 64, 81,148,128,162, 40,104,181, 90, 80, 20,133,194,194, 66, 28, 62,124, 24,187,118,237,122, 8,224, 55, 3, 78, +159, 54, 54, 54, 30, 64, 16,132, 29,151,203, 85,218,218,218,154,156, 56,113,162, 44,221, 68,243,230,205, 97,106,106,202, 71, 73, + 82, 72, 59, 59, 59,222,175,191,254,106,209,175, 95,191,123, 21,154, 59,154,124, 49,175, 30,109,217,209,200,184, 78, 93, 51,155, +166,168,231,217, 5, 0,208,189,239, 56,212,107,224,134,194,156, 87,117,213,170,164,129,124,110,190,229,235,109,146, 55,198,125, +124,198, 42,178,238,190, 67,197,225,253, 21, 78, 20, 36, 73, 86,106,142, 53,132,100, 21,115, 22,210,182,212,207, 7, 0,114,115, +115, 33,149, 74, 17, 21, 21,133,134, 13, 27, 34, 47, 47, 15,206,206,206,208,106,181,104,221,186, 53, 84, 42, 21, 54,111,222,140, + 7, 15, 30, 60, 4, 48,203,128,255, 48,246,244,244, 28,211,162, 69, 11, 92,185,114, 5,207,158, 61,147, 4, 7, 7, 59,251,250, +250,162,110,221,186, 99, 19, 19, 19, 23,149,152,250, 12, 21, 19, 95, 95,223, 25,211,167, 79, 71,100,100, 36,166, 76,153,146,155, +154,154,122,238,228,201,147, 19,150, 45, 91, 70,246,236,217, 19, 82,169, 20, 27, 54,108,208, 63,120,240, 96, 35,128,149,213, 92, +199,183,169,169,169, 46,106,181, 26,121,121,121,160,105, 26, 74,165, 18, 87,175, 94,197,225,195,135, 51, 75, 72, 86,172,161,141, +107,214,172, 89, 35,146, 36, 17, 20, 20, 4, 0, 75, 80,156,177,255,220,192,129, 3, 37, 63,253,244,147,243,194,133, 11, 49,113, +226, 68, 80, 20,133,245,235,215, 99,225,194,133,151, 75, 72, 86, 85,131,232, 47, 14, 14, 14,147,166, 76,153,242,197,156, 57,115, + 16, 26, 26,106,247,252,249,243, 86, 97, 97, 97,112,117,117, 69,110,110, 46,215,218,218, 26, 91,182,108,193,236,217,179,207, 0, +200,121,244,232,209,176,132,132,132,181, 0, 54, 84, 67,218,247, 56, 59, 59, 79, 98, 89,150, 85, 42,149, 73, 1, 1, 1, 27, 86, +175, 94,141,217,179,103,227,245,235,215, 40, 40, 40,128,169,169, 41, 49,127,254,252, 49, 75,150, 44,193,248,241,227, 89,133, 66, +177,235,175,158,168, 89, 86, 15,101,126, 36,244, 26, 75, 52,111,210, 16,205,125,234, 32,248,246, 11, 0, 64,215,193,190, 80, 42, +138,112,240,224, 62,196,198,190, 3,151,199,131,133,149,131, 33,154, 64,104, 11,223, 66, 70, 73,209,173,115, 43,244,238,217, 9, +191, 29, 58, 1, 90, 71, 97,194,184, 17,200,151,201,112,232,208,126,196, 39,196,129,203,227,193,218,230,207, 79,132, 90, 21, 23, +249,199, 19, 45, 3,204, 79, 96, 24, 6, 18,137, 4,207,159, 63, 71, 98, 98, 34, 68, 34, 17, 84,180,158,217,125,243, 1, 67, 16, +252, 52,134,101, 31,178,116, 89,150,226,143, 49,244,122, 73,185,140,181,230,150,150,150, 2,141, 70, 5,154,214,149,155, 85, 8, +128, 0,248, 92,192,209,169, 30, 82, 83, 82, 89,181, 90,125,183,202, 21,148, 70,189,229,194,185, 83,211,191,106,239,107,211,187, +235, 10,156, 59,191, 20,249,133,133, 80, 83, 60, 40,212, 20,148,106,192,194,202, 11,173,155, 52, 69,122,122, 46, 94, 61, 11,145, +115, 53, 74, 67, 28, 69,223,109, 95, 60,206,115,220,247,243, 96,236,222, 30,154,168,115, 96,228,153,101, 26, 45, 35,177, 37,172, +220,188, 33, 83,104,112,234,214, 11,160, 6,165, 94,178,178,178,148, 28, 14,231,232,244,233,211,215,191,120,241,220, 5, 0, 94, +188,120,145, 38,149, 74, 23,100,101,101,213, 84, 39, 93,154, 13,158, 48, 50, 50,126,209,160, 65,131,244, 86,173, 90,153, 15, 28, + 56, 16, 54, 54, 54, 8, 11, 11,195,218,181,107,223, 82, 20, 53, 47, 36, 36,164, 74, 83,143, 86,171,149,188, 56,127,222,172,211, +127,254, 99, 49,175, 95,191, 13,211,167, 79,223,178,114,229, 74,158,167,167, 39,161,163, 40, 68, 68, 68,176,199,142, 30,213,237, + 90,184,112,179,192,196,132,251,244,194, 5, 58, 60,122,154, 0, 0, 32, 0, 73, 68, 65, 84, 30,173,209, 72,254,238,155,216,217, +217,185,163,239,215, 29,188, 55,254,178, 13,106,149, 28, 79, 66, 47, 35, 63, 63, 27,123,247,157,245,118,118,102, 59, 74, 36,146, + 16, 67, 9,240,129, 3, 7,230,182,109,209,162,133,135,171, 43, 34,146, 19, 33, 96,244,224,211, 52, 56,148, 6, 36,173,134,171, + 15, 11,130, 52,133, 52,163, 16,171,131, 78, 71, 26, 66,140,191,248,166, 63, 86,166, 21,128, 32, 8,108,250,210, 7, 2, 83, 49, +248, 38, 98, 76,251,253,118, 25, 49,184,180,114, 33, 4, 98, 49,234,183, 53, 40, 33,188,242,206,157, 59,207, 35, 34, 34, 90,251, +248,248, 96,238,220,185, 72, 74, 74, 2,195, 48,200,204,204, 84, 75,165, 82, 73,118,118,118, 18,138,243,255, 4, 86, 51,137,149, +103, 29,206, 33, 33, 33,101,230,134, 91,183,110,193,201,201, 9,230,230,230, 40, 44, 44,196,228,201,147, 45,126,252,241, 71, 0, +192,243,231,207, 81,158,160,124, 40, 17, 47,162, 54,202,138,216,124, 86,254,114, 96, 30,253,178, 73,151,158,169,232,222,119, 44, +110, 92,250, 13,183,131,111,194,138,155,148, 8,147,162,171, 57,137, 57,133,105, 10,207, 61,222, 45, 39,112,164,138,224, 61, 51, +250,199,112, 28, 29,153, 83, 11,119, 23,202,170,106,171,167,167, 39,236,237,237,203,124,180,184, 92, 46,198,143, 31, 15,150,101, + 13, 37, 89, 37,115, 13,147,173, 86,171,237,141,140,140,144,145,145,129,184,184, 56,196,199,199,151,165, 14, 96, 24, 70,247,195, + 15, 63,240,102,204,152,129,221,187,119,227,238,221,187, 15, 1,172, 0, 96,232, 98,109,196,208,161, 67, 77,181, 90, 45,142, 31, + 63, 78, 3,232,123,234,212,169,231,173, 91,183,230,246,234,213,203,116,231,206,157, 35, 74,250,200, 96,162,101,102,102,198,167, + 40, 10, 59,119,238, 68,106,106,106, 71, 0, 81, 79,159, 62,221, 51,116,232,208, 93, 62, 62, 62, 13, 34, 35, 35,223,201,229,242, +105, 0, 94, 85, 7,150,153,153, 57,174, 85,171, 86,167, 24,134,113,239,214,173,155,201, 47,191,252, 98, 22, 29, 29, 13, 23, 23, + 23, 48, 12, 19,129, 26,150,176,122,247,238, 93,148, 84, 42,245,238,212,169, 19,174, 94,189,186, 78,175,215,175, 1,176,126,234, +212,169,206,201,201,201,104,209,162, 5,172,172,172, 16, 29, 29, 93, 36,149, 74,119,161,184, 36, 81,117, 42,220, 4, 0, 11,246, +236,217,211,116,207,158, 61,126, 86, 86, 86,237,194,194,194,112,255,254,125,108,220,184, 17, 63,254,248, 35, 58,116,232,128,185, +115,231,230, 0,240, 3, 64, 39, 36, 36, 24,148, 55,175, 84,179, 5, 0, 45, 91,182, 76, 95,187,118, 45, 38, 76,152,192,254,250, +235,175, 91,143, 30, 61,234, 63, 98,196,136,178, 57,112,204,152, 49,236,145, 35, 71,198,160,184, 12,211, 95, 41, 58,138,210,194, +204,170, 30,228,178, 20,100,167,134, 66,100,234,128,158, 93,154, 65,169,210,226,226,133, 51,120, 21, 17, 14,146, 36, 97,239,224, + 10, 11, 75, 27,196,196,188, 3,170,142, 54,214, 81, 20, 5, 83,203, 58,144, 23,164, 66,155,245, 2,198, 98, 59,140,253,207, 64, + 40, 85, 20,206,158, 59,131,200,200, 87,224,112, 56,112,112,116,133,185, 69, 49, 38,193, 86, 29,193,252, 89, 0, 84,144, 79,171, + 90,162,197,225,112,238, 92,187,118,237,187,182,109,219,114, 99, 99, 99, 17, 27, 91,188,184,201,207,207,167, 9,232, 79,103, 69, + 92, 24, 94,197,207,187,161, 36, 58,163,124,237, 66,177,169,169, 36,250,109,148,125,126, 94, 38,194, 95, 62, 64,108, 76, 4, 18, +227,163, 64, 81,106,112, 72, 18, 36,135, 68,157,122,141,241,224, 97,168, 86, 77,211,161,149, 97, 22,183, 35,190,200,196,206,115, +216,170,149,139, 46,205,158,183,220,120,200,119,187,241, 42,250, 13,228,180, 3, 88, 22,112,176, 54, 65,115,143,249,144,164,103, + 35,232,183,157, 74,134,162, 70,126,144, 67,235, 35, 76, 0,176,207, 65,163, 93,251,126, 27, 31,120,248,216,242,121, 51, 38,219, + 15, 24, 52, 18,130,188, 55,208,165,191, 64,189,214,189, 65, 8, 45,112,229,250,109,132, 60,127,147,201,232,217,229,246,185,248, + 53,166, 26,204,242, 34,147,201, 30,101,100, 72, 93,202,101,129,119, 17, 10,141,170,139,142,251, 16,243,189,140,243, 28, 14,217, +114,213,170, 85, 58,123,123,123, 42, 50, 50, 18,187,119,239,102, 94,188,120,113,157, 36,201,237, 82,169, 84, 93, 29,166,173, 78, + 23,126, 44, 32,160, 81,155, 65,131,216,225, 51,102, 40, 33, 20,206,220,176,105, 83, 64,118,126,190, 19,203, 48,176,181,178, 74, +219,176,112,225,218,239,134, 14,205,127,253,224,129,113,232,249,243,198, 2,154,126, 97, 64, 59,255, 8,169, 20, 83, 34,145,132, +220,189,123, 31, 7, 3,127, 1, 69,105, 32,149, 36, 3, 0,114,114, 11, 80, 13,201,250, 16,147, 85, 42,149,131,150,252,248,227, +227, 37,179,253, 29,190,238,218, 13, 41,225, 97,160,242,178, 65,232,104,240, 8, 46, 20, 89, 34,100,101,202,177,224,200,201, 44, +185, 82, 57,168,130, 73,162,194,118,150,106,172,132,102,166,224,155,136, 33, 16,155,190,167,197, 50, 50, 51,131,192, 68, 12,174, + 64, 80,145, 3,247, 71,152,114,185,124,240,119,223,125,247,234,233,211,167,150, 19, 38, 76,192, 87, 95,125,245, 82,165, 82,117, + 6, 80, 84,219,235,201, 48,140,228,235,175,191, 38, 9,130, 16,143, 28, 57, 82,152,157,157, 93,150, 89, 93, 46,151,227,234,213, +171,104,216,176, 56,170,255,245,235,215,104,220,184,113,165,152, 19, 23, 68, 74, 0,172,156,253,157,243,134,199,225,210,153, 0, +214,213,107,224,138,219,193, 55,113,255,118,104, 64, 59, 31,102,219, 55, 35, 91,255, 36,234, 60,116,158,119,203, 9, 28,177,153, + 35, 14,157, 61,195,137,122,177,127,181, 82, 25, 81, 31,187,207,253, 80, 89, 59, 9,130, 0,203,178, 31,165,114,224,112, 56, 56, +122,244,104, 77,207,253,100, 96, 96,224,212, 41, 83,166,240,165, 82, 41,222,190,125, 11,133, 66, 1, 35, 35, 35, 4, 7, 7,211, + 0,118, 30, 61,122, 52,248,232,209,163,189, 80, 28, 77,116,171, 38,247,167,137,137,201,244,158, 61,123,226,237,219,183,120,246, +236,217, 25, 0,175, 94,190,124,121, 38, 54, 54,118, 88,135, 14, 29,240,219,111,191, 77, 87,169, 84,129, 53,193,100, 24,166,124, +206,164,210,138, 15,225,114,185,188, 93,104,104,104, 77,251, 93,154,155,155,219,190,132, 88,167,218,219,219,155,133,135,135,195, +205,205, 13, 20, 69,181,173,233,189, 84, 80, 80,240,203,246,237,219,127, 29, 55,110, 28,126,250,233,167,145, 39, 79,158, 28,249, +205, 55,223,160, 79,159, 62, 56,112,224, 0, 94,189,122,181, 14,134,149, 21,171,232,220, 95, 1,120,101,111,111,255,189,171,171, + 43, 54,110,220,136,136,136,136,181, 43, 87,174, 92,248,234,213, 43, 52,108,216, 80, 24, 21, 21, 69,215,102, 12, 1, 0, 51, 51, + 51, 51,157, 78,135,243,231,207, 63, 1, 48,123,228,200,145,118, 91,182,108,241, 19,139,197,200,203,203, 83, 69, 70, 70,142, 0, +112,225,175, 30,235, 88,130, 88, 60, 97,226,204, 61, 19, 39,140, 48,106,213,178, 57,148,133,105, 80,201, 51,161, 44,202,192,246, +192,235, 32, 8, 18,182,182,142,176,115,112, 65,114,114, 10, 30, 94,190,162, 85, 40, 85, 91, 4, 58,102, 93,213,152, 51,138, 49, + 91, 20, 99, 42, 21, 89, 80,201,179,202, 48,237,236,156, 74, 48,147,241, 32,244,138, 90,165, 80,252,162,101,137,159,255,228,115, +255, 39, 75,205,106, 29,150,151,252,252,252, 89,147, 39, 79,238,188, 96,193, 2,107,154,166, 57, 86, 86, 86, 72, 78, 78,166, 79, +159, 62,157, 39,151,203,103,213,166, 53, 92, 30,239,149,167, 87,195,206, 3, 6, 12,160,251,247,239,199, 31, 53,174, 23,215,214, +206, 14, 5,178, 92,196,188, 13, 67,244,155, 23,240,108,216, 12,203, 86,110, 6, 44, 44,170, 45, 36, 89, 82, 86,167,239,138, 37, + 63,156,104,223,177,135, 89,195,198,205,248,205,235,155,131,210,209, 72, 75, 75,195,133,243,225, 84,228,243,251,133, 12,173, 29, +166,204, 49,172, 4, 79, 8, 64, 35, 23,123,125,236,168,163,107, 54,108,159,187,115,239,193,121, 11,102, 78, 48,233,224,219, 29, + 17, 55,127,195,153, 75, 39, 20,106,141,118, 3,159,131, 77,145,185, 80,198,212,240, 26,168,213,106,234,195,249, 84,173, 86, 83, +159,218,211, 7, 14, 28, 64,102,102,166, 54, 41, 41,233, 26, 77,211, 39,171, 40,246,252,145,108, 7,180, 3, 53,154,155, 75,124, +125,123, 45, 9, 14, 54, 26, 51,127,190,118,228,168, 81, 63, 64,163,161, 32, 16,176, 92, 19, 19, 18, 66, 33,239,245,131, 7,198, + 91,167, 78,181, 34,180,218, 27, 7,171, 72, 27, 80,129,252,225, 81,135,165, 26,173, 78,157, 58, 96,204,132,217, 80,149,211,104, + 61,122, 22, 3, 13, 5,131, 53, 90, 37,146,146,148,154,218,110,230,226, 37,103,135,245,236,234,237,227, 94,231,255,216,187,238, +176, 40,174,245,253,206,204,246, 93,138, 72, 71, 20, 43, 74, 81, 80,108,216, 16, 75,236,137, 53,118, 81, 19,141,221, 88, 34,234, + 53,150, 68, 33,154,216, 53,106,212, 88,110,236, 45, 98, 23, 13, 26, 27, 42, 74, 81, 68, 69, 4, 4, 68,122,221, 58, 51,231,247, + 7, 69, 68, 88, 22, 52,191,155,155,187,239,243,204,179, 59, 59,103,190, 61,115,206,204, 57,239,188,231, 59,223,145, 88, 55,168, + 15, 19, 59, 59,100,164,165,225,207,187, 79,116, 43, 14, 29,143, 44, 38, 89, 6,197,149,225,121,190,200,201, 29, 64,247, 89, 11, + 64, 49, 12, 80, 28,198,161,100,230, 80,131, 54, 29, 64, 9, 4,224, 8, 15,181, 90,109,136,211,223,171,231,207,159, 15, 25, 61, +122,116,112, 80, 80, 16,221,171, 87,175,150, 39, 78,156,224, 63,228,222, 81, 42,149,237, 1, 64, 42,149,198,213,170, 85,171,206, +132, 9, 19,160,211,233, 80, 88, 88,136,156,156, 28,188,122,245, 42,123,194,132, 9, 90, 0,144,201,100,226,161, 67,135,154, 85, +101,115,221,209, 36,213,215, 67,235,108,172, 45,120, 57, 34, 55, 61,188, 65,109,193,203,184,246,205,249,141,235,142, 38,169,204, + 28, 10,190, 79,127, 25, 18,147, 82,112, 97,219,222,227,199,152,113,131,134,112,142, 38, 79,253,165, 54,228,104, 85,118, 41,138, +122, 47, 56,169,129, 36,235, 29,228,229,229, 45, 92,178,100, 73,191,172,172, 44,199,222,189,123,139, 92, 93, 93,113,251,246,109, + 4, 5, 5,177,183,110,221, 74, 44, 40, 40, 88, 4, 64, 5,224, 98, 77,202,180,105,211,166, 13, 4, 2, 65,201, 80,218,230,226, +159, 55,159, 56,113, 98,248, 23, 95,124,129,250,245,235,187, 61,126,252, 88,130,106, 60, 71,132,144,210, 81,134,143, 9,138,162, + 98, 55,108,216, 80,199,206,206,142, 58,119,238, 28,203, 48, 76, 77,148,155,221, 59,119,238,108,167,211,233,190,156, 52,105, 18, +124,124,124,192,178, 44,246,239,223,143,157, 59,119, 26, 74,178,244, 34, 38, 38,230,126, 98, 98, 98,151,121,243,230,225,199, 31, +127, 92, 56,111,222, 60, 36, 38, 38, 34, 38, 38,230,193,135,216,205,205,205, 85, 38, 36, 36,200,189,189,189, 91, 71, 70, 70, 70, +250,250,250,186,127,241,197, 23, 8, 12, 12, 36,127,252,241,199, 80, 0,231,254, 19,189,247,147,103,153,251,132,156,224,194,138, +239,215,126,219,184, 81,131,175, 38,142,255,156,105,234,236,142,130,156, 87,176,180,178,133, 99,221,134, 72,123,147,142,243,231, +207,113,233,233,217,187, 57,154, 90,254,236, 89,102,242,135,216,172,227,216, 16,111,222,188,193,217,179,103,185,236,172,220, 29, +208,209, 43, 30,199,103,167,194, 8, 67,148,172, 73,208, 19, 37, 94, 31,172, 44, 44, 44, 14,152,153,153,165,154,153,153,165, 90, + 88, 88, 28, 0, 12,154,125,208,163, 76,235,192,188,179, 13, 29, 42,133, 84,218, 30, 2,193,156, 90, 22, 22,231,204,205,205, 51, +186,118,237,170,217,182,109,155,234,241,227, 40, 62, 41, 41,145,152,155,155,231,148,166,175,200,102, 57, 88, 88, 52, 50, 85,216, +187,127,107,238,216,242, 79, 19,123,183, 60, 19,123,183, 60,115, 71,207, 27, 10,123,183,101, 22, 22,141, 76, 13,202,103, 37,104, +104, 3,107,103, 43,108,105,102, 77, 41,157,173,176,165,161, 13,172, 13,190,118,253,195,126, 28, 69,129, 67,209, 52,108,212,192, +102,137, 13,158, 97,152, 61,142,142,142,246,168, 94,192,186,247,108,142, 1,234,143,145, 72,190, 60,226,239,239, 23,247,199, 31, +163,115, 95,188, 24,153, 19, 27,251,249,131, 67,135,134,111, 30, 62,124,204, 72,137,100,210, 80,160,145,161, 54,237,237,237, 3, +238,223,191, 31,100,232, 86,134,120, 25, 92,158,141, 26,214,185,208,171, 71, 59, 50,125,242, 96, 50,125,242, 96,210,171, 71, 59, +210,168, 97,157, 11, 31, 80, 71, 20,195, 48, 35,228,114,249, 1,133, 92, 30,161,144,203, 35,228,114,249, 1,134, 97, 70, 64,191, + 15,213, 59, 54, 45, 45, 45,239,217,218,218,166, 86,103,179,178,178, 10,171, 70, 62, 71, 54,104,208, 32,145,166,233,117,213,124, +166,245,217,116,150,201,100,177, 10,133,226, 85,217, 77, 38,147,149, 13, 12,101, 41,151,203, 79, 43, 20,138,245,134,216, 92,189, +216,253,219, 27, 23,167,133,175, 94,236,254,109,249, 99, 51, 6, 90, 76,184, 29,188, 60, 99,198, 64,139, 9,134,228,211,198,198, +230, 15, 27, 27,155, 20, 27, 27,155, 20, 91, 91, 91,189,155,149,149,213, 61, 3,108, 74, 77, 77, 77,215,155,154,154,166, 42, 20, + 10,206,196,196, 36, 85,161, 80,172, 67,153,208, 22, 53, 45, 79,154,166, 3,221,220,220, 84, 12,195,236, 42,119,232,199,198,141, + 27,171, 4, 2,193,154,106,218, 52,235,220,185, 51,247,240,225, 67,226,227,227, 67, 0, 88,124,196,122,183,179,176,176, 56,103, +102,102,150, 96,106,106,186, 9,128,162,134, 54, 41, 0, 35,234,212,169,243,160, 91,183,110,133,117,234,212,185, 9,224,179,143, +152,207,126, 3, 7, 14,228, 19, 18, 18, 8, 33,132, 36, 36, 36,144,129, 3, 7,242, 40, 10, 20,249, 33,109,242,226, 41, 83,166, +144, 91,183,110,145, 91,183,110,145,155, 55,111,146,126,253,250,241, 0,198,126, 96, 59,143,143,117,237,174, 13,173, 26,185, 52, +177, 56, 60,106, 72, 39,254,226,169,117,100,233,162,175, 72, 79, 31,119,210,172,177,197,113,103,103, 75,231,143, 97,243,219, 69, +147, 73,143, 46,110,188,107, 35,139, 67,174, 13,173, 26,253, 63, 95,251, 63, 81,213,194, 95,237,112,246, 86, 90,124,151, 44, 85, + 12, 7, 7, 7,100,100,180,147, 10, 4,157, 36, 18,137, 47,205, 48, 87, 51,211,210,102, 23,191,110,113,255, 95, 82,173,222, 14, +189, 17,196,122,150, 36,168,137,205,119, 28,217,107,104,179, 58, 54, 12,178, 89,217,162,210,188, 90,157,108,201,178,247, 54, 65, +111, 25,188, 99,179, 78,157, 58, 95,242, 60,223,192,208, 12,209, 52, 29,151,148,148,244, 75, 77,202,179, 73,147, 38,164,120,120, +155,250,152,245,254, 87,220, 75,255, 75, 54,247,174,109,225,208,172,133,203,252,136,251,143,127, 44, 30, 86, 44,197,178, 25, 22, +166,157,186,117, 93,242,231,149, 63,190, 91,182, 41, 43,239, 63,124,237, 52, 12,244,105,251, 8, 54, 75,130,132, 86,203,166, 80, + 40,220,214,182,109,219, 47,111,223,190,189,139,227,184, 73,255,163,247,103, 63,134, 97,230, 53,109,218,180,101, 76, 76,204, 3, +142,227,126, 68, 5,129, 34,107,144,207, 69, 13, 26, 52,152, 42, 18,137, 36,249,249,249, 89,201,201,201, 75, 0, 28,254,187,149, +167,107,147,218,173, 9, 41, 13,186,189, 50,250,121,102,232, 71,179, 73,120,142, 39,204,247, 49, 47, 50,194,254, 3,245,254, 79, + 35, 89, 59,254, 63,254,184,135,209,166,209,166,209,166,209,166,209,230, 71,183, 41, 51,150,167,209,230, 63,208,230, 63, 18, 2, + 99, 17, 24, 97,132, 17, 70,252,215, 65,105, 44, 2, 35,140,248,219,161,172,170, 85,170,102, 81,122, 88,105,117, 36,193,154, 48, +219,203, 70,155, 70,155, 70,155, 70,155, 70,155, 70,155, 70,155,255,115, 54,255,169, 36,107,135,158,253,191, 12, 70, 89,213,104, +211,104,211,104,211,104,211,104,211,104,211,104,243,127,129,104, 85,184,111, 28, 58, 52,226, 47,199,198, 65,168, 3, 0, 51, 79, + 32,233,175, 72,111,132, 17, 70, 24, 97,132, 17,255, 97,236, 64, 37, 67,135,127, 7,162,229, 0,160, 61,138, 22,190,125, 2,224, + 58,128,172, 15,176,103, 5,224,115,138,162,134, 1, 0, 33,228, 8,138,102,141,164, 27,114,178, 84, 42, 77, 85,169, 84, 54,197, +223,223,168, 84,170,178,107, 25, 80,120,127, 54, 27, 41,179, 85,136, 6, 13, 26,164,170,213,106, 27, 3,254, 62,135, 16, 18, 78, +211,116,132,137,137,201,149,152,152,152,160,234, 92,184,175,175,175, 31,195, 48, 43, 1,128,227,184,197, 87,175, 94,221,243, 23, +214, 91,187,186, 14,118,191,106,117, 90, 54, 53, 45,115, 9,222, 15,228, 7, 0,216,210, 31, 1, 20,139,249,197,223,215, 76, 11, +210, 31, 71,167,186,233,245,160,181, 80, 40,156,110,107,107,219,231,213,171, 87,247, 0,124, 3, 84, 29,213,184,110,221,186, 99, + 5, 2,193,104,142,227, 26, 49, 12, 19,203,178,236,191, 19, 19, 19,247, 25,219, 16, 35,140, 48,194, 8, 35, 12, 32, 91,239,161, + 90, 68,171,153, 37,236, 8, 48, 2, 20,122,130,224, 18, 5, 28,124,146,129,215,134,158,223,183, 25,116, 58,182,232, 63, 69, 52, +184,115,207,233, 29,125,250,244,113,156, 49, 99, 6, 58,116,232,128,219,183,111,123,239,222,189,123,194,225,195,135,195,121,158, +191, 10,224, 54, 96, 80, 40, 5, 5,138,226,180,140,234,211,167, 79,143,149, 43, 87, 50,238,238,238, 80, 42,149,248,227,143, 63, + 58,173, 89,179,102,253,141, 27, 55, 46, 3,248,173,152, 16, 84,186, 0,158, 74,165,178, 41, 89,140,147,162, 40,155,161, 67,135, +134,150, 37, 87,197,235,171, 81,132,144, 91, 20, 69,221,228, 56,238,246,209,163, 71, 19,155, 1,237, 38, 55, 16, 29,157, 29,167, +117, 44,111, 83,173, 86,219,156, 92,189, 10, 2,137, 4,234,188, 92,120,143,127, 75,122, 47,125, 59, 31, 20,207,130, 1,201,242, +253,126,125, 56,128,136,228,228,228,112, 31, 31,159,184,234,214, 48,195, 48, 43,207,159, 63,111, 79, 8, 65,175, 94,189, 86, 2, +248,171,136,150,164,125,107,207,171,167,143, 29,144,230,103,166,162,247,103,195,255,253, 52,241,141, 31,128, 99,239,144,166, 62, +176,165, 40,204,159,178,234, 55, 6, 0,182, 46, 26,245,205,186, 79,176,241,235,139,120, 13,192,183,152,252, 0,192,106, 0, 87, +183,244,129, 45,128, 5, 83, 86,253, 70, 1,192,207,139, 70,205,223,210, 7, 27,166,157,171,118,216,138,169,126,126,126, 27, 87, +174, 92,201,216,219,219, 35, 41, 41,169,183,155,155, 91,211,220,220, 92, 55,232,113, 34,174, 95,191,254,161,206,221, 6, 52, 28, + 60,108,132,220,218,202, 2,201, 41,233,102,135, 14,236,154,204,220,250,163,207,203,151, 47,135, 27,219, 16, 35,140, 48,194, 8, + 35, 42, 65,205, 35,195,183,178,135,172, 64,139,129, 2,134, 26,219,177,181, 91,247,145,125, 59,211,110,174, 77,240, 40,234,241, + 39,167,174,220, 89, 67,223,140, 10,102, 57,178, 79, 33,194,201,176, 20,253, 51, 97,116, 44, 4, 23, 79,254, 86,212, 19, 78, 24, +197,132,134,134, 54,241,242,242, 42, 93, 26,166,123,247,238,232,222,189, 59,181,117,235, 86,207,139, 23, 47,122,238,220,185, 83, + 27, 28, 28,252, 43,244,199, 71,153,222,184,113,227, 53, 27, 55,110,148,248,248,248, 64, 34,145,148, 30, 48, 49, 49,193,128, 1, + 3, 48, 96,192, 0, 38, 57, 57,185,215,233,211,167,123,173, 94,189, 90, 19, 31, 31, 63, 15,111,163, 52,235,197,146, 37, 75, 90, + 87,240,243,121,138,162,158,179, 44,251,192,211,211, 51,177, 41,208,100,114,223, 14,151,166,118,116, 86,204, 94,184,187, 66, 59, + 2,177, 24,123,253,138,250,234,178, 68, 43,238,202, 57,152,152,153,102,200, 77, 77,195, 1, 68, 0, 8, 39,132, 68,196,198,198, + 62,118, 1, 60,219, 91,208,191,238,202,226, 61,170, 65,182,144,152,152, 8,115,115,115,153,143,143, 79, 10, 69, 81,203,254,248, +227,143,143,237,144,215,110,217,252,169,162,172,151,225,120, 29,125, 11,115,134,117,146,207,222,244,251,119, 42,141,238,152,190, +147, 40,138,166, 87,223,228,253, 81,180, 24,239,146,140,140, 12, 31, 0,176,180,180, 20, 3,184,186,238, 14,250,126,221,145,250, +144,216,110, 34,134, 97,182,236,222,189,251,139,177, 99,199, 22, 45, 29,241,231,159, 48, 49, 49,193,138, 21, 43,234,207,157, 59, + 55,128,101,217, 89,149, 41, 89,157,187, 13,104,184,225,199,239,220,242, 50,115,212,219,183, 28,190,235,208,188, 25, 61,101,250, + 92,211, 13, 90,181, 29,199,113, 99,141,202,150, 17, 70, 24, 97,132, 17,213, 81,179,170, 36, 90, 77,173,176,167, 85,115,231,207, + 71,246,235, 36,105,209,220, 29, 34,201,219,208, 45, 94,173, 91,195,171,117,107,218, 63, 63,175,103,232,221,251, 61,143, 94,188, +173, 46,212,197, 31,142, 73,135,159,161,185, 42, 89,148,118,229,103,182,221, 10,178,223, 72, 1, 64, 81,203, 70,181,232,228,235, + 43, 29, 59,118,132,163,163,163, 40, 56, 56,120, 98, 21, 68,107,209,147, 39, 79, 36, 12,163, 63, 30,170,131,131, 3,134, 14, 29, +138,102,205,154,137,187,118,237,186,168, 50,162, 37,149, 74,223, 80, 20,101, 3, 0,181,107,215,230,150, 45, 91,246,128, 20, 1, + 0, 8, 33,228, 22, 77,211,183,121,158,191,243,251,239,191,191,114, 3,108,122,123, 53,187, 62,117,204, 80, 57, 57,186,190, 82, +146,160,202,205,173,240,119,185,137, 34, 77,166, 80,132, 75,228,210, 8, 20,173,229, 21,225,232,232,248,216, 13,112,108,219,172, +193,197,173, 95,143, 50,221, 53,233,187, 42,203,178, 85,171, 86, 77, 61, 60, 60,164, 28,199,161,160,160, 0, 63,255,252,179,185, + 76, 38, 51,239,211,167,207,210,178, 55,128, 43,208, 98,136, 3, 51,105,121, 50, 55,173, 6, 55, 82,173,206,222,173, 95, 14, 29, +208,199,172,117,251,206,120,122,117, 63, 50, 51,243,144,147,157, 15,158,231,223,139,235, 51,237, 28, 82,183,244,199,154,173, 11, + 71, 45,160,104,154,242, 28,244, 13, 62,181,203,153,185,109,219,182, 40, 0, 66,177, 88, 92,246, 62,116,144,213,105,190,166,201, + 39,157,241,243,226, 49, 32, 60, 79, 0,172,169,134,154,101, 99,106,106,122,234,226,197,139,237,218,180,105,131,219,183,111,227, +197,139, 23,152, 58,117,170,102,218,180,105,162,113,227,198, 81,115,230,204,153,177,122,245,234,163, 0,110,188,247, 32, 8, 4, +163, 63, 27, 60, 92,156,159,157,171,210,168,181,154,218, 86,181,120,117,129,170, 48, 61, 43, 87, 53,124,212,151,154,168,176, 59, +163, 1,188, 71,180, 62,176, 60,141, 48,194, 8, 35,140, 48, 0,132,144, 54, 0,172, 1,164, 81, 20,117,183,236,126,113,146,146, +213, 90,202,239,167,163,104, 84,202,178,140,185,116, 20,185,251, 88, 3,224, 0,132, 82, 20,149,245,129, 89,212, 63,203, 48, 40, + 40,136,148,253, 44, 67,180, 8, 33,132,232, 50,158, 19,117,204, 57, 82,120,247,151,247, 54,101,212, 49,146, 18,122,152,220,249, +237, 91,210,212, 74,255, 42,236,125,155, 65, 55,202, 3,100, 74, 27,144, 89, 93,107,169, 66, 67, 67,131,121,158, 15,242,239, 12, + 66, 30,253, 70,200,163,223,200,215,222, 32, 71,143, 30, 61, 31, 16, 16, 16,180,111,223,190, 32, 0, 85,249, 41,165,230,221,189, + 73,238,216,128, 84,134, 39, 79,158,144,109,219,182,145,133, 11, 23,146, 93,187,118, 17, 84, 17, 65,189, 87,175, 94,127, 68, 70, + 70,146,113,227,198, 61,128,158,192,128,174,128, 98,116,125,187,104,245,161,245, 90,205,216, 22, 36,171,139,180,194,235,183,183, +183,127, 39, 63,129,206,118,100,115, 91,103,178,167,167,215,107, 66,200,121, 66, 72, 32, 33,100, 56, 33,164, 25, 0,180, 2,204, + 62,179,183,124,166, 58,188, 65,169,153,212,190,202,117,239, 90,181,106,213,116,222,188,121,153, 26,141,134,196,197,197,145,237, +219,183,147, 75,151, 46,145,147, 39, 79,146, 78,157, 58, 37,151,201,175,237,132,102, 78,169,154,157,203,213, 53,185,139,132, 12, +179,249,238,165,163,228,217,245, 35, 36,244, 96, 0,249,247,191, 70,146, 25,159,181,211,154,201, 36, 42, 0,221, 42, 59,111, 90, + 71, 52,105, 86,223, 58, 38, 62, 62,158,104,181, 90, 50,126,252,120,210,171, 87, 47,242,201, 39,159,144, 30, 61,122,144,238,221, +187,147,110,221,186,145, 43, 87,174,144,228,228,100,210,163,179, 87, 65,127, 87,180,174, 70,214,154, 59, 57, 57,189,142,139,139, + 35, 90,173,150, 4, 7, 7,147,253,251,247,147,224,224, 96,226,239,239, 79, 0,236,153, 50,101,138, 50, 43, 43,139,244,234,213, +235, 21, 42,136, 26,239,228,228,244, 56, 50, 38, 49,113,221,170, 95,174,236,221,124,224,202,241,163,151,174,156,186, 16,122,230, +228,133,187,135,239, 60,140, 61,233,228,228,244,184,130,250,255,160,242, 52,194, 8, 35,140, 48,162,106, 46, 82, 76,180,250, 21, +139, 29,253, 8, 33, 61,202,237,247, 43, 38, 78,239,237,251,251,251, 47, 44,187, 95,146,198,223,223,127, 33, 0,226,237,237,125, +128, 16,210,228, 35,100,127, 82, 5, 91,213,138, 86, 9,216, 87,161, 16, 57,247,129,144,211, 65,151,254, 4,124,118, 60,160,176, +131,146, 50, 65, 70, 74, 60,162,175, 31,211,191,144, 68, 49,206, 62,129, 16, 64,240,227,199,143, 17, 29, 29,141,196,196, 68,200, +229,242,247,210,253,249,231,159,144,201,100,176,183,183, 55,140,233,106,222,237,231,194,189,156, 96,226,237,131,244,145, 95, 33, + 56, 56, 24,111,222,188,129, 72, 36,130, 88, 44, 6,203,178, 85,218,163,233,162, 21,127, 75, 84,172,138,210,248, 0, 2, 73,109, +147,211, 91,151,206,106, 64,223, 10, 18, 42, 19,158, 33, 89,197, 25,166,228,153, 40, 32, 87,200, 83,100, 50,121,233,112, 33,128, + 8,138,162,158,182, 2,132, 10, 19,233,233, 95,191,159, 99,199,132, 5, 75,149,207,194, 43,180,209,163, 71,143,201, 0,150, 18, + 66,178, 61, 60, 60,108, 87,174, 92,105,145,148,148,132, 71,143, 30,225,240,225,195,105,108,209,133, 82,132,144,229, 0,208, 30, +144,214,178,174,117, 97,243,183,179, 76,113,245,144,184, 38,119,145,185,235,128, 51, 67,198, 77,153,182,113,214, 0, 20,228, 41, +241,219,165, 48,156,191,255,252, 83, 0,127, 66,143,223,219,150, 27,120, 6,164,117, 31, 60,120,240,131,107,215,174, 89,237,220, +185, 19, 44,203, 86,184,237,220,185, 19,151,175,223,159, 9,224,158,129,217,114,104,208,160,193,229, 59,119,238, 88,203,229,114, + 92,186,116, 9,217,217,217,165, 74,150,159,159, 31,149,157,157, 61,226,231,159,127, 30,242,242,229,203, 31,175, 95,191,158,129, +162,181, 32,223,185, 17, 24,134,121,206,178, 90, 23,123,215, 38,130, 97, 3, 58,119,206,207, 8,135,137,165, 7,110, 61,124,126, + 58, 59, 43, 67,201, 48,204,243,178,233, 63, 70,121, 26, 97,132, 17, 70, 24, 81, 61, 80, 20, 21, 68, 8,233, 79, 81, 84, 80,249, +223,202,127, 47, 73, 23, 16, 16, 80,186, 95,114, 78, 96, 96,224,170, 50,251,133, 31, 41,123,122,157,225,187, 22, 51,200,174, 21, + 37, 82, 63, 58, 14,117,244, 41,136,156, 58, 66,220,236, 83, 48, 78,157,144, 16,126, 21, 15,207,173,195,171,168, 63, 65,120, 14, +246, 77,219, 26,154, 17,149,139,139, 11, 84,170, 34,215, 44,181, 90, 13,145,194, 66, 53,103,210, 40, 41, 0,240, 2,169,186, 12, +131, 53,200,160,105, 71, 95,180, 77, 37, 8,181, 45, 18, 42,218,166, 22,157,247,253,248,241, 16,137, 68, 16,137, 68,160,138, 93, +127, 12, 33, 90, 84,113, 98,190,104,248,170,162, 76, 80,133, 18,225,111, 7,151, 78,111, 43,121, 25, 33, 86, 71,222, 66,178,154, + 39,167, 83,185, 51,134,228, 87,174,144, 39,201,228,242, 8,153,137,162,148,104, 81, 20,245, 28, 0,136, 80,184,111,255,242,233, + 30,138,212, 88,133,234,110, 48, 82, 84,188,182, 18, 51,203,207,157, 59,103, 35, 16, 8,236, 56,142, 67, 66, 66, 2,162,162,162, +176, 97,195,134,212,188,188,188,174, 97, 97, 97, 49,101,185, 35, 39, 19, 31,222,183, 98, 86, 67, 65,120,136, 84,253, 60,178,218, +119,143, 85,243,129,189, 62,237,234,121,102,242,152,197, 24,216,247, 19,140,235,234, 70,226,146, 51, 85, 0, 46, 21, 75,175, 85, + 33, 41, 44, 44,172,103,151, 46, 93,254,221,178,101, 75, 87, 66, 8, 90,180,104,129, 17, 35, 70, 96,223,190,125,120,248,240, 33, +114,115,115,181, 23, 47, 94, 92, 15, 96,183,129,217,146, 91, 88, 88,156,191,114,229,138,181, 92, 46,199,197,139, 23,161, 84, 42, + 97,111,111,143,105,211,166,137, 3, 3, 3,247,230,230,230, 14, 11, 8, 8,144,198,197,197,109,190,112,225, 66,125, 20,173, 59, +247,222, 77,160,209,104,118,252,182,111,207,198,105,211,103,212,185,114,251, 81,176, 58, 63,207,220,201, 41, 49,215,218,194,196, +116,253, 15,203,235,105, 52,154,201, 21,151,231, 31, 53, 42, 79, 35,140, 48,194, 8, 35,222,131, 94, 46, 82,150, 60,149, 39, 91, +213, 33,105, 0,148,254,254,254,139, 40,138, 10,242,247,247, 95, 20, 16, 16,160, 4,144,252, 87,144,172, 82,162,213,191,127,255, +144,160,160, 32,244,239,223, 63,164, 82, 19, 60, 7,109,220, 53,104,227,174, 65,230, 61, 19,191, 7,140, 44,119,241,124,141,115, + 55, 96,197,165, 43,106,181, 90,176,103,207,158, 82,191, 45, 0,224, 56,238,163,215, 98,117,136, 86, 49,209,123, 47, 19, 13, 36, + 38, 33, 59,190, 30,214,222,146, 43, 20,106,254, 60,141, 36, 53,207,254,248, 76, 91,120, 55,155,172,174,204,230,201,217,147,145, +120,253, 50,228, 38, 38,137, 95, 92,139, 40, 85,177,138, 73,214, 11, 0,168, 47, 49, 13,222, 54,107, 96, 39, 59, 17, 68,154, 51, + 71,144,172,230,213,219, 94,234,118, 87,114,179,129, 16,130, 23, 47, 94,160,176,176, 16, 55,111,222,196,177, 99,199,210, 42, 32, + 89,104, 32, 49,249, 99,215, 55,163,219,153,229,189, 22,105,238, 94, 70,178,154, 55,104,168,203,170,197,192,142, 34,154,186, 72, +209,140,172,123,251,166,152,253,229, 32,172,219,245, 59,171,177,233,220,127,227,169,179,159,231,171,181,139, 12, 36, 89,165, 98, + 99, 88, 88,152, 91, 88, 88,152, 4,128,239,136, 17, 35,206, 14, 25, 50, 4, 33, 33, 33, 56,125,250,180, 51,128,148,226,116, 43, + 80,180, 80,246,106, 0,177,149, 9,143, 34,145,232,224,229,203,151,221, 29, 28, 28,112,249,242,101, 40,149, 74, 76,153, 50, 69, + 51,125,250,116,145,159,159, 31,149,147,147, 83,170,100,221,188,121, 51,163, 50,146, 5, 0, 73, 73, 73,231,142, 29,222,223,161, + 75,151, 46,131, 26, 58, 55, 51,139,205,203,125, 35,151, 75,101,215, 67,174,138,238,222,185,177, 57, 41, 41, 41,180,226,242, 12, + 54,184, 60,141, 48,194, 8, 35,140,168, 28, 6,113,145,114,202, 84,117, 80,230, 60, 97, 64, 64, 64, 84, 64, 64,192, 59,138,215, + 7,162,252,172,195, 51, 37,125, 90,141,226,104,113, 57, 9,239, 95, 0,207, 87,231, 98,223,251,205,194,194,130,149,201,100,239, + 16, 45,222, 64,155,153, 39, 14, 32,118,234,168, 82, 37,171, 68,217, 66,111,191, 15, 34, 90, 60,207,223, 4,240, 78, 38,228, 54, + 77, 71,174, 31,224,218,209,173, 97, 29, 90,119,120, 3, 94, 21,178,170,165, 79,180,170,232, 60,242,233,227, 10,156,172, 75,109, +178, 58, 72, 21,178,120,153,137,162, 60,201,122, 9, 0, 10, 91,231, 33, 63,246,105,214,213,179, 89, 99,154, 61,180, 22, 73,133, +186,124,255,199, 90,109,108, 1, 57, 94, 73, 25, 46,253,228,147, 79,150, 90, 90, 90, 74, 55,110,220,104,238,228,228, 4,150,101, + 53,229, 73,150,220,166,233,200, 13, 3,155,119,108,106,103, 65,235,142,110, 66,162,146, 43,220, 16,171,219,107, 8,201,178, 50, + 55,185,176,109,213, 84,153, 92, 34,132, 74,165, 66,224,214,163,184,120, 35,178,127,122,228,201, 11, 0, 46,124,192, 13,249, 69, +255,254,253,215,173, 88,177, 2, 58,157, 14, 19, 39, 78,196,243,231,207, 47, 62,121,242,100, 67,189,122,245,230,125,243,205, 55, + 14,118,118,118,248,252,243,207, 69, 58,157,206,175, 18, 27, 63,252,246,219,111,253, 61, 61, 61, 17, 18, 18,130,236,236,108,216, +219,219, 99,250,244,233,226,128,128,128,189,185,185,185,195, 86,173, 90, 37,125,241,226,133, 94, 37,235,157,251,154,227,190,223, +190,110,234,188, 54,237, 59,209,207,158,197,176, 9,109,125,232,171,151, 79, 95,179,180,180,220,155,144,144,240,182, 60, 7,181, +168,118,121, 26, 97,132, 17, 70, 24,241,113, 64, 81,212,153, 98,191,171,119, 84,174,242, 36,172, 68,177, 42,187, 95, 62,125,241, +241,143,241,178,188,163, 2,226,245,110,120,135,254,253,251, 27, 60,173,158, 47, 72, 51,136, 60,149, 71,223,102,208,213, 49,129, + 96,145, 15, 13,145,194, 66, 53, 96,197,165, 43,149,165, 85, 40, 20, 6, 43, 90,188, 90, 85, 85,165, 84,139,104, 21,251,104,157, + 39,132,188, 67,180,204,109,155,250, 44,248,102,214,250, 78, 67,122,211,169, 95,122, 35, 59, 95,173,254,230, 17,203,191, 42,212, + 79,178,138,122,113, 93,156, 92, 97, 18, 33, 85,200,203,146,172, 4, 0,144,218, 52,110, 59,127,246,180,173,221, 70, 14,160,210, +166,116, 66, 86,182, 82, 61, 47,138,165,146,148,100,216, 99,224,106, 69,230,174, 92,185,178, 29,192,118, 31, 31,159, 84,133, 66, +129,252,252,252,247,234,160, 36,191, 29,135,244,166, 83,191,104,135,204, 2,173,250,155, 40, 22,201, 74,254, 96, 85, 36,203,186, +150,233,133,109, 43,167,202,147, 95,189,132, 72, 36,130,137,137, 9, 46,253, 25,129,244,168, 83, 31, 66,176, 64,211,244, 50,127, +127,255,165,211,166, 77, 67, 70, 70, 6, 78,159, 62,141,190,125,251,226,192,129, 3, 78,103,207,158, 93,231,235,235, 11,134, 97, + 16, 20, 20, 4,157, 78,247,180, 18, 51,131, 38, 77,154, 52,111,200,144, 33, 8, 13, 13, 69, 74, 74,202, 59, 74, 86,118,118,246, +136,173, 91,183, 14,137,139,139,171, 82,201, 42,135,182, 13, 26,183, 18, 45, 92,242, 19,212,133,111, 4,105, 73,183, 67,130, 47, +209,183, 50, 51, 51,229, 0,114,106, 90,158, 70, 24, 97,132, 17, 70, 24,172,106, 85,198, 69,210,138, 73, 84, 90, 69,251,101, 8, + 86, 69,251, 84, 57, 21, 76, 83,238,248,195,191,242,154, 12, 82,180, 4,182,205,193,166, 70,150, 33, 90,111,222, 57, 46, 53,173, +109,208,208,161,142,133, 96,219,238,210, 56, 90,210,140,140, 12,169,149,149,149,170, 44, 65,144,203,229,112,112,112, 64, 86, 86, + 22,118,236,216, 1, 84,237, 20,205,154, 13, 25,131,182, 35, 39,226,174,163, 24, 68,167, 45, 85,182,182,141, 31,255, 14,217, 18, +137, 68, 37,190, 97, 85,117,186,119,138,149,166, 91, 0, 72, 43,231,134,223, 73, 21,138,241, 82,171,186, 86,179,167,126, 33,140, +123,163,198,149, 78, 11,179,143,254,176,192, 36,145,152, 76, 75, 64,206,141, 42,236,197,126,246,243,254,242, 74,214,171,150,206, + 13, 23, 75,229,210, 47,197,181,235,219,249,207,153, 42,140, 75, 85, 83, 87,218,126,147,123,108,245, 55,242, 23, 48,157,247, 10, +217, 87, 13,168,158,165,125,251,246, 93, 74, 8, 33, 60,207, 47, 1,128,178,249,157, 51,253, 75, 97,236,107, 21,130, 59, 45,206, + 58,246,195, 2,211, 68,232,207,175, 85,139,129, 29,109, 45,204, 46,108, 91, 53, 77,158,146, 20, 15,137, 68, 2, 83, 83, 83, 36, +166,230, 64, 40, 96,148, 31,120,191, 73, 58,119,238,188, 96,234,212,169,136,136,136,192,148, 41, 83, 82, 18, 18, 18,142, 31, 58, +116,104,202,183,223,126, 43,232,213,171, 23, 82, 82, 82,176,102,205, 26,221,159,127,254,185, 10,192,154, 10,239, 71,129,224,139, +239,190,251,142, 36, 39, 39, 83, 47, 94,188,128,189,189, 61,102,204,152, 33, 94,181,106, 85,169, 79, 86,117,148,172, 18, 36, 37, + 37,133, 92,188,124, 11,159,158, 91, 15, 86,167, 14,201,206, 72,184, 22, 29,155, 21, 82, 91, 44,158, 91,167, 85,139, 26,149,167, + 17, 70, 24, 97,132, 17, 31, 69,197,186,171,111,255,111,128,138,134, 14, 13, 34, 90, 79, 55, 45,158,224, 60, 97,218,124,200,156, + 58, 66,253,248, 4,248,252,212, 82, 69, 75,106, 98,129,218,245, 92,145, 93,160,198,145,224,251, 0,240,180, 58,185,202,203,203, +131,151,151, 23,182,248, 53,237,166,202,203,144,202, 0,168, 37,102,170,147,226,206, 87,206,158, 61, 91,200,243,252, 65, 0,103, +171, 48,179,204,221,221,125,243, 79, 63,253, 36,118, 29, 57, 1,249,183,175,151, 87, 80, 32,147,201, 32,145, 72, 16, 30, 30,142, + 43, 87,174,104, 0, 44,171,162, 66,239,176, 44,251,240,208,161, 67,175,154, 52,172,211,219,171,165,199,204, 69, 11,253, 77, 31, + 93,191,136, 37,171, 54,243, 77, 90,247,202, 9, 60,112, 50, 47,199,164, 94,119,101,202,147, 7, 6, 92,234,195,114, 36, 43,217, +165, 65,221,110, 45,155,187,207, 95,178,100,177, 89,212,245, 75,248,118,245, 54,226,236,217, 35,103,245,177, 83,185,233,242,250, +159,168,222, 68,135, 26, 82,134, 33, 33, 33,219, 1,108, 47,217, 47,159, 95,255, 21, 27,248, 12, 99, 47,114, 0, 0, 32, 0, 73, + 68, 65, 84,166,109,122,103, 5, 30, 56, 86,144,107, 90,175,135,190,252, 90,187, 14,234,224,104,109,113, 97,211,247, 95,201, 95, + 39, 37, 64, 34,145,192,196,196, 4, 9, 41,217, 88,186,254,112,129,150,231,123,127, 40,209, 50, 53, 53,149,104,181, 90,108,217, +178, 5, 9, 9, 9,222, 0, 18,238,221,187,183,109,248,240,225, 27, 91,180,104,225, 18, 21, 21,245, 52, 63, 63,127, 26,128,232, +202,140,212,170, 85,203,219,218,218,154,186,117,235, 22,190,250,234, 43,205,140, 25, 51, 68,227,198,141,163,178,178,178,106,170, +100, 1, 0,234,212,169,227,211,179,123,123,116,236, 57, 37, 68,163,202,190, 22, 23,189, 55,132, 38, 55,164, 53, 45, 79, 35,140, + 48,194, 8, 35,254,103, 80,179,192,224, 62,128,160,169, 37, 38,187,215, 17,189,222,247,195, 12,146, 23,123,147, 40, 67,183,147, +220, 19, 95,146, 51,107,198,145,179,155,102,147, 41,253,220,137,139, 13,245,186,169, 37, 38,251,188, 79,220,222, 89,221,187,111, + 51,232,122, 54, 6,233,217, 24,164, 95, 83,232, 0, 44,106,213,170,213,201,233,109,223,198,209,154,222, 22, 4,192, 87, 0, 76, + 42,201, 86, 69, 43,134,219, 3,216,225,229,229,197, 94,189,122,149, 60, 25,214,131,132,185, 88,145,105,211,166,145,111,191,253, +150,140, 26, 53,138, 88, 91, 91,179,197, 5, 97, 95,149,205, 79, 63,253,212, 17, 0,234,214,173, 91,171,181,107,147,215,225,193, +167,201,181,125, 27,201,174,233,131, 73,187, 22,174,233,118, 46, 93, 30,202,236,155,181,172,162,248, 74,109,218,217,217, 45, 36, +132,244, 38,132,216, 3,128,179,179,165, 73, 43,151, 38,201, 15, 47,159, 38,215,247,111, 38,187,166, 15, 38,237, 61,220, 50, 28, + 93,125,163,165, 54, 46,109, 13,177, 89, 17, 42,204,111,115,151,116,219, 38, 29, 30,232,201,111,169,205,134,109, 63, 63,245, 42, + 57,149,220,185,115,135,156, 61,123,150, 92,191,126,157,236, 59,116,138,212,107, 51, 44,223,170,197,192,142,213,184,117, 42,203, +167,121,191,126,253,200,211,167, 79, 73,159, 62,125, 8, 0,243, 26,218, 60, 25, 23, 23, 71, 34, 35, 35,201,162, 69,139, 8,128, + 61, 83,167, 78, 85,230,228,228,144, 30, 61,122, 36, 20, 19, 44, 65, 77,242,217,168, 65,157,192, 65, 3, 58, 47,155,254,213, 16, +159, 15, 45,207,143, 8,163, 77,163, 77,163, 77,163,205,255, 5,155,255,205,176, 47, 86,181, 74, 62, 91, 25,164,104,133, 0, 44, + 50,176,189,185,141,246,223,171,214,108,154,187,101,251,158,249, 11,102,126,161,232,220,169, 39, 34, 46,255,138, 99, 65,135, 10, + 84,106,205, 26, 17,131,159, 34, 51, 80, 24, 83, 69, 46,138,227,104,189,131,176,176, 48,121,237,198,111, 99, 48, 61, 43,138,205, +186,173,154, 23,152, 2, 96,210,253,251,247,127,242,245,245, 93,249,101,199,182,131,167,119,232, 6,157, 78,135,125,251,246, 33, + 62, 62,254, 56,128,197,134, 42,110, 17, 17, 17,233,110,141,157,102, 9, 25,193,252,105,163, 6, 89,167, 61,127,132, 87,143,195, + 0, 0,106,181, 82,247,250,233, 53,207,234,100, 78, 38,147,221,177,182,182,126, 98,109,109,157,213,180, 97,221, 73, 18, 8,151, + 76, 25,241,153, 77, 70, 92, 52, 18,163,138, 70, 70,213,170, 66,237,171,167, 87, 93,106, 82,187, 78, 78, 78, 18,133, 16,147, 43, +204,175, 70,165, 75,125, 22,221,210, 16, 59,133,106,205,170,229,235,246,125,242,253,252,241, 18, 51, 51, 51,220,143,124,134, 37, +107, 15, 20, 40, 53,186,222,233, 17, 39, 63,202,240, 24, 33, 4, 58,157,206,224,137, 14,149, 96,129,167,167,103,179,149, 43, 87, + 58,251,249,249,225, 67,149,172,178,136,141, 75,242,175, 83,183,145,219,179, 39,247,125,107,203, 68,255,254,144,242, 52,194, 8, + 35,140, 48,226,127, 6,253,138,197,156, 73,101, 62,195,170, 36, 90, 37,136,124,131, 66, 0, 43, 26, 50,249,219, 22,174, 92,183, +148,166,214,143,231, 9,249,149,165,177,252, 69, 6,210, 62, 48,115,133, 66, 1,216, 79, 6,142, 18, 0,128, 80, 80,179, 14,178, + 24, 79, 1, 12,249,229, 70,104,155, 95,110,132,254,171,248,183,239, 1, 84,107, 44,215, 84,128,200, 78,110,141,234,116,110,229, + 46,101, 56, 37, 94, 61,126,142,204, 2, 21, 46, 69,197,103,211,132,254,181,186,153,122,241,226,197, 31, 0, 96,107, 46,127,220, +217,173,113,189, 46, 94,238,114, 33,165,193,171, 71,247,145,163,212,224, 98, 84,124, 14, 40,170,198, 14,213, 31, 43,191,169, 17, +167,238,254, 14,170, 7, 69, 81,151, 23, 77, 31, 41, 89,186,246,224, 71, 37, 89, 0, 10,147,146,146, 50, 10, 11, 11, 45,147,147, +147, 53,168,121,144,184,103,185,185,185, 45,102,207,158,189, 98,222,188,121,243,127,248,225, 7, 81, 77,124,178, 42, 67, 86, 82, +252,137, 46,238, 31,175,254,141, 48,194, 8, 35,140,248,159,192,164,114,159, 48,152,104,149, 18,134, 55, 72, 3, 48,173, 81, 35, + 50, 39, 54, 22,154,143,149,179,138,148,174, 15,196, 93, 0, 3,106,124, 54, 77,229,221,126, 26,159,127,231,105,124, 62,120, 66, +120, 66,212, 52,141,196, 2,173,118,213,211, 23, 73, 53,159,117, 71, 81,220,221,103, 9,202,123,207, 19, 85,132,231, 9, 79,136, +134,162,240, 90,167,227, 87, 69,189,136, 63,245,119,200,111,122,196,201, 27, 65, 44,213,249,198,157,200, 57, 5, 5,218,205,233, +143, 79,222,252,136,245,162,139,136,136, 24,237,237,237, 61,129,227,184,109, 0,116, 31, 96, 75,195,178,236,130,192,192,192,227, + 17, 17, 17,135,111,222,188,153,242, 49, 72,214, 95, 90,255, 70, 24, 97,132, 17, 70,252, 83, 81,179, 69,165, 43,195,199, 36, 89, +127, 71, 68, 62,123,233,245, 87,216,141,122,246,178,249,127, 67,126, 83, 31,159,184,151, 10,140,248,139,138,247, 34,199,113, 23, + 63, 38,169, 62,127,254,124, 3, 84,176,172,206,223,173,254,141, 48,194, 8, 35,140,248,199, 98, 82,101,228, 75, 96, 44, 27, 35, +254, 1, 32, 31,139,100, 25, 97,132, 17, 70, 24, 97, 68, 13, 80,169,162, 69,161,242,153, 3,151,171,241, 7, 53,153,125,112,217, +104,211,104,211,104,211,104,211,104,211,104,211,104,243,127,206,230, 63, 17,246, 40,114,136, 63, 83,252,169,151,124,125, 76, 24, +167,190, 26,109, 26,109, 26,109, 26,109, 26,109, 26,109, 26,109,254,211, 81,161, 35, 60, 80,228, 60,108,132, 17, 70, 24, 97,132, + 17,255, 77,144, 20,111, 53, 61,110,132, 17,127, 53,217, 42, 37, 92, 53,241,209,106, 82,252,249,236, 47,204,236,116,123,123,251, + 73, 30, 30, 30,174, 34,145,136,206,203,203, 91,126,245,234,213,101,229, 19,117,118, 19,220, 99,104, 56,190,253,133, 2, 40, 6, +160,105,112, 4,175,174,135, 43, 91, 27,235,253,111, 13, 39,153,153,245,239, 20,205,136, 57, 86, 11, 78,167, 69,145,187, 85, 17, +120,158,141,231,180,234, 94,149,157,108,231, 57,168, 30,203,241, 63, 0,100, 11, 64, 79, 5,248,173, 20, 4, 83, 8,216,159, 41, + 48, 95,129, 33,171,193, 81,223, 8,132,204,194,148,176,163,137,255,132, 2, 59,114,228, 8,243, 33,231, 15, 27, 54,172,194, 5, + 68, 29, 28, 28,130,228,114,121,227,202,206, 43, 40, 40, 72, 73, 73, 73,241,253,135,223,143, 93, 0,108, 2,224, 94,238,247,104, + 0,179, 0, 4,127,232, 31,248, 0, 2, 91, 96,178, 8,248, 6, 0,180,192,234, 84, 96,123,200,223,200,199,208,218,218,250,154, + 64, 32,112, 46, 40, 40, 40,200,203,203,107,100,106,106, 26,171, 80, 40, 20, 44,203, 62, 77, 75, 75,235,162,239, 92, 82, 52, 41, +165, 74, 52, 7, 76, 99,128,225, 28, 77,207, 16, 2, 91,212, 60,191,173,184, 5, 55,100,129,219,169,120,187, 60,215,124, 0, 91, +171,121,220, 8, 35,254, 10,124,208,172,195,166, 69,237, 3,124, 0,116,105,211,166,141,109, 65, 65, 1,162,163,163, 83, 1, 92, + 3, 16, 82,188,197,124,140,156,210, 52,253,227,186,117,235,230,206,152, 49,163,116, 49,232,240,240,112,120,122,190, 31, 35,148, +161,225,120,245,244,101,155,187, 17, 49,104,211, 99,104, 49,209,162,129,130, 20,248,246,108, 91,211, 44,152, 90, 88, 88, 44,167, + 40,106, 24, 77,211, 85, 54, 26, 60,207,115,132,144, 35, 89, 89, 89, 75, 1,228, 85,231,143, 20,114,137,142,229,184, 10,255, 67, +192, 48, 92, 65,161,186,210,176, 23,181,107,215,190, 73,211,116,195,178, 11,102, 3,239, 46,160, 93,217, 49,150,101, 95,165,167, +167, 27, 66, 66,165,180, 64, 52,139,162, 68, 61, 65,243, 77, 1, 10, 20,232, 24,158,211, 92,226, 89,237, 6, 0,170, 15, 33, 89, +246,117, 27, 93,255,122,113,160, 99,228,227,104, 44,154, 62, 10, 63,108,218,131,133,179, 38, 96,195,142, 3,152, 53,105, 36,220, +220,220,245,182,186, 60, 68,171, 22,207, 28,214, 35, 96,203,225, 78, 11,167, 13,147, 4,108, 57,210,121,209,244,225,226, 85,155, + 15,119, 94, 52,253,115, 73,192,230,195,157, 22,206, 28, 38, 91,181,245, 40, 15, 96, 76, 77, 50, 57,210,217,161,128, 98,217, 10, +223,140,137, 64,160, 62,240, 52, 89,241,159,120,162,253,252,252, 60,148, 74,229,253, 81, 61, 91, 5,182,108, 90, 39,169,162, 52, + 25,175,147,234,196, 62, 9,243, 23,138,100, 94,159,249,239, 9,215, 43, 15, 72, 36, 13,163,163,163,157,121,158, 7,199,113, 96, + 89,182,244, 83,163,209,160, 75,151, 46, 31,107,226,204, 0, 0,203,139, 30, 86, 4, 0, 56,252, 1,182, 76, 4, 2,193,215, 98, +177,216,135,101, 89, 87, 0, 16, 10,133,143,213,106,117, 8,203,178,235, 0,228, 87,211,222,250,164,164, 36, 55, 19, 19, 19,104, +181,218,210, 5,232, 25,134,113,169, 87,175,222, 22,149, 74,229,252,161, 23,111, 11, 76,238,208,169,211,134,113,115,231, 50,202, +107,215,176, 97,247,238,245,200,205, 5,128, 45, 85,157, 43, 22,139, 47,208, 52,237, 84,157,255,227,121, 62, 94,163,209,244,170, +206, 57, 2,129,192, 57, 57, 57,217,198,193,193, 1,121,121,121, 80, 40, 20,138,146,253, 15, 65, 8, 64,245, 6,186,176, 12, 51, +219,210,202,170,243,253,139, 23, 21,205,155, 55,167, 25,134, 89, 8,195,131, 84, 75, 0,172, 33,132,200,138,251,139, 13,237,219, +183,247,166, 40,138, 5, 64,120,158,167,239,220,185, 51,146,231,121, 65,113,155,183, 6,192,110, 0,106, 35, 15, 48,226,255, 65, +205,218, 81, 93,162,117, 22,128, 79,155, 54,109,100, 35, 70,140,128,143,143, 15,156,157,157, 33,149, 74,139, 26,241,140, 12,219, + 7, 15, 30,124,126,237,218,181,207, 79,159, 62,141, 71,143, 30, 41, 1,252, 9,160,194,135,186,123,255, 78, 51,164, 38,146,141, + 0,144,246, 42, 35,229,213,139, 55, 27, 83, 82, 82,214, 0, 40, 27, 34,188,209,152, 49, 99,230,204,156, 57, 19, 65, 65, 65, 56, +112,224, 0,212,106, 53,242,242,244,240,151,194, 55,200,186, 18, 8, 40,226,128,132, 16, 64,110, 3, 40,108,107, 92, 82, 22, 22, + 22,203,103,205,154, 53,219,205,205,173, 52,138,185, 78,167, 3,203,178,208,233,116,200,202,202,194,156, 57,115,138, 58, 90, 66, +192,243, 60,206,157, 59, 55, 99,210,164, 73,200,202,202,250,186, 34,155,237,189,234,222,163, 41,218,177, 68,171, 33, 28,247,234, +246,131, 87,173, 89,142, 99, 84, 42,109,133, 43,149, 75,165, 34,189, 36, 79, 40, 20, 58, 62,250,253,119, 27, 90, 44, 6,225, 56, +128,231, 65,120,190,184, 56,139, 55, 82,244, 27,225,120, 16, 29, 7,158,229,193, 42,213,104, 59,117,170, 33, 69,209, 65, 40,150, + 29, 24,253,229, 92,187,118,237,219, 11,235,215,117, 0,203,241,120, 30,247,202,238,254,189,219, 29,143,236,221, 50, 69,163,204, + 27, 9,160, 70,113,182,196,114,179,139,155,127,254,197,241,238,131, 72, 4, 95,189,134,203, 87, 66, 0, 0, 23,174,222, 44, 33, +220, 85, 86, 21,216,252, 22,179, 38, 14,148, 4,110, 62, 40,156, 53,113, 16,243,195,230, 67,194,153, 19, 62, 99, 2, 55, 30, 16, +205,156,240, 25, 19,184,233,128,104,230,196,129, 76,192,134, 93, 30, 0, 44, 0,100, 85,102,172,178, 58,162, 88, 86,242,239,216, + 84, 6, 0,210,182,109,131,238,205, 27, 56, 44, 93, 10, 0, 24,221,200,214,224,161, 9, 43, 43,171,123, 66,161,208,177,170,116, + 58,157,174, 74, 18,236,231,231,231,169, 84, 42,239,177, 44, 75, 4, 2,129,255,168, 65,159,156,236,221,217, 51,163,108,154,240, +240,135,150,171, 86,253, 62,240,240,253, 60,242,185,151,233,253,160, 31,253, 90,247,159,183,231,161,158, 14,153, 86,171,213,120, +250,244, 41,202, 46,242, 94, 6, 92, 13, 31, 41, 26,192, 6, 75, 75,203,118, 25, 25, 25,163, 1, 44,202,205,205,245, 96, 24, 6, +181,107,215, 94,164,209,104,158,155,155,155,239,204,201,201,185, 89,172, 26, 25,186,100, 64, 23, 51, 51,179,125, 39, 78,156,176, +104,213,170, 21,157,158,158,142, 6, 13, 26, 32, 51, 51,179,237,181,107,215,188, 38, 78,156, 56, 49, 47, 47,111,108,241,203,160, +161,104, 38,151,203,201,184,113,227, 40,142,123,123,185,187,118,237, 66,175,230,108, 99,235, 90,242, 66,149,134,228, 4, 63, 53, +255, 74, 36, 18,253, 25, 31, 31,159, 83,221,194, 16, 1,223,140,155, 59,151, 49,121,249, 18, 38, 15, 31, 98,116,110,174,224,135, + 34,117,171, 74,162, 69,211,180,211,190, 3,191, 58,139,197, 98,176, 44, 91, 74, 6, 75,218, 40,157, 78, 7,173, 86, 11,157, 78, + 7,142,227,160,211,234, 16,240,253,234, 26,183,133,114,185, 92,110,111,111,159, 42,151,203,229, 31, 72, 46,235,101,210,244,151, + 45,189,188, 38, 45, 29, 56, 80, 26, 26, 26, 42,165,105, 26, 44,203, 98,205,154, 53, 44, 33,164,150, 27, 96,246, 8,200,173,174, +109,137, 68, 34,216,187,119,239, 72,177, 88, 12, 0,208,104, 52,104,222,188, 57,101,236,243,141,248, 15,146,173,247, 84, 46,125, + 68,171, 79,110,110, 46, 56,142,131,169,169, 41, 24,230,221,126,223,210,210, 18, 61,123,246, 68,151, 46, 93, 48, 98,196, 8, 60, +122,244, 72, 54, 98,196,136,158,149, 25, 27, 53,183, 63,234, 58,219, 22,119, 38,188,253,141, 51, 15, 2,119,125,119,212,250,245, +235,215,115,203, 36,155, 56,121,242,100, 42, 35, 35, 3,195,134, 13,187,166, 86,171, 63,133,158,135,143,227,241,202,119,196,104, +240,132,146,173,187,243, 11,165, 81, 41, 9, 77,211,202,146,161,195,154,148, 18, 69, 81,195, 28, 28, 28,112,240,224, 65,104, 52, +239,135, 11, 51, 51, 51, 67, 84, 84,212, 91, 85,141, 97,208,190,125,123,134,162,168, 97, 0,190,174,216, 38,237,120,227,238, 75, +155,146,253,254, 61,221, 69,237,189,232,212,228,212, 2, 2,128, 90,188,120,113, 41,113, 3,128,229,203,151, 27,146, 79,208, 66, + 33,210, 66, 66,222, 54,196, 2, 26,180,136, 2, 37, 4,104, 65,209, 40, 42, 8, 64, 56,128,103, 1, 94, 7, 72,237,235, 26, 82, + 12,109,235,212,115, 14, 90,181,118,107, 45,181,142,224,224,169, 96,196,197,189, 0, 67,211,104,212,216, 25,159,116,237, 44,244, +106,227, 93,119,245,178,185,167,147, 19,158,245, 1, 16, 90,237,130,230,137,180,113, 61, 43,236,220,117, 31,214, 22, 38, 24, 54, +176, 47,100, 82, 9,126,216,244, 43,190, 95, 56, 29,206,141,156,176,125,253,202, 74, 79, 55, 55, 55, 95,225,234,220,216,105,235, +222, 51,112,117,113, 97,182,238, 59, 3, 87,183,226, 79,119, 87,102,235,190, 51,112,115,119, 99,182,238, 59, 3, 15,247,102,245, +239,165,220, 89,145,153,153, 57,189,242,242, 44, 87, 71,159, 20,213,145, 48,159, 47,109,180, 95, 78,153, 2, 0,165, 68,171, 58, + 16, 10,133,142,201,201,201, 54, 85,165,171, 74, 53, 40, 86,178,238,177, 44,139, 55,111,222, 80,217,217,217,164, 86,173, 90, 3, +207,111, 95,116,162, 87, 39,207, 76, 0,120,248,240, 97,237,128,128, 85, 3, 15,221,203,133,242,246,102,234,223,191,135,240,163, + 63,245,185,119, 42,208,207, 11,197, 75, 66,148,135, 90,173,142,107,217,178, 37, 41,254, 94, 71, 34,145,136,202,221,111, 14, 77, +154, 52,121, 79,181, 54, 96, 72,113,195,173, 91,183,166,187,185,185,193,197,197,229,102,187,118,237,204, 20, 10, 5,206,159, 63, + 15, 87, 87, 87,119, 51, 51,179, 59, 71,142, 28, 17, 46, 88,176,192,115,247,238,221, 0, 48,195,128,226,236,225,235,235,123, 48, + 40, 40, 72, 42, 18,137,160, 84, 42, 17, 21, 21, 5,115,115,115,136,197, 98,124,246,217,103, 76,199,142, 29, 45,187,118,237,122, + 44, 38, 38,102, 36,170, 49, 3, 74,165, 82,145, 69,139, 22, 65, 46,151, 67, 46,151, 67,161, 80, 64,161, 80,192, 68, 10,106,219, +172,122,178,153, 59,178,101, 95, 47,221, 22,184,111,235,178,171,117,235,242,223, 38, 38, 38,102, 87,247, 94, 80, 94,187, 6,147, +135, 15,129, 50,207,174,161, 48, 87,212,134,191,191,127, 85,138, 20, 68, 34, 17, 58,116,232, 80,165,189,218,181,107, 31, 23, 8, + 4,239,188,153,178, 44, 43,245,247,247,231, 98, 98, 98, 20, 52, 77, 43,120,158,135,191,191, 63,199,178,172,212,198,198,230, 38, +207,243,169,233,233,233,131,245,217,237, 10, 72,111, 2,131, 40,161,240,107,123, 7,135, 6, 62,141, 26,201, 47, 95,190,204, 0, +128,147,147, 19, 73, 73, 73,201, 62,117,234, 84,158, 0,248,217,137,144,189,213, 32, 89,106, 0,243,105,154,222, 32,145, 72, 4, +245,235,215,143, 95,178,100,201,173, 98,133, 20,132, 16,186,126,253,250,109,101, 50,153,147, 90,173,102, 81, 52,116,104, 84,179, +254, 1, 32,132,120, 21,241,246, 82,104, 0,136, 75, 4,252,162,222, 14, 86,229,126, 7,128,244,226, 23, 69,219, 74,246, 51, 0, + 60, 2,208, 12,128, 77,241,177,187, 20, 69,101,214, 32,155,149, 43, 90, 65, 65, 65,165,175,176,253,251,247, 47,237, 88, 76, 77, + 77,113,247,238, 93, 80, 20, 5, 83, 83, 83,152,153,153,193,220,220, 28,185,185,185,120,244,232, 17,162,163,163,241,242,229, 75, + 80, 20,133, 70,141, 26,161,228,102, 47,131,210, 6,238,183,159,130, 32, 53,145,128,162,128, 86,221, 60,224,209,165, 57,218,132, +198,206,186,119,153,218,145,146,146,242, 20,128,160,121,243,230, 19,219,183,111,143,181,107,215, 66,173, 86,175,173,132,100,149, +218,188,254,136,109, 13, 0,246,246,246,243,246,159,127, 46, 31,211,187,113, 97, 74, 74,202,143, 53, 40,156,119, 26,226,244,244, +116,131,215,226,227,121, 30, 89, 89, 89,122,109,150, 87, 8,214,109,216, 92, 43, 47, 39, 21,223,253,176, 31, 58,157, 14,115,231, +206, 5,207,243,165, 91,118,118,182, 65,249, 36, 28,247,190,118, 64, 23,141,158, 82, 2,160,222,240, 34, 94,145,112,112, 51, 40, + 2, 80, 28,128,247,175,171,124, 39, 36,101, 68,178, 67,203,126,216, 88, 43, 44,250, 21, 78, 5,135, 65,155,155,132,148,135, 39, +138, 36,199, 14, 35,113, 88,205,160,157, 71, 99,204, 94,188,218,226, 95,179,199, 30,210, 40,243, 92,240,238, 48,226,229,170, 31, + 26, 14,223,173, 88,129, 29, 27,215, 98,245,218,141,200,205,201,134, 80,104, 85,220,208,115,224, 56, 78,255,181, 19,210,219,127, +214,120,234,135,159,143,163,173,155, 61,142,157, 15, 69,167,150, 78, 56,113,241, 30,186,120, 53,192,169,203, 97,232,214,174, 49, +206,134, 68, 98,246,228,145,212,200, 11,187,123, 87,167,142,214,175,223, 92, 43, 47, 55, 21, 65, 43,247,226,205,150, 45,136,159, + 62, 29,109,139,211,132, 82, 20, 68,142,142,128,168,234, 58, 42,143,199,143, 31, 67,173, 86, 87,244,102, 14, 87, 87,215, 42,235, + 93,169, 84,222,103, 89,150,164,166,166, 82,169,169,169, 80, 40, 20, 84, 84, 84, 36,231,238,222,124, 16,137, 62,250, 11, 0, 4, + 4,172, 26,116,248,126, 46, 10,111,110,132,242,214, 38,136, 26,132,211, 59,150, 79,214, 78, 90,186,253,126,153,103,244,157,124, +190,126,253,186,207,235,215,175, 1, 0, 13, 27, 54,140,142,137,137,105, 86, 50,212, 92, 60,132, 40, 98, 89,214,185,100, 56,145, +101, 89,168,213,106,244,232,209,131,209,119,237, 22, 22, 22,237, 93, 93, 93, 17, 22, 22,134,141, 27, 55,214,246,245,245,197,179, +103,207, 64, 81, 20, 86,173, 90, 69,185,185,185, 9,211,211,211,209,171, 87, 47, 28, 63,126,188, 67,110,110,110, 85,229,105,170, + 80, 40,118,159, 62,125, 90, 74,211, 52,242,242,242,192,243, 60, 58,118,236, 8,154,166, 17, 25, 25,137,197,139, 23,227,248,241, +227, 56,121,242,164,204,203,203,107,119, 97, 97,161, 43,222, 29,214,175,172,142,136, 74,165, 34, 18,137, 4, 18,137, 4, 82,169, + 20, 82,169, 20, 98,177, 24,249, 42, 96,210,186,120, 53, 35,181,226,221, 91,118,106, 60,126,230, 42,250,199, 37, 19,174, 0, 56, +101,232, 61, 15, 20,249,100,109,248,245,215,141,163,115,114,104, 0,216, 73, 81,188,150,144,213,134, 60,239, 0,144,175,202,129, + 83, 35, 71, 28, 59,116, 18, 67,134, 15,172,144,100, 9,133, 34,136,132, 66,152,213, 86, 84,105, 83, 36, 18,217, 70, 71, 71, 91, + 10,133, 66, 16, 66,192,113, 28,180, 90,109,234,191,254,245, 47,235,126,253,250,153,158, 59,119,142,238,215,175, 31,111, 97, 97, + 81, 16, 26, 26,250,134,101, 89,203,206,157, 59, 87,106, 83, 14,120,168,204,155,108, 16, 51,172, 71,224,162,105,146,177, 99,199, + 50,227,199,143, 71, 66, 66, 2, 38, 78,156,168,186,116,233,146,230,117, 74,202, 41, 49,207,111,214, 2,225,134,182,201,229,176, +213,195,195,163,213,137, 19, 39, 38,248,251,251,223,155, 55,111,222,119,101, 15,174, 89,179,102,197,217,179,103,157, 6, 13, 26, +180,239,225,195,135, 91,171,211, 46,125,104,223, 97,180,249, 97,168,140,139,148,136,163, 20, 69, 5,149,105,179,251,151,236,251, +251,251, 47, 10, 8, 8,136,162, 40, 42,168,236,239, 37,233,138, 95, 22,131, 42,218, 47, 62,183,246,194,133, 11,155, 7, 6, 6, +174,242,246,246, 62,120,243,230,205, 23, 0,170, 75,180,244,251,104,149, 92, 80,217,139, 44,215,169, 33, 55, 55, 23,185,185,185, + 72, 76, 76,196,182,109,219,138, 31,104, 33, 4, 2, 1, 4, 2, 65,169, 63, 67,101, 8, 14,250,115, 19,128, 77,173, 90,181, 18, + 70,220, 58,114,238,155, 29, 51,187,183,238,209,138,185, 31, 28, 49, 20, 69,235, 17,246, 25, 55,110,156, 21, 0,236,221,187, 55, + 29,192,185,255, 16,107, 62,242,244,233,211,217,246,246,246,165, 62, 42,101,135, 15, 89,150,133, 84, 42, 69,137, 47,139, 74,165, +194,182,109,219, 88, 66,200, 17, 61, 54, 17, 19,117, 5, 79,163,174, 22,157,199,243,224,185,183,231, 47, 91,182, 12,132,144,210, +206,126, 74,177,114, 82, 37,201,171,168,204, 73,185,207,114,191, 19,142,171, 98,120, 66, 52,115,232,216,233,246, 60, 37,192,239, + 87, 30, 64, 40, 20,130, 47,163,102, 10,153,162,183,229,168,103,201,112,176,117,199,167, 35, 39,219,157,216,183,121, 38,171, 85, +253, 80,221,178,118,241,240,198,172,217,179,241,203,142, 29, 88,188,116, 69, 41, 3, 96, 57, 14,108,149,249,164,233, 30, 29,155, +131,205, 79, 6,195, 48,232,214,182, 49, 24,134, 65, 79,239,166, 96, 24, 6,189, 58,186, 64, 32, 16,160,119, 39, 55, 52,105,210, + 4, 2,129,128,174,162,222, 17, 19, 21,140,167, 81,127,148, 33,189, 4, 4,128, 54, 37,229,189,244,186,148, 20,144,122,150,213, +189,183, 48,113,226,196,236,196,196, 68,109,249, 99,117,235,214, 21, 93,187,118,173, 86, 37,195,118,165,144,201,100, 94, 2,129, +224,126,102,102, 38, 47,151,203,105,158,231,120,119,247,230,204,249,237,139, 78,148,164, 89,184,112,209,137,207,189,204, 6,237, + 63, 18, 68, 68,245, 59, 81,148, 80,194,126,185,116,187, 72, 40,146,121, 1, 74, 67, 94, 30,104,181, 90,141, 39, 79,158,160,170, +252, 16, 66,244, 14,211,100,101,101,141,115,117,117,189,182,105,211,166,218, 20, 69,225,250,245,235, 96, 24,166,116,139,141,141, + 5, 77,211,248,230,155,111,180,185,185,185, 95, 84,149, 55,129, 64, 48,251,216,177, 99,230, 98,177, 24,121,121,121,165,207, 13, +195, 48,136,142,142,198,143, 63,254,136,113,227,198, 33, 33, 33, 1, 14, 14, 14,152, 59,119,174, 73, 96, 96,224,108,173, 86,187, +194,128, 42, 10,215,104, 52,173,229,114, 57,164, 82, 41, 74, 8, 23, 0, 92,140, 18, 70, 42,149,202, 22,150,150,133,118,214, 33, + 65,191,119,240,253,212,211,210,218,222, 59, 37, 37,165, 90, 75,103, 61, 7,118,196,113,220,191,250,156, 56, 97,115,227,196, 9, +254,246,233,211,175, 36,121,121,219, 13,190,135,116, 52,226, 99, 95,193,203,203, 11,247,239,223,135,151,151, 87, 89,210, 4,177, + 88, 12,145, 72, 4,145, 72, 4, 43, 11,131, 92, 40, 8, 77,211,184,113,227, 6, 56,142,131, 70,163,129, 70,163,129,155,155, 91, +230,213,171, 87, 77, 0, 32, 54, 54,150,140, 25, 51, 38,251,206,157, 59,104,217, 82,255,122,234, 42,138, 10, 94,182,234, 39,243, + 31,214,239,134,121,109, 91,132,132,132,112,231,207,159,207,163,128,152,167, 81, 81,107, 63, 5,206, 30, 1,180,213, 41, 51, 91, + 91,219,107, 12,195,212, 47,251, 91, 70, 70,134,197,224,193,131,145,149,149,213,119,240,224,193,157,138,219,132,164,163, 71,143, +142, 1, 0,177, 88, 12,154,166, 57, 24,241, 95,133,170,184, 72, 89,162, 84,158,112, 5, 4, 4,244, 47,255, 91, 89, 82, 85,209, +247,178,231, 6, 6, 6,174, 42, 99, 91, 89,131,236, 87,237,163, 21, 20, 20, 68, 42, 96,144, 6,163, 42,162, 85,130,176,176, 48, +157,131,131,195, 47, 79, 31,188,236,222,216,163, 17,100, 10,201, 39, 0, 54, 73, 36,146, 57, 99,199,142,197,237,219,183, 17, 25, + 25,185, 11, 31, 56, 11,167,121,243,230, 23, 36, 18,137, 83, 37,195, 36,241,145,145,145,189, 42,233, 24,150,158, 62,125, 26,250, +156,225,175, 92,185, 82,182, 83, 42,235, 12, 95,241,141,193, 19,232,180, 58, 20, 20, 42,223,118,226,197, 68,171,160,160, 0,195, +135, 15,127, 71,209,122,243,230, 77,149,215, 71, 81, 20,126, 60,117, 10,151,142, 28, 65, 95, 79, 79, 28, 15, 13, 69,224,216, 81, +112,113,170, 3,194, 81, 32, 20,144,112, 96, 51, 50,114,243,241, 91,240, 13,100,230, 21, 98,116,231,206,112, 54,179,210,111, 87, + 40,234,217,182,189,183,232,242,205, 71, 16, 10, 5,160,193,131,232, 10,225,224,218, 21, 12, 77,195,220,182, 1, 68, 66, 33,132, + 66, 1, 98, 19,211,225,218,188,141, 56, 72, 44,237, 89, 19,162, 85,215,169, 1, 56,142,195,184,113,227,112,240,224, 65, 88,218, + 57,193,188,110,115,124,191,118, 7,250,246,232, 92,229,245,151,188,193, 11, 4, 2, 48, 12,243,222,103,201,119, 67,212, 73,194, + 19,104,203,215, 17, 79, 0, 66,224,184,114, 37, 28, 87,174, 68,104,241,127,186, 21, 20, 64,169, 84, 2,237,220,171, 69,178, 52, + 26, 13, 18, 19, 19,181,175, 95,191,182,173,224,120,170, 70,163,169,146,216,236,217,179, 39,220,207,207,175,117,237,218,181,239, +133, 63,124,168,243,240,244, 20,158,219,182,232,100,201,176, 33, 0,120,122,122,102, 46, 90,180,232,228,152, 97,253, 7,110,245, + 31,193, 77, 93,177, 79, 32,145,201, 90,247,159,183, 39,252,192,176, 97, 85,143,205,168,213,113, 30, 30, 30,196,144,235, 42, 44, + 44,124,173,231,240, 0, 0,203, 91,181,106,101,230,235,235,139,107,215,174, 97,200,144, 33,106,173, 86,251, 20, 0,250,245,235, +215,244,183,223,126, 19, 63,122,244, 8,214,214,214,194,248,248,248,221,168,194, 65, 94, 44, 22,119,109,211,166, 13,173, 86,171, +223, 35, 89,129,129,129, 24, 57,114, 36,154, 54,109, 10,158,231,145,159,159, 15, 95, 95, 95,225,198,141, 27,187, 26, 72,180,102, +185,184,184,252,136,162, 89,135,101,219,194,199,197, 67, 80,200,200,200,120,253,224, 78,112, 84,231, 30,131, 91,215,111,210,220, + 62, 50,252,190, 94,131, 54, 54, 54, 11,105,154,254,156,231,121, 38, 55, 55, 55,241,129, 70,211,196,205,201,201,182,227,192,129, +200, 17, 10,153, 13,193,193,116,106, 94,158, 9, 0,131,134, 32, 85,186, 2, 56, 53, 42,114,245, 27, 50,124, 32,238,223,191,143, +161, 35, 6, 65, 36, 18, 65, 32, 16, 22, 61,155,162, 34, 69,171,150,149,153, 65,247,166, 78,167, 43,109,195, 75,252,188,180, 90, + 45, 74, 92,179,228,114,121,233, 49,181, 90, 13,138,162,244,221, 27,180,111,151,142,184, 25, 22,195,126,241,205, 6,181, 48,227, +126,160, 29,207,239,121, 5,164,126, 64,115,238,124,120,197, 18, 27,153,153, 57, 56,157, 14,238, 3,135,150, 62, 39,119,118,110, +149,129,231,101,217,241,113,152,113,228,244,199, 94, 51,215,136,255, 0,170,226, 34,101,137,210,135,130,162,168, 32,127,127,255, + 69, 0,136,191,191,255,162,146,253,128,128, 0, 37,128,164, 26,146,173,247, 84, 46,193,199, 32, 89, 37,195, 11,250,224,235,235, + 59,195,212,212,116, 99,201,126,226,237, 36, 36,222, 78,130,107, 51,247,142,173, 60, 91,231,140, 28, 57, 18,150,150,150,152, 55, +111, 30, 1,176,171,186,255, 31, 27, 19,101, 2,128,216,219,219,207, 43,110,144, 61, 67, 67, 67,173,239,222,189,139, 54,109,218, +188,149,238,181, 90,116,234,212, 73,159,169,188, 98,167,246,175, 63,158, 74,198, 67,171,213,162,176, 80, 9,141, 70, 11, 86,199, +131,101, 89,120,185,155, 98,223, 14,255,162,223,216, 18,245,172, 72, 53,115,180, 51,133,169,137, 80, 71,211,148,242, 94,248,235, + 10, 91, 76,141, 70,131,240,248,120, 60,124,249, 18, 0,240,105,128,126,199,215,125,193,215,224,230,230, 86, 85,110, 27, 59, 58, +216, 33,249, 82,120, 81,227,173, 76,196,221, 63, 15,195,212,212, 4, 0,224,238, 51, 26, 34, 81, 17,209, 42, 80,106, 97,213,172, + 46, 40, 66, 42, 13, 11, 32,183,176,187, 32, 16, 73,157, 8,199,131, 16, 30,132,231, 64, 8, 15, 70, 40,146,207,152, 50, 1, 60, +207,161,109,219,182,160, 24, 6,156, 78,141, 97, 3,122, 34, 43, 39, 15,150,181, 12,235, 36, 68, 34, 17,124,124,124,100,149, 29, +127,246,236,153,178, 44, 49,211, 95, 71, 58, 20, 20, 40,161, 86,171,161,213,176,208,234, 88,112, 13, 69,248,238, 95,163,192,106, + 89, 20,142,240,134, 86,199,130,159, 61, 8, 90,141, 14, 9,114,154,246,112,181,210,209,160,148, 15, 30,167,153, 85, 69,180, 74, +200, 65,101,168,200, 39,176, 18,178,245,208,207,207,207,203,195,211,243,254,231, 61, 60,127,138,136,140, 74,142,136,140,122, 47, +157, 83, 83,207,184,169,129, 7,231, 10, 69, 50,175,254,243,244,207, 58, 44,139,178,195,136, 31,136, 69,121,121,121, 30, 38, 38, + 38,136,137,137, 1,195, 48,160, 40,234, 25, 0, 15, 0,176,183,183,127, 46, 16, 8, 26, 49, 12,131, 45, 91,182, 80, 2,129,160, +133,183,183,247, 34,149, 74,117, 88,207, 11,157,171,169,169,233, 59,106,150, 72, 36,130,191,191, 63,198,140, 25, 83, 74,178, 68, + 34, 17,246,236,217,131,214,173, 91, 67,163,209,184, 26,152,223,187, 0, 58, 27,160,248, 81,197,228,188, 74, 50,202,178,172, 95, +198,231,159, 55, 65, 72, 8, 58, 54,106,228,230,229,229, 5,173,246,173,160,211,168, 81,163,186,121,121,121,175,149, 74,229,191, + 81, 20,134,224,129, 94, 82,164,226, 17, 31, 91,228,126,122,255,254,125,180,109,219,182, 84,193, 42,171,102,137, 68, 34,200,196, + 38,213, 34, 90, 60, 95,212, 46,229,229,229,209, 33, 33, 33, 86, 46, 46, 46, 20, 0,184,184,184, 80, 15, 30, 60,168, 45,151,203, +211, 27, 55,110, 92,213, 11,176, 8, 0,186,126, 50, 88,112,233,252, 89, 5, 11,172,120,205, 48, 43, 4, 85,182,145, 68,199,241, +124,165, 78,247, 50, 51,115,236,241, 27, 14, 0,248,182, 71,239,210,151,173,243,203, 23, 65, 40, 20,162,251,188, 69,239, 61, 75, + 60,207, 51, 48,226, 31, 69,178, 42, 82,180, 62,172,111,126,171,104, 5, 4, 4, 68, 5, 4, 4,188,167,142, 85, 19, 85, 43, 90, +101,165,187,234,162,228, 97,173, 12,107,215,174, 69,139, 22, 45,244,118, 68, 27, 55,110,196,254,253,251,215, 2,136,173,182,228, +216,189,149, 59,214,157,136,106,212,212,157, 2,128, 21,179, 7,208, 5, 5, 5,184,113,227, 6,204,205,205,241,236,153,193, 97, +191, 76,205,205,205,151,211, 52, 61,140, 41, 63, 3,160, 98,130,201,241, 60,127, 36, 39, 39,167,210,240, 14,132, 0, 90, 29,139, +130, 66, 21, 52, 26, 13,102,127,179,185,202, 76, 4, 0,148, 86,147, 39,240,233,226, 45,171, 76,209,105,219,162, 43,166,141, 53, +121,175,243,102,104,128,166,129,150,109,139, 20,151, 7,161, 81,224,121,128,227, 1, 43, 27, 11,236, 58,240,147, 94,146,207,114, +124,241,219, 49,135,124, 53, 7,215,246,253,241,234,113, 72,169,130, 36, 22, 21, 13, 25,139,132, 66,240,132, 42,138,250, 80, 89, +171, 43,150, 57,101,165,196, 58,239, 8,138,192,164,254, 45,112,244,114, 56,134,246,240,192,213, 59,143,224,219,206, 13, 81, 79, + 95,194,221,185, 62,182,236, 62, 2, 66,144,247,243,186,239, 95,191,237,208,216,120, 67, 20,173,219,183,111, 43,203,171, 88,101, + 63, 73,213,253, 33, 8,121,171,104, 41, 85,106,204, 91,104, 80,232,157,162, 58,234,220, 94,102, 72, 98,125,138,149, 33, 68,172, +188,178,133, 42,194,179, 52, 4,208, 26, 88,240,159,108, 56, 57,142,195,153, 51,103, 74,235,163,162,122, 44, 91,119, 6,144, 28, +196,199,199, 35, 42, 42, 10,237,219,183, 71, 78, 78, 14,132, 52,141,185, 17, 17,112, 27, 59, 22, 26,145, 8, 60,207, 67, 44, 22, + 99,242,228,201, 6,151,103, 53, 91,231, 98,199,107,174, 42,227, 63,121,123,123, 55,137, 41, 40, 64, 84,116, 52,122, 44, 91, 6, + 0, 56,123,246,236, 59,247,196,156, 57,115,196,143, 30, 61,154,120,239,222,189,137,201,201,201,107, 1,204,173,180,157, 37,234, + 82, 31,173,207, 71, 13, 65, 19,151,134,216,255,235,129,210,227,115,230,207,130, 80, 40,130, 80, 36, 68, 45,243, 90, 6, 93,141, + 78,167, 43, 37,173,133,133,133,244,217,179,103, 29,123,246,236, 41,154, 53,107, 22, 5, 0,251,247,239,167, 55,109,218,164,184, +116,233,146,168, 78,157, 58, 41, 85, 40, 4,185, 73, 25,106, 9, 0,212,171, 87, 15,155,183,255, 78,247,235,215, 15,179,102,205, +130, 78,167,195,214,173, 69,207,213,200,145, 35,161,213,106,113,236,216,177,146,231, 88,175, 26,197,106,181,239,221, 55, 20, 69, + 65, 40, 20, 66, 36, 22, 1, 60, 15,138,162, 20,107,214,172, 89, 17, 21, 21,213,198,197,197, 5,106,181,122, 44,138, 38,127, 24, +227,104,253,151,145, 45,125, 92,164, 34, 95,171, 98, 85,170, 50,164,149,245,219,170,140,168,149,245,217, 66,205, 38, 80, 24,230, +163, 85, 17, 24,134,169, 82,173, 42,153,170,171, 15,115,230,204,129,169,169,105,101, 29, 16,137,136,136,120,148,146,146,178, 3, +192,230, 26, 85, 78,112, 88,212,242,175, 7,229,161,120,108,181, 86,173, 90,233,221,186,117,203, 7,160, 61,124,248,221, 23,100, +181, 90, 93,105, 7,110,110,110,190,124,231,206,157, 51, 7, 14, 28, 72,151, 15, 49, 80,118,120,175,100,211,233,116, 56,124,248, +240,204, 5, 11, 22, 32, 39, 39,231,107,125,157,120, 97,129, 18,202, 98, 71,232,231,145, 71, 13,109,212, 43, 61,100, 82,203, 30, +142, 13, 61, 42,237, 76,104, 81,145, 15,145,109,189,183, 29,152,169,169, 20,156, 30,155, 20, 69,199,190, 76, 72,174, 83,215,174, + 54,158, 39,166,193,182,126, 11,100, 37,189, 45, 7,129,128,129,176,120,232,176,150,153, 2,105,111,222,128,166, 25,189,196,248, +251,223,194,112, 39,242, 37,142, 93,126, 0,173,170, 0,235,246,158,135, 86,157, 15,173,170, 0, 90, 85,209,231,170, 5, 95,130, +162,240, 90,167, 46,104, 90,157,122, 23, 8, 4,104,215,174, 93,165, 68, 39, 41, 41,201, 64, 69,139,148, 42, 90, 74, 85, 53,235, +200,176, 55, 39,189,138, 85,201,241,154, 18,131,146,144, 15, 50,153,172,245,158, 61,149,135,113,168, 8,118,118,118,231, 76, 76, + 76, 26, 24,154,190, 26,193, 75, 87,213,170, 85,107,185,139,139,139,235,186,117,235,132, 12,195,160,123,247,238, 77,237,236,236, +226, 1,192,221,221,221,161,164,141,153, 58,117, 42,185,125,251,118,100,209, 59, 70,229, 16,139,197,209,230,230,230,173,125,125, +125,145,147,147,131,196,196, 68, 40, 20, 10,184,253,244, 19, 34,166, 78,133,231,182,109,160,187,117, 3, 69, 81, 16,139,197,136, +136,136,128, 76, 38,139, 86,169, 42, 13,249,214, 14,192,106, 0, 29,241,118,184,144, 0,184,129,162,176, 11,119, 42,104,239,104, + 0,224,120,190,170,202, 26, 53,111,222, 60,100, 11,133, 64,191,126, 16,197,198, 66,171,213,162,125,251,246,165, 42,123,251,246, +237, 33, 16, 8,224,225,225, 1, 7, 7, 7,108,217,178,101,148, 62,162,165,202,215, 34, 62,246, 21,188,189,189, 75,149,171,126, +253,250,149, 42, 90, 66,161,176, 84,217,162,184,170,137, 43, 69, 81,164,236, 75, 50,199,113,148, 64, 32, 16,124,253,245,215,212, +144, 33, 67,136, 70,163,225,197, 98, 49,125,236,216, 49,234,234,213,171,130,130,130,130,170,212,134,130, 17, 35, 70,216,212,173, +235,136,196,231, 81, 56,122,148, 96,237,218,181,184,118,173, 40,202, 70, 76, 76,209,196,213,146,125, 95, 95, 95, 52,104,208, 0, +164,138, 27,185,181, 22,192, 0, 0, 32, 0, 73, 68, 65, 84,191,249,160, 97,248,182,103,159,162,246,164,129, 53,132, 34, 33,196, + 34, 17,230, 69,191, 42,173,107,179, 61, 7,197,129,129,129, 67, 93, 92, 92,138,134,246, 1,129, 49,142,214,127, 23,170, 16,122, +210,202,145, 36, 77,153,253, 52, 0, 84,241,126, 90, 25, 66,149, 70, 81,212, 93, 66, 72,155,114,105, 75,142,107,202,125,150, 28, +127, 88,131,236,151,172,117,248, 30,249,210,247, 70,252,244,214,173, 91,206, 94, 94, 94, 72, 72, 72,120,111, 38, 92, 73,199,165, + 80, 40, 32,147,201,112,243,230, 77, 0,120, 90,153,177,171, 87,175,110, 66, 81,212,101, 20, 15, 27,120,251,126,222,245,102,219, +222,109,240, 91,192,129,156,148,148, 20, 15,188,141,161, 67, 57, 56, 56,140, 17,138, 5,195, 27, 53,175,231, 3,158, 95, 29,124, +250,198, 50,125, 87,216,168,169,123, 62, 0,101,201,172,195, 26,206, 62, 4, 77,211,195, 6, 14, 28, 72, 63,122,244, 8,195,135, + 15,199,254,253,251, 43, 77, 59,102,204, 24, 28, 60,120, 16, 3, 7, 14,164, 23, 46, 92, 88,105,120,135,119,213, 18,205, 71,187, + 41, 99,158, 61,196,190,131, 59, 43,245, 65,178,177, 41,242,199,122,243, 38,189,244,183, 54, 94,250, 71, 70,120, 86,115, 41,236, + 94,168,119,135, 46,221, 69,137,169,217,224, 89, 53, 84,121,111,207, 47,204, 78, 5, 97, 85, 16,201,107,195,206,202, 28,247,111, + 93,212,104, 53,170, 75,250,108,206, 28,232,142,169, 3, 92, 1,194, 99,208,220, 93, 8,218, 60,163,244, 13,186,211,144, 89, 8, + 62,188,193, 96, 31,191,242, 16, 10,133,136,136,136, 80, 86,166,102, 49, 12, 99, 72, 76,174, 98,213, 81,135,194, 66, 37, 10,149, +170,143,217,118, 88,219,218,218,254,108, 97, 97, 33,173,132, 72, 89, 91, 91, 91,255,108,105,105, 41, 53,116,232,176, 50,146, 85, + 28, 87,235,158,159,159, 95,181,200,150, 68, 34,105,240,244,233,211,210, 96,165,250, 62, 53, 26, 13,124,125,125, 13, 13, 94,122, + 26,192, 11,123,123,251, 27,110,110,110,230,207,159, 63,199,129, 3, 7, 68, 66,161,176, 94, 73,251,145,151,151, 7,134, 97,240, +230,205, 27, 29,128, 9,168, 98,232, 76,173, 86,135,132,132,132,180, 28, 48, 96, 0, 19, 29, 29, 13,134, 97,138,242,229,237, 13, +207,109,219, 16,249,245,215,240,121,249, 18, 42,173, 22, 82,169, 20, 23, 46, 92,208, 22, 22, 22,134, 84,102, 79, 38,147,237,136, +139,139,115,151, 74,165,208,106,181,224,121, 30, 52, 77, 83, 2,129,160, 83,173, 90,181, 54, 2,104, 83,174,178,108, 60,219,248, + 54,227, 88,150, 75, 73,120,158, 86, 85, 1,100,100,100,224,244,233,211,104,223,190, 61,124,124,124,144,148,148,132,216,216, 88, +244,237,219,183, 52,205,195,135, 15, 17, 22, 22,134,198,141, 27, 87,173,232,209, 58, 52,110,214, 0, 34,145,168, 72,205, 17,138, +138, 95,124,132,165, 74,150, 72, 40,130, 80, 32,132, 84, 38, 53, 88,209,162, 40, 10, 52, 77,131,162, 40,200,100,178,146,151,108, +222,209,209, 49, 37, 51, 51,211, 30, 0, 35,147,201,192,113,156,222,151, 22,158, 16,103, 81,250,205,228,185, 11,126,180, 9, 8, +184,140,203,151,223,128,166,105,216,219,219,131,166,105,196,197,197,129,166,105, 56, 57, 57,129,166,105, 36, 37, 37,149,144,196, + 44, 84, 78,134, 75,159, 27,138,162, 74, 73,150, 72, 44, 42, 85,182, 0, 32, 59, 59, 91, 53,112,224,192,127,171,213,234,241,168, +217,170, 39, 70,252,141, 65, 81,212,221,255,196,185,213, 64,191, 98, 98,245,158, 83,188,190,155,177,111,135, 14, 29,182,141, 28, + 57,178,251,250,245,235, 97, 98, 98,130,148,148,148,210, 14, 81, 44, 22,163,110,221,186,200,204,204,196,246,237,219,241,234,213, +171, 43, 0, 38, 27,154,163,148,148,148,219,207, 30, 60,205,240, 29,218,193,210,189, 67,179, 90,137, 79, 95,181, 79, 73, 73,185, + 89, 76,178,118,141,156,211,119,188,239,224,182, 16,137,133, 72,124,246, 26,193,167,111,252,191, 84, 38,195, 48, 12, 69, 81, 24, + 62,124,184, 65,233, 71,140, 24,129,144,144, 16,232, 27,102,228, 75, 20,173, 66, 21, 10,148, 31,239,197,106,218,140, 49,152, 54, + 99, 76, 41,153, 48,100,232, 5, 0, 28, 28, 14,233, 33, 90,218,245, 65,135,182, 79,106,213,214,219,169,181,123, 3,220,185,247, + 0,191,109,123, 43, 50,236,222,180, 2, 63,236,190,130,186,182, 22,208,170, 11,112,238,232, 47,175,181,234,194,245, 53, 20,229, +138,200, 45, 69,129, 16,190, 90,215, 94, 66,158,132, 66, 33,154, 55,111, 94,169,162,149,153,153,169,172, 74,205, 42,173, 35,141, + 14,249, 5, 74, 40, 11, 63, 26,209,242,236,212,169,211,165, 35, 71,142, 88,218,216,216, 32, 57, 57,185, 60,209,242,236,216,177, +227,165, 35, 71,142, 88,218,218,218, 34, 49, 49,209,224,176, 34, 21,144, 44,164,165,165, 81, 89, 89, 89,188,133,133, 69,181,200, + 22, 77,211, 80,171,213,120,252,248,177,161,127,107,240,108, 46,115,115,243, 61, 7, 15, 30, 52, 79, 79, 79, 7,195, 48,120,252, +248,241, 59,179, 14, 75,182, 93,187,118,137, 6, 13, 26,180, 51, 59, 59, 91,239,180, 54,150,101,215,142, 25, 51,102, 98, 82, 82, +146,133,141,141, 13, 82, 82, 82, 32, 22,139, 65, 8, 1,229,235,139,206, 47, 94, 64,203,113,144,201,100,136,137,137,193,142, 29, + 59, 10,138, 67,197, 84, 40,144, 81, 20,229, 44, 18,137, 48,122,244,232,119, 14,236,221,187, 23,159,182,102, 90, 91,155, 11,242, + 89, 72,213,169,178, 62,231, 24,134,161, 60,219,117,107,218,174, 75,191,230, 79, 34,239, 60, 79, 75,125, 85, 85,163,164,211,104, + 52,112,113,113,193,221,187,119,113,249,242,101,116,235,214, 13, 62, 62, 62, 8, 15, 15,199,197,139, 23, 17, 22, 22, 6,138,162, + 96,105,105, 89,226,126,161,215, 7, 67, 83,200,226, 77,114,198,123,234, 85,249,125,145, 72, 4,181,210,176,201,125,209,209,209, +184,123,247,110,105,104, 25,134, 97,216,177, 99,199,130, 16, 66,226,226,226, 96,106,106, 74,252,252,252, 56,129, 64,192, 38, 37, + 25,230, 31,108, 98, 98, 2,103,103,231,119, 94,124, 74,182,206,157, 59,227,222,189,123,160,105, 26, 2,129, 0, 54, 54, 54,184, +113,227, 70,149, 55,126, 9,169, 42, 33, 89, 2,145,240, 29,210,199,243,124, 94,120,120,248, 36, 0,225,197, 74, 22, 96,140,163, +101,196,255, 31,206,224,253,133,165,171, 84,180, 94, 0,232,113,224,192,129, 81, 39, 79,158, 92,187,113,227, 70,235,254,253,251, + 35, 43, 43, 11, 78, 78, 78,176,183,183, 71, 80, 80, 16,206,158, 61,155,206,113,220, 92, 0, 21, 73, 63, 61,160, 39,102, 77,210, +243,148, 35,234,252,252,169, 94, 62,174,184,114,248,122,128,157,157,221,100,134, 97,102,251, 45,250,108,124,215,129,109, 16, 19, + 22,135,219, 23, 35,144,154,144, 94,165,205,242,206,240,181,106,213,154, 40,151,203,197,168, 96, 42,113, 5,179, 14, 75,109,114, + 28,199,105, 52, 26, 28, 58,116,200, 32,178,117,224,192, 1,168, 84, 42,112,239,143,175,150,218, 36, 60,161, 4, 66, 9, 28,234, +186, 64,171, 45, 0,207,215,120, 66,101,169,205,146, 55,208,231, 98, 49,108,210,211,113,231,206, 29,195, 40,119,191,126, 85,213, +145, 74,163,202, 27,189, 97,229,188,160,233,254,171,107,117,235,208, 18,223,254,180, 23, 90,237,110,208, 12, 13,153, 68, 4,175, +182, 29,193, 64,141,159, 3,231,103, 23,230,102,141,198,251, 75,241,188, 99,147,232, 27, 97, 33, 0,199,243,184,124, 45,212,224, +107, 47, 51,204, 1,129, 64,128,103,207,158, 41, 43,154,109,200, 48, 69,195,156, 37,111,234,250,108, 18,158,167,132, 34, 41,234, + 58,185, 65,163,206,255, 40,117,100, 99, 99, 51,255,196,137, 19,150, 37,161, 18,194,195,195, 65, 81,212,227,183,138, 99,209,113, +165, 82,137,200,200, 72,132,135,135, 3, 69, 51,220, 12,126,142, 74,148,172,180,180, 52, 42, 37, 37, 5,114,185,156, 14, 15, 15, + 87,123,120,120,220,171,226,249, 46,181,169, 82,169, 94, 86,230, 63,169, 82,169,234, 72,165, 82, 97,185, 14,207,161, 73,147, 38, + 49, 21, 12, 33,190,151,207,156,156,156, 59, 11, 22, 44,240,234,221,187, 55,230,207,159,159,105, 97, 97, 97,250,243,207, 63, 11, + 24,134,161,166, 79,159,206,189,121,243, 38,255,151, 95,126, 49, 63,121,242, 36,178,179,179,111, 26,112,237,121, 42,149,106, 82, +135, 14, 29,246,158, 63,127, 94,238,236,236,140,220,220, 92, 16, 66,176,103,207, 30, 76,159, 62, 29, 82,169, 20, 49, 49, 49,248, +244,211, 79, 11, 11, 11, 11, 39,225,125,223,201, 18,155, 20, 69, 81,132,231,121, 44, 89,178,164, 52, 56,105, 73,176, 82, 83, 25, +133, 29,115, 26, 42,102,253,146,163, 24,245,237, 47, 99, 1,128, 99, 89,238, 73,228,157,231,123, 54,127,123, 85, 36, 18, 93,171, +162,142, 22,207,154, 53,235,231,126,253,250,201, 76, 76, 76,144,153,153,137, 27, 55,110,224,214,173, 91,184,125,251, 54, 52, 26, + 13, 44, 45, 45, 97, 97, 97,129,148,148, 20, 68, 71, 71, 43, 1, 44,214,103, 83, 44, 23,162, 81,211,146,153,191, 69, 10,150,176, +204,108,195,178,234,150, 72, 40, 52,232, 57,234,210,165, 11,218,181,107, 87, 66, 86,184,248,248,248, 20,181, 90, 77,149, 33,253, + 73, 37,132,188, 94,189,122,236,254,253,251, 73, 85, 54,121,158,127,143, 76,119,238,220,185,244,165,176, 93,187,118, 96, 24, 6, + 15, 30, 60,168,204, 53,229, 29,155,183,119,108,193,249,239, 22, 67, 44, 18, 97,238,227,196, 82,210,181,183, 91, 43, 8,197, 34, +184, 14, 24, 82,246,220,173, 40, 26, 46, 68, 57,146,165,175, 63,250,224,231,221,104,243,127, 30, 41,168,193, 18, 60, 37,248, 77, +165, 82,157,251,242,203, 47, 3, 61, 61, 61,191, 92,183,110, 29, 37, 18,137,176,108,217, 50,146,156,156,252,107,241, 27, 67, 86, + 77,114, 69, 8,249,245,143,227, 55,167,140,243, 31, 72,205, 89,239,215,233, 94,112,100,116,139, 14,206,104,209,193, 25,247,174, + 60,194,230, 69, 7,246,115, 58,110,201,235,215,175, 19,170, 48,165,238,209,177, 89,121,103,120,203,144,171,193,150,213,157,117, +200,243,252,145, 3, 7, 14,204, 28, 60,120, 48, 29, 26, 26,250,158, 79, 86,201,178, 59, 60,207,227,210,165, 75,208,106,181,248, +245,215, 95,121,158,231, 43,143,163, 5,114,106,195,250,192,113,191,238, 59, 37, 22,139, 40,220,186,118, 12, 57, 89,250,103,117, +137, 68, 66,236,218,115, 92, 43, 18, 9,159, 84,116, 92,171,213, 38, 6, 7, 7,219,246,226, 56, 33, 77,211, 21, 17,168, 10,113, +228,200, 17, 29,207,243,241, 85, 36,187,153,250, 42, 97,192,247,243, 39, 28,232,247,249,151,182, 29, 58,116, 18, 90,217,216,130, +162, 40,188, 73,125,131,152,200, 80,221,185, 99, 59, 83, 11, 10, 13, 91,130,103,194,143,127,148,250,100, 1, 64,255,233, 27, 75, +253,179, 0, 96,128,223, 2,248,182,119, 7,101,136,244,244,150,100,241, 44,203, 66,161, 80,128,101,217, 10, 67, 60,152,155,155, +203, 84, 42,149,178, 56, 16,163,222, 55,102, 2,124,244, 58,226, 56,206, 53, 43, 43, 11, 5, 5, 5,184,117,235, 22, 89,185,114, +101, 90, 90, 90, 90,169,211,166, 78,167,115,205,204,204, 68,126,126, 62,110,222,188, 73, 2, 3, 3,211, 50, 50, 50, 22, 85,231, + 25,146,201,100,173, 5, 2,193,189,172,172, 44, 94, 46,151,211, 58,157, 78,231,225,225, 33,145,201,100, 6, 47,168,158,146,146, +210,187,178, 99,141, 26, 53,122,250,244,233,211, 38, 28,199,149, 93, 3, 81,164, 82,169,156, 59,116,232, 96, 72,251, 49,107,247, +238,221, 56,126,252,120,219,220,220,220, 49,241,241,241,123, 1,180, 21, 8, 4,120,240,224,193, 99,149, 74, 53,114,240,224,193, +123,178,178,178,238,160,104, 9, 30, 67,112, 62, 38, 38,102,180,171,171,235,238,229,203,151,155,248,248,248, 8, 28, 28, 28,208, +166, 77, 27,196,196,196,224,204,153, 51,186,173, 91,183, 22, 20, 22, 22, 78, 0,112, 73,127,181,131, 98, 89, 22, 98,177,184,116, +147, 72, 36, 16,137, 68,200, 83, 18,124,241, 83,172,146,133, 76,185,118,217,164, 51, 4,160, 94, 39,198,166,191,121,157,120,135, +162,168,107, 41, 41, 41, 57,149,148,153, 88,165, 82,181, 36,132, 48, 20, 69,173,215,106,181,126, 51,102,204,176, 95,181,106, 21, +154, 53,107,134,244,244,116, 40, 20, 10, 56, 59, 59, 35, 45, 45, 13,161,161,161, 92, 97, 97,225, 54, 0, 43, 80,236, 63, 82, 25, +178,211,115,225,104, 87,239, 29,229,147, 16, 2,194, 1, 58, 53, 7, 78, 75,160,161,116, 16, 10,117, 16,137, 68,134, 12,169, 16, +158,231,145,101,111, 15, 62, 50, 18,183,111,223, 6, 33,164, 82, 85,205,197,197,197, 32,133,148,227,184,247,136,214,157, 59,119, +192, 48, 12, 58,117,234,132,176,176,176, 82, 69,203, 32,191, 68,194, 67, 44, 17,191, 51, 92, 72, 81, 20, 68, 98, 49,132, 98, 81, + 69,179,113,140, 42,150, 17,127, 27, 24, 58,142,157, 13, 96,242,195,135, 15,247,118,237,218, 53,136, 16, 34, 68,209,120,228,245, + 15,249,243,215,175, 95,223,191,121,230,254, 66, 91, 71,139,192, 62, 99, 58,161, 89, 75, 39,112, 44,135, 27,103, 31,224,215, 85, + 39, 15, 38, 37, 38,249,193,128,181,207,120,158,191,218,177,117, 51, 26,101, 98,117, 59, 56, 56,240, 53,153,117,152,147,147,179, +116,238,220,185,152, 63,127,126, 77,102, 29, 86,136,136,232,180,201, 20,136,227,128, 62,157,123,129,162,137, 70,163,214,211,240, +161, 52,114,169, 72, 36,124,114, 55, 60,197,163,162,116,105,105,105,189,198,143, 31,127, 73, 32, 16, 52,168, 78,153,243, 60, 31, +159,154,154,218,189,234,148,236, 13,181, 50,215,249,244,193,237, 95,159, 63,190,187, 23,207,115,141, 41, 0,140, 64,244, 92,167, +213, 94, 80, 43,115,215,193,192, 69,165,215, 76,246,198,172, 13, 23,177,101,254, 0,204, 8, 60,140,157, 75,190,192,194,159, 14, + 96,245,252, 89, 88,185,241,223,248,118,214,104, 12, 29, 53,158, 39, 20,253,167,161,215,193, 48,204,249,237,219,183,143,251,226, +139, 47, 74, 39, 45, 16, 66,222,105,132,117, 58,157,146,231,121,108,219,182,141, 7,112, 94,159,189,119,235,136, 34,250,252,165, + 12,173,163,220,220,220, 9,222,222,222,123, 0, 72, 8, 33,207,178,178,178,190, 2,222, 46, 13,149,159,159, 63,161, 67,135, 14, +123, 8, 33, 18,138,162,222, 59,110, 8,138, 67, 61,180,182,176,176,184, 87,172,100, 73,106,226, 16,175,175,168,245, 12, 43, 26, + 50,132,248,127,236, 93,119, 92, 20, 87,219, 61, 51,219,151, 93,202,210, 89,138, 2,138,130,162, 66,108,216, 91, 36, 42,214,136, +198, 40,150,152,152,188,182,168, 73, 4,163,177,151, 36,182,168, 49,106,236, 70, 99,195,168,136, 53, 88, 18,141,177,128,136,160, +210,123, 91,150,178,192,246,157,153,239, 15, 74, 16, 41,139, 38,239,151, 55,217,243,251, 45,187,195,204,156,189,247,238,157,185, +103,158,251,220,231,161, 1,204,173, 19,241,125, 93,247,238,221,235, 38,149, 78, 40, 41, 41,233,250, 10,229,186,170, 82,169, 58, + 46, 91,182,108,129, 64, 32, 24,168, 84, 42,219, 1,128, 72, 36,122,174,209,104,174,171, 84,170, 45,104, 62, 54,149,150,166,233, +231, 6,131,193,215,206,206,174,106, 69,109,181,216, 2,128,115, 15,168, 7, 0,213,173,202, 40,126,212,232,130, 69, 70, 70,182, +150, 72, 36, 67, 9,130, 24,207, 48,140,119,121,121,185,102,217,178,101,119, 78,158, 60, 89,230,238,238, 62,108,196,136, 17,132, +181,181, 53,238,223,191,207,200,229,242,211, 0,150,192,136,149,214, 52, 77,103,124,253,245,215,104,233,245,222,212,126,157, 78, +151, 31, 25, 25,105,251, 86, 97, 33,155,166,105,140, 28, 57,242, 5, 1, 87, 31,207,158, 61,131, 70,163,105, 54,152, 99,105,105, + 41,186,119,239,254,194, 3,106,205, 43, 35, 35, 3,214,214,214, 47,124, 79,115,207, 88,154,178, 18, 12, 90,176, 24,168, 94, 81, + 90,131, 42, 75, 22, 3, 70,107,210, 85, 38,252,125,241, 87, 39,223, 52,202,180,232,228,228, 52, 81, 32,226,207,110,213,206,169, +115,110, 74, 97,124,121,153,242, 72, 94, 94,222,238, 70,110,228, 70,113,182, 48, 96,169,201,252,251, 23,113,254, 17, 71,139, 2, +195, 80, 96,104, 6, 12, 67,131,166,169,170,132,215, 12, 13,134,162, 8,130,192,175, 90, 85,147,145,193,235,151, 83, 98,107,107, +187,138, 97,152,183, 88, 44, 22, 89,247, 70, 93,247,115,181, 37,235,146, 76, 38,251,162, 1,203,235,255, 92,123,158, 60,121,178, + 65,241,111,236,170,195,224,224, 96,170,133,215,230,117,145, 72,228,212,208,190,202,202,202,204,188,188,188,161,127,147,246,172, +187, 98,176, 37,156, 45, 94,117,216, 28,103,171, 86,173,248, 58,157,206, 31,128, 23, 65, 16, 86, 0,138,117, 58,221,229,162,162, +162, 2, 0, 93, 1, 44,171, 62,103, 53,128, 7,255,207,215,187,208,214,214,118, 63, 73,146, 46,198,156,108, 48, 24,180,197,197, +197, 83,235, 61, 16,252, 49, 5, 15,176, 4, 92,238, 61,144,164,115, 67,215, 99, 99,159,193, 48, 57,149, 42, 85,119,226,143,123, +126, 45,167,141,141,205, 3, 54,155,237, 98, 68,217,178,229,114,121, 87,211, 61,249,127,154,243,127, 25,245,157,224, 27,141, 20, +255, 87, 8, 45, 19,167,137,211,196,105,226, 52,113,154, 56, 77,156, 38,206,127,186,208,106,112,219,180, 4,214, 4, 19, 76, 48, +193, 4, 19, 76, 48,225,245,112,161,158,216,186, 80,243,129,104, 66,149,182,196, 36,248, 42,202,246,154,137,211,196,105,226, 52, +113,154, 56, 77,156, 38,206,127, 29,167, 9,127, 34, 76,102, 85, 19,167,137,211,196,105,226, 52,113,154, 56, 77,156,255,116, 52, + 58,117, 72,154,218,198, 4, 19, 76, 48,193, 4, 19, 76, 48,225,175,129,209, 66, 75,228,224,237, 99,219,170,243, 65,137, 75,167, + 88,137, 75,167, 88,219, 86,157, 15,138, 28,188,125,254,165,237, 38, 4,240, 46,155,205,190,234,232,232,168, 64, 35,169,119,254, + 1,176, 0, 48, 30, 85,241,125,198, 2, 48,251, 51,201,251, 3,236,137,192,236, 16, 32, 51, 4,200,156, 8,204,238,255, 15,244, + 27, 92, 49,207, 41,224,214,197,119, 47,174,152,231, 20,208,224,254, 69, 78, 54,119,175, 4,127,179,110,182,212,250, 79,250, 74, +115,123,123,251, 61, 14, 14, 14,233,246,246,246, 25,246,246,246,251, 1, 88,154,110,119, 38,152, 96,130, 9,127, 25,106,124,180, +106, 94,181, 62, 90,108, 0,136,136,136,232, 15,224, 6,128, 1, 65, 65, 65, 55,235,159, 45,113,243,157,217,198,163,205,167,107, + 86, 44, 33, 28,237,109,205, 12, 20,173, 75, 75,207,234,176,124,205,134, 83,185, 60,246,230,146,204,184,189,175, 80, 40,130,197, + 98, 77,228,243,249, 65, 0,106, 4, 91,130, 70,163,137,160, 40,234, 56,140, 91,166, 13, 7, 7,135, 91, 44, 22,171,117, 75,190, +152,162,168,204,130,130,130, 62,175,216,152,193,110,110,110,251,251,247,239,111,214,189,123,119,240,120, 60, 44, 91,182,108, 81, + 94, 94,222, 22, 99, 9, 36, 18, 79,115, 29, 95,240, 49,155,199,123,147,209,107,125, 25, 48, 0,201,143,163, 13,154,159,185, 26, +205,230,146,146,148,114, 35,169,150, 0,152, 86,221, 86,123, 1,124,253, 58,189,100,170, 31,244,122,170,170, 79,112,217,160,206, +166, 90,222,248,252,243,207,217, 65, 65, 65,216,187,119,111,159, 61,123,246,124, 80, 94, 94,254, 51,128,115, 0,146, 95,183, 87, + 58, 0,179,122,245,233,243,205,212, 69,139, 88,170, 91,183,240,205,254,253, 91, 81, 21,111,233,219,150,246, 37, 46, 23,227,109, +109, 57, 65, 12, 3,127, 2, 32, 8, 32, 70, 38,167, 35,117, 58,234, 56,140,136,197,214, 4,222,197,139,203,241,143,182,148,160, + 44,153, 89,202, 31,233,211,183, 44,249,250, 82, 0,195,234,239, 55,168, 5, 83, 25,150,107,144,138,137,206, 2,176,233, 53,155, +213,204,206,206, 46,246,236,217,179, 46,221,187,119,103, 3,192,131, 7, 15, 66,130,130,130, 6,201,100, 50, 95, 0,138,255,167, +155,144,128, 77,146,179,121, 28,206,155, 20, 69,117, 2, 0, 22,139,245, 88,171,215, 95, 53,208,244,183, 48, 50, 38,155, 9, 38, +152,240,207, 69,115, 90,228,111,142, 70, 35,195,215, 84,142,169,251, 94, 23, 34,251,246, 29,122, 14,126,251, 89, 89,185, 82,157, +158,158, 83,178,112,246,218,171, 31,204,223,248,211,166,239, 35, 34,111,254,158,112,215,167,251,208,120,145,125,251, 14,141, 80, + 55, 54,135,235, 38, 20, 10, 31,238,220,185, 83,247,252,249,115,166,180,180,148,121,246,236, 25,115,250,244,105,230,163,143, 62, + 82, 11,133,194,135, 0,220,140,225,116,112,112, 40,120, 22,117,133,201,142,141,102, 50, 30,252,206,232,245,122, 70,167,211, 49, + 58,157,142,137,191, 20,193,196,158, 11,103, 98, 78, 31,103,180, 90, 45,163,213,106, 25,141, 70,195,120,120,120,228, 26, 89,206, +250,144,118,236,216, 81, 27, 17, 17,193,156, 58,117,138, 89,180,104, 17,211,165, 75, 23, 10,192, 28, 99,235, 46,178,247, 26,104, +238,220, 89, 54, 51,244, 91,221,133, 59,151,153, 39,169, 49,204,147,212, 68,230,228,181, 4,102,218, 39,219,116,230,206, 93,100, + 34,123,175,129,205,213, 93, 34,145,244, 36, 8,130,169, 1, 0,166,117,235,214, 21,117, 95,110,110,110, 47,188, 92, 93, 93, 43, +220,221,221,147,109,108,108,252, 27,226,156,212, 9, 12, 19,127,148, 97,226,143, 50,159,247, 3,243,228,201,147,187, 12,195,220, +168,121,169, 84,170, 27,103,206,156,185, 49,122,244,232, 27, 0, 70, 53,209, 78, 70,181,103, 8,144, 89,126,246, 44,195,108,217, +194, 48,253,251, 51, 9, 0, 19, 2,100,182,144,211,195,209,145, 19,179,241,235, 15,180,103,207, 30, 96, 46, 94,188,192, 68, 70, + 70, 48, 63,157,217,207,108,221, 50, 91,231,224,192,137, 3,208,182, 5,156,108, 0,107, 1,108, 70,149,229,242,185, 76, 38, 99, +242,243,243, 25, 0,207,171,255,183,217,206,206,110, 19, 26,182,190, 13,169,107,201, 90,240,150,227,197, 9,195,250, 48,229,101, +185,204,132, 97,125,152, 5,111, 57,190, 96,217,122,203,211,211,124,238,200, 78,178, 39, 15,142, 80,115, 71,118,146,189,229,233, +105,254,138,237, 73,160, 42, 79,232,206,168,168, 40, 3, 83, 7,122,189,158, 57,116,232, 16, 37,145, 72, 14,180,128,179,157,157, +157, 93,134,181,181,245,243,186,255,180,235, 60,182,151,119,223,144,229, 54, 29, 70,247,111, 65, 57,187, 11,184,220,236,171, 39, +190,163,228,153,143, 25,173,170,128, 41, 75,138,102,178, 19,238, 50,135,118,111,214,243,216,236,108, 0,221, 95,167, 47,181, 16, + 38, 78, 19,167,137,243,111,200,217,148, 22,249, 95, 6,187,126, 5,235,131,207,231,133, 46,255,124, 49, 81, 42, 47, 85,169, 21, +229, 90,189, 90,173, 38,185,140,250,113,124,106, 33,201,102,149, 46,152, 63,207, 60, 52,236,243,208, 74, 96,178,145,223,233,214, +165, 75,151,123,225,225,225,246,214,214,214, 40, 43, 43,131, 92, 46,199,189,123,247,192, 48, 12,198,141, 27,199,239,209,173,155, +255,210,101,203,126,203,206,201, 9, 64,227, 3,239, 31,226,197,218, 22, 95,247,169,202, 69,251, 69,186,188,106,212, 33, 8,236, + 9, 14,170, 61,102, 85,118, 85,182, 12,129, 64, 80,155,144,248, 21, 16, 48,120,240, 96, 46, 0,188,247,222,123,138,242,242,242, +245,213, 22, 14,163, 50,173,138,236,189, 6,218, 58, 73, 35,190,219,245,181,176, 83, 27, 47,232,244, 6,100,228,231,130,205,177, +130,139, 11, 23,211, 39,191,201,233,215,203,218,118,237,234, 61, 23,242,105,140, 85, 22, 37, 94,110,140,203,202,202,234,208,241, +227,199,113,226,196, 9, 0,192,243,231,207,225,229,229, 37,106,174, 12,113,113,113,158,163, 70,141,250, 81, 46,151,183,109,238, +216,250,129,241,249,124, 62,250,244,233,131, 14, 29, 58,224,236,217,179, 3,170, 45, 91,175, 5,213,173, 91, 16, 63,122, 4,220, +124,165,135, 23,143, 55,222,104,117, 55,242,194, 17,219, 11,145, 9,216,180,105, 63,146,147,171, 12,109,158,158,158,120,119, 82, + 48,231,241,227, 59, 29,199,143,127,247,206, 47,191, 36,247,169, 22, 74,205, 97,229,247,223,127,191,196,221,221, 29,227,199,143, + 15,238,216,177,163,163,133,133, 5,118,239,222, 13, 39, 39, 39, 79,173, 86,155,116,246,236, 89,105,126,126, 62,230,205,155,135, +130,130,130, 69,141, 17, 13, 8, 28,176,148, 63,210,167,111,251, 55,166, 66,108,225,132,239,143, 29,199,179,135,135,250,106,116, + 9, 75,185,212,205, 41, 42,134, 63, 77,150, 41, 14,109,221,181,191, 77,219,142,163,208,234,141,104, 91, 53,245, 75,234,210, 55, + 61, 54,176, 5,234, 67, 43, 54,229,201, 95, 34, 29,127,146,229,171,120,106, 29,119, 21,114, 96, 5, 93, 35,176,106,173,181, 12, + 70,245,235,215,175,246,135, 75, 79, 79,135, 70,163,129,143,143, 15,169,213,106, 7, 26,217,174,237,134, 14, 29,250,107,100,100, +164, 77,187,118,237,100,197,197,197,181, 59, 28,109,172, 2,111,134,111,157,183,246,155, 31,188, 15, 51, 68,169, 44,225,167,199, +205,112,117,239,221,243,141,107, 23,195,143,136,137,138, 44,240,172,138, 0, 90,142,148, 31,247,129, 48,179,198,196,143, 22,178, + 7, 14, 30,228,252,230,176,183,175, 61, 75, 76, 30, 12,224,190,233,185,222, 4, 19,254,213, 86, 45,230,159, 86,167, 90,161, 21, + 20, 20, 68, 52, 84, 65,154,161, 59, 59,216,219, 8,183,110, 60,120,159,165,211,106, 69, 86,150, 90,142,165, 5, 77,152, 91,178, +116, 90,125, 69, 43,207, 86, 60,154,161, 59, 55,194, 95,127,137, 39, 33, 20, 10,195,207,157, 59,103,207,225,112, 64,211, 52,236, +236,236,144,150,150,134,210,210, 82,148,151,151, 35, 57, 33, 1,238,110,174, 88, 17,186,216,105,222,226,208,112,165, 82,217, 21, + 47, 78, 35,190,180,108,148,210,191,152, 55,186, 38, 5,203, 75,143,252,213,255,107, 96,159,177, 75, 81,211, 50, 51, 51, 33, 22, +139,225,235,235, 43,190,125,251,246, 47, 77,136,172, 23, 56, 37, 18, 79,115,154,207, 59,177,243,187,101, 66,157, 62, 14,241, 41, +197,104,239,222, 23, 14, 54,110,200, 45,214,226,238,189,115,136,139, 61,138, 54,206,110,152,243,209, 32,193,134,175, 79, 29,231, + 26,220,221, 74, 75,211, 20, 13,113, 42, 20, 10,177,135,135, 7,220,220,170,242,158, 81, 20,133,248,248,120, 80, 20, 85,187, 93, +247,253,224,233, 40, 24, 20, 25,152, 26, 18, 2,185, 92, 46,110,136,147,195,130, 97,225, 7,239,178,133, 28,128, 39,178,214, 86, + 84, 84,212,166,225,208,233,116,136,137,137, 65, 64, 64, 64,255,147, 39, 79, 54,167,138,140,106, 79, 29,240,213, 55, 7, 14,108, +155, 92, 86, 70, 2,192, 94,130,160,117, 12,243,149,177,125,201,222,158,115,250,210,197,195,182, 44,242, 41,172, 45,191,196,189, +123, 25,208,233,170,202, 43,151, 23, 98,238,108, 5,184, 28,115,156, 61,251,131,141,143, 79,159,211,249,249, 58, 95,188, 56,141, +216, 80, 57, 5, 23, 47, 94,196,220,185,115, 17, 31, 31, 47,173,201,209, 38, 20, 10,177,113,227, 70,150,143,143,143, 84, 36, 18, +225,210,165, 75, 40, 40, 40, 32,154, 42,231,141,203, 55,214,148, 37, 95, 95,154, 79, 92,122,235,251, 99,199,241,254,164,137,112, +100, 82,126,177,108, 67,172, 25, 58,178,247, 23, 12,203, 53, 72,100,222, 89,226,229, 59, 18, 92,158, 24,115, 62, 91,133,231,113, +231, 37,202,242,216,217, 4,149,229,186, 98,211,201,249, 47,149,243, 84, 48,245,222,209,219,111, 92,117,187,223,234, 81,204, 7, +191,231, 69,239,137,253, 67,104,121,178, 9,146,178, 4,170,210,154, 36, 37, 37, 33, 57, 57, 25,108, 54, 27, 42,149, 10, 6,131, +161,193,114, 74,165,210, 89, 6,131,225,139,234,223,249,160, 64, 32,152,113,228,200, 17,155,186, 66,219,174,243,216, 94, 54,230, +162,193, 5,133,242,146, 59,247,159, 60, 91, 56,107,252,128, 91,119,227,178,116,156,209,153,101,177,103,203, 26,105, 79,129,144, +199, 59,125,233,204, 15, 98,125,106, 20, 68, 62, 3,192, 17,123,129,210,231, 64, 89, 82,137,242,228, 60,104,190,219, 1,191,217, + 11,112,254,167, 83,226,142,157,186,158,212,232,245, 94, 0,180,175,112,109,182, 4, 38, 78, 19,167,137,243,239,201,217,168, 22, + 97, 24,230, 13, 0, 14,213,155,242,106, 93, 96, 11,160, 8, 85, 25, 5, 28,170,239, 29,188, 58,167,213,223,174,123,108,253,237, +186,159,229,213,159,237,171,223,239, 19, 4, 81,220, 76,209,157, 80,149,154,240, 66,245, 59, 80, 61,149,216,172,227, 49, 65,144, + 10,138,162,249, 92, 59,123,245,123, 19, 6,119,186,114,237, 65,140,153,173, 5, 59,112,128,127,255,123,143, 83,127, 35, 72, 66, + 79, 16,164, 81,126, 31, 44, 22,107,226,214,173, 91, 59, 89, 88, 88,128,166,105, 88, 90, 90, 66, 38,147, 65,171,213,162,172,172, + 12,154,114, 5,116,229, 10, 60,202, 74, 71,239,254, 3,240,246, 91, 67,125,126,248,233,220, 68,138,162,126,108,138, 87,218,217, +191,214,146,181,170,181,205, 31,166,137,172,210, 90,209,245,165,191, 23,184, 98, 49,222, 92, 24,250, 58,125, 32,250,194,133, 11, + 23,199,141, 27, 55,236,147, 79, 62, 33,243,242,242, 46,165,165,165,245, 6, 16,223,172,168,224, 11, 62,254,207,199, 65, 18,137, +152,193,201,171,231,208,207,127, 18,204,120, 44,200, 21, 58, 16, 4,144,240, 36, 28, 4, 97,141,216,231,121,232,235,103,129,161, +129, 62,226,159, 78, 37,124,130, 63,252,131, 94,250,105, 74, 74, 74, 80, 88, 88, 8,189, 94, 15,189, 94,143,241,193,193, 56,124, +232, 16, 42, 43, 43,161, 82,169,160,213,106, 65, 81, 20, 72,146,196,213,136,147,200, 74, 77, 64,175,128, 0,160,145,212, 75,135, + 98,192, 1,112,247,217,179,103, 72, 72, 72, 64,118,118, 54, 4, 2, 1, 28, 29, 29,177,106,213, 42,104, 52, 85,249,196,130,131, +131,251, 3,120,252,186, 23, 84, 50,176, 39,141,162,150, 14, 59,115,198,254,246,153, 51,244,221,243,231,179,249,229,229,187,141, + 57,151,203,197,248,175,191,250,168,189, 72, 36, 66,118,230, 86,120,123,115,177,104,129, 13,214,127, 89, 4, 0,152, 55,215, 5, +221,186,218, 66, 81,122, 10,182,246, 75,176,109,219,252, 54,211,166,109, 14, 81, 42,169,131,205, 80, 47, 61,119,238,220,219, 94, + 94, 94,206,209,209,209, 4,143,199,131, 80, 40,132, 80, 40,132, 64, 32, 64, 97, 97, 33,210,210,210,152,175,191,254, 58, 7,192, +210,166,136, 86,108,203,251, 13,192,176, 5,111,225,226,179,135,135,250, 58,179, 82, 31,189, 61,167, 79,122,236,221,232,242, 43, + 87,111,175, 54,168, 5, 89,165,217,215, 22,123,116,139,182,157,253,233, 74,236,248,122, 57,158,253,126,171,216,193, 77,241,173, +144,208, 52, 88,206,254,253, 87,176,157, 28,172, 13,179,166,189,109,117,222,225,206,172, 72, 54, 33,203, 47,122,184, 17,105,209, + 42,126, 91,255, 41,237, 60, 73,109, 84, 84,148,176, 95,191,126, 80,171,213,181,150,201, 35, 71,142,208, 6,131,225,122,131,125, + 83,167,251, 34, 39, 39,199, 73,165, 82,225,173,183,222,154,183,113,227, 70, 81, 77, 62, 57,138,162, 94,176,100,173,217,114,248, +242,199, 95,124,123,253,242,143, 95, 74,215,132,206, 24, 48,121,206,218,235,104, 36,143, 36,155, 36,103,159, 63,179,223, 81, 32, +209, 67,104, 61, 20,234, 2, 21,158,237,121, 31, 74,133, 26,221,214,172, 4,192,131, 86, 79, 98,247,200,241,224,216, 72,177,124, +230, 12,233,231,187,191,255,136,166,233,173,166,231,122, 19, 76, 48,161, 30, 28, 8,130,136, 0,128,208,208,208, 37,235,215,175, +127, 66, 16, 68, 4,195, 48, 65,213, 6,148, 8,134, 97,130,106,142,169, 22,103, 47,109,215, 28, 91,127,187,254,231,176,176,176, +142, 27, 54,108, 88, 23, 16, 16,240,227,157, 59,119, 82, 1, 52, 39,180, 70, 84, 11,171,151, 82,239,144, 53, 10,178,238,251, 11, + 22, 45,154,190,149,148,154,174, 28, 58,164,135, 75,196,205,199,247,167, 79, 31, 49,120,226,200,126,129,105,153,242,132, 54,173, + 28,109,159, 60,121,108, 65,211,244, 45, 99, 90,137,207,231, 7, 13, 26, 52,136, 93, 82, 82, 2, 51, 51, 51,200,100, 50,228,228, +228, 64,167,211, 65, 93, 86, 10, 77, 89, 41,212,165, 37,208,149,149, 32,249,193, 61,116,110,227,201,175,118,150,111, 18, 53, 86, +151,250,150,170,186,150, 45,158,185, 57,248,230,230, 32, 90, 62,109, 56,218,202,202,234,110,205,160,170,211,233,102, 47, 94,188, +184,136,166,105,172, 93,187,214, 66, 44, 22,159, 4,192,111,142,196,220,142, 21, 20,224,231, 75, 62, 77,139, 69,159, 46, 83,209, +206, 99, 56,210, 10, 84, 40, 42,215,161,176, 84,135,110,253,182,163,117,151,149,112,245, 91,143,132,140, 98, 72,157,189, 72,176, +249, 77, 38,127,206,202,202,122, 97,251,199, 99,199,160, 84, 42,209,166, 77, 27, 76,154, 52, 9,139, 23, 47,198,164, 73,147, 32, +149, 74, 49,121,194, 40, 44, 95,190, 28,249,249,249,205, 21, 85,211,174, 93, 59, 77,171, 86,173, 52,173, 90,181,210,232,116, 58, + 84, 84, 84,160,180,180,180,126,123,207,111,105, 67,218,219,219,135, 57, 58, 58,198,218,219,219, 63,225,243,249,145, 49, 4,241, + 84,221,170,149, 67,239, 49, 99,136, 14, 19, 38,176, 50,132, 66,226, 38, 32, 54,134,203,214,154, 51, 98,224,160, 97,188,210,146, +253,181, 70,170, 25,211,237,240,235,205,142,184,253, 75, 87,204,157,221, 6, 4, 41, 0, 65,242,160,172,140, 66,143,238, 1, 92, + 43, 43,162,185,190,244, 46,128,152,222,189,123, 75,231,204,153, 67,240,249,124,204,155, 55, 79, 55,115,230,204,196, 73,147, 38, + 37,254,252,243,207, 84,171, 86,173,224,234,234, 74,184,186,186, 58, 1,136,169, 62,167, 73, 88,180, 33,214,104,116, 9,191, 88, +121,137, 82, 41,216,246,170,208,243,199,175,216,148, 39, 95,179, 51,117, 83,218, 51,165,231,179,223,111,201, 19,227,206,211,105, +247,111, 20,229, 38,150,123,174,217,153,186,105,201,183,185, 13, 94,212, 55,111,130, 14,143,184,169, 83, 86, 42,217, 99, 70, 14, + 84,206,122,111, 98, 59,107,113,199, 35,112, 30,218,165,181,155,203,228,229,235,182,233,102,126,244,177,110,239,190,253, 76,121, +121, 57, 20, 10, 5,182,109,219,102, 56,127,254,124, 14, 69, 81, 31, 55,246, 12, 4, 0,122,189, 30,179,102,205, 18, 89, 88, 88, + 32, 43, 43,171,214, 34, 10, 0,121, 50,249,227,219,247,227,158, 46,252, 48,184,127,165, 70,163,185,124,227, 65, 66, 7,175, 86, + 46, 4,193, 52,186, 16,133,199,225,188,217,181, 71, 15, 22,195,148,130, 96,187, 33,249,208,215, 80,228, 23, 67, 81, 88, 12, 22, + 71, 4, 3,248,208,211, 60, 88,117,238,142,231,247,163,225,108,231,192,230,115, 56,129,166,241,196, 4, 19,254,157,104, 74,139, +212, 21, 75, 27, 54,108, 88,215,212,254, 58,239,218,122,219,181, 66,170,190, 8,171,251, 25, 0, 54,108,216,176,142, 97,152,160, + 59,119,238, 28, 3,160, 50,178, 10, 31,212,121, 55, 62,142, 22, 75,173, 93,255,201,226,165,144, 88, 10, 45,187,251,123, 57,158, +189,116,243,193,173, 59, 15, 18, 90,187,218,218, 49,122,173,228,171,205, 59, 92, 8,165,106,131,145,133,240,177,181,181,133, 78, +167, 67, 82, 82, 18,178,179,179,161,211,233, 96,168,172,132,166,180, 20,234,146, 18, 80,149,229,224, 82, 20, 84,178, 66,216,152, + 9,128, 63, 86, 36, 54, 99,121, 35, 26, 20, 90, 53,239, 2, 11, 11,240,205, 45, 64,114, 56,205,102,138,175,131, 55,186,119,239, +126, 34, 46, 46,174,199,144, 33, 67, 86,163,106,137,124, 70, 78, 78,206,224,101,203,150,105, 28, 28, 28, 48,107,214,172,246, 0, +166, 54, 43, 50,121, 90,159, 86,142,237,209,206,115, 42, 90,187, 14, 66,105,165, 30, 50,133, 30,133,165, 58,236,222, 30,128,211, +123,187,227,215,211,125, 17,119,249, 77,148,234, 29, 33,150,142, 6, 67,105, 59, 54,197,121,245,234, 85,172, 90,181, 10,171, 87, +175,198,218,181,107,177,122,245,106,228,228,228,192,215,215, 23,153,153,153,184,120,241, 34,242,242,242, 96,107,107,139,123,247, +238, 97,203,150, 45,248,245,215, 95,155,173,116,141,112, 53,226,152, 22,205,165, 27, 12,134,105,121, 99,198,116, 42,176,182,238, +224,239,239, 63,108,222,188,121,158,189,123,247,174,221,239,233,233,233, 38, 20, 10,243, 81,181,130,210,175, 41, 46, 26,240,183, +179,243,133, 86,243,180,250, 55,230,128, 32, 4, 24,244,102, 2,122,247,125, 0,157,158, 11,146,224,131, 36, 5, 48, 24,228,144, + 72,164, 96, 24,194,183,153, 34, 46,147,201,100, 94,215,174, 93, 35,211,210,210, 32, 16, 8, 0, 32,125,197,138, 21, 59, 54,109, +218, 20,111, 99, 99, 67, 69, 68, 68,224,167,159,126, 66, 80, 80, 16,107,230,204,153, 94,174,174,174,187,154,171,247,138,109,121, +191, 29,221,124,241, 29,142, 94,226, 39, 16,182,118, 71,165,120,244,127,250,219,138, 0,224, 82, 74, 74,185,189,155, 98, 67,101, +121,108,166,149, 75,197,151,151, 82,154, 91,113,186,130,126,152,248,244,238,209, 51,151,202, 10, 11, 74, 56,254,157, 58,170,214, +175,250,148,219,218,189,237, 87,203, 23,127,232,152,163, 16, 44, 42, 9, 57, 0, 0, 32, 0, 73, 68, 65, 84,148,190, 57,239,226, +211,240, 75,247, 42,166, 76,127,223,240,222, 7,115,212, 23, 47, 93, 61, 67,211,116, 39, 52,178,226,144,166,105,228,229,229,225, +201,147, 39, 72, 73, 73,129, 76, 38, 67, 81, 81, 17,202,203,203,107,167, 27,205,202, 21, 23,118, 28, 56,255, 72, 36, 20,154,245, +232,228,229,246,123,116,124,161, 72, 40, 52,243,114,119,107, 7,172,104,240, 62, 66, 81, 84, 39,129,153, 16, 0,129,210,184, 91, +168, 40,169, 64, 69,105, 5,202,139, 43,160,209,177,160,214,144, 80,105, 73,180,234, 63, 20, 21,149,106, 84,200,203, 64, 83, 84, + 23,211,112, 99,130, 9, 38, 52, 49,214, 71,132,134,134, 46, 49,242, 88,163,167, 55,235, 11,175,208,208,208, 37, 4, 65, 68,132, +133,133,117, 68,227, 11,170,234, 98, 79, 3, 47, 0, 70,132,119,144,203, 19, 43,204, 9,159,113, 11, 62,251,226,226,177,125,219, +237, 53, 26,101,166,141, 68, 76,137,205,120,182,239,205, 90,139,242,138,146,177,149,198,135, 35, 64, 73, 73, 9, 82, 83, 83, 33, + 20, 10,193,229,112, 64,169, 84,160, 84,149, 80,149,200, 65,234, 52,224, 82, 20,172,205,132,104, 37,117, 68,107, 7, 71,163, 56, +147,162,174,212, 58,190,215,157, 46,252,186,187, 15,120, 34, 49,120,230, 98,252, 39,226, 6, 0,128,203,229, 2,203, 86, 27,101, + 52,113,118,118, 62,119,244,232, 81,174, 76, 38, 67, 76, 76,204, 35, 0,101, 0,204, 1,208, 9, 9, 9,215,226,226,226,130,188, +188,188, 0,160, 77,115,100,138, 34,146,210, 27, 24,100,229,167, 35, 45, 59, 26,214,150, 30,224,152,181, 67, 97,169, 14,124,161, + 7,244,154, 63,102, 31,213,138, 12,168,116, 44,163,234,174,213,106, 97, 48, 24, 96, 48, 24,160,213,106,241,193, 7, 31,224,246, +157, 59,248,241,167,159,145,154,252, 28,237,221, 29, 17, 18, 50, 5,221,187,119,199,157, 59,119,154,228,154,234, 7,189,179, 24, +236,205,195, 72,240,196, 54,154,158,139, 47,255,222,156,216, 34, 8,130, 65, 35, 83,145,245,176, 41, 32, 32,160,237,243,202, 74, + 60,121,250, 20, 67, 86,172, 0, 0, 68, 70, 70,190, 80,151,133, 11, 23,242,226,227,227,223,123,240,224,193,123,185,185,185,155, + 1, 52,236,108,206, 0, 23, 46,252,134, 15, 63,140,135, 76, 38, 3, 0, 28, 63,246,135, 46, 77, 75,213,225,173, 17, 85, 51, 90, + 86, 86, 86,216,188,217,215,168,246,164, 40, 10,123,246,236,169,157, 46, 4, 0, 54,155,221,123,225,194,133,227, 26, 58,190,109, +219,182,220,230, 56, 23,140,119, 22,252,250,136,153,109,217,182,117, 71, 11,219,206,144,235,163,125,163,115,242,230, 46, 24,239, +188,117,203,169, 28,181,144,208, 28, 36,168, 44, 87,182, 64,125,200,152, 50,166, 92,218,174,149,183,154,118, 40, 95,166,248,124, +206,251,239,218, 88, 88,217, 87,238,221,177, 94, 66,178, 72,230,220, 3, 93,105, 71, 79, 27,171,209, 61,191,169,248,112,193,178, +104,173, 33,107, 14,178,206, 61, 71, 19, 33, 46, 40,138, 66,110,110, 46,100, 50, 25, 50, 51, 51, 81, 84, 84, 53,253, 90, 84, 84, + 4,154,166, 95,231,134, 8, 85,102, 38, 50,206,236, 69,235, 41, 83,208,109,245, 42, 80, 52, 27, 42, 37,133,205,189, 6,163,164, + 76, 5, 13, 77, 64,250, 70, 47,188, 31,249, 11, 72,134, 2,118,127,107, 26, 73, 76, 48,225, 95, 10, 99,194, 59,212, 8,162,245, +235,215, 7,253,217,223, 95, 87,108,173, 95,191,254,201,250,245,235, 91,242, 93,245,167, 12,107,183,107,124,180,110,212,113, 64, +123,105,208, 44, 47, 74, 72,137,143,103,231, 86,170, 42,205, 28,236,237, 52,102, 2, 62, 93,166, 40,103, 69, 63,126,164,171,204, + 79,126,214,130,122, 36,196,197,197,249,230,230,230, 34, 51, 35, 3, 6, 85, 37, 72,141, 22,140, 90,137, 33,125,122, 65, 0, 64, + 64, 18,224,210, 58,176, 89, 60,148, 87, 40, 0, 32,161,217,193, 81,175,127,201,178, 69, 16, 4,120,230,230,224,137, 68,224,137, +205, 95,176,112, 25, 99,177,225,243,249, 71, 79,158, 60,233,228,236,236,140, 85,171, 86,193,197,197,197, 91, 42,149, 42, 45, 45, + 45,133, 14, 14, 14,232,208,161, 3,122,245,234,133,139, 23, 47, 2, 70,196,148,210, 27, 4,177,207,210,209,187,168,248, 14,126, +185,241, 29,180, 42, 13,252,251,127, 7, 29,187, 53,236, 58,174, 4,157,116, 4,202,252,179, 85,214, 3,199,145,200,206, 76, 7, +193,226, 61, 49,214,242, 84,243,249,209,163, 71, 56,118,246, 38,156, 90,249, 32, 51,241, 41,158, 94,191,134,219,118, 54,104,229, +211,161,118, 26,168,209, 50, 82, 96,175,249,182, 42, 76,212,210,217,239,242,139,139,139,249,214,214,214,154,154,182,115,114,114, +122, 29,177,245,238, 39,159,124,130, 82, 14, 7, 24, 49, 2,220,148, 20,232,116, 58,244,236,217, 19,221,186,117, 3, 0,244,236, +217, 19,108, 54, 27,157, 59,119,134, 84, 42,197,183,223,126,251,110, 99, 66,139, 36, 16, 99, 48,200,189, 61, 61, 61,107,133,214, +161,195, 50, 68, 63,120, 19, 4,120,216,182, 35,169,246, 88, 55, 55, 55,228,231,165,128, 32,152,184,102,202,184,218,209,209,113, +153,147,147,147,231,166, 77,155, 88, 2,129, 0, 31,125,244,145, 71, 69, 69, 69,235,106, 83, 50,194,194,194, 0, 0,203,151, 47, +199,138, 21, 43,160,209,104,148,141,145, 29,218,220, 73, 90, 88, 76,191,199, 84,152,141, 29,104,219,186,211,160,192, 33,240,240, + 26,132, 65,129,153, 0,176,206,154,157, 62,225,171,207,173,206, 88,153, 19,251,175, 92,186,186,188, 79,255, 65,159, 47,174,184, +190,230,203, 61,165,205,250, 60,150,101, 28, 44,127,198,155,184,101,251,174,195, 91,190, 8,155, 47,200,148,105, 75,114, 74,152, + 10, 49,159, 45,110,227, 64,136,231,126,182, 58, 53, 55, 55,101, 17,178, 46, 53,187,210,146,166,105,164,164,164,212,250,244,169, +213,106, 84, 86, 86, 34, 43, 43,171,182,207,168, 68, 22,111,205,153, 62,178, 75,165, 74,165,252,253,113, 98,230,210,121,147, 3, + 42, 85, 42,101, 98, 90,230,115, 96, 91,131,106,140, 36,201,199,202,114,229, 16,101,169, 26,178,152,103,112, 25,220, 10,122, 3, + 1,173,129,130, 76, 94, 14,141, 1,160, 72, 14, 58, 78, 8, 1, 69,176, 81,148,155, 3,146,197,122,132, 23,157,246, 77, 48,193, +132,127, 15,154,212, 34, 53, 22,173,128,128,128, 31,235, 90,157,106, 62, 3,208,160,105, 87, 30, 89, 93, 49, 85, 51,157,216,216, +247,212,227, 53, 22, 47,249,104, 53, 27,222,161,230, 59, 93, 45, 21,210,175,151, 79,118,161, 13,134,246,133, 69, 5, 6, 54,155, +207,113,181, 84,229, 21,103, 26,255,237, 26,141, 38,226,218,181,107, 99,222,124,243, 77,126,226,227, 71,208,150,149, 65, 91, 86, + 10, 14,109,128,181,176, 43, 72,157, 6,132, 86, 11,103,111, 26,234,114, 33,110,222,142,211,107, 52,154, 8, 99,133, 22,201, 98, +189,232,151, 37, 22,131,111,110, 1,190, 88, 92,127,106,177, 57, 81, 96, 54,116,232,208,193, 61,123,246, 4,195, 48,216,179,103, + 15,116, 58, 29, 79,167,211, 65,171,213, 66,167,211, 65,161, 80,224,240,225,195,216,185,115,231,109, 0, 7,154, 29,204, 12,218, +107,151,175, 70,117,159, 49, 57,136, 19, 25,177, 25, 6, 45, 5, 21,225,130,202, 74, 61, 42,180,102,160,108,166, 0, 5, 23,192, + 98, 11, 16,208,217, 3,103, 79,133,235, 96,208,252,108,164, 10,127,193, 42,148,149,153,142,236,228,231, 16, 43,242, 97,103, 97, + 6,101,202,115,248,135, 76,125, 37,235,132,171,171, 43,104,154,198,192,129, 3,107,157,171, 95, 85,108,201,229,114,156, 63,127, + 30, 61,123,246, 68,255,254,253,145,147,147,131,148,148, 20, 12, 31, 62,188,246,152, 71,143, 30, 33, 58, 58, 26,109,218, 52,109, + 36, 44, 42,214, 71,102,103,197, 4,143, 30, 61,154,123,247,238, 93, 48, 12, 3, 47, 47, 11, 88,152,139, 64,144,124,248,248,216, + 3,168,122, 6, 24, 48, 96, 0, 20,138, 20, 67, 73, 9, 19,217, 76,117,143, 2,248, 73,171,213, 38,245,235,215, 79,154,156,156, +140, 5, 11, 22,176,143, 31, 63, 94, 99, 74, 70,104,232,139,139, 41, 84,170,198,167,238,219,119,242,254,212,195, 32,233, 47, 16, +182,118,183,176,237, 12, 15,175, 65, 0,128, 55,131,102,192,163,173, 27, 20, 69,177,238,106, 85,250, 88, 46,187, 68, 18,187, 45, + 39, 94, 56,194,119,186,186,240, 70, 34,170,166, 78,155,253,217, 85,137,199, 11, 50, 57, 83, 78,252,116,238,226,172,225, 65,163, + 56,122,202, 96,240,109,197,177, 58,121,230, 66, 97, 78, 70,230, 55,200,188, 20,247,135,253,175, 73, 43, 30,165, 80, 40, 32, 18, +137, 16, 23, 23,167, 25, 49, 98, 4,159, 36, 73, 36, 37, 37,213, 10, 45,123, 91,235, 14,189,187,249,122,175,217,114,248,178,136, +207,231, 7, 14,232,234, 19,159,152,145,205, 48, 68,122,163,214, 86,189,254,234,227,152, 71, 3,237,164,109, 89, 41, 55,238,194, +166,239,112,104, 52, 36, 84, 90, 26, 26, 3, 96, 96,113,225,228,215, 3, 86,109,124,192, 0,184,127,247,182, 94,163,215, 95, 54, +141, 53, 38,152,240,175,182,106, 49, 77,137,164,234,207,197, 0,210,215,175, 95, 95, 84,199,218, 36, 3,240, 8, 64,151,234,227, +100,245,206,147, 17, 4,113,159, 97,152,110,117,120,100,117, 4, 87,221,207,218,122,199, 60,106,129,200,170,251,254,162,208,106, +108, 73, 37, 0,216,218,218,218,251,251,119,109,243,253,190, 19, 96, 24, 6,207,162, 55,162,164,240, 41,150,173,251,173,141,179, +179,115,255,156,156,156,155,198,148,128,162,168,227,251,247,239, 95,212,227, 13,127,127,119, 23, 23, 60, 74, 79, 3,151,161,192, +165, 40,144, 58, 13,216,148, 22, 46,190, 20, 72, 66,140,220,220, 50,108, 56,122, 34,174, 58, 74,124,147,240, 30, 62, 10,171,178, +203, 64, 16, 4, 54, 5,248,130,103, 46, 6, 87, 36,198,127,206, 69,213,138,171,136, 85, 97,224,137,197,104,211,195,168,128,240, +202,235,215,175, 63,120,252,248,113, 55, 95, 95, 95, 44, 90,180, 8,233,233,233,160,105, 26, 5, 5, 5,234,188,188,188, 28,153, + 76,150, 14,224, 12,128,239, 97, 68,228,113,174, 70,189, 53,226,244,161, 57, 1,125,250,219,142, 30,187, 19, 63,157, 90,136,210, + 50, 5,148, 6, 33, 42,213, 6, 84,106, 88,176,182,233,132, 30,157, 59, 35, 55,167, 16, 79,238, 94,174, 96,107,148, 27, 91,210, + 65, 9,130, 64,116,116, 52, 60,165,230,120,254,203, 77,216,154,113,208, 69,234, 8,105,239, 62,181,241,165,154, 2,135, 5,195, +187,239,190, 91, 27, 25,126,232,208,161,105, 83,166, 76,113, 90,184,112, 33,246,237,219,135,219,183,111,191,228,160,221,191,127, +127,220,186,117,107, 37,128,229,205, 25,245,180, 90, 45,188,189,189,113,255,254,125, 92,187,118, 13,131, 6, 13, 66,255,254,253, + 17, 27, 27,139, 43, 87,174, 32, 58, 58, 26, 4, 65,192,198,198, 6,250, 42,241,172,111,140, 76,167,195,201, 47,191,218,191,100, +203,150,157, 29, 39, 79,158,140,211,167,127,196,140,233,237, 65,144,124, 16, 4, 31,163, 70,182,199,170,213,247,209,163,199, 0, +216,218,114,176,101,243,217, 84,149,138, 58,108, 68, 51,174,185,114,229,138, 84,173, 86,163,180,180,148, 17,139,197,132, 92, 94, +181,162,181, 33,139,150, 82,169, 20, 52, 70,244,248, 97,194,198,210,114,166,132,169,136, 30, 91,108,136,238, 52, 40, 48, 11,111, + 6, 77,199,213,136, 3,136,186,124, 13,214,236,244, 52,136,202, 47, 22,165, 21, 41,242, 42,189,118,249,188, 49,147,149, 93,121, +121,215,220, 81,207, 89, 78, 78,244,201,176,239, 20,165, 77, 9, 45, 0, 68,113,252,145,115,103, 24,140,234, 21,208,163,173,175, +155, 19,175,164,168,144, 57,117,246, 98,156, 46,237,244,249, 58, 2,139,105, 70,168,175, 10, 13, 13,253,162,250,243,193,165, 75, +151,206,220,176, 97,131, 93,126,126,126,173,143, 86, 97, 81,113, 84,175, 17,115, 41,121,105,153,118,255,150,207,198, 11, 5,124, +222,210, 13,251,111,232, 89,184,219, 24,175,129,166,191,157,176, 96,217,252,196,103,209,206,173,133, 60,156,253,108, 57, 30, 93, +185, 14, 61,201,197,135,215,126,135, 70, 71,161,180, 72,142,159,223,155, 13,177,131, 4, 59,111,156, 46,160,105,250, 59,211, 80, + 99,130, 9,255, 94, 52,166, 69, 8,130,104, 40,198, 94, 65, 3,255,187,223,212,121,141,240,252, 25,104, 52, 42,188, 81, 75,240, +138,138,138, 10,111,221,250, 29, 55, 34,214,224,102,196, 26, 60,137,126,132,220, 28, 45,114, 10,212,176,176,176,248,173,137, 83, +235, 71,142,101,148, 74,229,184,165,203,190,200, 23, 8,205,208,111,240, 96, 56,218,217,195,140,203, 1,203, 64,131, 69,112, 80, + 33,179,194,243, 88, 37, 22,239, 63, 82, 88,161, 84,142,107, 96,144, 24,210,152,200, 32, 8, 2,124, 11,115,240,196,230,224,155, + 91,188, 48,141, 40,176,176,128,192,220, 2,108, 30,175, 33,103,248,151, 56, 43, 42, 42,222, 30, 63,126,124, 73, 89, 89, 25,102, +206,156,137,155, 55,111, 70, 95,190,124,217, 34, 54, 54, 86, 40,147,201,218, 2, 24, 10, 96,119, 19, 34,235, 5,206,146,146,148, +114,198,160,153,184,254,139,143, 85,106,131, 13,130,167, 30,135,136,204,130,129,162,193, 0,144, 90,243,208,123,200,106, 20,106, +123,225,248,174,181, 74, 90,167,158, 92, 47,134,214, 11,156, 12,195, 48, 14, 14, 14, 47,181,193,181,107,215, 16, 60,254,109, 4, +142, 29, 3, 59,119, 79,216, 15, 25,142,192,153, 31, 98,215,174, 93, 32, 73, 18,182,182,182,245, 7,222, 90,206, 67, 49,224, 28, +123, 12,226,216, 99, 16, 7,163,193, 6, 16,114,228,200,145, 47,187,116,233,114,253,246,237,219, 27, 1, 76,172,251, 93,117,176, +162,158, 53,171,161,223,232,243,249,243,231,171, 18, 19, 19, 33, 18,137, 96, 48, 24,112,251,246,109,236,220,185, 19,155, 54,109, + 66,116,116, 52,108,108,108,208,166, 77, 27,104, 52, 26,220,191,127, 95, 5,224,243, 38, 56,105,153,204,240,246,182,109, 27,228, + 65, 65,125,177,127,255, 14, 56, 58,246, 2,135,237, 8, 54,199, 14, 34,177, 55,246,126,255, 37,134, 13,243,199,185,179, 39,138, +139,228,134,183, 1, 24,140,232, 75,234,223,127,255, 29,187,118,237,194,248,241,227,115,130,131,131,169,178,178,178, 90,139, 22, +195, 48, 96, 24, 6, 43,170,125,204, 52, 26, 13,191, 49,206,247, 23,199,229,124,182,246,201,170,130,252,156,158, 55,175,255,246, +110,212,229,107, 72, 77,140, 66,212,229,107,248, 37,234, 78,104, 65,126, 78, 79,255,238,237,184,227,102,206,249,244, 80,248,105, +150,216,194, 9,135,194, 79,179, 38,205,253,120,109,215,192, 65,159, 55,215,231,171,127, 71,166,162,176, 32,108,221,198,237, 21, + 6,157,154,252,250,155,111,115, 85,178,188,207,235,244, 75,166,185,254,169, 82,169,118,171,213,106,169, 90,173,150,106, 52,154, +207,211,211,211,251, 45, 90,180, 72, 70, 81, 84,173,181, 84, 22,127,238,183,167,191, 30, 92,103,111, 43, 17,246,234,214,177,253, +230,221,167,110,100,102, 21,252, 80, 39,134, 86, 67,229, 84, 87,168,212,111,143, 25, 55,165,178,180, 68,131,128,143, 67, 65, 11, +196,208, 80,128,158, 97,193, 64,176,241,120,205,102, 8,173,205,113, 52,237,161,178, 76,175,123, 27, 47,198,208,106,170,238,175, + 3, 19,167,137,211,196,249,247,228,252, 95,134, 19, 94,204,117,232,244,130, 69,171,185, 37,149,206,206,206,253, 70,143, 26,130, + 1, 65, 75,193, 48, 12,158, 62,252, 10, 37,178,103,112,118,228, 35, 37, 83, 17, 0,224,102, 11, 10,147,153,158,149,213,115,254, +231, 75,195,131,135, 14,246,241,117,119,231,183,110,221, 10, 34,123,123, 20, 21,201,240,235,221,120,253,218, 99, 39,227,170, 69, +150, 81, 19,147, 52, 77, 87, 57,185, 3, 24, 60,127, 49, 8, 22, 11,168, 14,227, 80, 51, 48,186,119,235, 5,130,205, 6,197,208, +208,104, 52,198,172,150,203, 78, 78, 78,126,123,242,228,201, 63, 71, 68, 68,144,129,129,129,126,103,206,156,121,157,156,121,168, + 44, 76,188, 14, 32,104,109,216,172,227, 61, 7,141,177,240,234,216,149,219,181, 53, 11, 58, 61,129,220,156, 12, 68,132,223,211, +197,255,126, 89,193, 24,212, 19,149, 69,137,215,155,226,210,233,116,153,109,219,182,117,216,181,107, 87,173, 51, 60, 69, 81, 40, + 42, 42,194,111,191,253,134, 78,221,122,192,103,250,123,144,201,100,216,182,109, 27,220,220,220, 48,114,228, 72, 20, 23, 23,195, + 96, 48, 24, 59,225, 75, 1,184, 92,253, 66, 61,145, 69, 84,167, 0,106,114,218,208,211,211,147,167, 86,171,253, 24,134, 97, 17, + 4,177, 85,171,213, 78, 11, 11, 11,115, 90,183,110, 29,218,183,111,143,162,162, 34,136, 68, 34,120,121,121, 65, 38,147,225,222, +189,123,148, 82,169,220,133,170, 68,214,178,102,202,151,116,239, 94, 90,207,121,243,254, 19,254,229,134, 89, 94,106,205, 0,158, +181,117, 31, 48,140, 1, 50, 89, 58,202, 21,183,117,171, 87, 29, 72, 46, 40,212,143, 3,144,104,100,157,151,207,153, 51, 7, 0, + 4, 0,150,166,164,164,196,248,248,248,120, 53,102,209, 50, 6, 91, 78,229,168, 1, 28,123, 59, 80,186, 64, 81, 20,235,101,205, + 78, 79,235,233, 75,111,219,114, 42, 71,109, 33,173, 92, 83,148,126,243,121, 94,229,229, 93,135,194, 79,179,166,142,125,155,114, + 17, 39,134, 10,236,153, 83, 70, 80, 51, 93,186,116,113, 37,136, 98,143, 66,249,179, 7, 51,102,206,154, 96,201, 85, 69,118,113, +145,183, 33,221,252, 5,209,209,209,105,104,225,202,208,106, 60,207,201,201,233, 23, 22, 22,118,153, 97,152, 23,124, 19, 10,139, +138,163, 2,130,230, 48,165,165,101, 49,178,132,115,198,196, 82,187,119,239, 97,244, 96,223, 78,254,167,191, 92,183,193, 97,192, +252, 69,236,231,215,111, 0,148, 30, 25, 55,111,128,226,107,233,205,119,174, 22,148,233,116, 99, 97,138, 10,111,130, 9,255,122, +107, 86, 83, 90,228,111,142, 17,104,196, 25,222,232,202,120,122, 56, 95,110,239,213,122,168,155,139, 29, 0, 32, 37, 45, 23, 41, +105, 57, 87, 82, 82,115, 2,155, 81,188,141, 45,175,172, 77, 42, 77, 84,135,112, 96,140, 75, 42,253, 2,167,141,141,205, 3, 54, +155,237,210,146,214,160, 40, 42,183,168,168,200,223,200,114, 78,114,119,119,223,144,145,145, 17, 78,211,244,130, 22,170,253, 6, + 57,107,146, 74,147,108,222, 16,198,160,237, 4, 0, 4,155,103, 76, 82,233,186,156,157,196, 98,241,110, 14,135,227, 86,243, 59, +214,248, 96, 81, 20,197,210,233,116, 2,138,162, 88, 0, 8,146, 36, 13, 28, 14, 71, 77, 16,132,193, 96, 48,100,106, 52,154, 89, +248, 35,224,104, 83,117,111,118,160,175, 22, 90,104,192,162,117, 13, 0, 18, 19, 19,219, 73, 36,146,137, 4, 65,140,103, 24,198, +187,188,188, 92,179,108,217,178,232,147, 39, 79, 42,220,221,221,223, 26, 49, 98, 4, 17, 27, 27,139,184,184, 56, 70, 46,151,159, +170,182, 98,165,180,176, 47,145,124, 62,235, 29,107,107,114, 4,195,160, 11, 24, 16, 4,137,199,101,101,116,164, 82, 73,253, 80, + 45, 24, 91,218, 63,107,240,110,235,214,173, 15,164,165,165,113, 26,179,164, 54, 86,247,250,248,234,243,142, 75, 3,250,246,125, +251,183, 95,126, 57,243,217,218, 39,171,234,238,155, 59, 70, 50, 99,210,236,249, 95, 29,251,246,155,207,182,255, 84,178,223,152, +114,250,249,249,121, 18, 4, 49, 17,128, 47,195, 48,109, 25,134, 16, 16, 4, 83, 66, 16,196, 19, 0,177, 90,173, 54, 34, 62, 62, + 62,251, 53,234,254, 42, 79,184,141,113,214, 38,149, 6, 69,117,166, 0,198,200,164,210,255,237,114,154, 56, 77,156, 38,206,255, + 63,206,255,101,124,208,192,255,140,139, 12, 95,131,148,212,156,192,148,212, 28,180,109,219,150, 73, 74, 74,106,145, 72,107,108, +144,166, 40,234, 71,165, 82,249,227,235,144,200,229,242,174,127,113,227, 29, 75, 75, 75, 59,246,103, 18, 86, 11,169, 85,213,175, + 87,197,227,138,138,138, 30,198, 30,172,211,233,254,138,182, 33,170,173, 89, 43, 27, 59, 96,232,208,161, 25, 58,157,238, 26,128, + 44,130, 32,172, 0, 20,235,116,186,203, 6,131,161, 32, 41, 41,169,235,230,205,155,107, 34,223,175, 6,240,224, 21,203, 65,107, + 52,212,209,220, 92,234,232, 95, 80,199,163, 90,173,118,161,141,141, 77, 27,181, 90,205, 83,171,213,220,186,139, 15,132, 66,161, +172, 41,135,248,186,176, 50, 39, 14,114,217, 37, 54, 86,230, 68,125, 33, 5,107,103,156, 86, 85,198,181,183,118,198,105, 99, 11, + 22, 19, 19,147,210,165, 75,151, 35, 36, 73,186, 51, 12,227, 0, 48,150, 12, 3, 25,195, 48, 69,108, 54, 59, 39, 62, 62, 62,231, +111,116, 19, 82, 27,104,122,163, 65,171,253,195,239,208,180,186,208, 4, 19, 76,248,231,160, 81, 31, 45,118, 75,153,146,146,146, + 8, 83,123,154, 80, 87,108, 53,181, 51, 35, 35, 67, 3,224, 78,245,171, 62, 30, 0, 24,249,119,175, 96, 94, 94,158,127, 99,251, +140, 21, 89, 64,149,207, 22, 16,215, 96,116,246, 21,219, 75,202,177, 61,252,211,150,150,237,209,163, 71,153, 48,114,138,221, 4, + 19, 76, 48,193,132,191, 12,175,111,209, 50,193, 4, 19, 76, 48,193, 4, 19, 76, 48,161, 65,236,169, 35,184, 94,176,110, 17,104, +124,229, 64, 75,230, 94, 95,101,245,193, 53, 19,167,137,211,196,105,226, 52,113,154, 56, 77,156,255, 58,206,127, 42, 94, 18, 89, +255, 13,152,150,190,154, 56, 77,156, 38, 78, 19,167,137,211,196,105,226,252, 55,136,172,250, 47, 0,166,169, 67, 19, 76, 48,225, + 95,140,147, 39, 79, 26,149, 84,244,157,207,246, 6,137,197,146,101, 21,138,178, 13, 63,110,156,113,166,230,255,193,193,193,148, +169, 21, 77, 48,193, 4,188,138, 51,188,135,135, 75, 7,146,162,123, 51, 12,201, 98, 72, 70, 79, 40, 84,199, 83, 74, 74, 94, 8, + 59,224,234,234,106,197, 33, 49,146, 96, 24, 17, 65,208, 20,205, 34,111,167,166,102,199,183,160, 96, 60,137, 68, 50,135,203,229, + 14,209,106,181, 46, 36, 73,102,107, 52,154,107, 74,165,114, 7, 94, 14, 92,248,255,134,118,237,218, 77,186,113,227,134, 85,159, + 62,125, 52, 66,161,208,160, 82,169,216,151, 46, 93,226, 15, 27, 54,172, 52, 57, 57,249,149, 86, 36, 74,165,210, 65,123,247,238, +245, 8, 12, 12, 68,219,182,109, 43, 39, 78,156,200, 13, 8, 8,224,206,156, 57, 51, 53, 55, 55, 55,170,133,116, 29, 8,130, 56, + 76, 16, 4,139,166,233, 16,252, 17,186,225,207, 6, 73,146,228, 44,130, 32,198, 50, 12,227, 73, 16, 68, 10,195, 48,103,104,154, +110, 42,112,107, 83,120, 27,192,112,146, 36,253, 1,128,166,233,104, 0,145,128,241, 43,239,254,155,156,102,102,102,126, 0,160, + 84, 42, 99,254, 44, 78,130, 32,252, 0,128, 97,152, 87,229,156, 46, 20, 10,223, 7, 0,149, 74,245, 61,140, 72, 7, 85, 31,204, + 46,111,198,127,229, 83, 0, 64,244,114,111, 0, 64, 75,182,137, 15,159, 18, 45,249,174,134,248, 90,194,209, 0,134, 79,158, 60, +121,221, 15, 63,252,176, 28,192,217,191,162,227, 59, 58,186,238,216,244,205, 30,233,199,115,222,219,128,170,140, 16, 77, 95,144, +192,155, 60, 22,107,148,150,162,126,137, 7, 78, 2, 96, 91, 91, 91, 79,226,241,120,253,180, 90,173, 19,155,205,206,211,106,181, +183,202,202,202,142,161,137, 12, 8, 70,183,107, 2, 36, 58, 37, 28, 9,250,143, 60,111, 12, 9, 13,215, 12,249,132, 15, 74,254, + 6,183, 81, 18,192,252,234,186,238, 67,227,225, 60,154,186,249,124, 44,149, 74,199, 42, 20, 10, 37,139,197, 98, 80,181,234,185, +234, 79,213,126,130,166,233,194,226,226,226,144,230,184, 68,110,104,207, 19, 17,135, 41, 61, 84, 6, 13,243, 81,101, 22,158,138, + 93,209,139, 1, 66, 24,192,157,100,145,118, 52, 77,231, 1,136, 34, 13, 56, 95,145,139,164,191,233,224,222,170,186, 93, 91, 87, +111,115, 0, 56, 0,136, 5,240, 49,128, 10,147,254,249,175,161,190, 51,252, 5, 0,121,181, 66,171, 78,184,251, 1, 65, 65, 65, + 55, 61, 60, 92, 58,140, 31, 51,110,221,135,179, 62, 34, 88, 44, 18,113, 79,158,176,223, 13,153, 62, 84, 34,145, 56,139, 53, 26, + 31, 16, 4,173, 20, 8,226, 20,138,178,156,147,199,126, 48,247,110,223,158,162, 40, 26,187,118,127, 55,236,212, 79,225, 75,140, + 20, 91,237, 28, 29, 29, 15,135,134,134, 58,142, 26, 53,138,229,232,232,136,244,244,116,171, 31,127,252,177,253,246,237,219, 39, +148,148,148,132, 0,120,254, 10,149,237,235,104, 77, 14, 53, 23, 18,131, 81, 78,161, 92,143,159,243, 85,184, 2,224,151, 87,109, + 61,165, 82, 57, 87,169, 84,246,232,214,173, 27,179,111,223, 62, 98,218,180,105, 12, 65, 16,132, 74,165, 58, 8,224,149,132,150, + 72, 36,250, 54, 48, 48,208,203,203,203, 43, 37, 57, 57,121,248,137, 19, 39, 34,167, 78,157,234, 41, 18,137, 18, 1,180,107, 33, +221, 1,185, 92,222, 69,165, 82,193,197,197,101, 31,128, 55,254,130, 78, 68,176, 88,172, 51,206,206,206,204, 87, 95,125,117,182, + 75,151, 46, 14,197,197,197,134, 79, 63,253,116,200,221,187,119,135, 81, 20, 53,170, 5, 98, 75, 66, 16,196,110, 7, 7, 7,219, + 13, 27, 54, 36,117,237,218, 53,150,207,231,243, 18, 19, 19,205, 22, 46, 92,184,224,249,243,231, 19, 24,134,153, 5,180,104,128, +144, 16, 4,177, 91, 42,149,218,174, 91,183, 46,221,223,223, 63,142,203,229,114, 19, 19, 19, 69,139, 23, 47,254,248,233,211,167, +175,196, 73,146,228,174, 30, 61,122, 72,150, 47, 95,158,208,190,125,251, 59, 44, 22,139,151,157,157, 77,174, 88,177, 98,206,213, +171, 87,131,105,154,254,240, 85,202,105,111,111, 47, 89,177, 98, 69, 66, 64, 64,192, 93, 46,151,203,125,246,236, 25, 25, 26, 26, + 58, 39, 41, 41,201,232,114, 90, 91, 91, 15, 36, 8, 98, 79,126,126, 62, 27, 0,156,156,156,186, 91, 88, 88,108,175,155,211,178, + 38, 20,133, 94,175, 47, 87,171,213,147,139,139,139, 27, 12,132, 59, 45,108,219, 72, 0,216,174,171,217,174,122,111,110, 27,216, +117,222,152, 74,251, 57, 86,197,197,219, 84, 57, 99, 12, 0, 76,170, 78, 21,190,169, 18, 96,179,217,180,159,227,199, 76, 76,126, +139, 66,198,140, 30, 52,104,208,138,168,168,168,239, 6, 12, 24,176,248,200,145, 35,246, 89, 89, 89, 95,254,242,203, 47,174,239, +188,243,206,180,159,127,254,121,125, 81, 81,209,169, 63,171,243,243,184,124, 62, 65, 18, 16, 10,204, 44,140, 57,158, 67,146, 65, +119, 70,143,126,255,251,103,207,252,183, 63,125,234, 81,233,228,212, 99,222,188,121, 14,227,198,141, 35, 93, 93, 93,145,148,148, +100,115,228,200, 17,159,239,191,255,126,108,105,105,233,124, 0, 25,175, 35,178, 42, 75,209, 73,163,133, 63,195,192,170,246,130, + 37, 80,202,215, 33,154, 73,192,227,191,129,216,250,226,192,129, 3,203,147,146,146,176,126,253,122, 0,216,209,194,243, 23,142, + 30, 61,122, 68,120,120,184,240,228,201,147,194,110,221,186,193,209,209, 17,213, 15, 83,181,129,169, 61, 60, 60,140,107, 51, 26, +155,182, 70,206,120, 35,174,248, 34,190, 29,151,191, 94,232, 2, 67,175,209, 94, 99,131,166,249,195,210,206, 12, 2, 49, 27,165, +114,133,239,179,232,172,192,235, 39,146,190, 76,122, 40,219, 80,153,137, 47,208,120, 76,190,255, 23,216,216,216,236, 75, 77, 77, + 29, 40, 18,137, 94,248,127, 74, 74,138,159,151,151, 87, 25,128, 69, 45, 21,110,118,118,118, 71,105,154,214,200,229,242,247, 0, +192,220,220,252, 7,145, 72, 36,201,203,203, 91,242, 87, 61,200,212,160,190, 22,249, 31,183,104,213,250,107, 53,148,235,144, 32, + 41,186,247,135,179, 62, 34, 38, 78,122, 39, 63, 41, 37,149,102,115,120,147, 46, 93,190,108,214,161, 67, 7, 82,179, 99, 7, 12, + 50, 25,244, 11, 22,244,186,118,237,154, 62,120,210, 20, 21,135, 69, 28,240,244,112, 55, 59,126,236, 71,199,240,211,167,122, 3, +104, 78,104,241, 28, 29, 29, 15,223,184,113,195,217,195,195, 3,165,165,165, 72, 79, 79, 71,101,101, 37, 38, 76,152,192,233,221, +187,183,243,248,241,227, 15,151,149,149,245,105,129,101,203,161,173, 11, 59, 98,214,244,113,237,134, 13,237, 45,114,118,109, 3, + 38, 95,141,172,228,167,221, 34,110,220,157,119,224,116,228,243,164, 50, 38, 8, 13,231, 70,106, 18, 69, 69, 69,159,141, 29, 59, +246,244,192,129, 3,237,248,124, 62,164, 82, 41, 49,106,212,168,194,220,220,220,149,175,172, 90,170, 83,216,144, 36, 73,213,125, +111, 32, 61,144, 49,112,145, 72, 36,144, 72, 36, 0,224,252,186, 79,158, 86, 86, 86, 59,204,205,205,199, 43, 20, 10, 21, 73,146, + 12, 65, 16,140, 86,171, 21, 74, 36,146, 71, 9, 79,159, 75, 53, 26, 77,219,141, 91,191,255,102, 80,223, 46, 22, 87,175, 94,197, +184,113,227,152, 43, 87,174,204, 50, 54, 79, 29, 65, 16,187,199,142, 29,171, 92,182,108,153, 58, 41, 37,221, 57,225,121, 10, 33, + 18,240,104, 91, 91, 91,206,189,123,247,216, 91,182,108, 17,172, 88,177, 98, 55,195, 48,227, 91,208,158,187,223,121,231, 29,221, + 39,159,124,146,247, 44, 41,213,254,113, 66, 18, 35, 22,112, 12,182,182, 54,172,187,119,239,210,175,194, 73,146,228,174,207, 62, +251, 76, 49,107,214,172, 18,121,113,153, 99,137,162,130,225,115, 88,122, 71, 71, 71,246,217,179,103, 53, 71,143, 30, 37,223,127, +255,253, 93, 52, 77, 7,183,160,125,119,141, 26, 53,170, 60, 52, 52,180, 52, 49, 37,205,241,113,252,115,152,241, 57,122, 7, 7, +123,214,253,251,247,117, 27, 55,110, 36,215,172, 89, 99, 84, 57, 69, 34,209,161, 19, 39, 78,176,207,158,173,186,247,253,246,219, +111,164,167,167,167, 89,221, 99, 84,106, 13, 72, 2, 40, 42, 42, 50, 11, 8, 8, 56, 4,224,165,224,190,254, 43,159, 98, 90, 24, + 48,119,238,220,188,150,118, 22,127,167,121,205, 30, 67,125,231,205,108, 81,206, 24,195,102,179,233,247,223,127, 63,191,254,126, +181, 90, 77, 0, 24,133, 47,141, 23, 91,195,135, 15,255,252,194,133, 11,109,142, 28, 57,178,249,232,209,163, 90, 0, 16, 8, 4, +182, 63,254,248,227,250, 9, 19, 38, 96,194,132, 9,203, 78,157, 58,245,167, 9, 45,138,161,116, 0,192, 23,240,249, 79,159, 62, + 37,188,189,189,155,140,184,175,163,233, 7,223, 63,123,214,245, 63,222,222,221,138,105,186, 45,119,216,176,138,133, 11, 23, 22, + 41, 20, 10,164,167,167, 67,167,211, 97,218,180,105,172, 1, 3, 6, 72, 39, 76,152,176,173,188,188,252,109, 0, 58, 35,250,228, + 70,103,103,231, 15,202,202,202, 42,106,172, 58,125, 66, 40,118, 63, 63, 3,191,115, 91, 61,143,203, 50,112, 71, 46,160,137, 43, + 59,136, 74,111, 15,252, 10, 0, 92, 37,100, 45,124, 24,104, 16, 22, 46,240,160, 56, 88, 99,231, 34, 28, 36,203, 80,173,170,204, +108, 82, 44,189, 45, 18,137,198, 84, 86, 86,158,170, 30,156,219, 5, 5, 5,225,238,221,187, 0,208,187, 90,104, 13, 34, 73,242, + 93,154,166,247, 2,104, 42,149,219,188,209,163, 71,191, 25, 30, 30,110, 14, 0,167, 78,157,130, 94,175,135,167,167, 39,184, 92, + 46,120, 60, 30, 56, 28, 78,109,118, 16, 35,225,100,103,103, 11, 91, 75, 14, 36,214,162, 97,139,119,142,102,187,117,176, 64, 33, +245, 4,197, 76, 41, 12,140, 6, 92, 27, 17,218, 7, 90,193,127,232, 32,242,252,174,184, 37,231,191, 77,232,170, 36, 49, 18, 25, +208,252, 93, 70,118,146, 36,249,177,177,177,144, 74,165, 47,252,159,197, 98, 1, 64,191, 87,160, 92,150,146,146, 18,240,240,225, + 67, 12, 28, 56,112, 89,167, 78,157,222,186,121,243,166,163, 92, 46,199,192,129, 3,183,101,103,103,159,253,171,235, 84, 87,139, +252, 83, 76, 93,100, 61, 37, 57,160,234, 41,152,100,177, 88, 36, 82, 83,210,245, 3, 7, 14,158,154,153,153, 41,238,209,163, 7, +201,225,112, 80, 25, 21, 5,245,253,251, 16,139,197, 24, 59,118, 44,231,214,173, 91, 22, 22, 98,139,153,105,169,105,229, 44, 22, + 9,134, 33,155,245,121,144, 72, 36,115,150, 44, 89,226,232,229,229, 5,131,193, 80, 27,209,220, 96, 48, 32, 43, 43, 11, 98,177, + 24, 33, 33, 33,246,102,102,102,115,140,172, 71,235,118,158,246,209, 55, 34,119,191,177,240,195,225,162,118,102, 87, 33,202,154, + 15,241,169,255,192, 39,247, 18, 66,199,244, 16, 93,249,118,153,127, 27,169,117,116, 29, 19,171,209,208,104, 52,191,198,197,197, +205,188,121,243, 38, 13, 0,215,175, 95,103, 18, 18, 18,102,189,206, 83, 40, 77,211, 40, 45, 45, 5, 77,211,172,234,237,154,247, +255,215,254, 96, 97, 97,177,235,173,183,222,122, 39, 35, 35, 67,120,241,226, 69,155,204,204, 76,219,180,180, 52,187,118,237,218, +177,215,175, 95,127, 65,173,209,177,244, 20,163, 53, 80,250,242,188, 39, 79, 82, 74, 10, 10,162,247,239,223,175, 34, 8, 98,172, +145,223,241,182,147,147,147, 77, 88, 88, 24, 8,142, 89,247,246, 62,157,188, 88, 28,161, 37,201,225, 89,170, 84,106, 42, 53, 53, + 53, 43, 44, 44,204,189, 75,151, 46, 82, 84, 77,175, 25,197, 41,149, 74,109, 63,249,228, 19,176,249,230,126,157,187,248,183,225, +241, 69,230, 44,142,208,188, 71,143, 30, 3, 82, 82, 82,114, 67, 67, 67,157,186,117,235,214, 34,206,110,221,186, 73,222,127,255, +125,131, 64,104, 30,224,225,225,233,211,185,163,207,136,118,237,218,141, 97,179,217, 6,153, 76,150, 17, 18, 18,226, 52,114,228, + 72,135,150,112,218,219,219, 75, 66, 67, 67, 13,174,173, 60, 3, 3,223, 28,218,147, 43, 52,183,100,243, 68, 86, 74,165,154,122, +246,236, 89,198,210,165, 75,157,252,252,252,236,141,225, 84, 42,149, 28, 91, 91, 91,248,250,250,162,131,167, 39,202,202,202, 16, + 30, 30,142, 3, 7, 14, 96,239,222,189, 56,118,236, 24,186,246, 25, 10,115,115,115,228,230,230, 66,161, 80,112,254,219, 29,138, +250,206,155,217,174,253, 96,212, 71, 31,125,148,251,254,251,239,231, 11,133, 66,186,254,203,218,218,154,154, 60,121,114, 65,200, +226,173,163,106,166, 22,155,177,100,197, 70, 70, 70, 38, 31, 57,114, 4, 29, 58,116, 64, 96, 96, 32, 15, 0,230,204,153,195,155, + 48, 97, 2, 78,156, 56,129, 83,167, 78,197,123,121,121,221, 6, 48,218,152,114,134,132,132,244, 9, 14, 14,254, 37, 56, 56, 56, +102,226,196,137,123,102,205,154,245,194,200,149,151,155,253, 64,171,213,162,139,127, 55,179,213,251,126,159,220, 28, 95, 2,112, +100,207,211,167, 7, 54, 60,121,146,177,172, 67, 7,171, 86,105,105,214, 7, 55,110,180,173, 73,210,173,215,235,145,149,149, 5, +137, 68,130,201,147, 39,219,242,249,252, 16, 35,138,185,101,244,232,209,211, 51, 51, 51,197,223,127,255,189, 83, 76, 76,140, 52, + 47, 47,207,233,231,107,151,237, 62, 93, 52,199,220, 82,204,227,229,202, 24, 2, 0,210,114, 33,122,154,138, 62, 12, 3,171,186, +211,137,175, 4, 39, 8,133, 46,216,222,166,143,213,243, 79, 78,248, 77, 12,141,240,183,149, 56,241,195,154, 56,163,243, 87, 95, +125,117,242,252,249,243,147,250,244,233,115, 26,128,176,129, 99, 4, 93,187,118, 13, 63,113,226,196,244,190,125,251,254, 10,192, +183,209,167, 72, 23,151,177, 63,253,244,147, 77,205,182,173,173, 45, 4, 2,193, 75, 34,139,203,229,130, 36,201, 22, 87,111,237, +143,147,216,214, 62, 26,196,149, 68,226,196, 87,177,248,106,216, 51,122, 93,175, 52,205,142,144,167,184,114, 34, 22,133,136,197, +240,255,180,193,164,165, 93,134,152, 81, 88,243,119, 26,192,101, 50,217,187,253,250,245, 59, 57,124,248,112,205,195,135, 15, 33, +147,201,224,236, 92,251,172,157,255, 10,148,214,102,102,102,112,117,117,133,151,151,215,164, 91,183,110, 57,234,245,122,164,165, +165,161,176,176, 48,250,191, 81,167,186, 90,228,127, 12,245, 29,225, 47,188, 36,180,170,115, 11,221, 0, 0,134, 32, 42, 99,227, +226, 56, 44, 30,111,202, 15, 71,143,242,185, 92, 46, 50, 50, 50, 16, 31, 31, 15,229,207, 63, 67,117,231, 14, 10, 10, 10, 80, 81, + 81, 1, 7, 7, 7,236,222,183, 79,164,165,152, 25,207,158, 63,103, 49, 36, 83,215,223,160,193, 37,158,124, 62,127,200,184,113, +227, 26, 21,100,185,185,185, 24, 62,124, 56,135,197, 98, 53,180,170,161, 62, 39, 33,181, 35,206,255,124,122,181,147, 19, 47, 30, + 72, 90, 8,148, 71, 3,140, 6, 48,104,129,156,199,192,133,149,104, 85,241,148,184,188,122,170,163,179, 25,251,124, 3, 74,185, +185,165,168,158,222,222,222,123,167, 76,153, 66, 2,192,160, 65,131, 8,111,111,239, 61, 0, 60,155, 56,231, 90, 51,131,228,221, +146,146, 18, 76,152, 48,193,166, 77,155, 54,215, 38, 76,152, 96, 83,243,255, 87,229,172,177, 38,119,232,208, 65, 46, 16, 8,142, + 1, 70,221, 96,107, 57,173,172,172,118, 12, 31, 62,124,252,209,163, 71,185, 0,112,227,198, 13,156, 63,127, 30, 79,158, 60, 65, + 98, 98, 34,237,239,239,111,183,117,239,201, 93, 59,190, 59,180,101, 76,239, 46,210, 1,221,253,125,196, 21, 37, 21, 14, 14, 14, +189, 25,134,241, 52,178,156,195, 87,174, 92, 25,159,144,156, 97, 73,178, 57,108, 46,135,205,183,176, 16, 57, 54,112,168,183, 0, + 0, 32, 0, 73, 68, 65, 84, 72,204, 69, 46,214,102, 2,103, 62, 73,136,149, 74,101,254,177, 99,199,104, 0,195,141,229, 92,189, +122,117,106, 66, 82,134, 21, 65,178,217, 28, 54,135, 43, 22,155, 89, 13, 11, 28,216, 13, 0,184, 96,184, 10,133,162,224,192,129, + 3,186,150,112, 46, 95,190, 60,174,184,180, 66,194,230,112, 56,108, 54,171,182, 45, 69, 66,161,157, 25,159,207,211,104, 52, 57, +223,124,243,141,170, 37,156, 43, 87,174,140,127,150,156,105, 77, 18, 4,139, 32, 72,182,133,185,200,198,198,210,204,206, 78, 44, +180, 53, 99,179,120, 10,133, 34,231,240,225,195, 70,113,234,116, 58,110, 65, 65, 1, 18, 18, 18,224,218,173, 27,174, 94,189, 10, + 55, 55, 55, 76,152, 48, 1,239,188,243, 14,132, 66, 33, 6, 5,116, 66, 88, 88, 24,146,147,147,161,211,233,248, 13,113,214,248, + 73,213,135, 84, 42,125,216, 92,231,169,119,238, 11,229,244,115, 4,179, 93,251,193,168,186, 2,171, 49,126,107,107,107,170, 33, +107, 87,125,206,225,195,135,127,254,243,207, 63,183, 57,124,248,240,168,144,144,144, 95, 15, 31, 62,140,158, 61,123, 34, 33, 33, + 1,238,238,238, 56,120,240, 32,222,121,231,157, 95,183,109,219, 54,234,225,195,135, 93, 60, 60, 60,150, 52,199, 57,113,226,196, +217,126,126,126, 81,249,249,249, 1,197,197,197,190,225,225,225, 51,198,142, 29,155, 58,105,210,164,193,181,130, 81,175, 63,122, +225,220,105,140, 24, 53, 14,237, 59,250,238,154,182,228, 72,167,102,174, 77,230, 9,176,231, 64, 94,158,236,168, 90,173,156,192, +225,152,153,253,254,187,245,169,239,190,179,173,155, 89, 32, 39, 39, 7, 35, 71,142,228,112,185,220,190,205,148,243,171, 49, 99, +198, 76, 8, 15, 15,151,212, 88,117,238,220,185,131,199,143, 31, 35, 61, 61, 29,165,165,165, 24, 60,171, 2, 31,173,175,226,254, +104, 61,131,161,115, 24,209, 43,222, 67,106, 33,116,131,163,141, 5,251,246,140,111,218,207,249, 96, 87, 7,182,216,154,131, 31, + 22, 39,162, 40, 77,115,170, 17, 78, 34, 32, 32,224, 72,112,112, 48,161,213,106,161,213,106,181, 0, 26,140,234,235,236,236, 44, +232,220,185, 51,102,205,154, 69, 90, 88, 88,108,107,172,156,149,149,149,154,200,200, 72,132,132,132, 96,254,252,249,104,219,182, + 45, 36, 18, 9, 56, 28, 14, 14, 29, 57,110,251,206,140, 15,219,189,209,167, 95,151, 14,111,244,236, 92,174, 97,117,227, 8, 37, +239, 55, 98, 13,105,176,238, 21,246, 15, 17,151,246, 27,182,143,202,166,239, 29, 84, 86,124,250,238,215, 79,159,221, 44,120,178, + 36,120, 79, 28,243, 91,175,162, 35, 31,103,162, 64,159,128,190, 19, 90,193,195, 79,178, 64,228, 10,239, 87,109, 79, 35,209, 34, +206, 78,157, 58,245,185,119,239, 30,191, 95,191,126,200,200,200, 0,135, 83,251, 60, 69,189, 78, 57, 87,174, 92,201, 87,171,213, +120,244,232, 17,166, 78,157,154,163,211,233, 22,188, 78, 57, 91, 98,209,170,209, 34,255, 99,216, 83,239,149,215,152, 69,107, 37, + 0,232,105,156,159, 50,117,134, 50, 34, 34,194,140,199,227, 33, 35, 35, 3,121,121,121, 56,116,224, 0, 53,200,222,190, 60,208, +217, 89,113,232,192, 1, 70,171,213,130, 97, 24,120,123,123, 99,252,248,241,194,183, 39, 76, 42, 36, 20,170,227, 70, 76,243, 56, +213,204,175,207,152, 49,227,165,253,159,126,250, 41, 44, 44, 44, 64, 16,132,163, 17,149, 11,158,183,114,140,139,196,195,170,128, +201, 63, 84, 12,150, 0, 96,155, 3,108, 11, 64, 96, 9,240,205, 1,158, 25, 52, 15,163,138, 73, 38, 48,125, 92,223,247,156, 1, +180,100,170, 7, 82,169,116, 89, 84, 84,148,221,195,135, 15, 25,133, 66,129,188,188, 60,102,221,186,117,118, 82,169,116,217,171, +254, 34,185,185,185,171, 71,140, 24, 81, 48,117,234, 84,203, 75,151, 46,185, 78,157, 58,213,114,196,136, 17, 5,185,185,185,171, + 95,231,151,230,114,185,172, 39, 79,158, 88,175, 89,179,230, 29, 0, 15, 58,118,236, 40,119,118,118,126,128, 42,167,201, 38, 97, +110,110, 94, 43,178,106,172,107,108, 54, 27, 28, 14, 7, 82,169, 84, 91, 92, 92, 76,245,125,195, 83,232,109, 73,234,165,124,174, +208, 90, 40,112, 49,183,176,236, 33,151,203, 99, 9,130, 72, 49,114,138,207,175,123,247,238, 28,138,225,208, 31, 77, 25, 36,157, + 51,125,160,253,206, 53,239,187,125,179,250, 3,231,175, 86,204,244, 94,253,217,228,129, 36, 77,171,221,221,221, 29,107, 28,218, +141, 48,159,251,119,237,218,149, 77,131,131,132,231,233, 5, 25,217, 57,229,111, 14, 8,168,181, 92,118,240,243, 15,180,179,179, +235,231,237,237,221,149, 32, 8,163,150, 36, 11,133, 66,191,246,237,219,179, 73, 22,135,176,145,152,187,154,139,133, 14,181, 83, + 40, 86, 86,189,172,237,236,130, 73,134, 41,115,114,114,178, 23, 10,133,126, 45,168, 59,155, 6, 23, 14,246,214,150,118,182, 86, +226,192,129,189,219, 6,244, 10,104,215,169, 71,207,128,142,111,116,125,155, 48, 24, 20,158,158,158,246, 53, 78,242,205, 88, 90, + 5, 71,143, 30,197,154, 53,107,208,185, 85, 43, 56, 59, 59,195,222,222, 30,119,238,220,193,189,123,247, 32,145, 72, 80, 88, 88, +136,141, 27, 55,226,204,153, 51,208,233,116,230, 45,237, 79,198,136,173,166, 96, 48, 24,200,250, 2,171, 49,126,161, 80, 72,215, + 56,201, 55,134,200,200,200, 35, 53,150,172,143, 63,254,184,207,214,173, 91,127,125,250,244, 41,196, 98, 49,238,221,187,135, 25, + 51,102,252,186,109,219,182, 62, 31,126,248, 33, 14, 28, 56,128,212,212,212,125, 77,241, 77,156, 56,113,197,204,153, 51,191,185, +121,243, 38,233,224,224, 0,137, 68,130, 49, 99,198, 96,223,190,125,108,131,193,176, 63, 56, 56, 56, 38, 56, 56, 56,134,202,186, +242,249,201,189,235,238,196,197,198, 96,246,188, 79,120, 90,131, 62,212,136,234, 51, 42,177,184,220,208,175, 95,241, 9,189, 94, + 57,145,203, 53,179,140,137,177, 62,191,127,127,173,216, 10, 11, 11,131,165,165, 37, 80,229,192,140, 38,172, 58, 31,156, 57,115, +166,246,126,104, 99, 99, 3, 30,143, 7, 46,151, 11, 14,135, 3, 22,139,133,107,187, 68,248, 46,172, 74, 95,124, 23, 70,224,202, + 14,162,242,117,126, 59, 51,103,248, 74, 28,120, 49,255, 57,216,177,139,239, 96, 27,220,249, 49, 31,235, 70, 60,204,190,119, 66, +182, 80, 93,136, 77,141,156,246,198,167,159,126,218,161,176,176, 16,247,239,223,199,253,251,247, 27,179, 0,169,207,157, 59,247, +101, 69, 69, 5, 60, 60, 60, 48,122,244,232,126, 0,186, 53,114,221,160,107,215,174, 24, 57,114, 36, 6, 14, 28,136,206,157, 59, + 67,171, 51,112,130,167,124,208,254, 73,170,204,121,221,198,117,102, 81,215,195,201, 95,127,189,201, 58,114,250,138,101,192,192, +161,223,112,205,157,238, 66,104,227,100, 76, 61,149,148, 28,126, 78,195,176,231,231,121,228,246, 27, 83,197,135,206,111,247, 52, + 55, 55, 39,162,239,199,232, 15,125,123, 34,211, 87, 52,186,240,238,143,114, 40,137,124, 12,158,238, 65,210,192,248,191,203,200, + 46, 16, 8,182,222,188,121,211, 81,167,211, 33, 46, 46, 14,243,231,207, 87,191, 38,101,173, 1,196,213,213, 21, 55,110,220,192, +228,201,147,213, 5, 5, 5,191,253,183,234, 84, 87,139,252, 83,192,174,163, 32,107,145,149,149, 85, 42,145, 72,156,219,183,111, + 79,106,181,218,170, 41,137, 83,167,168,189,251,247, 95, 80,171,213,243, 0,112,119,236,220,185,203,217,197,101,224,148,144, 16, + 66,175,215, 99,196,136, 17,188,136,136, 8,155,148,194,194,114, 35, 6,156, 23,190,111,218,180,105,216,186,117, 43, 0, 96,238, +220,185,181,166,117,194, 8,135, 37,177, 37,134, 7, 6,117,181,200, 18,109,183,208,245,210, 87,180, 78, 54,191, 43,170, 16,118, + 5,201, 99, 67,192, 2,173,211, 27, 18, 11,199, 62, 72, 78,244,233, 32, 44,150,187, 15,233,216, 31,123,175, 30, 30,174,164,212, + 39,140,190,225,152,153,117, 23,139,197,120,240,224, 65,113,215,174, 93, 75, 25,134,177, 92,189,122,181,173,153,153, 89,247,215, +104,251,180,231,207,159,247,235,221,187,247, 28,146, 36,135,208, 52,125,173,160,160, 96, 7,128, 52, 35,207,255, 8,192,114, 0, +181, 79,150, 90,173, 22, 36, 73,130, 97, 24, 76,156, 56, 17, 97, 97, 97, 29, 30, 63,126,140,168,168, 40,235, 33, 67,134,220, 5, + 80, 10,224, 61, 0, 13, 90,205, 20, 10,133,234,222,189,123,194,168,168, 40,208, 52, 13,107,107,107, 88, 88, 88,128,207,231, 99, +204,152, 49,226,208,208,208,193,151, 47, 95, 46, 84,180,118, 99, 9,242,114, 42,249, 98,177, 57, 28,157,251,126, 56,233,221,167, + 12,195,156,105,193,205,129, 39,100, 27,212, 4,165, 33,191,250, 98, 27,105,198,229, 18, 2, 46, 27,124, 90,137,207,191, 92, 75, +112, 25,138,141, 22,206,207,115,185, 92,174, 57, 31, 90, 22,143,165, 55, 35,192,252, 25, 23, 7,139,197,226, 9,184,141,251, 99, +112, 72,146, 36, 73,146, 11,192,232,164,125,124, 62,159,107,206,103, 26,229, 20,178, 8, 22, 65, 16, 60, 52,178, 18,205,207, 17, + 76,141, 21,137, 55, 47, 69, 83, 87, 20,247,237,219, 23, 23,162, 30,224,212,249,107, 40,202,136,197,210,197, 31,163, 91,183,110, +136,136,136,104,178, 76, 53, 62, 90,141, 89,151,165, 82,233,195,220,220,220, 55, 26, 59,183,169, 41,195, 70,172, 84, 47,243,127, + 97, 9,255,149, 79,209,140,143,214,232,190,125,251,206, 62,122,244,168,246,173,183,222,226, 77,156, 56, 17,190,190,190,125,166, + 79,159, 14, 0, 24, 50,100, 8,182,110,221,218,103,250,244,233, 56,126,252, 56,194,195,195, 53, 3, 6, 12, 88,124,227,198,141, + 28, 84,173,232,124, 9, 52, 77,143,220,189,123,119,125, 75, 33, 12, 6, 3,244,122,189,147,193, 96,112,170,190, 23,225,155,111, +182, 21, 93,185, 28,129,197, 75, 86,194,222,206,209,207,200, 62, 68, 76,251,228,147,162,131, 27, 55, 98,227,241,227,248,196,221, +221,236,112,124, 60,174,168,213, 56, 17, 21, 85, 84,253, 61,205,250,102, 86, 86, 86,170, 34, 35, 35, 45, 78,156, 56, 1, 43, 43, + 43,180,109,219, 22,214,214,214,224,112, 56, 32, 89, 66,176,184, 18,180,239,216, 29,192, 61, 0,128,187, 20,149,222, 30,248,149, + 32, 80,202,144, 45,247, 41,226,187,161,181,173,139,224,230,236, 3,190, 86, 22,246, 92, 92,218,145,137,203,219,179,206,168,139, +176, 25, 6, 60, 67,227, 62, 95, 93, 61, 60, 60, 80, 88, 88,136,200,200,200, 74,160, 81, 65, 6,154,166,191,220,185,115,231,167, + 75,150, 44,225,123,123,123, 3,128, 31,128,251, 13, 29, 43, 18,137,224,236,236, 92, 43, 44, 39, 78,253,208,115,214,194, 15,133, + 99,135, 14, 4,155,109,139,210, 74, 61,228,229,122, 72,108,197, 88,188, 48, 88,112,173,171,115,183,221,219,126, 56,167, 82,161, + 27,240,242,253,128, 32,112,255,247,216, 95, 59, 9,188, 1,130, 4,178,200,235, 32, 64,160,130,208,131, 96,177, 24,138,162,144, +153,153, 9,134, 97, 48,121,236,140,172, 15,214,133,219,247,153,172,128,107,123, 41, 8, 6,253,255, 46, 66,192,198,198,198, 79, + 46,151, 35, 45, 45, 13, 83,167, 78,205, 41, 42, 42,186, 90, 89, 89, 57, 35, 55, 55, 23, 0,138, 95,129,178, 86,204,251,249,249, +161,123,247,238,152, 48, 97,130, 64,169, 84, 6,123,122,122, 58,203,100,178, 94,127,101,125,234,107,145,127,148,208,106,240, 66, +211,235,219,107,118,237, 66,229,181,107,224, 93,185,130, 19, 82,105,133, 90,173, 94, 4, 32,171,250,194,255,248,192,193,131,183, + 71,253,246,155,133,246,233, 83,120, 62,126, 12,142,149,149, 95, 75, 11,176,127,255,126, 40, 20, 10,148,149,149, 1, 0,182,111, +223, 14,133, 66, 1,131,145, 9,103,217, 92,244,113,180,119, 71, 62, 18, 65,179, 73,113,122,123,101, 79,177,218, 60,215, 57,211, +161,178,140,116,198,211,140, 30, 34,149, 92,219,147, 96,105,161, 46, 82,194,185,119, 91,176,193,238,211,146, 50,214,204,251,179, +217,236,226,231,207,159,143,108,215,174,221,121, 0,182,175,226, 15, 80, 15, 73, 5, 5, 5,243, 94,229, 68, 22,139,181, 60, 53, + 53,213,126,223,190,125,115, 86,175, 94,205,212, 21, 90, 53,159,217,108, 54, 24,134,129,165,165, 37, 56, 28,142,195,157, 59,119, + 28,122,244,232,241, 45, 77,211,126,141,212,147,241,245,245, 69,106,106, 42,216,108, 54, 44, 45, 45, 65, 27,116, 88,185,240, 67, + 80, 44, 62,251,179,207, 62,243, 27, 55,110, 92,220,190,125,251,244, 22, 1,189,123,201,229,242, 39,179, 39, 79,137, 59,123,246, +172,182, 58,196, 67,243,143,248, 12, 19,147,152,152,200,114,145, 58,176, 24,131,146, 22,113, 1, 65,236, 55, 12, 79,236, 8, 1, +155,197,112, 9, 18,124,129,208, 50, 45, 59, 91, 78,211,116,130, 49,156, 52, 77, 71,167,166,166, 10, 29,236,109,216, 74,149,182, + 66,200, 97,120,233,209, 15, 82, 90,251,119,245, 4, 0,117,244,189, 27,252,246, 62,194,244, 2,153,200,221,221,221, 40, 78,149, + 74, 21,147,147,147,195,114,112,112, 96,103,100,101,159,179, 18,139,236, 44,172,172,122, 2,128,174,188,236, 30,169,209,200, 88, + 28,182,131, 76, 46, 47, 86,169, 84,169,198,214, 61, 57, 57,153,237,228,100,207,186,116,229,231,243, 14,102,124,123,115, 30,219, +130, 79, 16,132, 25,139, 80,112, 13,116,145,192,204,204, 62, 45, 59,187,152, 97,152, 70, 45,132, 27, 74,167,140,173,250,189, 86, + 30,175,195,141,216,216, 88, 92,252, 53, 1, 34, 70, 11, 66, 93,134, 43, 7,190,199,228,207,150,188,182,223, 95,115, 98,235,149, +172, 89,187,125, 30,214,227, 71, 94, 51,142,240,147, 39, 79, 94,121,228,200,145, 90, 7,148,132,132, 4, 12, 26, 52,168,102,154, + 3,129,129,129,232,209,163, 7, 18, 18, 18,224,229,229,133,168,168, 40, 62,139,197,226, 79,153, 50,101,221, 15, 63,252, 16,217, +172,221,127,207, 30,204,152, 49,163, 33,199,234,100, 0,106, 66,226, 93, 17,182,225,144,109,177,188, 8,133,178,252, 24, 99,219, +129, 32, 8, 76,251,228,147,162,221, 90, 45,142,254,254, 59, 66, 68, 34,179,131, 73, 73, 24,209,163, 7, 58, 13, 26, 84,100,204, +189,174,198,170,163, 86,171,193,225,112, 96, 97, 97, 1, 27, 27, 27,112,185, 92,176, 56, 82,176,121, 93, 64,114,185,240,239,219, + 5, 27, 23,137,148, 83,135, 97, 27, 65,160,148,207, 67, 52,215,172, 81, 95, 29, 66,228,134, 49, 12, 3,133, 50, 11,215,107, 4, +137,101, 43, 88,114,204, 57, 87,102,126,235,109,101, 97,207,197,197,109, 25,184,242,109,246,105,117, 62,150, 86,183, 5,221,196, +131, 68, 39, 43, 43, 43,100,101,101, 33, 51, 51, 51, 30, 77, 59,248, 43, 19, 18, 18, 82,248,124,126, 7, 59, 59, 59, 0,240,104, +236,193,156,166,233, 90, 63,172,195, 71, 79,218,250,245,243, 20,188,217,167, 3, 14,157, 95,139,255, 4,111, 3,135, 69,128,162, +116,216,188, 53, 8,148,166, 2,193,163, 62, 32,250, 15,241,234,114,237,188,118,166, 94, 85,242,253, 75, 15, 2,108,172,249,250, +157, 59, 86,124, 49,217, 9, 52, 97,101,107,107, 47,226,114,185,176,177,112,210, 46,153,181, 32,143, 97,152,218,235,134,195,226, +234,201,114,107,149, 60,191, 66,104,197, 81, 1, 12,217,250,213,162,217,252,249,200,206,206,158,215,175, 95,191,117,229,229,229, + 37,149,149,149,147, 1,192,195,195,163, 21, 73,146,124, 0, 77,205,142,180, 66,195, 97, 33,184,143, 31, 63,134,185,185, 57,114, +114,114,234, 26, 95, 64,211,244,223,102, 17,192,223, 20,254, 0,162, 1, 56, 1, 24,129, 58,225, 29,200,106, 83, 93,255,136,136, + 8, 38, 34, 34,162,127,237,224,197, 48,180,161,184, 24,140,166,170,109, 57, 28, 14, 3,160,238,138, 38, 51, 43, 43, 43,130,227, +226, 2,130, 95,229,250,193,252,137, 75, 95,245,122,227, 66,203,208, 20, 88, 32,116, 96,234, 60,180, 84, 10, 8,172,181, 29,140, +121,188,101,200,231, 89,213, 29,233, 0, 3, 3, 10, 52,171,133,197, 97, 42, 43, 43, 97, 48, 24, 36,109,218,180,185, 96, 48, 24, + 36,213,131, 27,243,255,245,139, 82, 20,149,194, 98,177, 48,103,206, 28,212, 88,127,180, 90, 45,242,243,243,161,209,104,160,213, +106,145,154,154,138,178,178, 50,104,181, 90, 60,121,242, 4, 30, 30, 30, 96,177, 88, 78, 77,220,204, 25,134, 97,224,234,234,138, +214,173, 91,131, 69, 48,216,251,213, 10,124, 62,255, 67,188,227, 65, 99,255,142,205, 24, 48, 96,128,143,187,187,123, 0,155,205, +166, 28, 29, 29,185,225,225,225,231, 40,138, 26, 3,227,239, 60,145, 97, 97, 97,173, 59,118,236,104,111,101, 97,174,231,243, 88, +224,233, 43, 25,190, 70,206,176,149, 69,112,117,109,101,128,208,204, 43, 36, 36,132,106,204, 10,209, 16,231,162, 69,139,156,188, +189,189, 45, 37, 86,230,149, 60, 14,171,144, 11,166,168, 44,246,254, 93, 0,224,217,217,171, 33, 48,235, 48,117,234, 84, 67, 75, + 56,151, 45, 91,230, 97,103,103,103, 69,130, 41,167,116,186, 63,230,219, 53, 90, 57,193,225,168,192,229,117,157, 59,119, 46,209, + 18,206, 79, 63,253,212,189, 67,135, 14, 86, 86, 22,162, 10, 54,135,149,199,165,233, 60, 1,232,124,142, 86, 87, 34,176,179, 85, +194, 76,236, 31, 18, 18,210, 40,103,141, 53, 43, 52, 52, 52,171,158,240, 70,113,113, 49,212,249,113,224,230, 60, 69, 23, 49, 7, +221,236, 36,224,243,249,181, 75,223, 27,235,174,141,249,104, 53, 36,182,140, 61,183,235,170, 38,166, 0,119,251, 60,172, 31, 55, + 43, 55, 55, 23, 78, 78, 78, 77, 94, 79, 63,252,240,195,146,129, 3, 7, 22, 6, 6, 6,106, 47, 92,184, 0,130, 32, 16, 21, 21, +133,156,156, 28, 4, 6, 6,130, 97,152,154, 85,109,136,137,137,193,144, 33, 67,254,143,189,235,142,111,170,122,223,207,189,217, + 77,154,116,143,116,208, 66,161,165,180,133, 2, 66,217, 67, 80, 16, 80,148,249, 69,144,189, 5, 1, 21, 17, 80,145, 13,162, 40, +178, 5, 4, 28,200, 20, 40, 2, 50, 75, 89, 5,202, 42,165,180,172,210,221,210, 38, 77,154, 52,251,222,251,251,163, 73, 12,165, + 35, 41,160,226, 47,207,231,115, 63,201, 29,121,114,238,185,247,156,243,156,247,156,243,190,250, 78,157, 58,229,154,253,107,213, +138, 81,163, 70,193,104, 52, 66,165, 82, 65, 38,147, 33, 62, 62, 30,177,177,177,140, 80, 40,236,199, 10,126,125,209,192, 49,179, +219,197, 52,107,142, 53,171, 86,232,121,108,206, 82, 71,202, 43, 65, 16, 24,254,225,135,197,138, 22, 45,100,219,213,234,242, 17, + 18,137,176, 97,118,182,231,149,163, 71,189, 13, 6,131, 93, 28, 22,171, 78, 80, 80,144, 85,100,113,185, 92,176,121, 62, 96,137, +154,130,231,213, 3, 66,255,126, 56,117,149,175,115, 19, 97,159,216, 21, 71, 68,238,213,187,118, 16, 6, 99, 81,187,193,210,189, +237,255, 39, 61, 33,172,135,205,230,246,128,100,216,196,222,145,223, 68, 52,244, 9,117,193,133, 93, 5,248,115, 77,206,239,218, + 2,204, 3,112,183,182,114,110, 48, 24,180, 20, 69,129, 36, 73,176,217,108,219, 57,129,231,126,255,253,119, 92,185,114, 5,176, +113,219, 83, 86, 86, 70,177, 88, 44, 8, 4, 2, 0,112,173,161,190, 3,135,195, 1,135,195,193,233,139,103,188,254,215,191, 15, +113,254,250, 49,180,143, 29,130, 18,149, 1,133, 10, 3, 74,203,129,232, 86,115, 17,211,125, 31,110, 60, 40, 67,243,102, 49, 44, + 22, 79, 52,188, 42, 62,237, 67,100,171,179, 48,160, 36,149,110,164,207,113, 57,124, 97,255,237,212, 51,187,111,220,218,177,246, +224,221,118,173, 58,169,205,198, 4,168, 84, 42,134, 32, 8,102,250,216,217,247,183,143,146, 83,171,134,222,160,217, 58,193,189, +191,177,170, 15,241,241,241, 57,239,229,229,117,210, 44,142, 66,196, 98,241, 57,169, 84,154,134,138,133, 30,251,243,243,243, 35, +213,106,117,123, 84, 44,206,122, 84, 82, 82,242,170,217,242,244,168, 6, 75,216,102,165, 82, 57,141,162,168,183,204,219, 27, 20, + 69, 53,207,200,200,136,106,222,188,121,106, 88, 88,216,181,176,176,176,195, 97, 97, 97, 7,194,194,194, 14,116,237,218,245, 91, +139,187,135, 23, 60,108,248,148, 22,121,201,132, 22,204, 34,107,163,249, 19, 86,161, 5,224,116,229, 9,104, 38, 62,255,150,105, +242,100,184, 31, 56, 0, 78, 70, 6, 70, 14, 31, 46, 17, 10,133,171, 80,225,163,169,189,171,171,235,154,121,243,230,137,189,151, + 44, 65,192,153, 51,200,140,143,135,145,195,185, 92,151,212,105, 52, 26,176,217,108,171, 37, 70, 36, 18,129,162, 40, 84,101,242, +125,170, 0,154,112, 33,183, 48, 13, 60,132,130, 6,163, 58,162,236,148, 52,228,254, 92,223,120,101,131,240,187,106,110,248,124, +159, 54,190,171, 66, 58, 36,169, 9,182,138,231, 46, 64, 86, 86, 54, 40,208, 14,141, 55,107,181, 90,133, 90,173, 70,243,230,205, +189,174, 92,185,210, 48, 54, 54,214,211,124,252,210, 51, 62,152,182, 1, 1, 1,187, 2, 3, 3, 31, 6, 4, 4,236, 2,208,214, +129,223,110, 78, 76, 76, 4,139,197,194,188,121,243, 80, 86, 86, 6,131,193,128,146,146, 18,100,101,101, 65,175,215, 35, 39, 39, + 7,119,238,220,129, 94,175, 71,102,102, 38,116,186,218, 59, 36, 52, 77, 67, 34,145, 64,171, 81, 97,221,162, 57,248,108,214, 12, + 40,238, 37, 35, 39,175, 16,238,110, 34, 76,157, 58,149,229,225,225, 65,211, 52, 29, 74, 81, 84,119,154,166,215,219,243,156,108, +222,183,179,193,193,193, 49,203,151, 47,143,154,179,104, 61, 87,194, 86, 49,124,177,128,230,137,249, 12,175, 73, 27,140,154,187, +138,251,221,202,175,211, 47, 92,184,144, 11,251,156,119,146, 0,206,182,104,209, 34, 34, 55, 55, 55, 54, 50, 50,178,177,119, 72, +125, 62, 95, 26, 88,202,149,214, 83, 50, 58,109, 18, 17, 88,175,227,250,245,235, 83,206,157, 59,151,231, 8,167, 72, 36,106,178, +109,219,182, 24, 63, 63,191, 24,142,139,139,160, 92,161,216,105, 42, 87,239, 98,185,123, 8, 72,137,251, 27,251,246,237, 75,222, +179,103, 79,129, 35,156,225,225,225,145,139, 22, 45,138,110,218,180,105,180,127,131,134,124,151,192,224, 18, 65, 80, 72,137, 75, +211, 88, 62,130, 66,123,174, 89,179,230,218,133, 11, 23,236,226,100,177, 88, 38,146, 36,193,225,112, 32, 20, 10,113,228,200, 17, + 76, 30, 51, 4,193,129, 94,104, 28, 25,137,110,147,166, 97,207,158, 61,214, 57, 60, 44, 22,171,218, 22,125,235,146,169, 7, 91, + 72,137,100,108,104,146,140, 13, 77,146, 91, 72,137,228,106,197,150,249,124, 85,215,216, 85, 27, 85, 51,220,104,135,216,250,227, +244,233,211,203, 70,140, 24,193,235,213,171, 23,146,146,146, 48,106,212,168,179,123,247,238, 5, 0, 36, 37, 37, 97,250,244,233, +103, 79,156, 56,129, 9, 19, 38,224,213, 87, 95,229, 37, 38, 38,174,129, 29,190,127, 76, 38, 19,182,108,217, 2,147,201, 4, 87, + 87, 87,120,122,122,162, 79,159, 62, 72, 73, 73,153,240,227,143, 63,166,177, 56,156,119,123,191,213, 31,135, 14,236,197,157, 91, + 41, 19,182, 46, 30,230,176, 83, 96,146, 36,209,107,248,240,226,226,232,104,217, 86,165,178,124,180,135,135, 48,178,160,192,243, +212,174, 93,222,118, 8, 53,130,162, 40,171,184,178,136, 14,203,198,230,249,128, 45,138, 1, 91,220, 10, 55,238,114,141,220, 56, + 92,229,181,194,237,154,252,103,113,120,228,168,126,115, 26,160,223,156, 6,232, 59,179,254, 72, 97, 61,108, 18,213,195,196, 94, + 31,132,118, 13,107,229, 6,101,145, 1,241,223,100, 62,210,150, 96, 9,128, 59,246,148,115,154,166, 83,115,115,115,193,227,241, + 80,175, 94,189, 8, 0,150,121,129,155,199,142, 29, 59,101,254,252,249, 51, 0,204, 55, 31,115,237,218,181,107,180, 74,165, 66, + 70, 70, 6, 0, 92,169,193, 26,108, 93,101, 40, 83,102,242,235, 7, 52, 69,108,147,241,240,240,104,134, 92,153, 30,121, 50, 61, + 54,173,123, 27,201,137, 11,113,229,207,247,240,168,160, 0, 46,254,239,128, 50,233, 98,236,232,212, 7, 92,191,126,157, 72, 76, + 76, 36,104,154,134,209,104,100,202,148, 74,230,234,217,179,208, 36, 36, 16, 18,137,132,232,208,186,147,106,235,194, 67,151,246, +173, 62,123,197, 80,238,112, 71,253, 89,240,217,253,251,247,219,238,218,181,171, 43,128,207,154, 54,109,122, 33, 43, 43,171,221, +153, 51,103, 26, 7, 5, 5,173,170, 43,169,197, 45, 68,102,102,230, 19,155,217, 45,132,222, 44, 26,122,153,197, 92, 95, 0,211, +241, 12,171,236, 29,192,233,151,120, 50,252, 33, 84, 90,109, 88, 89,104,217, 58, 10, 67,152,135,135,216,104, 52,228, 28, 59,118, +204, 64,146, 36,132, 66, 33, 70,140, 26, 69,174, 91,187,182,227,144,182,109, 79,142,123,237,181,195, 39, 79,156,104, 17, 23, 23, + 7,134, 97, 64,146, 36,126,251,237, 55,141, 86,171, 41, 9, 14, 14,118,183,167,210,176, 45, 64, 74,165,210, 42,180, 20, 10, 5, +252,252,252,236, 30, 58, 84, 43,113,252,196,145,100, 57, 67, 77,202,234,117,119,165, 97,105,193,219,113,165, 52,197, 86, 80, 70, + 40, 52, 12,202,180, 96, 39,145,158,113, 35,194,223, 49, 60,232, 30,119, 39, 33,237,124,137,150,210, 58,180, 90,162,168,168,104, +206,192,129, 3, 75,164, 82, 41, 33,145, 72, 16, 24, 24, 72,246,237,219,183, 56, 59, 59,123,126, 93,159,136,151,151,215,255,186, +118,237,122, 48, 55, 55,119, 64, 66, 66, 66,232,153, 51,103, 6,116,237,218,245,160,151,151,215,255,236,164,216, 57,123,246,108, + 53,143,199, 67,155, 54,109, 80, 86, 86, 6,243, 42,159, 26, 55,123,134, 72,185, 92, 46, 54, 44,255, 2,159,205,154, 1, 89, 90, + 18,110,156, 61,134,211, 5, 4,230, 46,250, 26, 92, 46,183, 78,190,190, 26,249, 8,155, 54, 13, 16,223,158, 62,106,112,222,167, +179,102,137,175, 93,187,198,153,242,193,116, 38, 51, 95, 6, 94,175, 21, 44,116,158, 67, 94, 87,251,160,247, 27,221, 48,239,179, +143,154,154,157,118,214,136, 38, 62,194,166, 49, 1,226,212,143,198, 13,185,255,193, 7, 31,184, 44, 93,186, 84,219,182,109, 91, + 77, 97, 97,161,139,200,195, 51,146,237,230, 30,147,153, 95,224,218,182,109,219, 7,147, 38, 77, 42,117,148,115,238,220,185,194, +163, 71,143,178, 7, 14, 28,104,146,203,229,174, 28, 23,151,230, 4, 95,208,250,177, 92,238, 54, 96,224,192,187, 3, 6, 12, 40, + 55, 59, 44,181,155,243,243,207, 63, 23,222,185,115,135,221,182,109, 91, 99, 65, 65,129, 88,228,229, 29,203,114,247,108,245, 48, +191, 80,210, 58, 46,238,222,148, 41, 83,212, 53,165,211, 86,164,136,197,226,220,246,237,219,227,155,111,190,193,119,223,125,135, +158, 61,123, 34,229, 86, 10,122, 79,153,129,168,137,211,113,224,252, 69,228,230,230, 98,193,130, 5,136,141,141, 5,151,203,189, + 83,101,121,156,144, 70, 92, 43, 0,113,173, 0, 4, 49, 33,141,176,236, 87,107,217,154,175,128,237,245, 85, 93,119,229,243,170, + 45, 93, 45,164, 68,114, 77,243,176,106, 19, 91, 3, 6, 12,152,108,113,225, 48,122,244,232,179,171, 86,173,234, 48,122,116, 69, + 71,187, 77,155, 54, 88,184,112, 97,135,185,115,231,158, 93,180,104, 17,186,117,235,134,176,176,176, 90, 23,190, 80, 20, 5,147, +201,132, 33, 67,134,192,100, 50,225,241,227,199, 72, 79, 79,199,198,141, 27,193, 48,140, 0, 0,164, 1, 65,175,240,120, 60, 92, +191,122,185,252,179,209,113, 63, 59, 96,201, 34,108, 59, 49, 42,149, 10, 3, 38, 78, 44,206,105,212, 72,182,190,184,184,124,140, +135,135,176,254,163, 71,158, 98,189, 62, 16, 53,204, 75, 36, 8, 2, 52, 77, 91,133,149, 69,112, 85,222,204, 13,165, 93, 48,148, +211,127,156,249, 41, 15, 0,208,105, 88, 0,250,206,172, 63, 82, 26, 46,252,190,227,208, 10,163,247,158,133,247,153,178, 60,106, + 41,140, 72,117,192, 98,157,148,148,148, 4,119,119,119, 12, 28, 56,144, 79,146,228, 18, 75,127, 21, 21,190,179, 86, 90,184,248, +124,254,138,247,222,123,143, 44, 45, 45,197,141, 27, 55, 0,224, 68,117,245, 18,195, 48,214,123, 87,201, 8, 80, 52, 15,231,174, + 30,193,159,103,118,227, 97,238, 99, 60, 42,210, 2,108, 55,104,213, 57, 48,104,114,161, 47,189, 10,165, 78,104, 87,130,185, 92, +238,227,166, 77,155, 50,173, 90,181, 98, 24,134,193,189,123,247, 76,153,143, 30,153, 46,127,251, 45,115,115,252,120, 66,156,158, +206,117,113,113, 33, 26, 52,104, 0,129, 64, 64, 11, 4,130,146,191,177,241,126, 33,238, 22, 94,128, 91,136,231,105,213, 98,240, +114, 34, 31, 79,174, 54,180, 58, 48,173,202, 97, 41, 24,137,203,224,221,107,214,185, 13, 28, 50, 76, 29, 27, 27,235, 17, 24, 24, + 8,130, 32,240,246, 59,239, 16, 93, 19, 18,196,156,128, 0,120,181,108,105, 29,142, 56,126,236, 24,142, 28, 57,162, 62,244,251, +190,192, 81, 99,198,188, 9, 96, 91, 13,137, 97,243,249,124,235,255,230,231,231,131,207,231, 91,231, 68, 40,149, 74,248,248,248, + 32, 63, 63, 31,118,142,204,109,255,116,214,197, 89, 69,113,115, 26,196,137, 57,196, 97,117, 1, 40,134, 1,135,160, 0, 13, 3, + 35, 5,232,140, 12, 94,169,207,242,252, 83, 99,242,136, 79,218,251, 0,192,118, 71,114, 79,167,211,157,186,118,237,218,120,154, +166,119, 3, 32, 19, 18, 18,232,212,212,212,201,176,127,226,250,211,102,123,161,112,230,201,147, 39, 61,103,206,156, 41,143,143, +143, 87,244,233,211,199,109,227,198,141,158,175,190,250,234,204,146,146,146, 29,246, 24, 2,179,178,178,182,101,103,103, 79,110, +213,170, 21,100, 50, 25, 12, 6, 3,146,147,147, 17, 30, 30,142, 43, 87,174, 32, 34, 34, 2,151, 47, 95, 70,227,198,141, 65, 81, + 20,180, 90, 45,104,154,166,106,171,204,101,197,143,129,146, 44,228, 37, 29, 70,250,205,100,156,204, 35,176,122,199, 65,212, 11, +109, 80, 39, 63, 53, 17,190,194,104,169,143,215,159, 75,191,252,220, 55,243,212,111,216,187,101, 53,125,250,240,225, 40,158, 24, +227, 59, 15,153,214, 95,111, 68, 8, 0, 94,187,184, 86,232,229,113,135, 18,134,162,224,100,106,205, 14, 22, 35,124,133,209,126, +222, 94, 71,191, 90, 50, 95,124,239,200, 86,236,220,240, 13,179,231,167, 95, 99,181, 64, 92,116,116,116, 47,146, 36,221, 1,104, +205,243,188,236, 10,109, 83, 21,231,241,131, 7, 91,104,129,184,253,251,247,247, 18, 10,133,254, 0,140,229,229,229,247,159,133, +243, 68,124,124, 11, 75, 58, 9,130,240, 5, 96, 96, 24,230, 30, 28, 12,193, 51,104,208,160,133,211,167, 79,159, 69, 81,148,143, + 77,239,156,181, 98,197, 10, 54, 77,211, 44,134, 97, 12, 36, 73, 26,142, 30, 61, 74,153, 76,166, 60,173, 86, 59,241, 89,106,145, +254,253,251,227,226,197,139, 95,162, 98, 17,134,189,214,234, 39,230,105,153, 67,246,212,153, 63, 33, 33, 97,193,187,239,190,251, +233,142, 29, 59,210, 87,173, 90,245,214,132, 9, 19,240,219,111,191,161, 81,163, 70,184,126,253, 58,230,204,153, 3, 0, 29,230, +206,157,123, 96,243,230,205, 97,153,153,153, 43,236,176,104,192,100, 50,225,215, 95,127,197,219,111,191, 13, 31, 31, 31, 4, 4, + 4,128, 32,136, 83, 99,198,140, 89, 11, 0, 44,130,197, 5, 0,157, 86,167,139,140,108,101,183, 5,151,203,229, 90,235,186,130, +130, 2,235, 74,193,215,223,125,183,120,211,210,165,248, 89,163,193, 24, 15, 15, 97, 78, 80,144,244,192,189,123,227,110, 85, 84, +206, 76, 77, 86,157,218, 68,150,189, 83, 26, 52,249,152,253,251,226,135,254, 0,122,118, 26, 22,128, 78,195, 2,208,170,175, 47, + 65,178, 8,220,252,179, 4, 41,199,101,123,140, 74,156,130, 99,225,114, 82,151, 44, 89,114,160,115,231,206,111, 53,105,210, 4, + 99,199,142,157,180,101,203, 22,174,209,104,252, 0,127,185,121,112, 35, 73,114,254,134, 13, 27,198,121,122,122, 34, 49, 49, 17, +103,206,156, 57, 5, 32,171,186,122, 9,128,213,103, 86,189,224, 8,237,157, 76,149,176, 40,247, 28,206, 38,254,142, 70,177,211, +224,226,255, 38, 60, 35, 23,193,144,246, 29,244, 37,127,194, 51,184, 15,114, 50,239,129,197,230,167,212, 54, 9,133, 97,152, 91, + 57, 57, 57, 97, 97, 97, 97,196,195,135, 15, 77, 0, 24,138,162, 24, 67,199,142,198,168,165, 75, 57, 41,147, 38, 17,237,238,220, + 97, 49, 4, 65, 39, 39, 39, 3,192,237,127,162, 21,183,184, 91, 72, 73, 73,169,206,221,130, 67,104,218,180,105,135, 51,103,206, +240,181, 90, 45, 78,159, 62,141,214,173,173,107,187,254, 81,239,247,182, 90,228, 37,195,184, 42,142,109,124,194,162,245,196,139, + 77, 19,156,198, 17, 17, 20,151,196,143,111,191,249,102,249,181,107,215,172,189, 62,237,165, 75, 80, 31, 57, 2,138,162,192, 48, + 12,206, 36, 36,224,189, 97,195, 84, 28, 22,177,169,126,253, 80,134, 96,158,240,221,210,189,138,222,195,192,129, 3, 7, 90, 43, +159,236,236,108,136, 68, 34,240,120, 60,208, 52, 13,147,201, 4, 22,139, 5, 55, 55, 55,152, 76,166,170, 76, 48,149, 57,141,148, + 76, 61, 96,115,239,161,249, 1, 42, 3, 51,222,189, 62, 66,184, 46,214,194,233, 47, 33,240, 86, 44, 7,222,236, 34,230,196,138, +215,242,104, 93,201, 0, 60,189,162,171,182, 37,255, 17,205,154, 53, 91,251,222,123,239,145, 0,208,189,123,119,178, 89,179,102, +223,163,230, 80, 57, 53,114, 10, 4, 2, 62, 0, 28, 60,120, 80,150,158,158,222,243,224,193,131, 50,219,227,118,114,110, 92,190, +124, 57,132, 66, 33, 76, 38, 19,244,122,189,117,126,150,237,167,193, 96,128,183,183, 55, 14, 29, 58, 4,138,162, 14,213,150,206, +224,144, 80, 16, 62, 13,177,237,224, 73,156, 41,230,214, 69,100, 89, 57, 27,250,139, 26,251,123,123, 29,251,106,241, 2, 31,249, +221,100,228,228,228, 48, 71,143, 28,186,160, 5,114, 21,101,248,172, 84,141,198, 26, 61, 4,173,195,144,117,108,195, 39,204,220, + 78, 48,162,234, 85,131, 86,206, 40,127, 81,227, 64, 31,175,163, 95,127,181, 88, 92,122, 55, 25,249, 5, 5,248,227,208,193,107, + 90,192, 50,220, 56,146,166,233, 24,154,166, 99, 0,140,172, 65,188, 56,196, 89, 94, 94,222,180,188,188,188,233,243,228,100, 24, +166, 41,195, 48,118,115,218,206,137, 90,185,114,101, 90,126,126,254,123, 69, 69, 69, 61, 44,155, 92, 46,239,174, 82,169,186,148, +151,151,119,212,172, 12,117, 43, 47, 47,247, 85,169, 84, 82,173, 86,251, 10,128,100, 7,222,121, 43,108,189, 78,231,231,231,207, +203,207,207, 39,106, 75, 39,107, 98, 26,241,203,215, 31,253,190, 97,195, 6,233, 51,242, 63,145,206,226,226,226,221, 59,118,236, +104,222,160, 65,131,176,145, 35, 71, 98,253,250,245, 88,181,106,149, 14, 0, 54,111,222,172,179,177,100, 5,103,102,102,182,170, +102,216,176,187,141,181,100,251,235,175,191,206,156, 57,115, 6,111,191,253,182,213,145,232, 15, 63,252, 0,147,201,164,236,214, +173, 27, 13, 0, 26,109,185,146,161, 25,232, 13,213,142,191, 63,149,159, 60, 30,239, 13, 91,127,129, 22,103,204, 60, 30, 15, 12, +195,160,113,135, 14,197,165,177,177,178, 45, 10, 69,249,188,166, 77, 37,227, 34, 35, 71, 54, 1,134, 85,197, 73, 16,196, 19, 86, +157,202,155, 3,150, 44,219,116, 22,105,242, 48,246,247,197, 15,143, 88, 44, 91, 2, 87, 54,180,101, 38,236, 91,250,240,177,246, + 49,126,168, 78,252,212,116,239, 50,153,108,202,210,165, 75,117, 30, 30, 30,232,223,191, 63, 22, 45, 90, 52,166, 67,135, 14, 10, + 95, 95,223,139,141, 26, 53,186, 57,120,240,224,252,228,228,228, 41, 93,187,118, 69, 70, 70, 6,190,254,250,235, 82,185, 92, 62, +180, 38, 78,130, 32,172,150,188,190,189,187,203,214,125,255, 13,221,173,243,100, 8, 93, 36, 48,114,130, 33, 83, 25, 33, 87, 51, +208,243,227,192,227,242,209,163,109, 52, 46, 30,221, 90, 78,233,213,219,106,123,231, 85, 42,213,158, 17, 35, 70, 40,185, 92, 46, +244,122, 61,195,225,112,192,175,152,119, 76,115,122,246, 52,180, 75, 77, 53, 81, 12, 67, 19, 4,129, 15, 63,252, 80, 45,151,203, +119,212,165, 28, 57, 0, 91,206,231,229,110,161,123,165,246,231,121,184,133,120, 17,247,254, 50, 99, 99, 21,219, 95, 22, 45,203, +146, 74,203, 39, 65,208, 20, 69,209,168,223,160,190, 56,243, 97,214,234, 65,131, 6,142,238,213,171,183,176,119,239,222,130,232, +180,138,222,232,193,131, 7,177,119,239,222,242, 63,255,252, 83,201,231,176, 54, 7,215, 11,246,163, 40, 26, 4, 65,215,168,134, +197, 98,241, 7,179,103,207,118, 81, 40, 20, 88,181,106, 21,221,188,121,115, 82, 36, 18,193, 96, 48, 96,243,230,205,198,232,232, +104, 14, 73,146, 80, 40, 20, 32, 73,242,142,157, 55,120, 67,145,149,219, 99,109,215,126,123, 91,189, 63,202, 43,170,107, 59,143, + 46,193,129, 48,182,100,144,151,253, 16,233, 39,254,148,223, 58,250,109, 9,180,133,253, 80,123,120,160,170, 26,130, 47,254,252, +243, 79,223, 41, 83,166, 48, 90,173,150,200,202,202, 98, 22, 47, 94,236, 59,118,236,216, 47,242,242,242,254, 87,199,135, 66,148, +150,150,130, 32, 8,218, 92,114, 30,194, 56, 0, 0, 32, 0, 73, 68, 65, 84,145, 88,122,253,142,140,203,165,108,219,182,109,255, + 59,239,188,211,183, 91,183,110, 72, 75, 75,179, 14, 17,218, 10, 45,203,234,195, 37, 75,150,148, 2,248,180, 54, 82, 14,135,131, + 85,219,118,163, 84, 94, 12, 63,191, 0, 8, 92, 92, 80,215, 21,150, 60,146,156,183,108,193,231,190,197,183, 47, 18, 41, 23, 78, +210,187,110, 20, 22,153, 40,166,106,143,255,101,121,140, 89,253,215,220,155, 33, 89,243,150, 45,158,239,102, 25,214,220,113, 53, + 95, 73, 80,204,148,103, 42, 34, 47, 11,231,223,140,128,128, 0,228,231,231, 19, 1, 1, 1,140,121,142, 22, 83,131,208,122,242, + 5,175, 24, 46, 35,106, 26, 54,172, 43,255,131, 7, 15, 22,183,108,217,242,163,140,140,140, 93, 81, 81, 81, 19, 0,212,211,233, +116,165,115,231,206,253,106,243,230,205,163,237,177,100, 1,192,111,191,253,246,237,168, 81,163,142,188,249,230,155,159,208, 52, +221,204,166, 97,127,224,235,235,107, 29,194,125, 92, 88, 48,107,252,232, 33,179, 84, 42,185,221,126,238, 92, 93, 93,199,205,157, + 59, 87,160, 86,171,177,102,205, 26, 58, 58, 58,154,180,116,138,126,250,233, 39, 83, 68, 68, 4,123,224,228,201,197, 43, 11, 10, +176, 48, 49, 81, 61, 43, 38,166,249,150,244,244, 87, 64,211,219,171,179,234, 84,101,201,178, 76,187,168, 35,242,204, 98,235, 7, + 0, 61,219, 13,242,199,254,229, 15, 33,207,212,127, 5, 19,238,193,142,176, 64, 85, 32,103,207,158, 61, 61, 10, 11, 11,247,127, +254,249,231,110,175,188,242, 10, 98, 98, 98, 56,174,174,174,113, 22,119, 49, 10,133, 2,199,143, 31,199,250,245,235,245,183,110, +221,122,167,166,225, 42,138,162,138, 34, 34, 34, 44,249,192, 16, 4, 81,162,212, 17,110, 59,155,196,185,142, 28,191,139, 56,123, +249, 60,242, 12, 52,116, 70, 26,245, 27,180, 64,151,158, 43,113,224,240, 77, 42, 47, 51, 53,213,168,145,111,178, 35,189,247,238, +222,189,187,111,193,130, 5,131, 62,249,228, 19,151,226,226, 98, 74,167,211,209,187,119,239,102,141, 28, 57,146, 98,216,108,154, +203,102,227,131, 15, 62,208,148,150,150,254, 14,252,173, 1,166, 95,136,187,133, 23,224, 22,226,185, 89,179,108, 63,255, 43,168, +178,132,210, 44,242,220,250, 13,235,222,248,237,215, 29,254, 44, 22,233,127,239,254,253,203,111,245, 27,144,123,236,216, 49, 79, +174,155, 91,107, 0,180,126,194,132, 11, 6,157, 70, 22,191,127,127, 72,253,250,161,177,230,160,210, 12,205, 34,207,213,244,135, + 42,149, 74,157,152,152, 88,254,233,167,159, 18,217,217,217,191,248,249,249, 13, 62,124,248,176,107,191,126,253, 52,105,105,105, +123,252,253,253,251,118,237,218, 85,252,209, 71, 31,233, 84, 42,149, 35,129, 71, 83,153,199,242, 38,151, 62, 95,241,238,165,229, +235, 94, 3,155,213, 30, 58, 14, 64, 27,207,193, 80,118, 12,192, 47,112,192,223,145, 45, 68, 34, 81,172, 80, 40,196,181,107,215, +228,113,113,113,122,173, 86,203, 93,180,104,145,151, 72, 36,138,173,107,198, 51, 12,195,200,229,114,208, 52,205, 6, 64,152, 63, + 65, 59,190, 22,255,127,111,189,245,214,254,157, 59,119,190,222,187,119,111,132,133,133,193,104, 52, 34, 34, 34, 2,122,189, 30, +225,225,225,208,233,116,248,242,203, 47,161, 80, 40,102,160,134,152,103, 4, 65,192,100, 50, 89, 39,219, 6, 6,133, 84,248,233, +121, 6, 55, 22, 34, 14, 25,118, 39,126, 11,138, 74,138,233,157,215, 11, 11,203, 13, 84,143,187,143,203,111, 85,190,174,156,130, +186,235,200,169,185, 0,160,163,107,142, 56, 47,226, 33, 44,253,208, 15, 40, 44, 42,198,111, 87,243, 75,213, 6,186,103,122, 21, +156, 14,165,243, 37,225,108,241,101, 26, 6, 76,181,255,218,103,129,189,130,170, 58, 92, 43, 0,113, 69,184,133,193,134, 45, 85, +250,200,122, 70,254,253, 25, 25, 25,251, 1, 32, 53, 53, 53,123,200,144, 33,179, 30, 62,124,184, 0,192, 31,153,153,153, 27, 28, + 33,218,178,101, 75, 6,128, 81, 53, 93,179, 99,197,168,125, 0,246, 57,194, 91, 86, 86,166, 77, 78, 78,214,126,244,209, 71, 68, +118,118,246, 97,127,127,255,215,143, 28, 57, 34,236,215,175,159, 46, 37, 37,229, 68, 64, 64, 64,167,238,221,187,187,254,145,148, +148, 91,126,239, 94,124,252,195,135, 65, 70,154,142,175,169,124, 62,103,145,245,132,216,218,183,240,225,178,253,203, 30,118,167, +117,216,163,151,227, 2,128,156,103,224, 60,115,238,220,185,168, 97,195,134,237,236,211,167, 79,187,168,168, 40,212,171, 87, 15, +233,233,233,120,252,248, 49,110,220,184,129,131, 7, 15, 30,212,106,181,181, 6,212,150,201,100, 79,135, 39, 18,120, 6,108, 93, + 51,239,224,229,179,173, 35, 58,246, 30,225, 18, 19, 64, 67,111, 96,144,253,232, 30,190,252,108, 83,121,254,163,140, 84,131,201, +240, 14,236, 92,168,163,209,104, 54,126,247,221,119,156,248,248,248,222,171, 87,175, 22,135,132,132,176,184, 92, 46, 9,128,185, +114,229, 10, 51,117,234, 84,117,113,113,241, 33,165, 82,185,241,111,110,163,207,220,191,127,191, 5,139,197,122,174,238, 22,158, +193, 45,132, 19,207, 19, 13, 26, 4, 69, 53, 12, 9,152, 16, 86, 47,104,114,131,144,224,225, 85, 77,114, 15,243,240, 16, 55, 8, + 13, 28, 23, 86, 47,104,114,195,144,128, 9, 13, 26, 4, 69,217, 97, 90, 12,147, 72, 36,135,165, 82,105,115, 0,112,115,115,235, +235,238,238,126,203,205,205,173,175,185, 23,216,215,213,213,245,118,116,116,244,216,191,209, 92, 89, 35,103, 68, 68,196, 16,149, + 74, 53, 41, 34, 34, 98,136,101,255,222,189,123,214,253,186,112, 6, 7, 7,119,187,114,229,202,255, 86,172, 88,209,191, 81,163, + 70,125, 23, 47, 94,220,255,247,223,127,255, 95, 80, 80,208, 43,117,224,228, 3,248,153,195,225, 20,242,120,188, 34, 14,135, 83, +104,217,216,108,118, 33,139,197, 42, 4,176,161, 26,107, 89,119,155, 94,206, 89, 63, 63,191, 76, 63, 63,191, 76,127,127,255, 76, +127,127,255, 76,169, 84,250,212,230,237,237,125,214,222,252,140,244,119,237, 16, 87, 79,124,174,169,212,245,108, 19, 63, 81,228, +243,120, 70,145,254,174, 29, 90,215,115, 59,215, 84, 42, 78,252,255,198,217,220, 31, 12,179, 62,146, 97,214, 71, 50,205,253,193, +212,182,255, 60,205,254, 82,169,148,145, 74,165,243, 94,212, 80, 66, 53,252,127,123,121,127,142,156, 97, 98,177,120, 71,189,122, +245, 44,117,221,155, 18,137,228,148,171,171,235,155,230,186,238, 77,145, 72,148, 16, 29, 29, 61,162, 54, 78, 79, 79,207, 43,190, +190,190, 5,230, 45,223,207,207, 47,223,207,207, 47,223,215,215, 55,207,215,215, 55,207,199,199, 39,215,178,185,187,187, 95,172, +227,189,251, 2,104, 3,224, 21, 0,146,231,152,159, 13, 0,140, 55,215, 65, 75, 1,140, 5,208,236, 57, 60, 35,130,227,226, 57, +145,239, 30,124,142,227,234, 83,198,113,245, 41,227,187, 5,157,171, 33, 4,143, 61,156,141, 61, 61, 61, 23, 73, 36,146,223,197, + 98,113,162, 88, 44,222,239,237,237,189, 24, 64,227,127,232, 93,114, 5,176, 25, 21,254,153,254, 64,197, 80,248,126, 84, 44, 42, + 8,249, 23,190,243,255,159, 49,238,159,250,227,238, 78, 78, 39,167,147,211,201,233,228,116,114,190,132,156,164, 51, 63,157, 66, +203, 65,161, 85,121, 3, 80,131,103,120, 39,156,112,194, 9, 39,156,248,127, 12,218,153, 5, 78, 56,136, 42,135,150,137, 26, 84, +169, 35,190,166,234,162,108,143, 59, 57,157,156, 78, 78, 39,167,147,211,201,233,228,252,127,199,233,196,115,132,211,172,234,228, +116,114, 58, 57,157,156, 78, 78, 39,167,147,243,191, 14,231,208,161, 19, 78, 56,225,132, 19, 78, 56,225,196, 11,194, 70, 27,193, +245,196, 16,162, 83,104, 57, 14, 18,192, 36, 0, 3, 0, 52, 68, 69, 52,251,221, 0,214,162,110, 99,250, 18, 0,179, 0,180, 71, +197,234,156, 7, 0, 18, 81,177, 58, 71,229,204,238,170,225,237,237, 61,155,195,225,184, 3, 21,161, 77, 44,159,182,223, 41,138, + 42, 85, 42,149,139, 95, 80, 18, 88,176,211,131,178, 37,173,182,105,179,253, 52, 26,141, 47, 50,157, 78,252, 59, 17,225,233,233, +249,179, 76, 38, 27, 10,155, 32,203, 78, 56,241, 95,128,143,143,207, 4,131,193, 48,151,203,229, 46,122,252,248,241,186,255, 71, +183,254,148,200,122, 66,104,197,199,199, 39, 0, 64,159, 62,125, 58, 3,128,187,187,251,121,146, 36, 27, 56,242, 15, 52, 77, 63, + 40, 45, 45,173,214,129,154,187,187,251,121, 22,139,245, 20,167,209,104, 20,179,217,236,178,170,126, 99, 50,153,114,148, 74,229, + 43,255,146, 76, 36, 0,196,123,120,120,104, 23, 44, 88,176,182, 75,151, 46,193,121,121,121,166,153, 51,103,118,186,126,253,122, +111, 0,111, 56, 40,182,218, 18, 4,177,181,121,243,230,251,134, 15, 31,190, 51, 46, 46,142, 87, 82, 82, 34,222,189,123,119,224, +182,109,219,146,105,154, 30,138, 26, 2,173,254,127, 6,135,195,113,207,201,201, 17, 3, 21,161, 73,204,194, 10, 70,163, 17, 70, +163, 17,106,181, 26,177,177,177,207,253,127,253,253,253, 91, 16, 4,177,218,213,213,245, 21,149, 74,117, 25,192,228,252,252,252, +235,142,164,213,100, 50,129, 97, 24,107, 58,163,162,162,156, 15,212, 49,140,225,241,120, 61,195,195,195, 91,235,116, 58,249,131, + 7, 15, 46, 81, 20,245, 57,158, 95,140, 54, 55, 0,159,243,249,252,184,134, 13, 27, 6,103,100,100,100, 27, 12,134, 36, 84, 4, + 67, 86, 60, 15,145,213,185,115,231,179,107,214,172,241,154, 56,113,226,217,196,196,196, 14, 78,177,229,196, 63,133,224,224, 96, +119,181, 90,189, 9, 64, 11, 14,135,227, 47, 16, 8,224,226,226, 82,192,231,243,175,185,184,184,140, 62,119,238, 92,169,163,156, + 20, 69,125,158,153,153,233,223,166, 77,155,229,190,190,190, 95, 22, 23, 23,107, 13, 6,195, 9,185, 92, 62, 3,128,178,166,223, + 86,214, 34, 47,153,200,178,253,132, 69,116,177,205, 55,198, 0,232,242,132, 2, 99,179,131, 30, 61,122,228, 43, 16, 8, 64,211, +180,181, 49,171,188, 89,142,235,245,122,196,196,196, 24,106,105,112,130,179,179,179,125,121, 60,158,245,152, 94,175, 71, 96, 96, + 32,157,147,147,227,107, 14,123, 96,133, 78,167, 67, 80, 80,208,191, 41,230,209, 36, 79, 79, 79, 69, 86, 86,118,172, 86,103,152, + 63,118,202,167,179,135, 14,120,205,227,252,249,243,244, 27,111,188,161, 75, 72, 72,152,132,138,192,169,118, 85,230, 4, 65,108, +155, 57,115,230,151, 2,161,196,235,228,249, 84,221,182,221,135,114,155, 71,212, 39,102,204,152,193,154, 58,117,234,153, 22, 45, + 90,252, 76,211,116, 75, 56, 96,217,242,240,240, 56,194,231,243, 67,205,249,151, 37,151,203, 95,255, 23,190,144,108, 60,237, 60, +182,170, 99,181,162,164,164, 4, 26,141,230,169, 45, 42, 42,202,222, 88,153, 14,165,155,195,225,236, 95,178,100, 73, 96, 65,126, + 62,190, 89,185,178, 13, 42, 44,153,109,236,249,113, 81, 81,209, 83,233,140,140,140,132, 19, 14, 97,214,151, 95,126,185,228,221, +119,223, 5, 69, 81,208,104, 52, 1,119,239,222,141,158, 59,119,238, 59,247,238,221,107, 13,224,254,179,118,198,195,195,195,211, +166, 77,155,230,217,186,117,107,152,163, 84, 4, 36, 38, 38,182,217,188,121,243,123, 89, 89, 89,145, 0, 30, 63,203, 31,120,122, +122,254,252,195, 15, 63,120, 9,133, 66, 28, 56,112,192,171, 91,183,110,137, 87,175, 94,237,248, 12, 98,139,244,242,242,154, 10, +224, 85,154,166,121, 0,146,228,114,249, 66, 56,238,213, 93,234,234,234,186,135, 36,201,250,192, 95,222,232, 73,146,244, 38, 8, +162,216,114,140, 32, 8, 95,154,166, 47,200,100,178,118,206,215,241,229,134,151,151,215,152,194,194,194, 53,124, 62,159,235,225, +225, 1,161, 80, 8, 54,155, 13, 54,155, 93,143,207,231,215,227,243,249,189,186,118,237, 58,249,212,169, 83, 53,122,216,111,219, +220,111, 36, 72, 98, 62,139, 32, 89, 0, 64,114, 68, 18, 55, 55, 55,204,159, 63, 95,212,183,111, 95, 17, 0,156, 61,123,118,248, +136, 17, 35,186,229,228,228,196, 84, 39,182,170,210, 34, 47, 17, 54,214,212,224,193,172, 30, 19,158, 40,185, 36, 9, 30,143,135, +139, 23, 47,194, 30,103,229,150, 16, 9, 53,214, 6,102, 15,227,215,175,255,101, 0,176, 52, 52, 60, 30, 15,231,206, 61,233, 84, +190,109,219,182,214,194,254,119, 97, 64, 84,133,147,199, 93,239, 87,164,107,224,234, 10,239,218,187,222,143, 68,167,175, 31, 97, +192,212,121,131,203,181,134, 86, 0,212,165,114,185,252,242,222,189,121,205, 35, 34,184, 63,255,252,115,235,192,192,192, 1, 14, + 8,173, 89, 45, 91,182,220,195,114,113,243, 30, 62, 98,228,240,209,108,210,240,222,248,143, 22,101,231, 23,171,199,141, 27,183, +247,192,129, 3,195,151, 45, 91,118,251,227,143, 63,158, 5, 96,142,189,233, 23, 8, 4,161,119,238,220, 9,167, 40, 10, 81, 81, + 81,255,198, 48, 6,205, 81,225,124,239, 93, 0,191,154,143, 13, 65,133,231,254, 22, 0,174, 57, 66,102,177, 96, 85,181, 61,111, + 4, 6, 6, 70, 14, 27, 54,204, 91, 86, 92,140,111, 86,174,180, 28,126, 5,181, 12, 35, 90,202,143, 94,175, 71,255,254,253,135, + 81, 20,197,182,136, 64,157, 78,167, 87, 40, 20, 90,252, 53,177,244, 49,128,215,236, 72, 78, 3,145, 72,244, 21,128, 22, 26,141, + 38, 16, 0, 68, 34, 81, 46, 77,211,251,212,106,245, 28,252, 21,192,215,225, 14, 46,128,104, 84, 31, 10,138, 89,178,100, 73,198, +167,159,126,122,255, 31,224, 12,245,243,243, 91, 60,112,224, 64, 28, 58,116, 8,127,252,241,135,209,197,197,133, 61, 98,196, 8, + 98,242,228,201, 30,211,166, 77,235, 5,224,187,103,124,204,189,190,252,242, 75,207, 38, 77,154, 96,247,238,221,184,113,227,134, + 38, 60, 60,220,165, 75,151, 46, 96,179,217,158,179,103,207,126, 3,192,214,103,249, 3,153, 76,182,240,163,143, 62,218,246,235, +175,191,138, 31, 60,120,128,213,171, 87,123, 15, 30, 60, 56, 33, 43, 43,171,179, 3, 98,139, 15, 96, 42,128,174, 44, 22,171,227, +136, 17, 35, 76, 83,166, 76,225,144, 36,105, 92,185,114,165,207,230,205,155, 7,115, 56,156, 22, 37, 37, 37,246,116,210, 72, 0, +243, 71,143, 30, 61,234,212,169, 83, 30,151, 46, 93,226,121,121,121,129,162, 40,171,165,152,166,105, 95,203, 59,107, 50,153, 16, + 25, 25, 25,100,243,123,151,151, 85,104,144, 36,105,160,105,154, 3, 64, 0, 64, 87,219,254,127, 73,100,121,122,122, 78,148,201, +100,107,253,253,253,225,231,231,247, 84, 91,171,211,233, 32, 16, 8,184,254,254,254, 63,244,237,219,151,179,127,255,254,106,135, + 0, 9, 22,241,249,129, 29, 11, 2, 61, 61,196, 0,128,111,215, 31, 45, 7,128,223,127,255, 29,121,121,121,240,240,240, 64, 76, + 76, 12,107,193,130, 5,210, 25, 51,102,124, 35,151,203, 71, 87,199, 85, 89,139,188,100, 22,173,141, 85,237,215, 56, 71,139, 97, + 24,107,156, 60, 59, 95,218,202,135,142, 87,226, 35,244,122, 61, 42, 91,180, 44,133,151,195,225, 84, 54, 63,130, 32, 8,166, 38, +206, 42, 48, 66, 36, 18,197,170,213,234,239, 29,232,221, 90, 57,119,189, 31,137,109,252,153, 67, 44,145, 72,123,125, 84,241,185, + 13,192,249,135,163, 87,175,233,220, 57,112,234,103,171,230,105, 74,242,138,103, 15,123, 51, 52,220,223,203, 69, 84, 90,164,240, +108,220,184, 71, 37,139, 76,109,233,236, 52,124,248,240,237,127, 94,204, 36, 4, 2, 46,151,205, 98,113, 58, 52,141,240, 10,118, + 99,185,137, 1,183,236,251, 25,231, 71,142, 28,217,244,227,143, 63,238,232, 0, 39,204, 13, 46,126,250,233, 39, 16, 4, 65, 58, +114,239,207, 17,199,107, 18, 89, 12,195,128, 32,136, 95,108, 26,149, 95,204,199,174,218,136, 45,118, 77,249,105,177,166, 90, 68, +213,136, 17, 35,134,153, 76, 38,182, 77, 37, 81, 89,192, 84, 37, 98,236,186,119,169, 84,250, 39,128,215, 8,130,128, 94,171,213, +127,245,245,215,182,167,175, 84, 18, 89,199,171, 43, 75, 70,163, 17, 20, 69,177,175, 94,189,202,177,121,215, 57, 0, 68, 0,188, + 25,134, 1, 73,146, 55,237,200,207, 72,161, 80,120,254,224,193,131,146, 87, 94,121,133,224,241,120, 48,153, 76, 72, 73, 73, 9, + 94,182,108,217,248,227,199,143,191,161, 86,171,163,240,116,240,116,123,158, 81,116, 98, 98,162, 58, 44, 44,172, 74,225,168, 84, + 42,217, 17, 17, 17,157,171, 17, 69, 47,154, 51,167,176,176,240,237,215, 94,123,109, 66, 65, 65, 65,154,201,100,250, 4, 64,140, +183,183,247,213,126,253,250,193,197,197,165,171, 70,163,249,238, 89,222,121, 95, 95,223,190,237,218,181,195,234,213,171,177,108, +217,178,238, 0, 78, 0,232,166, 84, 42,143,191,245,214, 91,112,119,119,127,187,180,180,116,235, 51,148,163,136, 78,157, 58,253, + 48,127,254,124,241,161, 67,135, 16, 30, 30,142,178,178, 50,124,248,225,135,190, 95,124,241,197,233,210,210,210, 46, 54,229,162, + 58,206, 40, 62,159,191,245,215, 95,127,117, 13, 11, 11, 11,227,114,185,100, 88, 88, 24,100, 50, 25,180, 90, 45,127,209,162, 69, + 77, 93, 92, 92,174,127,247,221,119, 91, 1,244,171, 37,157, 36,128,133, 27, 54,108,152, 48,110,220, 56,247, 97,195,134, 81,122, +189, 30, 59,119,238, 4,139,197, 2,135,195,129, 80, 40,180, 6,175,230,114,185,104,220,248, 41, 39,233, 7,106,184, 95, 5, 42, +230,161,186,195,177, 97,215,227, 53,240, 89,135, 62, 56, 28, 14, 4, 2, 1, 4, 2, 1,248,124, 62,238,220,185,243,153, 64, 32, + 88, 73, 16,132,201, 30, 78,226, 47,117, 17, 11,224, 82,109,251,120,122,106,200,223, 89,127, 90, 16, 68, 16,196,183, 0,186, 86, + 52,187,100,130,183,183,247, 7,133,133,133,143,236,229,148, 74,165, 94, 37, 37, 37,223, 73,165, 82,248,249,249, 89,219,239,192, +192, 64, 24,141, 70, 20, 22, 22,130, 97, 24,148,150,150, 66, 40, 20, 34, 32, 32,224,187,113,227,198,237,222,184,113, 99, 73,149, +156, 52,150,189, 53,120,238,231, 44, 22,139, 4, 0, 22,219,213,117,218,167, 64,104,104, 40, 58,116,232, 0,173, 86, 11,133, 66, +129,232,232,104, 54, 65, 16,195, 9,130,144, 48, 12,179, 14,192,201,255,160,161,176,218,201,240, 95, 86, 30, 23,181, 68,139,231, +114,185,118, 9, 45,243,245,181, 89, 80, 72,163,209, 8, 46,151,251,132, 69,130, 32, 8, 80, 20,245,196,113,139,208,170,139, 80, +159, 60,121, 50,253,195, 15, 63, 76,144,203,229,235, 81,199,161,132,225,195,135, 63, 53,223, 99,198,140, 25, 57, 69, 69, 69, 76, +255, 30,177,162,180,195,121,249, 13, 61, 92, 93,124,196,226,250, 2, 15, 79,247,146,146,146, 11,230,202,196, 94, 52,106,217,178, +165,203,182,189,137, 57, 99,167, 47, 89,240, 74,152,151,164, 89,144,183,135,191,155, 11,207,149, 36,212, 2,147, 49,199,211,211, + 51,220,209,116, 91,234, 5,161, 80, 8,146, 36,255, 77, 22, 45,182, 69,100,201,100, 50, 28, 58,116, 8,189,123,247,190,106, 17, + 33, 74,165, 18,249,249,249,144, 74,165, 87,205,150,143, 90,135, 17,105,154,134,193, 96,128,193, 96,176, 10, 24,155,119,200, 42, + 96, 44,215,178, 88,172,155,117, 76,251, 2, 15, 15,143, 78, 93,187,118,229,237,216,185,147,199, 48,140, 26, 21, 49,212, 84, 12, + 83, 77,128,236, 74, 48,153, 76, 86, 43, 27,135,195, 65, 86, 86,150,181,225,178,196,150, 20, 8, 4,246,153, 50,248,252,143,126, +251,237, 55, 73,235,214,173,137,146,146, 18,208, 52,109,173, 36,215,174, 93, 43, 24, 48, 96, 64, 96,114,114,242,108,157, 78,247, +101, 29,238,149,168, 78, 16, 1,128, 68, 34, 49,193, 62,143,217,181,114,154, 76, 38,162,125,251,246, 31, 23, 23, 23, 55,213,104, + 52,139,236,201, 70, 0, 7,114,114,114,108, 27,246,235,105,105,105,154, 65,131, 6,185,212,175, 95, 63, 46, 53, 53,245,153, 94, +210,136,136,136,182, 28, 14, 7, 73, 73, 73, 58, 0,150,158,117,194,141, 27, 55,116,253,250,245,227, 7, 7, 7,183, 45, 45,181, +123,202, 74, 68,100,100,228, 49, 95, 95, 95, 23, 75, 29,234,227,227,195,217,184,113,163, 56, 55, 55, 23, 6,131, 1,179,102,205, + 66,159, 62,125,224,237,237,141, 25, 51,102,248, 45, 95,190,252,103,149, 74,213,178, 38,163, 53,143,199,219,126,247,238,221,112, +169, 84,234,114,241,226, 69, 52,107,214, 12,197,197,197, 40, 40, 40,128, 74,165, 66, 65, 65, 1, 70,143, 30,237,251,205, 55,223, + 4,216, 97,201,178,138,172,141, 27, 55,150,238,217,179,135,181,105,211, 38, 49,135,195,177, 10, 45, 54,155,109, 21, 90,150,216, +138,117, 24,105, 40, 53,139, 54,119,133, 66,241, 44,243,220,248, 0,120,182, 34,139,207,231,131,207,231, 67, 32, 16, 60, 83, 92, +214,151, 4,129, 4, 65,164,114,185, 92,190, 80, 40,228,146, 36, 9, 62,159,223,195,211,211,243, 86, 76, 76, 76,204,177, 99,199, + 50,237, 33,209,106,181,219,249,124, 62,199,215,215, 23, 0, 16, 30, 30,142,102,205,154, 65,173, 86,211, 10,133, 2,238,238,238, +228,163, 71,143,160,209,104,144,159,159,143,144,144, 16, 14, 73,146,219, 81, 49, 15,249, 41,156,191, 90,176, 30,192,122,203,190, +183,183,119,161,173,165, 83, 32, 16, 32, 48, 48, 16,185,185,185, 16,139,197,172, 47,190,248,162,223,206,157, 59,223, 57,127,254, +252,112, 0, 63,217, 80,125,249, 18,207,209,178,136, 44,219,207,191,132, 86,159, 62,125,230,197,199,199,119,174,170, 23,206,225, +112,158,219, 92, 23,139,160,146, 72, 36,149,173, 86,160,105,186, 58,139,150,195,255, 35, 16, 8, 92, 38, 78,156, 88,182,110,221, + 58,135,197,214,192,213,105, 86, 43,214, 83,221,200,168,168,243,179,103,207,238,123,234,212,169,220, 87,194,234,179, 69,121,143, + 84, 2,137,187, 59,130,234,245, 30,241,118,191, 27,168, 88,125,104, 47,238,150,149,149,185, 52, 12, 18,234, 73, 82, 75,212,227, +179,197, 82, 17,151,239,239,225, 17,200,213,235,138, 36, 30, 30, 60,157, 78, 87,138, 26,130, 64, 3,128,159,159,223, 81, 23, 23, +151, 16,203,190,135,135,135, 27,195, 48, 16, 10,133,144, 74,165,174, 44, 22, 43,221,166,112, 61, 42, 44, 44,236, 81, 91,194,220, +221,221,143,242,249,252, 16,146, 36, 65, 16, 4, 88, 44, 22, 72,146, 4, 73,146,214,239, 44, 22, 11, 4, 65,160,188,188,252, 81, +102,102,102, 15, 59,238,215, 4,160, 5, 65, 16, 87, 15, 29, 58,132,184,184, 56, 28, 62,124, 24, 61,123,246,132, 66,161, 64, 74, + 74, 10, 58,117,234, 4, 84, 12, 41,218, 5,219,201,239,150, 78,193,157, 59,119,172,194,197,118, 19,139,197,207, 98, 98, 63, 59, +112,224, 64,252,240,195, 15,140,185, 51, 33, 34, 8,162,153,155,155,219,157,219,183,111,219, 53, 15,134, 97, 24, 24, 12,127, 93, +106,105,188,204,243, 33, 28, 10, 14,204, 98,177,122,180,108,217,146, 80, 40, 20, 22, 1, 9, 54,155, 13, 22,139, 5, 22,139,133, + 53,107,214,184,180,110,221,122, 46,159,207,255,152,203,229, 42,141, 70,227, 14,173, 86,187, 8, 64,233,191,169, 70,234,216,177, +227,244,236,236,236, 62, 33, 33, 33, 7,159,129,134, 49, 26,141,122, 0, 46, 44, 22,139,243, 28,234, 40,150,249,221,210,218,136, +125,147,121,159,143,138, 97, 98,187,224,237,237,253,243, 31,127,252, 17, 20, 18, 18, 2,163,209, 8,147,201, 4,149, 74,133,132, +132, 4,232,116, 58,152, 76, 38,132,135,135,227,243,207, 63,215,126,240,193, 7,130, 13, 27, 54, 20,169, 84,170,161,181,208,126, +176,123,247,110,145, 84, 42,117,209,104, 52,184,127,255, 62, 90,182,108,137,178,178, 50,168,213,106,148,151,151,195, 96, 48, 64, +169, 84,186, 83, 20,165,175,133,235, 51, 91,145, 53,126,252,248,155, 60, 30,175,229,148, 41, 83,144,147,147, 99, 45,243, 99,199, +142,133,159,159,159,181, 44,153,235,100,135, 42,102, 54,155, 13, 62,159, 15, 46,151, 91, 90,175, 94, 61, 16, 4, 33,120,244,232, + 81, 93,134,226, 36, 0,148, 28, 14,135,103, 43,176,248,124, 62,146,146,146,102,243,120,188,234,172, 89,213,149, 75,198,145,253, +127, 26, 4, 65,124,203,229,114,249,158,158,158, 92,155, 14, 39,215,213,213, 21,190,190,190,171, 1,244,178,243,190,155,123,122, +122, 90,235,247,216,216, 88,100,103,103,239, 83, 40, 20,239, 21, 21, 21,129, 36,201,237, 36, 73,190, 99,233,164,202,229,114, 4, + 7, 7, 55,175,142,175, 93, 11,255, 9, 32,152, 39, 44, 90,149, 58,104,144, 72, 36,120,248,240, 33,212,106, 53,147,145,145, 65, + 76,156, 56,145,208,235,245, 63, 38, 39, 39, 95, 64,197,106,251,106,181,200, 75, 2,199,231,104, 89, 44, 90,246, 54, 0, 4, 65, +212,218,155, 48, 26,141,174,209,209,209, 85, 77,248, 34,170, 18, 90,230,225,164, 58,189,232, 28, 14, 71, 92, 87,177, 85, 25, 7, +247,252,234,183,236,243, 89,159,123, 6,212,111,248,241,199,159,177,223,124,243,205,139,219,182,109,163, 60,155,244,234,118,242, +232, 79,126,223,125, 56,243,240, 31,127,252, 1, 84, 76,140,182, 23,103,227,227,227,253,103, 76,157,140,207, 63,250,224,136, 36, +220,155,231, 74,120,138, 4, 58,245, 99, 87, 48, 26,126,163,200, 62,123, 15, 30,204, 7,144, 92, 19,137, 80, 40, 12, 73, 77, 77, + 13,183, 93, 72,160,215,235, 33, 20, 10,113,242,228, 73, 31, 23, 23, 23, 31, 0,208,104, 52,136,137,137,177,215, 98, 18,146,158, +158, 30, 46, 22,139, 81, 94, 94, 14,157, 78, 7,163,209, 8,154,166, 65, 16, 4, 56, 28, 14,120, 60, 30, 68, 34,145,163, 43,251, +174, 1,120,183,119,239,222,191, 28, 62,124, 24,209,209,209,144,203,229, 72, 75, 75,179,136, 44,135,230,104, 89,172, 68,182,243, +177,216,108, 54,126, 14, 11,195,216,188, 60,171,128,249,214,205, 13,159,211,117,139,166, 17, 19, 19,195,156, 61,123, 22, 71,142, + 28,193, 91,111,189, 69,236,223,191,223, 64, 81, 20, 55, 47, 47,239,102, 94, 94,158, 93, 28, 52, 77, 91,211,106,169,183,109, 5, +150,163, 66,203,100, 50,137,121, 60, 30,180, 90, 45, 44,150, 7,219,173, 65,131, 6,144,201,100,108,165, 82,201,206,203,203, 19, + 46, 92,184,112,202,233,211,167,165,101,101,101, 67,254,201, 90,104,221,186,117, 33, 99,199,142,205, 98,179,217, 76,207,158, 61, +135, 61,122,244,232,109,169, 84,122,226,212,169, 83, 95, 3,136,112,148,207,219,219,251, 10,155,205, 14, 82, 42,149,220, 93,187, +118, 25,203,202,202,184, 62, 62, 62,133,150,186,195,146,215, 70,163,209,174,149,203,222,222,222, 87,138,139,139,185,223,127,255, +189,177,164,164,132,235,231,231, 87,104,225, 41, 45, 45,229,238,218,181,203,168, 84, 42,185,110,110,110, 87, 20, 10, 69,173,124, +197,197,197, 67,135, 15, 31,158,120,226,196, 9,111, 22,139,133, 71,143, 30,161,164,164, 4,238,238,238,216,190,125, 59, 66, 66, + 66,176,123,247,110,153, 76, 38, 27,243,213, 87, 95,205, 53,139,172,218,230,104,117,138,139,139, 11, 41, 45, 45,133,187,187, 59, +212,106, 53,174, 92,185,130,168,168, 40,228,229,229,129, 36, 73,184,187,187, 99,237,218,181,229, 4, 65,200,106, 34,114,113,113, +121,123,220,184,113,238, 0, 48,110,220, 56,247,113,227,198, 85,217,192,181,109,219, 22,171, 87,175,174, 44,180, 28,233, 24, 88, +173, 78, 54,226, 72,219,166, 77, 27,156, 62,125,122,166,131,226, 72,111, 17,109,149,173, 89,124, 62,223,225,197, 52, 52, 77,115, + 81, 49,165,129,176,103,255, 95,128,206, 46, 46, 46,220,202, 7,203,203,203,185, 82,169,180,163, 3,194,215,203,197,165,194,224, + 20, 18, 18, 2,133, 66, 65,233,245,250,193, 63,253,244,147, 17, 0, 90,180,104, 49,152,162, 40,173,201,100, 98,241,120, 60,168, +213,106,248,250,250,122,213, 96, 27,253,228,192,142,133,254,149,231,104, 73,165, 82,180,104,209, 2, 58,157, 14,249,249,249, 72, + 72, 72, 48, 82, 20,245,203,186,117,235,104, 31, 31,159, 81,253,251,247,103, 37, 39, 39,191, 15, 96,122,117, 90,228, 37,179,102, +109,172, 86,104,153, 21,228,105, 0, 93, 42,223,100,101,241, 83,147,208,170,109,232,144,199,227,149,102,101,101,137,108, 27, 21, +147,201,132,128,128, 0,154, 97, 24,162, 42,161,245, 44,166, 96, 14,135, 35,254,244,211, 79, 75,215,173, 91, 55,244,225,195,135, +243,236,249,205,174,247, 35,177,173,146,200, 90,191,108,254,234,239,151, 45,244,188,119,228, 71,108, 90,181,130,162, 40, 36, 55, +109,218,180,163, 74,165, 98,187,137,140, 40, 46,197, 97,179,200,178, 87, 20,146, 0,182, 92,186,116, 41,185, 87,175, 94,231,182, +252,182,215, 51,239,254,253, 11,124,101,113,190,164, 81, 56,155, 27, 24,242, 78,153, 86,203, 29, 60,120,176, 15,128,254,181, 85, + 98,165,165,165, 40, 40, 40,168, 44,192,112,231,206,157,167,174,181, 43,113, 36, 9,138,162,176,103,207, 30, 8,133, 66,136, 68, +162, 39, 54,139,200,170,227, 66,133,116, 0,232,217,179, 39,100, 50, 25, 92, 93, 93,237, 78, 87,101,241,194, 48, 12,244,122, 61, +244,122, 61, 12, 6, 3, 5,128,195,102,179, 49, 58, 39,199,106,229,113, 68,192, 84, 70,211,166, 77,153,243,231,207,227,220,185, +115, 80,171,213,248,254,251,239, 33,149, 74, 95, 5,240,153,163, 92, 54,147,244, 41,165, 82,201, 81, 42,149, 86,235, 32,135,195, +177, 90, 15,236,180,228,113,217,108,182,181, 55,106,217,108,173, 90, 44, 22, 11,126,126,126,240,247,247,199,250,245,235,185,245, +235,215,239,243, 79,214, 64,203,151, 47,111,244,237,183,223,110,222,182,109,219,225,161, 67,135,238, 76, 73, 73, 25,233,230,230, +118,243,228,201,147, 11,249,124, 62, 93,199,242, 29,148,151,151,231,107,123,136,166,105,161,201,100,178, 10,219,242,242,114,187, + 59, 24, 28, 14, 39, 40, 53, 53, 85, 8, 0, 11, 23, 46,228, 0, 16, 90, 38,131, 91, 56,203,203,203, 57, 81, 81, 81, 65,246,190, +235,137,137,137, 29,187,119,239,126,254,216,177, 99, 30, 33, 33, 33,200,205,205, 69,110,110, 46, 26, 53,106,132,197,139, 23,171, +149, 74,101,123, 0,233, 42,149,106,191,157,156, 1, 30, 30, 30,156,172,172, 44,152, 76, 38, 52,111,222, 28,107,215,174,197,224, +193,131, 17, 19, 19, 3,165, 82,137,212,212, 84,108,221,186,213,131,203,229,214, 88,119,104, 52,154,253, 27, 55,110, 12,174,108, +209, 26, 54,108,152,168,176,176,208,250, 78,206,159, 63,255,137, 33, 68, 71,234,100,243,208, 86,181, 91, 93, 96, 50,153, 36, 2, +129, 64,201,231,243,121,150,249, 89, 9, 9, 9, 14, 91,179, 42,117, 0, 29,217,255,199, 96, 17,173, 85,180,173,240,247,247,183, +155,135,207,231, 19,150,186,209,100, 50, 65,161, 80, 80, 82,169,212, 58,188,127,245,234, 85, 42, 52, 52,148, 98,177, 88, 44, 30, +143, 7,130, 32, 32, 20, 10,171,173,240, 25,138,153,255,230,224,207,158, 88,117, 56,237, 83,192, 96, 48,224,234,213,171, 48, 24, + 12, 72, 72, 72, 48,126,245,213, 87,121,165,165,165,211, 0,176,143, 30, 61, 58,124,230,204,153, 44, 95, 95,223,238, 69, 69, 69, +168, 77,139,188, 68, 98,235, 41, 43,151,165, 21, 58,221,167, 79, 31,194,188,180,146,176, 8, 39, 71,132,150,185,240,213,218,242, + 18, 4,129,252,252,124,235,190,175,175,175,195,255,101, 47,188,188,188,212,109,219,182, 21, 23, 23, 23,239, 95,190,124,121,157, + 44, 89,235,151,205, 95,189,100,193, 23,158,178,219, 23,145,147,151, 15, 89,145, 49,249,236,205,135,251, 0,236, 3, 0,108,104, +114,154,152,144,182,198, 94,206, 72,111,151, 88, 14,151,189,239,181, 94,125,130, 7,141,155, 78, 78,154, 52,169,195,240,225,195, + 21, 67,135, 14,157,234,234,234, 26, 97, 48, 24,228,123, 15, 29,202, 28, 52,104, 80,125,138,162,134,163, 22,159, 35, 26,141,230, + 81,151, 46, 93,108,243, 83,114,252,248,113,191,204,204, 76, 76,158, 60,249,113,110,110,110,169,237,181,246,164,209, 96, 48, 60, +138,141,141,173,118,184,208, 50,164, 8, 0,101,101,101,143, 28,200,210, 33, 48, 79,124, 47, 41, 41,193,157, 59,119,192,102,179, +209,166, 77, 27,156, 61,123, 22, 29, 58,116,184,234,136, 85, 75,171,213, 34, 36, 36, 4, 90,173, 22,106,181,186, 28, 0,127,123, +253,250, 0,128,247, 75, 74,112,229,171,175,112,113,201, 18,216,190,207,246,162, 89,179,102,204,197,139, 23,113,243,230, 77,232, +116, 58,140, 25, 51, 6, 0, 8,243,187,235,136,203,140, 48, 22,139,213,179, 87,175, 94, 1, 0,160, 86,171,137, 75,151, 46, 65, + 32, 16, 88,203,194,193,131, 7,145,155,155, 11,130, 32,224,225,225, 17, 36,151,203,235, 3,120, 88,131,217,159,120,248,240, 33, +150, 46, 93, 10,154,166, 49,115,230, 76,132,135,135, 91, 5,214,163, 71,143,176,112,225, 66, 80, 20,133, 47,190,248, 2,141, 26, + 53,130,209,104, 20,160,142, 46, 52,158, 7,102,204,152,113,111,223,190,125,135,179,179,179,223, 88,182,108, 89,103,130, 32,232, +143, 63,254,120,169, 68, 34,161,158,133, 87,174, 40,195,157,187,143,172, 66,168,242,230,227,237,233, 48, 95,198,253,108,235,239, + 41,202,150,143,130,151,167,135,163, 73, 44, 55, 26,141,234,119,222,121,199,125,207,158, 61, 68,163, 70,141,240,224,193, 3,139, +101,168, 28,142,187,116,200,149,201,100,225, 44, 22,139,123,247,238, 93,132,134,134, 34, 46, 46, 14,139, 22, 45, 66,113,113, 49, + 76, 38, 19,124,125,125,105,163,209,120,213, 96, 48,156,169,133,107,254,248,241,227,185, 0, 38,152, 45, 91, 77,167, 77,155, 70, +175, 88,177, 2, 87,175, 94,181, 90,176,108, 39,195, 59, 58,116,104,107,117,178,221, 18, 18, 18,102,242,120, 60, 6, 64, 18, 28, +119,244,172,175,108,209,170,139, 53,235, 69,225, 69,174,100,148, 74,165, 9, 98,177,184,143, 92, 46,127,194,170,213,190,125,123, +131,159,159, 95,162,189, 60,174,174,174,114, 22,139,229, 5, 0,185,185,185, 16,137, 68,220,251,247,239, 47, 65,133,243,108,212, +175, 95,127,137, 76, 38,227,214, 55,215,167,254,254,254,208,235,245,213, 78, 99,185,112,173,240, 71, 0, 63, 90,246, 61, 61, 61, +243, 21, 10,133,203,138, 21, 43, 84, 75,150, 44,209, 80, 20,165, 3,112,178,180,180,212,234, 71,171,160,160, 64,193,225,112, 60, +221,221,221, 3, 45, 66,171, 42, 45,242,146,161,122,139,150, 89, 73, 50,149, 5, 17, 65, 16, 79, 77, 80,175, 69,104,213, 42,178, + 40,138,122,194,202, 96,153,240, 94,213,127,153, 27,245, 58, 13, 29,154, 69,150, 96,239,222,189,219,151, 47, 95,158,100,239,239, +108,231,104,109,248,122,193, 50,139,200,186,113,238, 24,246,167, 41,138,103, 46, 89,249,109, 93,159, 64, 19,111, 97, 51, 63, 63, +175,211, 95, 45,158, 47,185,119,100, 43,118,110,248,134,185,113,249,114,235,203,151, 47,191, 55,121,242,228,122,230, 23, 75, 6, +224, 58,128, 65,176, 99,149, 78,110,110,110,143, 74,141,112, 58,151,203,245, 19, 10,133,200,205,205, 85,101,100,100, 56, 60, 36, + 83, 92, 92,220,227, 5,188,128,108,139,200, 42, 46, 46, 70,106,106, 42,186,118,237, 10, 0, 56,123,246, 44,218,183,111,143,228, +228,100,180,108,217,242, 42,128, 86,168,197, 81,171,209,104, 44,109,210,164,137,213,186,165, 80, 40,104, 0, 24,151,159,143,141, + 82, 41,216,108, 54, 46, 46, 89,130, 57, 70, 35, 22, 57, 40,224, 99, 99, 99,153, 75,151, 46, 33, 51, 51, 19, 38,147, 9,125,251, +246, 69, 29, 11,125, 76,100,100,228,241,147, 39, 79,250,184,186,186, 66,173, 86, 67,165, 82, 97,196,136, 17, 24, 60,120, 48,116, + 58, 29,118,237,218,133, 3, 7, 14, 64, 44, 22, 67,173, 86, 67,173, 86,123,244,238,221,251,124,122,122,122, 39, 0,119,171, 17, + 90, 76,143, 30, 61,144,152,152, 8, 22,139,133,214,173, 91,163,164,228,175,197, 64,126,126,126, 85,157, 99,253,147, 66,139,205, +102, 51, 9, 9, 9,203, 58,119,238,140,236,236,236, 55, 90,182,108,249,253,200,145, 35,115,159,149,215,195, 77,140,216,168, 48, +232,116, 58,232,116, 58, 4, 4, 4,160,172,172, 12,247,238,221,131, 78,167,131,159,175,187,195,124, 45, 98, 26, 89,249,124,125, +125,161, 86,171,241,240,225, 67,232,245,122,120,123, 59, 36,180,130,123,244,232,113,234,151, 95,126,241,218,186,117,171,190, 75, +151, 46,188,239,191,255,158,144, 72, 36,176,105, 88, 28, 69,194,217,179,103, 67,186,119,239,222,248,246,237,219, 72, 72, 72,128, + 94,175, 71,139, 22, 45,144,145,145,129,182,109,219, 66,165, 82, 37, 93,190,124,249,128, 61,134, 97, 0,115,199,143, 31, 15,139, +216, 74, 76, 76, 68,126,126, 62,196, 98,241, 83, 66,203, 50,247,209,188,106, 60,192,158,196, 90, 4,145,141,229,105,142,187,187, +187, 1,192,183,117,180, 62, 1, 0,178,179,179,249, 77,155, 54,213, 9, 4, 2,158, 89,180,173,124, 22,190,231,137,231,176,146, +177, 90,248,251,251, 79,243,246,246,238,222,160, 65, 3, 20, 22, 22,114,121, 60, 30,218,183,111,111,104,213,170,149,193,223,223, +255,125,123,121,248,124,254,109, 46,151,219,169,162, 51, 65, 33, 43, 43, 11, 66,200, 69,216, 0, 0, 32, 0, 73, 68, 65, 84, 12, +195,204,140,137,137,249,160,172,172, 12, 37, 37, 37, 60,137, 68, 98,237, 84, 55,110,220, 24, 58,157,238,182, 3,150,183,249,161, +161,161,115,185, 92,238,162,226,226,226,170,220, 66,240,220,221,221, 37, 92, 46, 23, 6,131,225, 9,177, 89, 89,139,188,236, 34, +235, 9,161,101,163, 34,159, 16, 58,142, 88,180,236,177, 26, 88, 38,216,219,238, 91, 68, 93,229,255,170,171, 15, 45, 55, 55, 55, +157, 69,100, 45, 90,180, 40,169, 46, 28,187,127,249, 73,234, 70,151, 7,231, 37,253,129,244,155,201,216,151, 90, 90, 60,115,201, +202,169,111,246, 31, 82, 88, 89,152,217,131,112, 31, 97,140,159,175,215,233,175,151, 47,145,200,110, 95, 68,126, 65, 1,254, 72, +186,156,108, 0, 82, 1,204,124,158,166,101,160, 98,232,144,197, 98,253,155, 94, 88,235,100,248,252,252,124,139,200,106, 1, 0, + 29, 58,116,184,106, 22, 89,176,215,162, 85, 90, 90, 90, 57,100, 77,119, 0,222,150,251,103,179,217,104, 63,119,174,195, 34, 11, + 0,147,156,156, 12,153, 76,102,233, 41,214, 85,100,193,223,223,255,163,147, 39, 79,250,108,217,178, 69,185,109,219,182, 18,154, +166, 57,177,177,177, 65,175,188,242, 10,177,125,251,118, 0,192,160, 65,131, 48,115,230, 76,220,186,117, 11, 34,145, 8, 29, 58, +116,160,230,205,155,231, 59,109,218,180,247, 11, 11, 11,167, 86,217, 58,210, 52, 87, 32, 16,156, 0,240,234,237,219,183, 1,224, + 60, 42, 66, 56, 89,172, 8,213,158,179,167,241, 45, 43, 43,227,136,197,226, 42, 93, 67,112, 43,122, 67,142, 90, 32,172,156,231, +206,157, 91,250,245,215, 95,239,251,240,195, 15,239, 62, 35,103,149, 22,173, 62,125,250, 64,163, 51, 32,167, 80, 1,138, 50, 65, + 99, 40,114,152,207,214,162,213,167, 79, 31,148,107,245,200,202,151,193,100,162, 80,166,177,187, 45, 23,190,246,218,107, 71,119, +236,216,225,127,225,194, 5, 80, 20, 69,103,100,100, 60,124,231,157,119, 36, 31,127,252,177,215, 51, 44, 50, 90, 53,100,200,144, + 1,231,206,157,147, 53,110,220,216, 51, 41, 41, 9, 69, 69, 69, 48,153, 76,120,245,213, 87,193,227,241,178,150, 44, 89,194, 5, +176,202,222,103, 99, 22, 91,134,203,151, 47,143,189,120,241,162,167,167,167, 39,143,142,140, 68,254,177, 99,216,179,103,207, 83, + 63,216,176, 97, 3, 96,167, 23,126,139,197,233,210,165, 75,207, 69, 96, 61,209, 82,243,120,117, 30,126,124, 89,113,233,210,165, +220, 73,147, 38, 69, 73, 36,146,111, 59,118,236,216,213,203,203,139,244,240,240, 72, 8, 12, 12,252, 32, 54, 54,214,238,209, 5, + 14,135, 51, 82, 36, 18,221, 51,153, 76, 44,149, 74, 5,181, 90, 93, 81, 73,155, 76, 60,146, 36, 81,191,126,125,107, 91,210,186, +117,107,248,251,251, 83,105,105,105, 35,237,229,127,252,248,241, 19,171, 16,171,192,248,246,237,219,179,117, 58, 29, 50, 51, 51, +207,218,158,168, 74,139,188, 36, 24, 87,163,248,178,220,148,237,205, 5, 6, 6,102, 27,141, 70, 38, 21, 96,174, 95,191,206,140, + 27, 55,174,198, 77,171,213, 50,190,190,190,249, 85, 52,126,176,229,212,233,116, 79,252, 78,167,211, 49,126,126,126,148, 70,163, +121,138, 83,163,209, 48, 65, 65, 65,185, 53,113, 86,129, 17,215,174, 93, 91, 55,103,206,156, 56, 7, 50,200,202,201,172,143,100, +182,110,221,250, 63,134, 97, 58,119,140, 10,185, 57, 48,214,143,105, 31,238,155,119, 96,247, 47,131, 25,134,233, 92,121,179, 56, + 56,173,137, 51,210, 79,212,164, 91,116, 61,249,141, 35,191, 50, 39, 87, 76, 97,190,238, 27,206,180, 12, 18,151, 70,122,187, 56, + 26, 35,166,214,104,233,209,209,209,233, 52, 77, 51,122,189,158,137,142,142,206,120, 30,156,117, 64, 77,156,205, 81, 49,151,109, + 72, 21,199,154, 63, 67, 58,111, 48, 12,195,200,100, 50, 70,165, 82, 49, 58,157,142,161, 40,138,177, 5,128, 27,118,112, 50, 6, +131,129,145,203,229, 12,236,159,115, 87, 37,167, 84, 42,125,120,255,254,125,166, 97,195,134,217,102,115,252, 52,181, 90,205, 84, +134, 90,173,102,186,118,237,202,100,100,100, 48,161,161,161,218,140,140, 12, 70, 42,149,222,169, 37,157, 13,130,131,131, 79,120, +123,123, 39, 0, 8,119,224, 92,141,249,185,107,215,174, 48,134, 97,198, 48, 12, 51,174,154,109, 12,195, 48,145,255, 52,167, 57, +127, 11, 25,134, 97,202,203,203, 25,153, 76,198,228,229,229, 49,229,229,229,140, 74,165, 98,174, 93,187,198, 92,184,112,129,185, +121,243, 38,227,233,233, 89,104, 15,167,133, 79,175,215, 51, 74,165,146, 41, 42, 42, 98, 52, 26, 13,163, 86,171,153,148,148, 20, +230,202,149, 43,204,237,219,183,171,226,123,138,211,203,203,107, 67, 65, 65,129,234,252,249,243,229,235,215,175, 47,247,247,247, +191, 13, 32, 4, 64,132,135,135, 71,193,148, 41, 83, 24, 87, 87,215, 71,117, 44, 71, 81, 28, 14,231,218,178,101,203, 46,197,199, +199, 23, 30, 56,112, 64,191,121,243,230,156,201,147, 39,159, 97,179,217,215, 0, 68,213,177, 28,249,186,187,187,159, 79, 74, 74, + 50,201,229,114,166,180,180,148, 81, 42,149,140, 90,173,102, 52, 26, 13,163,215,235, 25,163,209,200,156, 57,115,134,241,243,243, +179, 29,150,252,164,134,142,245,116,134, 97, 62, 98, 24,134,253,188,235, 58, 27,238,142,207,139,243,121,212,117, 36, 73, 26,204, +117, 71,155,138,221,154,247,255,169,116,118,235,214,237,139,193,131, 7, 51, 61,123,246,100, 90,180,104,241,212,214,178,101, 75, +102,226,196,137, 76,124,124, 60,243,213, 87, 95,125,241, 28,210,201, 70,197,162,151,197,221,186,117, 51, 38, 38, 38, 50,131, 6, + 13, 98, 0,244,168, 73,139,252, 23, 4,151,197,189, 3, 97,251, 9, 0, 6,131, 33, 59, 61, 61, 93,218,216,100, 98, 1,192,154, + 53,107,158,178, 76,217, 34, 49, 49,209, 68, 16,196,189,154,254,221, 96, 48,100,159, 60,121,210,111,245,234,213, 28, 27, 19, 48, + 76, 38, 19,157,151,151, 71,126,255,253,247, 79, 92,127,250,244,105,147,201,100,202,114,240, 38,183, 54,111,222,124,235,243,200, +173, 51,183, 50, 63, 56,250,199,239,222,109,226, 58,150, 74, 60, 61,171,236,133,237,122, 63, 18,196,132,154,173, 90, 4,155, 92, +180,108,241,124,119,203, 16,228,111, 87, 11, 74,181, 58,170,107, 90,177,230,198,243,126,194, 42,149, 42,211,178, 18, 80,173, 86, +103,253, 11, 95,194,107,168,240,113,101,170,116,172, 21,158,113,210, 41, 77,211,112,115,115,179, 90, 67,235, 96, 17,101, 44, 22, + 86,203,163,123,150,244, 48, 12,115, 46, 37, 37, 37,116,196,136, 17,226,109,219,182,221,167, 40,138, 51,122,244,104,131,191,191, + 63,247,236,217,179, 70, 0, 68,231,206,157,217, 5, 5, 5, 76,110,110,174,236,173,183,222, 42, 27, 59,118,172,215,245,235,215, +121, 52, 77,215,230,180,240, 65,118,118,118,183, 58,156,171, 17, 3, 7, 14,188,143,103, 15, 99,243,194, 57, 45,144,149, 42,113, + 63, 51,215,236,193,156, 6,245,168,208, 58,175,202,104, 52, 65,166, 44,113,216,162,117,239, 97,174, 57,196, 24, 5,138,202, 51, +243, 85, 76,136,103,228,229,181,183, 38,108,118,135,121,243,230,245, 34, 73,146,188,120,241,162,110,249,242,229,217,143, 31, 63, +238, 11, 32, 11, 0,228,114,121,151,173, 91,183,254,108,135, 43,135,234,144,106, 52, 26,219,126,242,201, 39, 83, 1,116, 0, 80, +207,204,125,214,108,201,170,171, 7,243,162,210,210,210,215,123,245,234,117,140,197, 98,213,183, 41, 71,222, 0,138, 45,229,130, + 97, 24,223,194,194,194, 55,236, 33, 36, 8, 98,229,139,170, 72, 94, 36,247, 51,214, 67, 47,197, 74,198, 19, 39, 78,124,217,183, +111, 95,118, 72, 72,200,236,144,144, 16, 82, 46,151, 67,165, 82,129, 36, 73,248,251,251, 35, 58, 58, 26,254,254,254,244,237,219, +183, 23,207,154, 53,171, 86,159,124, 77,154, 52, 9, 51, 26,141, 13, 73,146, 12, 3, 16,198, 48, 76, 24, 65, 16, 97, 0, 60, 1, + 64, 34,145, 72, 66, 67, 67,217,109,218,180, 65, 92, 92, 28, 78,159, 62,141,221,187,119,255, 8,224,168,173, 53,171,178, 22,249, + 55, 32,181, 57,152,168,107, 32,110,181, 68,103,130,198,105,134, 68,151,232,100,171,159,189,202, 34,171,250,160,210, 85,152,254, +122,188,250,234,171,214, 2,103, 71,163,146, 89, 91,225,123,252,248,113,143,145, 35, 71, 62,193, 73, 81,148,174,164,164,100, 82, +187,118,237,214,178, 88, 44,126,165, 23,246, 81, 81, 81,209,223, 26,171,175,178, 31,173, 30,189,222, 46,126, 86, 78, 87, 46,217, + 48,253,208, 15, 40, 44, 42,198,111, 87, 11,228,101,122,170, 75, 70,113,121,202,139, 72,255,163, 71,143,122,190, 4,138,191, 42, +209,250,172,193,179, 31,219,225,144,180,182, 24,117,132,217,157,200,115, 41,228, 5, 5, 5, 43,230,206,157,251,250,226,197,139, +125, 14, 31, 62, 44,177,116, 80,250,245,235, 87,148,146,146,210, 17, 0, 95,171,213, 30, 95,188,120,177,207,252,249,243,189, 0, +120, 1, 64,239,222,189, 11, 11, 11, 11, 87,195,137, 26, 97, 52, 26,115,162,155, 52,182,118,252,108, 93, 58,216,126, 55,153, 76, + 57,142,240, 85,197, 99,187, 79, 81, 84,141,124, 44, 22,235,195,184,184, 56,214,135, 31,126, 88,120,248,240, 97, 75, 32, 93, 91, +133,150, 94,139, 83, 82,123,160, 3,176,220,188, 61, 79,168,101, 50, 89, 91, 7,127, 67, 57,223,198, 42, 59,148,142,236,255, 35, +216,191,127,255,103,131, 6, 13,218,234,233,233,249, 83, 88, 88, 88, 99, 63, 63, 63,137,139,139, 11,116, 58, 93,153, 94,175,191, +147,158,158, 62,244,179,207, 62,123, 96,151,133, 99,235, 86, 22, 0, 46, 77,211, 2,146, 36, 69, 0, 36, 4, 65,120, 88,132, 22, + 65, 16, 48, 24, 12,200,204,204,196,156, 57,115,168, 19, 39, 78,124, 5,224, 11, 7, 58,174,173, 0,248,216,212,227, 62, 0,244, +168,112, 96,251,152, 32,136,203, 47, 58,191, 8, 26,167,163,174,129, 72,109,142,170,218,137,154,131, 74, 87, 87,224, 30, 63,126, +220,246,121, 23,226,234, 56, 31, 63,126, 28,242,111, 41, 33,195,117,203,127,197,134,229, 79,196, 57,180,136,176,170,246,107,131, + 66, 99,154,188,234,232,173, 21, 58, 19, 67, 27, 76,244,168,140,199,229,169,206,122,232,185,227,181,231, 85,150,158, 99,154, 82, +210,210,210,218, 77,158, 60,249, 51,161, 80,216, 26, 0,202,203,203, 47,230,229,229, 45,128,121, 85, 97,109,231,157,168, 30,197, +197,197,175,252, 27,249,244,122,253, 7,237,218,181,251,142,162,168,175, 77, 38,211,217,255, 7,143, 66,235,124, 27, 95, 94,236, +220,185,243, 1,128,182, 0, 48, 96,192, 0, 22, 0,236,222,189,219, 97,241, 60, 98,196, 8,138, 97, 24,131,249,125, 80,163, 98, +117,161,220, 82,167,170,213,106,121, 94, 94,222,109,138,162,110, 3,248, 25,142,175,184,245, 33, 8, 34,158, 97,152, 62,102,225, + 22,207, 48, 76, 31,219, 99, 47,218,170, 85,203, 37,181, 79,134,119,162, 2,187, 83, 65, 84, 30, 10,172,109,191, 54,164, 23,170, + 19, 0,180,116,230,238,255, 75,220,207,203,203, 27,254, 12,231,157,120,249,144,165,215,235,251,254, 63,186, 95,133,243,145,255, + 71,218,191, 58, 8, 44, 11,110,223,190,253,194,166, 8,252,211,136,186,246,100, 7,188,242,190, 13,198, 85, 37,188,156, 66,203, + 9, 39,156,112,194,137,103, 65,169, 51, 11,156,248, 47,195, 50, 55,203,178, 95,205, 28,173,202,243,179,172,251, 4,170, 95, 57, +224, 72, 84,242,186,172,146, 56,238,228,116,114, 58, 57,157,156, 78,206,127,156,211, 29, 64, 40,128,101,181, 92, 87,121,117, 97, + 33,128, 98, 0, 70,103,126, 58, 57,159, 65, 63,216, 5,134, 97,122,215, 52,116, 72, 16,196,161, 23, 37,180,172,147,225,155, 99, + 94,244, 53,204,179,236,219, 43,180, 94, 52,186, 59, 57,157,156, 78, 78, 39,167,147,211,201,233,228,116,114, 62,163,208,234, 58, +107,214,172, 79, 81,225, 26,131,153, 53,107,214,167, 12,195,244,174, 56,197,244,126,145,255,125,171, 37, 58,167, 54, 7, 99,217, +110,181, 68,231,106, 46, 29,103,179, 89,225, 28, 58,116,194, 9, 39,156,112,194, 9, 39,254,237, 56,191,100,201,146,242, 37, 75, +150, 88, 38,190, 63, 6, 64,152, 45, 92,143, 95,228, 31,155,135, 9,237, 89, 40, 85,115, 8,158,127, 0, 1, 36,155, 59,140,195, +229,119, 5, 67, 71, 3, 0, 72,214, 45, 74,175, 61,101, 50, 25,126, 2,144, 87, 87,226, 72,160, 73, 35,119,151, 3, 58,138,226, +102,151,233, 7,164, 85,132, 57,112, 24, 3,128,246,124, 30,239, 79,190,187,187, 75, 85,231,117,165,165, 26,157, 94,255,250,110, +224,156,179, 12, 56,225,132, 19, 78, 56,241,146, 64,228,225,225,113,130, 36,201, 16,203, 1, 91,191,131,149,125, 16, 82, 20,149, + 47,147,201, 94, 71,197, 80,241,223,201,105,251,123, 61,234,216,150, 63,111, 56, 58,116,200, 6,158,240,194,250,183, 68,204,102, +113,248, 99,197,110,238,139,254, 55,242, 3,175,240,136,198, 68,112,112, 32,192, 0, 89,217, 57,126,247,238,102,116,219,185,109, +213, 12,165, 66, 54,199,168,211,253,224, 40,119, 19, 64, 84,207,149,127,246,135, 89,239,186,179, 97,194,144,133,191, 28, 33, 84, +134,224,219, 21,203, 77, 29, 18, 89,238, 94, 94, 71,151, 28, 63,238,226,209,172,217, 19,231, 24,134,169,136,175,119,227,134,203, +236,215, 95, 63, 58, 64, 38,235,225, 20, 91,255, 73,248, 75, 36,146,105, 28, 14,167,139,193, 96, 8,225,241,120,217, 20, 69, 37, +200,229,242,111, 1,228, 58,179,231,191,141,198,254,162,142,141,195, 66,126,201, 43, 40,188,170,212,234, 71,167,231,169,100,206, + 92,113, 24, 53,197,215,252,199, 98,111, 2,128,171,171,235, 21,146, 36,131,108, 69,128, 37,102,175,101,191,242, 39, 77,211, 15, +100, 50, 89,187, 26,104,195, 60, 61, 61,215, 2,104, 85,155,195,100,179,111,182,203, 50,153,108, 18,170, 95,173, 39,246,240,240, +248,146, 32,136,129, 36, 73,178,106,187, 39,154,166, 41,134, 97,118,201,229,242, 47, 0,148, 85,119,157,135,135,199,241,180,180, +180, 86,190,190,190,181, 90,105, 76, 38, 19,178,178,178,124, 90,183,110,125, 70, 38,147, 69,190, 72,206,191, 91,139,212, 21, 53, +172, 58,172,246, 69, 7,240, 68,124,161, 23,234,145,149, 43,112, 61,208,182, 83,143,174, 19,167,126, 40,186,150,114, 7,127,158, +190, 0,165, 90, 7, 22, 73,194, 93, 44, 68, 68, 68, 67, 98,229,198, 61,222, 63,174, 95,249,245,197,196, 99,189,181,106,197, 91, + 14,201,116, 33,123,206,204,119, 90,139,188, 60, 41,128,166,240, 81,175, 88,209,236,248,171,115, 80,110,250,212, 97,145,117,226, +132,176,168,176, 16,243, 3, 2,192, 54,153, 32, 32, 73, 8, 8, 2, 2,146,132, 72, 32, 64,207,205,155,177,224,240, 97,225,103, +111,188,225, 20, 91,255, 49,184,186,186,142, 12, 8, 8, 88,190,105,211, 38,175, 6, 13, 26, 64, 36, 18, 65, 38,147,121,167,167, +167, 55,159, 62,125,250,240,252,252,252,185, 74,165,114,131, 51,167,254,187,160,105, 12,219,178,104, 82, 96,254,163,187,129,227, + 23,255, 26, 65,120, 81, 93,238,148,104, 10,156, 57, 99, 55,154, 3,184,138,170,227,151,214,116,174, 90, 8, 4,130, 66,173, 86, +235, 91,211, 53, 60, 30,175, 72,175,215,251,213,198, 69,146,100, 80,110,110,174,175, 80, 40, 4, 69, 81,230,104, 0,180,181, 35, +109, 27,253,196,236,168, 22,145,145,145,134,154, 56,197, 98,241,154,162,162,162,238,150, 56,129, 54,130,170, 74,228,230,230,118, +143,138,138, 90, 83, 86, 86,246,122, 53,226,229,203,169, 83,167, 78,139,137,137,177, 88,129,204, 81, 16, 42, 62,139,139,139, 49, +121,242,100,235,127,208, 52,141, 99,199,142, 77, 29, 57,114, 36,228,114,249,244, 26,238, 61,196,215,215,151, 48, 7, 20,175, 22, +243,230,205,195,188,121,243,176,106,213, 42,130,195,225,184,215,146,159,207,133,243,239,210, 34,117,177, 96,213,226, 25,254, 16, +158,156,155,117,232, 41,161,245,119,128,197,225,143,106,213,174,123,151,201,211,102,138,126,253,253, 36,210,111,223, 64,218,217, + 29, 79, 92,243,202,235, 35, 81, 80, 92,134,145, 19, 63,114, 37, 88,236, 46,137,199,247,143, 50,234, 52, 91,236,180,102,249,133, +240,121, 83,218,180,142,230,228,186,164,195,223,195, 5, 29, 90, 54,226, 4, 31,189, 57, 69, 13,211,119,183, 43, 86,201, 56, 36, +178, 54,189,251, 46, 58, 26,141,240,101,177,192, 34, 8,176, 0,144, 4, 1,173, 78,135,203,195,134,161,245,246,237,248,226,224, + 65,225,151,111,190,233,144,216, 18,137, 68,215, 8,130,240, 80,169, 84,189, 81, 17, 88,250,101, 64,148,171,171,235, 33,134, 97, +228,106,181,186,249,191, 40, 93, 82, 84,140,209, 87,238, 29,115, 81,177,162,202,161,200,194,124, 62,127,236,128, 1, 3, 86,174, + 94,189, 90, 88, 88, 88,136,188,188, 60, 80, 20, 5,129, 64,128,240,240,112,226,248,241,227, 94, 51,103,206, 92,113,232,208, 33, +126, 89, 89,217,119,142,116,108, 56, 28,206, 70, 79, 79,207, 55,252,252,252, 68, 69, 69, 69,229,165,165,165,199,116, 58,221, 88, +212, 61,108, 10,201,225,112,134,134,134,134,190, 29, 16, 16,224,151,155,155, 91,156,147,147,115, 64,167,211,253,136, 58, 6,106, +182,201,211,102, 48,123,171, 7,144, 31, 26, 26,122, 43, 51, 51,179,232, 57,114,230,133,134,134,166,214,129, 83, 4, 96, 39,128, +128, 90,174,203, 3, 48, 8, 14, 90,179,173, 25,203,208,127, 44,252,118,211,232,249, 35, 58, 16, 91,166,119, 15,159,176,234,248, + 5,146,203,116,186,157,175,205,118,106, 40,251, 68,150, 57,164, 85,101, 65, 85,211,185, 26,161,211,233,124, 12, 6, 3, 56,213, + 4,139, 87,171,213, 16,139,197, 62,246, 38,210,197,197, 5, 59,118,236, 0,135,195, 1,135,195,129, 92, 46, 71, 80, 80,144,117, +159,203,229, 90,191,215,171, 87,175, 86, 62,138,162, 90,179, 88, 44,168, 84, 42, 80, 20,101,221, 74, 75, 75,193, 48, 12,248,124, + 62, 40,170, 34,156,147,205,249,214,213,241, 17, 4, 49, 48, 32, 32, 0,191,254,250, 43,244,122,253, 83,231, 37, 18, 9, 82, 82, +254, 10, 50,194, 98,177, 16, 23, 23, 71, 18, 4, 49, 16,192,244, 26,120, 25, 0, 24, 55,110, 28, 88, 44, 22, 88, 44, 22, 72,146, +180,126,183,108, 20, 69, 97,222,188,121,168, 20,154,236,111,227,252,183,161, 22,207,240,249,168,102,142, 22,249,130,211,101,187, +196, 51, 64, 40,146, 44,157,244,193, 71,174,135,206,220, 68, 86,118,214, 83, 34, 11, 0,174,252,249, 35,242,243,114,113, 53, 45, + 7, 67, 71,189,239, 42,145,184, 47,173, 84,161, 86,187,108,212, 77,204,253,106,214,160, 14, 2,149, 49, 15,101, 30, 0, 43,140, + 7,142, 80,141,153,125,154,241, 37, 98,238,114,123,210,201,231,241,254, 92,114,252,184, 85,100,181,215,233,192,167, 40,152, 40, +202, 42,178,244, 38, 19, 52,122, 61,164, 42, 21,238,141, 28, 9,198,104,196,220,125,251,132,124, 30,239, 79,123,210, 9, 0, 92, + 46, 87,122,224,192,129,122, 77,155, 54, 61, 13,251,157,153, 30,127,193,207,168, 38,180,140,141,141, 77,216,190,125,123, 61, 46, +151, 43,125, 30,156, 2,129,160,191, 72, 36,122, 44, 16, 8,250,215, 49,157, 36,128,133,163, 71,143, 78,110,216,176,225, 73,179, +176,178,138,154,134, 13, 27, 30, 31, 61,122,244, 53, 0,243,170,121,215,171,226, 12, 12, 8, 8, 88,180,122,245,106, 97, 70, 70, + 6,114,115,115, 97, 52, 26, 49,100,200, 16, 80, 20, 5,141, 70, 3,189, 94,143,101,203,150,137,188,188,188,230,160, 34, 80,176, + 61,247,206,117,115,115,203,216,182,109,219,128,135, 15, 31,186,158, 60,121,146, 72, 73, 73, 17,173, 88,177,162,175,151,151, 87, + 58, 0,126, 29,242,147,148, 74,165, 91,246,239,223, 63, 41, 37, 37, 37,104,239,222,189,156,139, 23, 47, 74,215,175, 95, 63, 70, + 42,149,110, 7,192,170,227, 51,106, 46, 20, 10,187,125,252,241,199,244,249,243,231,115,207,159, 63,159,187,114,229, 74,116,236, +216,177,253,252,249,243, 91,212,145,179,165, 88, 44,126,245,227,143, 63,166, 19, 19, 19,243,146,146,146,114, 86,172, 88, 65,190, +250,234,171, 29, 22, 45, 90,212,204, 65,206,157,231,207,159,239,156,157,157,221, 32, 39, 39,167,126, 78, 78, 78,104, 78, 78, 78, +104,110,110,110, 72,126,126,126,189,130,130,130,224,162,162,162,224,132,132,132, 14, 0,126,177,135,179,177,159,104,210,244, 33, +221,203,231,140,234,197,124,250,222,107,204,204, 33,157,153, 55, 58, 53,253,157,197,102, 19, 73,169, 89, 8,114, 3,126,156,220, + 42, 36,216, 91,148, 18,237,233, 26,241, 47, 43,155,255, 54, 78,182, 69, 72,201,100, 50, 28, 58,116, 8,102,235, 85,115, 91,145, +165, 84, 42,145,159,159,111, 57,199,182, 39,157, 18,137,228,196,166, 77,155, 24,173, 86, 11,133, 66,129,162,162, 34,100,103,103, +227,222,189,123, 40, 41, 41,193,157, 59,119, 32, 20, 10, 79,216,147, 78,130, 32, 64, 81,148, 85, 72, 29, 59,118, 12,163, 71,143, +134, 76, 38,179, 30, 99,179,217,214,239,150,223,212,198,105,177, 60, 81, 20,133,164,164, 36,140, 31, 63, 30, 43, 87,174,196, 47, +191,252,130,248,248,120,200,100, 50,171,216, 50,153, 76,181,114, 22, 23, 23,131,166,237,235, 51, 49, 12, 3,133, 66, 97,247,115, +183, 21, 64,108, 54,251, 41, 81,100,217, 28,121,151,158,145,243, 95, 11, 59, 60,195, 87,223,195,182,124, 49,155,234,186,188,168, + 68,146,108,238,208,129, 35,166,122,229, 20, 41,145, 91,168, 0,139,252,171,221,107,209,125, 4,216, 44, 18,151,142, 86, 24,174, + 72, 22, 11, 10,181, 14,165, 42, 3, 6,140,152,230,249,195,202,207,135,154, 12,218, 26,125,188,196, 0,225,209,174,174,239, 68, + 69,213, 35,111,243,211,208,226,141,179,160,104,128, 73,124, 19,205,229,190,172,200, 63,121,239,168,203, 12,139, 82,128,140, 26, +173, 25,238,238, 46, 30,205,154, 97,126, 64, 0, 58, 25,141,224, 50, 12, 94, 43, 44,196,141,105,211,160,219,179, 7, 36, 0,110, +255,254,232,250,237,183, 56, 19, 16, 0,127,141, 6,165, 51,102,192,231,200, 17,112, 37, 18, 23, 60,182,111,241, 3, 65, 16,232, +210,165, 11,142, 31, 63,238,213,179,103,207,163, 55,111,222,236,103, 50,153,206,212, 37,111,221,220,220,174,176,217,236,160,218, +174, 51,153, 76, 57, 10,133,194,225, 48, 35,108, 54,187, 83, 92, 92,220,190,189,123,247,122, 24, 12,134,231,210, 11,225,241,120, + 61,251,246,237,187,105,221,186,117,146, 49, 99,198,108,138,143,143, 47,215,235,245, 71, 28,121,165, 0, 44,220,176, 97,195,132, +113,227,198,185,143, 25, 51,134,185,119,239,158,173,245,202,167, 99,199,142, 13, 55,109,218,228,223,170, 85,171,169,227,199,143, +231, 2,152, 91,155,149,199,213,213,117,226,166, 77,155,188,139,139,139,161, 82,169,172,149,108, 78, 78, 14, 92, 92, 92, 64,146, + 36, 72,146, 4,135,195,193,210,165, 75,189, 38, 78,156, 56, 77, 38,147, 77,179,195, 74,182,113,237,218,181, 62,175,191,254, 58, +249,240,225, 67,144, 36, 9,129, 64,128,119,223,125,151,212,104, 52, 30,243,231,207,223,170, 86,171, 7, 59,146,135, 28, 14,103, +232,198,141, 27, 35,218,183,111,207, 78, 75, 75, 67,219,182,109,113,233,210, 37,244,239,223,159, 83, 86, 86, 86,127,230,204,153, +163,117, 58,157,163,126, 92,164, 66,161, 48,230,212,169, 83,217,193,193,193,214,138,165,126,253,250, 84,239,222,189,101,105,105, +105,141,207,159, 63, 95,210,174, 93, 59, 71, 2,150, 7, 10,133,194,200, 63,254,248, 35,127,254,252,249,221, 54,108,216,208, 23, + 0, 90,183,110,125, 96,193,130, 5, 39,101, 50, 89,244,153, 51,103,100,157, 58,117,202,177,147, 47, 64, 42,149, 82,147, 39, 79, +118,173,233,162,205,155, 55,151,162, 34,224,114, 3, 0, 53,198,107,107, 28,234, 63,103,249,180,129, 46,160, 12, 96,140, 26,192, + 80, 14, 24, 84,160,245,229, 32,184, 46,128, 81, 3, 31,190, 12, 59, 39, 54,150,124,242,235,253,219,212, 29,162,119, 90,113,217, + 17, 56, 81,101, 85, 3,160, 5, 65, 16, 87, 15, 29, 58,132,184,184, 56, 28, 58,116, 8,189,123,247,190,106, 43, 6, 82, 82, 82, +208,169, 83, 39,152, 45, 90,118,205,213, 82, 40, 20,179,230,205,155,151, 56,116,232, 80,225, 19,149, 1, 73,194,221,221, 29,189, +122,245,210,170,213,234, 89,246, 38,148,162, 40,176,217,108,228,228,228, 96,243,230,205, 88,188,120, 49,194,195,195, 97, 52, 26, +159, 18, 91,230,122,207,174,202,207,100, 50,225,242,229,203,248,105,251,118,204,157, 51, 7, 98,177, 24, 0, 96, 48, 24, 32,147, +203, 33, 16, 8,172, 98,172, 22,225,180,235,238,221,255,107,239,218,195,154,186,178,253,111,159,115,242,132, 64, 32, 16, 16, 4, +100,116,172,180, 87,171,131,232,197,199,248,168,212, 50, 90, 71,107,125,116, 20,116, 70,138,218,250,205,168,157,142, 95,191, 78, + 91, 95, 51, 78,123,117,208,218,218,150,145,106,107,181, 29,139,218, 58, 85,219,218, 14, 62,166,222,170, 80, 91,161,248,192, 7, +162, 16, 72, 8,132, 16, 66,158,231,220, 63,200,137, 1, 9, 36,112,162,216,203,250,190,243,145,199,225,151,181, 95,103,255,246, + 90,107,175,125,121,121, 92, 92, 92, 43,151, 33,255,215,245,204, 2,203,178,112, 56, 28,104,110,110, 70, 78, 78,142,131,227,184, +189,157,205, 63, 60, 41, 90,190,124, 57, 44,150,219, 6,245,161,174,152,228,196,196, 68, 12, 27, 54,204,253,158,162, 40,206, 87, +204,127,140, 30, 2,179,199,221, 73,171, 55, 2, 0,226,226,226,144,148,148,132,152,152, 24,175,152,129,230, 34, 93, 17, 63, 50, +195,123, 39, 90,119,227,164,108,145, 88, 54,113,192,192, 65,228, 70,149, 30, 12,195, 32, 88, 25,137,209, 51, 86,128,166, 41, 40, +194, 34, 65,156,230,219,140,152,162,193,208, 12,244, 70, 51, 18,251, 15,164,164, 50,249, 68, 83, 39, 68, 43, 84, 41,218,246,252, +220,209,178, 90,199, 77,200, 19,100,112,242,211,105,172, 4, 84,132, 17,207,165, 63, 32,207,254,244,135,109, 48,216, 31,241, 69, + 95,218,225, 64, 20, 77,195,198,113,248,126,249,114, 36,231,230,162,136, 39,134,185,185, 40,202,206,134, 74, 36,130,148,162,192, +217,237,119,248,244,125, 33, 90, 0, 80, 81, 81,129,252,252,124,213,236,217,179,247,159, 63,127,126,190,159,100,131,199,138,252, +246,219,111,163,250,247,239,239,245,158,171, 87,175, 34, 37, 37,197,111,247,148, 68, 34, 73,127,228,145, 71,246,228,231,231, 43, + 75, 74, 74, 16, 21, 21,213,109,162, 37,149, 74,199,165,165,165,237,121,239,189,247, 66,181, 90, 45,114,115,115, 67,167, 77,155, +182,187,176,176,112,134,197, 98,241,133,108,182, 34, 89,185,185,185,245,121,121,121,255, 64,107, 23, 97, 85, 94, 94,222,187, 35, + 70,140,120, 38, 59, 59, 59, 12,192, 18, 87,236, 64,135,100, 75, 42,149, 78, 24, 48, 96, 64,171, 85,173, 84,218, 98,108, 10, 14, + 14,134, 82,169,132, 88, 44,134,197, 98, 65,114,114, 50,145, 72, 36, 99,125, 41,115, 72, 72, 72,218, 19, 79, 60, 65,157, 60,121, + 18, 26,141, 6, 97, 97, 97, 80, 40, 20,112, 58,157,200,202,202,162,115,114,114, 38,152, 76,254,121,184,226,227,227,167, 79,154, + 52,137, 41, 46, 46,198,181,107,215, 96,177, 88,112,241,226, 69,132,134,134, 34, 51, 51, 83,252,218,107,175, 77,187,117,235,150, +191, 68,107, 72,118,118,118,181, 39,201,226, 37, 56, 56,152, 12, 26, 52, 72, 31, 17, 17, 49, 28,128, 63, 68,107,200,178,101,203, +106, 54,108,216, 48,238,232,209,163,238,164,151, 71,143, 30,253, 19, 0,108,217,178,229,132, 90,173, 30, 14,192, 87,162, 5,142, +227,216,167,158,122,170, 92, 34,145, 64, 36, 18, 65, 34,145,180,186,196, 98, 49, 40,138, 10,225,135,115,103,120, 63, 94,211,188, +154,245,167,141, 27,131,101,180,232, 15, 51, 30, 70, 66,152, 24,144,171, 32, 30,183, 10, 36,172,197,104,201,233,175, 2, 95,172, +194,166, 39,244, 84,246, 7,205, 7,108,206,112,245,149,186, 58,227, 61,158, 3, 70, 0,248, 59, 90, 14,215,125, 17,192,183, 61, +100,110,250, 14, 64,242,212,169, 83,221,100,235,240,225,195, 72, 79, 79, 71,125,125, 61,138,139,139, 61, 73,150, 63, 7, 44,127, +103,183,219,207,125,248,225,135,163,103,207,158, 77, 60,198, 23, 74, 74, 74,112,225,194,133, 34, 95,241, 40,138, 2,203,178, 16, +137, 68,216,184,113, 35,108, 54, 27, 62,248,224, 3,124,252,241,199,160, 40, 10,132, 16, 16, 66, 16, 26, 26,138,215, 95,127,221, +175,231,158,211,233,196,206,157, 59,177,234, 79,127,114,147, 44,151, 39, 3,125,162,163, 17, 17, 25,137, 43, 87,174,116, 74,180, +234,234,234, 94, 57,120,240, 32, 58, 10,134, 63,120,240,160,251,117,155, 96,248,206,231, 57,154,134,197, 98,193,163,143,222, 62, + 42,118,217,178,101,238,215,122,189, 30, 52, 77,243,117, 65,124,197, 52,115,192, 12,217,237,207,166, 60,247, 92, 43, 11,157, 55, +204,187,193, 69,132,178,110,181, 67,182,146, 93,214,217, 24, 0, 83,209, 18,163, 85, 5,220,197, 24, 45,142, 99, 31,140,235, 27, +139,115,101,231,193,208, 52, 36,202, 72, 40, 85,209, 96, 29, 86, 24,106,174,161, 96,223,155, 0,128,119,118,238, 5, 69, 81, 96, + 24, 26, 22,171, 19, 15, 36,196,130,101,217, 7, 59,194,126, 8, 24, 61, 33, 58,242,191,227,251,133,145,226,240,107, 24, 20, 21, +209,198, 17, 34,197, 3,149, 10, 50, 74, 33, 31, 89,103,104, 24,253, 35,240, 77,167,100,128,162, 64, 17,130, 32,177, 24,150,252, +252,150,168,205,220,150, 57,171, 40, 59, 27,212,129, 3, 8,145, 74, 65, 19, 2,198,101,130,238,138, 52, 52, 52,128, 16,130, 93, +187,118,133,103,102,102,238, 46, 46, 46,206,110,110,110,206,247, 7,163,190,190,126,234,152, 49, 99,190,222,185,115,167,186, 79, +159, 62,119,124,175,209,104,176,112,225, 66,109,125,125,189, 95, 73,221,100, 50,217,147,211,167, 79,223,190, 99,199,142,208,203, +151, 47,163,177,177, 17,106,181,186,187, 93, 97,120,106,106,234,254,252,252,124,165, 70,163,129,193, 96,128,197, 98,193,174, 93, +187,194,166, 76,153,146, 95, 90, 90,154, 14,160,176, 19,140,151, 60, 73,214,226,197,139,127, 0, 16, 5, 96, 91, 91, 14,234,250, +238, 97, 15,178,101, 0,240, 90, 7, 43,209,126,193,193,193,168,169,169,193,194,133, 11,113,233,210,109, 3,104,108,108,172,123, +165,119,229,202, 21,168,213,106, 16, 66,162,124, 41,180, 90,173, 86, 88,173, 86, 44, 90,180, 8, 21, 21, 21,173, 48,111,222,188, + 9, 66, 72,144,191, 21, 25, 29, 29, 29,109, 54,155,241,203, 95,254, 18,205,205, 45,231,250,206,153, 51, 7, 34,145, 8, 53, 53, + 53, 16,137, 68,145, 93,104,159,200,169, 83,167,122, 77,173, 18, 26, 26,106, 11, 15, 15,127,200, 79,204,136,105,211,166,221,202, +205,205,189, 99, 99,203,233,211,167,127,173, 82,169,142,170, 84,170, 65,126, 98,178,158,164, 74, 44, 22,183, 34, 90, 34,145, 8, + 20, 69,249, 28,163,118,169,198,244, 6, 67,170,134,109,120,118,242,194,132, 40, 37,184,198,106,136, 31,121, 5,231,180,114,108, +204, 57, 4, 0,248,227,188, 20, 12, 77, 91, 15,235,142,201, 88, 62,138,150,100,220,180, 60, 15,224,165,123,252,204,255, 31, 0, +252, 46,184,183, 0, 12,235, 65,243,145,155,108, 29, 62,124, 24,131, 7, 15, 70, 93, 93, 29, 74, 75, 75,187, 74,178,248,231,221, +170, 53,107,214,124, 49,115,230,204, 96,126,209, 42,151,203,177,114,229, 74,115, 99, 99,227, 42,191, 58, 17,203,130, 97, 24,247, + 34, 89, 38,147, 33, 57, 57,217, 77,178, 8, 33,104,106,106, 2,195, 48,252,142, 68,226,163,142,136,233,211, 7, 33, 33, 33, 24, +248,192, 3,184,236,122,142,240,175,165, 82, 41, 8, 33,112, 56, 58, 53,228, 25, 93, 65,237, 43,132,158,146,121, 82,212,161,233, + 56, 54, 22, 44,203,242, 36,147, 19, 2, 51, 50, 50, 18,141,141,141,190, 98,246, 72,241, 98,209,226,137,214, 84,180,196,106,221, +145,222, 97, 60,128, 2, 4,112, 75, 37, 1, 71, 88,142, 3, 67, 83, 46,223, 45, 13,154,166,160,215, 86, 97,243, 43, 75, 92, 36, +235, 99,124,118,162, 20,113, 3, 6,223,246,227, 18, 2,112, 29,119,110,181, 82,156,187,116,102,170,188,154, 84, 33, 44, 54, 8, + 50, 89, 27,254, 24, 46, 6, 73,164,240,236,132,184,160, 51, 7,155,115,127, 52,216, 58,157, 40,100, 20,213, 18,252, 78, 72,187, +193, 61,148,235, 59,154, 16,112, 28, 7,142,245, 47,238,152, 39,242,114,185, 28, 54,155, 13, 52, 77, 99,235,214,173, 97,105,105, +105,219,252, 37, 90, 0, 74,170,171,171,167,100,101,101, 29,222,187,119,111,100,100,100,100,171,213, 67, 86, 86,150,174,186,186, +122, 10,252, 12,186, 23,137, 68,219,222,122,235,173,208,235,215,175,163,169,169, 9,114,185,220,253,240,233,106,255, 28, 57,114, +228,231, 71,142, 28, 9, 55, 24, 12,176,217,108,144,203,229,224, 56, 14, 52, 77,227,163,143, 62,138,120,252,241,199, 15,221,184, +113,227,145,142,116,149,203,229, 51, 92,196, 9,217,217,217, 97,217,217,217,227, 1,175,153,122,221,146,157,157, 29,182, 98,197, +138,105,102,179,249,181, 14,202, 92,161,215,235,251,200,229,114,236,219,183, 15, 10,133, 2, 65, 65, 65,136,141,141,133, 94,175, + 71, 80, 80, 16, 56,142,131,221,110,231, 31, 22,181,190, 20, 92,171,213, 54, 58, 28, 14,229,225,195,135, 81, 91,123,251, 95, 18, + 18, 18, 80, 95, 95, 15,150,101,155,252,173,204,202,202,202,106, 66, 72,252,185,115,231,112,253,250,117,164,167,167,227,192,129, + 3, 72, 73,105,241, 14, 91,173,214,174, 36,241,115,210, 52,205,117,208,111, 9,128,112, 33, 49, 93,147,151, 95,152, 44,203,178, + 60,201,242,252,235, 73,190, 58,249,205, 86,195,249,161,104, 69,222,134,165,147, 22, 78, 30, 28, 9,179,246, 26,100, 33,145, 32, + 97,137,216,152,115, 8,197, 87, 91,218,107,227,238,179,216,179,118, 10, 32, 87, 33, 73,169, 67,159, 16,230,137, 11, 53,247,156, +104, 41, 61,215, 9, 61,117, 98, 74, 79, 79,135, 94,175,135, 66,161, 16, 34, 62,231,148,217,108,190,248,201, 39,159, 12,159, 58, +117, 42, 36, 18, 9, 46, 94,188,136,194,194,194, 82, 0,167,252, 37, 90, 34,145, 8,107,214,172,193,146, 37, 75, 16, 29, 29,141, + 85,171, 86,129, 97, 24,247, 69, 8,113, 91,184,252,145,168,232,142, 55, 62,242, 1,241,157, 25,195,149, 74,229, 26,138,162,102, +211, 62, 84,156,211,233,116,178, 44,187,215, 96, 48,116,152,222,129, 15, 92,247,165, 45, 60,235,160,147, 57,173,219,152,119,131, +139,116, 69,218,238, 54,244, 98,209,226,119, 29,222,113, 20, 16, 95,202, 2,151,201,174, 32, 80,138, 18,138,190,112,243, 86, 37, + 34,194, 21, 46,146,229,186, 40, 10, 67, 7,183, 44,102, 63, 59, 81,138,184,254,131,193,208, 52, 24,154,134, 66, 46, 69,181,166, + 10, 12, 67, 93,240,134, 59,132,198,204,153,131,226, 19,195, 35, 68,208,169,173,136,137,246, 98, 24, 24, 30,130,184, 24, 9, 30, +139,144,245, 27, 66, 99,102,199,214, 55,206, 77,180,108, 14, 7,196, 79, 62,233,118, 23, 22,101,103, 35, 57, 55, 23,206,233,211, + 97,178,217, 90,153,138,187, 74,180,228,114, 57,140, 70, 35,230,207,159,175,183,219,237,207,116,177,138, 11,107,107,107,103,101, +100,100,212,242, 4,198,102,179, 33, 35, 35,163,182,182,182,118,150, 15, 86,162, 59,196,110,183, 63,147,146,146,162,215,233,116, +110, 61,187,242,192,225, 69,165, 82,125,150,151,151,167,178, 88, 44,112, 56, 28,110, 76,185, 92, 14,154,166,161, 86,171,177,103, +207, 30,181, 74,165,234,240,204, 42,179,217,252, 73,110,110,110, 61, 0,228,230,230,214, 19, 66,142, 17, 66,222, 38,132,188,213, +230,122,155, 16,114,204,243, 94,179,217,188,191, 35,108,171,213,122,172,180,180,148, 11, 10, 10, 2, 77,211,176,217,108,144,201, +100,110,147,120, 67, 67, 3,204,230, 22, 55,119, 97, 97, 33,236,118,251, 73, 95,202,110, 52, 26,191,218,185,115, 39,155,144,144, +128,193,131, 7, 35, 57, 57, 25,169,169,169,232,215,175, 31,214,173, 91,231, 52,153, 76,126,143,189,202,202,202,207,254,249,207, +127,218,227,227,227, 49,124,248,112, 72,165, 82, 12, 29, 58, 20,177,177,177,248,235, 95,255,106, 53, 24, 12,135,187,208, 76, 55, +206,159, 63, 79,119, 64,114, 67,225,195,238,221, 54, 82,113,230,204, 25, 58, 53, 53,245,211,182, 95,140, 28, 57,242, 83,133, 66, +161,228, 77,236,254,172,200, 61,201,149, 84, 42,117, 95,252,231, 12,195,248,178,250,161, 30,138, 86,228,253,109,201,196,133,147, + 7,135,227,211,175,190,133,216, 86, 15, 88, 59,240, 8, 58,237, 32,226, 96, 68, 43, 69,113, 61, 96, 14, 88, 14,224, 7,180,228, + 97, 90,133,158, 37,238,192,247,218,218, 90,148,150,150,162,176,176, 16,169,169,169, 56,121,242, 36,112, 59, 64,222,111, 49, 24, + 12,171,214,174, 93,107,226,119,242,189,248,226,139,102,163,209,184,202,223,103, 48,199,113, 16,137, 68, 72, 74, 74,194,138,112, + 76,117,201, 0, 0, 13, 69, 73, 68, 65, 84, 21, 43,112,232,208, 33, 92,188,120, 17,118,187,221, 77,132,248,152, 76,127, 44, 90, + 98,177, 24,209,209,209,176,219,237,110,107, 22, 0, 92,190,116, 9, 12,195,128,101, 89, 88,173,214, 78, 45, 90, 74,165,114,205, +246,237,219,127,175,211,233, 98,180, 90,109,148,231, 85, 93, 93, 29, 85, 85, 85, 21,117,235,214,173,168,138,138,138,168,242,242, +242,168,107,215,174,197,188,250,234,171,191, 87, 42,149,107,124,209,147,166,105, 12, 29, 58, 20,203,150, 45,115, 95,111,188,241, +134,251, 42, 40, 40,240, 59,120,157,166,105, 36,173,222,136, 41, 90,206,125, 29, 82, 19,247, 85,252,199,197, 29, 97, 6,156,139, +116,137,191,184,118, 27,122, 30, 44,221,142,240,187, 14,249,103,153, 59,108,163,109, 48,124,192,196, 97,109,254,250,106,217,165, +137, 73, 67, 70, 80, 26, 93, 99,171,237,159,201, 19,102,129, 16,130,190,253, 7,131,102, 24,208, 52, 5,134,166, 17, 22, 42, 67, +233,185,115,172,197,108,254,186, 61,204,241, 0, 35,145, 75,222,152,247,216, 80, 89,165,164, 6,234,152, 96,136, 69, 45,220,145, +187, 58,171,205, 12,193, 0, 67, 66,240,219, 91, 17,242,175,171,155,223, 8, 55,217, 62, 61,230,101, 5,200,178, 44, 20, 82, 41, +154, 45, 22,152, 29, 14, 76,216,188,217,237, 46,164, 8,193,119, 0, 30,222,188, 25,223,228,231, 35, 84, 34, 1,164, 82,159,119, +133,180, 71,180,116, 58, 29, 22, 44, 88, 80, 91, 85, 85,149,217,149, 24, 45, 94, 44, 22,203,113,141, 70,147, 57,107,214,172, 93, +251,246,237, 83,205,154, 53, 75,175,209,104, 50,125,140,123,186, 67,154,155,155,243, 43, 42, 42,154, 22, 44, 88,240,254,238,221, +187, 35, 34, 35, 35,221, 43,145, 46,117, 86, 66,116,147, 38, 77,146,250,114, 95, 39,183,172,117, 5,183, 47,113, 89,182, 30, 94, +188,120,241, 55,104,137,191,242,148,213,239,188,243,206, 28, 15, 23,227,219, 0, 54,119, 4,220,208,208,240,214,138, 21, 43,126, +119,252,248,241, 72,153, 76, 6, 66, 8,196, 98, 49, 6, 14, 28,232,222, 69, 35, 18,137,192,113, 28,158,123,238, 57, 93, 77, 77, +205, 22, 31,219,102,241,218,181,107,199, 53, 55, 55,135, 47, 88,176,128,150,201,100,168,174,174, 70, 78, 78,142,115,199,142, 29, +245, 38,147,105, 97, 23,136,240,206,151, 95,126,121, 66, 99, 99, 99,255,172,172, 44,177,193, 96,128,217,108,198,243,207, 63,111, +125,247,221,119,111,154,205,102,191, 19,254,142, 26, 53,170,172,188,188,124,108, 83, 83, 83, 93, 80, 80, 80, 91,107, 31, 9, 14, + 14, 30, 1,224,125,127, 48,147,147,147,175,220,184,113, 35,117,253,250,245,199,236,118,187,232,244,233,211,238, 96,248,173, 91, +183, 22,200,100,178, 73,240,243,240, 85, 66, 8, 43,149, 74, 91, 89,176,218,190,102, 24,166,211,103,218,131,125,130,214,255,237, +233,113, 11, 31,125, 72,137, 79,190, 58,139,181,251,175, 94,120, 96,161, 58,233,231,225, 90,176,218, 82,252,113, 94, 10, 54,238, + 62, 11,160,197,117,200,214, 20,131,171,187, 2, 46, 36, 30,215,244,186,202, 30, 48, 7, 20,160, 37,101, 70, 79,147, 86, 36,171, +184,184, 24, 19, 39, 78, 4, 0,156, 60,121, 18, 99,198,140,193,201,147, 39, 49,118,236, 88,191,115,105,185,228,223, 13, 13, 13, +229, 5, 5, 5,255, 21, 31, 31,143, 83,167, 78, 93, 3,240,111,127,149,228,137, 22,195, 48,248,205,111,126,131,180,180, 52, 36, + 36, 36,180,218,109,200,191,246,135,108, 56, 28, 14, 12, 25, 50, 4, 22,171, 21, 98,177,216,237,154,100, 24, 6,234,168, 40,148, +149,149,249,100,209,162, 40,106,246,140, 25, 51,168,146,146, 18,204,157, 59, 23,187,118,237,242,122,111, 70, 70, 6, 62,252,240, + 67,204,152, 49,131,122,225,133, 23, 58, 76,239,192, 7,161,251, 82, 38,126,158,238,236,185, 47, 20,102,160,185, 72,119,196, 35, +181, 67,187, 78,147,118, 62,203,109, 69,180, 60,146,132, 5,134,104, 57,108,187, 14,124,240,230,138,212,109, 99,213, 49, 81, 74, +232, 13,102, 55,217, 42, 42,248, 24, 0, 48,115,241, 95,192,208, 45, 46,197, 80,133, 12,114, 49,141,252,247,182,232,108,182,230, +118,123,151, 81, 68, 45,121, 97,244, 64,165, 36,216,142,134, 62, 28, 6,171,111,159,148, 67,250,127,124, 39,225,250, 69, 56, 34, +139,235, 48,239,231,138,208, 45, 37,245, 75, 96,103,223,184, 99, 66,172,175, 55,215,159, 59, 39, 79,223,190, 29,167, 51, 51,209, +215,233,196,177,216, 88,168, 68, 34, 40,165, 82, 80,132,192,252,175,127,225,155,125,251, 16, 45,149, 2, 33, 33,112,172, 91, 7, + 75,105, 41,236, 70,163,185, 11, 43, 51,204,153, 51, 71,167,211,233,102, 89,173,214,227,221,173,103,179,217,124,164,162,162, 98, +201,168, 81,163,182,217,237,246,103,204,102,115,183,118, 70, 89,173,214, 35, 26,141,230,201, 57,115,230,124,188,127,255,254,200, +176,176,176, 46, 99,213,214,214,166, 8,212,157, 88, 0,127,118, 5,183, 47,201,206,206, 14, 59,115,230,204,239,242,242,242,182, +121,172, 38,162, 22, 45, 90,244,116, 27,146,213,233,174, 67, 0, 55,106,106,106,214,173, 92,185,242, 47,155, 54,109, 82,240,129, +239,223,127,255, 61, 28, 14, 7, 68, 34, 17,156, 78, 39, 22, 45, 90,212, 88, 91, 91,187, 17,222, 51, 58,223,209,181, 26, 26, 26, + 6,174, 95,191, 62,111,243,230,205,105, 52, 77, 7, 59,157, 78, 83, 83, 83,211,177,230,230,230,133,232, 90, 30, 45, 86,171,213, + 46,120,233,165,151, 22,228,228,228,204,160, 40, 42,202,225,112,232,140, 70,227, 65,179,217,252, 46,186,224, 74, 58,117,234,148, +118,222,188,121, 87,181, 90,237,131,113,113,113, 6,133, 66, 97,181, 90,173,180, 92, 46, 15, 13, 14, 14, 78, 6,112,138, 16,242, +163, 63,152, 69, 69, 69,154,172,172,172,235, 22,139, 37,233,237,183,223, 62, 17, 26, 26,250, 21, 33,132,136,197,226,112,185, 92, + 62, 17,192, 49, 66,200,101,127, 48, 41,138, 98, 61,173, 87,109,227,179, 36, 18,137, 79, 49, 90,253,213, 65,191, 77, 27,200,224, +147,175,207, 98,237, 39, 55,118, 58, 57,110,223,190,162,186,127,173, 26, 3,216,246,206,195,208, 89,239,183,184, 11, 1,176, 53, +197,176,237,205, 0, 9,138,196,137, 91, 34, 24,204,182,207,208, 43,237,137, 59,189,131, 78,167, 67, 73, 73, 9, 79,178,146, 1, + 96,236,216,177, 69, 60,217, 42, 44, 44,196,240,225,195,139, 0,136,252,237,175, 13, 13, 13, 43,231,207,159,127,196,181, 56, 94, +217,133,133,159,155,104,241,132, 42, 33, 33,193,253,222,243,242,136,209,242, 73,156, 78, 39,196, 98, 49, 24,134, 65, 76,108,172, +251,183, 56,142, 67, 89, 89, 25,244,122,189, 79, 68,139,166,105,154, 16,130,185,115,125,219,144,252,212, 83, 79,225,216,177, 99, +160,125,100,133, 52, 77, 35, 49, 49,177,211,123,120, 94,234, 43,102, 92, 92, 92,151, 49, 3,205, 69,186, 74,176,218,123,221, 30, +169,242, 54, 32,238,150, 84, 54, 54, 26,254,252,222,246,173,155, 22, 45,125, 78, 81,124,165, 26,134, 70, 11,104,154,242,124,120, +130, 97,104,132, 6,203, 16,223, 71,137,221,255,248,187,209,216, 80,255, 18,188,156,123,152, 16, 34, 94, 60,105,196,207,165,226, + 24, 19,146, 30,158, 3, 90,118,155, 4,112, 26, 47,222,193, 49, 95,224, 87, 55, 76,178, 3, 55, 76,139,191,171,179,222, 73,180, +172,214,201, 47, 62,246,216,231,107, 15, 29, 10, 26,185,115, 39,174, 44, 90,132, 88,179, 25, 82,151, 43,145, 34, 4, 10,177, 24, + 10,177,184,133,100,229,228,192,236,112, 96,115,102,102,147,197,106,125,204,159, 65, 94, 91, 91,139,233,211,167,107, 43, 43, 43, +167,160, 11,174, 61,111, 98, 50,153,242, 1,228, 11,133,103,177, 88,142,223,188,121,243, 87,211,167, 79, 63,116,228,200, 17,117, + 15, 73, 50,199,147, 45,219,153, 51,103,158, 62,113,226,196, 21,180, 62, 88,180,254,196,137, 19, 87,178,178,178, 72, 94, 94,222, +187, 0, 94,134,143, 9, 60, 77, 38,211,214, 47,191,252, 18,227,198,141,123,121,195,134, 13, 17, 41, 41, 41,136,138,138,130,209, +104, 68, 97, 97, 33,150, 47, 95,174,111,104,104,216, 80, 95, 95,191,201, 79,157,109, 22,139, 37,195,115, 43,181, 16,245, 96,177, + 88,118, 84, 85, 85,237, 16, 10,240,217,103,159,253,190,172,172,172, 86,173, 86,255,183, 88, 44,126, 24, 45,113, 64, 26, 0,239, +250, 75,136,120, 89,186,116,233,185,178,178, 50, 93,223,190,125, 83, 93,152, 97,104, 57,198,104,123, 23, 48, 43,207,158, 61, 27, + 55, 98,196, 8, 74, 36, 18,113, 52, 77, 67, 36, 18,113, 12,195,112,174,184, 26, 14, 0, 14, 30, 60, 40, 5,208,225,177, 57, 87, +106,204,235, 51,254,254,159, 23,126,212, 52,239, 43,173,110, 90, 1,128,219, 91, 28,244,197, 80, 53, 61,121,242,160,155,176,228, +142, 5, 9,109, 73, 84,201, 53, 86,129, 4, 71,227, 38,219, 23,171, 63,189,160,113,128,188,214,203,169,218, 95, 87,195,149,222, +161,170,170,202,147,100,241, 86,171,228,177, 99,199, 22,185, 72, 22,255, 93, 87,226,203,142,178, 44,219,173, 57,140,227, 56,172, + 93,187, 22,239,188,243, 14, 58,203,104,238,218,221, 71, 58,195,227, 45, 90, 78,167, 19, 54,155, 13,197,197,197,238,156, 93,188, +187,144, 79,237,224,112, 56, 58,220,173,238,116, 58,157, 86,171, 21, 31,125,244,145, 79,100,107,207,158, 61,104,110,110,134,179, + 19, 6,231,153,138, 97,216,176, 97,208,235,245,238,205, 62,201,201,183, 83,229,217,108, 54,191,136, 43,143,153,148,148, 4,157, + 78, 7, 62, 94, 56, 62,243,182,177,199, 97, 50,253, 84,251,189, 87,139,214, 93,159, 49,165, 65,161, 71, 82, 70,167,141,201,124, +122,121,112,163,197,137,235,215,203,161,173,169, 2, 69, 40,196,244,141, 67,191,126,137,144, 75, 40,236,202,221,100, 42,250,230, +171,255, 52, 26,235,210,189, 97, 77, 85,138,191,201,121,114, 76,234,128, 1, 33, 4, 14, 59,224,180, 3, 14, 59,192,186,254,242, +159,177,173,251, 92, 73, 73, 61,247,194,119,250,255,253,204, 96,107,247,204,170, 89,192,152, 48,149,234,243,213, 7, 15, 6,177, + 54, 27,106, 87,174, 68,144,195, 1,153,107, 85,210, 82, 16, 41, 28,235,214,181,144,172,140,140, 38, 67,125,189, 95, 71,240, 68, + 70, 70,158, 37,132, 68,106,181,218,251, 42, 51,188, 90,173,254,140,227, 56,157, 78,167, 75,233, 65,122, 69, 1,168, 7, 96,107, +103, 33,161,134,255,241, 63,188, 36,170,213,234, 23, 40,138, 26,197,113, 92, 4, 69, 81,117, 44,203,158,170,169,169,121, 21, 64, + 89,239,124,122,207,132,207, 12,255,179, 78,238,171, 1,240, 7,180, 4, 5, 95,247, 21,124,168, 82,169,180, 72,236,251,127, 61, + 88, 58, 97,118,178, 18,253,251,132, 64, 36,150,161,178,193,129,163, 63, 54, 96,123,129,166,194,108,119, 62,126, 73,219,116,190, +183, 41, 58, 20,193,143,224, 17, 82, 84, 42,213,183,159,127,254,121, 74,255,254,253, 41,207,128,119, 62, 87, 30,239,222, 98,152, + 22, 46,119,252,248,113,199,220,185,115, 79, 85, 87, 87,143,243,134, 25, 18, 18,242,197, 15, 63,252,240,168,193, 96,184,131, 80, +121,102,138,231,223,155, 76, 38, 44, 93,186,244, 75,111, 71,240, 40,149,202,156, 77,155, 54,253,126,230,204,153, 20,159,142,194, +243,226,143, 11,226, 47,155,205,134,247,223,127,159,221,178,101,203,235, 6,131,193,171,235, 48, 38, 38,166,162,178,178, 50,142, + 79,181,224, 75, 82,209,196,196,196,170,242,242,242,216,187,137,121, 31, 19,174, 86,214,173,123, 98,154, 16,201,229,207,134, 40, +194, 95,153, 57,127, 89, 68,226,128, 7, 72,116, 76, 95, 16, 80,168,214,220, 66,249,213, 75,220,254, 15,222,172, 53, 53,232,215, +152,205,166, 55, 59,194,121, 8, 24,240,179, 80,241, 94,137, 19,131,192, 19,160, 54,231, 83,221,177,226, 0, 96, 19, 81, 23,174, + 27,237,115,126,236,192,237,195,147,173, 63,239,223, 31, 36, 25, 52,232,142, 68,113, 44,203,194, 82, 90,138,205,153,153,126,147, +172, 94,233,149, 94, 17, 68,250,163,243, 28, 89,118,180,228,231,242,215, 98, 66,146,162,130,231,112,192,108, 10,236, 16,138, 16, +137,131,195, 69,112,248, 34,136,105,218, 86, 84, 5,115,111,245,251, 36, 61,246, 80,105, 0,193, 42,149,234, 43,154,166,251,241, + 22, 25, 79,107,125, 59, 7, 74, 95,175,174,174,158, 4,160,163, 29,194, 3, 66, 66, 66,222,116, 58,157, 35,125, 57, 84,154,166, +233,211, 70,163,241, 89,116,112,168,116, 32,118, 29, 70, 68, 68,148,149,151,151, 15,224,119, 81,123,206,149,237,237, 44,191,124, +249, 50,198,143, 31, 95,174,209,104, 18,239, 38,102, 79, 21, 47,187, 14,123,142, 69,203, 67, 98,197, 82,197, 2,137, 92,246, 8, +107,119, 36,129, 0,140, 72,116,193,218,108,254,218, 98,110,124, 15, 94,220,133,119, 83,102, 1, 99,164, 18,201, 23,226,208, 80, +121,123,164,205,110, 52,154, 45, 86,235,228, 94,146,213, 43,189,210, 43,189,210, 43,247,145, 12, 82,169, 84,159,139, 68, 34,169, + 39,153,108,251,154, 23,135,195,209,172,213,106,211, 1, 92,188,203,152,255, 63,197,207, 32,181, 52, 95, 49, 93,215,248,158,142, + 25,192,178,115, 2, 98,142,119, 97,174,190, 79,244, 28,223, 83, 49,249,242,250,129,155,230, 79, 63, 18,170, 62, 61,244,228,132, +214, 51, 80,152, 66,141,163,118,244,228, 2,208,238,171,239, 19, 61,199,247, 52,204,182,253,199, 71, 92,191, 48,125,236, 83,254, +234,201, 9,173,103,160, 48,187, 59,142, 58,208,147,235,110, 95,242,210,246,171,113, 31, 74,201, 47,192,149,252, 2, 92,241,240, +118,243, 54,102,123,251, 63,191, 2, 9, 3,181, 19,128, 79,187,239,194, 39, 61, 21,211,179, 30,132, 60, 42, 32, 0,199, 14, 20, + 8,141,217,166, 62,133,146,213,174, 29, 38,199,224, 67,194, 81,127,202, 46, 68,187,183, 41,171, 32,184, 93, 32, 89,126, 97, 10, +213,239, 3,141, 41,212, 88,106,139, 41, 68,191,111,175,221, 3,216, 70, 66,233, 41,200, 88, 10, 68,159,111,167,255,116, 27,183, + 45,166, 16, 99,169, 45,166, 16,253,254,110, 96, 10, 49,150,218,195, 20,162,223,123,107,251,251,213,208,196,187, 11, 93, 41, 30, +136, 15,100, 43, 23, 0,168,174, 84, 90, 0, 45,101, 19,132,198, 20, 90,231, 64,144, 77, 63, 44, 48,247, 28, 83,224, 54, 90,237, +194, 20,114,117, 51, 65,168, 54, 10, 68,127,247,196, 20, 10,191, 45,142, 16,237,212, 30,102,119,245,245,162,167,224,101,239,110, +191,191, 91,152, 2,183,145, 32, 99,169, 13,230, 4,129, 23, 3, 19, 60,222,175, 22, 18, 83,168,177,212,142,158,221,110,167,246, + 48,187,171,175, 23, 61, 5, 47,187, 16,115, 72,160,112,239,165, 69,139,163,188,246,137,220, 54,215, 93, 33, 26,247,204, 37,231, + 39,246, 79, 10,211, 79,247, 76, 90, 0,218,254,158,234, 41, 36,102, 91, 29,133,116,247, 4, 82, 79, 33, 49,253,208,245, 39,135, +121,191,181,123, 79,172, 79,111,120,221,113, 75,121,179,142, 6, 66, 79, 33, 49,125,196,254, 73, 96,118,163,237,127,114,194,244, + 20, 69,248,138, 23,120,101, 2,129, 45, 48, 1, 43,183,192,122, 78, 8,132,133, 48, 0, 34,184,158,174,149,242, 43, 1, 40,251, +253, 82,167,189, 99,169,119, 44,245,184,177,212,166, 79, 78, 16,208, 82, 36,168,229,185, 45,166, 16,191,225,137, 33, 84, 31, 13, +116,217,133, 28, 75,129,104,251,251, 77,254, 15,176, 49,196,128, 26,186,125, 59, 0, 0, 0, 0, 73, 69, 78, 68,174, 66, 96,130, 0}; diff --git a/source/blender/editors/include/UI_icons.h b/source/blender/editors/include/UI_icons.h index 8373ea7c52e..f102ecb0d08 100644 --- a/source/blender/editors/include/UI_icons.h +++ b/source/blender/editors/include/UI_icons.h @@ -590,9 +590,9 @@ DEF_ICON(MOD_SCREW) DEF_ICON(MOD_VERTEX_WEIGHT) DEF_ICON(MOD_DYNAMICPAINT) DEF_ICON(MOD_REMESH) +DEF_ICON(MOD_OCEAN) +DEF_ICON(MOD_WARP) #ifndef DEF_ICON_BLANK_SKIP - DEF_ICON(BLANK163) - DEF_ICON(BLANK164) DEF_ICON(BLANK165) DEF_ICON(BLANK166) DEF_ICON(BLANK167) diff --git a/source/blender/editors/space_outliner/outliner_draw.c b/source/blender/editors/space_outliner/outliner_draw.c index 942e1024c05..e40732804f7 100644 --- a/source/blender/editors/space_outliner/outliner_draw.c +++ b/source/blender/editors/space_outliner/outliner_draw.c @@ -1023,7 +1023,9 @@ static void tselem_draw_icon(uiBlock *block, int xmax, float x, float y, TreeSto case eModifierType_DynamicPaint: UI_icon_draw(x, y, ICON_MOD_DYNAMICPAINT); break; case eModifierType_Ocean: - UI_icon_draw(x, y, ICON_MOD_WAVE); break; + UI_icon_draw(x, y, ICON_MOD_OCEAN); break; + case eModifierType_Warp: + UI_icon_draw(x, y, ICON_MOD_WARP); break; default: UI_icon_draw(x, y, ICON_DOT); break; } diff --git a/source/blender/makesrna/intern/rna_modifier.c b/source/blender/makesrna/intern/rna_modifier.c index 50eb3d394df..6d16937acad 100644 --- a/source/blender/makesrna/intern/rna_modifier.c +++ b/source/blender/makesrna/intern/rna_modifier.c @@ -84,7 +84,7 @@ EnumPropertyItem modifier_type_items[] ={ {eModifierType_Shrinkwrap, "SHRINKWRAP", ICON_MOD_SHRINKWRAP, "Shrinkwrap", ""}, {eModifierType_SimpleDeform, "SIMPLE_DEFORM", ICON_MOD_SIMPLEDEFORM, "Simple Deform", ""}, {eModifierType_Smooth, "SMOOTH", ICON_MOD_SMOOTH, "Smooth", ""}, - {eModifierType_Warp, "WARP", ICON_MOD_SUBSURF, "Warp", ""}, + {eModifierType_Warp, "WARP", ICON_MOD_WARP, "Warp", ""}, {eModifierType_Wave, "WAVE", ICON_MOD_WAVE, "Wave", ""}, {0, "", 0, "Simulate", ""}, {eModifierType_Cloth, "CLOTH", ICON_MOD_CLOTH, "Cloth", ""}, @@ -92,7 +92,7 @@ EnumPropertyItem modifier_type_items[] ={ {eModifierType_DynamicPaint, "DYNAMIC_PAINT", ICON_MOD_DYNAMICPAINT, "Dynamic Paint", ""}, {eModifierType_Explode, "EXPLODE", ICON_MOD_EXPLODE, "Explode", ""}, {eModifierType_Fluidsim, "FLUID_SIMULATION", ICON_MOD_FLUIDSIM, "Fluid Simulation", ""}, - {eModifierType_Ocean, "OCEAN", ICON_MOD_WAVE, "Ocean", ""}, + {eModifierType_Ocean, "OCEAN", ICON_MOD_OCEAN, "Ocean", ""}, {eModifierType_ParticleInstance, "PARTICLE_INSTANCE", ICON_MOD_PARTICLES, "Particle Instance", ""}, {eModifierType_ParticleSystem, "PARTICLE_SYSTEM", ICON_MOD_PARTICLES, "Particle System", ""}, {eModifierType_Smoke, "SMOKE", ICON_MOD_SMOKE, "Smoke", ""}, @@ -832,7 +832,7 @@ static void rna_def_modifier_warp(BlenderRNA *brna) srna= RNA_def_struct(brna, "WarpModifier", "Modifier"); RNA_def_struct_ui_text(srna, "Warp Modifier", "Warp modifier"); RNA_def_struct_sdna(srna, "WarpModifierData"); - //RNA_def_struct_ui_icon(srna, ICON_MOD_SUBSURF); + RNA_def_struct_ui_icon(srna, ICON_MOD_WARP); prop= RNA_def_property(srna, "object_from", PROP_POINTER, PROP_NONE); RNA_def_property_ui_text(prop, "From", "Object to transform from"); @@ -2901,7 +2901,7 @@ static void rna_def_modifier_ocean(BlenderRNA *brna) srna= RNA_def_struct(brna, "OceanModifier", "Modifier"); RNA_def_struct_ui_text(srna, "Ocean Modifier", "Simulate an ocean surface"); RNA_def_struct_sdna(srna, "OceanModifierData"); - RNA_def_struct_ui_icon(srna, ICON_MOD_WAVE); + RNA_def_struct_ui_icon(srna, ICON_MOD_OCEAN); /* General check if blender was built with OceanSim modifier support */ prop= RNA_def_property(srna, "is_build_enabled", PROP_BOOLEAN, PROP_NONE); -- cgit v1.2.3 From 399ad54204ad9c3bc9dbd15ec4840824d224dc0c Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 13 Feb 2012 03:32:47 +0000 Subject: fix for bug introduced with weight paint vertex selection. heat weighting ignored selected faces. --- source/blender/editors/armature/meshlaplacian.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/blender') diff --git a/source/blender/editors/armature/meshlaplacian.c b/source/blender/editors/armature/meshlaplacian.c index e33b778a168..319b2c755b1 100644 --- a/source/blender/editors/armature/meshlaplacian.c +++ b/source/blender/editors/armature/meshlaplacian.c @@ -682,8 +682,8 @@ void heat_bone_weighting(Object *ob, Mesh *me, float (*verts)[3], int numsource, mask[mface->v4]= (mvert[mface->v4].flag & SELECT) != 0; } } - else { - if(use_face_sel) { + else if (use_face_sel) { + if (mface->flag & ME_FACE_SEL) { mask[mface->v1]= 1; mask[mface->v2]= 1; mask[mface->v3]= 1; -- cgit v1.2.3 From 764c8c76ea61e59c95bb46351b22592690deb40a Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 13 Feb 2012 04:12:40 +0000 Subject: remove unused var --- source/blender/editors/space_outliner/outliner_edit.c | 1 - 1 file changed, 1 deletion(-) (limited to 'source/blender') diff --git a/source/blender/editors/space_outliner/outliner_edit.c b/source/blender/editors/space_outliner/outliner_edit.c index eb910b0b0b5..80bd8291757 100644 --- a/source/blender/editors/space_outliner/outliner_edit.c +++ b/source/blender/editors/space_outliner/outliner_edit.c @@ -496,7 +496,6 @@ static int outliner_toggle_renderability_exec(bContext *C, wmOperator *UNUSED(op { SpaceOops *soops= CTX_wm_space_outliner(C); Scene *scene= CTX_data_scene(C); - ARegion *ar= CTX_wm_region(C); outliner_do_object_operation(C, scene, soops, &soops->tree, object_toggle_renderability_cb); -- cgit v1.2.3 From 840ffba82cb6676ddfee85c9ea09b08a1ea1e626 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Mon, 13 Feb 2012 17:29:10 +0000 Subject: Fixed copy-paste of sound strips in sequencer. Copy operator used to remove scene_sound from strips, but Paste operator didn't restore which lead to total silence of newly added strips. --- .../editors/space_sequencer/sequencer_edit.c | 25 ++++++++++++++++++---- 1 file changed, 21 insertions(+), 4 deletions(-) (limited to 'source/blender') diff --git a/source/blender/editors/space_sequencer/sequencer_edit.c b/source/blender/editors/space_sequencer/sequencer_edit.c index e88664ac817..ef1c86b0e84 100644 --- a/source/blender/editors/space_sequencer/sequencer_edit.c +++ b/source/blender/editors/space_sequencer/sequencer_edit.c @@ -2555,12 +2555,12 @@ void SEQUENCER_OT_rendersize(wmOperatorType *ot) /* properties */ } -static void seq_del_sound(Scene *scene, Sequence *seq) +static void seq_copy_del_sound(Scene *scene, Sequence *seq) { if(seq->type == SEQ_META) { Sequence *iseq; for(iseq= seq->seqbase.first; iseq; iseq= iseq->next) { - seq_del_sound(scene, iseq); + seq_copy_del_sound(scene, iseq); } } else if(seq->scene_sound) { @@ -2611,7 +2611,7 @@ static int sequencer_copy_exec(bContext *C, wmOperator *op) /* Need to remove anything that references the current scene */ for(seq= seqbase_clipboard.first; seq; seq= seq->next) { - seq_del_sound(scene, seq); + seq_copy_del_sound(scene, seq); } return OPERATOR_FINISHED; @@ -2634,6 +2634,19 @@ void SEQUENCER_OT_copy(wmOperatorType *ot) /* properties */ } +static void seq_paste_add_sound(Scene *scene, Sequence *seq) +{ + if(seq->type == SEQ_META) { + Sequence *iseq; + for(iseq= seq->seqbase.first; iseq; iseq= iseq->next) { + seq_paste_add_sound(scene, iseq); + } + } + else if(seq->type == SEQ_SOUND) { + seq->scene_sound = sound_add_scene_sound_defaults(scene, seq); + } +} + static int sequencer_paste_exec(bContext *C, wmOperator *UNUSED(op)) { Scene *scene= CTX_data_scene(C); @@ -2660,9 +2673,13 @@ static int sequencer_paste_exec(bContext *C, wmOperator *UNUSED(op)) BLI_movelisttolist(ed->seqbasep, &nseqbase); /* make sure the pasted strips have unique names between them */ - for(; iseq; iseq=iseq->next) + for(; iseq; iseq=iseq->next) { seq_recursive_apply(iseq, apply_unique_name_cb, scene); + /* restore valid sound_scene for newly added strips */ + seq_paste_add_sound(scene, iseq); + } + WM_event_add_notifier(C, NC_SCENE|ND_SEQUENCER, scene); return OPERATOR_FINISHED; -- cgit v1.2.3 From 2f516f46dafd34da1a14ef03e8c6b40326eab63b Mon Sep 17 00:00:00 2001 From: Joerg Mueller Date: Mon, 13 Feb 2012 17:31:33 +0000 Subject: Fix for [#27349] Sequencer: Meta Strips plays unavailable audio Hopefully at least... Sequencer code is like . --- source/blender/blenkernel/intern/sequencer.c | 58 +++++++++++++++------------- 1 file changed, 31 insertions(+), 27 deletions(-) (limited to 'source/blender') diff --git a/source/blender/blenkernel/intern/sequencer.c b/source/blender/blenkernel/intern/sequencer.c index d18a71d3c55..904e97c8f67 100644 --- a/source/blender/blenkernel/intern/sequencer.c +++ b/source/blender/blenkernel/intern/sequencer.c @@ -523,6 +523,31 @@ void build_seqar_cb(ListBase *seqbase, Sequence ***seqar, int *totseq, } +static void seq_update_sound_bounds_recursive(Scene *scene, Sequence *metaseq) +{ + Sequence *seq; + + /* for sound we go over full meta tree to update bounds of the sound strips, + since sound is played outside of evaluating the imbufs, */ + for(seq=metaseq->seqbase.first; seq; seq=seq->next) { + if(seq->type == SEQ_META) { + seq_update_sound_bounds_recursive(scene, seq); + } + else if(ELEM(seq->type, SEQ_SOUND, SEQ_SCENE)) { + if(seq->scene_sound) { + int startofs = seq->startofs; + int endofs = seq->endofs; + if(seq->startofs + seq->start < metaseq->start + metaseq->startofs) + startofs = metaseq->start + metaseq->startofs - seq->start; + + if(seq->start + seq->len - seq->endofs > metaseq->start + metaseq->len - metaseq->endofs) + endofs = seq->start + seq->len - metaseq->start - metaseq->len + metaseq->endofs; + sound_move_scene_sound(scene, seq->scene_sound, seq->start + startofs, seq->start+seq->len - endofs, startofs); + } + } + } +} + void calc_sequence_disp(Scene *scene, Sequence *seq) { if(seq->startofs && seq->startstill) seq->startstill= 0; @@ -539,32 +564,11 @@ void calc_sequence_disp(Scene *scene, Sequence *seq) seq->handsize= (float)((seq->enddisp-seq->startdisp)/25); } - seq_update_sound_bounds(scene, seq); -} - -static void seq_update_sound_bounds_recursive(Scene *scene, Sequence *metaseq) -{ - Sequence *seq; - - /* for sound we go over full meta tree to update bounds of the sound strips, - since sound is played outside of evaluating the imbufs, */ - for(seq=metaseq->seqbase.first; seq; seq=seq->next) { - if(seq->type == SEQ_META) { - seq_update_sound_bounds_recursive(scene, seq); - } - else if(ELEM(seq->type, SEQ_SOUND, SEQ_SCENE)) { - if(seq->scene_sound) { - int startofs = seq->startofs; - int endofs = seq->endofs; - if(seq->startofs + seq->start < metaseq->start + metaseq->startofs) - startofs = metaseq->start + metaseq->startofs - seq->start; - - if(seq->start + seq->len - seq->endofs > metaseq->start + metaseq->len - metaseq->endofs) - endofs = seq->start + seq->len - metaseq->start - metaseq->len + metaseq->endofs; - sound_move_scene_sound(scene, seq->scene_sound, seq->start + startofs, seq->start+seq->len - endofs, startofs); - } - } - } + if(ELEM(seq->type, SEQ_SOUND, SEQ_SCENE)) { + seq_update_sound_bounds(scene, seq); + } + else if(seq->type == SEQ_META) + seq_update_sound_bounds_recursive(scene, seq); } void calc_sequence(Scene *scene, Sequence *seq) @@ -3228,7 +3232,7 @@ void seq_update_sound_bounds_all(Scene *scene) void seq_update_sound_bounds(Scene* scene, Sequence *seq) { - sound_move_scene_sound_defaults(scene, seq); + sound_move_scene_sound_defaults(scene, seq); /* mute is set in seq_update_muting_recursive */ } -- cgit v1.2.3 From 62fa555b8e73fd72f353ad25acc505c7d8c729b0 Mon Sep 17 00:00:00 2001 From: Jens Verwiebe Date: Mon, 13 Feb 2012 19:00:02 +0000 Subject: OSX: let almost all animation imports handle by ffmpeg now, this is faster in many cases --- source/blender/quicktime/apple/qtkit_import.m | 3 +++ 1 file changed, 3 insertions(+) (limited to 'source/blender') diff --git a/source/blender/quicktime/apple/qtkit_import.m b/source/blender/quicktime/apple/qtkit_import.m index 4c2bcee0150..633d92e05c1 100644 --- a/source/blender/quicktime/apple/qtkit_import.m +++ b/source/blender/quicktime/apple/qtkit_import.m @@ -86,6 +86,9 @@ int anim_is_quicktime (const char *name) BLI_testextensie(name, ".txt") || BLI_testextensie(name, ".mpg") || BLI_testextensie(name, ".avi") || // wouldnt be appropriate ;) + BLI_testextensie(name, ".mov") || // disabled, suboptimal decoding speed + BLI_testextensie(name, ".mp4") || // disabled, suboptimal decoding speed + BLI_testextensie(name, ".m4v") || // disabled, suboptimal decoding speed BLI_testextensie(name, ".tga") || BLI_testextensie(name, ".png") || BLI_testextensie(name, ".bmp") || -- cgit v1.2.3 From 0fbff1be3ee74f687d46650f546de8d09b3123fd Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Mon, 13 Feb 2012 20:47:29 +0000 Subject: Fix quicktime export being broken in various ways: callback was missing parameter, codec RNA wrapping was wrong, and there was a python script error. --- source/blender/editors/object/object_edit.c | 2 +- source/blender/makesrna/intern/rna_scene.c | 16 ++++++++-------- source/blender/quicktime/apple/qtkit_export.m | 7 ++----- source/blender/quicktime/apple/quicktime_export.c | 2 +- source/blender/quicktime/quicktime_export.h | 2 +- 5 files changed, 13 insertions(+), 16 deletions(-) (limited to 'source/blender') diff --git a/source/blender/editors/object/object_edit.c b/source/blender/editors/object/object_edit.c index 2dc170a8a23..1286ac850f6 100644 --- a/source/blender/editors/object/object_edit.c +++ b/source/blender/editors/object/object_edit.c @@ -1516,7 +1516,7 @@ void OBJECT_OT_game_property_new(wmOperatorType *ot) /* flags */ ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; - RNA_def_enum(ot->srna, "type", gameproperty_type_items, 2, "Type", "Type of game property to add"); + RNA_def_enum(ot->srna, "type", gameproperty_type_items, GPROP_FLOAT, "Type", "Type of game property to add"); RNA_def_string(ot->srna, "name", "", MAX_NAME, "Name", "Name of the game property to add"); } diff --git a/source/blender/makesrna/intern/rna_scene.c b/source/blender/makesrna/intern/rna_scene.c index 1060c1b52ac..f797368ac13 100644 --- a/source/blender/makesrna/intern/rna_scene.c +++ b/source/blender/makesrna/intern/rna_scene.c @@ -821,16 +821,16 @@ static void rna_SceneRender_file_ext_get(PointerRNA *ptr, char *str) #ifdef WITH_QUICKTIME static int rna_RenderSettings_qtcodecsettings_codecType_get(PointerRNA *ptr) { - RenderData *rd= (RenderData*)ptr->data; + QuicktimeCodecSettings *settings = (QuicktimeCodecSettings*)ptr->data; - return quicktime_rnatmpvalue_from_videocodectype(rd->qtcodecsettings.codecType); + return quicktime_rnatmpvalue_from_videocodectype(settings->codecType); } static void rna_RenderSettings_qtcodecsettings_codecType_set(PointerRNA *ptr, int value) { - RenderData *rd= (RenderData*)ptr->data; + QuicktimeCodecSettings *settings = (QuicktimeCodecSettings*)ptr->data; - rd->qtcodecsettings.codecType = quicktime_videocodecType_from_rnatmpvalue(value); + settings->codecType = quicktime_videocodecType_from_rnatmpvalue(value); } static EnumPropertyItem *rna_RenderSettings_qtcodecsettings_codecType_itemf(bContext *C, PointerRNA *ptr, @@ -863,16 +863,16 @@ static EnumPropertyItem *rna_RenderSettings_qtcodecsettings_codecType_itemf(bCon #ifdef USE_QTKIT static int rna_RenderSettings_qtcodecsettings_audiocodecType_get(PointerRNA *ptr) { - RenderData *rd= (RenderData*)ptr->data; + QuicktimeCodecSettings *settings = (QuicktimeCodecSettings*)ptr->data; - return quicktime_rnatmpvalue_from_audiocodectype(rd->qtcodecsettings.audiocodecType); + return quicktime_rnatmpvalue_from_audiocodectype(settings->audiocodecType); } static void rna_RenderSettings_qtcodecsettings_audiocodecType_set(PointerRNA *ptr, int value) { - RenderData *rd= (RenderData*)ptr->data; + QuicktimeCodecSettings *settings = (QuicktimeCodecSettings*)ptr->data; - rd->qtcodecsettings.audiocodecType = quicktime_audiocodecType_from_rnatmpvalue(value); + settings->audiocodecType = quicktime_audiocodecType_from_rnatmpvalue(value); } static EnumPropertyItem *rna_RenderSettings_qtcodecsettings_audiocodecType_itemf(bContext *C, PointerRNA *ptr, diff --git a/source/blender/quicktime/apple/qtkit_export.m b/source/blender/quicktime/apple/qtkit_export.m index 045ef973e91..f709572d0bb 100644 --- a/source/blender/quicktime/apple/qtkit_export.m +++ b/source/blender/quicktime/apple/qtkit_export.m @@ -595,8 +595,7 @@ int start_qt(struct Scene *scene, struct RenderData *rd, int rectx, int recty, R return success; } - -int append_qt(struct RenderData *rd, int frame, int *pixels, int rectx, int recty, ReportList *reports) +int append_qt(struct RenderData *rd, int start_frame, int frame, int *pixels, int rectx, int recty, ReportList *reports) { NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; NSBitmapImageRep *blBitmapFormatImage; @@ -604,14 +603,12 @@ int append_qt(struct RenderData *rd, int frame, int *pixels, int rectx, int rect OSStatus err = noErr; unsigned char *from_Ptr,*to_Ptr; int y,from_i,to_i; - BOOL alpha = (rd->im_format.planes == R_IMF_PLANES_RGBA)? YES: NO; - /* Create bitmap image rep in blender format (32bit RGBA) */ blBitmapFormatImage = [[NSBitmapImageRep alloc] initWithBitmapDataPlanes:NULL pixelsWide:rectx pixelsHigh:recty - bitsPerSample:8 samplesPerPixel:4 hasAlpha:alpha isPlanar:NO + bitsPerSample:8 samplesPerPixel:4 hasAlpha:YES isPlanar:NO colorSpaceName:NSCalibratedRGBColorSpace bitmapFormat:NSAlphaNonpremultipliedBitmapFormat bytesPerRow:rectx*4 diff --git a/source/blender/quicktime/apple/quicktime_export.c b/source/blender/quicktime/apple/quicktime_export.c index 101fcc0a732..71cf87517f5 100644 --- a/source/blender/quicktime/apple/quicktime_export.c +++ b/source/blender/quicktime/apple/quicktime_export.c @@ -604,7 +604,7 @@ int start_qt(struct Scene *scene, struct RenderData *rd, int rectx, int recty, R } -int append_qt(struct RenderData *rd, int frame, int *pixels, int rectx, int recty, ReportList *reports) +int append_qt(struct RenderData *rd, int start_frame, int frame, int *pixels, int rectx, int recty, ReportList *reports) { QT_DoAddVideoSamplesToMedia(frame, pixels, rectx, recty, reports); return 1; diff --git a/source/blender/quicktime/quicktime_export.h b/source/blender/quicktime/quicktime_export.h index 71827b1e202..deaacb0ce39 100644 --- a/source/blender/quicktime/quicktime_export.h +++ b/source/blender/quicktime/quicktime_export.h @@ -57,7 +57,7 @@ struct Scene; struct wmOperatorType; int start_qt(struct Scene *scene, struct RenderData *rd, int rectx, int recty, struct ReportList *reports); //for movie handle (BKE writeavi.c now) -int append_qt(struct RenderData *rd, int frame, int *pixels, int rectx, int recty, struct ReportList *reports); +int append_qt(struct RenderData *rd, int start_frame, int frame, int *pixels, int rectx, int recty, struct ReportList *reports); void end_qt(void); void filepath_qt(char *string, struct RenderData *rd); -- cgit v1.2.3 From a53237f1930553f0aa373f6f4a85d8ad30650411 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 13 Feb 2012 20:54:36 +0000 Subject: use tabs for indentation --- source/blender/blenkernel/intern/sequencer.c | 58 ++++++++++++++-------------- 1 file changed, 29 insertions(+), 29 deletions(-) (limited to 'source/blender') diff --git a/source/blender/blenkernel/intern/sequencer.c b/source/blender/blenkernel/intern/sequencer.c index 904e97c8f67..0790896da0d 100644 --- a/source/blender/blenkernel/intern/sequencer.c +++ b/source/blender/blenkernel/intern/sequencer.c @@ -525,27 +525,27 @@ void build_seqar_cb(ListBase *seqbase, Sequence ***seqar, int *totseq, static void seq_update_sound_bounds_recursive(Scene *scene, Sequence *metaseq) { - Sequence *seq; - - /* for sound we go over full meta tree to update bounds of the sound strips, - since sound is played outside of evaluating the imbufs, */ - for(seq=metaseq->seqbase.first; seq; seq=seq->next) { - if(seq->type == SEQ_META) { - seq_update_sound_bounds_recursive(scene, seq); - } - else if(ELEM(seq->type, SEQ_SOUND, SEQ_SCENE)) { - if(seq->scene_sound) { - int startofs = seq->startofs; - int endofs = seq->endofs; - if(seq->startofs + seq->start < metaseq->start + metaseq->startofs) - startofs = metaseq->start + metaseq->startofs - seq->start; - - if(seq->start + seq->len - seq->endofs > metaseq->start + metaseq->len - metaseq->endofs) - endofs = seq->start + seq->len - metaseq->start - metaseq->len + metaseq->endofs; - sound_move_scene_sound(scene, seq->scene_sound, seq->start + startofs, seq->start+seq->len - endofs, startofs); - } - } - } + Sequence *seq; + + /* for sound we go over full meta tree to update bounds of the sound strips, + * since sound is played outside of evaluating the imbufs, */ + for(seq=metaseq->seqbase.first; seq; seq=seq->next) { + if(seq->type == SEQ_META) { + seq_update_sound_bounds_recursive(scene, seq); + } + else if(ELEM(seq->type, SEQ_SOUND, SEQ_SCENE)) { + if(seq->scene_sound) { + int startofs = seq->startofs; + int endofs = seq->endofs; + if(seq->startofs + seq->start < metaseq->start + metaseq->startofs) + startofs = metaseq->start + metaseq->startofs - seq->start; + + if(seq->start + seq->len - seq->endofs > metaseq->start + metaseq->len - metaseq->endofs) + endofs = seq->start + seq->len - metaseq->start - metaseq->len + metaseq->endofs; + sound_move_scene_sound(scene, seq->scene_sound, seq->start + startofs, seq->start+seq->len - endofs, startofs); + } + } + } } void calc_sequence_disp(Scene *scene, Sequence *seq) @@ -564,11 +564,11 @@ void calc_sequence_disp(Scene *scene, Sequence *seq) seq->handsize= (float)((seq->enddisp-seq->startdisp)/25); } - if(ELEM(seq->type, SEQ_SOUND, SEQ_SCENE)) { - seq_update_sound_bounds(scene, seq); - } - else if(seq->type == SEQ_META) - seq_update_sound_bounds_recursive(scene, seq); + if(ELEM(seq->type, SEQ_SOUND, SEQ_SCENE)) { + seq_update_sound_bounds(scene, seq); + } + else if(seq->type == SEQ_META) + seq_update_sound_bounds_recursive(scene, seq); } void calc_sequence(Scene *scene, Sequence *seq) @@ -2580,8 +2580,8 @@ static void seq_stop_threads() seq_thread_shutdown = TRUE; - pthread_cond_broadcast(&wakeup_cond); - pthread_mutex_unlock(&wakeup_lock); + pthread_cond_broadcast(&wakeup_cond); + pthread_mutex_unlock(&wakeup_lock); for(tslot = running_threads.first; tslot; tslot= tslot->next) { pthread_join(tslot->pthread, NULL); @@ -3232,7 +3232,7 @@ void seq_update_sound_bounds_all(Scene *scene) void seq_update_sound_bounds(Scene* scene, Sequence *seq) { - sound_move_scene_sound_defaults(scene, seq); + sound_move_scene_sound_defaults(scene, seq); /* mute is set in seq_update_muting_recursive */ } -- cgit v1.2.3 From 19ff61bfb3c817ae5707bac1911c062eea98a292 Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Mon, 13 Feb 2012 21:05:04 +0000 Subject: Fix #30155: crash with popup menu open while new .blend file is loaded, CTX_wm_window is then set to NULL and checked in the event queue, but it should be checked for removing handlers too. --- source/blender/editors/interface/interface_regions.c | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'source/blender') diff --git a/source/blender/editors/interface/interface_regions.c b/source/blender/editors/interface/interface_regions.c index 360b58eb0a9..c912bce1c77 100644 --- a/source/blender/editors/interface/interface_regions.c +++ b/source/blender/editors/interface/interface_regions.c @@ -2657,8 +2657,13 @@ void uiPupBlockOperator(bContext *C, uiBlockCreateFunc func, wmOperator *op, int void uiPupBlockClose(bContext *C, uiBlock *block) { if(block->handle) { - UI_remove_popup_handlers(&CTX_wm_window(C)->modalhandlers, block->handle); - ui_popup_block_free(C, block->handle); + wmWindow *win = CTX_wm_window(C); + + /* if loading new .blend while popup is open, window will be NULL */ + if(win) { + UI_remove_popup_handlers(&win->modalhandlers, block->handle); + ui_popup_block_free(C, block->handle); + } } } -- cgit v1.2.3 From 873386b22d13de716b0d0b70fdf4a8acc97ae18b Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Mon, 13 Feb 2012 21:12:14 +0000 Subject: Fix #30170: with file saved in texture painting mode, when going to object mode the image texture is missing. The flag to indicate that the mipmap levels were already loaded into GPU memory was incorrectly set then. --- source/blender/gpu/intern/gpu_draw.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'source/blender') diff --git a/source/blender/gpu/intern/gpu_draw.c b/source/blender/gpu/intern/gpu_draw.c index 926faeb417e..1cd79746aee 100644 --- a/source/blender/gpu/intern/gpu_draw.c +++ b/source/blender/gpu/intern/gpu_draw.c @@ -732,6 +732,8 @@ void GPU_paint_set_mipmap(int mipmap) else GPU_free_image(ima); } + else + ima->tpageflag &= ~IMA_MIPMAP_COMPLETE; } } @@ -742,6 +744,8 @@ void GPU_paint_set_mipmap(int mipmap) glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, gpu_get_mipmap_filter(1)); } + else + ima->tpageflag &= ~IMA_MIPMAP_COMPLETE; } } } @@ -939,7 +943,6 @@ void GPU_free_image(Image *ima) if(ima->bindcode) { glDeleteTextures(1, (GLuint *)&ima->bindcode); ima->bindcode= 0; - ima->tpageflag &= ~IMA_MIPMAP_COMPLETE; } /* free glsl image binding */ @@ -954,8 +957,9 @@ void GPU_free_image(Image *ima) MEM_freeN(ima->repbind); ima->repbind= NULL; - ima->tpageflag &= ~IMA_MIPMAP_COMPLETE; } + + ima->tpageflag &= ~IMA_MIPMAP_COMPLETE; } void GPU_free_images(void) -- cgit v1.2.3 From 2cf28ab2bc6207a16dae9a8e35565381d7d3ba50 Mon Sep 17 00:00:00 2001 From: Jens Verwiebe Date: Tue, 14 Feb 2012 12:24:17 +0000 Subject: ffmpeg: don't use flags:loop for .h264, this allows to see the video in OSX quickview and Quicktimeplayer( windows ? ) --- source/blender/blenkernel/intern/writeffmpeg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender') diff --git a/source/blender/blenkernel/intern/writeffmpeg.c b/source/blender/blenkernel/intern/writeffmpeg.c index bae4d9c4b4e..c4c3eb4a8b2 100644 --- a/source/blender/blenkernel/intern/writeffmpeg.c +++ b/source/blender/blenkernel/intern/writeffmpeg.c @@ -1244,7 +1244,7 @@ static void ffmpeg_set_expert_options(RenderData *rd) * The other options were taken from the libx264-default.preset * included in the ffmpeg distribution. */ - ffmpeg_property_add_string(rd, "video", "flags:loop"); +// ffmpeg_property_add_string(rd, "video", "flags:loop"); // this breakes compatibility for QT ffmpeg_property_add_string(rd, "video", "cmp:chroma"); ffmpeg_property_add_string(rd, "video", "partitions:parti4x4"); ffmpeg_property_add_string(rd, "video", "partitions:partp8x8"); -- cgit v1.2.3 From 40e2942f259f9de59fcf93fc99121ff46f630398 Mon Sep 17 00:00:00 2001 From: Antony Riakiotakis Date: Tue, 14 Feb 2012 13:25:23 +0000 Subject: Fix related to #30152, rainbow colours produced when loading hdr image to 3D viewport/ the Nyan cat bug. Issue is caused by scaling for power of 2 dimensions and mipmapping that happens through GLU. It looks like the library cannot handle float colour values above 1.0 correctly. Since we are close to release I will just clamp the srgb result for now even though it will result in a small performance loss for 16 bit textures only. I tried a few things before that, glGenerateMipmaps + no scaling (supported for 2.0 GL hardware and up), or using our own scaling instead of glu among them which worked very nicely and gave a speedup too. However, since we are close to release and there may be issues with GPU mipmap generation, see: http://www.gamedev.net/topic/495747-another-glgeneratemipmap-question/ (old discussion but better be sure than sorry) I went for the most compatible solution. Maybe after release this can be tested if other devs agree. --- source/blender/gpu/intern/gpu_draw.c | 6 +++++- source/blender/imbuf/IMB_imbuf.h | 1 + source/blender/imbuf/intern/divers.c | 7 +++++++ 3 files changed, 13 insertions(+), 1 deletion(-) (limited to 'source/blender') diff --git a/source/blender/gpu/intern/gpu_draw.c b/source/blender/gpu/intern/gpu_draw.c index 1cd79746aee..7a61ee2eebc 100644 --- a/source/blender/gpu/intern/gpu_draw.c +++ b/source/blender/gpu/intern/gpu_draw.c @@ -518,6 +518,8 @@ int GPU_verify_image(Image *ima, ImageUser *iuser, int tftile, int compare, int IMB_buffer_float_from_float(srgb_frect, ibuf->rect_float, ibuf->channels, IB_PROFILE_SRGB, ibuf->profile, 0, ibuf->x, ibuf->y, ibuf->x, ibuf->x); + /* clamp buffer colours to 1.0 to avoid artifacts due to glu for hdr images */ + IMB_buffer_float_clamp(srgb_frect, ibuf->x, ibuf->y); frect= srgb_frect + texwinsy*ibuf->x + texwinsx; } else @@ -541,6 +543,8 @@ int GPU_verify_image(Image *ima, ImageUser *iuser, int tftile, int compare, int IMB_buffer_float_from_float(srgb_frect, ibuf->rect_float, ibuf->channels, IB_PROFILE_SRGB, ibuf->profile, 0, ibuf->x, ibuf->y, ibuf->x, ibuf->x); + /* clamp buffer colours to 1.0 to avoid artifacts due to glu for hdr images */ + IMB_buffer_float_clamp(srgb_frect, ibuf->x, ibuf->y); } else frect= ibuf->rect_float; @@ -615,7 +619,7 @@ int GPU_verify_image(Image *ima, ImageUser *iuser, int tftile, int compare, int if (!(gpu_get_mipmap() && mipmap)) { if(use_high_bit_depth) - glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA16, rectw, recth, 0, GL_RGBA, GL_FLOAT, frect); + glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA16, rectw, recth, 0, GL_RGBA, GL_FLOAT, frect); else glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, rectw, recth, 0, GL_RGBA, GL_UNSIGNED_BYTE, rect); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR); diff --git a/source/blender/imbuf/IMB_imbuf.h b/source/blender/imbuf/IMB_imbuf.h index 996bfd35581..07f1b9e4683 100644 --- a/source/blender/imbuf/IMB_imbuf.h +++ b/source/blender/imbuf/IMB_imbuf.h @@ -391,6 +391,7 @@ void IMB_buffer_float_from_float(float *rect_to, const float *rect_from, void IMB_buffer_byte_from_byte(unsigned char *rect_to, const unsigned char *rect_from, int profile_to, int profile_from, int predivide, int width, int height, int stride_to, int stride_from); +void IMB_buffer_float_clamp(float *buf, int width, int height); /** * Change the ordering of the color bytes pointed to by rect from diff --git a/source/blender/imbuf/intern/divers.c b/source/blender/imbuf/intern/divers.c index a8ca282de66..d9ec3bf60c6 100644 --- a/source/blender/imbuf/intern/divers.c +++ b/source/blender/imbuf/intern/divers.c @@ -742,3 +742,10 @@ void IMB_color_to_bw(ImBuf *ibuf) rct[0]= rct[1]= rct[2]= rgb_to_grayscale_byte(rct); } } + +void IMB_buffer_float_clamp(float *buf, int width, int height){ + int i, total = width*height*4; + for(i = 0; i < total; i++){ + buf[i] = MIN2(1.0, buf[i]); + } +} -- cgit v1.2.3 From 5bff5577445c8a032be584fca847963dcbb1ad68 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Tue, 14 Feb 2012 17:03:06 +0000 Subject: Camera tracking: corrected default values for some reconstruction-related properties. --- source/blender/makesrna/intern/rna_tracking.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'source/blender') diff --git a/source/blender/makesrna/intern/rna_tracking.c b/source/blender/makesrna/intern/rna_tracking.c index 993c0ca0bde..aff8a85dd26 100644 --- a/source/blender/makesrna/intern/rna_tracking.c +++ b/source/blender/makesrna/intern/rna_tracking.c @@ -546,6 +546,7 @@ static void rna_def_trackingSettings(BlenderRNA *brna) prop= RNA_def_property(srna, "distance", PROP_FLOAT, PROP_NONE); RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_float_sdna(prop, NULL, "dist"); + RNA_def_property_float_default(prop, 1.0f); RNA_def_property_ui_text(prop, "Distance", "Distance between two bundles used for scene scaling"); /* frames count */ @@ -665,6 +666,7 @@ static void rna_def_trackingSettings(BlenderRNA *brna) RNA_def_property_float_sdna(prop, NULL, "object_distance"); RNA_def_property_ui_text(prop, "Distance", "Distance between two bundles used for object scaling"); RNA_def_property_range(prop, 0.001, 10000); + RNA_def_property_float_default(prop, 1.0f); RNA_def_property_ui_range(prop, 0.001, 10000.0, 1, 3); } @@ -1227,6 +1229,7 @@ static void rna_def_trackingObject(BlenderRNA *brna) RNA_def_property_float_sdna(prop, NULL, "scale"); RNA_def_property_range(prop, 0.0001f, 10000.0f); RNA_def_property_ui_range(prop, 0.0001f, 10000.0, 1, 4); + RNA_def_property_float_default(prop, 1.0f); RNA_def_property_ui_text(prop, "Scale", "Scale of object solution in camera space"); RNA_def_property_update(prop, NC_MOVIECLIP|NA_EDITED, "rna_trackingObject_flushUpdate"); } -- cgit v1.2.3 From 9d32f5dcd6cd16a95bc9c38afb097e870467292f Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Wed, 15 Feb 2012 13:41:33 +0000 Subject: Movie clip: comment what magic constant 768 means in DNA structure --- source/blender/makesdna/DNA_movieclip_types.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender') diff --git a/source/blender/makesdna/DNA_movieclip_types.h b/source/blender/makesdna/DNA_movieclip_types.h index e5c706d2a3a..80728cd9817 100644 --- a/source/blender/makesdna/DNA_movieclip_types.h +++ b/source/blender/makesdna/DNA_movieclip_types.h @@ -51,7 +51,7 @@ typedef struct MovieClipUser { } MovieClipUser; typedef struct MovieClipProxy { - char dir[768]; /* custom directory for index and proxy files (defaults to BL_proxy) */ + char dir[768]; /* 768=FILE_MAXDIR custom directory for index and proxy files (defaults to BL_proxy) */ short tc; /* time code in use */ short quality; /* proxy build quality */ -- cgit v1.2.3 From 47d1c813d0164de9852a65019b22b70274c1d4e3 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Wed, 15 Feb 2012 14:05:28 +0000 Subject: FFmpeg settings can't be animated. Clear animation flag to prevent confusing warnings appear on the screen. --- source/blender/makesrna/intern/rna_scene.c | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'source/blender') diff --git a/source/blender/makesrna/intern/rna_scene.c b/source/blender/makesrna/intern/rna_scene.c index f797368ac13..0ece6902012 100644 --- a/source/blender/makesrna/intern/rna_scene.c +++ b/source/blender/makesrna/intern/rna_scene.c @@ -2863,65 +2863,76 @@ static void rna_def_scene_ffmpeg_settings(BlenderRNA *brna) #ifdef WITH_FFMPEG prop = RNA_def_property(srna, "format", PROP_ENUM, PROP_NONE); RNA_def_property_enum_bitflag_sdna(prop, NULL, "type"); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_enum_items(prop, ffmpeg_format_items); RNA_def_property_ui_text(prop, "Format", "Output file format"); RNA_def_property_update(prop, NC_SCENE|ND_RENDER_OPTIONS, "rna_FFmpegSettings_codec_settings_update"); prop = RNA_def_property(srna, "codec", PROP_ENUM, PROP_NONE); RNA_def_property_enum_bitflag_sdna(prop, NULL, "codec"); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_enum_items(prop, ffmpeg_codec_items); RNA_def_property_ui_text(prop, "Codec", "FFmpeg codec to use"); RNA_def_property_update(prop, NC_SCENE|ND_RENDER_OPTIONS, "rna_FFmpegSettings_codec_settings_update"); prop = RNA_def_property(srna, "video_bitrate", PROP_INT, PROP_NONE); RNA_def_property_int_sdna(prop, NULL, "video_bitrate"); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_range(prop, 1, 14000); RNA_def_property_ui_text(prop, "Bitrate", "Video bitrate (kb/s)"); RNA_def_property_update(prop, NC_SCENE|ND_RENDER_OPTIONS, NULL); prop = RNA_def_property(srna, "minrate", PROP_INT, PROP_NONE); RNA_def_property_int_sdna(prop, NULL, "rc_min_rate"); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_range(prop, 0, 9000); RNA_def_property_ui_text(prop, "Min Rate", "Rate control: min rate (kb/s)"); RNA_def_property_update(prop, NC_SCENE|ND_RENDER_OPTIONS, NULL); prop = RNA_def_property(srna, "maxrate", PROP_INT, PROP_NONE); RNA_def_property_int_sdna(prop, NULL, "rc_max_rate"); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_range(prop, 1, 14000); RNA_def_property_ui_text(prop, "Max Rate", "Rate control: max rate (kb/s)"); RNA_def_property_update(prop, NC_SCENE|ND_RENDER_OPTIONS, NULL); prop= RNA_def_property(srna, "muxrate", PROP_INT, PROP_NONE); RNA_def_property_int_sdna(prop, NULL, "mux_rate"); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_range(prop, 0, 100000000); RNA_def_property_ui_text(prop, "Mux Rate", "Mux rate (bits/s(!))"); RNA_def_property_update(prop, NC_SCENE|ND_RENDER_OPTIONS, NULL); prop = RNA_def_property(srna, "gopsize", PROP_INT, PROP_NONE); RNA_def_property_int_sdna(prop, NULL, "gop_size"); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_range(prop, 0, 100); RNA_def_property_ui_text(prop, "GOP Size", "Distance between key frames"); RNA_def_property_update(prop, NC_SCENE|ND_RENDER_OPTIONS, NULL); prop = RNA_def_property(srna, "buffersize", PROP_INT, PROP_NONE); RNA_def_property_int_sdna(prop, NULL, "rc_buffer_size"); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_range(prop, 0, 2000); RNA_def_property_ui_text(prop, "Buffersize", "Rate control: buffer size (kb)"); RNA_def_property_update(prop, NC_SCENE|ND_RENDER_OPTIONS, NULL); prop = RNA_def_property(srna, "packetsize", PROP_INT, PROP_NONE); RNA_def_property_int_sdna(prop, NULL, "mux_packet_size"); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_range(prop, 0, 16384); RNA_def_property_ui_text(prop, "Mux Packet Size", "Mux packet size (byte)"); RNA_def_property_update(prop, NC_SCENE|ND_RENDER_OPTIONS, NULL); prop= RNA_def_property(srna, "use_autosplit", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_sdna(prop, NULL, "flags", FFMPEG_AUTOSPLIT_OUTPUT); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_ui_text(prop, "Autosplit Output", "Autosplit output at 2GB boundary"); RNA_def_property_update(prop, NC_SCENE|ND_RENDER_OPTIONS, NULL); prop = RNA_def_property(srna, "use_lossless_output", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_sdna(prop, NULL, "flags", FFMPEG_LOSSLESS_OUTPUT); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_boolean_funcs(prop, NULL, "rna_FFmpegSettings_lossless_output_set"); RNA_def_property_ui_text(prop, "Lossless Output", "Use lossless output for video streams"); RNA_def_property_update(prop, NC_SCENE|ND_RENDER_OPTIONS, NULL); -- cgit v1.2.3 From bd249c3bffed10a7634ed83fcd5cd07729182689 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Wed, 15 Feb 2012 16:06:48 +0000 Subject: Camera tracking: animation datablock for MovieClip Added AnimData block to MovieClip datablock which allows to animate different properties in clip. Currently supports animation of stabilization influence only. --- source/blender/blenkernel/intern/anim_sys.c | 4 ++ source/blender/blenkernel/intern/movieclip.c | 3 ++ source/blender/blenloader/intern/readfile.c | 5 +++ source/blender/blenloader/intern/writefile.c | 3 ++ source/blender/makesdna/DNA_movieclip_types.h | 2 + source/blender/makesrna/intern/rna_movieclip.c | 16 ++++++++ source/blender/makesrna/intern/rna_tracking.c | 56 ++++++++++++++++++++++++++ 7 files changed, 89 insertions(+) (limited to 'source/blender') diff --git a/source/blender/blenkernel/intern/anim_sys.c b/source/blender/blenkernel/intern/anim_sys.c index b32421a6b3d..9ae3ad95d5c 100644 --- a/source/blender/blenkernel/intern/anim_sys.c +++ b/source/blender/blenkernel/intern/anim_sys.c @@ -88,6 +88,7 @@ short id_type_can_have_animdata (ID *id) case ID_LA: case ID_CA: case ID_WO: case ID_SPK: case ID_SCE: + case ID_MC: { return 1; } @@ -2335,6 +2336,9 @@ void BKE_animsys_evaluate_all_animation (Main *main, Scene *scene, float ctime) /* speakers */ EVAL_ANIM_IDS(main->speaker.first, ADT_RECALC_ANIM); + /* movie clips */ + EVAL_ANIM_IDS(main->movieclip.first, ADT_RECALC_ANIM); + /* objects */ /* ADT_RECALC_ANIM doesn't need to be supplied here, since object AnimData gets * this tagged by Depsgraph on framechange. This optimisation means that objects diff --git a/source/blender/blenkernel/intern/movieclip.c b/source/blender/blenkernel/intern/movieclip.c index c90faa7e0ca..03fe18e4bd8 100644 --- a/source/blender/blenkernel/intern/movieclip.c +++ b/source/blender/blenkernel/intern/movieclip.c @@ -64,6 +64,7 @@ #include "BLI_mempool.h" #include "BLI_threads.h" +#include "BKE_animsys.h" #include "BKE_constraint.h" #include "BKE_library.h" #include "BKE_global.h" @@ -889,6 +890,8 @@ static void free_buffers(MovieClip *clip) IMB_free_anim(clip->anim); clip->anim= FALSE; } + + BKE_free_animdata((ID *) clip); } void BKE_movieclip_reload(MovieClip *clip) diff --git a/source/blender/blenloader/intern/readfile.c b/source/blender/blenloader/intern/readfile.c index cff4f3965fa..377c438f874 100644 --- a/source/blender/blenloader/intern/readfile.c +++ b/source/blender/blenloader/intern/readfile.c @@ -6051,6 +6051,8 @@ static void direct_link_movieclip(FileData *fd, MovieClip *clip) MovieTracking *tracking= &clip->tracking; MovieTrackingObject *object; + clip->adt= newdataadr(fd, clip->adt); + if(fd->movieclipmap) clip->cache= newmclipadr(fd, clip->cache); else clip->cache= NULL; @@ -6088,6 +6090,9 @@ static void lib_link_movieclip(FileData *fd, Main *main) clip= main->movieclip.first; while(clip) { if(clip->id.flag & LIB_NEEDLINK) { + if (clip->adt) + lib_link_animdata(fd, &clip->id, clip->adt); + clip->gpd= newlibadr_us(fd, clip->id.lib, clip->gpd); clip->id.flag -= LIB_NEEDLINK; diff --git a/source/blender/blenloader/intern/writefile.c b/source/blender/blenloader/intern/writefile.c index ae4bc936193..e221f261d55 100644 --- a/source/blender/blenloader/intern/writefile.c +++ b/source/blender/blenloader/intern/writefile.c @@ -2564,6 +2564,9 @@ static void write_movieclips(WriteData *wd, ListBase *idbase) MovieTrackingObject *object; writestruct(wd, ID_MC, "MovieClip", 1, clip); + if(clip->adt) + write_animdata(wd, clip->adt); + write_movieTracks(wd, &tracking->tracks); write_movieReconstruction(wd, &tracking->reconstruction); diff --git a/source/blender/makesdna/DNA_movieclip_types.h b/source/blender/makesdna/DNA_movieclip_types.h index 80728cd9817..71029293d09 100644 --- a/source/blender/makesdna/DNA_movieclip_types.h +++ b/source/blender/makesdna/DNA_movieclip_types.h @@ -39,6 +39,7 @@ #include "DNA_tracking_types.h" struct anim; +struct AnimData; struct bGPdata; struct ImBuf; struct MovieClipProxy; @@ -61,6 +62,7 @@ typedef struct MovieClipProxy { typedef struct MovieClip { ID id; + struct AnimData *adt; /* animation data (must be immediately after id for utilities to use it) */ char name[1024]; /* file path, 1024 = FILE_MAX */ diff --git a/source/blender/makesrna/intern/rna_movieclip.c b/source/blender/makesrna/intern/rna_movieclip.c index 1d79040c4eb..a640f996b1a 100644 --- a/source/blender/makesrna/intern/rna_movieclip.c +++ b/source/blender/makesrna/intern/rna_movieclip.c @@ -88,57 +88,70 @@ static void rna_def_movieclip_proxy(BlenderRNA *brna) /* build proxy sized */ prop= RNA_def_property(srna, "build_25", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_sdna(prop, NULL, "build_size_flag", MCLIP_PROXY_SIZE_25); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_ui_text(prop, "25%", "Build proxy resolution 25% of the original footage dimension"); prop= RNA_def_property(srna, "build_50", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_sdna(prop, NULL, "build_size_flag", MCLIP_PROXY_SIZE_50); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_ui_text(prop, "50%", "Build proxy resolution 50% of the original footage dimension"); prop= RNA_def_property(srna, "build_75", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_sdna(prop, NULL, "build_size_flag", MCLIP_PROXY_SIZE_75); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_ui_text(prop, "75%", "Build proxy resolution 75% of the original footage dimension"); prop= RNA_def_property(srna, "build_100", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_sdna(prop, NULL, "build_size_flag", MCLIP_PROXY_SIZE_100); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_ui_text(prop, "100%", "Build proxy resolution 100% of the original footage dimension"); prop= RNA_def_property(srna, "build_undistorted_25", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_sdna(prop, NULL, "build_size_flag", MCLIP_PROXY_UNDISTORTED_SIZE_25); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_ui_text(prop, "25%", "Build proxy resolution 25% of the original undistorted footage dimension"); prop= RNA_def_property(srna, "build_undistorted_50", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_sdna(prop, NULL, "build_size_flag", MCLIP_PROXY_UNDISTORTED_SIZE_50); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_ui_text(prop, "50%", "Build proxy resolution 50% of the original undistorted footage dimension"); prop= RNA_def_property(srna, "build_undistorted_75", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_sdna(prop, NULL, "build_size_flag", MCLIP_PROXY_UNDISTORTED_SIZE_75); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_ui_text(prop, "75%", "Build proxy resolution 75% of the original undistorted footage dimension"); prop= RNA_def_property(srna, "build_undistorted_100", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_sdna(prop, NULL, "build_size_flag", MCLIP_PROXY_UNDISTORTED_SIZE_100); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_ui_text(prop, "100%", "Build proxy resolution 100% of the original undistorted footage dimension"); /* build timecodes */ prop= RNA_def_property(srna, "build_record_run", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_sdna(prop, NULL, "build_tc_flag", IMB_TC_RECORD_RUN); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_ui_text(prop, "Rec Run", "Build record run time code index"); prop= RNA_def_property(srna, "build_free_run", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_sdna(prop, NULL, "build_tc_flag", IMB_TC_FREE_RUN); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_ui_text(prop, "Free Run", "Build free run time code index"); prop= RNA_def_property(srna, "build_free_run_rec_date", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_sdna(prop, NULL, "build_tc_flag", IMB_TC_INTERPOLATED_REC_DATE_FREE_RUN); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_ui_text(prop, "Free Run (Rec Date)", "Build free run time code index using Record Date/Time"); /* quality of proxied image */ prop= RNA_def_property(srna, "quality", PROP_INT, PROP_UNSIGNED); RNA_def_property_int_sdna(prop, NULL, "quality"); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_ui_text(prop, "Quality", "JPEG quality of proxy images"); RNA_def_property_ui_range(prop, 1, 100, 1, 0); prop= RNA_def_property(srna, "timecode", PROP_ENUM, PROP_NONE); RNA_def_property_enum_sdna(prop, NULL, "tc"); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_enum_items(prop, clip_tc_items); RNA_def_property_ui_text(prop, "Timecode", ""); RNA_def_property_update(prop, NC_MOVIECLIP|ND_DISPLAY, NULL); @@ -146,6 +159,7 @@ static void rna_def_movieclip_proxy(BlenderRNA *brna) /* directory */ prop= RNA_def_property(srna, "directory", PROP_STRING, PROP_DIRPATH); RNA_def_property_string_sdna(prop, NULL, "dir"); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_ui_text(prop, "Directory", "Location to store the proxy files"); RNA_def_property_update(prop, NC_MOVIECLIP|ND_DISPLAY, "rna_MovieClip_reload_update"); } @@ -223,6 +237,7 @@ static void rna_def_movieclip(BlenderRNA *brna) /* use proxy */ prop= RNA_def_property(srna, "use_proxy", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_sdna(prop, NULL, "flag", MCLIP_USE_PROXY); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_ui_text(prop, "Use Proxy / Timecode", "Use a preview proxy and/or timecode index for this clip"); RNA_def_property_update(prop, NC_MOVIECLIP|ND_DISPLAY, NULL); @@ -247,6 +262,7 @@ static void rna_def_movieclip(BlenderRNA *brna) /* custom proxy directory */ prop= RNA_def_property(srna, "use_proxy_custom_directory", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_sdna(prop, NULL, "flag", MCLIP_USE_PROXY_CUSTOM_DIR); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_ui_text(prop, "Proxy Custom Directory", "Create proxy images in a custom directory (default is movie location)"); RNA_def_property_update(prop, NC_MOVIECLIP|ND_DISPLAY, "rna_MovieClip_reload_update"); diff --git a/source/blender/makesrna/intern/rna_tracking.c b/source/blender/makesrna/intern/rna_tracking.c index aff8a85dd26..ba4e5199f73 100644 --- a/source/blender/makesrna/intern/rna_tracking.c +++ b/source/blender/makesrna/intern/rna_tracking.c @@ -54,6 +54,11 @@ #include "WM_api.h" +static char *rna_tracking_path(PointerRNA *UNUSED(ptr)) +{ + return BLI_sprintfN("tracking"); +} + static void rna_tracking_defaultSettings_levelsUpdate(Main *UNUSED(bmain), Scene *scene, PointerRNA *ptr) { MovieClip *clip= (MovieClip*)ptr->id.data; @@ -88,6 +93,13 @@ static void rna_tracking_defaultSettings_searchUpdate(Main *UNUSED(bmain), Scene settings->default_pattern_size= settings->default_search_size; } +static char *rna_trackingTrack_path(PointerRNA *ptr) +{ + MovieTrackingTrack *track = (MovieTrackingTrack *) ptr->data; + + return BLI_sprintfN("tracking.tracks[\"%s\"]", track->name); +} + static void rna_trackingTracks_begin(CollectionPropertyIterator *iter, PointerRNA *ptr) { MovieClip *clip= (MovieClip*)ptr->id.data; @@ -228,6 +240,11 @@ static void rna_tracking_trackerPyramid_update(Main *UNUSED(bmain), Scene *UNUSE BKE_tracking_clamp_track(track, CLAMP_PYRAMID_LEVELS); } +static char *rna_trackingCamera_path(PointerRNA *UNUSED(ptr)) +{ + return BLI_sprintfN("tracking.camera"); +} + static float rna_trackingCamera_focal_mm_get(PointerRNA *ptr) { MovieClip *clip= (MovieClip*)ptr->id.data; @@ -252,6 +269,11 @@ static void rna_trackingCamera_focal_mm_set(PointerRNA *ptr, float value) camera->focal= value; } +static char *rna_trackingStabilization_path(PointerRNA *UNUSED(ptr)) +{ + return BLI_sprintfN("tracking.stabilization"); +} + static int rna_track_2d_stabilization(CollectionPropertyIterator *UNUSED(iter), void *data) { MovieTrackingTrack *track= (MovieTrackingTrack*)data; @@ -681,11 +703,13 @@ static void rna_def_trackingCamera(BlenderRNA *brna) {0, NULL, 0, NULL, NULL}}; srna= RNA_def_struct(brna, "MovieTrackingCamera", NULL); + RNA_def_struct_path_func(srna, "rna_trackingCamera_path"); RNA_def_struct_ui_text(srna, "Movie tracking camera data", "Match-moving camera data for tracking"); /* Sensor */ prop= RNA_def_property(srna, "sensor_width", PROP_FLOAT, PROP_NONE); RNA_def_property_float_sdna(prop, NULL, "sensor_width"); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_range(prop, 0.0f, 500.0f); RNA_def_property_ui_text(prop, "Sensor", "Width of CCD sensor in millimeters"); RNA_def_property_update(prop, NC_MOVIECLIP|NA_EDITED, NULL); @@ -693,6 +717,7 @@ static void rna_def_trackingCamera(BlenderRNA *brna) /* Focal Length */ prop= RNA_def_property(srna, "focal_length", PROP_FLOAT, PROP_NONE); RNA_def_property_float_sdna(prop, NULL, "focal"); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_range(prop, 0.0001f, 5000.0f); RNA_def_property_float_funcs(prop, "rna_trackingCamera_focal_mm_get", "rna_trackingCamera_focal_mm_set", NULL); RNA_def_property_ui_text(prop, "Focal Length", "Camera's focal length"); @@ -701,6 +726,7 @@ static void rna_def_trackingCamera(BlenderRNA *brna) /* Focal Length in pixels */ prop= RNA_def_property(srna, "focal_length_pixels", PROP_FLOAT, PROP_NONE); RNA_def_property_float_sdna(prop, NULL, "focal"); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_range(prop, 0.0f, 5000.0f); RNA_def_property_ui_text(prop, "Focal Length", "Camera's focal length"); RNA_def_property_update(prop, NC_MOVIECLIP|NA_EDITED, NULL); @@ -709,6 +735,7 @@ static void rna_def_trackingCamera(BlenderRNA *brna) prop= RNA_def_property(srna, "units", PROP_ENUM, PROP_NONE); RNA_def_property_enum_sdna(prop, NULL, "units"); RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_enum_items(prop, camera_units_items); RNA_def_property_ui_text(prop, "Units", "Units used for camera focal length"); @@ -716,24 +743,28 @@ static void rna_def_trackingCamera(BlenderRNA *brna) prop= RNA_def_property(srna, "principal", PROP_FLOAT, PROP_NONE); RNA_def_property_array(prop, 2); RNA_def_property_float_sdna(prop, NULL, "principal"); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_ui_text(prop, "Principal Point", "Optical center of lens"); RNA_def_property_update(prop, NC_MOVIECLIP|NA_EDITED, NULL); /* Radial distortion parameters */ prop= RNA_def_property(srna, "k1", PROP_FLOAT, PROP_NONE); RNA_def_property_float_sdna(prop, NULL, "k1"); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_ui_range(prop, -10, 10, .1, 3); RNA_def_property_ui_text(prop, "K1", "First coefficient of third order polynomial radial distortion"); RNA_def_property_update(prop, NC_MOVIECLIP|NA_EDITED, "rna_tracking_flushUpdate"); prop= RNA_def_property(srna, "k2", PROP_FLOAT, PROP_NONE); RNA_def_property_float_sdna(prop, NULL, "k2"); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_ui_range(prop, -10, 10, .1, 3); RNA_def_property_ui_text(prop, "K2", "Second coefficient of third order polynomial radial distortion"); RNA_def_property_update(prop, NC_MOVIECLIP|NA_EDITED, "rna_tracking_flushUpdate"); prop= RNA_def_property(srna, "k3", PROP_FLOAT, PROP_NONE); RNA_def_property_float_sdna(prop, NULL, "k3"); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_ui_range(prop, -10, 10, .1, 3); RNA_def_property_ui_text(prop, "K3", "Third coefficient of third order polynomial radial distortion"); RNA_def_property_update(prop, NC_MOVIECLIP|NA_EDITED, "rna_tracking_flushUpdate"); @@ -741,6 +772,7 @@ static void rna_def_trackingCamera(BlenderRNA *brna) /* pixel aspect */ prop= RNA_def_property(srna, "pixel_aspect", PROP_FLOAT, PROP_XYZ); RNA_def_property_float_sdna(prop, NULL, "pixel_aspect"); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_range(prop, 0.1f, 5000.0f); RNA_def_property_ui_range(prop, 0.1f, 5000.0f, 1, 2); RNA_def_property_ui_text(prop, "Pixel Aspect Ratio", "Pixel aspect ratio"); @@ -822,6 +854,7 @@ static void rna_def_trackingTrack(BlenderRNA *brna) rna_def_trackingMarker(brna); srna= RNA_def_struct(brna, "MovieTrackingTrack", NULL); + RNA_def_struct_path_func(srna, "rna_trackingTrack_path"); RNA_def_struct_ui_text(srna, "Movie tracking track data", "Match-moving track data for tracking"); RNA_def_struct_ui_icon(srna, ICON_ANIM_DATA); @@ -838,6 +871,7 @@ static void rna_def_trackingTrack(BlenderRNA *brna) RNA_def_property_array(prop, 2); RNA_def_property_ui_range(prop, -FLT_MAX, FLT_MAX, 1, 5); RNA_def_property_float_sdna(prop, NULL, "pat_min"); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_ui_text(prop, "Pattern Min", "Left-bottom corner of pattern area in normalized coordinates relative to marker position"); RNA_def_property_update(prop, NC_MOVIECLIP|NA_EDITED, "rna_tracking_trackerPattern_update"); @@ -845,6 +879,7 @@ static void rna_def_trackingTrack(BlenderRNA *brna) RNA_def_property_array(prop, 2); RNA_def_property_ui_range(prop, -FLT_MAX, FLT_MAX, 1, 5); RNA_def_property_float_sdna(prop, NULL, "pat_max"); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_ui_text(prop, "Pattern Max", "Right-bottom corner of pattern area in normalized coordinates relative to marker position"); RNA_def_property_update(prop, NC_MOVIECLIP|NA_EDITED, "rna_tracking_trackerPattern_update"); @@ -853,6 +888,7 @@ static void rna_def_trackingTrack(BlenderRNA *brna) RNA_def_property_array(prop, 2); RNA_def_property_ui_range(prop, -FLT_MAX, FLT_MAX, 1, 5); RNA_def_property_float_sdna(prop, NULL, "search_min"); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_ui_text(prop, "Search Min", "Left-bottom corner of search area in normalized coordinates relative to marker position"); RNA_def_property_update(prop, NC_MOVIECLIP|NA_EDITED, "rna_tracking_trackerSearch_update"); @@ -860,6 +896,7 @@ static void rna_def_trackingTrack(BlenderRNA *brna) RNA_def_property_array(prop, 2); RNA_def_property_ui_range(prop, -FLT_MAX, FLT_MAX, 1, 5); RNA_def_property_float_sdna(prop, NULL, "search_max"); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_ui_text(prop, "Search Max", "Right-bottom corner of search area in normalized coordinates relative to marker position"); RNA_def_property_update(prop, NC_MOVIECLIP|NA_EDITED, "rna_tracking_trackerSearch_update"); @@ -867,6 +904,7 @@ static void rna_def_trackingTrack(BlenderRNA *brna) prop= RNA_def_property(srna, "frames_limit", PROP_INT, PROP_NONE); RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_int_sdna(prop, NULL, "frames_limit"); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_range(prop, 0, SHRT_MAX); RNA_def_property_ui_text(prop, "Frames Limit", "Every tracking cycle, this number of frames are tracked"); @@ -874,6 +912,7 @@ static void rna_def_trackingTrack(BlenderRNA *brna) prop= RNA_def_property(srna, "pattern_match", PROP_ENUM, PROP_NONE); RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_enum_sdna(prop, NULL, "pattern_match"); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_enum_items(prop, pattern_match_items); RNA_def_property_ui_text(prop, "Pattern Match", "Track pattern from given frame when tracking marker to next frame"); @@ -881,6 +920,7 @@ static void rna_def_trackingTrack(BlenderRNA *brna) prop= RNA_def_property(srna, "margin", PROP_INT, PROP_NONE); RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_int_sdna(prop, NULL, "margin"); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_range(prop, 0, 300); RNA_def_property_ui_text(prop, "Margin", "Distance from image boudary at which marker stops tracking"); @@ -888,6 +928,7 @@ static void rna_def_trackingTrack(BlenderRNA *brna) prop= RNA_def_property(srna, "tracker", PROP_ENUM, PROP_NONE); RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_enum_items(prop, tracker_items); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_ui_text(prop, "Tracker", "Tracking algorithm to use"); RNA_def_property_update(prop, NC_MOVIECLIP|NA_EDITED, "rna_tracking_trackerAlgorithm_update"); @@ -895,6 +936,7 @@ static void rna_def_trackingTrack(BlenderRNA *brna) prop= RNA_def_property(srna, "pyramid_levels", PROP_INT, PROP_NONE); RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_int_sdna(prop, NULL, "pyramid_levels"); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_range(prop, 1, 16); RNA_def_property_ui_text(prop, "Pyramid levels", "Number of pyramid levels (increase on blurry footage)"); RNA_def_property_update(prop, NC_MOVIECLIP|NA_EDITED, "rna_tracking_trackerPyramid_update"); @@ -919,24 +961,28 @@ static void rna_def_trackingTrack(BlenderRNA *brna) /* use_red_channel */ prop= RNA_def_property(srna, "use_red_channel", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_negative_sdna(prop, NULL, "flag", TRACK_DISABLE_RED); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_ui_text(prop, "Use Red Channel", "Use red channel from footage for tracking"); RNA_def_property_update(prop, NC_MOVIECLIP|ND_DISPLAY, NULL); /* use_green_channel */ prop= RNA_def_property(srna, "use_green_channel", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_negative_sdna(prop, NULL, "flag", TRACK_DISABLE_GREEN); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_ui_text(prop, "Use Green Channel", "Use green channel from footage for tracking"); RNA_def_property_update(prop, NC_MOVIECLIP|ND_DISPLAY, NULL); /* use_blue_channel */ prop= RNA_def_property(srna, "use_blue_channel", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_negative_sdna(prop, NULL, "flag", TRACK_DISABLE_BLUE); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_ui_text(prop, "Use Blue Channel", "Use blue channel from footage for tracking"); RNA_def_property_update(prop, NC_MOVIECLIP|ND_DISPLAY, NULL); /* preview_grayscale */ prop= RNA_def_property(srna, "use_grayscale_preview", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_sdna(prop, NULL, "flag", TRACK_PREVIEW_GRAYSCALE); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_ui_text(prop, "Grayscale", "Display what the tracking algorithm sees in the preview"); RNA_def_property_update(prop, NC_MOVIECLIP|ND_DISPLAY, NULL); @@ -956,6 +1002,7 @@ static void rna_def_trackingTrack(BlenderRNA *brna) /* hide */ prop= RNA_def_property(srna, "hide", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_sdna(prop, NULL, "flag", TRACK_HIDDEN); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_ui_text(prop, "Hide", "Track is hidden"); RNA_def_property_update(prop, NC_MOVIECLIP|ND_DISPLAY, NULL); @@ -986,12 +1033,14 @@ static void rna_def_trackingTrack(BlenderRNA *brna) /* locked */ prop= RNA_def_property(srna, "lock", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_sdna(prop, NULL, "flag", TRACK_LOCKED); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_ui_text(prop, "Lock", "Track is locked and all changes to it are disabled"); RNA_def_property_update(prop, NC_MOVIECLIP|ND_DISPLAY, NULL); /* custom color */ prop= RNA_def_property(srna, "use_custom_color", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_sdna(prop, NULL, "flag", TRACK_CUSTOMCOLOR); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_ui_text(prop, "Custom Color", "Use custom color instead of theme-defined"); RNA_def_property_update(prop, NC_MOVIECLIP|ND_DISPLAY, NULL); @@ -1015,11 +1064,13 @@ static void rna_def_trackingStabilization(BlenderRNA *brna) PropertyRNA *prop; srna= RNA_def_struct(brna, "MovieTrackingStabilization", NULL); + RNA_def_struct_path_func(srna, "rna_trackingStabilization_path"); RNA_def_struct_ui_text(srna, "Movie tracking stabilization data", "Match-moving stabilization data for tracking"); /* 2d stabilization */ prop= RNA_def_property(srna, "use_2d_stabilization", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_sdna(prop, NULL, "flag", TRACKING_2D_STABILIZATION); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_ui_text(prop, "Use 2D stabilization", "Use 2D stabilization for footage"); RNA_def_property_update(prop, NC_MOVIECLIP|ND_DISPLAY, "rna_tracking_flushUpdate"); @@ -1040,12 +1091,14 @@ static void rna_def_trackingStabilization(BlenderRNA *brna) /* active track index */ prop= RNA_def_property(srna, "active_track_index", PROP_INT, PROP_NONE); RNA_def_property_int_sdna(prop, NULL, "act_track"); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_int_funcs(prop, "rna_tracking_stabTracks_active_index_get", "rna_tracking_stabTracks_active_index_set", "rna_tracking_stabTracks_active_index_range"); RNA_def_property_ui_text(prop, "Active Track Index", "Index of active track in stabilization tracks list"); /* autoscale */ prop= RNA_def_property(srna, "use_autoscale", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_sdna(prop, NULL, "flag", TRACKING_AUTOSCALE); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_ui_text(prop, "Autoscale", "Automatically scale footage to cover unfilled areas when stabilizating"); RNA_def_property_update(prop, NC_MOVIECLIP|ND_DISPLAY, "rna_tracking_flushUpdate"); @@ -1072,6 +1125,7 @@ static void rna_def_trackingStabilization(BlenderRNA *brna) /* use_stabilize_rotation */ prop= RNA_def_property(srna, "use_stabilize_rotation", PROP_BOOLEAN, PROP_NONE); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_boolean_sdna(prop, NULL, "flag", TRACKING_STABILIZE_ROTATION); RNA_def_property_ui_text(prop, "Stabilize Rotation", "Stabilize horizon line on the shot"); RNA_def_property_update(prop, NC_MOVIECLIP|ND_DISPLAY, "rna_tracking_flushUpdate"); @@ -1280,6 +1334,7 @@ static void rna_def_tracking(BlenderRNA *brna) rna_def_trackingObject(brna); srna= RNA_def_struct(brna, "MovieTracking", NULL); + RNA_def_struct_path_func(srna, "rna_tracking_path"); RNA_def_struct_ui_text(srna, "Movie tracking data", "Match-moving data for tracking"); /* settings */ @@ -1315,6 +1370,7 @@ static void rna_def_tracking(BlenderRNA *brna) /* active object index */ prop= RNA_def_property(srna, "active_object_index", PROP_INT, PROP_NONE); RNA_def_property_int_sdna(prop, NULL, "objectnr"); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_int_funcs(prop, "rna_tracking_active_object_index_get", "rna_tracking_active_object_index_set", "rna_tracking_active_object_index_range"); RNA_def_property_ui_text(prop, "Active Object Index", "Index of active object"); RNA_def_property_update(prop, NC_MOVIECLIP|ND_DISPLAY, NULL); -- cgit v1.2.3 From 18371f792d1f88b6fcf6abef03dc65aedf9ea6e7 Mon Sep 17 00:00:00 2001 From: Ton Roosendaal Date: Wed, 15 Feb 2012 16:44:44 +0000 Subject: The traditional release commit, 2.62! Special thanks to splash committee: Kevin Hays, Per Gantelius and Wray Bowling. Splash by Alexey Lugovoy. --- source/blender/blenkernel/BKE_blender.h | 4 +- source/blender/editors/datafiles/splash.png.c | 12001 ++++++++++++------------ 2 files changed, 5895 insertions(+), 6110 deletions(-) (limited to 'source/blender') diff --git a/source/blender/blenkernel/BKE_blender.h b/source/blender/blenkernel/BKE_blender.h index 7236015054d..405d0e9631a 100644 --- a/source/blender/blenkernel/BKE_blender.h +++ b/source/blender/blenkernel/BKE_blender.h @@ -41,8 +41,8 @@ extern "C" { /* these lines are grep'd, watch out for our not-so-awesome regex * and keep comment above the defines. * Use STRINGIFY() rather than defining with quotes */ -#define BLENDER_VERSION 261 -#define BLENDER_SUBVERSION 4 +#define BLENDER_VERSION 262 +#define BLENDER_SUBVERSION 0 #define BLENDER_MINVERSION 250 #define BLENDER_MINSUBVERSION 0 diff --git a/source/blender/editors/datafiles/splash.png.c b/source/blender/editors/datafiles/splash.png.c index 91e57d26f78..0b313dcb143 100644 --- a/source/blender/editors/datafiles/splash.png.c +++ b/source/blender/editors/datafiles/splash.png.c @@ -1,6113 +1,5898 @@ /* DataToC output of file */ -int datatoc_splash_png_size= 195415; +int datatoc_splash_png_size= 188517; char datatoc_splash_png[]= { -137, 80, 78, 71, 13, 10, 26, 10, 0, 0, 0, 13, 73, 72, 68, 82, 0, 0, 1,245, 0, 0, 1, - 26, 8, 6, 0, 0, 0, 8, 90,206, 70, 0, 0, 10, 79,105, 67, 67, 80, 80,104,111,116,111,115,104,111,112, 32, 73, 67, 67, 32, -112,114,111,102,105,108,101, 0, 0,120,218,157, 83,103, 84, 83,233, 22, 61,247,222,244, 66, 75,136,128,148, 75,111, 82, 21, 8, - 32, 82, 66,139,128, 20,145, 38, 42, 33, 9, 16, 74,136, 33,161,217, 21, 81,193, 17, 69, 69, 4, 27,200,160,136, 3,142,142,128, -140, 21, 81, 44, 12,138, 10,216, 7,228, 33,162,142,131,163,136,138,202,251,225,123,163,107,214,188,247,230,205,254,181,215, 62, -231,172,243,157,179,207, 7,192, 8, 12,150, 72, 51, 81, 53,128, 12,169, 66, 30, 17,224,131,199,196,198,225,228, 46, 64,129, 10, - 36,112, 0, 16, 8,179,100, 33,115,253, 35, 1, 0,248,126, 60, 60, 43, 34,192, 7,190, 0, 1,120,211, 11, 8, 0,192, 77,155, -192, 48, 28,135,255, 15,234, 66,153, 92, 1,128,132, 1,192,116,145, 56, 75, 8,128, 20, 0, 64,122,142, 66,166, 0, 64, 70, 1, -128,157,152, 38, 83, 0,160, 4, 0, 96,203, 99, 98,227, 0, 80, 45, 0, 96, 39,127,230,211, 0,128,157,248,153,123, 1, 0, 91, -148, 33, 21, 1,160,145, 0, 32, 19,101,136, 68, 0,104, 59, 0,172,207, 86,138, 69, 0, 88, 48, 0, 20,102, 75,196, 57, 0,216, - 45, 0, 48, 73, 87,102, 72, 0,176,183, 0,192,206, 16, 11,178, 0, 8, 12, 0, 48, 81,136,133, 41, 0, 4,123, 0, 96,200, 35, - 35,120, 0,132,153, 0, 20, 70,242, 87, 60,241, 43,174, 16,231, 42, 0, 0,120,153,178, 60,185, 36, 57, 69,129, 91, 8, 45,113, - 7, 87, 87, 46, 30, 40,206, 73, 23, 43, 20, 54, 97, 2, 97,154, 64, 46,194,121,153, 25, 50,129, 52, 15,224,243,204, 0, 0,160, -145, 21, 17,224,131,243,253,120,206, 14,174,206,206, 54,142,182, 14, 95, 45,234,191, 6,255, 34, 98, 98,227,254,229,207,171,112, - 64, 0, 0,225,116,126,209,254, 44, 47,179, 26,128, 59, 6,128,109,254,162, 37,238, 4,104, 94, 11,160,117,247,139,102,178, 15, - 64,181, 0,160,233,218, 87,243,112,248,126, 60, 60, 69,161,144,185,217,217,229,228,228,216, 74,196, 66, 91, 97,202, 87,125,254, -103,194, 95,192, 87,253,108,249,126, 60,252,247,245,224,190,226, 36,129, 50, 93,129, 71, 4,248,224,194,204,244, 76,165, 28,207, -146, 9,132, 98,220,230,143, 71,252,183, 11,255,252, 29,211, 34,196, 73, 98,185, 88, 42, 20,227, 81, 18,113,142, 68,154,140,243, - 50,165, 34,137, 66,146, 41,197, 37,210,255,100,226,223, 44,251, 3, 62,223, 53, 0,176,106, 62, 1,123,145, 45,168, 93, 99, 3, -246, 75, 39, 16, 88,116,192,226,247, 0, 0,242,187,111,193,212, 40, 8, 3,128,104,131,225,207,119,255,239, 63,253, 71,160, 37, - 0,128,102, 73,146,113, 0, 0, 94, 68, 36, 46, 84,202,179, 63,199, 8, 0, 0, 68,160,129, 42,176, 65, 27,244,193, 24, 44,192, - 6, 28,193, 5,220,193, 11,252, 96, 54,132, 66, 36,196,194, 66, 16, 66, 10,100,128, 28,114, 96, 41,172,130, 66, 40,134,205,176, - 29, 42, 96, 47,212, 64, 29, 52,192, 81,104,134,147,112, 14, 46,194, 85,184, 14, 61,112, 15,250, 97, 8,158,193, 40,188,129, 9, - 4, 65,200, 8, 19, 97, 33,218,136, 1, 98,138, 88, 35,142, 8, 23,153,133,248, 33,193, 72, 4, 18,139, 36, 32,201,136, 20, 81, - 34, 75,145, 53, 72, 49, 82,138, 84, 32, 85, 72, 29,242, 61,114, 2, 57,135, 92, 70,186,145, 59,200, 0, 50,130,252,134,188, 71, - 49,148,129,178, 81, 61,212, 12,181, 67,185,168, 55, 26,132, 70,162, 11,208,100,116, 49,154,143, 22,160,155,208,114,180, 26, 61, -140, 54,161,231,208,171,104, 15,218,143, 62, 67,199, 48,192,232, 24, 7, 51,196,108, 48, 46,198,195, 66,177, 56, 44, 9,147, 99, -203,177, 34,172, 12,171,198, 26,176, 86,172, 3,187,137,245, 99,207,177,119, 4, 18,129, 69,192, 9, 54, 4,119, 66, 32, 97, 30, - 65, 72, 88, 76, 88, 78,216, 72,168, 32, 28, 36, 52, 17,218, 9, 55, 9, 3,132, 81,194, 39, 34,147,168, 75,180, 38,186, 17,249, -196, 24, 98, 50, 49,135, 88, 72, 44, 35,214, 18,143, 19, 47, 16,123,136, 67,196, 55, 36, 18,137, 67, 50, 39,185,144, 2, 73,177, -164, 84,210, 18,210, 70,210,110, 82, 35,233, 44,169,155, 52, 72, 26, 35,147,201,218,100,107,178, 7, 57,148, 44, 32, 43,200,133, -228,157,228,195,228, 51,228, 27,228, 33,242, 91, 10,157, 98, 64,113,164,248, 83,226, 40, 82,202,106, 74, 25,229, 16,229, 52,229, - 6,101,152, 50, 65, 85,163,154, 82,221,168,161, 84, 17, 53,143, 90, 66,173,161,182, 82,175, 81,135,168, 19, 52,117,154, 57,205, -131, 22, 73, 75,165,173,162,149,211, 26,104, 23,104,247,105,175,232,116,186, 17,221,149, 30, 78,151,208, 87,210,203,233, 71,232, -151,232, 3,244,119, 12, 13,134, 21,131,199,136,103, 40, 25,155, 24, 7, 24,103, 25,119, 24,175,152, 76,166, 25,211,139, 25,199, - 84, 48, 55, 49,235,152,231,153, 15,153,111, 85, 88, 42,182, 42,124, 21,145,202, 10,149, 74,149, 38,149, 27, 42, 47, 84,169,170, -166,170,222,170, 11, 85,243, 85,203, 84,143,169, 94, 83,125,174, 70, 85, 51, 83,227,169, 9,212,150,171, 85,170,157, 80,235, 83, - 27, 83,103,169, 59,168,135,170,103,168,111, 84, 63,164,126, 89,253,137, 6, 89,195, 76,195, 79, 67,164, 81,160,177, 95,227,188, -198, 32, 11, 99, 25,179,120, 44, 33,107, 13,171,134,117,129, 53,196, 38,177,205,217,124,118, 42,187,152,253, 29,187,139, 61,170, -169,161, 57, 67, 51, 74, 51, 87,179, 82,243,148,102, 63, 7,227,152,113,248,156,116, 78, 9,231, 40,167,151,243,126,138,222, 20, -239, 41,226, 41, 27,166, 52, 76,185, 49,101, 92,107,170,150,151,150, 88,171, 72,171, 81,171, 71,235,189, 54,174,237,167,157,166, -189, 69,187, 89,251,129, 14, 65,199, 74, 39, 92, 39, 71,103,143,206, 5,157,231, 83,217, 83,221,167, 10,167, 22, 77, 61, 58,245, -174, 46,170,107,165, 27,161,187, 68,119,191,110,167,238,152,158,190, 94,128,158, 76,111,167,222,121,189,231,250, 28,125, 47,253, - 84,253,109,250,167,245, 71, 12, 88, 6,179, 12, 36, 6,219, 12,206, 24, 60,197, 53,113,111, 60, 29, 47,199,219,241, 81, 67, 93, -195, 64, 67,165, 97,149, 97,151,225,132,145,185,209, 60,163,213, 70,141, 70, 15,140,105,198, 92,227, 36,227,109,198,109,198,163, - 38, 6, 38, 33, 38, 75, 77,234, 77,238,154, 82, 77,185,166, 41,166, 59, 76, 59, 76,199,205,204,205,162,205,214,153, 53,155, 61, - 49,215, 50,231,155,231,155,215,155,223,183, 96, 90,120, 90, 44,182,168,182,184,101, 73,178,228, 90,166, 89,238,182,188,110,133, - 90, 57, 89,165, 88, 85, 90, 93,179, 70,173,157,173, 37,214,187,173,187,167, 17,167,185, 78,147, 78,171,158,214,103,195,176,241, -182,201,182,169,183, 25,176,229,216, 6,219,174,182,109,182,125, 97,103, 98, 23,103,183,197,174,195,238,147,189,147,125,186,125, -141,253, 61, 7, 13,135,217, 14,171, 29, 90, 29,126,115,180,114, 20, 58, 86, 58,222,154,206,156,238, 63,125,197,244,150,233, 47, -103, 88,207, 16,207,216, 51,227,182, 19,203, 41,196,105,157, 83,155,211, 71,103, 23,103,185,115,131,243,136,139,137, 75,130,203, - 46,151, 62, 46,155, 27,198,221,200,189,228, 74,116,245,113, 93,225,122,210,245,157,155,179,155,194,237,168,219,175,238, 54,238, -105,238,135,220,159,204, 52,159, 41,158, 89, 51,115,208,195,200, 67,224, 81,229,209, 63, 11,159,149, 48,107,223,172,126, 79, 67, - 79,129,103,181,231, 35, 47, 99, 47,145, 87,173,215,176,183,165,119,170,247, 97,239, 23, 62,246, 62,114,159,227, 62,227, 60, 55, -222, 50,222, 89, 95,204, 55,192,183,200,183,203, 79,195,111,158, 95,133,223, 67,127, 35,255,100,255,122,255,209, 0,167,128, 37, - 1,103, 3,137,129, 65,129, 91, 2,251,248,122,124, 33,191,142, 63, 58,219,101,246,178,217,237, 65,140,160,185, 65, 21, 65,143, -130,173,130,229,193,173, 33,104,200,236,144,173, 33,247,231,152,206,145,206,105, 14,133, 80,126,232,214,208, 7, 97,230, 97,139, -195,126, 12, 39,133,135,133, 87,134, 63,142,112,136, 88, 26,209, 49,151, 53,119,209,220, 67,115,223, 68,250, 68,150, 68,222,155, -103, 49, 79, 57,175, 45, 74, 53, 42, 62,170, 46,106, 60,218, 55,186, 52,186, 63,198, 46,102, 89,204,213, 88,157, 88, 73,108, 75, - 28, 57, 46, 42,174, 54,110,108,190,223,252,237,243,135,226,157,226, 11,227,123, 23,152, 47,200, 93,112,121,161,206,194,244,133, -167, 22,169, 46, 18, 44, 58,150, 64, 76,136, 78, 56,148,240, 65, 16, 42,168, 22,140, 37,242, 19,119, 37,142, 10,121,194, 29,194, -103, 34, 47,209, 54,209,136,216, 67, 92, 42, 30, 78,242, 72, 42, 77,122,146,236,145,188, 53,121, 36,197, 51,165, 44,229,185,132, - 39,169,144,188, 76, 13, 76,221,155, 58,158, 22,154,118, 32,109, 50, 61, 58,189, 49,131,146,145,144,113, 66,170, 33, 77,147,182, -103,234,103,230,102,118,203,172,101,133,178,254,197,110,139,183, 47, 30,149, 7,201,107,179,144,172, 5, 89, 45, 10,182, 66,166, -232, 84, 90, 40,215, 42, 7,178,103,101, 87,102,191,205,137,202, 57,150,171,158, 43,205,237,204,179,202,219,144, 55,156,239,159, -255,237, 18,194, 18,225,146,182,165,134, 75, 87, 45, 29, 88,230,189,172,106, 57,178, 60,113,121,219, 10,227, 21, 5, 43,134, 86, - 6,172, 60,184,138,182, 42,109,213, 79,171,237, 87,151,174,126,189, 38,122, 77,107,129, 94,193,202,130,193,181, 1,107,235, 11, - 85, 10,229,133,125,235,220,215,237, 93, 79, 88, 47, 89,223,181, 97,250,134,157, 27, 62, 21,137,138,174, 20,219, 23,151, 21,127, -216, 40,220,120,229, 27,135,111,202,191,153,220,148,180,169,171,196,185,100,207,102,210,102,233,230,222, 45,158, 91, 14,150,170, -151,230,151, 14,110, 13,217,218,180, 13,223, 86,180,237,245,246, 69,219, 47,151,205, 40,219,187,131,182, 67,185,163,191, 60,184, -188,101,167,201,206,205, 59, 63, 84,164, 84,244, 84,250, 84, 54,238,210,221,181, 97,215,248,110,209,238, 27,123,188,246, 52,236, -213,219, 91,188,247,253, 62,201,190,219, 85, 1, 85, 77,213,102,213,101,251, 73,251,179,247, 63,174,137,170,233,248,150,251,109, - 93,173, 78,109,113,237,199, 3,210, 3,253, 7, 35, 14,182,215,185,212,213, 29,210, 61, 84, 82,143,214, 43,235, 71, 14,199, 31, -190,254,157,239,119, 45, 13, 54, 13, 85,141,156,198,226, 35,112, 68,121,228,233,247, 9,223,247, 30, 13, 58,218,118,140,123,172, -225, 7,211, 31,118, 29,103, 29, 47,106, 66,154,242,154, 70,155, 83,154,251, 91, 98, 91,186, 79,204, 62,209,214,234,222,122,252, - 71,219, 31, 15,156, 52, 60, 89,121, 74,243, 84,201,105,218,233,130,211,147,103,242,207,140,157,149,157,125,126, 46,249,220, 96, -219,162,182,123,231, 99,206,223,106, 15,111,239,186, 16,116,225,210, 69,255,139,231, 59,188, 59,206, 92,242,184,116,242,178,219, -229, 19, 87,184, 87,154,175, 58, 95,109,234,116,234, 60,254,147,211, 79,199,187,156,187,154,174,185, 92,107,185,238,122,189,181, -123,102,247,233, 27,158, 55,206,221,244,189,121,241, 22,255,214,213,158, 57, 61,221,189,243,122,111,247,197,247,245,223, 22,221, -126,114, 39,253,206,203,187,217,119, 39,238,173,188, 79,188, 95,244, 64,237, 65,217, 67,221,135,213, 63, 91,254,220,216,239,220, -127,106,192,119,160,243,209,220, 71,247, 6,133,131,207,254,145,245,143, 15, 67, 5,143,153,143,203,134, 13,134,235,158, 56, 62, - 57, 57,226, 63,114,253,233,252,167, 67,207,100,207, 38,158, 23,254,162,254,203,174, 23, 22, 47,126,248,213,235,215,206,209,152, -209,161,151,242,151,147,191,109,124,165,253,234,192,235, 25,175,219,198,194,198, 30,190,201,120, 51, 49, 94,244, 86,251,237,193, -119,220,119, 29,239,163,223, 15, 79,228,124, 32,127, 40,255,104,249,177,245, 83,208,167,251,147, 25,147,147,255, 4, 3,152,243, -252, 99, 51, 45,219, 0, 0, 0, 6, 98, 75, 71, 68, 0,255, 0,255, 0,255,160,189,167,147, 0, 0, 0, 9,112, 72, 89,115, 0, - 0, 11, 19, 0, 0, 11, 19, 1, 0,154,156, 24, 0, 0, 0, 7,116, 73, 77, 69, 7,219, 12, 13, 17, 26, 29, 77,120, 44,213, 0, - 0, 32, 0, 73, 68, 65, 84,120,218,236,189,121,188,109, 89, 85,223,251, 29,115,206,213,236,230,180,183,173, 14,170,138, 70, 16, -165,171, 2, 84, 8, 2, 94, 94,130,109, 52, 84,229, 35, 79, 77, 66,158, 85, 81,223, 67,226, 83, 11, 19, 99, 72,158,137,162,143, - 72, 64,125, 84,105,162,190,232,203,123, 20, 24,141,138, 13, 85, 98, 20,108,128,139, 2, 82,101, 81,197,173,134,186,213,220,123, - 79,115,207, 57,187, 91,107,205, 57,223, 31,115,174,181,215, 57,220,170,219, 80, 13,133,107,240, 41,238, 57,251,236,189,246,106, -230, 26,191, 49,126,227, 55,198,130,206, 58,235,172,179,206, 58,235,172,179,206, 58,235,172,179,206, 58,235,172,179,206, 58,235, -172,179,206, 58,235,172,179,206, 58,235,172,179,206, 58,235,172,179,206, 58,235,172,179,206, 58,235,172,179,206, 58,235,172,179, -206, 58,235,172,179,206, 58,235,172,179,206, 58,235,172,179,206, 58,235,172,179,206, 58, 59,119,147, 39,227, 75,253,111,188,241, - 91, 41,253,155, 80,164, 40,255,110,254,254, 47,255,170, 8,190,187, 28,157,117,214, 89,103,157,117,246, 20, 2,117,255,155,223, -245,106,182, 70,127,200,230,200,179,176, 4,251, 87,133,170,248,127, 40,182,174,151,107,111,222,233, 46, 73,103,157,117,214, 89, -103,157, 93,152,169, 39,252, 27, 31, 56, 54,224,193,123,224,228,241, 9,247,222, 49,230,158, 99, 99,188,126, 3,249,202, 39,253, -239,124,247,179,187, 75,210, 89,103,157,117,214, 89,103, 79, 21, 80,255,103, 31,250, 29,122,234, 71, 24,166,125, 4,195,201, 7, - 28,199,110, 31, 51, 45, 47,199, 37,183,251,223,249,238,127,208, 93,150,206, 58,235,172,179,206, 58, 59,127,147, 39,235,139,253, -187,190,234,117, 76,171,247, 50,243, 25,182,154,144,230,138,167, 61,211,176,186, 47,197,206,222,129, 74,223, 34, 95,255,174, 89, -119,137, 58,235,172,179,206, 58,235,236,139, 28,212, 1,252,141, 87, 61,131,145,126, 63, 83,251,108, 74, 59, 70,107,184,248, 10, -197,225,139,115, 92,249, 9,180,255,251,242,186,119,223,243, 84, 57,153,222,251,171,128,149,248,235, 49, 17, 57,246,165,188,120, -254,182, 29,111,103,157,117,214, 89, 7,234,103, 3,134,159,126,254,128, 36,249, 85,198,254,155, 41,253, 20, 28, 28,186, 76,184, -232,105, 61,180, 20, 36,213, 55,202,223,189,241, 3,143, 49, 24, 93, 9, 92,121,142,111,223, 16,145,163,231,184,221, 15, 0, 71, -226,175,111, 17,145,183,125,137,131,250,223,170,227,125,140,206,153,136, 72,215,233,209, 89,103,157, 61, 46,102,190, 96, 39,245, -193, 87, 25, 62,151,102,103,252,227,118, 33, 44,164, 30, 14,193, 33,224,244,116, 30, 68,100, 11, 66, 50, 19, 88, 5,191,246,102, -238,187, 47, 99,199,253, 79, 56, 10, 54, 78, 65,127, 56,101,249, 64,130, 77,255,192,255,222,255,250, 99,100,127,253, 19,242,234, - 63,170, 30,163,227,190, 6,248,201,243,112,196, 0, 55, 3,183,136,200, 77,221,178,249,146, 0, 87, 37, 34,174,245,251, 37,192, -203,128, 23, 1,207, 3,174, 0, 46, 1, 22, 9,218,147, 77,224, 94,224,207,129,255, 42, 34,127,122, 65, 81,244, 89, 0,221,123, -255,194,184, 62,143,196,239, 63, 8, 20,192, 3,192,167,129, 15, 1,191, 45, 34,119, 60,194,231, 15, 2, 95, 1,124,101,235,223, -231, 1,195,214, 62, 72,183, 2, 58,235,172,203,212,119, 59,143,183,190, 85,177,120,235,117, 88,249,151,136,236, 71,107,135, 8, - 40, 21,254, 19, 1,173, 5,165, 64,199,223,149, 2, 21, 95, 19, 1,169,223,171, 44, 90,207,240, 50, 64, 90,239,213, 26, 28,138, - 60, 77, 16,251, 63,232,113,141,188,242, 93, 39, 31, 3,135,126,195,249,128,250, 30,187, 5,184, 86, 68, 54,186, 76,253, 75,231, -120,125,140,220,206,195,254, 24,120,163,136,124,246, 49,250,254,139,129,159, 1,174, 61,199,224, 64, 46,244, 56, 58, 80,239,172, -179, 46, 83,255,124, 91,190,245,251,113,234, 63, 80,249, 2, 45, 30,208,136,128, 39,252, 23,126, 22,148, 7,231, 65, 73,248,131, -114,160, 37,188, 65,121, 80, 30,196,107,156, 77,208,218, 71,175, 19,183,227, 65, 41, 71,105,103,104,245,181,140,253,223,248, 91, -191,239,181,242,117, 63,247,241,199,248, 60,220,242, 40,127, 59,114,134,223, 63,224,189,127,237,153,128,189,179,191, 53,246, 74, -224,163,222,251,215,136,200, 95,125,129,128,254, 60,224, 15, 99, 86,222, 89,103,157,117,246,196,130,186,127, 43, 10,231,191,135, -113,233,177,101,137,117, 32, 34, 33,239,151,144,255, 71,220, 6, 97, 92,218, 62, 90,161,246, 29, 4, 99,192,122, 36,100,232, 1, -228, 69,129, 85, 1,224,149,155,103,234,162,200,242,100,134, 0,150, 2,203, 10, 36, 71,253,173,111,250, 30, 94,243, 31,111,124, -172,106,147, 34,242,218,179, 56,221,154,174,175,235,240, 87, 1,215, 1, 93, 13,249, 75,207, 70,192,239, 1, 31, 0,142, 18, 40, -247, 77, 2,125,253, 34,224,159, 2,111,136,239, 93, 1,254,187,247,254,185, 34, 50,186, 64, 64,127, 6,240, 65,224, 64,124,169, - 0,126, 17,248,117, 2,221,126, 10,200, 9, 84,252,151, 3, 47, 7,190,241, 81, 54,121, 42,126,238,211,192,109,173,159, 79,116, -151,182,179,206,190,244,237,194,233,247,119,190,252,122,182,167,239,166,178, 17,188, 91, 91, 19,153,255, 92, 89, 55, 46, 80,178, -176,130, 44, 44,204,105,119,173, 17,165, 67, 6, 47,177, 84,174, 36, 80,238, 74,133,141, 41, 67,150,245,102,212,239, 67, 11, 34, -138,220, 24,112,239,101,188,244,143,228,155,223, 58,190, 0, 71,186,139,126, 63, 23, 58, 50,138,235, 62,198, 92,237,125, 84, 68, -174,222,243,158,142,126,127,234,236,123, 42, 34, 69,235,247,143, 0, 63, 7,188, 71, 68, 38,103,249,236, 63, 0,254,223, 86, 80, -124,131,136,252,212, 5,236,131, 0,127, 20,179,126,128,187,128,175, 23,145, 59, 31,135,227,245,231,179,222, 59,235,172,179,191, - 69,153, 58,128,188,233,195, 55,250,255,240,226, 91,209,234,153, 56, 37,136,115,243,191,170,248,179,157,145, 14,190,122, 54,205, -127,178,159,244,112,206, 5,208, 22,192, 57,124,177,131,104, 65, 93,246, 2,212,129,103, 34,139,135,145,124, 17,170, 25,110,116, - 18,191,253, 32,179,147,159,201,152,237,128,238,129, 88, 80, 26,217,113,164,131,236,245, 12,183,174,240,191,255,131, 95, 43,127, -247,255, 28, 61,222, 39, 74, 68,142,121,239,111,142, 25,122,157,173, 63, 22,206,118,101,207,182,142, 62, 22,180,254, 30,133,255, - 5,181,155, 61, 22,219,120, 34,142,119,207,126,158,211,246,218,128, 30,127,127,233,121,172,133,247,121,239,127, 26,248,145,248, -210,183, 2, 63,117, 1,187,254,143, 91,128,190, 14,188, 90, 68,238,239,220, 82,103,157,117,246,132,131, 58,128,252,192,199,239, -138,217,197,153,157,237,175,124,243,243,153, 86,223, 49,212,158,170,174,171, 79,167,248,217, 8,236, 8,253,236,191,131,185,250, - 13,232, 43,190,234,243, 62, 91,143,186,243,235,247, 80,125,246, 86,236,189, 31, 70,116, 10,222,227, 5,138,113, 65,218, 79,175, - 66,251,247,251,143, 93,119, 68,174,190,169,124, 2,206,215, 99,210,135, 29,129,237, 58,130,202,249,170, 51,252,253, 24,112, 19, -112,211, 35, 1,148,247,254, 39, 91,159,189, 89, 68,110,106,109,247, 58,246,180,236,197,109,190,237, 92,212,251,222,251,235,128, - 27, 30, 97, 27,143,186, 95,143,199,241, 62,202,177,222, 16,183,187,210,122,251, 45,192,107,159,128,181,240, 75, 45, 80,191,208, -241,198,111,106,253,124, 67, 7,232,157,117,214,217,147, 10,234,143,234,200,255,243,107,175,103,103,250,110, 42,177,149,245,248, -114,134,159,142,161,154,129,241,100, 95,255, 35,152,171,191,253,236,129,195,234,229, 36,171,255, 20,117,248,249, 84, 31,253, 69, - 80, 54, 64,190, 8, 20,174,160,159,188,146,141,254,191, 6,126,244, 9, 56, 95,109,240,184,160,236,210,123,127, 4,120,207,158, -109,237,181, 43, 9,229,129,235,188,247,215, 62, 66,159,252, 85,204,169,239, 91,226, 32,152, 27, 31,133, 65,184, 18,184,209,123, -127,149,136, 92,255, 40,224,123, 99, 4,223, 71,219,175,107,188,247,175,125, 2,143,247, 76,199,250,129,179,108,243,241,182,251, - 90, 63, 15, 47, 96, 29, 92, 13,188, 48,254,186, 6,252,151,206, 29,117,214, 89,103, 95,116,160,238,111,252,198, 62,110,242, 46, - 70,254,141, 88,153,225, 75,235,119,118,250, 84, 37,136, 71, 18,200,190,245, 39,208, 95,241, 13,205,103,182, 38, 51,126,255,175, -238,225,247, 63,113, 15,235, 59, 19, 18, 45, 60,247,226, 85,190,249,234,103,242,226,103, 92, 4,128,190,236, 37, 72,186, 64,249, -161,183, 67,106, 8, 74,122, 96, 82, 86, 36,230, 95,250, 15,254,243, 95,150, 87,255,204, 93,143, 91,144, 18, 0,239,154, 61, 25, -225,249,110,227,154, 8,112,109, 59, 26,183, 85, 7, 9,237,108,246, 74,230, 74,251,163,103, 9, 54,222,211,202,172,111,142,219, -173, 1,177,189,223,215,121,239,143, 61, 66,253,251, 39,207, 0,232,237,109,213,251,118,213, 25,142,227,137, 58,222,149, 61,128, -190,209,218,191, 43,159,192,123,231,146,214,207, 23,210,102,249,154,214,207,255, 77, 68,186,145,200,157,117,214,217, 23, 23,168, -251,119,191,242, 89,204,118,222, 79,165,158,137,103,130, 29,123,202, 25, 56, 7, 70, 35,213,136,228,229,255,203, 46, 64,255,243, - 59, 31,228,135,126,237, 79, 56,118,106,155, 60, 75, 72,140, 66,121,248,196,231,214,121,239,159,253, 13,223,116,245, 51,248, 87, -215,252, 29,250, 89,130, 58,244, 28,204, 87, 92, 75,245,151,191, 4, 11,135,106,133,189,195, 11, 84,250, 63, 2,223,240, 56, 2, -250,141,123, 64,227,166,243,220,198,149,113, 27,181, 29, 3,174, 23,145,189,193,193,219,246,100,183,245,119, 95,253, 40,155,191, -161, 5,192,215,239,165,176,227,119,191,167, 5,158, 55,120,239,119, 81,221,145,114,191,110, 15,248, 94,187,167,142,222,222,183, - 35, 79,210,241,222,208,218,222, 91, 68,228,230, 51, 92,171, 39,194,190,173,245,243,199, 46,224,243,237, 26,254,159,196,125,223, - 79,168,179,191, 62,174,181, 69, 66,173,253,179, 4, 65,221, 47,117,163,120, 59,235,172,179, 39, 4,212,253,207,189,226,239, 49, -241,191, 65,133, 65,217, 49, 85, 1,182,138,138,118, 1,111,145,253,151, 97, 94,250, 93,205,103,238,124,104,131,239,250,185,223, -231,196,164,162, 63,232, 81,106, 77,146,104, 82, 45,104,159, 34,182,226,125,127,113, 23, 90, 41,126,252, 13,175, 10, 25,251, 51, - 95,141,189,227,247,192,238, 64, 50, 12,192,110,109,133,150, 35,254,143,223,124,145,188,242, 29, 15, 94, 0,104,223,240, 40,127, - 62,114, 6, 0, 59, 19, 56,157,205,110,220,147, 93, 94,253, 72,117,105, 17,185, 37,210,219,117, 70,122,149,247,254,186,179,212, -195,111, 17,145,107, 31, 97,123,199,188,247,111,137,219,171,179,221, 35, 49, 8,216, 11,150, 53, 96,158,177, 15,191,181,111, 31, -123, 18,143,247,216, 35,109,239,137,152, 29,224,189, 31, 2,111,110,189,244,155, 23,176,153, 47,111,253,252, 73,239,253,183, 16, - 90,217,246,239,121,223, 69,241,191, 87, 0, 63,226,189,127, 55,240,191,119,153,125,103,157,117,246,184,128,186,191,241,170,132, -105,239,199,153,249, 31,166,146, 25,186,154, 97, 3,213, 78, 82,203,221, 4, 95, 22,152,103,191, 18, 25,206,125,214, 91,126,237, -195,220,121,255,105, 88, 26,114,122,167, 2,177,104,129,190, 22,246, 15, 12, 43, 61,195,210,210,144,223,248,200,157,188,234,121, - 79,231,200, 11,174, 0,109,208, 87,190,146,234,175,126, 5, 6,139,224, 29, 40,113, 36, 58,165,116,223, 2,188,251, 2, 14,227, - 92,167,203,221, 68, 16,106,157, 23,160,199, 26,112, 59, 48,120,203,217,192, 71, 68,142,122,239,111,106,129,237,145,179,176, 3, -215,159,101,123,183,120,239,143,178,155,234,174,247,239,154, 61, 44,196,219, 30,109,255, 90,251,118,221,147,116,188,111,123,146, - 7,255,252, 28,115,250,253,179,192,175, 93,192, 54, 86,247,100,237,239,230,236, 45,166, 26,248, 62,224,133,222,251, 35, 34, 50, -237, 92, 88,103,157,117,214,182, 47,232,121,234,254,157, 47,187,148,237,228,195, 76,237, 15, 83,250, 49, 98, 45,182, 12,174,199, - 8,104, 17,140,136,104,133, 24, 65, 93,252, 21,205,103,239,126,120,147,223,253,171,251,160,223,155,247,166,107,141, 69,177, 61, -179,220,125,114,204,177, 19, 99, 74, 47, 56,173,185,245, 83,247,206, 1, 96,255, 51,241,147, 45,160,138, 20,188,135,202,129,227, -165,143,243,249,186, 38,102,145,231, 75,241,182, 1,110,227, 60,230,199,223,178,231,187, 31,201,142,158, 35, 45,123,244, 17,246, -233,200, 30,128, 61,151,253,187,249, 73, 58,222, 99, 79,230,252,125,239,253, 63, 7,106,186,201, 3,215,237,109,143, 59, 71, 91, -110,253,252,142, 22,160,223, 10,124, 11,225,105, 9,105,252,247, 91, 8, 19,231,106,123, 57,240,179,157,251,234,172,179,206, 30, -179, 76,221,191,235,171, 94,206,216,222, 74,169, 18,140,140,209, 46,100,205, 30,161, 18,193,136, 71, 75,156, 14,103, 17,147,162, - 86,158,214,124,254,158,147, 91, 76,198, 37, 44,102, 52, 35,232,234,241, 24, 74,129,247,108,238,148,148, 69,197,165, 75,134,237, -233,188, 99, 77, 22, 14,133,164,101, 54,130,222, 66,152, 63, 91, 86, 96,120,129,247,111, 85, 34,111,117,231,121, 56,111,121,148, -191, 93, 25, 65,234, 74, 2, 53,220,168,191,207, 35, 91, 60,242, 8,192,202, 57,100,215,187, 50,224, 71, 16,144,157, 43,115,112, -236, 81,142,241,188,182,181,119,223,158,192,227, 61,250,100,221, 44,222,251,255, 25,120,123,235,165,127, 43, 34,127,248, 24, 4, -212,189,214,246,254,245,158,247,157, 0,254, 59, 97,114,221,191, 5,254, 85,124,253,159,120,239,223, 33, 34,127,221,185,177,206, - 58,235,236,130, 65,221,191,231, 26,205,189,119,255, 0,219,213, 79, 97,165, 32, 99,138,114,130,245,158,210, 9, 90, 82, 18, 54, -176,126,128,209, 33,107,119, 49, 13,241,243,135,172, 29, 92,234,163,211, 4,235, 0, 47, 97,206,187,143,201,143,143,175,105,197, -104, 92,114,239,116, 74,246,130,214,174,122, 11,190,132,106, 10,106, 17,188, 21,176, 30,235, 47,230,119,215, 18,224,188,234,141, -231, 50, 9, 45,214,221,111,136,192, 94,183, 84, 93,125,142, 95,209,110, 51,187, 50, 78, 98,187, 16,123, 36,134,224, 11,165,162, - 47, 8,132,227,123,175,122,130,143,247, 73, 1,117,239,253, 63, 4,126,165,149, 81,223, 40, 34,111,253, 2, 54,185,205,110, 10, -254, 3,103, 0,244,189,235,244,199,188,247, 95, 29,175,151, 34,136,234,126,176,115, 99,157,117,214,217, 5,129,186,191,241,170, - 37,238,249,236,123, 41,228, 8, 34, 19,122, 26, 20, 66,233, 60, 51,107, 72, 85, 74, 38,223, 13,254, 74, 44,111,193, 51, 69, 5, -250,157,178,196,157,186, 11,117,217, 75, 0,120,238, 37,251,120,217,179, 14,242,167,183,159, 12,243,224,189,132,217,239, 62, 4, - 1, 0,184,144,233, 79,215, 71, 60,235,240,220,191,251,173, 7, 96,182, 5,197,216,199,136, 0, 28, 30, 5,244,182, 31,151, 17, -152, 34,242,182,152, 69,214,245,247,115, 17,175,157, 9,156,206,231, 89,238, 79,134,109, 60, 6,239,125, 42, 29,239,185, 0,250, -183, 19,250,200,117,124,233, 87,129,239,253, 2, 55,187, 23,212,223,121,142,159,123,103, 43, 8,123,117,231,194, 58,235,172,179, - 11, 2,117,255,246,151,190,128, 53,251, 91, 84,114, 25,137, 30,147,171, 0,158,133,243, 20, 54, 39,151, 41, 61,249,102,249,223, - 62,242,251,254,237, 87,255, 56, 78, 4, 65,130,242, 93,192, 40,252,195,115,166, 80, 41,225, 71,191,245,106,190,254,182,223,134, -105, 9, 89, 26,222, 71, 4,117, 71,160,243,119,198,188,232,203, 47,225, 59,191,246,121,205,103,221,137,219,241,190, 4, 91,132, - 55,122, 15, 56, 5,242, 32,175,186,188,120,188, 78, 86, 4,246,182,168,238, 26,206,179,181,141, 64,129, 95,104, 91,210, 83,241, -169,112, 79,233,227,245,222,127, 7,240,203, 45, 64,127, 31,240,143,219,207, 98,191, 64,187, 31,120,122,235,247, 63, 63,199,207, -181,223,247,180,206,133,117,214, 89,103,231, 5,234, 30,132,159,126,209, 27,153,218, 95,192, 73, 69, 79,143,201,148,224,189,103, - 98, 61,206, 15, 24,234, 59,232,201, 55,201, 63,251,139,248, 32, 10,185, 11,241,224,241, 40, 17,148, 64,222,199,222,243, 33,204, -198, 61,200,202,229, 0,188,238, 69,151,115,211,247,188,154, 55,255,167, 63, 97,188, 57,131, 60, 11,207, 94,247, 30,138, 18,198, - 19, 94,252,156, 67,188,247,135,190,129, 65,158,132, 77,151, 19,236,109,239, 67,210, 44,204,130,247, 14,156, 11, 89,186,241,127, -121, 1,245,244,243,181, 91, 90,153,210,145, 11,248,252, 77, 95,234, 15,122,249, 82, 57, 94,239,253, 27,129, 95, 96, 94,255,254, -109,224,219, 69,196, 62, 6,155,255,107,130,224,173,182,205,115,252, 92,251,125, 75,157, 11,235,172,179,206,218,118,118,245,251, -219,175,190,142, 82,253, 34,168, 41, 11, 73, 73, 79, 11, 30,207,200,130,146, 1,125,253,235, 28,144,151,206, 1, 29,200,249, 52, - 42,148,185,129, 0,212,198, 64,181, 67,249,161,159,217,181,249,239,254,186,231,241,103, 63,241,122,222,252,141, 95,201, 21,171, - 25,185, 47, 25, 42,203,215, 60,107, 63, 63,251,189,175,225,143,255,221, 53, 92,113,104,238,187,170,143,254, 34,126,243, 30, 72, - 50,144, 16, 57, 80,197,126,120,241, 71,191, 72,207,243, 35,169,206,159,234,251,119,228, 41,122,188,231, 2,232,223, 67,232, 27, -175,239,145,223, 5, 94, 47, 34,143,213, 51, 6,246, 62,131,125,249, 28, 63,183,124, 1,129, 64,103,157,117,214,101,234,224,111, -188,170,207, 9,251,239,113, 82,176,168, 33, 17,161,244,158,113,169, 73, 85, 70,162,126,138,188,252, 81,249,142,163,187, 29,157, -113,159, 70,212,231,176,238, 48,222,219, 60,213, 83, 4,200,134, 76,239,251,227,188,250,240, 59, 48, 47,159,207,238,120,254,211, -247,243, 51,111,124, 37, 63,241,157, 21, 15,173,143, 72, 19,195,197,171,131,207,219, 31,123,219,111, 82,125,242,191, 64,222,143, - 33,137, 14, 2, 61,235, 4, 95,150, 40,255,219, 79,192, 57,187,144,250,112, 91, 80,118,196,123,191,242, 36,247, 89,239,181, 99, -173,253, 59,167,167,207,197, 94,244,167,234,241,158,237,216,190,159,208,102, 86,219, 31, 0,223,246, 24, 15,124,249, 45,224,231, -153, 11,239,190, 58,190,118, 54,251,234,214,207,247,118, 46,172,179,206, 58, 59,247, 76,125,194,126, 60, 43, 32, 21,206,123,198, -214, 51,174, 82, 82, 17, 22,184, 86,190,255,207,111,144,235,143,126, 94,230, 34,215, 31, 29,147,201,187, 16,159, 48,181, 62,146, -248,130, 82, 34,253, 5,236, 39,255,111,202, 91,126, 20, 63, 62,181,235,115,121, 98,184,252,208,210,231, 3,122, 57,193,254,197, -207, 83,253,201,191, 67,178, 20,209, 58, 60,194, 61,201,160, 44,193,185, 4,236,251,229,181, 55,221,247, 56, 59,251,189,162,175, -115,101, 6,246,182,137, 93,247, 69,182, 14,218,251,183, 18,199,182, 94,104,150,254, 84, 56,222, 71,187,198, 63,180, 7,208, 63, - 0,124,203, 99, 61,232, 69, 68,142, 3, 31,106,189,244,166,115,252,104,251,125,183,118, 46,172,179,206, 58, 59,119, 80,191,120, -242, 16, 61,125, 15,137,244, 25,149,125,156,235,211,151,109, 22,244, 43,229,250,143,220,252,232, 28, 64,250,139,104, 78, 51,171, - 12,165, 11,253,234,154, 48, 50,118,176,128,251,236,239, 82,188,239,187,176,159,126, 31,126,235,248,153, 29,236,232, 36,238,179, -183, 80,252,183, 55, 82,253,229, 47, 64,158,131, 54, 97,216,140, 8, 72, 34, 76, 74, 65,123,240,205, 99, 48, 31, 47,103, 95, 63, - 52,165,109, 55,159,163, 3,191,153,221, 98,177, 27,206,146,233, 62,209,118, 51,187, 69,105, 55,156,195,185,184,225, 41,124,188, -143,116, 92,255,130,221,207, 69,127, 92, 0,189,101, 63,222, 14,146,188,247,255,230, 44,251,247,111,128,175,139,191, 90,224, 63, -117, 46,172,179,206, 58,219, 5,189,143, 10, 70,215,222, 86,248, 27, 95,241, 42,166,229, 15,224,212, 37,164,234,163,244,146, 95, -146, 55,254,201, 89,159, 74, 37,223,251,161, 13,255,243, 95,253,221,204,220,123,216,169, 42,140, 2,173, 37,164,216, 64,127, 17, -170,211,148, 31,250,247, 72, 58, 68,246, 61, 7,181,250, 12, 48, 57,184, 18,183,121, 31,254,228,167, 97,186, 9, 73, 2,131,150, - 38,168, 22,187, 23,202,147,145,226,171,159,144,111,250,149,219, 31,199,236,252, 8,159,255,124,241, 13,206, 79,249,126, 61,187, -103,175,127, 32, 62,102,244,150,115,248,254,107, 34, 88, 62, 46,130, 51, 17,217,240,222,191,141,121,187,222, 17,239,253,141,103, -122, 68,107, 4,244,115,121,236,233, 23,237,241, 62,194,247,254,107,224,173,103, 0,244,201, 23,176, 77,223, 58,199,114,134,243, -254, 7,222,251,223, 36, 76,140, 3,248, 49,239,253,215, 16,218,214,254,140, 80, 51, 95, 38, 80,238,111,218,195,142,252,172,136, -220,217,185,176,206, 58,235,236,156, 65, 29, 64,174,255,208,125,236,126,120,197,185,219,247,254,217,123,249,217,151,189,131,202, -191,153,173, 98,194, 66, 42,104,130,168, 13, 15, 73,130, 36, 9,120,135, 95,251, 4,213,137,163,212, 99,229, 68, 25, 48, 41, 12, -246, 60,170,218, 3,133,197,187, 30, 40,157, 65,245, 65, 38,147,183,126,129, 14,221, 95,192,199,174, 63,159, 58,113,156,150,118, - 61,243, 39,151,213, 64,119, 11,129,174,110, 83,249, 53,205,127,132,121,109,250, 45,143,243, 90,184,137,221,143, 65,189, 46,210, -240, 55,181,246,237, 8,129, 74, 95,137,153,248, 6,143, 80,131,127, 10, 28,239, 94,219,187,134, 94, 11,140,207, 99,105, 60, 75, - 68, 46,228,209,191,223, 73,120, 2,219,139, 91,231,248,108,229,143, 63, 0,126,232, 66,215,242, 35,189,231, 76,129, 71,103,157, -117,246, 37, 6,234, 95, 80, 6, 8,222, 39,213, 15,163,146,131, 20,254, 13,108, 21, 83,159,107, 36,215,129,134,175, 93,136, 40, - 72,243, 71,127,154,133, 7,156,135,153,197,109, 21,244, 46, 58, 4,218, 30,165, 50,223, 38,215,222, 92, 60,129,231,236,104, 4, -244,243, 86,218,139,200, 77,173, 1, 54, 43,231,225,196, 31,119,139,217,250,181, 49, 67,189,178, 5,182,103,122,216,205, 6,112, - 45,103,121, 16,206, 23,243,241,126,177,152,136,108,199,224,233,157,192,119,156,229,237,101,124,223, 91, 68,164,234,206, 94,103, -157,117,182,215,212,227,253, 5,114,253,209,146, 19,249, 63, 34,145,159, 66,200,147,173, 18,119,186,132,169,131,138, 70, 67, 39, -114,134,255,226,255,176, 64,225,240, 91, 21,178, 49,163,183,178, 12,253,252,215, 97,235,213,242,173,191,252, 68,180,245,220, 18, - 51,214,107, 69,228,234, 11, 1,244, 54,208, 17,198,203,222,196,185, 13, 87,185,153, 64,101, 63,238, 15, 49,137, 15,133,185,250, - 44,223,117, 11,225,177,167, 71,159,234,199,251, 69, 4,236, 27, 34,242,157,192, 87, 69,208,254, 20,176, 22, 65,252, 4,240,167, -192,255, 17,217,128, 31,236, 0,189,179,206, 58,123,148,100,250,137, 51,255,127,125,205,107,238, 61, 49,190,245,233, 43, 25,213, -204, 83, 25,129, 92, 35, 70,133,204, 93,181,118,199,123,176,224, 43, 7, 83,139, 46, 29, 73, 34,108, 89, 88,124,250, 69,111,224, -175, 95,248,255,201, 91, 31,247, 65, 51,143,255, 57, 9, 89,218, 94, 10,251, 24,225,233,102,183, 60,137,251, 85,211,225,237,103, -162,223,114,142, 79,131,123,202, 29,111,103,157,117,214, 89, 7,234, 23,226,212,223,249,178, 69,114,249,135, 76,252,191,192,249, -203,195,104, 88,239, 81,202,161,152,131,180, 67,225,156, 34, 36,242,160,213, 73, 12,239,160,151,255,103,249, 39,127,244, 80,119, -233, 58,235,172,179,206, 58,235,236, 73, 6,245, 6,220,223,255,186,140,207,109, 62,155,210,189, 30,228,229, 88,127, 17,206, 45, -227, 73, 65, 74,140,156, 70,203,195, 56,255, 87,164,242, 95,169,242, 79,203,247,253,209, 78,119,201, 58,235,172,179,206, 58,235, -236,139, 12,212, 63, 15,228, 63,248, 42,195, 61, 24,244,186, 38, 31, 56, 54,138,234, 76,131,109, 58,235,172,179,206, 58,235,172, -179,206, 58,235,172,179,206, 58,235,172,179,206, 58,235,172,179,206, 58,235,172,179,206, 58,235,172,179,206, 58,235,172,179,206, - 58,235,172,179,206, 58,235,172,179,206, 58,235,172,179,206, 58,235,172,179,206, 58,235,172,179,206, 58,235,172,179,206, 58,235, -172,179,206, 58,235,172,179,206, 58,235,172,179,206, 58,235,172,179,206, 58,235,172,179,206, 58,139, 38,111,191,238,245,222, 36, - 6, 17, 1,239,177,206,147,101, 41, 74, 4,147, 24,172,117,100, 89,138,136, 48,155, 21, 40,165,240,222, 81, 76, 11,172,117,224, - 61,101, 89, 98, 43,139, 7, 68,132,170, 40, 80, 90, 35, 34,164, 89,138, 49, 9,251, 15, 29, 64, 27,195,104,235, 52,219, 91, 59, -148,101,133, 82, 66, 81, 84, 40,165,209, 90,112, 14,242,193, 2,139, 75,139,244, 7, 25,101, 49, 99,235,244, 22, 85, 81, 97,210, - 4, 17, 33, 73, 52,222, 67, 89,150,120,231, 41,171, 10,103, 29,218, 36,228,189, 28, 81, 10, 17,161, 44, 43,138, 89,217, 60,241, - 77, 27,131,247,158, 98, 86,197,239,242, 88,235,176,214,209, 31,228, 36,105,130, 82, 66, 85, 88,172,173, 40,102, 5,206,121,146, - 36,193,123,135, 82, 10,147, 36,104,163, 72,211,140, 94, 63, 69, 41, 69,154,165, 12,134, 57, 74,107,140,209,100,121,134,136,167, - 42, 45,182, 42,217,218, 28,177,177,182, 69, 85, 57,188,119,128,167, 42, 43,148, 82, 32, 96, 43,135,210,130,224,113,206,225, 28, - 40,173, 1, 88, 90, 93, 33, 77, 83, 78,175,175,161,180, 33,239,247, 88,123,248, 33,202,178,162,126, 34,182,136, 71,107,131,247, - 14, 17,193, 24,133,247, 96, 18,131,115,142,170, 12,199,235,189,199, 86,142,162, 40,177,214, 81, 22,225,220, 40,109, 48, 70, 49, -155,206, 40,203, 2, 17, 72,179, 12, 91,121, 76,162,153, 78, 42, 94,242,138,151,114,223,177,251,240,174,100, 58,153,177,176,188, -200,131,247,221, 71,175,151,147,247,123, 0, 20, 69,137,214, 97, 64,225,108, 50, 97,180,179, 67, 85, 89,190,226,170,171,185,239, -174,187, 88,221,191, 2,162,184,237, 83,119,146,247,122, 88,235, 24,109,111, 50, 43, 42,178, 52, 35, 73, 83,188, 87,164, 89,194, -120,103,135,157,157, 45,202,114,198,171,255,222,235,184,245,119,126, 27,235,194,241, 93,114,233,165, 60,253,138,167,145,229, 25, - 85, 89,114,226,161,147, 60,112,252, 65,202,162,192,186,112,237,156,181, 56,103, 89, 88, 60,200,161,139, 46,226,115,119,223,193, -100,178,131,224, 17,132,231, 62,255,165,140,182, 78,241,224,253,119,179,239,224, 37, 92,250,180, 75,185,228,138, 43,168,138,146, -187, 63,115, 7, 15,221,119, 7, 87,191,226,235, 56,117,114,141, 83, 15,220,203,129,139,175, 96,115,237, 97, 38, 91, 15,162, 84, - 56,151,120, 7,222,225,177,241,209, 5, 10,188, 67, 36, 92, 19, 17, 65,148,230,210, 47,123, 5, 27, 15,220,193,108,188,206, 11, - 95,249,141, 96,134, 60,112,236, 51,172, 29,191,157, 23,188,252, 8, 58, 25,112,199,199, 63,204,246,233,181,120,221,114,150, 87, - 87, 73,210, 20,147, 24, 60, 30, 91,121,188,247,244,134,203,160, 50,238,250,212,135, 41,139, 49,206, 78, 17,226,190, 64, 60, 62, -143, 8, 40,165, 73,178, 37, 22, 14, 62,143,201,169, 79,225,189, 69, 41, 65, 43, 5,184,248, 62, 3, 34, 40,165,113,241,252,106, -229,240,174, 2, 28, 72, 6,122, 9, 17,135,216, 83, 8, 21, 34, 26, 68, 35, 42, 69,233,112, 47,122,239,241,104,130, 11,177,120, -231,176,182, 8,127, 3,156,243,104,147,211, 27,174,144,102, 57,158,176,127,147,105,193,108, 50,101, 50,222,164, 44, 11,156,115, -120, 52, 94,194,218,141, 11, 28,239,108, 56,231,241,105,142,222,251,248, 93, 62, 30, 79,248, 93,240, 40, 37,205,207, 32, 40, 21, -238,123,173, 21, 90, 9,222, 91,164, 57,126, 1,194, 78, 42,109,208, 58, 65, 68, 97, 76, 26,183, 25,182,225,124, 60,183, 18,238, - 95,239,226,121, 86,225,115,225,154,179,107,223,136, 62,195,227,113,182,194,123,139,179, 22, 31,191,215, 57, 11, 8,214,133,123, - 57, 28,174,224,227,126, 55, 79,188,143,143,184,247, 46,248,143,224,139,192,199, 99, 83,218,128, 15,107, 45,156,111,143,136, 2, -234,107, 26, 30,159,225, 92,120, 93,107,131,179, 21, 74, 25, 36,110, 62, 28,143, 67,107,141, 45,103, 97,141,187, 18,163, 21, 96, -209, 90, 35,128, 82, 30,188,141,254,202, 69,204,136,255, 66,196, 6, 31,190, 75, 9, 62, 60,215, 35,172, 51,194, 51,186,240,196, -107,171,112,206, 34, 74,225,157,199,121,135,243,210,236,171,247,225, 73,219,206,131,143,127,115,206,134,223,145,224, 43,189,196, - 53,163,112, 94, 16,209,225,111, 62,252,231, 81, 32, 26, 36, 1, 20,196,115, 84, 89, 11,162, 16, 73,240,120,170,202,198,245, 68, - 92,155, 42,158,127, 1, 28,222,131, 82,130,138, 15, 28,243,184,230, 56,172, 45, 27, 63,236, 93,240, 59,205,121,245, 14,188,109, -214,167,119, 54,248, 12, 31,222, 67,196, 3,239,125,248, 93,234,147, 20,205, 55,255, 23,215,126,251,245,250,213,221, 63, 8,160, -180,209,241, 36,122,172,245, 24,173,113,214, 99, 93, 0, 60,128,170,178, 84,165, 69,226, 98,243, 14,146, 52, 9, 78,199,123,140, -209, 36,169, 33, 49, 26,173, 2,144,215, 55,146,173,108,115, 48, 90,107, 76,154,226,156, 67,137, 32,162, 72, 18, 19, 22,172,243, -104, 5,174, 28,179,126,234, 20,227,209, 20,147,164, 28,186,232, 16,139, 43,139,164,105, 18,222,235,195,129,167,105, 0,216, 0, - 36,225,187, 2,112, 89,128,230, 95,173, 53, 89,150, 53,159, 55, 70,199, 27, 47, 0,160, 49, 26,165, 20,206,186,112,220,214, 98, -173, 67,233, 26,160,131, 35, 81, 74,145,166, 9,198, 24,146, 84,211,235,247, 88, 92, 26, 50, 24,246, 48,198,160, 36, 44, 6,165, -192,217,112,177, 70, 59, 83, 54,215,183,176,214, 81, 85,101,235,230,244,225,198, 16,193,249, 16, 92, 20, 69, 25,157,159,161, 44, - 74,156,179,140,118, 70,152, 36,220,184,163,157, 29,108,229,232, 13, 23,154,155,222, 86, 22, 99, 12,218,104, 76, 18,175, 7, 10, - 81, 10,231, 28,179,105, 65,146,104,108,229, 40,203,138,233,116,198,120, 60,102, 50,153,134,235,150,152,112,243, 33, 40, 29,110, -174,170,172,152,140,103, 88,107,153,140,103,193, 73,227,169,202,146, 36,203, 80, 74, 72,146,148,229,213,101,108,116, 52, 85, 21, -174,167, 82,130, 45, 43,180, 86,205,162, 61,249,240, 26, 73,154, 98,157, 67,107, 69,158,103,209,113, 26,148, 40,210,196,160,148, -194, 90, 27,207, 69,248,215, 57, 63, 7,208,104,198, 36, 44, 46, 45,144,164,225, 51,179, 89,193,104,103,132, 86,154,188,151,147, -166, 41, 90,233, 38,192,233,245, 7,128,167, 44,103,120,231,234,187,134,125, 7,246,177,177,118, 18,165, 12,121,158,147,247,122, -136,132,243,182,254,240,253, 44, 44,237,167,183,176,200,137,251,143, 49, 88, 88,194,122,176,229, 52, 56, 2, 20, 74,169,230,253, -120,162,147,118, 1,128, 34, 72,120,239, 89,220,119, 5,182,156, 49, 29,157,228,203, 94,252, 42,210,172,199,104,107,155, 83,247, -125,138,149,253,151,208, 95, 88,229,196,253,247,178,181,254, 32,196,251,101,176,176, 64,214,203, 26,112,114, 54,120,194,172,183, -136,201,134,220,125,219, 71,130, 99, 85, 26,165,146,230,220,204,215,159,198,152,140, 44, 95, 96,233,208,115, 81,213, 58, 73,214, - 39, 73,251, 1,172,234, 71, 26,171,250, 56,194,218,214, 74,161,181,154,251, 12, 73,144,100, 9,165, 5,229,183,193, 77,119,221, - 11, 34,126,238,128, 68, 53,206,169,118,112, 53, 96,138, 40, 4,135,179, 5,197,108, 28,215,143,137,251,170, 80, 70,163,148,158, -123,170, 8,136, 18,144, 25,226,189, 26, 2, 21,105,112, 78, 68,208, 90,163,180, 66,226,235, 74,235,230,103, 81, 58, 0,158, 72, - 56, 46,145,176, 46, 98, 64, 81,175, 5,169, 3, 7, 31,128, 5, 81, 32, 62,252, 71, 29,192, 5,144, 18, 9, 62,166, 70,241,240, -187,155,127,222,218, 38,184,210,198, 68, 71, 27,142, 37, 4, 74,190, 73,138,234,115, 95, 39, 83,193, 31,250, 93,143,161,174,145, - 80, 90,248, 46, 82,131,128,195,251, 10,103, 11,194,179,169, 29, 80,131, 69, 12,236,132, 38,248, 17, 9,231,199, 55, 64, 31,207, -107,235,124, 58, 91, 54,201,152,138,231, 91,199,223, 67,128, 67, 56,191,113,159,194,182,104, 2, 13, 36,252, 93,105,133, 18, 21, -175,153, 10,215,168, 14,160, 36,156,117, 81, 58, 6, 34, 49, 32, 65,135,251,169, 62,131,162, 98, 64,232,162, 63,176,115,160,175, - 65, 63,222,211, 62, 62,190, 27, 81, 13,232,123, 31,130, 49,235,194,253,227,145, 24,251, 10,160,168,170, 24,124,196,245,172,148, -158,195,167,196,251, 59, 6,199, 90, 43,180, 14,127,247, 4,255, 46, 66, 19, 8,135,251,191, 62, 63,170, 57, 14,145,122,109, 69, -128,111,225,113, 8,132,227, 45, 36, 18,127,158,191, 86,239,117,253,183,112,127,213,239, 9,107,160,249, 57,254,141,120, 75, 42, - 16,146, 52,193,123, 2, 48,226,241,222, 97,173,165,170,108, 4,123, 75, 89, 85,232, 8,218,245, 13,105, 98,118,170,181, 38, 73, - 18,210, 44, 0,139, 54,134, 36, 73,154,136, 21,160, 42, 75,170,178,100, 48, 28,176,184,188,136,210,170, 57,129,117,134, 39, 34, - 84,149,197,150, 5,235, 39, 79,176,126,106,131,233,180, 98,117,255,126, 86,246,173,146, 70,198, 64,148,132,108,204, 90,240,144, - 36, 9, 85, 85, 81,149,182, 1,187,144, 89, 7, 16,215, 38, 44, 44, 99,194,239,243,136, 63, 28,115,146,104,148,146, 24, 57, 6, -112,202,210, 0,212,206,185,176,157,196,160,180, 34, 77, 83, 86, 86, 23,227,118, 53,105,150, 96,173,107,246,171,152, 85, 84,149, -101, 58, 41, 40,139,200, 96,196,133,232,156,195, 58, 23, 89, 7,197,120, 60,139,129, 79, 21,111, 52, 69, 81,148,136, 10, 17,117, - 57, 43,216,218,220,166, 63,236,131,247,108,174,175,211, 31, 12, 73,146, 20,173, 21, 89,158,133, 27, 68,194, 53, 20, 21,174,133, -179, 33, 67, 79, 82, 19,162, 80,173,176,149, 99, 54,155, 49, 25, 79, 3, 83, 16,207, 63, 30,202,162,106, 22,229,108, 86, 50, 25, -143,153, 76, 38,205,113,149,179, 50, 6, 64,134,193, 66, 31,109, 20,131,133, 33, 74, 96,180, 61,106, 28,155,173, 28, 85, 85, 49, -157,204, 40,138,146,201,120,194,198,169,117,250,131, 62,179, 73,129, 73, 12,105,150,160, 84, 56,239, 53,152, 7,144, 15,153, 69, - 85, 89,242, 44,195,196, 32, 3, 31,110, 20, 37,225,220, 15, 6,125,180, 54, 8,158,241,104, 18,217, 35, 1, 15, 70, 71,128,240, - 30, 91, 85,164,105, 74, 85,149, 56,107,227, 77,104, 81,162, 81, 90, 51, 25,111,163, 77,130, 49,154,254,112, 72,222,239,115,234, -193, 7, 41,102, 99, 46,127,214,115,121,232,254,227,204, 38, 59, 36,105,143,178, 40,169,170, 41, 34, 10,231, 3, 80, 37,105, 30, -178,157,232,232,165,229,128, 61,158, 36,233,177,124,232,114, 78,221,127, 27,151, 63,247,101, 44,174,172,176,189, 93,240,192,157, - 71, 1,207, 37,207,120, 14,224,121,224,179,159,136, 32, 8,253,225, 34,121,158, 7, 96, 78, 18,170,202,197,215,151,201,135,203, -220,115,251,199,230,206, 53,130, 74, 56,119, 25, 73, 58, 36,203,151, 24, 44, 30,100, 97,229, 98, 22, 15, 92,201,210,190,125,104, -147,144, 13,246, 49, 88, 58, 64,111,184,143,222,112,149,124,184, 74,154, 45, 96,146, 28, 99,146,224,156,149,224,157, 11, 25,137, - 40,148, 89, 64, 41,131,102, 10,110,212,164, 8, 1,132,234, 71, 39,198, 87,157,111, 64, 40, 56,175,112, 78, 66,176, 92, 65,157, -153,198,172,197, 89,135, 7,180, 49, 40,165,227,218,167, 1, 56, 23, 25,143, 6, 76,149, 52,204,199,220,111, 4, 63, 20,182, 27, -153,146,232,213, 84,235, 17,206, 77, 32,128,111, 28,174,111,101, 64,115, 71, 46, 17, 88,153,103,184, 34, 17,228,163,167, 21,105, -152, 64,234, 76, 12, 31, 0, 91, 84,124,171,219, 21, 64,132, 68,200, 5,240,146, 16, 4,170,246, 62,248, 0, 28,210, 4,138,154, - 6, 61, 98,112, 66, 3,244,115,176,105,167,190,129, 29,169,226,126,249, 38,163,167, 1,220, 24,192, 69,164,145,232,195,235, 75, - 88, 7, 85, 74,155,248, 62,143,104, 19, 89,131, 57,184,171, 38, 99, 87, 49,136,154, 95,103,239,133, 26,145, 68, 4, 79, 88, 75, - 77,192, 23,143,165, 14,182, 66, 16,172, 64, 84, 8,173, 36,128,174,117, 33,209, 9,151, 50,114, 79, 94,199,123, 47, 70, 14, 17, -176, 27, 22, 69,233,248, 62, 98, 6, 94, 3,116,100,106, 80,129,253,148, 58,243,247,225,120,148, 4, 6, 53, 6,166, 66, 96,139, -235,184,205, 53,235, 79, 71,254, 36,220, 35,218, 24,230, 68,146,154,199,162,245,177,251, 57,208,214,247, 86,125,178,155,100, 60, - 6, 45, 53,147, 21, 64,186,195,206, 76, 7, 0, 0, 32, 0, 73, 68, 65, 84, 5,232, 17,224,235, 0,166,121,173,245, 30,118, 37, -246,243,160, 90,137, 8, 11,139, 11, 44, 45, 47,198,104,205, 69, 10,161,190,201,117, 4,240,176, 40,172,117,209,137,133,157,204, -251,189,221, 17, 60,160,149,132,140,216,249,102,193, 76,198, 19,132,176,192,250,131, 1,121, 47,143, 55,156,111,168,113,107, 45, - 73,162, 73,211,224,152,203,233,132,211,235,235,108,110,110,147,102, 57,171,251,247, 49, 92, 28,144,231,105, 3, 66,170, 1,225, - 4,239, 61,105, 22,162,243, 36, 53, 36, 17, 68,146, 52,105,178, 16,147,232, 38, 91, 15,191,155,184, 80,194, 5,170, 74, 27, 35, -123,213,156,236,196,104,210, 44, 69,107,205,226,210,128, 52, 75, 73,179, 16,180,212, 89,173,247,176,179, 53, 10,217,240,206,148, -237,211, 59,140,118, 38,113,251, 45,170, 15,193, 24, 67, 81, 84, 24,163,169,170, 0,168, 38, 73,176, 46, 48, 16,245, 62,149,101, -201,198,218, 58,222, 43,134,139, 11, 20,179,130,233,100,202,210,234, 82,188, 97, 32,203, 83,178, 60,141,231,191, 14, 76, 2, 67, - 81,211,252,227,209,152,209,206,136,201,100,134, 8,100, 89, 18,168,191, 24,113,214,217,250,108, 86, 96,227,254,104, 37,104, 29, - 28,192,116, 58, 35,239,165, 40,165, 73,179,140,217,100,134, 73, 18,138,162,108,168,232,170, 44,155, 32, 48,252,235, 24,143, 71, -156,222, 88,103,176,176,192,108, 58, 13,215,190,223,195, 90, 31, 89, 20, 5, 53, 99, 32, 66, 76,168,112,222,199,232, 62,236, 91, - 77,177, 46, 45, 46,134,136, 57, 6, 71,211,241,164,185,249,141, 49,209,225, 73,204, 86, 19,210, 52,141,212,109, 96,130, 20,144, -245, 22,169,138, 25,120,200,178, 30,131, 97,159, 44, 31,224,189,231,196,241,123, 25, 12, 87, 88, 62,176,159,227,119,223,137, 82, - 9, 73,154, 51,155,140,241, 54,128, 85,160, 91,235,181,148, 97,146,180,137,196,219, 20,241,202,225, 47, 99,180,121,146, 3, 23, - 61,157, 75,159,241, 76, 30, 62,254, 48, 91,235, 15, 49,217,122,144,149,131,151,113,240,178,167,115,207,109,127,137,171,102, 8, -208,235, 15,232,245,135, 36, 89,218,148, 98,188,115,244,134,203,244, 22, 86,249,220, 29, 31, 15,153,148, 82,104,147,160,117, 74, -150, 15,233,245,150,201,251,203, 44,172, 28,102,105,255,101, 44,172, 94, 66,127,241, 32, 43,135,174,164, 26,111,144,102, 41,121, - 44,129,153, 36,139, 1, 64, 78,214, 95, 34,237, 45,146,100, 3,146, 52,139, 14, 48, 56, 31,157, 45,163, 76, 31, 45, 21,190,218, -110,104, 66,162,147, 21, 21, 28, 82,200,234, 90, 89,182,119,141, 95, 8,217, 75,164,164,157,101,158,120,134,181, 30, 0, 46,128, - 69,160, 48,125,227,168, 84, 4,207, 58, 72, 8,142, 81, 53,215,178, 14, 32, 92,244, 79, 18, 65,180, 73,143,124, 43, 27,106, 74, - 34,210,162, 49,165,201,232,219,160,230,226, 53, 12, 89,183,139, 14,216,181,178, 56, 31, 0, 35, 6,118, 53,149,238,125,200,108, -125,204, 18,109, 85, 6,226,214,187,120, 29, 3,229, 79, 3, 53,177, 68, 80,179, 61,141,123,151, 24,248,212, 37,132,176, 81, 31, - 51,249, 38,187,143,255, 83,210,226,180,227,127, 82,179, 1,174,138,193,108, 93, 98,136, 64, 95,151,106,164,197,110, 8, 40,157, - 52,199, 37, 49,115,141, 41, 48,222, 91,144,249,117, 9,247,165,106,125, 87,100, 10,124,213,176, 31,117, 16, 18,216,137, 36, 6, - 46,177,116, 35, 42,150,110, 66,182, 28, 63, 17, 83,219,240,187,173,193,204,215, 84,123, 67,174, 4, 70,197,215, 44,158,110,178, -221,152, 26,199, 64, 99, 30, 12, 5,166,212, 70, 70, 82, 35, 42,248,215, 16,228, 69,198,197, 5,112, 79,146, 36, 38, 27, 14,163, - 13,222,205,207,127, 83,218,240, 49, 30,169,215,157,119, 45, 58,124,158, 48,214,126,213,123, 2, 3,236,108,120,182,184, 8,206, -219, 22, 43, 86,255, 43,173, 12,188,117, 91,181,193,190,157,237,195, 60,179,111, 1,191, 26, 46, 12, 88, 94, 89,164,215,239,163, -180, 66,199, 76, 54,100,187, 33, 35,174, 35, 60, 27, 51, 30, 99,116,164,181, 12,222, 65,154,134, 26,188,214,115,240, 51, 70, 99, - 18, 67,146,134,236,216, 89,139,173, 42,108, 89,146,230, 57,203,171,203,225,239,137,193,104,213,128,112,213,212,194,125,160,116, -188, 99,186,179,205,198,250, 38,214,193,226,242, 50,105,150, 97,140,106,168,161, 64,157,133, 5,104,173, 39, 73,116,100, 0, 52, - 58,214,140, 27,186, 79,207,233,247, 58,234,175, 3, 4,231, 28, 89,150,196,155, 39,156,184, 36, 9, 81,180, 49,138,213,253, 75, -244,135,189,230, 68, 59,231,201,123, 1, 80,203,162,164, 42, 43,198, 59, 19, 38,227, 41,179,105, 25,162, 57, 81, 49,250,171,107, - 77, 33,112,168,121,175,217,180, 68, 27, 19, 40,108, 21,162, 84,165,132,217,116, 26,153, 8,139,181, 37,189,193, 16,173, 21,219, -155,155, 36,105,206,112,113,129, 94,191, 23, 74, 4, 77,116, 31, 46,115,205,146,104,163,217,217, 25, 51,157, 22,204,138,178, 97, - 47,172,181, 77,144, 83,150, 21,147,241,148,201, 56,208,171,225,102,114,120,132, 52, 77,201,243,140, 98, 54,101,184,184,128,247, - 22,173, 13, 85, 85,162,117, 66,150,101,120,103, 41,203,170,169,223,135,227, 12,212,191,119,142,217,100, 20,178,206, 50, 4, 0, - 89,150,161,117,200,204,147, 36,105,162, 87, 99,116,116, 85,225,247,196, 24,240,160, 99,157, 46, 73, 18, 22,151, 23, 72,211, 20, -107, 45,211,241,148,217,172,192,123, 79,158,167, 49,160,148,150,147,139,245,249,209, 40,158,234,224,128,246,237, 63,200,230,218, - 26,120, 79,127, 48, 36,207,123, 44,239, 91,101,227,196, 9,118,182, 54,185,236, 25,207,230,212, 67, 39, 24,111,175,145,245,134, -120, 81,216,114, 26, 28,157,214, 24,147,162, 77, 8,138,194, 58,207, 48, 38,105,130,170,160, 73, 88, 98,184,114, 16,113, 19,158, -253,162,171,185,227,227, 71, 49,189,101, 78, 28,251, 24, 74, 25,174,252,202,151,176,189,113,138, 19,159,187, 19,240,244,135, 75, -244,250, 11,228,189,140, 36,209, 32,129,189,201, 7,139,100,131, 85,238,185,237,163,120, 95, 6,118, 67, 20,105,154,135,236,189, -191,204,112,229, 48, 75,251, 46,102,184,180,159,188,215, 39, 73, 12,249, 96, 5, 69, 1,222, 70,240,169,179, 74,139,146,232,248, - 9,247, 87, 8, 18, 76,115,158, 69,247, 16,221, 71,107,143, 43, 55,241,174,108,101, 8,174,185, 66, 66, 72, 0,172,173, 34,181, -233, 26,176, 15,181,207, 80,191,110,192, 10,133, 73,178, 57,165, 29,247,201, 86,101, 4,133,144, 41,207,125,187,223, 69, 67,207, -147,134,154,198,149, 38, 51,175, 51, 88, 98, 86,140, 82,145,181, 10, 76, 0, 77, 41, 64,106,191, 63,207,156, 34, 56,207, 19, 30, - 55,175, 40,196,213, 89,215, 73,125,235,187,130, 51, 15,201,141, 82,210,232,139,106,122,223,121, 7,206, 33,196,115, 32,106, 87, -240,215, 80,249, 49,153, 16,116,195, 12,132,253,172,233,232,152,197, 74, 60,199,245,235, 17, 8,234, 42, 5, 77,253, 22, 16, 31, -147,177,121, 96, 67, 4,210, 80, 50,242,243,224,168,198,211,150, 30, 65,105,141, 18,223,148,106, 2,192, 7,253, 72,205, 42, 52, - 1, 74,227, 71, 93,195, 54,212,231,215,123,135,214, 73, 96, 83,154,215,252,252, 56,163, 38,192,199,100,209,186,122,101,214, 58, -143,121,169,195,123,105,232,247, 58, 67, 15,153,124,157,173,170,200, 90,234, 80,155,151,154, 82, 87,145,141,242, 77,153,108,174, -177, 2, 37, 58, 18, 38,130,214,193, 31,133,242,171,106,216, 4,165, 2,173,175, 36, 4, 1,206,185, 72,193,135,128,192, 58, 27, -180, 41, 17, 91,106,124,113,182,205,150,212, 76,205, 60,128,219,157,109,207,207, 77,139,196,137,199,203,156,122,247,187,107,234, - 53,184, 55,235, 0, 48,189, 65, 31,231, 96, 50,154, 4,154, 53,214,187, 68, 5, 26, 91, 18, 69, 85, 85, 49,123,164, 1, 60,145, -144,105, 57,231,209, 89,168,205, 54,236,191,115,205,142, 6, 70, 45,220, 84, 59, 91,219, 44,174,104,242, 52, 37, 93, 92, 96, 54, - 9, 66, 56,165, 85,168, 35,123, 23,178, 53, 64,235, 36,128,143, 49,136,120,102,227, 17,107,101,193,226,242, 50,131,133, 69,210, - 44, 99, 99,109,157,201,104,210, 0,123, 40, 5,168, 72,159, 8,121, 47,141, 34, 50,143, 82,158,138, 16,125,155, 36,208,210,222, -121,146,152, 37, 86,101, 96, 9,132, 80,131,155, 76,102, 36,137,161,215,207,201,251, 57,189,126,222,232, 8,170,178,138, 96, 47, - 56, 27,182, 49, 30, 77,168,202,138,178, 44,153,140, 2, 37, 44, 49,232, 48,137, 6,130, 70, 65, 16,108,172, 5,133, 26, 92, 88, - 96,182, 10,223,111,140, 97, 50,158,236, 10, 60, 78,175,111,114,224,240, 33,134,139, 11,140, 71,129,238,190,232,210,195, 60,252, -224,137,168, 29, 8, 87,218,185,224,196,173,173,168,172,101, 54,157, 81, 85, 21,182,170, 34,149, 9,130,162, 44, 43,144, 34, 44, -250,186,142,237, 28,214,121,242, 94, 22,106,212,253,156, 44, 15,231,111, 60, 26,177,186,111,137,147, 15,157, 98,176, 48, 36, 49, -193,105,166, 89,202,100, 60, 66,170, 50,126,111,200, 70,106,145, 97,168,237, 87,148,165,163, 44,203,152,145,230, 49, 67,159,215, -250,156,115,228, 73,134,247, 80, 20, 85,172,127,131, 54,129,158,207,210, 4,231, 97, 48, 24,196,117, 6, 59, 91, 59, 84,101, 25, -106,243, 42,148, 23,154,192, 9,137, 64,171,168,138,105,200, 22, 36,100, 22, 75,171,251, 56,249,192,189,136, 50,100,121,200, 90, - 77,170, 57,121,252, 62,210, 52,231,192, 69, 23,241,241, 15,253, 15,196,123, 6,195, 69,156, 11,245,116,239, 64,180,180, 50,148, -184,190, 85, 29,220, 70,113, 25,194,129,203,190,156, 98,188,206,243, 94,250, 53,220,254,145, 15,179,124,241,115,120,248,238,191, -164, 42,199, 92,116,229, 75,200,122, 3,238,187,253, 40,222,149,100,249,128,222, 96,129, 44,207, 81, 2,211,113, 96, 52,146, 52, -103,184,114,136,251,110, 63,138,171,166,161,228, 32, 6, 68,163,141, 33,239, 13, 49,105, 70,146, 36,204, 38,163, 70,163,130, 8, -217, 96,145,141, 7,239, 4, 23,106,174,182,152, 96,109, 17,152, 23,162,224, 51, 2,158, 18, 79,229,125,160, 75, 77,134, 36,203, - 40,177, 72,181,131,183,179,230,126, 70, 90, 25, 21,210,202, 50, 36, 36,105, 66, 84,123,213,206,171,154,131, 55, 66, 98, 82,146, - 52, 11, 66, 45, 23,216, 24,239, 29, 85, 89,204,105,108, 95, 75,147,230, 34,162, 26, 36,234, 53, 49, 7,240,154,154,118,248,152, - 49,170, 58,187,165,166,230, 29, 58, 82,250,210,232, 51,230, 2, 56, 26, 97, 91, 40, 57, 52, 96, 19,193,202, 58, 55,167,202,101, - 78,181,250,128,155, 17, 52, 92,212, 40, 72,100, 50,124,204,160, 67,166, 22, 88, 41,105,125,111, 60,158,154, 42, 85,181,144, 13, - 84,244,160,117, 62, 31,246,173, 22, 63, 42,188,154, 7,172, 68,122,157, 58,183,109,216,138,200, 26,196,114,131,179, 22, 37, 38, -178, 15, 37, 74, 37, 13,184,105, 5,222,201, 92,255,160,116, 4,135, 0,102, 90,116, 8, 74, 68, 80, 58, 1,111,131,200,171, 62, - 23,222, 70,102, 68, 34, 99, 19,179, 84,234,250,125, 4, 56, 53,167,196,189,183,177,142,174, 32, 10,203,156,115, 49, 49,241, 17, - 43,162,143, 20,193, 86, 85,147,237,214, 92,132,141, 66,187, 16, 40, 73, 19, 24, 8, 10, 27,191,207, 90,135,212,154, 19, 17, 68, -199, 96,204,213, 1, 21,141,208,211,197,200,192, 19,104,121, 98, 57,140, 88, 63,167, 14,168,116, 0,234,250,152,156,173,176,182, -154, 7,147,109,160,141,219, 19, 36, 48, 64, 17,153,125, 35,106,157,215,192, 27,150,170, 93, 22,218,171,151,195,239,122, 78,122, -179, 38, 91,191,215, 92,176, 89, 88, 24, 82,204, 10,118,182,183,231,130, 19,145, 64, 11,219,144, 33, 41, 81, 77,148, 82,223, 4, - 58, 82,188,218, 4, 33,157,142,145,161,115,150, 44,207, 40,203,146,158, 81, 20,211, 18,148, 3, 66,109,123,188,179,141, 82,194, - 48, 91, 98,184,180, 72, 89, 22,204,166,161,182,236, 35,125,139,247, 49,163,239, 53,244,186, 40,133,194,179,189,185,193,104, 39, - 99,101,117,145,131,135, 15,178,126,106,157,157,237, 81, 20,204,132,122,178,210, 42, 82,209,208,235, 39,204,102, 37, 68,134,161, - 44,162, 3, 80, 30,147,134,133,231,112, 49, 2, 11, 89,126,157, 45,247,122, 57,131,133,126, 0,186, 24,133, 77, 39, 97, 95, 37, -214,128,148, 10, 74,251, 90, 44, 49,155,150, 49, 75, 54, 17,212,124,172,219, 72, 20, 22,130,142,234,125,240, 12, 22,250, 56,235, -130, 8,144,121,176,228,241, 24, 29, 0,184, 44,166,156,222,220, 98,101,117, 5,239, 29,211,201, 4,115,104,149,133,197, 33,147, - 81, 16,190, 41, 45,248,194,199,154, 90, 16, 12, 78,167, 5,197,108, 70, 21, 89, 23,239,160,116,129, 94, 47, 70,227,112,205,180, -142,130, 69, 77,158,167, 77,205,182,102, 65,148, 22,202, 89, 65,150,231, 76, 39, 19, 6, 11, 67, 68,107,202,162,160, 55, 28,176, -126,234, 20, 85, 85,145,102, 57, 85,101,153,140, 39,148, 69, 25, 51, 89, 67, 89, 20,161, 59, 65,107,202,178, 34,203, 83,188, 3, -167,124,140,240,231, 74,102, 16,140, 86,204,170, 50,100, 8,209, 73, 56,235, 24, 46, 44,132,204,222,131,181, 21,155, 27,155,140, -118, 38, 77,233, 6,124,168,175, 71, 53,175,206,210,160,202,159, 5,122,219, 57,139, 19, 97,255,193, 85,142,221,246,113,178,172, - 71, 98, 12, 11, 75,139,108,173,175,113,122,125,157, 75, 46,127, 38,107, 39, 79, 49, 58,125, 34,148, 26,242,126, 0, 29, 27,130, -150, 16,213, 75,204,226, 84, 44, 49,129,215, 26,188,193, 86, 5,131,197, 67,244, 23,150, 56,124,233, 1,238,185,237,147, 72, 50, -164,156,108,179,179,126, 55,195,165,139,217,127,233,149, 84,211,211,172, 29, 63,134, 54, 41,139, 43,251, 72,243, 60,172,175, 8, -204,202,100, 44, 31,122, 26,247,124,250,163,148,197, 56,208,133, 98,200,242, 30,214,194, 96,105,137,188,215,111,238,252, 36,205, -152, 77,199, 76, 71,219, 12, 87, 47,225,228,125,183,177,179,126, 95, 84, 40,215, 37, 42, 5, 46, 64,158,171, 66,208,172,116,237, -224,195,189,158, 14, 87, 72, 18,131, 43, 38,204,102, 91, 33,131,117,118, 87,237,183,201, 56, 27, 10,183, 86, 8,123, 98,106, 24, - 0,187,201,208, 67, 78,146,245,130, 22, 36,220, 19, 18, 50,124,231,168,202,105, 3,222,245, 26,192,123,148, 14,247,161,119, 54, - 2,165,154,103, 64,141,120,172, 86,174, 71,186, 89, 84, 44,213, 4,231, 93, 51,132, 90,107,136, 0, 93, 43,255,131,215,214,141, - 48,207,225, 80, 62,214,191,197,180,202, 17,109,229,177,111, 50,189, 58,107, 18, 84, 44, 3,196, 12, 56, 72,216,226, 58,116,173, -186,119, 60, 83,222,198,192, 80,230, 12, 65, 64, 24, 20,117,201,207,134,123, 35,130, 34,145, 25,144, 70,144,104,119,169,157, 27, - 0,105, 68,134, 33, 1,115,126, 94,255, 22, 31,124,176, 80,151,180,130,175, 76,106,241,156,154,171,171,165, 6,106, 21,217, 51, -241, 17,192, 67,182, 10,110, 14,236,248,134,150,174,131,131,186,227,128, 22, 51,226,252, 92,167, 32, 74,135,164, 42,208, 2, 49, -193,241, 49,235,173, 34,248, 75, 12, 38, 2,179, 40, 42,136,174, 3, 13,111,230,107,176, 14,186, 84,232,212,106,128, 94, 25,108, - 76, 44, 66,252, 83, 3,189,198,232,132,202,186,166, 94,173, 35,184, 71, 9, 95,131, 57,243, 12, 58,126,127, 20, 66, 6, 22, 33, -176,147,117, 2,169,164,102, 99,231, 73,150,119, 14, 47, 45,178, 92,194,126,248,184,142,106, 86,168,206,190, 27,189, 76, 43,251, -158,103,229,145,254,159, 43, 20,144,189,192,222,112, 98,192,104,103,135,233,100, 18,197,102,101,163,112, 55,137,222, 37,150,171, -105,234,154,102,181,214, 54,130,185, 44, 79,209, 70, 55, 66, 14, 99, 76, 84,115,135,236, 57, 73, 19,138, 89,104, 67,171,138,130, -201,206, 14,121, 47,103,105,117, 31,105,154, 54, 7, 19,232, 43,154, 90, 69, 83, 15,243, 30,235,108, 0,169, 98,196,218,137, 83, - 76,103,142,125,135, 14,178,239,224,190, 93,116, 77,154,154, 80,107,206,146, 0,184,145,218, 19, 32,205, 18,178, 44,137,226, 56, -133, 54, 42,182,202, 37,145,182, 14,206, 35,239,101,228,189,156, 44,207, 72,123,121,227, 88, 84,108,211, 83, 53,165, 32, 66, 85, - 86,161,110, 83,148, 49, 58, 37, 10, 56,164,105,153,203,242, 44, 42,253,231,229, 35, 99,146,152,129, 73,115,158,138,162, 12, 34, - 34,165,163, 40, 43, 44,152,201,104, 7,157, 24,246, 31,218,135, 86,194,214,198, 22,131,133, 97,160,126,240,148, 69,133, 68,225, -135,181,129, 18, 47,203,114, 46,118, 43, 99,246, 62, 43,152, 78,167,148,179, 34, 30,119,100, 35,122, 57,189,126, 80,242,167,105, -216, 47, 68, 40, 11, 75, 85, 85,232,196,132,172,187,152,133,182,144,178, 36,203,115, 68, 66,128, 50,155, 78, 25,143, 38,187,168, -253,218,209,141, 71, 35,146, 36,193, 86, 65, 71,144,102, 73,163, 40, 53, 90,135,104,220,209, 8, 25,117, 84, 52,187, 24,224, 5, - 45,195, 34, 73,106,154,146,193,246,233, 45,108,140,148,171,178,196,150,101, 12,228, 2,213,149, 38, 25, 90, 41,108, 85,204, 21, -204, 18, 90, 16,103,179,113,168, 97,247,114,146,124,192,201, 7, 30,196, 86,150,195,151, 93,202,189,119,220, 30,110, 94,209, 40, -157, 48,222,217,198, 86, 5, 58,214, 51,141, 73, 34,160,135,122,155, 54, 73, 40, 61, 69,145,226,254,203,158,203,129,195,251,216, - 94, 59,193,218, 67,159,227,240,229,207,226,248,103,254,148, 36,237,113,209, 51, 94, 64,158,105, 54, 31,190, 31,239, 75,134,139, - 43, 36,105,218,100,149,182,178,152, 52,101,249,208,211,184,239,246,143, 51,155,108,135, 96, 88,167,104,147, 98,146,156,225,210, - 10,189, 94, 15,173,194, 61,133, 8,197,108,194,233,147,247, 83,149, 21,174,154,177,249,240,109,184,106, 20, 85,209,190, 1, 40, -129, 64,191,139,135,168, 72,247, 62,180, 55,165,131,125,228,189, 1,226, 75,170,217,102, 83,211,103,238,182, 35, 88,186, 6,208, -156,155,215,157,137, 20,124,253,243,156, 62,116,152,164, 71,154,247, 16,101,168,236,156,234, 46,139, 89, 0,245,154,102,111,105, -115, 92,236,152,105,106,228,241,239,193, 25,198, 54,167,150,250,184,214,254, 32,115, 38,177,166, 92,189,155, 43,212,231,220,186, -236, 18,195, 53,199, 33,210,116, 93,212, 76, 68, 29,188,132, 86,211,118,251,150,139,170,108,191, 27,196, 26,134,194, 69, 48,214, -243, 58,107,147,237,215,244,118,108,139,107, 94, 11,107,202,199, 54,187, 58,145, 82, 53,104,198,253,169, 25, 9,223,114,249,237, -214,170, 90,199, 80,127, 31, 50, 47,111,212,106,241, 58, 81, 81, 90,163,148, 1, 84,147,105,215,181,102, 21,197,167, 97, 31,104, -213,212, 5,223,252,190, 87, 27,208, 42,111,214,129,106, 44,137,212, 34,185, 70,216, 24,207,139,170,253,157,142,181,247,250,254, -143,138,246,154, 82,119,117,224,133,196,224,165,181, 46,162, 14,170,190,174, 38, 73, 27,113, 99,125,205, 65, 26, 49,114, 19,168, - 54,224,163, 26, 65,115,205,250,213,250,170, 42,118, 83,249,136, 67,109,218,187, 22, 64,215,165, 21, 23,215, 5,113, 13,182, 42, -163,187,107,229,168, 38, 35,175,239,177, 93, 34,184, 93,117,243, 40, 30,100, 14,252,187, 82,247,121,247, 35,202, 90,207,246,233, -157,176, 80, 98,123, 85, 85, 22,243,218, 22,117,102,174, 98,127, 93,136,128, 85,172,139, 10,190,169, 63,212, 32,105,162, 74,190, -223,239,145,101,105,236,181,181, 81, 24,102,153, 78,166, 84,101,201,120,103,135, 36, 49, 44,237,219, 71,175,223,139, 53, 69, 67, -154, 24,210,212,132,236, 42,214,226,235,144, 70, 69,113,149,173,102,108,156, 60,201,206,246,132,225,226, 18,251, 15, 31, 12,226, - 59,153,139, 19,202,210, 54,173, 86, 74, 73,212, 11,208, 40, 88,235,104, 76,199,204, 94,105, 65, 41, 72,211,100, 94,223,196,227, -171,138,196, 24, 68,121,210, 60,109,192, 35, 56,166, 16, 4, 21,211, 34,182, 94, 4,166,160,166,152,211, 44, 13,237, 45, 4, 42, -206, 36,186, 17,215, 36, 89,216, 86,154, 37,205,149,212, 38,232, 26, 84,252, 60,177, 54, 30,122,198, 67,109, 91, 41, 97,123,107, -139,170,178, 44, 46, 45, 5,103, 30,157,139,224,152, 77, 75,166,211, 25,206,250, 72, 77, 7,225, 99,208, 43,204, 98, 57, 37,128, -107,158,103,100, 89,168,157, 39, 73, 18, 4,123, 54, 42,136,189, 71, 27, 21, 91, 4,131, 96,232,244,198,233,102,141,212,148,219, -108, 58,101,103,123, 43, 0,104,188,169,130,248, 77,147,164, 9, 91,155, 91, 44, 44, 45, 48, 25, 79,201,122, 65,115,209,168, 58, - 99, 59, 76,211,235,171, 66,155, 99,173,254,112, 81, 72,215, 31,244,163, 90, 90,216, 62,189,197,104, 52,106,222, 83,211,105, 54, - 6,160,222,185,112, 67,123,139, 45,203, 38,251, 72,146, 30,179,201, 20,188, 39,203,114,134, 75,203,164,121,143,205,147,167,216, -127,248, 18, 78,111,110,177,121,234,126,192,211,235, 47,226,189, 80,205, 70, 77,159,180,139,130, 27, 98,159,108,168,201, 65,146, -134,249, 8, 11, 43,151,112,241,229,151, 99,180,227,246,143,125,144,203,190,252,171, 56,126,199,199,193,205, 56,124,197, 11, 99, -169,199,113,242,248,221, 12, 22, 87,233, 13, 22, 72,146,208, 10, 74,116,238,203,135, 46,231,129,187, 62, 69, 49,217, 66,169, 4, -147,164,136,210,244, 6, 3,250,195, 1,105,106, 26,145,228,116, 60, 98,103,227, 20,163,211,107, 56, 87,113,240,178,103,177,246, -185, 79,180, 20,216, 62,106, 93, 84,147,209, 42,147, 52,253,196,117,205,214,228,139,244, 6,139,136, 47, 41,167, 91, 56, 91,197, -123,191, 86, 37,207, 53, 39,109, 5,184,111,178,114,213,212,213,173,245,115,209,160, 7,173, 83,250, 11, 43,104,147, 54, 74,110, -111, 29,229,108, 70, 49,155,196,140,221, 54,247,247,156,182,164, 9, 20, 2, 77, 58,175, 1,215,128, 35, 77,189,213,205,213,207, - 77,145,120, 46,230,219, 69, 83, 71,182, 65,234, 90,123,236,174, 8,181, 83, 19, 1,140, 93,212,188,139, 96, 95, 39, 13,181,110, -164, 6,164,154, 74,109,148,243, 74, 90,190, 83, 53,179, 12,106, 96,175,147, 21, 85,239, 71,108,215, 84, 74,163,149,105, 74, 87, -196,154,111,160,132,165, 97, 49,230, 30,220,207,245, 97,117, 22,215,162,120,195,253,209, 18,233,213, 52,114, 19,232,169,121,135, - 64, 12, 72, 26,170, 87, 41,148, 14,125,232, 65,124,171,155,206, 40,137, 98,183,250,251,230,252,111,236, 11,111,128, 72,230,231, -153,121, 11, 90,104,247,155,235, 7, 66, 11, 27,136, 74, 16,101, 98,253, 92, 26, 1, 24,162,231,202,246, 40,188,155, 3, 94, 13, -244,210,116, 15, 4,102, 75, 71,166,194,180,102, 0,132,238,170,166,109, 47,210,246, 33,179, 87, 13, 54,232, 24,200, 4, 77, 86, -196,134, 38, 29,150, 38,161,245,113, 46, 70,221,109, 80, 39, 97, 66,221,163, 63,207,164,165,213,182, 54, 15, 44,221,110,225,155, -159, 83,239,126, 23, 61,255,249,109,235,237, 98, 24,187,106,234, 30, 53,175,185, 18,157,119, 21, 23,106, 93,155,212, 1, 20,132, -166,157,161,238, 51,119,222, 82, 69, 5,117, 93,139, 79,147,186,151,219, 52,180,170,105,245, 71,214, 3, 53, 70,219, 59,216,178, -192, 85, 37, 73, 98,216,119,248, 16, 11, 75,139,241,239,109, 45, 76,168, 89,183,157,168, 73,234,108, 18,198,219,167, 89, 95,219, - 68,196,176,239,224, 1, 6, 11,131,152, 5,134, 69, 25,250,157,213,174, 1, 2,206,206,135, 7, 4,193, 86,136,136, 27,135,137, -144,101,129,121,168,107, 94,149,181, 49,155, 55,205, 80,158,102, 8, 6,145,201,176,190,105,211,128, 0,232,189,126,160,238,179, - 60,109, 28,138,214, 58,158,159,216, 31,238,193,196, 44, 20, 95, 59,209,112, 2,140, 14, 61,241,105,146, 48,155, 76, 40,102, 21, -195,165, 5,156,181,156,124,232, 36,189, 97,159, 94,191, 71, 89,134, 89, 2,179,162,162,170,202, 88,215, 14, 61,247, 33,168, 8, - 25,181,210,154, 60, 15,204, 65,150,101,152,196, 68,177,159,106, 74, 47,225,220,133,154,121, 45,104,218,217,222, 33,203, 82,198, - 59, 59, 16, 65,174, 42, 45,105,158, 51,155, 78,130,176,207,185,102,168, 79,205,126,136, 8,147,241,136,222, 96,192,120,103, 4, - 30,122,189, 44, 4,134, 49, 43,171,153, 31,173,231, 2, 71, 36, 48, 54, 90, 9,131,126,159,225,226,160, 41, 77,108,159,222,138, -195, 61, 2, 19, 82,247,203,106,173, 16, 31, 75, 64, 89,206,116, 58,197,218, 18,111, 67,208, 51, 92,220,199,120,251, 52, 73,146, -209, 31,244, 88, 92, 61, 0,190, 98, 58, 30,115,248,105,151,114,207, 29,127,211,128, 89,127,176, 68,229, 60,229,116,187, 9, 30, -154,168,222,207,107,163,181,166, 65,107,195, 37,207,122, 1,131,129,225,227, 31,252, 29, 86, 47,122, 14,222,150,108,157,252, 12, -203, 7,175,164,183,176, 66,150, 27,198,155, 39, 1, 33,239, 15,131,230,195, 68, 81, 21,176,116,240,233, 28,191,243,211,140,183, - 55, 80, 73,222, 56,152,197,149, 21,210,172, 23, 6, 36,105,197,206,230, 38, 59,155,167, 24,111,173, 81,149, 65,224,120,201, 51, - 95,204,250, 3,119, 82, 21,167, 27, 7,173,181,137,117, 82,105,234,154, 33,152, 53,104,147,134,108, 63, 27,144,100, 67,180,130, -114,186, 69, 85,142, 90,130, 52, 23, 41,229,182,186,150, 6,228, 27, 37,121,147,229,170, 38, 96,173, 51,225,222, 96,153, 36,235, -197,222,224, 0, 16,101, 89, 50,157,236, 48, 29,159,110, 1,115,171, 45,206,181,232,229,122, 42, 72, 4,120,124, 77, 1,199,253, -114, 62,182,208,185, 24,100,206,149,221,161, 91,199, 54,175,207,101,198,204, 7,188,200, 92,223,209,118,172,141,130,223,250, 88, - 59,151, 93,169, 81,157,205,213,181,239,134, 82,109,128, 53, 6,152,113, 80, 9,209, 79,212,165,196, 80, 75, 14,195,124,106,117, -189,196,246,174,208,178, 57,103, 2,241,181, 46, 64,181, 84,252,187,219, 10,137,172,200,156,234,245,177,254, 61,167,109, 93, 13, - 64,225,221, 77, 0,224,234,214,171,102,136,140,110,174,159,104,221,234,248,152,179, 27,222,187, 38, 40,172, 3, 19,105,245,102, -135, 54,184,164, 17,253,209,100,235,237,214, 60, 29,216,129, 58, 59,175,187, 29,154,214, 59, 29, 84, 42, 81, 24,232,188,199,135, -137, 63,187,214,182,247, 32, 90, 71,145,111, 88, 79,214,249, 72,193,187,134, 73,208,218,132,228, 44,130,127,189,230,234,150,238, -122,230, 68, 80,220,215,235, 65, 62, 47, 27,246, 77, 63,155,106,186,120,218, 3,100,194, 18,114, 13,165, 95,119, 81,213,107,195, -197,196,163,222,182,111,129,183,111,177, 47,123,138,234,143, 60, 65,174,213, 89, 34, 34,152,114, 86,196,158,209, 88,143,174, 51, -114, 73,154,161, 44,181,176, 34,212,162,133, 52,205, 26, 16, 75,211,121,175,162, 40,133,171,170, 38,186, 17, 44,149,170, 66,107, - 75,157,221,198, 41,109, 8, 76, 39, 99,202,162, 10, 52,119,191,207,194,202, 62, 4,216,218,220,104,181, 83,184, 72,253, 71,167, - 77, 0, 61,147, 38,100,121,200,252,157, 45,216, 92,223, 96,113,101,133,197,149,101,140, 38,208,179,142,160,222, 87, 65,141, 31, - 22,148,221, 61,142, 39,210,102, 90,197,237, 38, 9,105,106, 34, 29, 30,197,112,222,145,247,114,242, 60,101, 54, 45,176, 51,139, -173, 92,204,220,170,160,116,143, 10,202, 16,208,132,193, 56, 52,180, 93,168,231, 36, 49, 24, 40,139, 89, 0, 53, 99,192, 57, 92, - 92,152,198,104,138, 72,139,251, 24,204,132,126,248,160,224,175,172, 99,123,107,155,165,149, 69,146,116,139,141,181, 77,180, 49, -172, 30,216,199,206,246,136,162,152, 81, 22, 85, 16,237,197,136,180,206, 2, 19, 99,226, 48,157,144,161,167,105, 66,111,208, 39, - 77, 3, 59, 98,210,132,178, 8, 98,175,154, 25,177, 85,133, 46,131,224,110,115,125,139,172,151, 97,109,201,198,218, 38,131,197, - 33, 69, 81,160,117, 18,166,251,121, 72, 83,135,137,215, 86, 34, 69,171,148,102,180,181,141, 73, 50, 38,147, 9,206,121,178, 60, - 99,180, 51,137,181,197,185,250, 86,132,208, 1,129, 35, 49,134, 73,236, 76,232, 13,250, 97,202,161,210,204, 38, 19,182, 54, 79, -163,213,124,104,135,141, 29, 26, 97,174, 64, 21,196,144,105, 74, 89,204,112,182,108, 50,138,213,253, 7,216, 56,117,138, 44, 31, -176,188,186,143,149, 3,251, 88,123,240, 56,131,197, 37,138,162, 98,107,237, 33, 68, 98, 59, 92,111, 64, 85, 22,184,106, 22,123, - 83, 19,146, 36, 13, 78, 55, 50, 84,186, 17,135,122, 22, 15, 62,141, 75,159,113, 37,159,248,224,111, 33,162, 57,124,197,115,185, -235, 99,239, 39,205, 23, 89,189,248, 89,108,157, 60,206,129,131, 95,201,253,199,239, 36,239,133,182,204,186,100,230, 29, 44, 29, -186,130, 83,199,239, 97, 54,222,136, 45, 55,138, 44, 79,232, 13,151, 17, 21,130,100,103, 43,182, 55,214, 24,109,173,161,116, 66, -222, 31,144, 24,205, 96,241, 18,140,134,209,198,221, 13, 29, 45, 13, 13, 74, 67,127, 6,193,160,142, 61,233,130,152,156,108,120, - 32,204, 74,152,109, 81, 21, 59,177,118, 93, 5, 48,218, 53,244, 36,102, 32, 81,196, 86,183,111, 5,177,103, 45, 66,138, 19,194, -162, 0,180, 55, 88, 38, 73,123, 17,180,116, 12, 4,203, 16, 4, 78,182,155,233,108,141,234, 92, 76,107, 42, 94,164,224, 91, 0, - 91,143,253,178,177, 85, 75,226,164, 13,223,244, 60,215,109, 74,180, 4, 73,115,245,186, 40,153,103,215,117,203, 86, 61, 16,197, -185,144, 17,214, 34,175,200, 12,132, 97, 66, 97, 26, 93, 45, 68, 69, 92,171,166, 62,207,216,105,234,218, 68, 1,221,156, 24,175, -157,122,221,114, 90,139,192,131,243,215, 13, 51,170,180,142,173,104, 65,100,170, 34, 21, 93, 31,199,188,147,225, 12, 10,232, 93, -173,109, 45,182, 33,126, 70, 84,210, 4, 8,141,202, 94,155,185,152, 76,164, 37,186, 10,193,185, 49, 10,239,138,184,126, 84,156, - 76, 24,174,103, 96, 28,194,245,242,115, 68, 15,215, 52,182,186,137,104,188, 4,138, 63,168,202, 77, 51,220,203,227, 98, 96, 35, - 17,220,109, 80,210,120,162,150, 98, 94,135, 15,135,236,154,242,168,171, 1,177, 17, 69,250,216, 25, 16, 2,133, 36, 81, 17, 51, - 76, 19,144,213, 90, 6,231,194,160,160, 48,120, 45,148,147, 69, 9, 42,150, 98, 67,251,153,195, 68, 6, 90,199,146, 65, 85,149, - 49,232,168, 7, 13,185, 93, 32,239,234,217, 4, 66,156,152, 87, 69,231, 22, 7, 27, 53,211, 2, 93, 75,220,188, 87,206,238,155, - 14,143, 57, 13,239,217,203,182, 75, 43, 91,111, 4,233,117, 39, 81, 93, 59,107, 38, 52,169,240,165,229,172,104,134, 58, 36,105, -104, 9, 80, 26,202,216, 70,164,181,166,215,207,113,149,197, 24, 21, 84,158,205,120, 76, 9,237, 28, 42,212,229,131,138,209, 54, - 2, 13,165,107,209,131,103, 58,217,137,244, 38,100,189, 30,131,229, 21, 68, 41,182, 54,214, 3, 53,110, 12,206,186,160,114,214, - 58,168,161,123,217, 92,149, 88, 83,110,174, 98,107, 99,157,197,229, 85,122,251, 22, 89,222,159,176,115,122, 59,140, 73, 85, 10, - 27, 79,248,124,138,144, 68,186, 91, 55,130,146, 44, 11, 89,184,179,237, 41,102,154, 52, 77, 49,137,102, 50,158,198,172,117,210, -156,216,178, 40,153, 76,138, 38,106, 79, 98,191,188,210,134, 94, 63,163, 44, 28, 73,170,231,206,182,172,168,202, 56,214,208,249, -166, 45,206, 86,150,170,242, 77, 43,154, 18, 67, 18,105,249, 26,228,181,146,144,173,247,123, 12,134, 3, 78,175,111,178,185,182, -206,194,210, 2, 75, 43,203, 60,240,185,227, 65,152,230, 92,211, 57,144,102, 41, 38,210,119,117,189,114,105,121, 33,102,194, 97, -106, 94, 61, 4,164,110, 93,145, 60,141, 76, 68, 0,217,217,116, 22, 38,236, 45, 44,115,247,103, 62, 75, 85,110,146,100, 41,101, - 81,209, 27, 44,144, 38, 41,179, 98,198,108, 58, 13, 0,148, 36, 49, 80, 20,108,165, 40,139, 9, 38, 73, 40,103,179, 56, 75, 32, - 37, 73, 12,197, 44, 46, 77,239,176,206,146, 42, 21, 71, 54,134,114, 79, 29,115, 45, 46, 45, 68, 96, 10,212,251,108, 58,142, 45, -116, 37,105,150, 5,193, 77,100, 75,234,207, 36, 73,202,206,230,102,147,133, 13,134, 75,124,217,243,159,195,167,254,252,207, 88, -217,183,143,125,135, 15,227,157,101,123,115,147,131,151, 94,198,253,119,223,141,179, 37, 90, 27,180, 78, 73,243,156,201,198,122, - 51,157,203,150, 5,149, 78, 91, 3, 83, 66,237, 82, 27, 77,146,246,120,214,139,191,134,123,254,250, 40, 59,155, 15,115,197, 11, - 95,195,137,123, 62,141,171, 38, 92,246,188, 87,178,189,246, 16,251, 14, 93, 4,190,192, 86, 54,150, 18,194,228, 70,239, 29,131, -125,151,178,246,224,113,182,214,142,135,178, 76,154,146,247, 7,161,198, 45,144,100, 9,182, 44,216, 57,189,193,120,123, 61, 40, -203,109, 96, 85,146, 44, 99,113,223, 33, 30,188,243,104,188,239,216, 53,182, 52, 56, 76, 27, 89, 33,221,244, 90,235, 52, 35, 91, - 56, 24, 70,246, 22, 35,198,227,205,121, 50, 27,155,130,149,214, 56, 87, 54,162, 56,105,234,143,186,153, 46, 25,232,233, 57,245, - 23, 58,189,132,188,191, 68,214, 31, 98,146, 60, 6,188, 97, 92,170,179,150, 98, 58,106,196, 85,243, 76, 54, 10,146, 68,135,128, -163, 6,200,166,102,106,231,131,106,118, 77,123,163,105,213,170,123,230, 67,246,171,112,182,140,181,100,213, 48, 10,160, 3,173, - 12, 40, 99,112, 85,156,181, 64,157,117,153,121,141, 28,217,149,157,138, 10,140, 99, 8, 18,234,190,253, 58, 40,117,243,122,185, -111, 77, 26,139, 10,241, 32,216,114, 77,246, 23, 74, 78,186,225,103,107,113, 89, 93, 19,118,126, 46, 62,171,135, 98,181, 6,129, -134,158,112, 57,195,184,208, 70,164,232, 98,253,218, 71, 65, 96, 0,217,250,123,124, 11, 64, 68, 20,226,109,152, 70, 41, 58,150, -222,170, 40,246,179,173, 65, 93,186, 9,194, 66,125, 94, 71,240,109,181,248,197,172,186,201,162,235,125,138, 44, 75,141, 41, 97, -212,117,160,221,235,178, 11, 94,197,253, 14,153,118, 96, 27,164, 41,105,250,168,250,247,209, 95, 91, 23, 2, 21, 17, 29,197,184, -134,202,210, 36, 68, 68,112,181,173,178, 9,177,157,141,216, 11, 95,179, 88,117,208,235,162,198, 64,107,141,117,150,196, 24,138, - 98,214, 12, 19,170,203,123, 8, 13,205,238,154, 73,138,243, 62,250,122, 13,184,102, 70,131, 52,215,198,215, 12, 88,211, 24, 33, -115, 49,165,204,127, 70, 62, 95,245,222, 68,112,106, 78,235,215,197,250,250, 30, 52,245, 56,192,122,176, 64, 85, 86, 81, 12,150, - 52,253,195, 42,102, 82,245, 76,241, 58, 19,175,138, 2, 81,138,217,180, 34,205,235,158, 99, 21,163, 24, 31,231, 12,123, 84,170, - 40,162,115,173, 5,119,161,254, 20,230,204,151,101, 9,147, 49,120, 75, 62, 24, 48, 88, 90, 65, 39, 9,219, 27,155,113, 24, 9, -232,216, 50,149,231,105,160,228,211, 36, 12,109, 49,181, 74, 86,129, 18, 70, 59,219,120, 60,203,171, 75, 44,173, 44, 49, 30,141, - 66, 95,120,116, 14,198,248, 70,140, 86,215, 80, 18,165, 98,251, 91, 80,232,215,103, 52,140,134, 13, 20,244,108, 26,178,224, 98, - 86, 53,153,208,246,214, 24,239, 44, 85, 25, 70,160, 6,186, 94,230, 34,144,152,213, 41, 29, 90,230,130,122, 56,212,179,195,194, -182,244, 7,121, 51, 63,223,213, 45,101, 38,244, 78,154,122,132,174,119,148,165,109,232,178,205,181, 13,246, 31,218, 71,146,165, -140,119,198, 60,116,252, 33, 14, 95,124, 8,165,117,168,165,215, 98, 38, 7, 89,150, 5, 49, 99,156,216, 6, 48,157,206, 90,109, - 63, 65,152, 83,255,205, 86,193,241,214,186,137,170, 44, 99,109, 20, 14, 94,124,136,149,125,171, 60,252,224, 67, 20,211,130, 52, -207, 72,179,140,254,112,129,233,169, 41,152,176,168,170,202,146, 24, 69, 21, 3,139,217,116,214, 56,168,178, 40,231,199, 24,233, -208,122, 30,130,107, 70,185,198,209,165, 58,180, 44, 13, 23, 6,161, 68, 2,108,159, 62, 77, 89, 22,177,219,162, 14, 22, 85,220, - 71, 69, 37,129,246,203,123, 41,167,215,202, 70, 74, 90, 85, 21,139,203,139,124,237,235, 94,205,237,159,248, 27,122,195, 5,138, -233,148,170, 40,209, 38,225,225,251,142,197, 58,161,208, 31, 46,131,210, 20,147, 29,242,193, 18,121,127,200,214,218,131, 77, 27, - 91, 24, 76, 17,196, 89,218, 24, 94,252,170, 35,120, 20,199,239,250, 36,171, 23, 61, 19, 17, 97,235,196,157, 28,190,226, 5,148, -165,101,178,245, 48,135, 94,114, 53,167, 62,119, 23,189,126,142, 73,116,164, 9, 61,217,240, 48, 59,167,183,216, 62,117, 31, 34, - 33, 32, 74,251, 67,242,254, 48,234, 74, 74,102,227, 17, 59,155,167, 40,139, 9, 74,234, 28, 58,172,185,213,195, 79,103,123,237, -193,102,118,183,243,101, 51, 40, 68,137,111, 4, 76,170,110, 87,146, 80,115,204, 23, 15,146,164,125,240, 21,147,157,141,224,132, -189, 39,142,152, 10, 83,187,156,109,209,170,170,105,235, 10,123, 16,187, 77,234, 81,157, 45,197,114,111,184, 76,214, 27,146,102, -189,160,137, 80, 38,172, 35, 28,101, 57,139,179, 20,122, 88,103, 81, 62,140,205,121,238, 40, 0, 0, 32, 0, 73, 68, 65, 84,241, -165,233,239, 13,140,139,173,202, 70,161,174, 98, 73, 38,168,137,107,125,175,111,169,193,125,116,176,117, 11,149, 71, 5, 78, 54, -222,143,122, 62, 85,189,165,210,158,211,169, 13, 9, 16,133,158,177,115,197,250,152, 81,250,185, 51,143,157,123,222,187,192,122, -212, 37, 0, 45,205,253,169,212,124, 4,105, 67,187, 70, 13, 73, 96, 53,124,171, 52, 62, 31, 55, 91, 11,233, 66,144, 84, 53,157, - 6,170, 25,125, 28,218,200, 92, 28,166, 68, 51,231,190, 37,153,174,149,215,222,199,118, 43, 21, 59, 55,124,211, 38, 38,187,104, -244, 57,208,134,172,155, 22, 64, 7, 49, 90, 45,174, 12,101, 17,213, 8, 20, 85, 92, 79,245,190,181,167,171,213,162, 48,165, 37, -100,245,113,226,158,167, 30, 74,164, 80, 26, 52, 6, 43, 14,113, 65,183,211, 48, 41,141,200,207,205,131,131,230,103, 21,129,180, -158,253,238,155, 26,186, 49, 73, 51,100,198, 91,223,244,121, 55,251,163,234,222,114, 63, 23, 64,170, 57, 19,237,156,199,232, 80, -122, 82, 18,124, 88, 45, 84,116, 98, 99, 23,150, 14,207,201,160,214, 47,184, 56,176, 38, 96,167,179, 85,195, 76,183,199, 70,215, - 9, 76, 51,214,182, 6,239, 61,153,120,131, 77,126,215,133,221, 85, 75, 15, 34, 4,118,181, 80, 54,195,148,108,101, 81, 49, 59, -244,117,141, 57, 77,154, 40,160, 42,138,102, 34,145, 68,119, 18, 68, 2,241, 36,216, 32,166,170, 23,105, 89, 86,177,159, 59,105, -196,105,225,166, 84,173, 33, 13, 97, 94,184, 73, 76,163,142,156, 77,103,108,109,110,179,189,121, 26, 87, 76,233,245, 7,172, 28, - 58, 68,150,247,154,186,126,154,154, 88,119,109,215,145,106,103, 18, 22, 69,146,132,135, 18,172,159, 92, 99, 86, 88,134,139,139, -244,250,189,144,237, 84, 33,106,206,178,148,188,151,145,229, 41,105,154,144,229, 73,168, 49,231,105, 84,110, 75,156, 29,158,227, -156,163, 40, 10, 70, 59,161,102,172, 77, 88,212,227,209, 52,170,164,101, 87, 93,176,158,251, 94,103,197,181, 80,194, 36, 10,157, -168, 38,202, 52, 70, 51, 24,230,205,108,253, 80, 59, 79, 67,230,220,170,103, 87,205,152,217,154,234, 47,216, 92, 91,103,103,123, -194,254,131,251,113,206,177,185,182,206,198,218,105, 14, 28, 58, 24,149,238,113, 28,170,146, 86, 22, 19,104,165,205,141,211,108, -172,111,178,179,181,205,120, 52,162, 44, 10,198,163, 17,163,157, 17, 91,155,219,140,118,254,127,182,222,235, 73,146, 44,205,238, - 59, 87,184, 12,145,145,162,116,181, 22,211, 35,129, 21, 92, 5, 35,214,104, 52,130, 70, 60,144,255, 42,159,104, 52, 35,204, 96, - 32,184,160,129,139,197,206, 46,118, 71, 79,119, 87,151,206,170,204,200, 12,233,226,250,189,124,248,132,123,246,238,140,141,245, -204,148,200, 8, 15, 15,191,159, 56,231,119,246,184,189,185,197,203,231,175,241,246,213, 91, 60,255,246, 57,158,125,253, 29, 94, -191,120,133, 24, 19,242,162,196,131, 71,143,152,191, 78,239,253,228,244,140, 11,184, 65, 5, 37,164, 28,117, 74,190, 58, 30, 27, - 56, 71, 98, 63, 35,136, 80, 55,162, 42,135, 48,240, 68,134,144,190,214, 57, 10,148, 72, 73,233,131,205,225,128,155,235, 53,107, - 59, 12,119,202, 94, 31,210, 4,235, 73,240,158, 20,229,237,241, 48, 98, 56, 97,113,125,121,133,162, 42,241, 39,127,249,103, 48, - 38, 34,134, 30,171,139,115, 92,189,125,131,208,183,248, 31,255,183,255, 21, 62,203, 81,206,150,116,120,119, 7,164, 24,240,217, -143,127,140,217,242,148,187, 13,206, 41,224,208,157, 15,190,248, 17,238,127,240, 1,186,221, 26, 85,189,196,227, 47,126,138,183, -191,251, 27,156,156,127,128, 98,126, 31,239,190,253, 91, 60,250,228, 71,112, 54,161,217,109,238,232, 20,242,217, 57,218, 54,224, -250,213,175,145,241,244,162,168,231, 40, 42,218,183,199, 24,208,236,110,113,251,254, 5,250,238, 64, 86,166, 20,148,255, 93, 47, - 47,224,108, 66,232, 54, 35,221, 77,239, 59, 22, 53, 33,242, 53,130, 94,247,114,126,129,106,182,128, 53, 3,218,253,154,114, 25, - 88,188, 68, 29,214, 8,108,209, 93,247, 68,197,172,208, 22, 86,186,203, 8,208,250, 2,229,236, 20,245,252, 12, 69, 57,227, 80, - 13, 79,225, 70, 67, 68,115, 60,176, 6,129, 10, 11,162,219, 85, 40,202, 57,178,188, 70,150,229,234, 63,166,238,201, 79, 24,225, - 18,158, 50, 1,210, 88, 81, 87,143,226,182, 41,251,221, 89,135, 44, 47,117,244, 58, 70,222, 72, 91,197, 2, 63,238, 58, 13,171, -219,199, 9, 64,198, 35,103, 40, 72, 74,133,104,105,220,171, 79, 89,220, 35,192, 38,170,194,125,228,128,147,165, 77,247,241,102, -250,186,160, 34, 51,234, 24, 71, 58, 90,156,232, 25, 98,250,158, 56,237,123,255, 53,169, 32, 45,233, 56, 62, 37,242,131, 83, 97, - 52,168, 64,117, 8, 65,247,187, 52,146, 30,197,147, 2,110, 73, 60,245, 75,162, 76,215,125, 56,161, 96,199,107, 50,117, 12, 88, - 21, 37, 14, 17, 19,119, 0,116,183,174, 88, 88, 70,125, 67, 80,174, 92,112, 36,121,112,218,241,222,163, 17,243,116,173,233, 89, -208, 54,226,134,201,198, 54, 17, 27,242, 58, 69, 66,178, 70, 93,137, 27, 97, 68,211, 17, 62,235, 30, 98,164, 85,158, 76,173,232, -204,163,103, 12,225,171,211, 68,247,193,133, 14, 70,141,129, 56, 41,244,108,224, 41,192,200,110, 72,119,225, 51,105,186, 91, 55, -248,231,246, 43,186, 74,249,222,162, 61,165,187,211, 26, 43, 41, 77,130, 20, 21,182,179,207, 70,236,170,168, 43,197, 50, 97, 21, - 98, 31, 21,170, 96, 89,205,105,173,225,132,178, 17,225,104,153, 24,103,140,165,238,131, 71, 57,162,128, 6,139,156,128,136,227, -126,143,205,205, 45,154,253, 14,121,158, 97,190, 58, 69, 89,207,216, 70,230,149,236,165,106,123, 55,126, 72,116,224, 10,159,122, -192, 97,187,193,110,123, 64, 89, 87,154,224,230,249, 48, 41, 75,234, 96,139, 50,199,124, 49, 67, 81,230, 4,152, 97,118,253,124, - 73,232,208,190,235,208, 30, 91,190,183,104,109,208, 28, 26, 14,126, 25,198,113, 49,219,184,178,194,179, 56,111, 84,223, 11,125, - 47,244, 52,138,201,203, 28,245,188, 98,139, 85,166,162,185, 60,207,239,116,232, 10, 64, 96, 64, 67,123,108,249,115, 50,120,255, -246, 61, 96, 60, 39,158, 13,120,253,226, 37,156,207,113,118,126, 78,225, 53, 5,137, 63,132,186, 38, 28,252, 60,207, 80,112, 2, - 88, 8, 3,118,219,131, 90,127, 8,246, 66, 52,184,158,177,175,132,166, 61,224,213,243, 23,120,247,102,141,247,151,239, 16,134, -136,162, 44,177, 92,173, 16,194,128,249,201, 74, 15, 1, 74,207,139, 44,154, 27, 52, 44,230,184, 59, 96,185, 90,226,176,223, 35, - 47,115,228,185,103,209,147, 84,207,244,160, 12,253,192,225, 62,100, 31, 36, 98, 28, 5,235,208,107,217,179,254, 33,142, 4, 58, - 3, 62,100, 73,255, 96,172,135,115, 6, 79, 63,254, 20,143,159,126, 12, 48, 30,182, 57,236,241,183,255,233,231, 56,123,120, 15, -125, 75, 54,188,106,190,192,118,125, 3,107, 29,222,188,188,196, 95,254,219,255, 25,245,124,129,237,205, 6,161,111,209,181, 13, -158,255,246,119,248,248,135, 63,161,245,145,247,122,207,221,123,242, 33, 62,248,242,115,124,247,219,111, 80,205,107, 60,249,234, -143,240,254,197,215, 0,128,139, 15,127,136,247,223,253, 2,101, 85,227,195, 47,191,196,246,234, 45,178,124, 20, 36,186, 98,129, -126,240,184,126,249,107,253,110,185,156,130, 87,202, 50, 67,232, 90,236,110,174,176,189,126, 77, 96, 27, 69,181,210,104,117,182, - 88, 97,117,239, 17,182,239,159,235,148,194, 57,199,215, 45,169,254,133,166, 74, 81,201,113,197,236, 12,203,243,251,168,170, 28, - 22, 68, 51, 44,103, 11,100,249, 12,245,236, 4,121, 89,195,231, 21,124, 86,194,250,130, 31,196, 78,197,102,226, 55, 38,149,183, -135,203, 74, 24,151,195,186, 10, 89, 62,195,114,117, 14,155,149, 8,201, 34, 12, 6,125,160,220,136,227,126, 79, 22,203,104,144, -140, 87,133,114, 2,249,242,125, 86,194,101, 53,124, 94,194,249,156, 45, 86, 99,103,125,215, 18,102, 56,204,198,168, 18,218,232, -104,158,214, 72,214,121,221,223,210,200,181,132,243,133,134,136, 76, 5,115, 70, 14,117, 99,245,160, 72,178,123,213,229,247,100, - 34,193,247,245,196, 72, 54,225,125, 70, 86,198, 59,157, 58,165, 9, 1,109,228,201,143,226, 59, 65,143,138,208,212,240,245,142, -140, 46, 37,235,220,104,207, 75,105, 60, 18,210,247, 65, 37,122,200,203,180,110,228,245, 71, 57,156, 13,238, 64,132, 52,244,133, - 39, 95,152, 16,209, 4,169, 74,135,254, 8, 94,129,185,235, 52, 48,242,190,210, 52,236, 38,221,229,163, 79,236,117,102,162,129, - 72, 48,147,240, 23,167, 97, 96,227,234,131, 41,121,188, 30,182,198, 50,213,145,127, 63,139,251,196,189, 48, 61,226, 68, 16, 39, -118,229,209,138, 38, 89, 2,238,206, 25, 68,169,156,152,100,132,140,170,109,209, 70,196, 72, 28, 1, 51,129, 28,201,143,140, 92, - 64,141, 46, 4, 51, 73,216,251,167, 7,241,212,190,118,135, 36,243,125,149, 28, 79,223,116,245, 1,189, 44,119,128, 55, 64,130, -205,178, 92, 11,162,204, 59,102,113, 59,120,111,149, 41,142, 56,101, 59,243,173,204,128,150,178,204,248, 2, 36, 77, 33,242, 57, -169,201, 59, 70,147,138,154,150,246,205,227,141,100, 57, 25,106,244,166,146,130,244,120, 32, 49,212, 97,179, 69,150, 57, 44, 79, - 87, 56,127,112,143,186,156,239, 37, 11, 1,196, 50,247,153,211,144, 16,217,145,164, 20,113,216,110,177,189,221,161, 40, 43,156, -223, 63, 83,187,152,140,186, 37,100,164, 40,115,246,221, 59, 84, 53, 29,248, 93, 23,212,159, 40,160,148,174, 11,232,251,128,182, -105,201,119,159,128, 44,151,164, 52,175, 54,182,148,198, 14, 84,128, 25, 96, 98, 81,150,101,232,251, 65,121,234,116,232,228,202, -162, 79, 49,170, 26, 62,165,136,190, 11,234,133, 31, 2, 89,252, 14,187, 13,186,182,195,234,252, 20,113,136, 56,236, 15,120,249, -221, 43, 60,253,248, 41,234,186,198, 16, 56,177, 46,129, 25, 2, 94,255, 19, 36,137,142,175, 83, 8, 3,134, 48,160,107,123, 13, -195, 33,208, 78, 67, 96,162,221, 30, 49, 70,236,182,123, 28,246, 59,188,120,246, 13,110,215,107,148, 85,137,122, 86, 97, 54,159, - 99, 54,155,211, 52, 32, 4,253, 18, 80,172, 43,189,191,253,110,139,217, 98,129,195,118,207,122,140, 74,175,105,226, 80,142,129, - 69,150,164,190,103, 5,126,238,149,226,183,190,186, 86,255,173, 4, 85, 8,178, 81,104, 77,214, 0, 85, 93, 3, 72,120,246,187, -223,224,147,175,190,194, 71,159,126,137,139, 7, 15,176,187,189,133,113, 57, 82, 76, 88,174,230, 48,198,226,230,106,141,174,165, -213,199, 47,254,230,175, 49, 95,157, 97,113,186, 66,123,220, 48, 98, 56,195,237,245, 27, 0,192,253, 39, 31,234,151,172,154, 47, -241,213, 31,253, 33,222,189,126,135,183,223,252, 14,243,213, 25,202,122,134,155, 55, 95,227,241,231, 63,195,110,253, 14,222,246, -184,255,225, 15, 81,214, 25, 16, 3,170,249, 28,229,172,130, 47,230, 72,254, 4, 87,207,255, 17,206, 12,200,139, 2, 89, 62, 67, - 53, 91,162,172,115, 12,161,193,126,115,131,246,112, 67, 34, 27,166,213, 73,231, 69,158,247,159, 98,251,254, 25,163,123, 39,156, -124, 38, 48, 10,245,206, 26, 81, 53, 71, 84,243, 51,156, 61,120,138,197,114, 6,147, 58,248,204,162,154,213,152, 45, 22,152, 45, -230,200,171, 26,245,252, 4,245,108,137,162, 94,194,103, 37,178,172,210, 14, 25,106,205,177, 48,174, 32, 2,157,113,112,190, 64, - 86, 84,168, 22,167,128, 43,144,140, 71, 74, 52, 34,141, 97, 64,232, 90,244, 66,246,211,180, 51, 70,161,106,105,102,225, 92, 14, -235,114,248,124,134, 44,175, 96, 12, 59,104, 24,225,105,212,135,110,245,144,167,162, 49, 83,229,153,157,142,179,185, 91,148,180, - 54,245,107, 59,199, 29,160, 85, 71, 10,253, 30,171, 98, 52, 96, 36, 66,170, 34,154,187,219,164,180, 55,166,193, 49, 36,103,136, -114,232, 49,212, 74,224, 36,214,194,186, 12,214,229,112,158,138, 31,159,207, 96, 93, 9,227, 10, 85,116,143,168,219,105, 23, 47, - 74,125, 34,169, 77, 69,119,233,142, 36,123, 82,160,164,187,220,123, 17,222, 25,214, 75,141,142, 17,233,138,237,168,120,183,164, - 70,143,156,219,145, 18, 93,123, 65,168, 10,179, 95,126,198, 52,222, 85,197,205, 19,119,132,172, 50,132,227, 46,148,182, 52,225, -238, 75,103, 46,207,127,125, 94,138, 69,141, 11, 36,241,210, 39, 22,155, 25, 51,117, 49, 24,181, 89,139,123, 70,138, 79,128, 96, -106,170,214, 55, 86,167,205, 52,157,224,144, 24, 22,135, 12,236,208,208,169,180,238,252, 19,239,246,169, 88, 10, 33,208,223, 43, -147, 66, 22,211, 77,187,238, 24,199, 67,126, 42,126,251,103, 52,236,147,252, 84,243,207,254, 14, 1, 12,141, 5, 93, 82,145,241, - 8,183, 1,108, 94,144, 39,187, 40, 50,164, 52,162, 82,201, 51,105, 21, 11,155, 34,189, 17,171,118, 25,250, 42, 14,129,189,192, - 41,114,124,169,228, 6, 27, 20,101, 49, 34, 18,121, 44, 38,227,125,231, 61,251,171, 35, 83,194,162, 86,170,214,209,135,176,189, -189,197,238,102,141, 24, 58,248, 44,199,201,249, 57, 22, 39, 11,250,243, 19,175, 57,237,202,157,238,141,221, 36,129,140, 2, 77, -246, 88, 95,221, 32, 37,139,211,243, 21,202,178,196,108, 81, 97,177,172, 53,240,101, 68, 7,210,129,127, 60, 52,108, 11, 35,180, - 41,140,193,241,208,162, 57,146, 88,174,109,136,197, 45,106,111,192,234,251,146,209,158, 60,104,219,166,215,100,180,140, 15, 41, -239,157,190,126, 9,158,145, 36, 56,241, 92,183, 71,217,143,199,201,104,218,168,215,255,197,179,151,240, 62, 71, 61,155, 33,132, - 1,235,235, 43,220,222, 28,240,224,241, 67,221,137, 11,227, 88,252,244,178, 34,232,218, 30, 93,215, 83, 30, 61, 71,174,246, 93, -143,227,161,197,225,208,162,109, 90,180,109,139,166,105,121,170, 18,177,185,217, 96,117,186, 66,215,182,120,253,226, 57,190,249, -237,215,164, 11, 88,204,113,114,186, 66, 8,129,191,108, 81,195,125, 36,195,249,176,219,163,172,107, 28, 15,123, 94, 99,176, 35, - 65,210,205,100, 55,101,160,209,166,121,150,147,208,207,123,120,103,176,219,108, 38,123,200,145,213, 45, 64, 12,231, 12, 3, 97, -114,116, 77,139,188, 40,240,245,175,127,139,199, 31,125,140,175,126,246, 35,236,110, 55, 56,127,248, 0,151,175, 46,241,224,201, -125, 20,117,133,215,207, 95, 78,178,146, 19,254,191,255,240,215,248,232,139,143, 17,187,195,152, 14,150, 18,190,251,213, 63,226, -233,231,159, 35,207, 11, 20,101,129,159,253,197,159,227,242,249,115,180,199, 6,251,205, 53,230,167,167,120,251,245, 47,113,254, -248, 51,116,125,196,241,246, 53,150,231,143,241,209, 87, 95, 33,245,123,210, 31,148, 57,117,140,245,125,172, 95,252, 18, 38,245, - 28, 62, 84,163, 94,158, 98, 54,207,225,204,128,253,102,131,102,127,203,156,118, 9,238, 24,128,212,195, 58,139, 7, 31,253, 4, -135,155, 75,116,205,150, 39, 72, 73, 39,104,227, 14, 60,233,186,204,152,132,114,182,194,234,193, 71, 88,156,204,145,134, 14, 6, -145,156, 15,121, 1,235, 61,140, 99, 16,146,245,176,220, 41, 75,183, 46, 62,124,234,110,232, 61, 88,151, 97, 24, 12,146,201,224, -139, 25,170,217, 9,178,162, 64,215,247,172,155, 33, 93, 77,232,143,104, 14,183, 36,184, 75, 3,189, 46, 59,142, 31, 35, 12,217, - 98,157, 83,193, 26, 21,251, 57,242,162,254,231,109, 63, 60,230,165,142, 94,186,114, 9, 13,241,106, 43,213, 61, 47, 67, 75,192, -222, 99, 25, 82,170,194, 61, 77,187, 71,234,220, 92,150,113,103, 74, 43, 48, 24,233,116,199, 3,147,194, 72,210,100, 41, 31, 53, - 54,152, 18,190, 50,184,108, 6,235,106,184,108, 6, 95, 44,224,124,141,100, 11, 88, 87,193,216, 2,198, 22,112,190,134,243, 21, -172, 47, 97, 93,174, 7,156,140,253,199,104,228,120, 7,254, 35, 7,185,142,188, 89, 71, 51,122,156, 89,176,197, 8,105,202, 77, -183,250,217, 8,213, 76, 86,115,114, 0,202,232,154, 18,202, 48,194, 93,100, 21,145,104,196,141,196, 5, 18,143,219, 97,100,236, -205,193, 45, 12, 4,139,105,202, 11,176, 99,145,104,204,157, 72, 86,153,194, 90, 55, 6, 51,201,217,161,226, 65,123,119, 76, 31, - 83, 34, 82,161,209,236, 87, 22, 7,210,123, 18,106,166,132, 11,137,206, 33,207, 51,125,142, 56, 94, 81,138, 75,233,142,103, 92, -139, 51,250,108,133, 83, 33, 22, 90,209, 79,221,225, 3, 76,130,207,135, 97,152, 28,228,230, 14,235, 93,239,209, 73, 65,247,207, -255,115, 2, 52, 26,221,206,250,236, 76,233,110, 83,111,169, 18,179, 58,122, 32,171, 80,212,110,220,177, 42,122,140, 39, 37,187, -145, 84, 53,137, 13,254,212,161, 58,141,227, 27,194,128,190, 31,198, 17,123, 98, 98, 24,135,120,200,104, 73, 50,204,227, 48,112, - 38, 56, 7,218, 51,241,168,107, 90,108,214,107,236, 55, 91,100,222, 98,126,114,130,106,190, 68, 53,171,245, 93, 80,228,231, 64, -112, 23, 47, 55,194, 8,131, 32,161,219, 17,219,219, 91,196, 4,156,221, 63,195,108, 94, 3, 48,152, 47,102,186,118,144, 3, 62, -165,196,244,187,136,162, 36,111,112,232,130,170, 45,250,182, 39, 91, 19,143,136,133,239,158, 82,130,227,137,129,207,156, 86,158, - 52,174, 49, 42,162,147, 95, 55,220, 17,139,162,218,121,199,211, 2, 67,221, 35, 39, 84, 77, 41,254,161, 15,232, 58,178,189,109, - 55, 55,120,251,230, 10, 23, 15,239,147,231,220, 57,188,121,245, 10,167, 23,103,168,231, 51,238,156, 7,132, 46, 48,119, 30, 35, -139,153, 63,203,190,235,177,223,239,245, 75, 45, 0, 29, 37,134, 25,104,113,119,115,189,198,233,249, 57, 93,159,174,197,203,103, -223,194,154,132,213,217, 10, 15,158, 60,225,135, 67,208, 47,130,238,180, 44,225,129,235,249, 12,205,225,128,148, 34, 19,217, 56, - 63, 96, 96, 66, 97, 24, 3, 97,172,115,240,121,206,133,146, 67,115, 56, 98,183,185,157, 12, 60,205, 8,201,152, 40, 76,140, 73, - 40,203, 10,137,153,204,247, 31,220,195,239,126,241, 75,228, 85,133, 15,191,248, 20,101,149,227,213,179, 87,200,203, 2,155,245, - 26,187,205, 86,199,175,224,142, 37, 14, 17, 95,254,228, 43,165,196, 25,107,209,119, 13,222,126,247, 2,159,252,232,199,248,241, -159,252, 9,182,215,239,209,118,192,205,155,239,112,239,195,207,177, 93,223,224,222,227, 71,152,157, 62,192,237,155,111,176, 56, -189,135,211, 7,143,177, 60,157, 51,102, 55,167,142,193,173,112,243,234,183,176, 38, 32, 70, 3,207, 7,122, 85,121,164,161,197, -110,179, 70,104, 54,148, 65,206,234,122,154, 64,210, 61,112,250,224, 83,120,111,177,187,126, 65, 25,232,146,119, 16, 7,142,180, -165,215,108, 13,237,211, 13, 6, 20,213, 18,167, 15, 62,193, 98, 89, 35,246, 13,186,246, 8,227, 50, 24, 62,196,157,203,136,110, -152,229,100,196,178, 14, 96, 16,136,115, 57,237,191,179, 18, 46,171,224,124, 1, 88, 25,155,231,168,102, 11,204, 22, 75,248, 60, -227, 80, 34,135,204, 91, 32,246, 8,205, 6,237, 97,141, 52,116,112, 54, 1,177,167, 85, 66, 12, 28, 62, 34, 43, 52, 94, 89,249, -140, 45,150, 57, 63,220, 51,248,188,100,110,248,216, 89, 98, 50, 53,208,238,118,194,114, 31, 83,186, 44, 79,131, 70, 42,220,120, -224,115,135, 47,193, 31,220, 85,201, 24,153, 81, 22,163, 16, 48, 70, 12,241,110, 23, 37,222,116, 57,232, 70,161,158,131,207,231, -176,190,162,105,134, 47, 0,155,147,173,207,120, 56, 87, 32, 25,199,147, 14,203,208,149, 2,201,228,128, 45, 96,125, 5,227,114, - 62, 24,121,175, 29,122,237, 80, 19, 19,214,244,240,143, 99,168,201,116, 29, 43,141,216, 93,223,124,210,224, 40,176,224,140, 72, -110,126,114,152, 73, 81, 33,187,229,164, 19, 9,185,126, 67, 24, 40,236, 40, 26,101, 5,168,229,111, 18, 19, 42,145,166,244, 8, - 51,250,204,211,164, 52,254,251, 28,255,124, 35, 49,168, 28, 35, 43, 94,119,249,124,113,135,251, 79,110,170,105, 52,173,252,119, -167,251,127,163, 83, 28, 13,136,193,216,192,165, 9,230, 77,154, 44,107,238, 10,139,165, 75,151, 53, 40,144,116, 42, 51,134,123, -197, 73,240,209,228, 94,152, 58, 20,204, 93, 39,133,193,221,215, 44, 69,168, 21,184, 15, 31,246, 86,113,222,102, 18,251,251, 79, -119,238,134,139, 11,235,189,229, 40,196,113, 95,227,120, 31, 39, 99,189,162,204,244, 48, 10, 93, 79, 42, 63,107, 52, 43,216, 78, -118,156, 25,119,160,224, 49,105,158,123, 56, 75, 68,180,190,239,168, 56,224,110, 44,207,115, 62,248,104,231, 36,130, 26, 39,251, - 48,190,161,134, 48,224,176,223,226,118,189, 65,232, 58, 20,101,129,122,113,130,147,179, 83,148, 85, 73, 20,187,204,107,229, 53, - 4,134,227,176,101,204,178,255, 57,197,136,221,237, 22,113,136, 56,189, 56,197,189,135, 23,164,114,229, 67, 51, 14, 52,234, 78, -145,170,195,122, 49,131,243, 14, 93,215,163,235, 58,180, 13,253,147,162, 82, 61,202,178, 68, 94, 82, 33, 18,135,136,178, 42,120, -180,147,208,182,129,187,126, 16,206, 51,141,235,130,209,182,101, 20, 17, 43, 54, 46,103, 45, 77, 8, 88,144, 49,132, 65, 65, 55, -116,160,247,180, 95,111, 91, 28,118, 7, 92,190,126,131,178,170,113,113,255,156, 86, 6, 77,139,231,223,190,194, 71,159,126, 56, -190, 55,134,164,116, 93, 64,215,145,186,157,168,112, 3,218,230,136,174,105,113, 60, 54,104,142,157, 38, 20,229, 98, 99,180, 35, -135, 96,187,185,193,233,197,153, 38, 13,246, 93,131,183,175,222, 32, 38,131,199, 31, 61, 69, 89,150, 10, 23, 25, 87, 81,244,101, - 12,221,145, 96, 16,161, 71,232,123, 2,159,100, 94,215, 48,194, 74,150,107, 2, 0, 85, 85,106, 26,223,126,183, 67,223,181,218, -157,219, 73, 78, 1,197, 63,142, 57,218,101, 93, 97,191,219, 97,119,251, 30,235,171, 53,206,238,221, 71,138, 3,242,106,142,147, -147, 26,195, 64, 28,254,223,253,195, 47,185,139,225,181, 72, 94,163,168,231,248,197,127,249, 57,126,242,199, 63,155,196, 80, 90, - 56,151,225,250,242, 53,206, 30, 62,196,124, 57,195,155,239, 94, 32,203, 61,169,255,151, 43,236,174,222,226,225, 39, 95,224,253, -243,223,227,228,236, 20,245, 98,129, 7, 31,125, 12,103, 2,242,156, 84,242, 61,150,216,189,127, 9,239,122, 12, 33,194,101, 5, - 22, 39,167,168,234, 28,113,232,176,187,189,193,113,119,171, 2, 76,239,189, 38,127, 1, 3,234,249, 57, 86,247, 63,192,229,179, -255,166,247,189, 0,153, 8,249, 74, 78, 6,195,161, 29,116,104, 58,172,238,125,136,229,233, 9, 98,104,208,119, 71,197,203,250, - 44,131,147,104, 96, 7, 78,161,115, 10,212,160, 14,216,113,103, 94,194,250,146,242,174,163,129,113, 25,230,139, 37,225, 95, 13, -209, 18,173, 51, 72, 49,160, 61,238,113,220, 94, 99,119,115,137,238,184, 65,232, 15,232,154, 29,186,246,128,230,112,131,174,217, - 33,198, 14, 67,104, 53, 99, 93,196,112,145, 69, 87,196,166,231, 20,188,172,212, 66, 63,106, 94,183,229,174,124, 20, 76, 9,106, - 84,124,197, 98, 93, 26,195, 81,160, 99,101,141,232,116, 30,198,121,190,110,110, 12, 27, 73, 24, 19,238,144, 84, 45, 77,207,148, -129, 5, 96,147, 3, 93,247,239, 25,165,220,101,164, 75, 72, 24,119,189,198,121,248, 60, 31, 31,208,214, 33, 25, 71, 92, 49, 51, -134,229,200,107, 52,214, 43,255, 34,114,230, 65, 24,194, 8,170,249,126, 52,167, 76, 51, 20,158, 50,194,101, 20, 78, 50,233, 27, -137, 95, 78, 26, 1, 42,232,205, 40,186, 98, 32, 14, 1,181, 60, 89,112, 49, 58, 86,198,201, 0,249,217,147, 76, 63, 32, 98,182, -239,117,154,176,236, 93, 79,227,250,130,127,134, 78, 86,153, 5,111,120, 10, 67,148, 61, 22,181, 9,180, 6,105, 18,207,107,198, -159,195, 26, 11, 90,131,102, 58, 89,138, 28,245, 43,154, 18,105, 98, 37,101, 83, 20,244,146, 58, 72, 77, 5, 1,217, 66,223,211, -234, 75,149,243, 78, 57, 9,113, 24, 65, 91,130,171, 86,209,164,168,220,133,209, 46, 25,239,186, 34,113,119, 15,115,216,137, 0, -209,170, 6,203,232, 97,239, 88,248,236,249,208, 55,255,196,179, 62,221,196, 88,164, 68,177,171,118,220,109, 11,119, 93,236, 88, -102, 2, 87,200, 11, 30, 75, 73,146,150, 10,114,172,226, 37, 29,167, 89, 13, 33, 16,139,156,225, 16,121,158,161,239,122, 85,227, - 58,111, 73,208, 37, 10, 69, 79, 74,198, 65, 41, 81, 73, 81, 10,206, 90,244, 93,135,205,122,131,195,110,135,208,119,240, 89,129, -217,201, 10, 37,191,254, 44,247, 58,190,137, 42,118,136,122,163, 58,103, 81,205, 10,244, 93,139,174,235, 81,214, 21,170, 89,141, - 44,203,148, 83, 31, 99,164,224, 17, 86, 35, 27, 24, 18,142,117,129,133, 35,134, 11, 8,222, 81, 69,186,241,229, 64, 23, 86,185, -181, 22, 93,219, 35,203, 28,103,196,123,148,101, 78, 35,116,217, 9, 59,163, 54, 56, 17, 30,138, 79, 85, 34, 18,199, 66, 32,160, -109,105, 28,223, 28, 91, 28,143, 45,117,248, 6,120,247,246, 26,231,247,239,179, 10,212,224,230,250, 26,109, 27,240,228,131,199, -172, 94,141,202,144, 86, 46,124,215, 49,217,171, 69,115, 60,162, 57,182,176,214,240, 90,192,106,248,204,152, 73, 28,208, 53, 71, -228, 5,209,232, 72, 83, 1, 92, 93, 94,226,234,237,123,156,156,157,226,236,226,130, 70,192,186,239,146,244, 44, 78, 52, 10, 1, -153,119, 56,236, 14, 40,171, 28,121,153, 79,210,183,136, 32, 39,233,121,206, 89,148,117,173,163,174,155,247,215, 92, 56,210, 61, - 7,246,237, 71, 22,229,121,239, 84,181, 92,148, 5, 98,160,244,175,245,213, 37,125,238, 53, 65, 80, 54, 55, 91, 60,249,244, 3, -154, 16,132,110,228, 55, 15, 3,170,249, 18, 9,192,245,219, 55,184,189,217,225,236,254, 3, 62, 72,168, 83, 88,157, 95, 96,121, -182,194, 55,191,252, 21, 22,231,143,176,185,124,129,139, 15, 63,199,229,215,191, 66,178, 5,118, 55,215,168,170, 12, 69, 85,227, -244,222,125,156,221, 59,197,113,183, 69,215,118, 56,116, 5,250,227, 22, 38, 30,176,189,217, 32,165,136,211,243,115,204, 79,230, - 24,250, 30,187,219, 27,242,111,115,158,130, 70,133,114,151,238,156,199,147, 47,255, 16,111,190,254, 57,135,184, 48,127, 32,209, - 30, 47, 14,228,217, 55,198, 34, 43, 42,222, 79,123,212,171, 15,176,186,184,128, 77, 29,186,195,142, 11, 34,135,188, 40, 20,186, -100,144,144,134,128,161,111, 97, 18, 21, 86, 89,158,243, 3,178, 0, 76,166,157,166,203, 10,248, 44,195,108,126,194, 46, 25,234, -222,178,140, 30,120,161, 61, 98,119,123,137,221,230, 45, 66,191, 69,140, 29, 98,236, 49,196,158, 99, 92, 35, 98,236,209,183, 7, -132,190, 65,215, 30, 48, 12, 61,226, 16,116,135, 25,120, 37,228,157,211,201, 94, 86,212,176,206,243,190,148, 0, 65, 81,125,215, - 96,109, 8,219,144, 66, 15,231,243, 81,140,102,238,118,232, 18, 26, 66,234,118, 81, 20,155, 81,200, 6,139, 40,187,242, 59, 20, - 57, 14,236, 16, 0, 74, 28,197, 80,116,160,123,248,188,134,117, 57,133,229, 88,210,100,168,154, 95, 50,201, 13,168,136, 48, 73, -227,116, 37,124, 36, 74,186, 90,154, 76, 65, 85,108, 53, 76, 50,198,211,157, 61,181, 28,148, 41, 78, 85,248,230,142,197, 76, 96, - 39,145, 21,231, 70,199,219, 78,133,149,138,116, 29, 2,195,200, 28,226, 16, 88, 60,152,184,224, 20,165,248,168, 40, 31, 99, 80, -141, 30,152,114,141,192, 68, 57,113, 54, 56,231,190, 55, 61,241, 42, 94, 27,113,171, 35, 43, 64,166, 10,100, 87,131,226, 93,237, -100,146,102,184, 72, 85, 66, 46, 79,251,100,242, 70,241,194, 20, 58,214,117,129,167,133, 14,211,122,202,186,145, 99, 34, 25, 22, - 49,113,215,143,201, 58, 99,204,229,229,207,100, 60, 99,172, 76, 43, 39, 54, 58, 57,199,244, 32,159,216,169,197,105,112,135,132, - 40,136,103,126,118,170, 85,205,140,147, 13, 37, 69, 78, 51, 87, 37, 27,136,132, 31, 19,252, 96, 26, 5,111, 72,212,241,166, 72, -190, 92, 58,180,248,129,157, 6,164, 24, 52,212, 64,152,230,113, 24, 16,195,128,188, 16, 34,221, 64,225, 46, 44, 76, 40,203,156, -198,220,153,215, 55, 64, 1, 31, 30,158,133, 92,114, 96, 2, 84, 93,249,140, 16,128,210, 69, 14, 33,160,217,239,209, 29,247,136, - 67,192,226,100,137,197,234,148,226, 43,237, 24,170, 16, 99, 66,158,231,188,179,206, 49, 91,212,152,205, 43,238,156,105, 71,156, - 23, 57, 19,218, 60,142,135,150,200,111,121, 70, 66,191,182, 67,115, 56,234,184, 93,246, 82,206,123, 21,211,137,136, 46,113,128, -139,168,213, 83, 28, 80, 20,217,196,107,106, 39, 20, 41,154, 74,116,109, 96, 95, 56,173, 15,132, 77, 95, 85, 5, 23, 70,164, 45, - 24,134,129,173, 64, 64,215,117,228,255,230, 49,107, 8, 1,215,239,222,193, 88,143,123, 15,239,177, 98,191,199,183,191,127,134, -147,179, 51,148,117, 73, 30,247,152, 24,153, 8,218,165,247, 61,246,187, 61,154,134,246,230,202,199,215, 47,137,213, 85, 74,226, - 93, 82, 74,195, 29,145,144, 1,208, 28,182,184,124,245, 6,109,211,225,193,147,199, 12,154, 8,228, 51, 6, 56,146, 20, 44, 50, -164, 16,152,195,118, 7,231, 61,178, 44,215,241, 59, 56, 36, 70,174,167, 49, 22, 85, 77,249,224,161,239,113,179, 94,223, 17, 71, - 10, 95, 91, 83,237, 88, 36,231,125,198,222,248, 35,133,201,108,111,112, 60,182, 40,170, 26,222, 39, 92,191,187,166, 95, 63,144, - 26,159, 30, 96,116,144,214,243, 19,130,130, 96,192,175,127,254, 75,124,254,227, 31,234,248,171,172,103,248,217, 95,252, 25,190, -249,135,127,192,234,254, 35,248,204,227,228,222, 3,236,111,174,145, 85, 21,251,169, 41, 65,109,182,152,225,226,233,135, 72, 67, -139,246,112, 64, 19, 10, 28,118, 71,196,110,131,219,245, 45,250,174,199,236,228, 20,213,108,134, 33, 4,236, 55,107,116,205,142, - 59,148,140,194, 54, 44, 61, 88, 8,156, 18,241,244, 7,127,138,155, 55,207,208,236, 46,201,230,153, 57,205, 12, 39, 27, 31,237, -103,179, 98, 78,226,181,172,194,108,245, 49, 78,239, 63, 2, 98,192,238,246, 10, 41, 5, 21, 13, 9, 42,185,111, 41,201,175, 57, - 28,145,210,160,214,157,161,239,128,100, 48, 36,135,152, 40, 37,206, 88, 7,159,229,152, 45, 78,244,251,158, 21, 5,107, 76,142, - 56,238,214,216,221,190, 69,215,220,234, 62,255,206,252,209, 90, 13,188, 24,239,171, 30, 93,123, 64,232, 91,205, 85,151, 83, 72, - 58, 76, 57,216,197,139, 12, 67,216,230, 49,115, 28,227,193,233, 61,172,203,117, 36, 79, 48,155,168,221,177, 28, 20, 50,197, 74, -176,128, 40,237,173,163, 61, 61,255, 94, 64, 82, 22, 3, 6, 9,237, 0, 52, 58, 89, 34, 83,197,142,102, 93, 9,235, 72, 97, 47, - 5,129, 4,205, 24,195,214, 43,231,244,224, 67, 26,115, 42, 68, 40, 74,205,209,160, 66, 54,249,185, 49, 37,141,106, 78,147,241, - 54,237,172,205,104,187, 27, 99,177, 20,255, 42,232, 85,121, 14, 73,160,207,104,223, 98,108,233, 36, 80, 68,178,206, 97,173,134, -176,200, 72, 94, 68,142,146,136, 22,185,113, 96, 96, 40, 95,247,187, 33, 42, 73, 45,122, 24, 33, 43, 19, 81,163,238,208,133,195, -206,159,115, 76,162,108, 55, 60,133,201, 52, 69,146,118,235,118, 50,242, 7, 71,132, 91, 13,197,113,206, 82, 1,155,198, 68, 55, -217,133,247, 93, 79,211, 37,190, 78,116, 29, 6, 18,187, 41,162,151,252,254,131, 10, 11,217, 78,171,180,198,105,192, 79, 82,132, -186,157, 8, 58,133,127,161,215, 67,249, 0,162,137,136, 99,194,154, 53,218,161, 79, 27,237,239,227,129,245,223, 26,238, 51,238, -217,173, 49, 81, 31,160, 69,145,241,184,211,142, 62, 71, 46, 65, 6,222, 37,200,131, 94,188,125,222, 75,218,205, 72,219,161, 46, -136,198,207,242,133, 52,214,178,122,157, 46, 64,198,172,120,173, 84,140,101,241,205, 72,244,201, 11, 47, 32, 64,133,148,136,234, -158,246,228, 13,246,219, 29,142,135, 35,202,178,192,108,177,196,201,233,138,210,183,152,147, 45,187, 14,231, 44,199,126, 38, 85, - 71, 38, 22,127, 29,246, 45,202,186, 70,201,150, 54,239,105,237, 64, 1, 40,253,152, 17, 47,192,127, 79, 15, 84,217,247,122,239, - 84, 96, 17,194,228, 6,229,221,142,168, 65, 73,232,146,152, 38,197,251, 49,238, 52,133, 73, 79, 5, 76, 36,125,131, 76, 29,216, -163,126, 56, 52, 52,214, 55,156, 18,198,215, 36,165, 1,175, 95,188,197,114,181,226, 68,161,128,190,109,240,234,249,107,124,240, - 49,117,165, 83,133,123,223, 81,135,174,157, 3,160, 95, 74,218,253,147, 24,197, 77,252,237,242,175,230,216,106,174,121, 2,208, -245, 13,214,239,223,225,234,237, 53,197,136,242, 67,222,104,108,231,248, 96,238,219, 22, 69, 85, 81, 6,187,181, 40,171, 66,251, -164,200, 90, 2,217, 13, 57,231, 48, 91,206, 73,156,210,245, 8,125,171, 98, 27, 99, 45,165,216, 9,125, 43, 4,181,229, 56,159, - 17,248,166,111,117, 90, 32,104, 87,196, 1, 69, 61, 67,123,216,163, 57, 54, 56,189, 56,163, 46,105, 32,110,120,189, 88, 98,127, -187, 65,140, 3, 46, 95,190,192,236,100, 73,133,135,181,248,233,159,253, 41,214,111,222,224,250,205, 43,216,124,134,161,223,163, - 90,158,161,217,188, 71, 86,159, 98,127,243, 14,179,229, 2,179, 69,141,147,139, 7,168,102, 21, 54, 87, 87,104, 67,142,182, 77, - 24,154,107,108,111,119,136, 67,194,217,253, 7, 88,157,159, 1, 6,184,121,255, 30,237, 97, 75,157,201,200,101, 3,192,186,131, - 20,112,246,240, 75,164, 24,113,243,246, 87,240, 89,129,188,170,120,101, 6, 94,119,116,140, 66,206,145, 23, 21,202,217, 9,150, - 23, 31, 99,117,239, 9,138,220, 97,115,245, 26,161,107,232, 62,212,113, 37, 49, 40,182, 55, 87,216,221, 94,163,107,246,104,246, - 91,244,237, 30, 93,123, 68, 31, 18,218, 46, 32, 38,203,182, 35, 32,203,201,233, 80, 86, 37,121,202,173, 35, 20,111,104, 17,186, - 29,218,195, 13, 66,183,103,143,238, 36, 63, 44, 37, 85, 76,139,154, 89, 66, 96,160,185,223, 29,186,238,136,148, 8,243,203, 78, - 52, 30,115, 78,211,216, 44,167,249,121, 18,248, 89,167, 15, 74,249,187,105, 87,202,100,204, 62, 16, 57,142, 15,158,196,147,133, -196, 4,185, 36,153, 7,252, 12,138,137,138,223, 24, 73, 5, 45, 74,244,148,164, 99,114,220,129,141,123,222, 24,147,142,219, 37, -221, 79,108,121, 17,102, 60,120,172, 99,254, 61, 70,255, 57, 23,244,218, 33,114,147, 53,196,132,158,217, 13,137,237,104, 67,164, -232,209,200, 35,108, 57, 64,233,215,227,232,195, 79,211, 29,187,157, 36,132,241,243, 16, 78,191,239,163,165,111, 50, 97,147,192, - 18, 41, 26,162,216, 26,253,100,130,106,198,168, 83, 88, 61,176, 41, 45, 19,186,143, 23,145,157,124, 63,163,210,251, 8,108, 51, -134, 3,217,209,153,160,247,134, 28,192, 78, 29, 14, 66,218,163,195,221,112, 3,224,148,161, 32, 19,229,190,235,181, 96,145, 51, -101,154, 14,151, 56,143,158,174,111, 28, 83, 71, 21, 69, 30, 57,242, 85,138,129,200,248, 88, 66, 29, 27, 41,142,227,192,186,132, -120, 55,172,197,140,234,159, 52,213,183, 11, 89,212,140, 66, 57, 61,166,229,245, 79, 38,230, 90, 60,136,232, 88, 14,248,105, 2, - 31,238,134, 10,217,253,118, 71, 7, 75,178,122, 33, 44, 91, 67,164, 19, 29, 66, 15,199,163, 89, 49,222, 75, 52,226,192,240,153, -208,135, 49,227, 24,156, 70, 6, 25,163, 68,164, 33,242,190,124, 76, 29,114,146,244,198,100, 46, 24,138, 70, 53,119, 60,121, 22, - 62,119,200, 10,178,215, 89,217, 63,243,174,213, 32,225,184,219,227,230,154,236, 63, 62,207, 81, 47, 23,168,231, 51, 61,156,172, -179,204, 61, 55,234,177,148,139,211,183, 29, 54, 55,183, 56, 30, 90,204,151, 75,204,151,115,142, 28, 13,104,142,173,170,242,187, -142,246,224,244, 64,243, 99,128, 8,239,118, 68, 0,226, 61, 77, 25, 4,206,226, 29, 89, 5, 19, 8,153, 75,234,245,168,241,142, -194, 14,142, 98,157, 99,237,130,242,173,249,131, 47,120,119, 73, 49,182, 57,199,128, 58,100, 89,142, 56, 68, 52,199, 29,188,207, -240,228,131, 71, 40,248, 90,221, 92, 93,161,239, 6, 60,122,250, 80, 21,253,161,239,153, 52,149, 70,180, 47,167,213, 89,249, 2, - 25, 51,106, 1,120, 71,228, 88,125,187,190,186,193,234,108,197,171,149, 0,147, 18,246,219, 27, 92,190,122, 75,104,211,122,166, - 7, 13, 56,174,214,176,224,232,184, 63, 98,182, 88,168, 56,141, 16,182, 99, 82,148, 99,215,131, 84,225, 69, 89,194, 57,139,195, -254,192,175,153,190, 34, 86,209,142,142,239, 75,175, 24, 80,242,175, 2, 93,219,168,192,101,177, 58,195,238,118,131,208,247, 88, -172, 78,240,245, 63,254, 26,255,238,127,255,119,248,224,243, 79,121,149, 2,100,229, 12,229,172, 66,119,220, 97, 8, 1, 93,215, -224,230,253, 53,206,238,223,199,211,207,191,196,234,108,133,175,127,249, 11,184, 44,199,226,100,134,243, 71, 31,224,230,205,105, - 79, 91, 20, 0, 0, 32, 0, 73, 68, 65, 84,183, 88,222,127,130,195,250,146, 92, 13,222,225,228,236, 12,203,139,251,104,247, 27, -172,215, 71,244, 49,199,241,246, 45,110,215,132, 44, 94, 93, 92, 96,113,122, 14,107,128,205,250, 6, 93,115,224,107,238,244, 97, - 41,163, 66, 99, 12,102,203, 7, 56,123,252, 49,222,126,253, 95,128, 20, 81,205, 78, 80,215,149,222, 23,125, 71,247,168,245,148, -232,230,179, 18,213,226, 30,206, 31,125,140,170,174,112,220,222,234,104, 27, 41,162,111, 27,196,208,163, 59, 30,209,182, 13,175, -149, 70, 91,161,116,159, 98, 49, 35,133,177,101,171,219,140,199,242, 57,239, 91,123, 26,161, 55,123, 52,251, 53,237,200,229,129, -149, 70, 74,150,115,153,118, 62, 50,174,150,206, 38,113,128, 81, 98,182,121,215, 82, 8,143,181,208, 68,193,209,234, 52,142,119, -101,239, 45,193, 34,210, 33, 81,151, 60,238,166,105,194,150,116, 74,166,222,105,177,199, 1, 24, 88,161, 45,248,107, 76, 34, 89, - 99, 74,176, 54, 39, 33,153,201,238,210,213,141,213, 8, 80, 99, 51, 22, 16,242,193, 26,185, 80,230, 12,239, 33, 70,180, 13,113, - 38,186,190, 67,215,117,180, 10, 11,100,155, 37,155, 41, 93,143, 97,160,253,182, 40,199, 41,218,115,224, 17,247,221,142,119,186, - 27,150,195,125,252,181, 56, 10,183,184, 43,159,166,196,129, 53, 6, 41, 6, 45, 22, 8, 47,157,233, 84, 65,227, 70,195, 72,184, - 35,241, 92,212,105,192, 84,160, 40,184, 93, 41,182,232,247, 74,167,110,217, 97, 97,238, 8,202, 98,148,215,102, 38, 22, 67,167, - 66,190, 81, 33,207,214,232, 44,231,191, 99,124, 78, 73, 55, 43, 29,173,132,113,137, 94, 76,193, 73,102, 18,151, 58,121,230, 26, - 3,100,158,119,246,102,146,115, 63, 1,207, 64, 83, 15,157,174,199, 36, 9, 81, 86,165, 42,220,140,152, 60,191, 39,171, 6,221, -169,143, 14, 30, 43,175,141, 39, 24,110, 18, 54, 35, 13, 45,237,210,199,224, 24, 59, 41, 14, 68,224, 39,207, 64, 27,251, 30,206, -146, 50, 61,231,195,128, 42,115, 26, 59, 65,192, 30,102,140, 94,204,242, 81,145, 56,142,164, 29, 83,139, 44, 41, 53, 57, 68, 1, -147,152, 63,201, 60,151,125, 1,209,181,204,228, 3,177, 19, 95, 32,231, 41,195, 32,244, 81, 59,117, 51,217,111,201,239, 5,119, -147,155,155, 13,186,166,161, 73, 64, 81,162,154, 47, 80,148, 37,234,121,173, 7, 60,237,184, 39, 20, 50, 86,241, 55,135, 35, 14, -187, 61,178,130, 44, 75, 4, 96,161,131, 11,140, 59,148,155, 39,227,213, 66, 8,145, 99,101,163, 22, 60, 50, 14,177, 50,226,233, - 3,218,182,225,174,131,174, 69, 94,228, 12, 94, 25,101,219, 33,144,165,172,239, 58, 28,143,237, 24,219,103,104,191,153, 23, 5, - 22,203, 37,138, 34,135,247,142, 38, 19,243, 25,156,183,168,103, 53,242,204,225,246,230, 22,247, 30,222,199,201,233,146,248,234, -185,199,229,235, 75,172, 88, 80, 72,239,103, 80,241, 33,197,170,210,151,109, 96, 26, 27, 89, 2, 69, 48,101, 71, 17, 36, 87,243, -251,237, 22,171,211, 51,221,111,211,196,100,143,227, 97,135,188,200,113,241,224, 33, 23,101,137,109,116,137,163,104, 29,246,219, - 45,165,181,109,183,196,250, 47, 75,101, 82,203, 8, 76,236, 33, 68, 37, 36, 52,108,115,108, 53,119, 94, 50,166,101, 85,227,179, - 76, 83,146,196,195,109, 77, 68,232, 26, 13, 61,168,102, 11, 92,191,121,131, 97, 72, 88,157, 45,241,205,175,127,131,155,171,107, -184, 60,199,167, 63,248, 20, 49, 70,204, 87,231,100,233,219,221,114, 17, 58,224,245,179, 23,248,224,243, 79,241,227, 63,249, 67, -252,221, 95,253, 39,164, 24,113,114,239, 17,246,183, 27,236,111,215,200,235, 37,182,215,107, 84,149, 39,221, 68, 89, 34,171, 22, -200,114,135,235,203,107, 4, 84,216, 93,191,194,250,253, 26, 67, 8,168, 23,115, 84,243, 19, 24, 3,236,119,123,180,135,221, 24, -148, 1,139, 44,203,225,189, 81,252,164,207, 10, 60,254,226, 95,224,229,175,254, 51, 98,108, 73, 41, 63,155,241, 62,150, 2, 35, -250,190,165,233,138,179,176,222,193,231, 5,150,231,143, 96,173,193,238,118,141,174,107,224,153,170, 54,198,134,210,222,154,114, -236,229, 80, 76,188, 7, 38,175, 56,201, 90, 28,103,217,159, 32,243, 14, 62,167, 61, 49, 57, 37, 2, 98,232, 17, 58, 18,191, 13, -129, 44,107,130, 33,149,221,180, 68,160, 26, 41, 90,248,193, 29,153,252, 53,210,195, 70,124,107,215, 30,168, 40,100, 5,180, 49, -208, 17,244,157, 24, 82,201,242,150,208, 26, 62,136, 52,155, 91,132,116, 60, 53, 27, 98,212, 93,251,192, 7,169,170,214, 37,154, -115, 32,193,236, 16, 5,243,156,235,190,157,158,139, 28, 47,106,198, 98, 33,175, 22, 28, 25,234,184,168,100,174, 56,123,223, 67, - 8,232,218, 14,109,115,196,126,183, 65,115,220,163, 61, 30,176,189, 93,227,176,223, 81,113,213, 7,116,125,207,135, 60, 61,115, -194, 16,180, 99, 36, 33,155, 88,172,160,221,240,247,119,236,162, 35, 16, 61,140, 50,139, 34,121,236,105,194, 38,147,140,129, 74, -118, 67, 83, 44,162, 60,122, 42,164, 18,107,161, 32, 86, 51,175,215, 72, 86, 30, 73,247,246, 36,234, 75,162, 67,144, 36, 63, 73, -102, 99,110,187, 40,237,169, 43,183, 74, 11,116,124,157, 40,110,122,132, 27, 89, 3,118, 95,184, 9,136,136,166,142,214,102, 26, - 87, 43,170,118, 17, 15, 78, 83, 2, 9,253,237, 88,177, 62,242, 85, 70,192,205, 24, 43, 60,240,212, 68, 34,156, 49,205, 75,103, -244,185,136, 37,167, 10,119,113, 20,105,186,156,172, 7, 49,229,179,143,163,123,197, 97,167,169,192,109,156, 24, 37, 13,134,153, -140,225,217,114, 43,108, 17, 5,187, 25,123,103, 23,207,247,187, 65, 28,122,142,224,172, 56,123,121, 80, 15,156, 68,157, 74,192, -134,136,188,140, 1, 98, 8, 35, 5,140,171, 12,129,143, 16,240,128,254,153,101, 78, 1, 13,134,147,223,136,149, 27, 21,205,106, -172, 65, 81,120,100,153,213,232, 79,177,121,249,140,246,234,224, 49,177,153, 78, 17,216,191, 77,187,147, 12,109,211,226,184,223, - 35,116, 29,178,204, 99,121,122,130,197,201, 9,170, 57,237, 33, 19, 70, 17,199, 48, 16, 49, 79,130,108,226,208, 99,253,254, 26, - 41, 25, 44, 79, 79, 80, 86, 5,135,200, 36, 37,209, 21,101, 6, 3,203,194, 56, 76,132, 28,244,224,145, 15,192,106, 36,165, 80, -157, 70,123,131, 36, 16,201,158,170,239, 8,186,210, 54, 13, 17,224, 98, 68,203, 74,245,190,167,255,100, 89,134,170,174, 49,155, - 47, 52,163,157,136,120, 37,140, 33, 60,239,250,234, 26,128,197,189, 7,247,248,115, 50,104,219, 6, 47,158,189,198,135,159,126, -168,175,217,178,226,158, 98, 89, 51,238,116, 5,110, 48,230,204,123,239, 24,174, 0,173,104,223, 95, 94, 98,121,186,226,130,104, -224,162,166,199,250,253, 59,180,199, 22,159,254,224, 83, 24,174,110, 69,188,150,152,115,217, 28, 15,168,234, 26,161,107,208,247, - 61, 81, 2,141,213,116, 43,242, 1, 71,117, 18,212,243, 26, 41, 69,181, 23, 90,182, 16, 10, 3, 64, 4, 55,214, 57,173,150,243, -178,226,221, 60, 85,180, 69,185,192,195, 39,231,232,142,123,216,172, 64,223,182,188,159, 12,216,111,118,152, 45,151,152, 45,102, -168,230,115, 28,119,155, 73,106, 20,197,250,254,228, 79,255, 16,191,253,249,223,161,107, 91,248,188,192,124,117,134, 98,182,100, - 1,166, 69,230, 3,170, 89, 73,247,105,158, 97,121,118,134,245,187,119,104, 99,137,227,205, 37,174, 47,223, 35,166,136,162,240, -152,175,206, 49, 95,212,136, 41,226,184,219,170,191,120,244,245,122, 26,175,115, 55,252,232,243, 63,192,155,223,255, 61, 97, 96, -173,199,242,244, 2,121, 81,114, 84,114,196,126,115,139,161,239,224, 88, 93, 93,148, 21, 78,238, 63,165,233,198,230, 22,125,215, -232,158,216,231,149,146,212, 52, 88, 36,142,241,153,214,149,136,200, 16, 6, 32, 38, 58,184,242,188, 64, 61, 63, 65, 85, 87, 40, -103, 51, 62,140, 7, 74,190, 75, 3, 66,119, 68,215,236, 32,234, 36,101,172, 39, 14, 85,241,126,226,193, 5,143,198,253, 68, 36, - 52,142,103, 5,171, 41,120,213,174, 59,162,235, 26, 94, 25,181,228,113,103,162,157,160,162,133,185, 50, 76, 56,235,194, 9,215, - 7,249, 16,116,189, 5, 99,209,115,163, 34,163,207,190, 15,128,241,186,231,164,115,209,115,119,157,116, 63,174, 94,109,101,143, -243,238,216,230,164, 12,103, 11, 32, 21, 79, 60,202,103,171, 89,223,245,104,154, 3,218,166,225, 53, 29,123,169,141,231, 46, 54, -241,193,223,146,232, 49, 70, 14, 17, 1, 31,242, 29,239,171,105,228, 30,181, 91, 78, 58,202, 7,143,214, 85, 64,167, 71,138,168, -177,167,182, 43,126, 97,201,232, 20, 13,204,241, 55, 83,166, 45,192,236,115,232,123,178,206,179,160,208,241,251,247,204,204,103, -123, 95, 28,113,182,186,131,215, 16, 45,167, 62,121,213, 95,241,159, 51, 18,212,103, 51,205, 13, 17,220,170,172,111,100,100,237, -188,215, 2, 65, 16,176, 36, 72,148,213,225,168,188, 39, 65,101, 82,183,145,138,247,120,125, 16,239, 88,211,146,134,186, 76, 5, -104, 73,161, 51,172,151,210, 81,251,228,207, 73,240, 86,156, 0, 96,205,100,231,109, 70,199,130,153,146, 18,229,240,214, 48,161, - 72, 86, 90,235,120,202, 57,177,240,106, 92, 45,199, 16,203,238,221,140, 60, 25, 86,191, 3, 93,211,208,167, 96,188,238, 53,169, -123,151,196,158, 65, 73, 94,100, 87,227, 64, 1,102, 75,167, 56, 32,116, 61,139, 50, 0,239, 28,239,216,233,193,219,235, 14,130, -118,186,146,213,237, 89,197, 8, 67, 63,139,212,243,134,197, 83, 17,158,247,226,196,136,151, 61,114,186, 99,101,202, 25, 28, 35, -158,241, 44,231,236,245,216, 99,191,221,146, 74,222, 59,204,230,115,212,243,153, 90,129, 66,224,221,191, 78, 14, 12, 41,193, 15, - 7, 92,189,125,143,208, 71, 44, 79, 87,196, 29,103,225,140, 87,139, 12, 70,127, 42,135,204, 20, 37,197,153, 58, 79,126,127, 25, -243,123,111,225, 50, 74,158,138,145,119,230, 34, 82,234,169,130,183, 22,216,239, 14,232,218,158, 38, 6,251, 3,218, 35, 85,239, -212, 85,211,107, 93,174, 22, 56,189, 88, 81,146, 24,119,170,146,207, 76,100, 61,135,215, 47,223,226,244,226,140,130, 67,120,122, -176,189,185,193,225,208,225,201,135,143, 40, 90, 52,243,204, 30,240,252,160, 76, 10,163,160, 52, 62,190, 46, 24, 87, 12,146, 76, -213, 53, 71,212,243, 90,247, 83, 98, 37,219,111,214,216,220,220,226,193,211, 39,152, 45,150, 28,208, 50,140, 42,120,231,209, 30, -143,168,102, 53, 98, 12,232,154,150, 83,228, 10, 5, 87, 59, 79, 83, 30,107, 13,234, 89, 77,187,173,129, 51, 2,238,220,216,137, -191,176, 92,165, 99,236,242,138,178,164,251, 57, 69,196, 20,113,255,233,231, 56, 61,155,195,101, 25,150,167, 43,188,125,254, 18, - 85, 61, 67,150,101,168,103, 21,190,249,245,215,120,250,217, 39,180,235,223,109, 38,108,115,224,179,159,254, 12,135,221, 30, 55, -239,222,113,120,202, 19,212,203, 19,236,214,239, 16, 81, 96,104,183, 40, 74,226,245,231,101,137,188,204, 41,166,246, 54, 96,119, -245, 22,183, 87,239, 16,250,128,178,112, 40,231, 39, 40, 10,143,174,235,176,189,217,168, 38, 35, 38, 32,194, 97,148, 45,208,131, -250,241,231,255, 2,251,245, 37, 14,155, 55,148,239, 62, 95,161,168,102,108,211, 2,218,230,128,246,184, 87,177,170,207, 75,204, -207, 30,147,173, 48,208, 97, 75,110, 8,207,227,200, 28,214,151, 52,222,101,205, 5,233, 92, 42,164,228, 1,203, 35,100,230,190, - 23, 69,133,162, 44,233,243,177,185,250,115,169,232,234,112,220,173,209,183, 7, 46,106, 49,114,189,149,252, 54, 66,172, 18,119, -253,218,113,137,114,151,150, 41, 19, 95,115,186, 27, 56,153, 6, 12,172,156, 55,130,231,228,177,189,168,168,233,123,153,141,221, -100, 2,123,158,141,134,126, 36, 36,244,125,224, 14, 12,188, 94,233,212,149,163, 84, 53,246, 54,247, 97,224,245,151,101,112,138, -103, 0,140,103,235,154, 25,105,107, 89,201,228, 59, 62, 76,120,167, 44, 19, 72, 24,131,166,105,184,120,144,189, 61, 16, 19,199, -209, 2,108, 19,164, 29,239, 48, 80, 96,139,176, 59, 20, 57,170,129, 53,134,199,240,163, 72, 45, 37,153,112, 90,181, 4,210,175, - 25, 85,209, 79,187, 76, 89,141,196, 68,147, 10, 57,216,229,208,164,252, 3, 74,216,171,231, 75, 98, 5, 88, 18, 37,210,225, 13, -221,163, 15,195, 64,178,113, 14, 82, 18,151,129, 20, 24,164,141,152, 8, 7,157, 27, 21,220, 60,102,167,194,105,146, 83,142,187, -133,129,172,227, 36,123, 94, 61,234,142,236,196,211,196, 64,106,250, 44,131,188,232,231,122, 70, 59, 43,102,214, 10,151,197, 41, -116,106,154, 63, 65, 13,108,210, 98,203, 72,132,239, 16, 85,216, 39,233,166, 35,227,128, 15,118, 17,186, 73,144,139,228, 34, 76, - 68,115,150, 93, 43,162, 39,155,102,135, 88,142,255,133, 25, 71,245,162,142, 31, 87,227, 86, 27, 81, 76, 3, 97,216,238,102,105, -180,154,248,240,243, 44,240,192,157,240,247,129,197, 95, 41, 14,136,161, 31,115,176,185, 83, 22, 11,220, 16, 6,218,139,246,129, - 25,222,145, 59,118,163, 9, 61,163,109, 14, 52, 46,244,158, 80,160,206,168, 34,158, 44, 59,153, 90,229,228,203, 43, 54, 53, 10, - 23, 16, 2, 80, 82, 69,163, 84, 74,214,144, 13, 41,203, 8, 94,179,223,237,176,219,238, 73,113,157, 23, 40,138, 18, 89,238,137, -100,101,140,142,227,135, 48, 32,244, 3, 66,223,227,118,189,198, 97,223,224,228,108,133,197,106,206,126, 93,186, 33, 41,219,122, -180, 28, 89,222,129,203, 94,195,103,142, 67, 98,200, 86, 84, 20,197, 29,241,157,140,119, 68,240,119,216, 55, 12,235,233,121,151, -223,160,107, 91,116, 13, 69,117,250,204,161,235, 3,154, 99, 7,239,115, 44, 87, 75,228, 5, 85,180, 3, 91,192,242, 34,195, 97, -223,224,246,154,194, 94,206,238,221,211,235,157,144,240,242,187, 23, 56,187,184,135,135,143,239,163, 40, 75,204,231, 51,170,110, - 57,165, 8,124, 3, 91, 51,221,113,165, 49,197,137,217,223, 41, 18,191,155,120, 0, 65,199, 73,125,215,224,253,219, 75,148,117, -141,135, 79,159,144, 37,134, 71, 90,194,181,238,187,142,217,220, 22,251,221,129,189,225,153,170, 70,105,183, 75, 95,226,162, 42, - 96,121,159, 62,142,166,172,142,178, 4,108, 33,116, 62,239, 51, 85, 99, 15,125,171,209,158, 95,252,244, 71,136,125, 11,155,149, -168,231, 21,190,249,205,215,152,205,106,148,243, 57,178, 60, 67,215, 30, 97,125,137,204, 59, 52,135,157,186, 63, 62,248,252, 7, -120,252,209, 19,188,126,246, 2,139,213, 9,156,115,120,244,201,103, 24,218, 45, 81,191,250, 29,178,140,238,199,114, 54,163,160, - 23,147,227,118,189, 71, 56,110,113,245,230, 13,154,195, 17,222, 14,168, 23, 43, 84,179, 25,250,126,192,237,213,181, 82,239, 0, - 34,161,165, 72, 65, 68, 82,205, 95, 60,253, 12, 62,243,216,188,251, 22,214,102,164,100, 63, 57,167,117, 5, 44,134,208, 97,127, -251,158,114,174,121,181,177, 60,125,192,171,141, 13,182,235, 43, 86, 81,211,119,114,204,108, 38,127,185, 28,164,195, 96, 48, 68, -242, 79, 15,145,118,231, 9, 14,179, 57, 9,254,202,122, 14,151, 21,250, 16, 11,109,139,238,176,193, 97,187, 70, 8,157, 78,118, -188,207,225, 92, 14,231, 50,100,121,133,178, 62,161,177,169,203,148, 48,230, 20,164,145,233, 78,122,220,151, 26,221, 1, 79, 31, -248,195, 16,104, 42,128,136,132, 65,187,159, 36,106, 99,182,194,142,190,106, 94,197,113, 7, 59, 42,134,141, 78, 59, 99,138,232, -250, 94, 5,191,150, 9,116,114,128,139,248, 50,193,192,176, 8,139, 86, 19,126,228,158,115, 82, 27, 49,235, 11, 88,159, 81, 18, - 25, 44,239, 82,169,168,105,142, 13, 14,251, 3,113, 41,108,198,254,254, 2,128, 87, 47,119, 76, 86, 59,238, 16,162,114, 44, 36, -110, 54,178, 56, 78,199,236, 2,158,225,127, 2, 14, 49, 69, 68,217,111,167,113,188, 27, 53,191,211,142, 10,119,141, 33,141,119, - 2,122, 44, 91, 33,171,249, 2, 69, 53,131,247, 5,242,178,130,243, 37,178,178, 70, 86,206,144,229, 51,100, 69,205,160, 26,154, - 68,200, 58, 6,102, 12,111,193, 29,160,138, 97, 93,130, 99,208, 88,210, 67, 74,224, 57,244,225,176,111,159,209,178, 0,137, 97, -189,207,120,229, 48,113, 45,196,168, 41,141,134, 59,119, 33,103,122, 22, 96, 59,235, 39,142,135,187, 20, 74, 99, 70,111,188, 26, - 2, 37,230,212,178, 64,114,194,229, 23,188, 46,245,179, 65, 11,160,196, 69,205, 24,229,157,120,242,104, 70,109, 1,140,240,114, -248,126, 31, 1, 96, 90,160, 78,149,236,198,222,201, 72,151, 51, 98,228,200,196,187,192,119,195,128, 56, 77,205, 51,176, 62,115, -136,125, 15,131,129,187,226, 2,121, 81,178, 85, 38,194,130,186,246, 20, 57,156, 4, 9, 67, 31, 88,185, 61, 48,185, 43,142,230, -251, 52,166,197,165, 9,226, 52,165,136,140,197,109, 18,191, 71,126,217, 92,111, 44, 25,165, 58, 55, 86, 90, 46,115,250,224,202, -178, 17,214, 31,195,192, 99, 54,218,113, 59,239, 85,176, 86,176,109, 78,196, 95,206, 89, 56, 11, 28,182, 59, 28,246, 71,102,100, - 83,144, 11, 5,155, 68,180,109,135,190, 39, 15,183,140, 55,104,239,181,195,108,190,192,201,233, 9,237,207,138,140,247, 82, 52, - 71,161, 3,219,115,113,146,169,239,124, 8,244,197,242,153, 71,215,243, 14,147,133, 51, 49, 38,116, 93,135,190, 35,124, 44,237, -240,232, 1,220,182, 45,134, 97,192, 97,223,160,109, 26,181,117,196,129,213,152, 6,196,233,206, 11, 58,132,157, 81,155,154, 49, - 6, 33,244,120,241,237, 75,156, 94,156, 97,177,172,145,229,158, 39, 10, 1,111, 94, 93,226,147, 47, 63, 71, 61, 95,160,172,103, - 88,174, 86,168,217,167, 47,227,216,190, 31, 16, 89,213, 73, 46,133,156, 43,222, 65,247,177,135,253, 17,139,197,114, 12, 67,224, - 27,114,253,238, 18,251,205, 30, 31,126,246,137, 86,163,113,136,252,153,122,229, 78,123, 79, 89,247, 89,158, 97, 54,159,179,160, -114,204, 68, 39,145, 92,129,162,200,177, 89,111, 52,137,205, 50,156, 71, 51,175,217,105, 17, 24,214, 98,173, 67, 81,148, 56,238, -119, 0, 18,230,171,135, 56,189, 88,225,120, 56, 98,113,118,134,102,183,195,205,213, 59, 24,107,177, 60, 61,213, 81,217,230,118, - 7,159, 89, 12, 61,141,230, 23, 39,167,248,131,127,253,231,248,155,255,240,255,160,217,237, 81,214, 21, 86, 15,159,194,231, 25, -154, 99,139,174,235, 80,228, 64,158,121, 44, 86,167,240,222,162, 15, 6,109, 27,112,216,109,241,254,213,115,132,174,129,119,137, - 58,244,154, 38, 27,219,155, 27,116, 93,175, 66, 44,231,233, 32,116,188, 27, 76,113, 64, 57, 63,195,236,244, 30, 94,254,246,191, - 1,198, 33, 43,103, 88, 93, 60, 70, 53,155,243,222, 50,162,217,111,208,119, 71, 12, 67,143, 52, 12,152,173, 46, 80,212, 21,154, -253, 22,205,110, 77, 64,140, 24,185,195,100, 68, 42,172,118,179,198,229,112,121, 13,235,100, 82, 96,117, 39, 57, 95,204,144,151, - 4,155,161,221, 51,237,117,211, 16,208, 30,183,232,219,195,196,162,149,177,141, 43,167, 32,154,217, 9,202,122, 1,159, 21, 40, -235, 57,178,188,226,253,191, 81,123, 87,210, 24, 88,163,251,195, 17,254, 52, 6,142,104, 32,201, 68, 59, 44, 7,184,192, 67,198, -135,238,152,249,240,253, 20,172, 33, 70,218,157,243,152, 53, 14, 3,140,117,188,183, 54, 42,146,211,177, 53,187, 33, 84, 16,150, -162, 22,237, 67, 4,147,230, 56, 67,158, 83,200, 98,156,164,191, 97, 66,122,227,233,164,116,157,162, 37, 16, 27, 93,156,240,211, - 71, 70,157,101, 88, 84,224, 93, 58, 84,100, 6, 8, 51,223,234, 94, 60,178, 88, 76,187,115, 86,189,235,152, 95,130, 98,166,218, - 1, 1,192,112,110,130,207,114,212,243, 5,138,178,230,226,204, 79,158,191,153,102,150, 39, 24, 88,159,147, 23,223,231,122,192, - 26,166, 49,194, 88,186,151,210,212, 25, 64,207,193,190,235,117,237, 66, 19, 72, 40, 48, 72,124,220, 98, 41,139,201,232,184, 59, -113,234, 25,193,123,168,248,242,124,223, 14,113, 44, 90,172, 27,173, 98,214,209,239,149, 35, 59,203, 29,237,225,121,101, 39,231, -148,166, 88,178,238, 33, 73, 86, 7, 12,188,179,122,224,199, 97,184,227,187, 55,186, 50, 74,255,132,102,151, 52,151,100, 82, 84, -106,168,155,157, 36,184,152, 59, 64,178,113, 69,245,253,131,221, 40,155, 67, 67,154,116,236, 78,197,152,104,175,140,132,170,129, -161, 7, 41, 14, 64, 28,224,243, 98, 18,155,234, 89, 40, 53,138, 10, 72,165, 55, 0, 60,246, 75,137, 2, 27,200,190, 68, 49,165, - 98, 53,232,187,142, 31,190,131,226, 96, 13, 11,131, 2, 43, 61, 37,226,116,190,156,195,103, 25,178, 44,227,174,152,136,114,218, - 77,242,135, 36, 88, 76, 76,240,121,130, 79,165,145, 12,141, 55, 40,152,132, 97, 42, 24, 73, 73, 49,244, 56,236,142,104,142, 13, - 98, 2,138,138,124,235,113, 96, 70, 50,103,240, 22, 21, 29,214, 45,171,227,125,158,225,244,226,148, 51,198,105, 52,151,101,158, -173,115, 70,177,175, 50, 94,177, 19, 98,163,101, 29,129,166, 46,177,210, 56,242,204,213, 24,242, 11,183, 77,199,138,230, 65,189, -235,125,215, 77,132, 59,132,175,141, 67,196,226,100,129,178, 40,248,186, 10, 65,143, 4,123,135,253, 6, 55,215, 91, 60,120,252, -144, 85,235,116, 0,110,214, 55,136, 49,225,195, 79, 62, 96,240,206, 12,243,197, 18,203, 19,210, 29, 20, 69,161,176,161, 44,227, -108, 97, 63,146,250, 4,244,114,123,125,131,179,139,123,147,241, 17, 61,100, 15,187, 91,188,248,230, 37, 78,206,239, 81,122, 92, - 8,148, 64,135, 17, 94, 20,135,136,162,172,112,216,237, 72, 44, 87, 85, 92, 16, 70,205,169, 47,171,146, 59,181,136,205,237,134, - 17,188, 81,173,117,198,144,176,147,130, 51, 34, 28, 79,104,140,245, 40,202, 28,135,221, 14,128,193, 71, 95,126, 5,203,233, 90, -203,211, 21, 46, 95,188, 66,232, 73,176, 84,148, 21,209,212, 18, 96, 82,194,233,249, 18,198, 36,100,222,227, 95,253,219,127,131, -175,255,225,151,136,161, 67,223, 53, 40,103, 53, 30,126,252, 41,118,235,107,116, 77, 75,157,227, 16, 80,206, 23, 48, 32, 74, 97, - 62, 63,195,126,179,195,139,223,254, 6,205,126, 15,139, 30, 85, 61, 67,189, 88,194, 34,225,230,253, 21,229, 6,232, 67,192,179, -216, 10,106, 15,204,171, 5, 30,127,246, 67,188,249,253,223,211, 94,209,103,152,159,156, 99,190, 58,229,221, 37,197,183, 54, 7, - 18, 26, 58,239,113,114,255, 41,234,197, 10,205,126,139,235, 87,191,199, 97, 71,106,119,153,146,145,247, 60,114, 23, 40,136, 85, - 79,157,165,245,176, 62,131, 49,132,131,173,102, 21,124, 78,129, 44, 68,120,164,207,165,111,143,104,246, 91,132,174,153, 88, 68, - 61,143,128, 19,139, 71, 43,212,179, 57,242,178, 66, 81,214,200,138, 10, 89, 94, 81, 39,235, 28, 63,124,204,100,189,225,148,118, -102,140,120,146,133,206, 53, 73, 19, 75,228,159,206,178,252, 78,204,232, 29,223, 46, 79,163,156, 38,110,165,137, 42, 28,170,159, - 25,115,191, 49,142,124,245,181,140,157,163,181,226,135,183, 42,202,149,172,117,186, 87,217,104,107,233, 26, 8,253,140,176,124, -158,163, 63,193,251,226,164,234,239,196,142,130,152,198,162,196,218,169, 0,205,221, 73,248,146,149,135, 20, 31,178,243,191,227, - 25, 23, 15,184,138,229, 24,221, 58, 69,200,106,156, 41,113, 35, 18, 4,162, 67,110, 17,159, 21,240, 57,125, 78, 62,243,112, 89, -174, 26, 15,133,190,176, 56, 48, 37,199,161, 59, 20, 70,227,124, 62, 25,241,219,113, 4,143, 49,112,103, 8,131,210,227,134, 48, -144,229,207, 57, 37,101,202,158,152, 38,161, 78,247,235,208,137, 18, 77, 74,172, 33, 33,226,192,207,165, 60, 47,180,152, 27, 2, - 33,194,115,110,178, 28, 55,135,198,138, 11,194, 78, 84,250,106, 65,103,209,157,209,113,182,230,160,243,129, 33, 98,223, 41,187, - 37, 77,160, 96,227,164,105,116,123,164,201,121, 35,129, 68,134, 29,101,212,149,143, 35,247,201,226,126, 18,103, 12, 37,140, 78, -233,113,163,218,157,239, 24,193, 29,171, 91,205,193,152, 4,111,157, 81, 49, 74, 86,148,240, 62, 67, 94,205,216,139,199,201, 79, -133, 69,232,123, 13, 26,137, 19, 36,158,132,111,128, 59, 39,128,189,150, 60, 18,143, 33,192, 88,135,122, 49,195,249,195,135, 44, -218,201, 38, 95,152, 49, 82,146, 58,191,136,190,105,208,247, 45,113,201,119,205,104, 77, 19,200,183,145,221,158, 81, 79, 59,238, -100, 26, 39, 37,214,137, 74,218, 58,163, 21,184, 69,226, 49, 56,189,206, 44,243, 88,156, 44, 41,130, 54,108,185,227,141,227,152, -198, 0,205,225,128,178,170, 49, 91, 46, 96,221, 1,237,177, 69, 53, 43, 9,172,195,138,113,162, 18, 89, 78, 64, 35,180,161, 55, - 6, 49, 24,116, 45,117,149,125, 23,244, 75, 73,249,243,212,173, 7, 78, 40, 19, 33,143,227,221, 59,141,234, 91, 84,117,197,161, - 43,129,190,120,206,161,158,207, 8, 91,155,100,122,146,244,207,188,123,115,137,207,190,250,140,108, 77, 7, 18,224, 56,231,240, -252,155,231,248,242, 39, 95,162, 57, 28,177,185,221, 33, 47,115,202,170, 47, 50, 45,140, 72,112,120,164,247, 18,199,112, 28,129, -221,172,175,214,120,240,240, 1,158,125,253,245,168,113,112,196, 71,127,245,221, 11, 60,252,240, 9, 86,103, 23,184,124,245,138, - 71,101,252,165, 49,180,115, 94,172, 78,208, 28,142,128, 1,234,121,205,157,247,200, 51, 46, 74,210, 3,132,190,199,241,112,128, -177,231, 8,161,135,247,163,165, 67,231,169,178, 38, 64, 2,165, 70, 38,132,190,129,243, 37, 30, 60,121,128,162,204,112,140, 3, -202, 50,195,243,223,127,131,148, 18,118,219, 61, 30,242,248,213,103, 57,226, 16,176,227,137,204, 87,127,240, 47,113,220,237,241, -254,245, 75,228,185, 71,138, 3,150, 15, 30,161,154,149, 56,108, 54,112,166, 67, 86, 44,144, 59, 10, 3,218,111,110,209, 5,143, -174, 79,120,255,226, 57,154,253, 22, 38,181,200,235, 25,138,249, 18,121,110,177,185,185,193,113,191, 99,225, 39,137,178,134, 52, - 58, 33,172,165,168,213, 39, 95,252, 20,175,127,255, 11,206, 65,200, 81,205, 79, 48, 63,153,147,242, 53, 38,154, 28,173, 47, 49, -176,255,127,113,250, 24,171,139,135,216,111,118,184,125,247, 12,125,123,228,132,173,136, 44, 43, 56,125,139,166, 52, 33,208, 97, - 99,156, 7,236, 64,228, 58,231, 97,189,197,172, 20, 53,112,198,221,222,160,169,119,221,113,143,174, 61,160,107, 26,202,160,143, - 9,214, 59, 34, 41,198,129,189,217, 6,203,211, 83,109, 14,186,230,168,221, 67,140, 3,239, 93,239,100, 75,178,200, 82,196, 61, -142,223, 83, 98, 4,245,152,170, 70, 65, 45,108, 45,115, 94,193, 47,142,211,184, 36,171,192, 89,210,238,164, 4, 56,107,244,251, - 78, 52,192,209,139,108,184, 75,146,135,186,115,110, 2,147,185,155, 29, 47, 35, 83,162,190, 25, 32, 24, 45, 18,156, 47,180,177, -136, 41,193,194, 32,207,114, 22,230,145,210, 58, 12,145,109,163, 78, 1, 46,178,242,163,233, 73,194, 16,233,144,147,117, 21, 96, - 38,250, 2,246,159, 79,146,226, 82, 28, 4, 20, 7, 39, 43, 8,101, 54, 24,221,145, 79,193, 63,234, 94, 17, 63,190,230,175,211, -243,145,236,178,180, 75, 31,113,178, 70,237,186,114, 13, 66, 52,244, 92,234, 7, 0, 22,121, 89,163,239, 90,120, 24,132,190,209, -226, 61,166, 72, 72, 83,144, 85,211,120, 42,146, 68,208, 37, 28, 0,231, 61,250, 62, 32, 49,147, 65,174,141,138,212, 98,100,117, -125, 26,167, 29, 44, 40,243, 89,174,164, 71,121,255,142, 59,120, 1,207, 36, 36,216, 72,122, 10, 17, 82, 10,120, 70,132,188,228, - 98,234,249,126, 79,250,158,165,128,203,115, 63,126,166, 97,208,233,202, 24, 6,148,180,168,148, 67,219,154, 52,201, 69, 55,234, -114,138,170, 7,195,228, 32, 31,115, 10,229,200, 87, 13, 19, 79,132, 41, 28, 43, 42,112, 38,242, 42,192,114, 49,108, 82, 28, 87, - 4, 48,240,113, 24, 20, 93,216,236,247,168,173,135,245,100,207,105,247,123,186, 49,134,129,247, 69, 20, 26, 33,157,123,100,161, - 9, 89,128, 2, 7,145, 4, 21,194,136, 98,220,152,132,227,126,135, 87,223, 62,131,243, 57, 39, 66, 89, 49, 19,168, 72, 74, 84, -156,206,103,168,102, 21, 78, 46,238,225,228, 60, 81,106, 85,211,106, 87, 48, 70, 19,146, 48,142, 42, 78,195, 55, 10,171,186,121, -199, 78,160, 24,131,190, 27, 80,148,153, 10,207,140, 49,122,176,111,219, 14,195, 0,148, 85,137,243, 7, 23,232,218, 22,155,245, -102,220, 73,115,149, 28,250, 14,206, 91, 44, 78, 22, 26, 75, 43,186, 3,249,128, 83, 76,188,247, 7,239,147, 71,207, 35,217,198, -162,198, 15, 54, 77, 7,168,255,150, 62,244,182,237, 53, 27,123, 8, 45, 3, 51, 12,110,174,111, 80, 84, 37,138, 34,199,246,118, -135,197,201,156,170,210, 44,199,230,118,173, 59,122,105, 96,118,219, 45,222, 95, 94,227,226,193,125,172,175,110,128, 68,190,223, -190,239,241,221,239,159,225,193,227, 7,184,190, 90, 35,197,196, 90, 6,163,201,110,243,197,140,132,118,155, 29, 54, 55,183,228, -133, 23, 75,140, 49,120,127,249, 22, 95,254,240, 99,178, 81,201, 13,205,163,212,205,205, 45, 66, 31,241,244,211, 79,240,246,229, -243,137,169,145, 30,202,125,215, 99,117,126,142, 55, 47,223, 97, 8, 17,179,197,130,173,105,212, 53,103,153, 71, 61, 39,120,208, -113,187, 85,218, 27,217,222, 6, 30,219, 17, 85, 48,175,172,198, 38,134,148,144,229, 5, 50, 14,214,121,244,241, 87,200,108,194, -108, 49, 67, 31,128,253,102,131,155,245, 53, 23,134,228,152,104,155, 22, 69, 61, 67,115,216, 99,191,185,198, 71, 95,253, 0, 31, -253,224, 19,252,231,255,235,223,211, 53, 49, 68,193, 59,123,244, 24,111,159,191,134, 77, 7,248, 44,199,124, 94,192, 91,135,237, -122,141,230,216, 99,249,232, 19,108, 46, 95,225,184,223,193,196, 6,198, 36, 84,139, 83,212,117,142,246,120,196, 97,183,213,110, -172,235,200,135, 79, 41,199,145, 11,217, 1,143, 63,255, 9,182, 87,111,200, 82,135,136,122,190,192,114,117, 66,224,148,161,199, - 16,122,236, 55,107,133,114,204, 79, 31,227,236,225, 7, 8, 93,135,155,203,103, 8,221, 1,214, 57,132,208,195,218, 12, 49,246, - 44, 44,204, 85,235, 49, 68,240,231,101,233,224, 6, 48, 91, 44,128, 72, 14, 7, 66,244,210,168,122,232,123,116,205, 30,161,107, - 0, 68,184,204, 35, 13, 1, 62, 19,168, 8,193,104, 96, 12,242,178, 70, 89,215,148, 83, 16, 45,224, 2,140,139, 48,218,213, 72, -112,198,152,146,229,188,167, 3, 79, 80,208,147, 0,140,200, 10, 96, 9,216, 25,119,222,113, 84, 58, 99,124,160,170, 70,199,202, - 3,155, 10,220,192,164,194, 49,211, 99,180, 62,202, 23, 37,176, 48, 74,172,114,195, 16,120,101,153,216,245,194,110, 29,201, 36, -231,142,148, 32, 53,128, 77, 6, 57, 11,245, 2,139,235, 82, 28,184, 80,181,164,172,215,191, 43, 27, 71,210, 18,129,202, 33, 68, -244, 28, 13,116,143, 79, 86,153,146, 68,166,122, 40,158,112,200, 65, 39,163, 99, 25, 35, 11,170, 91, 85, 79,198,170,195, 68,176, - 70, 33, 4,100, 89,129,146, 39, 42,106,107, 13, 3,178,162,160,123, 68,133, 92,210, 48, 64,167,165,201, 24, 32,145,184,211,185, - 12,112,226, 73, 15, 42, 90, 21, 23,130, 8, 7,101,250, 26, 69, 16, 59, 4,222,159, 91,116,157, 20, 46,227,244,134,206, 68,207, -153, 16, 1,214,103,202,248,112,222, 83,135,237, 51,213,235,200,228, 37, 47, 50,116, 93, 84, 72, 81,207,233,152, 96, 80, 78, 52, - 73, 35,128,233,140,141,119, 38, 62,113, 72, 58,245, 20, 27,153, 76, 40,101, 39,110, 96,105,122,158,100, 58, 20, 85, 20, 39,120, -219,169,135, 60,241,235, 27,217, 36,134,239,123,115, 39,145, 69,137,173, 98, 27, 76,140,140, 78, 99,180,170,100,173,208,253, 56, -176,175,158,233,154,188,242,176, 10, 79, 97, 17, 64,223,181,172,221,227, 15, 97, 8,170, 90,149,234,130,162, 56, 25, 89, 24,131, -166,178,117,109,167, 35, 51,217, 9,133,158, 2, 82,192, 86,152, 24, 58,164, 72,161, 30,226,221, 22,138, 15,141,172, 6, 12,125, -139,221,237, 45,222, 62,127,137,219,235, 13, 78,239,223,199,234,236, 84,147,115,196,167, 39,227, 29,231,236, 56,162,151, 74, 93, -176,172, 50,238,179, 80, 15,165,177,208, 81,238,192, 49,164,199,253, 1,183,215, 55,104, 57,178,243,244,222, 25,202,170,226,157, -140,231,209, 16,216,111,218, 97,182,152, 99,190,156,141,236,112,182,105, 88,231, 88, 37, 9,181,154,181, 77,135,208,247,106,169, -115,126,132,101,132,129,246,216,194,189,206, 50, 18,225,201,190,135, 44,111,228,153,111, 14, 71,116,109,135,142,217,245,125, 79, -228, 57,201,146, 15, 33, 96,183, 59,226,112,104,208, 52, 45,158,127,243, 29, 66, 72, 56, 57, 91, 33, 4, 26, 35,101,222, 97,125, -117,141,182,233,240,244,195, 71, 56,236,247,104,142, 7, 82,220,183,157, 90, 18,151, 39,115,156,156, 46,177, 56, 89, 0, 2,247, -144,252,245,238,136,162,158,233,129,237,196, 14, 99, 12,195, 80, 2, 30,126,240, 4, 89, 94,106,208, 79, 94,176, 61, 48,244,168, -230, 11,181,158, 84, 51,162,163, 81,232, 79,134, 44,207,201,161,224, 44,174,223,223,144, 26,149, 87, 44,145,161, 57, 50, 25, 32, - 58, 87,212, 47, 87, 57,155, 33,207, 29,178,188,196, 39, 63,248, 28, 49,116,200,138, 2, 85, 93, 96,183, 38, 47,181,207, 60, 67, - 84, 36,132,167,198,237,213, 59,244, 93,135,159,253,217, 31,227,239,254,234,175,117,109,227,156,195,226,252, 62,229,217, 31, 55, -176, 41, 32,153, 28,121,102,112,216,110,113, 60,180,176,213, 5,156, 29,240,254,245, 43, 24, 16, 58,121,190,186,192,108, 94,163, -107, 26, 92,189,125,131,246,112, 64, 26,122, 22, 14, 38,124,240,217, 71,248,240,139, 79, 57, 73, 47,225,222,211, 79, 17,135, 30, -155,119, 47, 16,227,128,170,174,177, 60, 61,165,212,180, 8,244, 93,135,195,150,236,118, 48, 14,179,147,135,184,120,252, 49,154, - 99,139,119,175,126,135,208, 29,244, 94,166,177, 38,167,242, 25, 98, 83,135,126,208, 61,176,114,180,243, 18,101, 85,209,238,212, - 23,236,169, 38,200, 72,232, 26,180,199,237,152,158, 55, 1,154,140,160, 19,234, 38, 92, 70,130, 42,192,193,250, 12, 69, 89,192, - 90, 66, 0,123,231,213, 31, 15,102, 90,168,117, 44, 25,141,236,148, 67, 74,187, 25,118,219,104,183,110,141,194,135,156,134,177, -136,212,202,104,220,175,104, 62,232,192, 29,152, 23, 49,142,129,213,154,150,198,209,181,146,200, 48,134,189, 36,110, 18,105, 18, - 64, 7,121, 31,200,190, 25,153,125,110,140, 87,229,246, 8,171,113, 76,109, 35,190,120, 24, 34,134,100, 0, 75, 35,238, 41, 80, - 70, 84,226, 2,176, 81,148,234,244, 16, 55, 6, 73,131, 64,248, 53, 42, 79, 92,160, 57,100,167, 75,108,113, 35, 75,216,232,167, - 31,201,110, 86,237,101, 72,137, 24,254,121, 9,159,229,176,140,167, 54,206,242,254, 56,242,153, 64, 19,205, 56, 33,205, 65, 0, - 91, 44, 82,142,201,105,199, 44, 80, 34,241,241, 11, 74,214, 90,171,222,122, 89,103, 88,206, 89,151, 40, 86,121, 96, 90,137, 0, -102, 71, 1, 96,104, 29, 0, 10, 13, 18,139,164, 0,184,100,229,153,101,158, 27, 58,232, 20, 71, 58,116,195,174, 40,199, 16,176, -177, 9, 27, 87,122, 99, 13,100, 70, 14,254, 36,117, 77,247,217, 60, 85,146, 34, 18, 19,186,170, 20,143,162,111, 24,249, 53,118, -146,201,142, 59,247,111,226, 2, 79,130,100, 68, 79, 98,152,201, 79, 5,200, 93, 46,188,168,235, 5, 63, 43, 90, 55,221,171,127, -249, 7,127,132, 39,159,125,202,169, 48, 64,232, 90, 52,251, 35,141,189,124,198,201, 90,131, 90,151,236, 36,143, 24, 44,243, 39, - 49,205, 48, 9, 2, 8,119, 50,105,133,195,158,248,129, 16,122,238, 12, 58,178,115,105,226,150, 21,220,163,101, 26,144, 71,140, - 61,222,190,124,131,162,170,112,254,240,190,126,137,100,175, 22,133, 57,204, 22, 51, 39,196, 54, 22, 91,229, 69,198, 95, 70, 30, -101,179, 98,124,224, 3,161,239, 7,221,211, 91, 11, 28,247, 7,220, 92,221,224,120,104, 81,206,106,156, 94,172, 80, 84, 5,114, - 94, 25,100,185, 67, 81, 50,133, 44,207,177, 88,206, 56,173, 43,215, 46, 36, 43,104, 34, 32,254,234,208,247,234,203,247,222,145, -173,143,171,182,162,204,152, 50, 69,100,175,208,211, 67,105,191, 59,162, 57, 52,104,155, 86,175, 77,140, 17,199,195, 1,251,221, - 17,187, 13,113,239,243,130, 30,206,100,191,136,227,218,193, 57,244, 93,131,239,190,126,129,139, 7, 23, 92,101,143,252,231,103, -191,127,134,229,233, 41,238,221, 63,199, 16, 35,250,190,197,246,118,131,227,225,136,162,240, 88, 44,107, 58,216, 87, 75,148, 37, -173, 25,198,117, 11,221,180,121, 94,192,223,177,215, 57, 32, 13,204,212, 47,177, 58,191,224,105,137,215, 47, 98,219,180,124, 8, - 0, 93,219,147,232,175, 40, 89,188,232,120, 9,253,234, 19, 0, 0, 32, 0, 73, 68, 65, 84, 28, 88, 32,198,132,253,110,143,132, - 68,123,121, 30, 73,201, 78,150, 88, 7,134,115,236, 41,115,189,154,205, 17, 67, 64,181, 60,197,124, 81,193,122,143,190,167,209, -235,187, 55,151,188, 55, 35,191,191,243, 25,250, 62,194, 57,131,227,238, 6, 95,252,228,135,120,247,242, 37, 9,193,248, 28,154, -157,156,161, 62,123,132,195,237, 26, 46, 53, 72,198, 34,175, 74,236, 55, 55, 56,236, 14, 64, 54, 71,189, 60,193,219,111,191,134, - 53, 1,105, 8, 40,234, 57,202,249, 2,214, 12,184,122,251, 26,125,219, 82, 80, 17,219, 33,255,251,255,229, 47,241, 23,255,230, - 47,112,255,201, 67,156,156,157, 96,117,255, 17,138,186,196,245,235,111,225,178, 28,179,249, 28,171,139,251,200,203,146,133,149, -116,160, 31,247, 91,164,100, 48, 95,221,195,197,227, 79, 16,194,128,155,183, 95,143,176,156,137,181, 37,113, 24,147, 60,108,135, - 40,133, 35, 21,190,213,124,134,162, 40,144, 21, 5,163,142,233, 97,208,119, 29,142,251, 13,218,227,158,129, 47,116, 47, 58, 47, -209,168,126,178,199, 5,172,207, 81,207,230, 40,171, 10,188,129, 67,140,100,253,138, 41,177, 64,109,208, 52,180,209,163,238,212, - 77, 51,205, 39, 31,163, 55,211, 24,143,170, 93,248, 40,146, 37, 45, 13,139,254,236,232,255,181, 58,130,228,241,168,142, 81, 7, - 45,186,167,251,208, 24,131,118,235, 74,100,211,194, 95, 58,106,168,178,153, 86, 6,152,236, 88, 41,176, 69,108, 91,146,145, 32, -135,118,226, 84, 51,177,182,137,178,127,202, 87, 55, 19,177, 24, 5, 52,241, 94, 89,112,186,130, 66,150, 98, 64,230, 94,154,253, - 30, 25, 22, 3,238,146,221,196,238,102,238,104, 5,164, 80,112, 89,137, 44, 43,105, 92, 29, 39, 64, 32, 70, 93, 15, 67,224, 85, - 95,139,182,105,208, 53, 13,175, 95, 19, 51,127, 12,133,188,120,158,210,242, 33, 77, 43,213,145, 36, 7,195,127,167,165,176, 46, - 5, 2, 65,176,179,118,130, 74,149, 56, 92, 90,181, 38,213,122,141,112, 22,231, 61, 23,106, 78, 69,137,228,160,241,147,152, 82, -171,120,109,129,133, 57, 93,137,142,156,118,185,175, 50,118,207,216, 59,251,235,209,230, 76,231,246, 40,138, 27, 15,120,123,103, -202,132,127, 18,163,106,198,247, 36,254,121, 69,217,198, 59, 74,124,106,243,105,138, 43, 19, 73,250, 62,196, 59,135,185,238,206, -205, 36,224, 69,253,233,102,100,191,255,230,111,255, 22,239, 94, 95,227,195, 31,253, 20,159,252,232, 43,228, 69, 70,185,232, 76, -101, 35,249,189,129,207,189,242,130,229,208, 20, 17,128,149, 47,104,164,195,114,140, 5,138, 58, 42,151,156,118, 48,116, 37,240, - 14, 88,246,196,129, 15, 90,169,108,172,247, 35,124,223, 36, 92, 95,190,199, 97,223, 98,126,178,164, 3,138,173, 99,121,153,105, - 23,153,231,158, 21,190,172,148,231,220, 95,193,236, 73,199, 55,142,250,153, 45, 45, 41,102,144, 74,122, 96, 46,246, 6,161, 31, -176, 88, 46,176, 92, 45,177, 92,205,144, 23, 5,202,178, 64,150, 89,130, 98,192, 98,190, 92, 40,254, 86,132,105,211,232,156,130, -209,183, 50,130,151,247, 73,232,200,142,189,144, 70, 57,239,152,216, 8,179, 60, 83,136,197, 48, 68,116, 93,143,230,120,192,118, -179,197, 16, 19, 28, 71,192,150, 85, 5,239, 29,138, 34, 67,150,145,250,191, 44, 11,108,110,111,176,223,182,184,255,240,190, 50, -168,169, 58, 29,240,226,219,151,248,244, 7,159,177,255,158, 10,162,195,254, 0,107,105,175, 94,213, 5,202,138,220, 16, 36,118, -162, 7,144,247, 30,219,219, 61, 78,207,207,249,225, 7,120,142,191,140,113,192, 97,187,195,113,223,224,241, 71, 31,208,231,170, -185,196,212,113,149, 53,137, 19,135, 16,144, 21, 5,234,249, 2, 62, 35, 8,206,108, 49, 71, 86,228, 8,125, 64,219,180, 74,166, -210, 7,188,164, 3, 50,202,178,172, 74,166,231,229,152, 47,230, 24,134,128, 71, 31,127,138,118,191, 69, 53, 95, 0, 41,162,107, -104,242, 99,141,193,124,185,212, 93,172,207, 11, 28,182, 91, 60,120,250, 1,158,124,252, 20,251,205, 22,206,142,232,226,135,159, -127, 5,147, 2,170,146,127,126,177,132, 9,123, 28,118,123,180,189, 69, 55,148,200,125,196,229,119,191, 69,158, 83,183,177,186, -255, 8,117, 93, 96,253,254, 10, 93,219,168,255,181,235, 35, 62,251,209, 23,248,244,135,159,224, 63,254, 31,255, 30,255,245, 63, -254,191, 56, 30, 58,212, 39,103,120,243,205,175, 49,132,128,178,174,113,114,126,129,172, 40,104,196, 59, 12, 56,108, 55,232,187, - 6, 48, 14,229,108,133,139,199,159, 0,214, 99,253,246, 57,154,253,173,142,229, 96,196, 15, 12, 6,128, 24,206, 62,207, 8, 1, -221, 83, 30,119, 89,213,228, 46,201,105,117, 35, 20,193,190,235, 48,244, 45, 7,171, 48,210,153, 69, 95, 20, 21,236,212, 82, 68, -133, 43,121,152,229, 97, 30, 35,173,167, 14,251, 61, 91, 45, 3,142,251,157,118,101,162,146, 78, 83,252,169,238, 75,211, 36, 1, - 11,122,144,137,141, 85, 44, 88,100, 91, 28, 59, 45,233, 42, 33, 24,227, 36,194,192, 48, 18,212, 48, 62,248, 36, 61,139, 84,219, - 3, 98, 52,119, 58, 69,163,177,191, 73, 39, 12,162, 9, 16,129, 28, 96, 20, 22, 36,224, 32,231,172,218,232,164, 3,149, 2,198, - 58, 58,244,195, 32, 89,228,142, 59, 81,199,133,176,159, 64, 69,172,238,132,189, 47,232,255,179, 36,190, 27, 73,117, 52, 73, 38, - 6,189,209, 34, 74, 92, 14,129,237,101,202, 99, 23, 70,189,170,231, 35,188, 47,120,239,156,244,185, 36, 22,208,192,232,212,246, -120,196,230,102,141,221,237, 26,219,205, 45,118,155, 27,180, 77,131,208,245, 52,210,230,233,174,168,212,245, 61, 88,186, 38, 4, -237, 26,148, 46,103, 96,117,115,108,120,178, 39,122, 1,203, 36, 59,186, 79,104,215,111,156,191, 19,208, 66,110,145, 76, 53, 41, -114,200, 75, 8,140,192,168,202, 50, 87,181,185, 70,161,166, 49,131,160, 44,243, 81, 68,103, 70,148, 47, 20, 74,147, 38, 14, 12, -114, 41,137, 2, 93,136,151,114,160,203, 20, 88,181, 94,119,242,139,204, 29,109,131,153, 20,131,163,200, 51,142,197,172,181,227, -159, 72, 99,142,138,228,131, 72,163, 33,133,149, 76,196,193,250, 7, 59, 9,150,177,113, 8, 56,220, 94,225,235,191,255, 57,214, -239,110,240,241,143,126,130, 39,159,125, 76,222,241, 44,135,207, 41, 4,133, 84,128,228, 45, 55,214, 41,167,120, 10, 3, 32, 12, -161, 69, 26,198,189,129,177,134,192, 15, 60, 26, 52,188,235, 16, 49,155,124,145,197, 10, 70,222,238,209,187, 73,138, 81,122, 8, - 55,135,195,248,101, 50,227,120,122, 58, 21, 48,204, 16, 55,214, 42,133,142, 58, 5, 78,214, 1,112, 60,180, 58, 90,146, 34, 64, - 14, 97,159, 57, 13,115,112,142, 42,210,195,238,160, 9, 99,171,179, 37,138,170, 24,201,107,145,200,111, 5,119,203, 67, 24,208, -119,129,199,216,180,167,156, 66,100,218,166,159,164,185, 81,224, 4, 77, 36,162,126, 40, 33, 12,200, 11,207,156,109,175,227, 96, -200, 40, 52, 14, 56,114, 40, 73,215, 82,228,102, 94,208,161,150,229,185, 6,229,192, 88, 56,155,240,252,219, 23,120,240,248, 17, -170,186, 64,219,118,154,121,191, 89,175,113,179,222,224,243, 31,124,130, 20, 35,242, 34,199,233,217, 9,242, 60, 67,150,123, 84, -117,137,170, 46,148, 49, 63, 13,123,217,109,183, 88,157,159,177, 29,203,232,193, 29, 66,143,230,120,196,213,229,123,220,123,252, - 72, 31,184, 66,111, 34,107, 11,221,149,205,177, 67, 81, 21, 52, 14, 47, 74, 36, 24,228,101, 65,215, 35, 4,186,199, 56,145, 41, - 33,113, 96, 73,137,162,100, 48, 74, 89,192,121,135, 60,207,185,240, 44,208,181, 29, 46, 30,220, 67,215, 28,177, 56, 91,113,154, - 95,195,130, 59,139,106, 86, 35, 25,131,195,190, 65,223, 15,232,154, 3,254,252,127,250,215,248,213,127,253, 57,119,128,244,218, - 78, 31,127,132,114,182,132, 9, 59,132,190, 71, 86, 47,136,244,213, 28,112,108, 34,144, 45, 48,155,231,120,255,226, 91,196,161, -129,245, 57,138,106,134,178, 42,176,189, 89, 99,183,185,213,164,169,148, 12, 22,203, 5,254,229,191,250, 99,252,213,255,249,127, -227,197,239,191, 1, 82,194,233,195, 15,240,252, 87,127, 71,140,136,188,160, 64,156,154,172,107,161,239,177,189,185,198,113,191, - 71,130, 65, 81,205,112,241,244, 19, 12,209, 96,253,230, 59,116,199, 13, 92,150, 99,156,138, 10,163,154,191, 3, 62, 3,108, 6, -152, 12,214,121, 84,179, 37,138,170,166,209, 59,179,179,187,166,193,113,191, 71,223, 54,104, 15,123,206, 36,200,238,116,183,212, -225,114,160, 69,164,239,187,207,114,204,151, 75, 29,223, 43,202,148,187,194,182,105,209, 53,141, 6, 25,169, 45,139,195,120,198, - 17,232,212, 35, 60, 10, 96,101,170, 4, 30,173,219, 9,248, 73,184,217, 49,138,232,201,176, 24,112, 24,239,123, 46,116,162,100, - 90,167,120,135, 14, 22,135, 65,129, 57, 10,122,137, 99,114,220,152, 15, 14, 69,232,142, 86, 57, 9, 40,177,147, 46,152,161, 49, - 48, 58, 49, 28, 56,177, 76,224, 53,110, 50, 98, 78,172, 27,162,113,178,189,211, 69, 11,147, 62,166,177,155, 85,245,190,100,200, -243, 40,126,144,117, 10,135,200, 8,118, 85, 66, 86, 6,205, 46, 55,147, 85,101,129, 44, 47,212, 2, 12,227, 16, 6,154, 38, 18, -143, 62,162,109, 26, 28, 15,123,181,229, 38,158,132,118, 93,139, 33, 14,148, 44, 25, 35,235, 47,216,234, 37,193, 59,118,140, 88, -149, 73, 68, 76, 96,228,184,153, 56, 27,104,132, 79,148, 57,163,236,119,235, 60,188,207, 53,111, 30, 19,187,165,160,114, 37,201, - 77,108,190, 2,177,242,158, 44,134, 52,102, 39, 13,135,172, 27,166,209,204,244, 94,122, 14, 21,147, 80, 33,202, 19,145,169,137, -248,196,245,248, 77, 99,208,152,134,252,240,106, 17,152,142,198, 5,225, 58,174, 73,226, 16,121,133,113, 55, 9,117,154,113,162, -168,185, 9,215,125, 20, 57,114, 65,161, 59,253,201,207,211, 3,126,100,208,219, 16, 6, 85,108, 95,191,125,141, 95,255,205,223, - 96,253,110,141,199,159,127,134,178,170, 80,204,230, 84, 69,240,195,124, 24, 70,175,158, 84,117,242,191,173, 49,176, 24, 84, 68, - 23,250,128, 24, 6,173, 48,104,223,156,216,174,227,212,147, 71,201, 97, 1, 73, 70,239, 60,166,176, 76,150, 19, 21,168, 84,205, -178,235, 6, 64, 29, 18,191,193,190, 31, 88, 97,156,177,207,210,222, 65,203,146,186,156,148,189, 93, 75,113,122, 41, 69, 69,204, -250,204,145,186,220,143,204, 96, 26,237,208,131,138,162,250, 28,143,127,198, 80,138,208,117, 56,236, 14,168,231, 51,138,145,245, -227, 56, 80, 42, 66,233,194,141,165,245, 67,115,108, 16,250, 1,109,195,239, 61, 37, 58,240,141, 33,213,117, 50, 90,108,164, 4, -116, 60,150,151, 81, 91, 8, 1, 55,215,107, 85,191,139,104,112, 54,167,131,197,179,248, 45, 1,232,219, 61,214, 87, 91, 60,253, -232, 9, 98, 28,176,103, 32,198, 16, 7, 60,255,230, 25,202,122,134,139,251, 23,168,103, 21,238, 61, 56,199,124, 73,228,178,188, -204,225, 51,218,147, 58,173,166,169, 40,187,185,186,198,197,253,123,119, 99, 7,185,235, 75, 9,120,245,221, 75,212,243, 57,170, -186,166,107,193, 95,232,230,120, 84, 81, 30,169,149, 13,119,166, 64, 81,228,152, 45,102,112,206,226,120, 56,242,231, 75,226,162, -170, 94,160,172,201, 50,229,179,156, 68,113, 76, 19,164,181,134, 71, 81, 21, 40,234, 25,156, 25, 48, 63, 89,226,228,236, 4,135, -221, 1,251,205, 45, 66,215,162, 40,107,228, 69,129,227, 97, 15, 24,139,238,216,224,127,248,243, 63,192,205,229, 59,116, 77,131, -190,235, 16,250,128,249,234, 20,103,143, 63, 68,236, 14, 24,250, 14, 62,207,112,236, 12, 98,187,197,118,115,128,201, 87,216, 92, - 95, 99, 57,207,241,230,219,223,192, 57,143,106,190,194,226,100,134,161,111,113,123,189,102, 43,234,104,109,249,217,159,255,119, -120,246,171,223,226,187,223,252, 6,206,123,124,240,213,207,240,236, 23, 63,167,189, 63,227,101, 13, 39, 79, 33, 6,236,110,174, -169,211,231, 14,229,226,241, 71,128,241,184,185,124,142,227,254,134, 15,183, 73,202, 21, 11,102,200,135, 94, 34,153,130, 8,145, - 62,195,226,244,140,252,198,236, 23, 15,161, 67,123, 60,208,174,126,183, 69,123, 60,106,154, 88, 76, 20, 44, 45, 54, 74, 43,239, -129,139, 19,227, 50, 84,243, 5,242,178, 98, 59,145,227,251,146,133, 95,145,138,239,208,247, 19, 12,174,209,195, 75, 20,192,164, - 47, 8,186,155,135,225,133,158,216,253, 68,175,193, 2, 54,217, 81, 70, 94,243, 25,200,222, 28, 42,226, 26,152,175, 32,226, 37, -207, 58,152,105,216, 71,210, 20,182,168, 29,179,102, 64, 76,187,180, 56,140,204,117, 46, 88,123, 70,184, 10, 2,215, 50,130,116, -138,239, 28,134, 4,227, 50,210,123,128,104,119, 10,138,225,209,186,216,117, 5, 10, 35,150, 70,217,245, 83, 71, 13, 61, 24, 1, -135, 40, 24, 94,235,152,153,207, 8,213,105, 90, 92,154, 4,222, 24,167,135,226,184,215, 53, 28, 45,235,117, 79, 63,200,243, 25, -146,104, 22, 88, 80,219, 17,212, 70, 14, 51,118,249,132,174, 85,181,248,116,220, 45,158,114, 42, 24,173,254,154,248,227,165, 1, -179,214,114,240, 13,148,249, 46,233,100,150, 63,235, 48, 12,148,141, 46, 83, 94, 65,211,194, 32,207,115,229,150, 72, 10,168,120, -253,197,138,109,140, 65,158,101,186,218,165,105,103, 36,250,168,157,234, 52,134,137, 74, 29,163,253, 6,105,116, 75,176, 11,194, - 59,167,228,203,105,182,121,156,252,127,224, 76,121, 35, 90, 13, 35, 92, 13, 78,126, 75,227, 84,202,240,150, 73, 28, 25,170,128, - 23,247,133, 4,189, 24,171,223, 91, 76, 60,240,246,206,142,125,186,115, 7,172,230, 5,135,128,208,247,136, 49,225,253,235, 87, -248,237,223,253, 2, 23, 79,159, 96,117,239, 2,174,168,244,133, 15, 2,109, 24, 48,217,109, 11,238,207,170, 82,217,241,188, 32, -240,223,155, 18,237, 80, 9,239,200,135,117,226, 52, 55, 5,236, 59, 22,206, 57, 61,244, 53,138,153, 69,112, 93,211, 2,198,161, -168, 74, 88,107,209,117,189, 42,196,203, 42,103, 26, 89,134, 33, 8,122,212,161,172,242, 17,194,194,212,184,255,159,173,247,234, -177, 44,201,178,244,150,169, 35,174,114, 45, 67,101,100, 70,164, 46,209,138, 61, 67,206,144, 47, 3,240,141, 0,255,209,252,167, - 1,248, 64,144, 28, 2,100,163, 85,117, 87, 87,117,102,167, 12,149, 33, 60,194,181,251, 21, 71,152,154,135,189,205,206,245, 34, -251,165, 26, 89, 89, 17,238,247,158, 99,182,197, 90,223, 74,162, 32,165, 6, 95, 98,100,155, 69,190,208,141,206, 66,184,122, 84, - 98, 52,169,208, 49,237,173, 40, 13,198,211, 49, 89, 49,172,131,237,122, 92, 93,220, 16, 46,180, 44,104, 21, 32, 68, 22, 71, 57, - 75, 99,232,224, 9, 68,211, 91, 55,120,212,215, 40,115,158,109, 48, 97,205,147,154,166, 30,142,213,231,201,162, 18, 60,225, 86, -187,182,103, 79, 35, 61,228, 69, 89,241,195,128, 28,237,122,242,246, 45, 70,147, 25,118,246,182, 32,133, 32,241, 93,223, 99,181, - 88,226,197, 79, 47,241,235,191,250, 53, 30, 61,190,143,237,189, 45,108,110,207,242, 88, 39,230, 16,159,114,152, 20, 32,162, 89, -206, 49,219,218,204,149,173,228,240,143,209,168,134,210, 10,205,114,142,174,105,177,127,239, 40,199, 28, 18,181,207, 82, 26, 87, -111, 73, 20,233, 3,202,170,132,102,209, 81, 85, 87, 89,119, 80,150, 5,148, 54, 12, 19,170,134,130,173, 40,242,232, 75,177, 98, - 63, 68,138,119,221,220,219,195,234,246, 6,179,157, 93,194, 61, 74,129, 15,111,223, 35,132,128,209,100,130,174,235, 49,191,190, -198,100, 99,134,178,210,144,251, 59,120,243,236, 25,138,122,132,174,109, 80,141,199, 56,252,228,115, 74,255,187, 57,135, 41, 43, -116,173,135,136, 22,139,219, 91,152,241, 14,206,222,189,197,227,207, 30,227,244,245, 79,144, 74, 97,247,222, 71,168,103,155, 40, - 75,131,249,237,146, 59, 20, 77,248, 85,161,176,181,191,135,157,253,109,252,241,239,254, 17, 0,240,248,235, 63,195,201,243, 31, -208,173,110,161,180,193,230,238, 62, 74,190, 36, 17, 61,174, 47,174,208, 54, 43, 4,239,160,181,193,254,253,143, 81,212, 35, 92, -159,190,197,106,113,189,150, 58,198, 16,146, 60,186, 38, 11,162,169,102, 80,166,192,104, 58,195,100, 99,147,187, 90,141, 16, 60, -133,239,204, 23,232,219, 21, 86,139,249, 16,108,196,151,184, 50, 21, 83,202,134,149, 79, 96, 11,210,104, 50, 65, 61,158,193,152, -138,220, 32, 44, 50,237,251,192, 32, 37,139,197, 13, 9, 18,215,129, 46,136,107,249,218,252, 12, 57,231,178, 16, 8,107,148,242, - 97,215,202, 76,107, 69,137,117,169, 75,202,214, 44, 53, 0,103,178,211,117, 8, 87,200, 43, 37,178, 0,249,236,251, 22, 24, 96, - 47,113, 45, 98, 84,200,180, 91,231,177,106,194,216,242, 8,215,242,187, 71, 93,180,200,123,238,228,125,102,127, 17,217,238, 50, - 49,146,241,169, 90,223,233,192,157,143,107,133, 78, 96, 49,153,206,108,124, 90, 7,208,200, 93, 72, 34,254,229,213, 74, 28,210, -225, 72, 84, 86, 12, 78,155, 20,231,153,196,123, 57,124,134,233,111, 72,241,214,100, 21, 75, 26,130,245,196, 50,234,216, 59,230, - 26, 8,166,215, 5, 88,107,243,196,212, 59,151,195,161, 8,202, 19, 50,207,162,107,187,188, 54,137, 49, 50,216, 74,228, 34, 35, - 97,106, 99, 96,253, 65,138, 67,229,162, 43, 89,144,147, 91, 32,253,239,180,150,217,133,180,110,127, 5, 51, 19, 12,219,241,214, -191,147,180, 51,167,245, 17, 77,155, 83,102,121,138,255, 70, 12,153,133, 79,157,124,200,187,245,132,238,213, 74,229, 93,122, 90, - 3,202,181,194,101, 24,157,199, 44,186, 20,195, 78,236, 14, 68, 38, 93,207,201,178, 56, 4,193,172,141,236,227, 16,205,157,239, - 63, 49, 8, 67,177,166, 63, 17,235, 34,191, 20,115, 77,151, 90,204,194,163,224,201, 30,129,208,227,229, 15,207,240,224,201, 71, -112,125,143,247,175, 94,193,247, 93,190,140,177,198,178, 37, 33, 24, 97, 89,109,111,105, 31,206, 74, 85, 33, 73,184, 22, 84,128, - 50,124,153,115, 5, 29,179, 87,215,100, 85,160, 54, 26, 33, 10,174,112, 98,190,212,210,232, 62,176,239, 16, 66, 13,118, 56, 86, -191,211, 78,139,254,127, 93,168, 33, 96,128,115,206,165, 32, 12,160,203,249,219,130,193, 6, 50, 67,253, 6, 96, 65,200, 2, 13, - 83, 24,152,194,192,246, 84,244, 8, 15,116, 33,160,231,221,213,214,238, 38,110,174,110,209, 53, 61,230,215,115, 20, 85,141,162, - 42, 17, 86, 52, 30,119, 28, 67, 74, 49,151, 92, 84, 68, 74, 31, 11,126,224,173,139,232, 51, 90, 85,105,147,117, 7,182,183,156, -124, 23, 56,100,197, 15,226, 29, 79, 5,138,245,142, 97, 12, 10,198,136, 97,100,173,168,104, 64,116,248,240,238, 28,247, 63,122, -128,155,171, 27,244,109, 15,169, 4,182,182,103,168, 42, 34,135,125,244,233, 71,184,185,188, 30, 58, 41, 94, 29, 88,235,242,170, - 69, 73, 58, 4,187,174,205,180, 48,186,136,147,106, 93,229,191,251,228,245, 9,182,246,246,241,238,213, 27, 72,182, 74,218,206, -102,180,112, 26,129, 87,163, 17,148, 49, 40,138, 2,179,173, 25,148,146,104,155,150,254, 89, 36, 59, 72, 89, 86, 44, 72,162,104, - 66,201,121,243, 33,198,172,140,174,235, 10,163,113,137,110, 14,152,170,102, 80,143,195,252,230, 6, 85, 77,138,247,229,146,192, - 52, 91, 59,155, 56,186,183,133,239,254,241,119, 84,180,141,199,240,221, 2, 7, 31, 61, 33, 71,129, 6,100, 77, 52,189,182,245, -152, 95,156, 66, 22, 51, 52, 77,135,253,163, 67, 28,221,219, 66,119, 59,193,195, 79,191,192,120,115, 15,245,116,130,155,211,119, - 24,207, 54, 81, 84, 99,138,211,100, 1,233,159,253,135,127,143,111,254,225,247,232,219, 21, 30,126,241,103,184, 62,125,143,249, -213, 25,234,209, 24,219,251, 7,208,166, 36,138, 88,223,224,234,252,130, 5,164, 84, 92,238, 28,221,135,212, 5,206,223,189, 65, -179,184,226,192,165,152, 15, 71, 41, 53,188,239,249, 66, 23, 48,229, 8,186, 40, 49,154,110, 16,228,201, 5,140, 38, 99, 4,158, -146,216,174,129,237,104, 58, 0, 49,164,121,105, 99,136,106,152, 64, 31,222,193,121,222, 73, 11,160,172, 71, 48, 76,154, 84,154, -194, 78,164, 50,112,222,193, 59, 11,219,183,232,218, 21, 49,229,185,115, 21,107, 1, 30,217, 22, 20, 40, 76, 71, 74,205,227,212, -176, 38, 28, 26,162, 42,115, 7,186,182, 67,244, 33,237,246, 61, 4,244,157, 2, 55,230,115,130, 71,243,146,196, 86, 1, 52,189, -179,182,207, 63, 3, 33,122, 99,102,101, 40, 14, 52, 18, 12, 58, 25, 98, 53, 3,239,233,233,159, 57,239, 33,133,102,239,118,186, -216,233, 52, 85, 76,130, 75, 89,235, 57,130,118, 13, 83,138,181,242,197, 59,207,158,124,153,131,140,104,253,103, 96,251, 30, 82, -166,188,110,182,150, 41,195, 26,160, 97, 37,146, 62,152,148,193,144,206,229,116, 81,122, 31,233, 66, 74,209,198,140, 1,167,209, -191,135,224,239,146,138,175,192,225, 73, 61,188,117,153,218, 72,226,101,166,231,249,176,150,216, 73,176, 49,114, 72,197, 44,114, -214,166, 96,239,116,204,122,155,236, 64, 98,250, 89, 76,250,161,152,172,209,200, 48,165, 20, 60, 67, 43,189,193, 51, 15, 80,152, - 86,136,130, 68,192,214,195, 20, 5,179, 24,210, 4,134, 46,241,158, 87,197,137, 5,175,181,162, 85,130, 34,183, 69, 81,104,216, -158, 82,241,214,121,248,113, 45,141, 45, 70,122,134,146, 61, 82,172, 33, 93, 37, 35,140,101, 22,242,197, 76, 75, 76,216,237,124, -201,175, 37, 13, 82,162,169,200,249,236, 67,104,218,176,170, 78,126,247, 4,177, 17,107, 69, 99,250,167,128, 92,139,122, 5, 11, -234, 6,122,172,166,224,117,178,129, 37,234, 82,250,144,186,213, 2, 39, 47, 94, 99,255,225,125,244,109,139,247, 47, 95,229,145, - 8, 34, 65, 40,188,179,121,204,221,247,164,146, 23,201, 82, 34, 34, 98,224,138, 50, 49,219, 5, 67,239,163,204,152, 63,250, 69, - 35, 63, 36, 18,129, 35, 77, 37, 51,230, 29, 71,155, 18,225,135, 82,149,138, 82,163,239, 58,218, 55, 27,149, 47,116,242, 78,175, -115,117,217, 39, 27, 34,154,174,207, 69, 2,253, 12, 17,166, 80,121,239,145,202,158, 16, 34,138,162, 64, 81, 25,174,198,214, 14, -139,148, 6,215,244,112,158,148,233,151,139, 64, 57,235, 69,137,118,213, 98,181,152, 67,233, 18,213,168, 70,195,145,174,105,156, - 99,173, 37,254,116, 71,121,202,130,133,123,206,250, 60,177, 48,172, 99,144, 66,240,131,135, 97,132, 31,227, 90,212, 40, 61, 40, - 10,196, 72,143, 81,228,139,213, 24,170,232,150,139, 62,143,148,174, 46,206,112,112,188,139,131,227, 67,204,175,175,161,141,194, -104, 84, 97, 60,169,113,121,118,142,195,251, 7,180, 19, 95, 54,104,155, 30, 55,215,139, 12, 93, 16, 82, 66, 25,131, 64, 11,182, -108, 39, 57,126,112,156, 19,143, 98, 32, 91, 99, 26, 41,189,121,249, 26,127,245, 31,255, 26,101, 93, 1, 81, 2,188,103,236,154, -142, 70,250,108,195,171,234,154,173, 80,138,118,222,124,105, 81,200, 15,137, 54,149, 46,160,248, 37, 77, 93, 17,191, 41, 60, 89, -209,152,108,109,226,246,244, 29,182,247,119, 81, 20, 5,108,111, 73,236,232, 61, 54,102, 83,132,232,177,184,190,194,253,167, 95, -224,248,225, 1, 22, 23, 31,176,154,207, 1, 8, 34,219,105,129,237,195, 67,248,118, 5, 4, 1,101, 52, 60, 12, 16,110,177,177, -127,132, 85, 35,176, 61,113,120,244,228, 33, 94,255,244, 3,108,223, 99, 52,219,130, 82, 2, 55,151, 87,184, 62,191, 96,224, 9, -216, 41, 81, 96,255,248, 0,218, 40, 44,110,174,241,248,235,191, 64, 8,192,242,230, 18,155, 59,187, 24,111,108,240, 5, 3,248, -190,197,237,213, 21, 93,138, 76,220,218, 57, 60, 66, 57, 26,227,244,205, 47,104, 87, 55,236, 93,229,125, 98,112,185,200, 85,186, -132,247, 2, 82,143, 49,154,110, 96,182,189, 13,231,105,159, 88, 79, 70, 8,222,194,182, 13, 86,243, 27,180,203, 57, 31, 64, 99, - 84,163, 17, 98, 20,176, 61, 49,255,169, 75, 4,188, 35, 92,106,138, 27, 29, 77, 24, 11, 42,152,154, 40,201,234,218, 55, 29,229, -128,219,158, 46,244,190, 31, 50,198,243,232, 61, 34,250,245,125,181,229,110, 38,102, 24, 74,136,233,224, 84,108, 25,162, 75, 66, - 43,189, 6, 35,145, 80, 66, 66, 40,149, 59,167, 36,186, 74,150, 56,107, 45,121,193,163, 37,216,146,214, 16, 30,249, 61, 67,162, -206, 5, 34,156, 73, 17,115,236, 48,217, 96,197,154,184,139, 24,219,217,187,207,171,249, 32, 35, 95,252,236, 89, 15, 33,135,173, - 36,189, 9,130,224, 49,121, 24,172, 79,105,180,207, 92, 5,239,237, 16, 14,194, 93,125, 12, 1, 93,103,239,236,239,137, 60, 72, -190,115, 18,125,101,185,217,176,131,167, 50, 33,239,167, 67, 0,162, 15,140, 21,142,121,178, 76,207,154,100,241,160, 26,136,106, - 66, 16,252, 39, 82, 6,136, 72, 5, 10,167,176,145,247,157, 3,107, 4, 24, 44, 19, 51, 63, 61,239,153, 25, 69,156,224, 49,235, -252,128,117, 94,127,250,204, 16,147,107,192,221,217,153, 43,169,192, 30,134,220,229, 82, 83, 38, 17,125,128, 7, 5, 99, 73,153, -158, 71,149,207, 11,228,139, 48,228, 46, 54,248,144,155,178,190,119,148, 96,153, 59,102,106,246, 60, 23, 18, 84, 67, 9, 40, 33, - 97,109,127, 39, 51,157,210, 0, 49, 20, 90, 25,111,158,178, 82,116, 14,106, 73,123,161,245, 48, 29,121, 71, 79,194, 20,204,204, - 91, 88, 23,215,197,187,154, 19,196,187, 49,173,217,226,150,126, 7,113,135, 7,175,211,136,118,253,162,240,206, 33, 68,129,162, -170,208,119, 13,206,223,189, 71,189,177,139,209,236, 10,203,155, 27,230, 39,139,156,234,149,196, 50, 80, 68, 15,242, 28,201, 26, -229, 96, 63,176,157,131,169,146, 48, 65,172,249,187,105,108,164, 37,241,211,251,206, 18,190,147,187, 69,173,117,174,238, 18, 78, - 50,129,101, 36, 43,214,109,239, 81,177,160, 75, 41, 69, 86,139,128, 44,184,147, 82, 34,136, 0, 33,129,190,181, 76, 63,115, 40, - 75,205, 23, 8,131, 55, 0, 98,254,114,104,139, 0,169,246, 43,238,216, 84, 36, 33, 93,219,244,172,220,167,241,147,237, 41,245, - 74,155, 2, 69, 85,161,170, 43, 92, 93,220,160,109, 90,140,167, 83,180, 77,131,155,203,219,188, 79,143,107,228,164,224,147,122, - 87, 48,247, 92,102,117,105,215, 90,104, 77, 29,253,112, 40,200,204,178,214,236,109, 87,129,128,254, 93,215,101,150,190, 82, 10, -245,168, 2, 16,176,152,207,233,223, 87, 1, 87,231,151,248,252,215,159,226,249,119, 63,194, 57,143,146, 73,114, 69,105,240,238, -213, 91, 60,248,248, 1,158,159, 63,195,135,119,103, 88,204, 87,240, 94,162,170, 43, 52,141,165, 42, 60,120,148, 85,129,170,170, -209, 54, 61,118, 15,246,113,125,121, 13,192, 82,104,102, 4, 41,250,189,195,106,113, 3,219, 91, 76, 54, 54,176,184,153,211,247, - 99,106, 0, 17,227,217,140,124,250,206, 99,186, 49,133,179, 30,101, 77,208,161,174,233,120, 39, 43, 50, 61, 76, 27, 26, 97, 42, -102, 25, 40,185, 22,191, 26, 3,164, 54, 24,141, 42,188,191,189,197,189,199,143,104,149, 20,129,179,147,247, 24,141,198, 80, 70, - 97,126,115,139,237,221, 29,220,123,244, 0,193,245,120,251,252, 21,192, 10,219,122, 50,198,116,251, 33,154,235, 51,148,147, 77, -196,208,194, 7,133,241,230, 20,101, 1, 44,155,136,224, 46,176,185,183,131,179,215, 47,241,226,187,111, 48,217,220, 69, 57,158, - 97,113,115,131,219,155, 21,174,206,222,115, 50,150,132, 49,164,141,120,240,228,175,241,237, 63,252, 35,198,155,123,208, 69,141, -211, 87, 63, 97,107,111, 23,245,120,194,187,205,128,118,113,139,171,179, 83,216,190, 99,130, 97,196,246,193, 17,170,201, 6, 46, - 79, 94, 99,117,115, 65,239, 0,175,137,146,253,207, 89, 71,221,178, 11, 16,186,194,100, 99, 11,211,205,109,248, 64, 69,109, 81, - 27, 4,215,161,111, 86, 88, 45,110,209,173,150,104,155,134, 46, 30,105,200,163,204, 32,168,156,140,197,201, 83,186, 40, 17, 3, -165,222,145,234,152, 15, 80,165,209,245, 36, 98,116, 46,160,109, 86,204,157,224,213, 16,200,161, 16, 17, 6,158,181, 12, 28,202, - 17,214,124,218, 60,250,245,158,161, 86, 18, 2, 58,175, 21,180, 46,243,222, 53, 35, 51,213,176, 35, 38, 65,169, 99, 16,145, 29, -108, 70,136,156, 59, 48,160, 86,179, 56,139,145,215,224,213, 20,237,179, 99,222,207, 15, 34, 41,220, 21, 41, 37, 69,254, 90,162, - 87, 58,116,135,172,107, 22, 89,113, 66, 27, 57,106,232,217, 76,197, 87,226, 6, 80,147, 96,224,189,165,137,194,154, 86,128, 72, -138, 52,157, 32,194, 31,216, 79, 77,103,234,224,239,142,119,216,225, 57, 87, 33,167,153, 9,214, 5,112,209,107,200, 43,159, 34, -101,149, 24,252,215, 89, 20,201, 84, 59,173,210,184, 30, 16, 50,230,116, 76, 34,110, 90, 8, 17, 6,160,163, 84, 89,164,152, 58, -215,176, 6,252,201, 98,230,212, 17,175, 9,156, 83,247,171,180, 25,156, 79,224, 2,131,163,100,137, 98,233, 89, 72, 45, 33,139, -193,251, 78,122, 40,195,122,133,244,252,250, 33, 58,186,208,232,186, 46,115, 65, 4, 64, 49,224,158,213,228,136,208, 74, 2,145, -244, 61,224, 66, 32,237,232, 83,180,179,227,117, 67,246, 69, 8,153,185, 8,119,215, 62,169,195, 23,121, 18,164,148,228,149,227, -176, 51, 72,163,120, 40,149, 3,207,210,119, 40,214,198,245,105, 18, 77,223,247,240,238, 15, 84,205,136,152, 56,243,224,137, 0, - 0,173,180,132,128,202,152, 82,170,156, 3, 20,251,230,218, 85, 67,157,175, 46,177,115,124,143, 5, 69, 54,143,117,165,214,156, - 95, 45,152,209,141,129,241,156, 1,251,226, 78,186,209,160, 30, 92, 31,175, 12, 41, 54,222, 81, 24, 69,226,245, 14,123,191, 65, -241, 71,187, 84, 98,188, 67,200, 1,216, 34,233,207,245, 33, 16,226,207, 13,182,151,244,225, 41, 37,161,234,130, 68, 45,130,129, - 21,129,186,118, 99, 76,190,104,165, 26,128,255,244,176,243,223, 23, 57, 81, 12,233,203,167,221,126,223, 45,113,123,189,132, 80, - 26,179,141, 9,132,240, 56,125,119,129,241,108, 19, 82, 74, 92,156, 94,230, 3,195, 90,155,127,174, 52,110,162,203, 92,177, 61, -200,179, 7, 53,102,209, 80, 74, 76, 83, 28, 82, 19, 2, 5,119,244, 29,127, 15,206,163,107, 91,232,201, 36, 87,201, 85, 93,177, -205, 35, 97, 39,123,196, 40,113,120,255, 16, 31,222,126,200,123,124,219, 83, 24,201,203,159,223, 96, 52,153, 96,181,248, 5,203, -249, 18,101, 61,230, 44,247, 10, 82,148,144, 98,140,186, 38,171, 99,179, 92, 97, 60,157,224,242,236,146,130, 78,218, 6,109,211, - 96,107,159,217,224,193,227,252,195, 57,142, 31,222,199,203, 31,159, 81,172, 32,187, 14,198,147, 9,122, 75, 69,214,120, 58,130, -210,196, 21, 48, 69,129,197,205,156, 14,168,130,180, 16, 82,202,236,111,149, 50,146,255,151, 87, 63,218, 40,216,182, 69, 81,214, -232, 87,115, 76, 54,102, 16, 82,162,109, 58, 68, 14, 98,216,222,221,192,106,213, 96, 52, 42,177,115,112,136,163, 71,247, 96,219, -134, 8, 96, 82, 32,170, 10,219, 7, 7,232, 87, 11, 52,171, 30,147, 45, 1,219, 68,108,238,237,145,198,228,186,195,235,103,207, -225,251, 21,118, 15,119,241,111,191,251, 71, 72,173, 49,222,220, 69,116, 61, 86,141, 71,179, 88,176, 26,151,158, 41,215, 6, 28, -222,251, 24,203,171,115, 44,231, 75,140, 55,247,241,226,155,223, 97,107,119, 23,229,104,130,200, 7,175,237, 45,154,101, 3, 93, -140, 72,205, 30, 61, 54,246, 14, 48,154,109,225,252,228, 45,230,215, 23,217, 37, 34, 57,170, 56,132,158, 31, 6,137, 40, 12,138, -209, 8, 91,187, 59, 48,229, 40, 95, 46, 85,101,208, 53, 45,154,197, 45, 86,243,107,178,141,242, 26,136,152, 13,150,108,147, 50, - 32,138, 20, 43,201,227,111, 37, 80, 23, 99,212,163, 17,119,127, 76,190, 19, 10,125,239,209,247,196,162,104,155, 37,162, 31,252, -203, 66, 26, 14, 90, 18, 67, 78,182, 92,203, 93,224, 67, 93,164, 46, 44, 6,242,231, 34, 81,238, 2,239, 79, 75, 58, 80,243, 14, - 83,173, 37,244,197, 28,182, 34,153,235, 45,214, 25,218,105,192,157, 34,162,227, 48,125, 36,234,104,204,177,154,116,113, 71, 8, - 21,215, 44, 75, 88,219,191,179, 11,134, 47,179,116, 70,105, 41, 88,160,197, 72,212, 72,144,155,176, 14, 36, 97,124,103,228, 11, - 62,179,237,215,236, 73,233,172, 77,222,123,103,187, 76, 95,203,197,133, 0,130, 11,208, 60,209, 33, 98,160, 26, 4, 93,204, 78, -149,140,202, 14,124, 70, 12, 43,186, 84, 24, 23,131,151, 92,144, 91, 37,101,247,209, 25, 73,208, 33, 41, 37,156, 31, 4,138, 33, -196, 44, 70, 12,158, 86,171, 84,172,196,140, 13,167,248,211,181,212, 48,165,224,172,103,216,150, 96,170, 40, 53, 35,133, 41, 24, -141, 75, 2,215,188,234,228,239, 43,237,223,147,171, 41, 35,124, 35, 53, 0, 90, 83, 3, 41,148,206, 83, 21, 41, 5, 4,139,212, - 72,155, 37,216,240, 48,140,178,165, 0,132,150, 8,189,207, 69,153,214, 10,203, 37,145, 74, 53, 79, 65,165,212,232,251,142,167, -204, 88,155, 40,201,172,187, 66, 28,246,226,226,142, 47,125,125,106, 33,178, 94, 43, 61,187,105,100,159, 38, 4,145, 1,100, 73, - 9, 47, 98,190,170,241,167,255,151,196,198, 67, 17, 17,239,168,230,215, 39, 19,218, 24,234,142, 13,239,212,140, 81,104,219,142, -246, 80, 61, 7,140, 88, 11,204,175, 49,219, 59,192,198,206, 14,110, 47, 47,184, 2,228,202, 67, 27,126, 17,192,187, 97,222,191, -240,200,221,251, 0,197,163, 59,197,220,104,150,236, 13, 47,134,247,208,236, 67,244, 62,174, 37,119, 37,165, 34,117, 17,101, 93, -228, 63, 51, 61,252, 69, 97,214, 66,104,232, 3, 44,149,225,228, 50, 2,198,216,222,194, 90, 63,132, 49, 8,129, 24, 44,179,146, - 5,234,186, 96, 59, 28,141,215,211, 11, 81,148,100,191, 35,210, 27, 9, 70,172,165,128,154,190,163, 60,116,193, 92,107,122,169, -129,213, 98,137,158, 67, 67,118, 14,118,112,123,117,131,106, 52,193,209,253, 2,175, 95,188, 65,219,246, 89,109,155, 46,246,166, -233, 88,176, 67, 49,180, 54,120, 8,132,188,155,213, 58, 37, 15, 81, 70,187,247,158, 34,100, 13,137, 73,108,239, 97, 76,193,227, - 55, 26, 55,105, 67, 2, 19, 74,141,115,153,177,127,250,238, 3, 30, 63,125,128,211,147, 83, 44,110,151,156,187, 30,176,152,175, - 0, 92,224,254,227,199,152,109,206,112,117,121, 13,101, 45,202,170,196,214,206, 54,180, 2,154,229, 60,179,193, 47,207,207,241, -233,151, 31,227,246,230,134,227, 68, 53, 97, 95,149, 66, 61, 26,193,118, 45,174,207,207,113,252,232, 55,152,204, 78,225,122, 7, -207,160,148,122, 50, 66,127,185, 66,136, 1,101, 61,202, 83,136,228, 52, 0,235, 40,146,103, 88, 27,178, 4, 57,235, 32, 69,200, - 14, 7,178, 90,134,156,149,190,119,239, 8,182,107, 17,163,196,106,177,192,198,230, 12,182,239,128, 24, 49,219,156, 97,255,193, - 67,196,224, 72, 1, 31, 35,172,243, 56,254,232, 35, 0,192,242,234, 28,147,173, 61,136, 96, 49,219,221,133,136, 22,203, 38,226, -231,111,127,192,252,226, 45,254,242,127,250, 15,120,243,211,247,112,206, 97,247,240, 17,234,138,216,239,171,142, 98, 91,173,243, -208, 74, 65, 10,194,208,126,242,245,151,248,233, 15,127,192,193,163, 39,248,249,247,255, 47,102,155,219, 16, 74,161, 93, 46, 32, -165,192,245,114,201,122, 0, 58,248,140, 25, 97, 99,119, 15,229,104,140,139,247, 39, 88, 92,157, 83,247,203, 93, 8,214, 34, 84, -163, 16,144,166, 64, 53,222,194,246,193, 94,230,231, 39, 11,208,106, 62,199,106,126,141,190, 93,162,103,139,101,207, 73, 89,206, -245, 16,210, 64, 23,150, 56,238, 9, 78,194, 24,214,228,253,143,222,195, 57, 75, 69, 38,139, 81, 73,248,218,195,245, 45,108,215, -178, 98,153, 14, 42,207,226, 55,239, 66,246,151,131,211,196,136,159,237,249,231, 27, 38,116, 67,118,180,228, 14, 51,121,178, 19, - 96,104, 45, 95, 34, 29,174, 33, 14,190,252, 96, 51, 24,134,206, 15,153, 45, 87,137, 37,158, 70,252,220,204,220,241,191,167,203, - 92,170,100, 85, 75, 93,186, 67,100,245,177, 15, 97, 16,102,101,207,119, 74, 15,211,185,232, 72, 19,132,100,237,114, 54, 12,129, - 74,113,200, 88,143,108, 11, 75,251,220, 92, 76, 9, 18,125,210,207, 35, 25, 75,203, 33, 52, 60, 69, 72,106,250,132, 55,141, 34, -230, 41, 66,186, 52,188,227, 9, 0, 79, 9,124, 10,169, 9,228, 58,162,207,113,176,235, 73,206, 34,160,253, 49,119,249, 50, 65, -102, 72,151,148,121, 25, 33, 32, 4,153, 3, 89,180, 81, 96,247,216,157, 2,204, 20,154,173,172,158, 21,249,124, 33,199,144,127, -150,129, 89, 79,239,185, 46, 43, 22, 13,115,241,195, 66,202, 32,134,156,114, 68, 34,124, 2, 34,195,101, 82,145,146,172,113,138, -225, 53, 33,143,212,125, 14,248,162,203, 22, 8,158, 27, 63,163,208,117, 61,148, 18,128, 7,143, 95, 0,151, 0, 0, 32, 0, 73, - 68, 65, 84, 44, 55,183,129,215, 47, 49,172,161,201,105,100, 67,129, 57, 73,181,206, 63,151, 92,239,166,211,165,155,199,236, 33, - 79, 53, 82,209,152,213,254, 97, 16,234, 65,252,127, 39, 65,105, 98,189,206,139,143, 57, 63,253,255,255,242,215,193,147, 63, 57, - 9,229,210,184, 38,184,158,191, 56, 15, 21, 60,164,136,232,219, 6,227,157, 67,172,230,115,120,215,242, 11, 76,156, 99,193,130, - 15,109, 20, 44, 36,148, 24,224,247, 66,166,189,146,204,138, 75, 83,168, 65,253,201,190, 78, 18,111,200,172, 8, 36,204,108, 64, - 81,146,111,218,148,134,153,201, 36,247,247,184,155,144, 3,182,181,145, 39,209,231,106,214,246,142,237,110, 98,205,102,150, 72, -103,195,190, 35, 77, 5,138, 82, 15,105, 78, 28,234, 66,172,246, 14,182,247,195,139, 31, 61, 31, 34, 44, 40,235, 93,222,231,216, -222, 99,113,187,192,251,183, 30, 91, 59,219,152,110, 84,104, 91,137,163, 7,199,120,249,211,115, 2,171, 36,166,111, 14, 88,160, -159, 95,165, 12, 93, 41,160,162,128, 44,139, 28, 29, 40,249, 69,204, 94, 80, 22,159,152,194,228,212,184,241,100, 4, 41,129,170, - 46, 81, 85, 5, 7,161, 4,172, 22, 13,250,190,195,252,250, 10, 31, 78,198,216,216,218,194,245,229, 13, 86,203,134, 62,107,231, - 48, 26,143,240,226,199,231,120,250,213, 19,188,123,125,130,209,184,196,246,238, 54,135,188,180, 16,240,184,189,190,198,252,230, - 54, 11,120,138,162,192,104, 92,101,165,116, 85,151,112,147, 49,186,102,133,102,181, 66, 8, 17,227,233, 4,139,155, 69,182,113, -212,227, 17,110,174, 26,216,206, 81,165, 47, 64,157,186,214,232,218,158, 31,122, 58, 4,138,138,126,127,205,185,247, 96, 81, 74, - 34,232, 5, 8,168,178, 70,215,222, 98,188, 49,197,226,250, 6,213,100,131,198,244, 90, 34, 4,133,201,184,194,108,123, 11,213, -100,138,110,213, 32,186, 22, 77,211, 96,178,189,143,217,206, 14,154,235,115,168,178,198,100, 86, 67, 0, 88,221, 92,226,242,114, -133,213,202, 97, 53,191,194,238,193, 30, 38,147, 18,223,253,253,207,216,216, 61,198,230,206, 54,209,215, 58,135,222,146,192, 84, - 75, 64,203, 0, 1,143,227,143, 62, 67,223,182,216,185,247, 24,207,255,248,247,216, 57, 56, 68, 53,222,160,139,204,247,184, 58, - 59,227,142, 64, 18,221,203,148,216,216,217, 67, 61,219,194,242,234, 2,209,247, 40,235,113,198,238, 10,145, 92, 16, 18, 8, 17, -101,189,129,241,198, 46,198, 27, 91,119, 16,177, 2, 17,139,155, 43,180,171, 91,116,109,203,108, 4,178,235, 81,167, 73,130, 58, -199, 23,182, 9,140,239, 13,180,143,174,199, 35, 20,101, 65,130, 85, 79,222,226,166,105,208,181, 14, 33,244,240,174,135,119,150, - 39,123, 26, 62,114, 8,168, 20,136,142,199,229,190, 31,114,188, 19, 98,118,109, 26,151, 58,153,224, 29,123,200,117,182,199,105, - 83, 12,170, 98, 86, 47,103, 4,103,126,163, 1, 1, 14,107,201, 72, 83,121, 39,190, 53, 53, 3,153, 86, 23, 83,182, 53,103, 68, -228,201,161, 95,203,221, 14, 92, 20,251,187,221,153,243,119, 40,114, 67,188, 42,101, 78,104, 99,232, 89, 75, 28,240,161,103,201, -221,164, 54, 10,174,119, 67,106,152,146, 28,203, 26, 89,216, 55,208, 58,147, 77,147, 28, 45, 10,208, 34, 3, 73,132,212, 64,240, - 16,130,247,229, 84,237, 33, 4,199,162, 53,154,232, 56,231,169,251,244, 14, 69, 81, 65, 72, 74, 95, 75,197, 81, 76,217,223,108, -241,243,150,138, 62,173, 5,140,161, 9,134,227,142, 90,112,144, 83,138,185, 77, 98, 70, 74, 71, 11,128, 78, 23,172, 90,243,109, -135,193,107, 15, 64,200, 34,127,135,206,186,140,114,133,143, 57,245,207, 89, 71, 33, 53, 84, 39,144, 11,166,183, 28,154, 21,115, - 1, 73, 44,134,200,244,188,152,163, 82, 93,202,244, 96,235, 33,101, 90, 4,210,108,177, 80, 77,138,225,217,112, 46,240, 90, 97, -200,233, 80,235,119, 96,134,191,196,172,179, 32,171, 26,141,189,233,125, 27, 86, 53, 50, 39,153,138, 12,170, 1, 23, 49, 41,122, - 46, 77,128,242, 8,254, 79,167, 76, 2,195,152, 63,135,166,137,204,196, 87,114,125, 21,148, 70,244, 98,141, 31, 15,232,152, 57, -195,128, 18,244,229,105, 99,224,250, 62,123,116,189,115,104,219, 14,144, 11,148,245, 62,182, 14,143,112,250,234, 37, 95,228,100, -201, 72, 40,201,196, 76,246, 66, 66, 1,107, 15,131,200, 35, 23,165, 21,172, 13,208, 70,176,128, 67,101,108, 43, 85, 64, 52, 70, - 18, 49,162,170, 11,174,104,193,123, 58, 74, 10, 10,107, 97, 14, 41,214,111, 29,255,167, 20,129, 0,160, 35,188, 27,188,245, 69, -105,178,194,213, 24, 5,165, 37,250,158,147,209, 24,102, 17, 3,160, 10, 94,166,177,151,212,177,237, 44, 41,100, 7,107,159,227, -238,133,188,182,150,173,106, 84, 53, 3,182,109,112,118,114,130,235, 75,186, 24,202,209, 8,159,253,250, 11, 60,251,238, 39,156, -159, 94,230, 61, 76, 96,109, 66, 26,245, 71, 36,123, 27,161, 76,169, 59, 79,227, 59,130,244,132, 32,201,147,174, 13,148,162,202, -175, 44, 75,148,149,225, 85,130,166,128, 19,158, 76, 40,173,113,123,122,129,174,109,241,252,135,231,248,252, 87,159,161, 89,117, - 56, 59, 61, 71,201,152, 91,219, 59,152,162,197,171,103, 53,126,251,215,191,197,237,245, 77, 78, 23,147, 82, 97,181,106,112,125, -117,205,118, 64,122,201,118,246,183,243, 62,208,246, 84, 84, 77, 55,166, 88,220,220, 66, 74, 96,113, 59,199,206,225, 1, 86,139, - 22, 69, 89, 64,105,133,122, 84,147, 72, 17, 17, 69, 85, 66, 8, 42, 66,132, 4, 22,243, 21,121, 81,181, 68, 12, 36, 34, 76,123, -184,144,198,109,188,238,233, 91, 11, 93,141,177,177, 57, 65, 35,123,242, 73, 55, 13,234,233, 6,148,164, 98, 7,193,161, 40, 70, - 56,250,248, 19,172,110,151,152,110, 77,240,238,249, 91,152,178,198,241,227,143, 81,153,128, 27,215,161,154,236,192, 20, 6, 23, -111,223,224,228,205, 41,246, 30, 62,193,242,228, 5,170, 82,226,243, 63,251, 45,158,127,251, 7,168,162,194,222,241, 49, 68,232, -112,123,117, 13,168, 49,250,118, 5,239,123, 24, 21, 32, 88, 17,252,241,175,126,133,118,213,226,205, 15,255,128,157,253, 61,148, -163, 9, 89, 71,251, 6,215,103,239,233, 66,151, 10, 34, 58,120, 68,204,182,119, 48,222,216,192,213,251,247, 88,221, 94, 33, 10, -242,239,123,239,160,117, 65, 5, 35, 11,165,198,179,125,212, 27, 59,168,199, 27,121, 58, 4, 4,216,190, 67, 51,191, 66,223, 46, - 96, 45,141,215,251,190,135,117, 30,214,246, 40,202, 26, 34, 10, 8, 86,160,123,103, 9,194, 81,128,153,251, 53,170, 81,157, 11, -223, 16, 20, 92, 0, 11,104, 61,156,237,224,108,207, 29, 91, 68,144, 50, 31, 56, 8,113,109,108, 76,214, 46,107,187, 44,134, 26, -120,228, 76,210, 74,126,115,105,114, 42,155,214, 5, 95,154,195,101,155, 80,160, 96, 13, 13,117, 92,220,237, 59,203,211,181,225, -239, 77,148,174,192,232,215,164,203,241, 28, 67, 27, 19, 43,158, 59,230, 20,162, 65,120,211,116,198, 32,171,191, 19,188,132, 10, -121,149,189,216, 42, 91,120, 85,198,224,166,125, 39,216, 2,150,118,214,136, 49,195,168,164, 16, 89,123, 34,185, 8, 35,180,108, - 28,192, 57, 0, 77, 78,125,160,110, 44, 14, 28,130,248, 39, 1, 56,228,251, 6, 36,116,142,114,150, 82, 19,112,142, 47,130,100, - 1,165,149, 5, 6,212,106, 36,171, 94,112,142, 45,107, 58,123,180,125, 96,106,155, 72, 25,224, 67, 14,121,154, 50,166, 56,238, - 52, 97, 21,144,107,193, 86, 50,127,103,233, 76, 78,214,183, 36,255,114, 46, 48,224, 75, 12, 99,118, 73,225, 43,228,170,114, 40, -202,130, 38, 30,140,154, 78, 34, 7,197,196, 62,191, 38, 68,211,134, 9,162,220,197,219,174,203,164,204,224, 83,102,132, 96,154, -157,131, 86,130,182, 63,116, 83, 18,171, 33,241, 24,146, 74, 95, 82, 97,164,164,128,245,131,207, 92,138,181,196,190,108,181, 76, -186, 13, 22,155, 99, 0, 30, 37,119,198,154,174,157, 93, 12, 73, 32, 23,215,168,115,131, 22, 56,174,161,129,169, 51, 23,119,172, -222,105,242, 37, 56,194, 71, 32, 66,251, 8,136, 16,208,247, 46, 87,151, 49, 6,130,252,243,200, 47, 70, 7, 89, 80, 55,213,220, -222,160,156,110, 96,115,111, 23, 87,167,103,144,154, 82,147,188,247,208, 69, 65, 35,238,112,151, 10, 69, 94,248, 0, 93,208, 11, -152, 98,246, 28,127, 1,206, 57, 20,165,102, 75, 3, 95,114,145, 46, 7,239, 67,254,133,138,210, 12,133,129, 81, 40, 74,131,224, -169, 96, 72,160,137,244, 82, 36, 15,100,170,206, 83,117, 20, 98,164,145, 58, 87,190,214,122, 20,133,206,161, 50,233, 63, 9,144, - 66,191, 67,215, 17, 44,198, 24, 77, 48,127, 46, 16,218,142, 44,105,182,119,217, 95,158,241,126, 60, 33,160,238,138, 72,100,207, -191,255, 17,163,233, 12,251, 71, 7,248,252, 55, 95,227,197, 15, 63,227,245,203, 55, 89,156, 68, 47,249, 32, 64, 12,153, 34, 52, -132, 19,148, 5, 33, 96,149, 82,156, 9,110, 80, 85, 21, 66,112, 12,138, 49,180, 67, 23, 20, 16,208,181,116,104, 8, 14, 40, 48, - 69,129,197,237, 28,183, 55, 87,248,249,135, 26,247, 63,122,136,139,243, 75, 34,219,105,178,131, 20, 85,137,241, 88,195, 20, 21, - 54, 54, 3, 62,156, 92,161,240, 17, 93, 71,107,153,162, 44, 17, 53, 29,180, 93,211, 97,123,111,103,224, 70, 59, 15,105, 42,184, - 62, 96, 50,155,194,217, 30,183, 87,215,116,105,205,102,228, 79,143, 73,204,196, 35, 86, 37,161, 11,131,201,198, 20, 93,107,209, - 53, 29, 87,202,200, 33, 28, 66, 41,120,235, 88, 71,225, 16,225, 17,133, 69, 12, 17, 7, 15, 31,194,118, 29, 54,118,182,105, 71, - 43, 13,116,138,140,148, 64,189, 49,198,116,103,143, 39, 9,204,225, 15, 17,123,247, 30,162,170, 75, 52,183,103, 40,234, 49,234, -113,141,235,211,247,248,254,143,223, 99,247,193, 19,216,174,129,239,230, 56,122,244, 8, 34,116,184, 60, 61,197,222,131,167, 64, -116,184,185,188,198,124,222, 96,188,181,129,232,174, 33,130,165,110,183, 52, 56,254,228, 51, 76, 55,183,240,237,223,253,111,216, -216,218, 70, 49, 26, 67, 32,192, 54,115, 92,188,127,199,214,150, 8, 83,210,115,183,185,119,136,237,163,123, 56,123,243, 26,171, -155, 83,132, 0,152,178,130, 79,164,198, 16,121, 44, 45, 49,221,218,197,104,186, 13, 83, 22,176,150,170,126, 66,188,182,184,189, - 58, 71, 12, 62, 63,143, 93,215,161, 93,173,114,135,103, 93,200, 94,127,250,239,123,152,210, 67,235, 17,170,209,152, 66, 50, 64, -164, 47,231, 19, 48,132,132,137,237,106,145, 11, 86,109, 10,244,206,145, 26,217,210,232,218,135,152,173, 82, 16, 67,252,242, 58, - 23, 59, 93,160, 57,204, 34,217,189, 98,132, 49,101, 70,255,146, 50, 92,241,193,157, 18,171, 34,139,207, 56,115, 58, 14,216,224, -129,198,152, 66, 67, 88,221, 29,104,186,229,115,244,168, 92,243, 0, 71,246,134, 99,136, 64, 77, 16, 31,200,129, 62,151,244, 63, - 44,198, 74,227,248, 16, 34, 10, 38,146, 9,222,147, 74, 30, 3,123,230,204,135,148,105,159, 97, 37,200,204,134, 44,146,145,146, -213,223,200,205, 75, 26,217,166, 44,121,145,109,113,248, 19, 6,185,202,151,120, 20, 4,211,233,251, 46,175,178, 36,251,222,139, -162,204,211, 15,239, 2, 76, 65, 69,206,112, 49,113,190,124,246,141, 71,136, 56,232,144,168,192, 72, 25, 25,122,200,231, 72,238, - 4, 46, 24, 10,230,122, 80,129, 55,136,194, 98, 76,252,129,180,235,151, 57, 45, 16,136, 16, 74,128,148, 27, 49, 83, 8, 41, 31, - 39, 77,130,213,157, 0, 31,178, 84, 82,152,149, 76, 90,140,100,246,146,146,121,237,180,106, 72,197,171, 82, 50, 23, 90, 9, 11, -107,109,191, 54,251, 9, 72, 63,145, 96, 17,170,144, 18, 50,143,240,105, 4, 30,114,238, 73,164,169, 99,162, 33,176, 70, 34,198, -136, 32,249, 41,226, 6,109, 8, 91, 17,107,250,168, 20,200, 66, 43, 20,228,154, 78,220, 25,171,139,245,125,250,128,143, 27, 80, -180,156, 58, 71,246, 81, 46, 56, 50, 57,106, 77,158,239,172,207,216,191, 16, 28,148, 2,188,237,225,122, 78, 88,235, 41, 52, 99, - 52,157,210,216, 69,137,252, 97, 9, 1,138,105,228,202, 60,225, 11,201, 83,136, 76,159,114,172,118, 20, 28, 76, 79,162,139,144, - 5, 54, 49,146,189, 99, 64, 1,166,152, 77,172, 81,215,232, 23,166,203, 94,176,184, 44, 49,221, 99,142,119, 77,151, 90,218, 31, -101, 64,190,162, 81, 59, 21, 4, 50,143, 52,164, 38, 33, 90,219, 90,180,109,143,182,233,136,223,205,135, 37, 89,208, 92, 78,166, - 91, 71,246, 5,246, 57,230, 14, 60,146, 7,221, 89, 18, 23,157,159,188,195,183,255,252, 71,188,124,246, 22, 79,191,254, 18,127, -254,239,126, 59, 84,157,124, 49, 38,114,158,115,204,170, 22, 2,227,201, 8, 91,219, 27, 24, 79, 71,140,109,165, 16,153,178, 42, - 33, 21,113,239,139,194,240,239,197,222,125,246,147,123,103,115,180, 38,133,218,144,207,242,245,139,231,168,199, 83,220,123,112, - 12, 99,168, 40, 26, 79,106, 60,253,252, 49,219,220, 78,135, 14,211, 57, 24, 99, 80,141,106,212,227, 49,202,154, 84,254, 93,215, - 98,182, 57,227, 21,137,129, 46, 76,222, 73, 17,165,143,198,246, 74, 73,236, 29,237, 96, 52,169,115,247,166,180,132, 97,107,202, -104, 60, 66, 61,161,221,186, 50, 67, 64, 67,162, 77,133, 16,161,211,239,199,168, 97, 93, 24, 84,227, 49,182,182,103, 0, 34,166, -155, 83,132,224,177,127,124, 8, 41, 3,138,130, 88,248, 17, 18,219, 7,123, 44,192,163,169,204,206,225, 33, 70,179, 25,140, 38, - 16, 78, 61,221,132,109,110,240,199,191,255,103, 76,119,143,113,246,238, 29, 16, 3,170, 74,225,147, 47, 63,197,247,191,255, 61, -198,155,135,168, 71, 5,108,187,194,229,217, 25, 76, 89,211,229,101, 23, 64,236,104, 90, 34, 37,238,127,250, 21,190,249,219,191, -193,120, 58, 70, 61,157, 66,138,128,155,243,247,184, 56,121, 67,148,184, 24,178, 64,115,115,247, 8,219,199, 15,113,121,242, 22, -183,103,111, 97,187, 14, 2, 30,205,226, 6,182, 89,192,219, 6, 2, 17,163,233, 6,182, 15, 31, 96, 99,247,152,211,219,104, 42, -214,181, 13,250,102,142,213,237, 85,214,104, 56, 31,176, 90, 46,208, 53, 43,222,133, 15, 28, 7,154,246,248,220, 97, 43,173, 24, -205,107, 96,202, 2,210, 16,193, 76, 42,197, 92, 5, 7,103, 59, 90,141,241, 69,213,119, 61,171,210,177,230,195, 78,153, 2, 34, -143, 74, 37, 95,202, 41, 26, 51,249,194,147,231, 91, 96,192,206, 38, 85,119,100,248,139, 41, 6, 70,119,238, 85,248,123, 15,108, -159, 36,220,107,204,161, 29,193,199, 59,227,208,129,226, 62,248,223,115,154,162,144, 60,225, 72,145,151, 17, 62,184, 33,130,147, - 87, 6, 41,230,149,254, 29, 78, 13,147,195,184, 94, 74,197, 23, 20, 50, 14,122, 29,113,235,152, 67, 31,217,147, 79,222,243,248, - 39,194, 87,149, 49,210,169, 41,176, 46,228,117,165,231,209, 62,214, 58,116,173,239,238,242, 5,227, 96, 9,219, 76,140,125,231, - 61,217,216,216,250,149, 66, 99, 4,227,116, 29,231, 98, 68,112,241,193,154, 12, 58,119, 4,115, 40,100,230,102, 36,238, 65, 34, -214,133, 20, 4, 19,169,176, 72,164, 62,210, 5,164,103,130,240,182,166, 48,208,218,100,142, 72,224,110, 56,137, 21,210, 89, 25, -153,170, 55,196,228,138,252, 28, 40,142,242,150,107,211, 25,109, 24, 36,195, 58, 40, 99, 82,209, 23,178,160, 77,107,210, 22, 41, -153,224, 46,158,169,161, 60, 46,231, 41,237,250,189,169, 20, 89, 30,211, 26,118, 61,218, 90,166, 0, 21,158, 66, 32, 23, 88,244, -189,148, 69,137,170, 44, 9,164,147,161, 73,114, 96,188,139,132,146,101,166,189, 84, 80,202,228, 66, 86, 74,157,237,157, 41,240, -135,231, 43, 67, 70,123, 18, 75,166, 52,188,164,243, 16, 26, 90, 72, 9,215,219, 92,217,248,100,237,210,212,205,118,150,198,115, - 69,201, 31,150, 16, 80, 50, 0,162,192,104, 58,165, 78,193, 58, 72,197, 36, 56,164, 17,116,230,217,229, 17,125, 2, 38, 72,173, - 80,104, 5,231, 57,184,132,105, 75,166, 52,136, 33,102,158,175,247,196, 70, 79,162, 19, 41, 35, 32, 34,137,120, 66, 96,133,165, -204, 35, 16,165,249,197,230,234, 60,216,100,121,138,185, 66, 78,176, 5,109,210, 62, 95,176, 69, 2,136,158, 20,239, 67,134,122, -132,179,150,128, 58, 82,230, 78,223,246,238, 79,196, 9,100,111,203,123, 56, 68,182,224, 16,237, 42,117, 44,148,192, 6, 88,219, -225,213,207, 63,227,195,219,247,248,226, 55, 95,225, 63,253, 47,255, 9,223,252,211, 55, 56, 59,189,228,169, 3,249, 29,203,106, -204,194,189,146, 46,213,130, 68,134,213,184,226,253, 35,137,197, 52,115,243,211,216,191,239, 98, 14,195, 81,146, 42,212,219,171, - 57,186,206,162,105, 58, 20,133,193,120, 50,193,106,185,196,171,103,175,240,244,139,167,184,190,186,134, 82, 10, 95,253,230, 51, -108,238,108,226,250,226, 6,215,151,215,104, 27,139,167, 95,126,140,179,247, 23,252,251, 68,120,219, 99,181, 32,101,121,179, 92, -225,225,227,163, 44,248,162,196, 57,129,122, 92,195,118, 29,165,141,185,128,182,105,177,185,189,129,197,237,138,200,115,147, 10, -101, 93,178, 88, 42, 66, 23, 5, 20,231,173,147,243,129,158, 67,234, 58, 61, 11, 44, 89,248,164, 21,170,186,134, 84, 26,163,233, - 6,156,237, 49,154, 76, 32, 16, 81, 86, 37,198,155, 19,220,158,159,194,104, 9, 17, 11,220,251,228, 49, 78,222,156,162, 40, 12, -186,198,162, 30,213,112, 14,152,110,140,112,253,225, 45,198,179, 13, 24, 35,241,187,255,243,111, 81, 78,118,112,113,122,137, 66, - 3,182,153,227,248,241,199, 88, 94, 95,193,121,129,227,135, 7,240,221, 10, 39,175,223,161,235,122,140,183,106, 52,203, 5,224, - 87, 52,213,137, 17,159,254,229,127,196,234,234, 3,148,150, 40,138, 9,162,239,241,225,237, 47,152,223, 92, 33, 6,207,123, 62, -170,220,183,247, 15,113,240,209, 39, 56,123,251, 11, 46, 63,188, 38,123, 14, 71, 22, 39,157,139, 54, 6,163,233, 6,166,219,251, - 80,166,204,137,131,205,178, 69,112, 84,176,217,110, 5, 31,124,166,186, 17, 8,166, 33, 29,137,210,236,116,149,204,254, 86,108, -247, 41, 81,141, 70, 25,179, 25,185,168,140,105,212, 11,192,123,139,190,235, 50,221,203,121,143,200,187,222,222, 58,154,216,192, -231, 68,173,108,183, 97, 56, 71,138,181,164,105,109, 96, 31,179,230,188,241,130,242,160,133,132, 84,132, 35,206, 78, 93,230,187, - 43, 69,241,166, 50,147,231, 72,204, 69,239,176,231,145,172,200,182, 44,193,187,209, 20,226, 18,216, 6, 6, 17,179, 77, 73,102, -181, 53,178,205, 76, 10, 22, 30,242, 62, 85,112, 7,148, 46, 52, 41, 21,188, 72, 62,116,157,247,160, 73, 20,247,167, 59,124,234, -208,124, 30, 31,251, 28, 60,179,206,249, 30,192,226,142, 71,243,224,203,196,218, 62, 91,182, 2, 79, 54, 60,103,181, 39, 12,110, -200, 66,178,193,151, 13, 17, 73, 5,158,124,226, 66,115, 22,132,186,227,171, 87, 24,176,174, 49, 56,110,134, 6, 62, 63,120,127, -108, 45, 9,168, 83,145, 46,184,155, 22, 94, 32, 40,154,130,169, 28, 92,163,178,159,155,208,207, 5,159,207, 58, 79, 8,164, 34, -206,188, 90,195,119, 83, 40, 13, 83,229, 98,162,235, 13,192, 30,193, 5, 73,240,196, 63, 73,160,160,244,119,122, 79, 59,241,212, -225,165,162, 72, 41,106, 24,250,142, 10, 83,195,147,230,100, 31, 78,235, 44, 26,179, 7, 40, 41, 16, 83,115,233, 35,221, 37, 61, -161,201,147, 0, 47,248, 8,153, 62,131,136,188, 63,215, 90,103, 18, 94, 18,203, 73,165, 40,110,155,131,115,156,179,121, 58,146, -214,200, 89,119,225,104, 2,169,146,222,193,243,106, 51,242, 52,133,191,219,244, 14,164,172,122, 90, 91, 13,236,119, 2,178, 1, -186,172,106, 68,239,208,179,144, 70,241,254,105, 32,170, 9, 38,237, 68,232, 20, 88,210,117, 16,186, 64, 49,154, 80, 71,185,108, - 96,228, 16, 60, 64,227,117,159, 81,128, 9, 78, 34, 36,137,158, 82, 70,182,214, 18, 93,227, 32,184, 19, 91, 45, 59,218, 17,151, - 37, 26,142,127, 13, 1, 40, 11,197, 63,147,202, 29,119, 96,197,106, 98,238,210,136,110,136, 76,244, 46, 64,105,193,255, 59, 58, -116,232,126,143, 67, 88,189, 36,255,107, 8, 68, 94, 82, 37,211,149, 66, 64,111, 61, 71,164,130,225, 39,138, 49,134, 50,147,225, -144,130, 22, 98,200, 99, 37,170,170, 69,182,138, 40, 38,192,121,134,250,123, 55, 84,144,171,229, 45,254,229,239,254, 1,247, 31, -127,140, 95,253,213,111,177,188,189,193,179,239,159, 97, 49, 95, 0,145, 56,197,101, 97,104, 47, 54,170,214,126,223, 72,105,113, -117,205,244, 61, 42,164,156,117, 40, 75,138, 63, 44, 74, 3,215,211,190,191,239, 45, 22,243, 5, 63,172, 84,217, 77, 55,103, 40, -171, 2,125,183, 68,211, 56,124,241,171,207,224,108,143,195,251,135,232,218, 22,215,151,215,152,223,206, 97,123,139,219,155, 93, -204, 54,103, 88,204,151,208,133, 70, 81,149,232,251,130,145,187, 61, 70,147, 49, 62,188,121,159,139, 66,193,161, 33,105,157,162, -107, 3,215,181,144,106, 7,211,141, 9,250,174,103,198,190,230, 0, 31, 13, 83,210, 37,223, 44, 26,116, 29, 51,246,165, 64, 89, -167,138, 87, 3, 50,100,129, 75,194, 18,111,237,237,160, 93, 46,176,177,179,141,122, 84, 96,113,235, 81,150, 5,124,223,195,246, - 22,211,205,141, 28,106,113,123,117,141,141,237, 77, 78,214, 27,195,182, 11,148,117,141,201,214, 54, 94,124,251, 45, 2, 74, 72, - 83,225,234,195,115,124,242,197,231,144, 34, 96,239,248, 0,191,255,127,254, 22,219,135,247,160, 68,196,229,229, 53,154,166, 69, - 81, 20,136, 81, 34,118, 87, 64,116,136,193,224,147,223,254,123,220,127,250, 41,126,249,183,127,129,214, 6,221,242, 22, 31,222, -188, 98,245,125,184,147,230,180,123,252, 16,123, 15,158,224,195, 47, 47,112,123,254, 14,136,150, 59, 45, 13,111,123, 4, 41, 80, -143,167,152,110,239, 96,188,177,141, 32, 74,184,190,131,181, 14, 61,119,231, 49,116,153, 48, 70,182,196, 30,125,215,163,109,150, - 57,250, 50,197,127, 66, 12, 30,238,178, 26,161,170,107, 42,142,211,127, 39, 36, 44,243,219, 5, 8,255, 42,224, 6, 12,166,210, - 28, 15, 38, 96,249, 89,167,119,155,109,157,201,208,189,182,103,164,144, 23, 63, 8,227,114,142, 53,239, 11, 33, 81, 20, 21, 31, -124,195, 37,153, 14,200,152,119,221, 3, 68,138, 6,160, 49, 3, 83,136,168,231, 51,242,117,184, 56,195,208, 53,199, 1,254,146, -152,229,193, 15, 69, 65,196, 32,214, 74, 48,154,184,230, 15, 30, 48,187,129,227,123, 85,222,241,166,127,150,138, 6,210,223,244, -121, 95,186,206,163,207, 88, 83,173, 50,139,194,123,151, 39,144, 57, 15, 62,117,188,233,240, 22,226, 14, 89, 51,217, 3, 99, 76, - 23,188, 31, 40,108, 60,237, 83, 74, 67, 41, 74,108, 76, 22, 52, 98,144, 15,241,178,217, 2,151, 59,229, 0, 4,129,162, 48, 84, - 0,230, 93, 56,205,122,140, 97,242,158, 88, 15, 89,137,121,109,160,185, 96,204, 35,105,102, 11, 4,206,102, 72,224,172,116, 79, -101, 45, 68, 72,255, 27,234,198,147, 24, 89, 41,149, 5,137, 67,116,116, 2,245, 80,169,154,152,244, 3,152, 37, 77,113, 67, 62, -191, 3,175,131, 36,187,148, 92, 31,120, 92, 46,178,110, 33, 9,235,250,222, 66, 73,158,114,112,172,111,223, 91,210,128,112, 1, -144,224, 53,233, 57, 37,146,167, 88,227, 21,208,180,195, 20, 37,103, 94,184,252,157,144,248, 84,178,224,155,222,155, 52, 37, 39, -190,125, 88, 35, 61,242,190, 60,229, 26,179, 88, 51, 66, 64,172, 5,129, 70, 36, 33,105,132, 20, 17,218, 7,192, 20, 37,198,101, -137, 16, 2,218,213,138, 40,110,236, 61,167, 47, 64, 66, 72,234, 2,148, 54,204,118, 39,142,177,212, 5,180,182,136,145, 46, 47, - 17,169, 99, 80, 74,195,139,136, 66, 42,194,196,114, 37,104, 45,231, 26,243, 15,175, 12, 85, 57,130,129, 41, 66, 8, 22, 70, 81, -215,166,140,129, 9,128, 54, 50,195, 35, 8, 84, 66, 2,138,132, 2, 84, 33, 32, 74,145,163, 95,181,161,195, 95,115, 85, 43,152, - 44, 68,126,104, 26,221,219,222, 35, 32,217,227, 72,160, 17,124,228, 47, 49, 50,162, 53,220,137,106,181, 61, 85,224, 57, 2, 84, - 2,109,235,242,225, 64,145,175,130,145,178, 30,158, 5,116,116,241,115, 90,143, 36, 62,212,184, 46, 33,165,196,205,229,123,124, -255,199,136, 39, 95,126,130, 63,255,239,255, 2, 87,231,103,120,245,211, 75, 88, 22,146,164, 66, 36, 41,129,137,158,100, 56, 92, - 39, 32,136, 1,183, 27, 65, 85,239,114,209,112,172, 45, 33, 39,235, 81,153,171, 80,109, 10,196, 24, 48, 30, 87, 88, 46, 86,184, - 56,125,143, 79,191,250, 12,136, 29,234, 81,137,139,211, 11, 98,152, 3,232,187, 30,111, 95,253,130, 79, 62,255, 12,101, 85, 34, - 6,186,140, 77, 81, 32, 40,207,151,108,204, 65, 54,206, 57,192, 35,239, 8,181,209,217,210,226,125,128, 41, 10,222,183, 70,138, - 95,245, 49,119, 52,218,104, 52,171,150, 1, 60,150, 70, 82,156,157, 93,148,134,149,206, 18,101,173, 32, 85, 1,169, 13,170, 90, -163, 89, 74, 24, 45, 49,153,141, 96,109,100, 13, 67, 11, 83, 22,216,189,119,132,159,190,249, 25,186,168, 80,215, 5, 54,247,247, -224,173, 69, 61, 46,225,187,136,143,191,124,138,151, 63,189,198,243, 31,158, 97,239,193, 19,188,248,238, 91,200,216, 98, 60,157, -224,248,227, 7, 56,125,253, 22,197,104,134,201,164,192,252,234, 10,103, 31, 62, 64, 68, 15, 37, 43, 82,148,135, 6,136, 1,143, -190,250, 11, 60,252,252, 43,220,158,189,131,136, 30,243,139,247,184, 60, 61, 97, 48,138,202,246,188, 24, 35,118, 14, 31, 98,255, -193, 19,124,248,229, 57,174,207, 94, 67, 42,147, 99,107,165, 4,170, 81,141,241,108, 3,179,237, 61, 20,147, 77,120, 79, 7, 67, -111, 61,230, 87, 87, 48, 58, 0,209, 34,184,142, 98, 61,237,144,127,221,247, 45, 95,154, 10, 92,231,210,238, 91, 72, 24,173, 48, - 30, 79, 96, 10, 42,160, 82,241,222,119, 22, 33,118,116,217,112,212, 36, 21, 32,138,223,191, 10,161,109, 0, 73,196, 57,169,136, -179,160, 25, 18, 37, 89,230, 35, 32,114,192,137, 75,120, 77, 33,115, 55, 79,217,227,116, 17,211,133, 68,216, 82,114,162, 80, 17, - 96, 10,147,243,167,105,111, 46,214,132,110, 33, 43,220, 83, 39,159, 58,151,164,189,161,113, 50, 51,221, 65, 23,174,231, 16,167, -116,232,167, 49,104, 42, 62,192, 59,229,117,156,107,222,107,243,254, 58, 5,192, 40, 73,107,174,161,120,145, 25,218,147,128, 33, -233,239,167, 2, 95,102, 1, 47, 21, 65, 1,209, 49,131,222,135,124,224,167,253,123,162,177, 9,222,207, 43,169,178,165, 78,222, -137,134, 93,179, 59,201,245, 52, 74,197,251, 87,228,204,134, 84, 96,173,255,254,185, 48,224, 96, 29,191,246,231, 56,134,179,200, -245,177,189, 34, 7, 74,102,185, 67,228,144,149,148,151,145,196,126,169,211, 38,191,250, 58, 45,110,208, 3,144,211, 64,229,127, - 63,196,200, 59,244,192, 19,193,181, 53, 78, 90,203, 96, 16,159,165,247, 41, 21,103, 52,253,145, 16,156,216, 23, 67,128, 49, 18, - 93,155, 44,106, 4, 57, 2,167, 0, 58,206,160,160, 14, 92,112,222, 68, 63,100, 16, 68, 90, 75, 39, 55, 3, 61, 71, 22, 76,105, -134,214, 20,116, 37, 4,177, 77,164, 90,123,158, 82,194, 28, 63, 23,180,170,226,159,129,113,188, 73, 59, 33,132,192,218, 12, 39, -143,233, 9, 36, 35, 6, 77, 10, 63,179, 50,125,181,136,119, 28, 90,233,131, 9, 16,208,193,118, 8,122, 68,106,116, 45, 80, 86, - 21, 7,176, 36,218, 16,243,125,215,176,164,125,219,210,158,164,174, 81,212, 99,184,222,114,101,162,160,184, 75, 78,158, 77,107, -125, 6, 53,152, 66,163,235,232, 0,191,163,226, 19,131,221,197,249,196, 55, 15, 40, 42,195,161, 6,244,210, 22,212,148,163,172, -139, 33,114,149, 85,152,214,210,151,106, 10,197,122, 0, 30,171,173, 81,124,214,125,243,182,231, 23, 78, 9,230,108, 75, 74,110, -227,206, 62,219, 30,108,132,228, 84, 60, 2,120,208,165,158, 14,147, 36, 30,162,240, 2, 53,216, 13, 25,108,161,180, 68,215,217, - 28,235, 10, 68,148,101,193,255,254,144,122, 22,125,135, 23, 63, 60,199,253,199, 15,176,185,179,139,221,131, 61,188,121,254, 18, -103, 31, 46,201, 67,201, 5, 22,237,228,136,210, 37, 49,236,133,210,170,192, 57, 71, 93, 22, 67, 32,202,210,240,197, 74,135,200, -252,118, 9,173, 53,138,162,128, 98,184, 78,179, 92,225,226,236, 10,159,125,245, 17, 98,180,184, 60,191,166,201, 77, 4, 70,147, - 26, 49, 16,152,230,248,225, 61,124,120,251,142, 4, 35,252, 28, 0,164, 86,175, 70, 21, 81,250,170, 10,171,149,135,102, 94, 62, -237, 5,233,103,187,189,186,197,116,115,132,243,211, 11, 76, 54,122, 6, 60, 68,190,236, 13,170,186,162, 23, 75, 72,130,221,240, - 62, 73, 42,137,122, 84,175, 81, 6, 13,148, 41, 49,217,220, 66,183, 92, 97,107,111, 27, 27, 91, 99, 72,165, 81,141, 71,232,154, - 37,180,209,152,110,111, 97,126,115,139, 85, 99, 97,172,199,211,175,159, 80, 49, 18, 35,108,215, 98,247,232, 16, 93,211,226,197, -247, 63,227,224,209, 83,188,255,229, 53,124,191,194,108,115, 3, 27, 59,219, 40, 10,141,197,124,137,173,221, 45,244,203, 91,188, -127,253, 6,193, 89,148, 69, 68, 49,154,160,109,110, 32,162,195,163, 47,255, 18, 71,143,159, 64, 9,143,235, 15,111,113,242,242, - 25,110, 46, 47, 88, 33,173,242, 4, 71, 10, 96,247,222, 35,236, 61,120,130,211, 95,158,225,226,228,121,238, 64,133,210, 64,244, - 24, 77, 54,176,181,183,143,241,108, 3,194,140,208,117,148,166,119,123,117, 13,111,123,128,139,102,239,122,138,202,116,148,249, - 76, 99,114,166,162, 41,149,189,237, 29,115, 20,170,170,194,120, 58, 33,101,112, 89, 80,168, 8,135,125,208,191, 67, 66, 38,173, - 37,234,209, 56,219,198, 98,136,104,181, 70, 89, 87, 20, 35,220,247,104,150,171,220,109, 11, 80, 39, 36,214,210, 16,147, 55, 89, -240, 37,161, 85, 68,231, 59,166, 0, 42, 22, 88,233, 97,116,155,178, 34,148,202,151, 70,242,142, 75, 41,137,180,151,186,234, 48, -172, 9, 37,147,180,172,181,119,118,219,142, 69,122, 82, 12, 30,241,144, 89,217,156,123,158, 58, 73, 46,166,210,229,146, 84,224, -169,235, 78,228,176, 68,143,139,172, 86, 55,133,200, 5,118,178, 27,230,128, 24,206, 10, 23, 98, 16,111,209,207,200, 33, 43, 96, -198,120, 34,120,250,161, 73, 32,161,161,204,135,182,103, 91, 97,242, 55, 99, 13, 43, 42, 88, 40,152, 16,161,169, 43, 78,233,229, - 69, 81,146,208,145,139, 69,250,188, 67,238, 10, 35,168, 35, 77,186, 29,154, 72,168, 60, 53, 32,146,155,134, 20, 42, 91, 74, 83, - 65, 36,181,102, 49,239,186, 16, 50,102,198, 64,228, 21, 7, 77, 53, 56,145, 51,130, 59,222, 8,159, 18,237,210, 90,211,179, 53, -205, 72, 38,210,201,156,180,151,154, 46,210, 68,173, 41,200, 64,201,148,105,101, 44, 57, 42, 91,128, 38, 72,116, 78,135, 12, 41, - 74, 65, 40, 73,128,172, 53, 53,144, 4,137,241, 67,247,238, 98,158,170,133, 32,200,194, 6, 32,166,252,116,165,120,194,164,115, - 48, 79, 90,137, 8,230, 40, 24,109,184, 96,147,153,151, 32,132,164,102,215, 57,130,104,113,163, 75,147, 15, 46, 80, 84,202, 13, - 96, 83,104, 18, 21,134,225, 25, 75, 54,236, 52, 13,137,172, 19,201,137,114, 49, 88,216,213, 45, 34, 20,140, 25, 81, 69, 95, 20, - 80,146, 67, 53,248,133,115,214, 67,245,150, 71,117,158, 60,162,144,168,199, 53,132, 54,176,140, 50, 21, 66,192, 84, 21, 98, 8, -140, 55, 77,123,236,228, 79, 47, 16,133, 92,171,236,144, 97, 41, 97, 45,234, 81, 39, 44, 37,127,121, 85, 85,228, 2,195,246, 14, - 69,161,179, 42,147, 46,104,129, 32, 4,250,206,195,176,181,129,212,143, 33,171,225,211,184, 69, 58,228,241,123, 42, 0,136,206, -196,217,202,158, 70, 77, 62,210,206, 94, 96, 77,100, 22,134,240,137,190,239, 81,148,134, 11, 10,126,248,210, 62,159,247,192, 36, -158, 32,134,121, 93,151,192,136,216,236, 5,199, 1,198,181,211, 49,120,139, 55,207, 95,226,240,254, 49,198,211, 26, 71,143, 30, -225,232,225, 49,126,252,230, 39,172,150, 43, 8, 65, 73,119, 85, 61,226, 64, 14,218,240, 36, 15,254,250,202,132, 20,242, 50,123, -124, 83,145, 17, 99, 68,219,118, 40, 37,189,240,198, 24, 96, 84,227,230,242, 28,109,251, 0,219, 59, 99,104, 45, 49,219,152,194, - 24,205,238, 0,131,102,185,196,252,102,137,201,108,130,235, 11, 66,198, 6, 31,208,119, 29,218, 85,131,217,108,132,190,187,225, - 0,155, 0,111, 36,250,222, 35,248, 62,119, 7,229,168, 67, 8, 99, 24, 35,176,156, 47,233,165, 98,204,238,120, 50,202,130,168, -178, 42, 56,118,181, 36, 48,145,184,203, 89, 78, 99,189,241,116,140,219,243, 83, 28,108,207, 48,219, 24,243,129, 76,127,166, 41, - 75,108,238,110,227, 15,127,247, 47,168,234, 9,142,238,109, 67,168, 2,163,105,141,110,213,192, 69,141,217, 70,141,111,255,240, - 2,202,148,184,185, 90,160, 89,222,194,200, 30,123,247,191,196,222,209, 46, 78,158,255, 12, 85,142, 32, 5,240,250,197, 43,180, -171, 57, 36, 58,152, 98, 3, 54, 40,192,222,226,225,231,127,142,135,159,127, 5, 41,129, 15, 47,126,196,243,111,254,136,190,107, -160,180,204, 2,168, 84,183,238, 28, 61,192,225,227,207,240,238,217,143,184,124,255,156,125,179, 2,193, 91, 40, 93, 96,247,232, - 16, 59, 7, 71, 48,229, 24, 62, 10,172, 22, 45,250,174,199,106,185,132, 82, 32,138, 99,136,236, 63,119,104,150, 13,250,182,201, -188,117,197,137,129,145, 57,221,222,121,148, 85,141,241,100,138,162,164,142,205, 20, 5,132,210,208, 50,165,102,121, 78,131,147, - 57, 98,183, 40, 74,164,249,158,237,123, 20, 53,241,227, 37,119, 93,180, 51,173,168,176,235, 58, 4,132, 12,216,240, 44,178,202, -110,242,224, 0, 57,128,132, 72,212, 86,242, 84,203,100, 37,177, 76,118, 37,214,243,120,111, 51,104,133,138, 34,151, 69,174,132, - 11,101,193, 85, 82,219,243,127, 58, 22,133,166, 66, 42,161, 55, 37,119,150,206, 58,154, 84, 33,194, 40,205,246, 35,149, 17,163, - 3,220, 37,230,105,147,228, 98, 36, 9,210,210,207,147,253,218,220, 21, 39,143,188,231,130,196,187,200,147, 50, 57,236,189,121, -196,238,108,207,251,122,172, 81,196,100,118, 28,100,142,100, 22,193,145,158, 8,121,143, 79, 19,147, 64,140,235,220,188,100, 91, -154, 80, 57,202, 52,135, 44, 5,127,135,224, 41, 88, 48,155,108,130, 41,143, 62, 51,234,249,220, 3, 8,240,229,157,131, 42, 10, -206, 11,240,204,130, 23, 57, 30, 58, 1,106,210,100, 84,240, 51, 9, 68, 18, 87,106, 18,129, 57,219,147,146, 94, 15,222,242,180, -230, 76, 80, 49,154, 40,234, 76, 0, 77, 50,240, 0, 1, 37,210, 69, 42,115,103, 79, 80,150,192,200,223,192,223, 15,187, 14,192, -232, 86,163, 56,209, 82, 32,114,183,206, 28, 58,166,187, 33,175,114,144, 47, 79,228, 61, 57, 57,120,169, 24,213, 70, 17,235,128, -145,226,146, 3,111,164, 20,240, 98, 88,243,172, 23,124,105,125, 18, 66, 64, 76,147, 19, 49, 76,135, 36,107,169,148, 20,185,163, -207,171,101,201,174,130,228,248, 72,228,188,204,243, 32, 65,162, 64,128,250, 95,255,221,151,255, 25, 28,190,210, 55, 13, 43,142, - 53,116, 89, 82, 44,106,170, 30,217, 79,158, 42,188,100, 89, 81,166,100, 21, 40, 43,194,189,207, 21, 88,206, 10, 14, 41,144,132, -189,157, 28,188,146,246, 75,235,135,117, 82,132, 70, 38,167,165, 17,156, 41, 56, 13, 72,145,160,206, 51, 22, 54,253,114,130, 61, -179,148, 10,231,225, 92,128, 41, 82,178,208, 16,249,152, 24,247,195, 37,145,170,229,228, 73,101,133,163, 98,224,190, 24, 8, 64, -233, 75, 75,179, 18,219, 19,253,136,112,165,180, 31,206, 94, 85, 12,222,115, 41, 73,157,174,148, 68, 89, 21, 48, 70,231,204,245, - 52,190,211, 70, 51,201, 14, 88,220,222,210,193, 89,104, 92,158,221,226,241,167,143,161,181,196,245,229, 13,164,162,208, 19, 64, -101,253, 64, 96, 47,187, 82, 18,117, 85, 65, 27,153,247,103,121, 55, 21,239,230, 74,175,150, 43, 20, 69,145, 71,228, 52, 14,140, - 56,184,119, 8,103, 59, 2,210, 88,246, 91, 50, 45, 46,196,136,253,227, 3,172, 22, 11,234, 12,217,223, 42,149,196,246,222, 54, -110,175,111, 41,206,117,105, 81,143, 42,220, 92, 93,195,246,125, 46,172,250,214,162,158, 76, 33, 4,133, 51, 20,165, 65, 8, 2, -166, 80,144, 74, 96,186, 57,193,219,151,239, 0, 86,205, 86,117, 5, 33, 5,166,155, 83,156,190, 61,201,105,118, 49, 0, 69, 85, - 97,182, 69,244,186,135, 31,223, 67, 89, 42, 44, 23, 45,177,167,109,139,122,182,129,247,175, 79,176, 92, 58,236, 29,238, 98,247, -112, 15,136,132,225,237, 86, 11, 22,209, 88,188,251,229, 20,214, 70, 92,188, 63, 65,236,231, 48, 69,137,207,255,226,191, 67,183, -184,194,124,194, 95,203,230, 0, 0, 32, 0, 73, 68, 65, 84,222, 96,107,119, 19, 31, 94,191,193,201,203,159, 33,209, 67,138,128, -241,230, 61,116,109,139, 39, 95,125,134, 71, 95,124,141,118,126,137, 24,128,127,253,155,255, 3,182,111,120, 5, 28,134,112, 36, - 68,236, 30, 61,192,209, 39, 95,226,195,171,159,113,245,254,101,142,186, 20, 66, 96, 60,219,194,246,193, 17,118, 14,143, 81,142, -166, 8, 80,152,223,174,176,156, 47,176, 90, 46, 96,180, 34,194, 89,116,232,218, 14,182,235,209,174, 86,104,155, 57, 11,164, 20, - 36,219,212, 34, 20, 76, 81, 33, 70, 5, 93, 84,152,206, 54, 81, 86, 53,234, 81,141,122, 50, 70, 61,158,160, 30,141,249, 80, 20, -124,168, 59, 62,112, 76, 46,226, 35,119, 95,158,157, 35,214,122,230, 89,176,237, 50,210, 62,214,100, 52,180,202,157,164, 88,139, - 53, 77,239,209, 96,183,165,191, 71,240,168, 81,105,197, 29,154,225,241,169,228, 81, 61,231, 87,139,200, 90, 18,145, 93, 48,138, -243,222, 83, 72, 82, 12, 3,239,253,110, 6,186,200,227, 99, 26,137, 91, 14,141, 42, 88,137,205,148, 75,165,249, 60, 81, 67,164, - 42, 68,126,231, 5, 79, 17,232, 48, 47,242,152,149, 20,232,242,142,133, 54,169,169,251,174, 91,203,114, 7, 39, 46,130, 5, 83, -142,189,244,110,141, 64,150, 82, 35, 7, 6,248,250,229, 10,129,156, 24,150, 89,239,108, 43,148, 60,113, 24,138, 7,193,211,184, - 50,239, 99, 53, 95,174,169,208, 36,100, 52,137,200, 82,103, 44, 48, 92, 16,105, 82, 33, 57,121,141,206, 42, 82,101, 27,147,184, - 2,169,115,231, 17, 57,239,254, 11,190,248,179,115, 33,112, 51, 23,227, 26, 40,140,249, 19, 82,102, 61, 69, 74,181, 11, 65,100, -162,158,100, 34,159, 82,114, 8,215,210,138,187, 88,106, 12, 13,223, 83,136,137,127, 16,185,123, 13,204, 8,240,249,179,142, 49, - 18,139,221,219,181,104,108,159,195, 81,144, 45,140,126, 45, 91,157,125,240,218,100, 87, 70,202,117, 47,202,146,159,155, 20,216, - 66,206,138, 36,142, 86, 74,174, 9,170,195,157, 81,121,130, 27, 73, 12,157,248,192,162,137, 67,252, 56, 63, 11,201,117, 33,114, -145, 44,114, 49, 60, 20,158, 17,154,210,141, 60,208, 19, 50,210,245, 45, 91,176, 8, 32, 33,181, 64, 33, 21,154, 85,131,190,235, - 81,141, 8,114, 32,148, 70,187, 90,161, 26,143, 33,148, 65,223,175,178,197, 65,178, 42,144,246,222, 68, 91,211,236,163, 83,114, -216, 17, 75,169,209, 91,199,185,182,100,117,171,106,195,227, 11,149, 71,230, 73, 80,145, 68,114,206,133,129,252,163, 9,128,163, -139, 33, 70, 50,141,250,155, 85,143,122, 84,160,239, 28,137,171,164,224, 67,102, 77, 45,201, 16, 4,103, 73, 33, 25,121, 76,238, - 24,134,147,130, 9,232, 75, 85,252,162,210,180, 96, 52,174, 97,173,227,220,239,132, 60,180,100,203, 83, 30,179,205,146, 53, 2, -142, 87, 4, 14,136,180,179, 79, 41, 70, 41,125,174,168,104,124, 45,165, 70,215,182,184, 56,253,128,190,235,112,255,241, 61,188, -127,123,130,233,230, 22,254,250,127, 60,194,139, 31, 95, 98,181,234,179,146, 85, 74,137,209, 88,175, 9,129, 18,167,217,103, 61, - 68,218,131, 59, 22, 18,165,223,101,181, 92, 98, 52,153, 64, 10,133,217,230, 12,182, 91,225,246,102,137,251, 31, 63,194,251,183, -103,164,214,103, 65,206,252,102,142, 8,133,103,223,191,196,209,253, 93,156,188,254, 0,128,166, 49, 55,151,183,240, 46,162,107, - 58, 98,224,247, 14, 93,219,163,109, 90,226, 23,104, 13,229, 28,138,138,170, 76, 83,148, 88,221, 46, 81, 86, 69, 22,242,213,149, -201,137,112, 33,112,140,175, 37,184, 72, 10,126,145, 2,112,150, 84,212,213,120, 12,215,117,216,222,223,195,116, 99,140,102, 62, -207, 69,100,111, 61, 74, 3,188,250,249, 23, 28, 60,252, 8, 7, 15,246, 97, 20, 0, 89, 34,184, 14, 87,167,231,120,250,171, 79, -241,203,203,115,248, 40,112,254,225, 61,130,107, 80,213, 21, 54, 15,238,163,172, 52, 94,126,247, 14,187,199, 71,232,155, 6,239, - 94, 60,131, 8, 43,132,232, 81, 77,183, 17,100,133,207,190,126,132,199, 95,126,142,179,151, 63, 96,180,185,143,239,255,241,111, -232,160, 64, 68, 12, 22,144,164, 61, 9, 66, 96,239,248, 35, 28,126,242, 5,222, 61,251, 1, 87, 31, 94,178, 40,199, 64, 42,141, -122,186,137,205,221,125,108,237,237, 67,232,146, 98, 94,111, 22,104, 22,115, 74,129, 27, 23,176, 93, 15,192, 99,185, 88,161,235, -122,116,109, 11, 4, 75,116, 49,190,212,133, 80,144, 90,195,176, 5,107, 60,157, 96, 52, 38,117,187, 41, 52,138,170,206,133,179, -179, 14,190,245,232,154,134,195, 51, 40,230,210,135, 0, 21,129,224, 60,164, 74, 35,216,196, 59,160,116, 65, 41, 53, 7,104, 36, - 81, 83,207,157,149,187, 51,125, 3,191,187,129, 5, 70, 50, 45,227,133, 96, 7,128,201,135,165,224, 93,177, 74,172,137, 4, 86, -201, 10,113,234,248, 53,239,221, 35, 43,129, 93,186,212,152, 93,225,172,205,163,244, 28,169,137, 33, 79,130,254, 46,250,220, 41, - 79, 60,230,203,147,236,175,252,115,112, 1,145, 14, 79,191,182,191, 78,118,178,192,150, 83,250, 93, 68, 38, 79, 38,157, 11,141, -230, 61, 95,232,150,167, 1,100, 17, 78,133, 20,145,232,104,146,225,108,128, 80,106, 45,130,150, 16,184,105,186,182, 30,128, 66, -169,114,138, 87, 7,195,170,115,216,151,199,236,153,166,207,108, 8, 40, 9,193,231, 9, 0, 31, 33,217,169,148,206,185,200, 23, - 53, 5,194, 68, 8,107,185,216,163,207,167,183, 14, 90, 83, 87, 78, 19,211,130,223, 83,133,200, 12,117,145, 2,119,148,202,238, -131,244, 25,248, 56,140,142,133, 76,169,156, 67, 30,121, 18, 61, 75,254,190,211, 94, 93,240, 24,156,118,253,224,240,146, 36,130, - 19,185,168, 74,221,174,227, 49,186,227, 17,188,179, 14, 8, 52,250,246,108,109, 91, 23, 94,130,239, 20,210,123, 36,203, 31,113, -225, 37, 11, 15, 83, 22, 72,166, 91, 98,232,202,105,161, 31, 50,240,102, 8,167, 73, 43, 16,153,113,221,137,217,160,185, 24, 77, - 22,211, 12,167, 17, 18, 2, 41,180, 70,241,247,193,120,228, 44,236, 84, 3,127, 37,144,192, 85, 72, 9,221,183, 45, 87,207, 58, -251, 56,219,229, 2,202, 84,144,154,201, 73, 34,162, 30,141,177, 92, 44,209,182, 61, 76, 81,102, 32,189,237,122,168,162, 32,132, -157,214,180, 71,144,146, 51,184, 35,103,236,154,252,210,100,145, 6,239, 65,162,143,232, 92,207,228, 56, 78,162,194,176,107, 87, -185,154, 86,140, 6,148, 52,118,207,153,232,220,189,229,221,124, 28,198,236,138, 70,192, 34,221,204, 16, 89,125, 14, 33, 32,194, -176, 11,215, 70,101,159,104, 26,249, 8,164, 75, 6,168, 71, 69, 70, 5,146,237,138, 42,250,201,116,196, 42, 77,112,124,170, 66, - 81,146,205, 66,105,218,151, 59, 99,209,119,150, 31, 4,112,226, 21,141,235, 72,109, 73, 66, 19, 24,112, 87, 82, 96,164, 42, 64, - 56,188,125,241, 26,199, 31,221,199,252,234, 18,167,239, 78,241,248,179, 39,176,125,139,147, 95,222,179,207,152,108,107, 82,130, - 68,136, 0,218,182, 69,215,244, 48,165, 97,124,162,231, 49,182, 68,219,119, 84,109,106, 5,215, 91, 72, 17, 80, 20, 37,180,210, -232,125,192,201,235,183,120,244,228, 99, 28,222, 63,194,247,127,248, 14, 93,215,193, 57,135,178,170, 81, 84, 21,218, 85,139,186, - 46,177,119,184,139,243, 15,231, 28,105,216,145, 85, 69, 43,132,166,163,189, 86,162,251, 97,240,128, 42, 37,208,183, 45,198,179, - 17,172,189,165,162, 81, 18, 94,247,240,222, 46,141,215, 82,117,206, 99,247,164, 75,144, 9, 32,196, 10,211,241,116, 12, 37, 34, -202, 81, 77, 80,164,166,207,150,149,241,108,134,111,127,247,175, 40,199, 19, 28,220,219, 71, 89, 26,132,224, 49, 42, 13,158,127, -251, 51,102, 91, 91,184,185,188, 65,215, 5, 92,157,158, 33,218, 6,211, 73,133,241,108,138,143,127,253, 27,188,251,249, 39,232, -106,132,186, 54,248,238,159,126, 7,219,220,144,154, 95, 2,155, 7, 15,177,125,252, 16,143, 62,123,132, 87,255,250,207,184,190, -186,193,126, 44,112,125,246,150,119,190,169, 83, 32, 14,250,254,253,143,112,239,233, 87,120,243,227,119,184, 62,123, 77,122,129, -241,152,253,254, 51, 76,183,246, 80,140,198,136, 82,225,242,236,134, 46,237,213, 18, 70, 43, 24,163,208, 53, 45,101,160, 91, 75, -144, 25,246, 44,247,158, 16,189, 36,222,145,128, 32, 8,148, 49, 5,166,155,155, 40,170, 17,202,170,164,105, 12, 79,205,156, 15, -112,182,199,252,150,236,141, 49,112,182,128,117,112,118,137,182,105,217,230,166,249,189,167,195,189, 89,181,196,123,119, 30, 82, -218, 12, 30,233,154,150, 69,144,228,118,232,186,150, 15,110,143,232,135,224, 21,193,150,209,144, 48,155,137,194, 38,239, 18,185, -214, 53, 48,169, 59,141,129, 2,103,210,128, 58, 9,145,172,237, 57, 43,124, 8, 29, 25,114,198, 19,201,114,152, 14,164,238,151, -226, 49,145,113,177, 90,203,204, 33, 23,217,214,199,194,152, 48,228, 78,164, 66, 33, 83,191,132,160,203, 90,136, 53, 27, 22, 93, - 14,129,111, 28,173,117,142, 45,246,193,211, 52, 44, 4,238, 34,211,126,153,127,126,169, 32,133,100, 91, 94,204,157,158,231,247, -150, 56,228,142,181, 10,116, 89,164,213,157,214, 50, 67, 95, 66,182,247,234, 53,117,250,208,236, 36, 94, 65,136,116,142,197, 53, -209,224, 0, 58, 26,160, 71,145, 27, 31,136,245,245, 30, 53, 35, 82, 41,152,178,204, 34,201, 44,116, 76, 29,168, 44,184,120, 41, - 96,123,230,171, 39,112,139,144,252,115, 11, 40, 61,100,207, 19, 95, 68,231, 85, 69,114, 18, 37,160,142, 86, 42,219, 91,147, 67, - 65, 10,192,246,221,192, 38,136, 64,136, 62, 67, 92,148,146,112,125,207,202,114,138, 2, 22, 8, 8, 8, 16,209, 35,101,240,144, - 16, 55, 2, 97,136, 53, 77,147, 78,154,236,232,204,206,144,140, 38,150,236,211, 31,124,236, 84, 96, 66, 8, 8,170,103, 51, 23, - 34, 5, 28,137, 72,192, 33,164,244, 63, 38,205,173, 23, 9,108,136, 24,248, 10,158,210,243, 82,227,150,206,193,152, 50,217,215, - 20,244, 58,237, 88,104,180,206,177,150, 70,163,111, 87, 16,202,162,168, 70, 80,198, 32,122,159, 61,173, 96,117, 39, 98, 68,223, -181,208,130, 4, 95,203,155, 57,191, 4, 60, 86,103,128, 64, 85, 21, 76,102, 98, 94, 57, 63, 48,105, 36, 81,148, 6,206, 7, 14, - 48,136, 57, 82, 53, 56, 82,249, 86,163,138,247,198, 68, 15,138, 38,100, 94,111, 8,128, 41, 20,251,216, 69,198,149, 6, 71,204, -121,219,211,151,102, 74, 3,219, 57, 72, 53,228,175,139,181, 49,122,224, 15, 43,219, 44,248,131, 83, 90,163, 46, 52,139,226,124, - 78, 28, 10,222,163, 40, 77,174, 56,201,222, 16, 1,209,161,111, 3,202, 42,117, 4, 36,140,211, 76, 41, 10, 33, 18, 1, 46, 6, - 86,125,151, 8, 33,162, 30,215,148,252, 22, 3, 95,208, 14,174,179,232,186, 30, 63,125,243, 61,238, 63,254, 8,251, 71, 19,252, -242,236, 21,182,118,119,241,213,159,127,129,179,147, 15,152,223,204, 89, 28,131,108,201,208, 90, 33, 50,246, 85, 42,133, 98,205, - 6,179,177, 53,205,107, 4,107, 29,130,243,104,154, 6,189, 53, 48, 90,226,234,236, 18, 49, 42, 60,250,228, 30, 46,207, 46,240, -234,217, 47,100, 99,100,139,152, 16, 2,111,127,121,141, 7,143, 63, 66, 89, 85, 88, 46, 87,144, 34, 98,126,179, 32,155, 88,239, - 16,110, 27, 24,163,184,115, 10, 57, 15,216,249, 6,166, 90, 96,107,127, 27, 74,179,200,101, 78,147,139,122, 92,163, 89,172, 16, -188,135,239, 57, 67,192, 59, 8,153, 70,155, 67,117,106,202, 10,245,168,100, 15, 45, 49,248,151,139, 14, 82, 6,212,147, 49, 46, - 46,174,112,121,126,129, 79,126,253, 91,140,167, 35,148,165, 70,211, 10, 92,159,159,227,236,253, 5,158,124,249, 20,207,126,250, -128,147,215, 39,240,125,131,157,221, 41,170,186,194,222,131, 71, 8,206,195, 71, 96,119,127, 11,207,190,249, 22, 55,103, 39, 52, -222,147, 2, 7, 15,159, 96,118,248, 9, 30,125,124,132,239,254,246,255,198,135, 55,175,240,213,255,240, 63,227,167,223,253, 87, -128,213,253, 66,106,182,177, 4, 28, 61,120,138,227,167, 95,225,151,239,254, 21, 23,239, 95,163,172, 42, 76, 54, 54, 80,141, 39, -168, 70, 99,140, 55,182,160,203, 10,203, 69,139,249,205, 21,150,243, 37, 34, 4,170, 82, 67, 10,160, 89,182,104,150,215,132,187, -100,206, 67,228,164, 49,178, 94, 37, 40,136, 66, 81,141, 48,154,204,136,221, 94, 85,128,160,195,198, 5, 1,219, 81, 7,219, 44, - 87,104, 87, 43,172,150, 43,120,103, 9,253,234,108, 22, 60,201, 68,225,140, 21,130, 50,168,106,147, 35, 39,243,247,152,157, 49, -242, 14, 12, 37,117, 80,150, 19,174,148, 78,217,210,145,113,155, 2,202, 80, 1, 26,185,147, 81, 82,194, 7,199, 99, 69, 12,105, -111,121, 43, 38,216, 33,225, 73, 41,157,188, 80, 89,157,158,210, 30, 61, 81,227,228, 48,130, 79,107, 45,234,142, 7,171, 27,161, -230, 19, 86, 58,193,172,100, 78,151, 20, 89,152,148, 70,181, 46,179,199,227, 90, 18, 88, 12, 1, 85, 89,101, 75, 85,234,150, 98, -230,122,243,197,203,204,138,224, 61,156,103, 71, 76, 74,128, 75,145,176,130,166, 24,222,246,156,120, 38, 73,139, 16,147,159,222, -103,189, 2, 69,157,174,169,164,249,207, 17,156, 17, 63, 16,222, 6,178,102, 86,133,179,245,113,157, 70,135,100,151, 98,215,140, -128,128, 34,248,251, 64,247, 12,180,226,136,146,236,109, 74,129,214,155, 82, 83, 35, 35, 40, 63, 36, 5,244, 36, 39,130,148,180, -218, 75, 94,255,212,171, 41,182,130,229, 44,119,182,188,185, 52,121, 13,195,218, 65, 51,199,222, 20, 58, 95,236,137,221, 47,147, -157,143,197,213, 82, 1,222,122, 40, 25, 33,160,178,179, 9, 89, 36,137,129,252, 7,186, 36,109,144,128,167,188, 13,199, 12,254, -168, 98, 94,105,106,105,184, 72, 50,195,103,198,235,134,100,234, 79, 76,248,180,246,137, 49, 34, 56,186,192,101, 66,231,230, 33, - 66,204,107,170,196,247,207,142,139,212,245, 43,126,206,179,176, 47, 50,228, 39,174,129,211, 84,158, 10,136, 20,222,195, 69,136, - 38,118,176,228, 47, 27, 25,223,233,125,132,140,228,137,173,148,134,245,128, 46, 43, 4,230, 69,135, 72,213, 90,187,106, 49, 50, - 21,164, 50,136,130,246, 42,214, 54,240, 94,210,195, 1,129,182, 35, 40,127, 4,189,120,101, 69,118, 26,107, 29, 87,221,142,120, -190,102, 80,167,199, 96,201,211,206,241,126, 16,148, 81, 29, 50,122,146,141,255, 38,137, 37, 56, 96, 65, 9, 98,185,131, 64, 12, - 89,101, 24,104, 55, 71,127,118, 24, 34, 93,185,211, 15,150,232,109, 62,120, 72,198, 73,166,113,189,229,209, 61,217,226,168, 26, -214, 70,177,199,154,246, 43, 33,103, 81,243,232, 37, 14,135,130,247, 97,240,230, 27,137,209,120, 4, 83,106, 74, 35,242, 36,192, -243, 62,162, 44,201, 86,209,181,224,157, 33, 41,228, 99,140, 56,125,119,130,221,195, 35, 60,252,248, 1, 46,207, 46,241,211,191, -189,192,241,131, 67, 76, 55,166,120,251,234, 29,143,136, 56,147, 93, 72,196,160, 88,173,108,185,232, 32, 37, 60, 21, 42,134,113, -145, 6,171,206,178,117,175,131,209, 52,117,152, 95, 95,226,230,122, 11,159,255,230,115,216,222,226,226,244,156, 69,104, 52,234, -236, 59,139,235,203,107, 28,222, 63, 66,215,117,240,206,162,107, 91,108,223,219,197,205,229,156,127,102,160,107, 91, 56, 71, 32, - 21,197,159,241,252,230, 6,171, 69,203,251, 69,143,190,181,136,158,246,117,109,211, 17,247, 93, 42, 88,171, 96,138,146, 57,229, - 28, 41,107, 72,113,187,119,111,135,139,166, 2, 69,161,178, 7,117,113,187,192,100,115,134,127,251,167, 63, 98,231,224, 0, 59, -251, 59,216,216,172, 96, 93,196,106, 62,199, 79,223,252,136, 79,191,254, 20,167,239, 47,120, 92,212, 97, 54, 51, 24, 79,198, 24, - 77,102,152,108,110,227,197,247, 63, 99,239,112, 15,190, 91,224,252,221, 11,120,215,161, 28, 79,112,239,227, 79,177,125,252, 17, - 84, 89,227,159,254,247,255,130,235,211, 95,112,244,228,207, 48,191,248,128,213,252, 42,131, 73,210,129,126,252,201,231,184,255, -244, 75,252,244,251,127,128,109,111,177,185,179,131,201,198, 38, 76, 89,195, 84, 35,140,102, 27, 80, 74,225,246,250, 6,151,103, - 87, 88,173,104,140,173, 24, 90,209,183, 43,244,171, 57,156,235,216,231, 92,242, 20, 67, 32, 66,113, 26, 33,185, 4, 38,179, 45, - 76, 54, 54,161,139,146, 46,127,126,159,173,165,245,200,114,190,192,114,126,141,102,181,204,182,169,236,115,102,155,153, 96, 86, -117, 58,152,148, 22, 28, 56,194, 34,199,170, 98,113, 23, 80, 20, 5,218,182, 67,219,246,212,149,135,144,195, 72,214,119,190,105, - 34, 38,121, 84,159,160,214, 42,163, 67,233,208,166, 49, 61,237,200,169, 27,241,185,251, 13,140, 75, 13, 49, 64, 75, 13, 31, 1, -111, 45,139,201, 34, 36, 6, 10, 27, 97, 85,185,168, 15, 49,239, 74,215,173, 70, 82,146,126, 36, 41,243, 7,210, 92,204,187,115, -235,124,158, 28,120,102,116,211,138,158, 67, 96,188, 35, 82, 27,159, 93,138, 39, 75,217,206,149,226, 96,185,227,115, 12,226, 73, - 16, 25,242,135,179,162, 94, 25,102,202, 71, 22,126,177,127,221,245, 44,208, 26,172, 79,196,100, 71,142,245, 76,227,247,116,193, - 36,145,113, 2,113,101, 38, 0, 51, 51,242, 78,251, 14,198,151, 67,162,214,206,255, 20,178,149,246,235, 73, 67,161,197,160, 51, - 80, 58, 21, 9,116, 14,230,120, 93, 22,186,165, 84,203,212,100,209, 10,128, 26, 65,145, 83,218, 36, 11, 98, 11,132, 53, 37,123, -226,139, 36,178, 95, 82,122, 15, 9,159, 41,152,199,243,231, 32,224, 29,232, 12,207, 32, 32,100, 7,148, 15, 46, 59, 57,232,169, -185,235,160,128, 20,185,200, 35,254, 72,210, 78, 81, 39,158,246,232,164,211, 42, 56,234,155, 51,229,249,254, 32, 61,130, 97,122, -167,128,133,205, 93,116,188,147, 83, 34, 51,163, 63,229,212, 39,126,129,200,239, 77,200,223, 93,210, 55,104,222,205, 75,214,174, - 12,223,157,200,132,217, 4, 71,211,224, 89,189, 79, 35,167,100,247, 98,190,110,116,116,177,235,178,134, 84, 42, 99, 81, 83,202, - 16,124,128, 92,181, 40,170, 34,251, 33, 5,143,166,132, 0, 66, 20, 40,100,193, 20, 39,201,221,125,207,227, 33,133,162,160, 14, - 22,140,220,115,142,170,174,192,187,231, 52,170, 19, 34,162,107,237, 90,136, 2,141,179,156, 5, 76,169,184, 35, 87, 3,232, 70, - 96, 16,197,113,222,185, 41, 12,161, 44,178,234, 62,162, 44, 73,225, 77, 54,154,152, 99, 84,165,162, 23,167,239, 60,202,146, 58, -224,224, 99, 22,232, 8,118, 9, 72,165, 80,214, 37,217,221, 92, 92,143,184,205, 73,112,169, 90, 53,102, 8,156, 17, 66,162,170, - 13,199, 84, 18, 29,111,181,108,208,181,100, 37,211,172, 14, 77,197, 5,132,198,114, 62, 71, 8, 1,251,135,123,184,189,190,196, -201,235,183,152,110,110,224,233,215, 79,113,117,118,129,211,147, 51, 56,107,209, 54,109,126, 64, 35,232, 97, 15,158,211,174, 66, - 98,218,211, 83, 81, 86, 5,116,160,221,104,211,180,168,170, 10,245,184,192,213,233, 41, 54, 54, 31,225,171,191,248, 26,175,126, -122,142, 23, 63,189,162,207,171, 42,208,119, 61,150,243, 57,220,222, 14,238, 63,186,135,247,111, 78, 16,131,199,104, 58,198,104, - 90,163,109,105,186, 50,153, 77,208,247,150, 0, 28,145, 34, 28,131,119,104, 86, 45,102, 91,179,204, 40,183,182, 71, 81,149,131, -103, 55, 6,218, 39,177,224, 37,143,150, 66, 68, 57, 42,113,244,224, 16, 90, 11, 78,132, 51,184, 60,189, 6,221, 41, 18,191,252, -248, 28, 82, 41, 60,253,245, 23, 56,186,191,131,162,212, 88,126, 56,135,235, 59,104,173,112,239,241, 61,188,248,249, 20,243,171, - 83, 40,225,115,116,237,214,209, 49,174,206, 46,161, 53, 80, 21,192,183,127,252,158,197, 70, 83, 60,254,242,215,216, 57, 56,192, -237, 66,224,245,239,255, 47, 44,175,222,194, 84, 19,220,127,250, 41,254,240, 95,255, 75,166,165,165,124,235,251,159,254, 26,199, -159,124,134,103,127,252, 29,162,239, 48,221,220,198,230,222, 30,132, 42, 32,149,193,120, 54,131,247, 1,151,167,167,184,190,188, -197,114,213,211,174, 58, 68,184,126,137,198,245,100,165, 98,225,146,179,150,187, 7, 64,177,184,108, 52, 25,163, 40, 43,148,117, -141,233,230, 6,237,252,140, 65,215,210, 97,237,251, 22,205,106,137,249,213, 53,218,102, 65, 43, 18,107, 9,100,164,147,118,164, - 32,119, 70, 81,102, 33, 87, 58,176,104, 52,108, 32, 4, 51,224, 99, 96,228, 51, 3,108, 0,116,109, 15,107,195, 90,126, 55,238, - 80,207,146,165, 71,107,157,163, 82, 83,113,156,118,211, 96, 56, 13, 97, 94,193,217, 10,158,247,133, 34,143,174,181,210,112, 41, -143, 90, 8, 0, 84,188,166, 76,132,129, 22,135,124,161, 43,222,181, 39,220,170,100,113, 87,140, 84,120, 17,199, 28,252,217,115, -184, 6, 59, 74, 72,137, 61,136,100,135,221, 41, 29,222,105,178,153,199,238,236,225,167,151,219,231,142, 62,217, 95,243, 46, 59, -195,191,215,132,193,220,169, 57,182,195,145, 45,174,207, 5,135,207, 68, 78, 49,172, 27, 89,116,151, 84,249,116, 97,123, 70,243, - 38, 34, 40, 77, 37,227, 26,150,150,252,216, 22, 62,144, 74,156,214, 17, 97,136,125, 69, 18, 11,167,220,111, 90,167,138,236,215, -143, 48,122, 56,199, 2,187,143,180, 1,199, 35,203, 76,175,139,105,125, 38, 21, 32,124,234, 69,121,205,192, 13,136,210, 16, 74, - 66,229,192,159,200,154, 38,159, 97, 55, 80,131,182,130,100, 25,130,109,207, 92,204, 33,228,201,130, 20,128,139,241, 79, 20,236, -130, 84,243, 18,204,125,119,100, 57, 68,224,120,121, 5,231, 44, 23, 28,128,201,110, 18, 3, 33,117,206, 15, 49, 12,181,145,153, -227, 32, 0,153, 64, 64,244, 89,101, 81,157, 49, 25,243, 45, 5,152, 57, 34,243,133,157, 98,105,165,144, 60,221,137,185,128, 34, - 37,189,203,162, 71, 33, 4,156,119,220, 24, 15,197,229,157, 96, 23, 33,115, 76,175,238,219, 30,138, 5, 27, 66, 72, 88, 86,100, -251, 64, 99,179, 16, 41,245,170,132,132, 52, 37,117, 3,145, 66, 76,162,144,240, 44, 62, 8,193,160,172, 10,172, 22, 43, 40,182, -154, 45,110,151,208, 69,193,127,153, 98,254, 47, 77, 2,172,245, 89,221, 71,176,170,128,182,233,121,164, 77,123,231, 84,142, 80, - 87, 73,169, 93, 33, 50,118, 22, 33, 39,251, 8,250, 62,160, 84,100, 47, 32, 21, 28,100, 39, 0,171,105,101,102,110,167, 42, 71, - 41,201,140,101,218,127, 11, 31,179,224, 36,240,200, 40,137, 95, 82,227, 65,236, 97,197,176, 21,170,226,124,136,232,173,131,237, - 44, 89,102,248, 50, 46, 42, 82, 36,107,222,249,167, 21, 31,113,227, 29,218,166,203,135,148,115, 30,101, 89,146, 74, 28, 49,127, -153,137,215, 76,118, 85,202, 74,254,112,242, 1,187,251,187, 40,171, 10, 55,151, 55,255,141,171, 55,253,177,236, 56,211,252,158, -136, 56,235, 93,115,207,202,202,218,201, 98, 21,119,145, 90, 90,234,150,166,183,105, 55,166, 1, 3,246, 7,255, 63,250, 99,108, - 3,254, 98, 24,240, 96, 96,140,167, 61,221,211,238, 77, 82,107, 33,197, 18, 89,100,237, 91,238,121,247,179,196,230, 15,239, 27, -113,110, 89,128, 32,138, 44,102,230,205,123, 79,196,187, 60,207,239,193,119, 15, 22,216,187,186,143,219,119,111,225,187, 63,124, -199,209,175,107,248, 74,222,105, 55,117, 67,254,127,198,241, 66, 8,164, 65,168,199, 43,130, 96,103, 20, 41, 48,185,152,161, 63, - 40,112,237,246, 77, 24,227,113,242,230, 28, 16,136,118,188,211, 55, 71,120,231,222, 29,204, 38,147, 16,167,192,106, 89, 21,199, -157,105,170,232,189, 98, 21,181,247, 30,245,106,133,157,189, 3,194,161, 22, 53,230, 19, 66,199, 86,171,134,220, 13, 25,225, 99, -179, 60,163, 66, 72, 9,244, 6, 61, 8, 41,113,239,227,123, 24,140, 74, 52,181,198,214,246,128, 67,118,128,233,197, 20, 27, 59, -219,248,250,183, 47,241,163, 63,251, 49,118, 14,246,209, 27, 20,168,150, 21,102, 23,151,176,214,225,227, 31,125,140,197,162,133, -209, 6,203,249, 28,112, 30,109, 99,209,223,232,163,174, 13, 94, 61,125,129, 27, 55,182,240,252,225, 67,212,203, 37,198, 59, 87, -112,235,222,187,216,220, 26,225, 98, 42,240,244,193,175,176,186,120, 3, 41, 4,110,127,242, 99, 60,255,195,151,176,166, 37,244, -169,167, 81,219,181,247, 62,194,141,251, 31,224,197, 31,190,128,146, 30,155, 87,174, 96,184,181, 67,130, 35,149, 32, 47,251, 88, -205,103,152, 93, 94, 98, 49,175,209,180,244, 96,215,213, 10,158, 61,182, 73,194, 30,111,169, 32,189,224, 3,220, 96, 48,218, 68, - 86,246,184, 91, 72, 81, 14,135,108,247, 73, 80,215, 6,122, 86,147, 38,102, 85,161,105, 42,232,166, 37,247, 1,191,215,144,148, -186, 21, 16,147,225,179,110, 57,188,133, 14, 82,178,203, 4, 68,175, 88,251,243, 73, 34,162,115,132,124,203, 10,109, 75,187, 72, - 99,153,228,103, 45, 43,226, 93,228,147, 59,238, 98,211, 44,141,100, 46,197,151, 8,133,172,116,162, 84, 90,211,216,152,205, 16, -166, 0, 70,107,206,108,183, 81, 72, 22, 26,136,208,157, 82,175, 99,163, 15, 57,100,117, 43, 37, 98, 83, 65,142,148,148,145,181, -235,224, 24, 48,197,142,178, 43,140,214,188,183,117, 29,251,157, 99,179, 20, 59, 48, 56,216,141,245, 66, 30, 82, 40, 88, 71,226, - 61,218, 73,187,136,245, 21, 44,146, 10, 30,115, 26,195,202,152, 80, 23, 70,196,206, 27, 34, 5, 58, 27,187,229,128,207, 13, 22, - 68,203, 66,198, 64,224, 51,166, 75,200, 19,252,251,114,156,116, 22, 34,181,105,103,237,215, 20,223,230,173, 11, 33, 20, 39, 65, -189,110, 12,137,225, 18,149,197,179, 66,172,161,178, 45,175, 75,211,148,166,127,225, 53, 72, 25,236,148,107,223,151, 11,242, 96, -219, 10, 86,227, 16, 98,101, 45,193,197,242, 44, 69,211,208, 58,133, 40,146, 34,158, 87, 81,180,236,124, 92, 63,133, 4, 56,203, - 2,100,185, 46,246, 11,224, 35,103, 67, 8, 48,140, 15, 90, 41, 42,220, 32, 82,178, 52,243, 94, 61, 20,114,130,155,168,144,154, - 25, 45,199,236,227,239,252,249,136,211, 94, 33, 68,116,180,144, 45,218,162,213,154,137,143,158, 5,180, 33, 38,152,184, 29, 97, - 58, 22, 86, 73, 34, 94,206,157,216, 83,112, 62, 65,152,158,120,248,183,248, 46, 62, 40, 30, 41, 1,135, 58,117, 47, 4,234,170, -137,161, 42,212, 85, 10, 56,163,153, 21, 77,213,210,114,177, 64,217, 7, 20,199, 14,166, 60, 42,150, 82,146,111,214,203, 40,106, -112,108,129, 18, 74,195, 57,131,182,182, 4,253,176, 52,174,234,245, 83, 88,215,249, 18, 85,154, 64, 88,199,214, 42, 17,109, 36, - 36, 54,145,104,219,182,195, 49, 66, 66, 42, 11,107, 13,242, 44,137,227,247, 52, 75, 72,172, 39,120,223,147, 42,180,173,225, 93, - 11,121, 70,137,167, 30, 0, 12,140,224,243, 68, 80,202,178,132,118,239, 89, 18,225, 57,142, 83,215,232,162,225,104, 89, 86,144, -135,144,145, 0,186, 80, 74,194, 41, 9, 41,211, 88,221, 11, 33,145, 23, 52, 82,146, 0,145,234,188,135,110, 45,172, 49,140,143, - 37,173, 2, 5,148, 36,232,245, 89,248,197,190,116,170,218,200, 3,106, 12, 21, 83,240, 22,175,158,190,196,254,225, 30,182,247, -182,113,113,122,134,151,143,159, 66,165, 5,110,223,187,139,179, 55,175,241,236,241,139, 72, 33, 50,198,162,169, 91,222,163, 91, -180, 53, 21, 88, 66, 10,152,150, 98, 55,203, 94, 17, 63, 68, 69, 47, 71,154, 37,128,112,200,138, 18,211,139, 11,220,124,247, 22, - 84,146, 98, 54, 89, 0,222, 98, 49,155,195, 57,224,252,108,130,195,155,135,120,241,248, 57, 22,243, 21,122,131, 18,243,233, 34, - 34,117,219,150, 82,240,106, 75,239, 69, 94,100,112,166,133,243, 18,195,113,129,201,197,156,191, 23,231, 44,199, 0, 4,122,239, -133, 32,133,109, 94,100,184,118,235, 26,198,219,155,104,235, 26,101,127,128,162,204, 96,116,139,186,106,201,133, 33, 5,174,221, -186,134,209,214, 22,242, 50, 35, 23,193,241, 41,140,241,104,170, 10,131,241,109,188,124,113,142, 55,207, 95, 64, 55, 21,117, 51, - 82, 97,188,179,141,199,223, 60,197,230, 70,134,201,201, 27,204, 47,207,177,127,253, 58,110,221,123, 15,194, 53,104,108,129,111, - 31,124,137,122,250, 18, 66, 8,244,198,251, 40,122,125,124,247,226,219,184, 6, 18, 82,225,218,123,159,224,238,167,159,226,241, -151,191, 6, 0, 92,185,113, 27,229, 96,128,106,213,192, 11,129,188,200,177,184, 60,193,124,186,192,116,178,130, 23, 18,206,104, - 52, 77,197,170,126,135, 68,121,104,175,144,164, 34,142,135, 71, 91, 59, 40,202, 30,146,188, 7, 15,133,162,223, 67,154,151,104, - 27,141,186, 54, 48,139, 58,218,118,172, 53,168, 86, 21,140,110,249, 0,118, 81,120, 20,216, 85,244, 44,122,246,183,211,129,170, - 91,222,239,242,239, 63, 16,253,178, 92,118, 59, 60,136, 8,101, 82, 82,178, 0,182,129,118, 38,226, 48, 73,196,229,226, 90, 43, - 20, 4,193, 74, 21,138,216,208,233,136,181, 81, 52, 93, 20, 84, 12,132,112, 36,218,187,187,104,113,242,140,215,140,132, 57, 65, -140,247,132,197,179, 93,164, 43,171,217,185,107,148,107, 93, 49,229, 40, 20, 93,183, 25, 71,193,116,120,251,112,254,160, 99,155, -135,160,145,160,196,118, 14,111, 69,145, 38,172,130,247, 28, 35,234,227, 56, 21, 17,158,133,117,250, 87,100,219, 39,124,177, 16, -219,194,217, 22,214, 52, 29,131, 29, 93,154, 28,209, 40, 69, 12,201,161, 2, 42,139, 42,255,112, 73,202, 88,188,136, 24,225, 44, - 61, 53, 59, 20, 51,205,144, 22,246,247,203, 8, 79,177,209,190, 22,118,246,142,237,104,225,194, 14,247, 4, 17, 44,147, 40,250, - 13,207, 0, 77, 73, 12,114,230,138, 68,177,108,162,232, 44,224, 64, 19, 23,126, 63,142, 97, 92,144, 12, 68,146,112,130, 83,222, -132,100,253, 83, 23,217,170, 50,201,168, 86,254, 12,121, 7, 47, 37, 44, 58, 75, 97,154, 42, 52,181,101,110, 59, 56,103,158,226, - 83,157,227,169,141, 84,252, 59, 0,148, 32,198, 9,216, 70, 45, 84, 22,243, 6, 98,230, 7,175, 60,188, 23,240, 74,112,178, 90, -135, 47, 22,204,155, 8,152, 92,163, 27,184,176,198,145,226, 45,124,113, 40, 32, 73, 56,137, 40, 0,246,126,253,107, 98,141, 41, -192, 69, 3,115,232,201,101, 2,218,255, 7,174, 0, 55,111,214, 58,168,255,238,227, 59, 63,239,178,208, 73,120, 99,152, 8, 21, - 30,164,182,165,125,170,209,134,121,210, 33,120, 65,160,213,186, 19,195, 40,178, 44,101,121,142,162,223, 7, 98, 76,169, 92,179, -163,177,133,198, 24,228,101, 22,253,135,158, 61,148, 34,170, 10, 59,175,159,224,139, 90,188, 69, 40,242,232, 68,242,244, 11, 23, -107,213,164, 20, 96,187, 73, 96,183, 75,174,216,193, 35,254,142, 91, 44,214,194, 28,194,195, 29,254,126,160,177, 5,192, 5, 89, -227, 36,131, 60, 18,142,139,164,192,129,176, 23, 11,194, 9,176,122,222, 59,135,186, 38,161, 89,181,106,216,207,239,226,247, 15, -127, 38,178,208,249,225, 12,104,217, 36, 77, 57, 11,185,203,236, 85, 74, 96, 49, 95,192, 67, 98,231,202, 46,234,213, 10,243,233, - 4,199, 47,143, 48,218,218,193,245, 91, 7, 56, 61, 58,129,110, 27, 34,144, 89,170,102, 45, 7,212,232, 86,195,106, 98,172,143, -198,253,232,115, 15,221, 74, 96, 51,215, 28,128,242,252,209, 11, 28, 92, 63, 32,141, 65,211, 96, 57,159,193, 90,129,225,168,143, -254,112,132, 52, 21,104,106,141,141,173, 1, 38,231, 19, 36, 89,129,249,228,156,119,180, 29,167, 64, 74,170,128, 7,227, 13, 12, -134, 61,172,230, 75,232,182,197,173,119,174,227,232,197,107, 92,158,207, 99,210, 91, 86,228, 72, 18,129,241,230, 24,109,221,224, -131,207,238,163,109, 61,137,228,242, 12,214,106,204, 47,151,112,206,160, 55, 32, 72,204,198,238, 54,154,214, 35, 77, 8, 14,244, -229,191,254, 14,155, 59,219,232, 13,250,152,205, 26, 92,158, 93,224,245,227, 71,132, 68,174, 91, 92,191,251, 46, 78,143, 46,144, - 39, 22,189,204,226,201, 31,254,128,107,119,239,225,206,251,119,177,154, 76, 32,139, 13, 60,127,252, 26,171,179,167,144, 32, 32, -202,189, 31,253, 12, 79,126,247, 11,180,245, 50,138, 41,223,249,228, 71,184,247,249,103,120,246,224, 11, 40,165,176,123,120, 13, -121,175,143,229,124,201, 12,135, 6,243,139, 83, 76,207, 47, 49,155, 46, 81, 55, 6,109, 85,197,108,113,103, 26,250, 12,242,251, -156,102, 57,134, 27, 27, 24,109,108,160,236,143, 72, 16, 39, 83,100,101, 15, 66, 16, 66,121,185,172,176, 90,172, 80, 87, 21,146, - 68, 98,181, 92,162,173,170, 72, 39,243,188, 59, 14, 66,195, 36, 80,217,120,244, 27, 49,175,146,194,149, 28, 83,195,194,161, 27, - 88,232,193,218,149,114,232,138, 99,177,207,106, 89,113, 2,162,140,121,225, 97, 12,166,216,195, 29,158, 87,143,110,135, 74, 86, - 78,217, 89,177,162,114,157,189,216,108, 65, 90,207,172,118,188,211, 50,214, 67, 72, 58,163,224, 29,100, 12,246,176,112,206,112, - 34, 29, 56,225,138,185, 12,232,136,107, 50, 38, 98,137,181, 24, 86,196,162, 37,194,170, 44,117,111,193,130,228, 29, 98,242,156, - 84, 10,137,234, 40,120,116, 94,209, 25,170, 56,136,133, 28, 33,221, 24, 62, 48,250,169, 8, 48, 72, 84,202,158,127,196,125,185, -115, 13,253,215,191,157,244,230,187, 96,238,232,185,239,254,185,143,202,113,242,163,103, 17, 50, 20,184, 14, 33, 85,204,152,110, - 53, 26,214, 2, 65, 11, 17,206,187, 48, 18, 14, 13,150, 16, 10, 9,159, 11,129,247, 30, 2,181,162,176,142,221, 63,235,226,184, -184, 71, 86, 18,150,225, 88, 97, 93, 41, 24, 62, 70,127,173,162,181, 45, 0,199, 44,139,251,194,170, 34,124, 78,163,194,156, 11, - 75,201,163,111,199, 7,204, 58, 24,140,175, 59,242,167,115,250, 94,244,174,139, 0,114,233,112,192,221,207,148, 32, 77, 20, 79, - 55, 85, 44,226,194,101,179, 78,117,147,129,164,232,232,251,208,159,243, 44, 66,237,182, 45, 2,235,105,187, 29, 74, 55,128, 93, -169,224,246,107, 86, 78,185,166,127, 8, 96, 28,177, 70,210,235,108,214,241,125, 8, 22, 78,239,161,254,230,243,123, 63,119, 14, - 16,124,185, 82, 88, 67,120, 81, 34,218,202,172,115,220, 93, 26, 40,153,176,165,139,195,238,153,209,174,141, 67,145, 43, 52,181, -198,120,107, 27,123, 87,247,161, 91,141,186,170, 24,172,224, 98,119,238,128,152,208, 22, 66, 8, 66,213,155,102, 73,204, 56, 79, - 18,197,190,110,242, 29,210, 78,221, 71, 49,154,148,212, 69, 19, 28, 71,118,126, 82,116, 2, 11,231,232,123,133, 3, 41,116,172, -214, 56,126, 64, 68,164, 69, 57, 30,213,123,142,169, 12, 29,134,179, 62,142,123,214, 67, 39,164,146,209,194, 17, 46,113,240,142, -196,104, 11,221,104, 26,123,183, 38,230,173, 19,241, 45,137,235,141,162,200,248,161,167,175, 91,148, 57, 71,205,242,229,238, 56, -162, 86,144,234, 51, 77, 85, 20, 91,172, 22, 43, 84,203, 26, 59, 87,246,224,140,198,106,177,192,197,233, 41,154,198,225,163,239, -127, 4,107, 53, 86,139, 85,247, 51,146,247,133, 80,178, 82,144,221,139, 49,134,180, 30,161, 98,167,170, 26, 76, 47, 23,104,170, - 10,144, 25,122,165,196,139,167, 47,113,112,227, 26,122,253, 18,147,179,115, 90, 45,100, 5,140, 54,216,189,178,143,197,116,138, -221, 43, 59,152, 93, 78, 96,140,160, 12,238, 86, 71, 27,144, 49, 97,215,234,145, 21, 61,236,236,109, 98,114, 62, 69,181, 92,225, -250,237,171,120,245,236, 21, 22,179, 5,211,166,232, 18,241,222, 99,123,119, 19, 91, 59, 99,228,101, 9, 15, 79,234,110,239, 80, - 45, 87,104, 27,210, 74,204, 39, 83,140, 54,199,112, 62,193, 96, 88, 64,183, 53,190,250,197, 23, 88, 45, 87, 24,109,140, 0,149, -227,226,244, 18, 47,190,251, 22,213,124,134,106, 89, 99,107,111, 31,101, 47,199,106,213, 96,103, 51,195,171, 39,143,113,120,247, - 30,246,174,236,224,248,249, 51,244,183, 15,112,121,122,137,201,217, 57,164,157,193, 89,141,131,119, 63,130,109, 91,156, 60,255, - 22,240, 30,195,241, 22,222,249,228,135,184,253,193,251,120,250,224,247, 40,251,125,236, 28, 92,133,115, 36,220,115,166, 69,189, -156, 99,122,118,130,203,179,115, 44, 87, 6, 77,107,225,116, 75,227,108,103, 96, 77, 27,227, 73,243,162,192,112,188,129,254,112, -140,178, 63,128, 80,212,197,120, 86,191, 11,198,186, 86,171, 58, 70,125, 54, 77,139,106, 73, 34,184,182,105, 33, 19, 5,168, 52, -218,153,200, 11,108, 33,147, 16,184, 33,184,123,113,112,158, 5, 87,150, 70,232, 49,249, 47, 77,249,210,162, 75,126, 48, 28,112, -103, 41,163,200,149,242, 13,124,116,109, 68,215, 8,119,161,129,239, 79,194,174,128, 17, 37, 17,149,231,238, 56,116, 92,186,109, -105, 95, 25,237,143,170, 99,189, 59,207, 59, 79, 5,169,114, 62, 68,109,188,144, 98, 39, 99,130,165, 77, 70,171,103,188, 4,189, -131, 74, 56, 87, 60,248,158,101,200,187,150,220,109,170,181,172,190,198,229, 0, 0, 32, 0, 73, 68, 65, 84,130,200, 69,219, 44, - 47, 94,249,245,228,113,191, 29,138, 36, 64, 69,192,147,247,228,151,175,235,154, 95, 35,249,163, 29,191, 22,107, 53, 18,149, 34, -205, 10, 90, 3,176,242,220,152, 6,186, 93,145, 86,136,153,222, 42,234,111,186, 8, 89,110,159, 34,126, 54,140,123, 37,127, 54, -210, 44, 67,154,102,111, 1, 91,162,163,151, 69,131,148,232,215,240,153,199,174, 36, 15,116, 91, 26,201,103, 84, 78,226, 88, 46, -244, 67,204,104, 0,134, 37,105, 26,197,196,105,146,118,196,180, 53,139, 21,233,205, 72, 81,239, 57, 46,184, 43,134,232,126, 9, - 5,149,224, 98, 47,224,126,195,229,253, 54,217,111, 77, 40,103, 76, 92,221, 80, 50, 27,243, 9, 44,211, 67, 89,215, 69,157,172, -103, 46,188, 99, 4,111,232,188, 93,188,235,168,169, 73, 25,172,163,162,112,149,196,162, 29, 80, 77, 37, 50,218, 12,131,242, 60, -176,225, 3,181, 47, 92,240,225,247, 64,192, 28, 78,239, 20, 62, 70,184,146,194, 95,118, 65, 99,113, 13,229,209,173,204, 69,215, -193,179,109, 77,188,197,192, 23,111, 33,132,213,223,124,126,255,231,209,182, 16,186,237,240,129, 89, 99,178,211,159,233,124,117, -214, 1,131,113, 31,166, 53, 12,165, 80, 8,233,130, 2, 30,203,197, 2,179,233, 18,229, 96,136,253,195, 43,176,124,224,132,138, - 48,196,249, 81,236,159,139, 66,157, 32,142, 8, 59,139, 16, 63, 25, 46,227,132,149,213, 97, 60,187,230,106,141, 54, 57,201,151, -185,209,102, 45, 76,190,235, 10, 2, 39, 55, 88,228,156,113, 93, 56,138,113,209,150, 17,130, 36, 66,197, 25,118, 25,132,104, 37, -225, 68, 0, 37, 80,183, 78,222,207,166,106, 57, 31,222,172, 1, 46,168,232, 8, 31,232, 80,105,173,255, 76, 68,205,163,241, 34, - 29,172, 9,172,161, 17,127, 0, 33,132,170, 63, 88, 53,156,117, 48,186,193,229,249, 4,219,251,251,232, 15, 10,172,230, 75,212, -213, 2,199,175, 79,113,112,227, 38,174, 94,223,199,249,241,121, 12, 82, 8,149,127,150, 37,196,178,214, 52, 69, 0,128,186,226, -157,243, 98,197,163, 59, 58,136, 54,119,118, 49,189, 56,199,217,201, 37,118, 15,246, 48, 24,245,112,118,116, 2,231, 37,250,131, - 30,154,198, 96,107,103,136, 44, 47,176,156,205,161, 53,160,155, 21,116, 75, 89,244,180,163, 83, 48,218,146,170, 93,166,216, 61, -216, 65,189,170,161,155, 26, 87,174,237,225,197,163, 23, 56, 59, 57,143,163,197, 32,226,185,249,206, 33, 70, 27, 3, 92,156,205, - 24, 93,235, 0,111, 49,189, 92,208,248,210,181, 80, 73,138,254,104,128,182, 53,144,176,120,242,205, 51,252,254,151,191,198,193, -205,235, 72,139, 18,167,175, 79, 97,173,197,235, 39, 79,200,114,153, 21,248,232, 7, 31,227,233,183, 79,113,120,109, 27,182, 93, -225,224,214, 45,100, 10,120,240,171, 95,225,230, 7,159,226,244,205, 49, 46, 47, 43, 36,152, 35,145, 10, 69,127,128,171,119,238, -227,201, 23,255,202, 24,218, 61,220,249,228,251,184,254,206, 29,188,121,252, 29,198,219,219, 24,108,108,161,174,106,204, 47, 47, -176,154, 78, 48,187, 60,195,244,252, 4,243,217, 2,181, 86,108,199, 1,148,240,240, 86,195,123,218, 91,247,135, 35,108,110,111, - 99,184,185, 9,149,150, 80, 73, 22,243,207,165,162, 75,217, 26, 11,109, 61,211,221, 2,231,160, 37,145,226, 96,136,222,112,140, -254,198, 54,242,222, 8, 66,165,112, 70,243, 88, 84,210,251,187, 86, 52, 59,215, 93,188, 97,183, 76,251, 80, 65, 28, 8,246, 43, - 43,149, 96, 48,236,211, 1,206,207, 64, 93, 53, 88,204, 22,145,103,238, 61, 61,163,186,109, 72, 96,154,132, 56, 96,234,196, 2, -159, 33, 32, 86, 67,232, 72,240,165,119, 34, 50,183,102,243, 66,236,224,233, 2, 79, 1,208,228,128,246,179, 14, 64, 23, 26, 19, - 68, 99,193, 58, 37,184,128,143, 52, 46,165, 32,101,218, 49,179, 89,132, 20,120,236,225,194,164, 84, 50, 18,225,218, 72, 33, 35, -171,162,146, 10,105,154, 33, 81,148,156, 24, 83,212,194,193,202,206, 1,231, 60,180,110,187,231,148, 37, 98,134,153, 2, 73,154, - 83,134,124,156, 94,182,176,182,133, 53, 93,228,106,119,110,137,216,235, 69,184, 84,180,159,117, 23,100,216,237,167,105,198, 22, - 60, 23,131, 76,194,104, 87, 5,240,144,209,107,136, 82, 22,205,114,215, 25, 38,117, 89,150, 69,101,125,196,183,134, 16,175,181, -240,173, 44,207,120, 18,154,196, 34, 34, 9,172,247, 64,157, 11,189,132,144,164,226,142, 28,125,106, 36,194,138, 36, 20,123, 88, - 31, 41,135,137,146, 39, 87, 81, 32, 13,134,230,131, 10, 58, 31,147,236, 8, 84,197, 41,154,108, 41,148,188,147,150, 17,112,131, -184,122, 13, 52, 56,114, 12,100,145,114, 24,168,124, 33, 98, 55,236,210, 73, 15, 96, 58,244,182,119,172,244,183, 81, 32, 26,132, -210, 97,141, 20,252,231, 42,192,207,248,210, 15,175, 49, 18,129,227,223,119,111,209, 76,197, 26,109,181, 19,138, 50,108,200,135, - 0, 29, 17,233,138,234,175,191,247,222,207,195, 33,159, 50, 54, 84, 8, 9,190, 51,200, 95,169, 13,143,151, 17, 1, 4,121,145, -147,141, 45,170,205,187, 12,227,144, 83,110,140,193,106,185,192,244,146, 44, 61,251,135,251, 28, 3,186,138, 56,200, 32,186,176, -142,246,204, 20, 85,216, 61, 28, 89,158,196,135,178, 40, 11,238,100, 51,246, 93, 50,194,145, 63, 32, 42,236,107,172,139,251, 89, - 18,106,173,193, 5, 68, 7,160,161,106,207,161, 40, 67,192, 74, 26,225,251,228,179, 94,247,187, 34,238,134,194, 88, 47, 97,155, -131,181,142,240,157,173,102,150,188,125,203,195, 75,214, 61,172,165,253,216,168,109,112,214, 70,212, 97, 83, 53,145,157,236, 61, -208, 31,148,124, 96, 25,172, 22, 43,142,148, 37,111,113, 16, 96, 4,171,131,110, 91, 92,156, 93, 64,169, 28, 87, 14,247,112,121, -118,129,197,108,134,163,151,175,208,106,137,251,159,220, 71, 83, 45, 49,155,204, 32, 0,148,189,156,252,236,222,193,180, 6, 77, -211, 98,181,168,176, 92,172, 80, 85,117,196,204, 38,105, 18,187,200,157,253,109, 28,189,124,131,229, 98,133,205,157, 45, 12,199, - 3,188,124,246, 10, 89, 94,192, 91,131,114, 48,160,175,233, 52, 22,139, 22,186, 93, 97, 62,153,118, 92,110, 77, 64,150, 36,203, - 33, 85,130,173,221, 45,232,182,197,228,124,130,189, 43, 59,120,246,232, 25,166, 23,211,136,250, 36, 1,154,195,247,126,252, 1, -206,142,207,209,212, 36,116, 20, 82, 98,181, 88,160,170, 12,202, 94,134,233,249, 57, 84, 90,162, 63, 44,225,172,193,244,114,138, - 95,252,215,127, 64, 85,213,248,232, 71,159,163,173, 45, 22,139, 10,179,179, 83, 44,231, 43,120, 41,241,217, 79, 62,199,235,199, -143,177,123,245, 26,110,222,218,197,112, 99,132, 87,223, 61,194, 31,254,237,215,248,248,167,127,138, 55, 79,159,161,110, 20,164, -157, 33, 81, 30, 42,205,112,253,254,199, 56,122,244, 0, 74, 41,108,237, 95,193,173, 15, 63,193,104,107, 19,179,179, 99,108,238, -239, 35, 45, 74, 76,206, 47,112,252,236, 25,166,103, 39,152, 93,156, 97,181,152,163,213, 30,173,205, 34,224,137,114,125, 40, 23, -188, 28,140,176,177,179,143,225,230, 22,100,146, 3,130, 66,143,218,150,236, 98,253, 65, 15,105, 86,160, 24,140, 32,147, 2, 42, - 45,144,247, 70,128, 76,225,124, 2,235,147,152,144,216,214, 75,172,230, 83, 52,171, 41,218,122,201,105,135, 50,142,223,227,152, - 50,164, 47,198,157, 97, 39,214, 36, 49, 83,202, 4, 45,133,225,120,128,222,112, 16, 17,204,100,185, 36,140,112,216,111, 7,149, -121,240, 63,211,168, 53,141,160,148,176,139,149,188,135, 15,137, 97, 82,201,181,241, 54,141,207, 3,139,187, 3,177,112,192,137, -204,227,179,225,156,129,247, 58, 62,103,214,248,184, 14,148, 66,118, 7,124, 72,100, 99, 69,177,103, 64, 86,184,112, 2,250, 51, -230,136,115, 83, 78, 60,137, 96,145, 99,128, 73, 0,230,168,132, 69,131, 10,130,139, 19, 1, 25, 15, 99,173,153, 24,199,211,132, -160, 82,247,156,208, 37,164, 64,150,151,244, 51, 50,175,220,232, 6, 70, 87,111,173, 19,215, 17,214,235,227,241, 40,144,242,126, -205, 50, 5, 22, 38,166,132, 47, 13, 40, 87,190, 20,173, 49, 72,148,138, 77,134,181,250, 45,194, 91,154,166,112, 76,126,164,105, -161,138,159, 9, 26,227,119,145,179,105,154,208,185,144,165, 76,251,148,113,114, 17, 68,101, 49, 73, 45,224, 92, 67, 17, 23, 19, - 51,101, 36,176,169,128, 13,231, 41,128,136, 36, 24,250,247,146, 68,114,177,193,223, 43,172,107,172,139, 23,171,209,134,154,209, - 48,241,101,182,186,247, 54, 22,101,235,132,191,216,125,243,248, 61, 88, 29, 3,180,135, 62,251, 50,174,104,128,128,123,117,156, -147,160,162,179, 42, 10, 16,215,198,243, 42,104, 15,156,225,189,191, 71,192,228, 19, 4,108,109, 30,207,133, 1,173, 21,124,252, -126, 33, 35,190, 35,198, 5,148, 45,253, 30, 3,102, 57, 38, 43, 5, 12,173,148, 72,194,155,224, 29,141,212,194,152, 39,176,217, -121, 76,207,246, 7,122, 48,154, 86, 35,105, 53,188,108,145,229, 25,178, 60, 35, 91,152,117,208,198, 34, 97, 98,158, 74,168,171, - 18,176,120,241,248, 9,164,202,112,245,198, 33, 54,183, 55,113,122,116, 74,233,101,193,203,152, 38,176,142, 70, 87,109,211, 34, - 73,105, 47,164, 91,205, 5,132,231,194, 35,137,132,178, 48, 57,114, 33,103,214, 3,186, 49,200,178,224,211,228,168, 84, 14, 44, - 80,137,236, 34, 8, 5,229,162,135, 3, 73,113,126,119,168, 6, 3,127, 58, 48,218,165, 16,104, 26, 3, 41,124,156,155, 52,117, -139, 36, 75, 99, 32,130, 19, 54,126,152,171, 21, 17,142, 90,246,129,135,110, 31,232, 24,242, 89,158, 80,132,165,146,168,150, 76, - 24,242, 6,222, 73, 24, 3, 12,199,212,189,247,250, 5,230,211,121, 76, 95,211,186,229, 42,156,130, 22,218,166,141, 86,152,147, - 87,207,177,156,111,226,206,251,247,241,234,233, 99,188,121,113,132,151,143,191,197,233,155, 55,248,224,179, 79,176,177, 53,198, -183,191,127,200, 15,134, 97,132, 46,117,124,117,221,196,228,181,237,221, 45,244,250, 61,148,174, 7,153,150,152, 77,102, 72,146, - 29,108,108,142,112,113, 62,195, 87,255,246, 5,110,190,123, 27, 31,125,254, 62,254,240,229, 99, 92, 61,220,199,155,231,175,209, -255,240, 61,100,121,142,106,113, 2,103, 52, 38, 23, 23, 44,168, 34,174,184,169, 43, 64,164,208, 6,120,253,252, 20, 69,161,176, - 90,174, 80, 87, 13, 86,179, 25, 46,207, 79, 81,148, 3,200, 36, 69, 94,246,112,237,230,117,212,171, 26,151,103, 19,140,182, 54, - 96,180,195,246,118, 15, 47,190,123,138,114,184,129, 44, 19,232, 13,123, 40,250, 5, 86,139, 26, 2, 22,223,126,249, 13, 38, 23, - 23,184,125,239, 62,146,172,196, 98,122,142, 44,207,241,250,226, 18, 42, 77,112,229,218, 1, 36, 12,146, 98,136, 79,127,116, 15, -237,114,142,127,250,191,254, 22, 71,207,159,224,135,127,245, 55, 56,122,250, 12,218, 42,212,245, 12,131, 92, 35, 47,123,232,111, -238, 34, 77, 36, 70, 27, 35,136,237, 77, 92,189,115,151,118,229,109,133,225,214, 46,172,213, 56,126,246, 24,199, 47, 95,160, 94, - 46, 96,218,154,182,122, 34,135,151,228, 44,144,240,144,194, 66, 41,135,254,112,140,254,120, 19,105, 65,162, 55, 10, 72, 34, 5, -119, 62, 8,118, 43, 82,255, 46,170, 6,122, 66,216,216,197,108, 10,219,214,144,138, 46, 88,235, 40, 25, 43,203, 19,142,149, 12, - 41,133,164,138, 38, 59,140,141,105,130, 84, 40, 43,134,153, 56,230,102,139,104,103,163, 75,139,152,214,101,175, 92, 75,237,162, - 34, 53, 20,229,225,114, 9,201,101, 16, 64,146,101, 16, 96,244, 37,186,216,212, 46, 93,143, 38, 6,100, 71,210, 16, 49, 86, 82, - 68,101, 51,224,226,232,221,180,150,213,225,105,164,172,145,100, 73,199,110,149, 70,163, 84, 36, 43, 25,188,245, 96, 31,178,137, - 23,161,243,221, 97,174,164,128, 76, 18, 18,148,113, 91,165, 20,173,180, 40, 26,154, 14, 95, 66,197,202,200,237, 8,148, 54, 33, - 2, 28,139, 52, 8,172, 27,163, 66, 66,209,179,219,241,239, 77,252,122,222, 59,100,217, 32,138,239,192, 29, 37,145,226, 92,156, - 40, 70,168, 73,156,242,185,152, 24, 22,109,109, 66,197,208,156, 32,214,234,244, 64,157, 21, 79,241, 10,211,114,243,224,226,247, - 10,151,137,138, 98, 96,199,238, 32, 25,168,105, 28,136, 34, 3, 99, 0, 29,179, 92,196,156,119,143, 44,149, 49,143, 93, 73,209, - 89,241,140,133, 72, 21, 60, 67,101, 84,146, 64, 59, 48, 33,178,139,196,142,124,124, 19,108,192, 50,250,211,131, 37,205,179,123, - 65,128,126, 86,203,163,104,103,233,236,215,173,142,161, 44, 33,119, 97,125,231, 28, 58,106,173, 91,178, 82,231, 42,174,167, 58, -240,144,138,220,255,240,255, 45, 76,220,133,211,221, 64, 32, 53,239, 16,161, 68, 36,250,211, 76,129,163, 75, 94, 90,194,254,122, - 96, 77, 88, 29,194, 90,120,204,174,130, 40, 92,172,241, 29, 2, 78,214,114, 39,206,200,239,183,130,118, 68, 23, 65, 44,197,154, -163,130,232,139, 9,120,252, 98,172,129,144, 52,134, 14, 16,128,245,220, 97, 10, 79,113,108,237,242,168,150, 43,130, 19,100, 36, -248,128,183,236, 49, 76,209, 86, 75,228,101, 1,107, 13,227, 87,233, 23,215,214, 21, 94, 60,126,130,178, 63,194,245, 59,215,177, -154,207,113,126,122, 14,107, 61,169,186, 25,254,146,112, 5, 31, 72, 77, 90,183,124,177,211,248,173,236,147, 66,147,216,225, 65, - 96,227,185,226,108,187, 17, 60, 87, 66,121,158, 50, 27,218,241,254, 67,178,114, 52, 89,243,215, 34, 70,128,134,191,159,231,164, - 56, 15, 62,245,162, 76,121,106,225,216,206,166, 98,116,104,128, 70,144, 96,131,194, 74,170,101,133,166,161, 49, 92,146, 38,112, -181, 91,219, 91, 9, 44,102, 75,138,187, 76, 21,119,228, 52, 98, 47,122,189, 24, 59, 89,148, 25, 91, 60,136,197,236,172, 69,150, -166, 92, 29,174,161, 12, 25,224, 1, 8,172,230, 19, 60,252,253, 28,119,238,189,139,254, 96,128,151, 79,158, 67, 74,135, 7,255, -246, 43, 92,187,115, 23, 63,254,139,159,226,193,175,191, 64, 93, 53,164,110,150,134, 68, 61, 86,199,196,174,201,249, 57,135,182, - 88,244,134, 4, 93, 56, 61, 58,195,193,181, 67,204,103, 43, 8,175,240,219,127,254, 39,188,255,217,103,248,228,243,247,241,250, -229, 49,178, 84,226,252,248, 12,239,189,127,136,239,190,126,129,172, 40, 8,151, 10,178,167, 20,101, 14,107,233,103,205, 50,133, -179,147, 11, 92,187,121,192,211, 11,131,186,170,120,191,108,225,173,196,214,206, 38,238,127,122, 23,231, 39,103,104, 27, 67, 41, -101, 90, 66,194,225,242, 98,142, 43, 55,174,193,154, 26,229, 96,132,209,120,128,249,116,142,201,229, 4,223,124,249, 37,156,115, - 56,184,125, 11,105, 2, 44, 87, 45,154,229, 28,198, 2, 89,145,225,222,199,239,224,193,191,125,129,143,254,232,135, 88, 92,156, -225,191,253,199,255,140,229,124,134,207,255,226, 63,224,245,147,167, 16, 66, 98,177, 52,216,236,183, 40,202, 30,202,225, 24, 59, -135, 55,176,188, 60,193, 96,107, 23, 59,135,215, 32,188, 67,219,212,144,105,129,213,124,134,231, 15, 31,226,236,205, 43, 34, 49, -178,192,198,203, 28,214,167,240,198, 35,203, 60,138, 50,195,120,139, 88,239, 89,111,136, 86,211,186, 99,190,170,176,154, 77,224, -109,139, 52, 75,145,151, 37, 7, 19, 81,145,235, 33, 97,181, 70, 53,159,161,173,150,144, 66, 64, 91,130,113, 36,114,109,146,228, - 28,107, 98, 36, 11, 29, 69,244,250,135,201, 87, 0,129,132,233,151,243, 64,154, 40, 56,109, 98, 14, 65,175,223,195,104, 99, 28, -167,105,225,130,208,218, 80, 33, 97, 45, 95, 82,157, 26, 40, 73,168,131,211,186,133,177, 14, 57,175,174,136,253,175,226, 24, 55, -164, 76, 5,135,131, 4,217, 91, 37,139, 82,219,166, 1, 64,116, 52,165, 50, 14,138,161,130, 92,183, 53,188,111,187,236,241,120, -137,201,183, 50, 26, 66, 7, 39,215, 70,150, 30,226,237, 11,217,122, 56, 56, 46, 98,200, 98,100, 3, 59,156,207, 15,195,213, 0, -253, 44, 10,134, 1, 45, 97, 42,232,215,162, 60,165, 19,107,108,111,209, 37,149,113, 92, 50,188, 67,158,151,132, 27,230,209, 53, - 65,109, 52,193, 81,214, 66, 64,240,214, 82, 17, 49,168, 35,230, 59, 64,192, 11,199,239,113,208,243, 56,166,120,242,207,195, 54, - 53,112,247,166,148, 88, 91, 7,116,109, 98,224, 89,132,226, 43, 4,132, 40,158,172, 64,116,254,126,163, 53,178, 44,141,121,233, - 97,180,236,248, 44,117,206,147,111,219,218,168,152, 23, 16, 16,220, 56, 57,103,226,190,154,214, 64, 41,103,119,248,120,214, 83, - 33,196,171, 2, 67,121, 28,138,249, 7,164,159, 73, 56,166, 21,113,173,167,184,187,183, 12,251,114, 1, 48,230, 77, 92, 95,208, - 36,192,113, 2,161,136,186,167, 0, 36, 11,171, 14,149,210, 51, 65, 27, 9, 15,145,136,200, 66, 88, 31,173, 27,126,207,164,232, - 38,179,244,108,241, 74,136, 5,211, 33, 46,214,161, 19,230,209,244,201, 67,248, 48,101,246,172,225,178,140,124, 70, 55,134, 15, - 77,168, 20,240,150,197,175,107, 48, 27,191,150,116, 42,248,223, 81,127,254,225,221,159, 83,158, 47,143,182, 2, 97, 40,216, 53, - 66, 21,195, 16,132, 80,217, 82, 40, 1,117, 9,126,141,145,171,141,131,227,144,142,144,248, 20, 44, 31, 70, 27,120, 16,189,236, -226,236, 2,189,209, 24,215,111, 31,194, 26,141,197,124, 25, 37,253,158,199, 94,129,197,174, 4, 98, 36,106, 24,217, 9,182,106, - 56,222,245, 36,108,173, 72, 82, 21, 71,128, 20,249,103,214, 34,232, 17, 63,148,244, 48,119, 98,186,144,138,230,172, 71,150,167, -204, 11,247, 17, 79, 24, 4, 27, 74,169,152,180,230, 92,247,243, 88, 99, 59,224, 76, 84,210,139,184, 79,215,173,137,175, 47,140, -209,129, 46, 23,183, 94,145,103, 61,205, 83,100,121,142,173,157, 13,140, 54,250,196,104, 55, 6,139,217,146, 15, 1,215,129,255, -185, 18, 77, 83, 69, 92, 1,238,116,156,243, 16,222, 97, 62,155,162, 28,108,226,234,141, 3,204,103, 51,234,234,171, 37, 38,151, - 43,220,251,244, 35,228, 69,134,201,197,132,108,137, 85, 69,241,132,225, 97,149, 18,166,213, 48, 28,212,145, 38, 2, 73, 86, 64, - 27,224,224,112, 23,203,197, 28,205,106,137,227, 23,207, 49,220,220,198,246,222, 46,102,147, 57, 18,101,145,230,125,180,245, 18, - 42, 73,113,244,226, 57,237, 85,147, 20,101,175,135,188, 40, 33,211, 28, 89,158, 17, 38,183, 55, 64, 91,205,177,115,101, 23,175, -159, 61,195, 98,182, 68, 94, 20, 40,202, 18, 63,248,233,247, 81,148, 25, 46,143, 79,145,247,250, 72, 19,137, 36, 43, 48, 57, 59, -131,117, 18, 87,175,239,192,121, 2, 22, 25,163,177, 90,212,248,226, 95,126,133,201,249, 57,174,221,126, 7,159,252,232, 19, 60, -254,230, 57,210, 44,195,203, 71, 79,225,225,240,147,191,248, 17, 38, 39,199,184,122,231, 46,124, 51,199,255,251,159,254, 11,180, - 49,248,236,223,253, 25,222, 60,121, 2, 37, 61,106, 55,192,168,172,177,185,189,129,241,246, 22, 54,174,222, 2,108, 3,165, 20, -174,220,190, 13,225, 12,180,110,225,173,197,209,179,151,120,244,229, 23, 56,125,253, 28,186,169,233, 0, 73, 82,228,131, 77, 20, -163, 61,236, 94, 61,192,193,205, 91,216,185,122, 3,219, 7,135, 72,178, 30,230,139, 26,151,103,231,184, 60, 61,193,228,228, 53, -170,233, 41, 18, 5, 12, 70,125,228,101, 1,231, 58,251,163,181, 14,213,114,137,106,185,160, 93,168,247,107,217,224,180,255, 14, -112, 35, 15, 31,247,114, 65, 68, 71,105, 88,102, 45,143, 91, 70,187, 18, 89, 88, 83, 62, 32,104,212,222, 31, 12,208, 31, 14, 40, -141,139,241,200,173, 54,104, 26,141,249,108,129,106, 85,175, 5,150, 16, 43, 34, 97, 37,179,214, 26, 41,123,211, 61, 79,223, 98, - 66,160,144,209,119,222,141, 67, 93,156, 42,184, 64, 90,179,150, 65, 46, 41,164, 76,217,109, 35,136, 61,175, 87,113, 60,233,215, - 94,135,115,126, 77,120,239,187,102,196,117,190,236, 52,205, 35,162,154, 88, 12,138,137,105,174,179, 18,121,234,148, 44,175,208, - 58,252,109,216,173, 42, 22, 18,118,251,230,120,201,250,208,124,107,166, 68, 26,238,252, 53,129,114,164, 68, 94,148, 40,202,146, -181, 13, 14,186,109,209, 54,171, 72, 33,131,192,218, 37,164,186,221,255,218, 8,222,175,169,229,101, 4,253, 36, 72, 84,130, 44, - 47, 88,124, 72, 69,144, 95,163,182,133,223,145,229,148, 56,202,159, 71, 71, 89,243, 64,194,182, 54, 74,111,100,230,121, 12,211, -146, 88, 27, 34, 16,139, 0, 34, 22,130,130,153, 30,193, 85, 33, 99,154,152,140, 59,255,176,182,164,236,137,132,247,226,136,169, -157,146,113,219, 93, 40, 77,103, 91, 3,139, 59,105,133,234,201,114,205,211, 73, 17,211,212,104,173,234, 29, 97, 95, 85,194, 74, -118, 25, 18,227,232,119,172,184, 0, 13, 9,154, 73,154,208,132, 65,210, 84, 74,138, 80,236, 80,163, 70,171,140, 14,224, 35,163, -192, 50, 88, 48,101, 20,234,201, 32,228,139,153, 23, 93, 30,201,250, 14,189,219,165,119,197,154, 20,162, 11,103, 17,235, 2,185, -110, 37,211, 33,149, 69, 20, 36,250, 24, 31, 75, 95, 39, 9, 92, 97,194,224, 17,206, 85, 27,131, 52, 33,223,119,240, 90,134,145, -117,216,169, 27,235,224,234, 26, 89, 93, 65,165, 84,253,228, 57,219,161, 32,185, 99, 33, 5,165,243, 30, 86,115,132, 99,107,152, - 31,236,240,230,249, 75, 92,156,158,227,198,157, 27, 24,140, 6,120,252,240, 25,171, 63,195,155, 36, 80,150, 57,141,101,156, 71, -154,121,142,215,163, 24, 79, 98, 40,147,176,161,232, 21,200,101,134,166,214, 49,114, 21,144, 72, 50,245,255,123, 13,244, 11, 33, - 31,173, 66, 94, 4,132,161,103,173, 64,134, 52,227, 14, 94,113, 22, 47,171,234,193,194, 18, 99, 60,219,116, 64, 59,127,134, 10, - 40, 41,208, 52,154, 70, 77,150, 30,134,178, 95, 66, 8,234, 82, 41,188, 69,196,145, 73,168,112, 33,128,225,184,223, 29, 26, 25, - 89,253,234,138, 18,243, 22,179, 10,186,181, 12, 63, 16, 0,123, 91,163, 26,159,193, 31,244, 64, 16,168, 97,181,168, 97,141,198, -233,235, 23, 88, 14, 55,112,247,163, 15,113,254,230, 53, 86,171, 10,206, 52,120,244,213, 55,216, 62, 56,196,247,126,242,125,124, -249,139,223, 32, 73, 18,164,101, 22, 63,132, 90, 27, 24,163, 81, 45,151, 92,245,122,236,245, 7,200, 82, 1, 47, 83,220,185,247, - 46,234,197, 20,103, 77,141,135,191,251, 13,222,251,244, 71,184,241,206, 13, 76,207, 78,241,230,213, 25,174,222,188,134,227, 87, -199,140,140,181,177,154,117,214,162, 24,100, 40,202,146,194,129, 18,201,171, 22, 58,100,210,140, 98, 49,239,127,124, 15,155,219, - 99, 76,206, 39,152, 77, 23,184,241,238, 14,230,211, 21,242, 66,227,228,205, 5, 9,224,178,148,214, 59,173,197,236,114,129,217, -229, 5,158,125,251, 29,250,195, 33, 62,252,225,103,168, 87, 45, 22,243, 26,171,249, 20,198,106,124,255,143, 63,197,104,220,195, -120,235, 46,154,101,133, 95,254,237,191,194, 58,135,207,254,221,207,240,228,171,175,209,214, 11,244,118,110, 99,148, 52, 56,188, -126, 3,229,160, 7,153, 13, 88,131,225,112,112,251, 54,154,170, 66,219,106, 76,207, 47,113,244,236, 25,142,158, 61,129,110, 42, -164,121, 15, 59, 7, 7, 24,109, 31, 64,230, 3, 44, 23, 13, 86,243, 25,170,249, 28, 48, 43,100,121,134,138,133,106,213,114,137, -201,197, 37,164, 20, 40,122, 61, 12, 70, 27,228,155,206,114,180,117,131,182,165, 14,196,104,141,122,181, 36,207, 56,143,126,173, -235,162,134, 11,238,232,227,120,207, 75,120,173, 97, 76, 23,108,208,212, 13,141, 9,189, 71,146,164, 81,241, 29,176,182,101,175, -100, 59,160, 88,139,138,164,195,180,169, 53,140, 49,168,171,154, 64, 52,188, 43, 20,130,212,234, 66, 10, 20,105, 6,173, 13, 36, - 4,178, 44,235, 28, 38,194,115,192, 71, 70,157, 5,103, 13, 40, 41,216, 73,210, 93, 40,130, 47, 5,163, 53, 36, 43,195,157, 23, -236,221,183, 92, 64,181,124,169,249,184, 55, 15,151,155,128,143,238,149,117,212,117,236,212,217,126, 22,138,151,232,151,103,159, -116,216,181,122,111,187,110,157,155,154, 48, 5, 64,220,203, 19,140,138,108, 94, 76,195,228,157,170,143,123, 78, 42, 10,180,110, - 57,105,205,160, 63,218, 64, 89,246, 34, 82,212, 57, 11, 99, 90,104,163,185, 0,233, 44,187,129, 25, 31, 46,219,104, 87, 18, 88, - 27,199, 11,134,166, 40, 56,111,145,167,148, 29,145, 40,193,107, 70,135, 60,235, 44,136, 36,110,166,255, 77,147,132,121,242,146, - 59,125,186,140,156, 11,132,197,110, 63, 28,176,175,130,155,185, 14, 46, 21, 68,205, 68, 79,147,188, 94,244,140,245,150, 41,103, -156, 59, 15,227, 40, 79, 36, 77,211, 46,128, 71, 10,202,179, 23,142, 93, 71,100,127,118, 28,132, 99,140, 1,156, 99,107,181,232, -178,197, 5,133,128, 37,105, 2,237, 56, 80,199, 91, 88,109,160,164, 71,107,117, 12,124, 33,124, 44, 77,139,117,107, 88, 32,202, - 64, 33,129,142,149, 32, 37, 28, 36,132,243,148, 81,207, 14, 33,169, 58, 43,155, 74, 82, 72, 31,104,127, 54,166,141, 58, 31,216, -239, 22, 16,116,249, 75,120,120, 25,132,107,156,144,105, 52, 43,222, 37, 0,194,130,203, 64, 18,134,224,224, 45, 29,167, 10,244, -185, 52,111,249,213, 3,142,216,123, 25,227,171,237, 90, 46,187, 15,128,156, 63,123,255,157,159,167,105, 2, 47, 58, 83,187,115, -158,149,228,164,120,215, 81,216, 37, 40, 1,172,105,153,129,238, 96,157, 71,158, 23, 49,147, 55,136, 54,170,170,238,222,112, 70, - 2,194,139, 40, 30,241, 8, 41, 70, 6,151,231,151, 72,210, 2,119,238,222,192,229,217, 37, 85,183,107, 99,106,199, 98, 28,169, -136, 72, 71,150, 12,226,125, 27, 22,218,232, 86,163,174, 27, 14, 53, 49, 60, 98,235,124,231,138,247,228, 70, 91,190,136, 61,171, -220, 61,235, 7,232,114,145,188, 91, 15, 85,143,228, 49, 40,188,103,165, 62,162,218, 61,236,236,131,119, 18,126,221,247, 78, 15, - 76,208, 28,132,238, 95, 8,129,188,200, 80,148, 57,137,160,210, 20,189,126, 73, 99,215, 34,135, 82, 73, 36, 40, 89,107, 81, 87, - 45,150,139, 42, 90, 92, 2, 44,194,240, 88, 51,140,133, 36, 91, 73, 4, 64, 74,103,129,120,225, 59,219,162,109, 53,118, 15, 15, -145,101, 9,218,166, 69,221,104,212,243, 41,102,211, 26, 31,124,254, 49,132,119,168,171,154,208,136,236, 78,160, 7,131,162, 19, - 87,203, 21,188,179,216,220,217, 38,168, 78,111,128,126, 63,195,209,139,151,176, 70,227,236,248, 24,219,251,135,216, 63,220,131, -183, 45,138,193, 8,222,123, 28, 63,127, 76,182, 54, 31, 60,254,164, 32, 54,142,166, 38,135, 55, 15, 80, 47,230,216,222,223,198, -155,231, 47,209, 84, 53,222,251,232, 62, 62,254,193,135,152, 92,206,136,231, 62, 26, 96,188,217,199,114,105,104,175,149,102, 56, -188,117, 5,139,249, 10, 27, 91,125, 28,191,186, 64,146, 9,252,227,127,254,175,104,234, 37, 62,251,147, 63,193,254,181, 67, 60, -121,248, 20, 89,150,226,249,163, 39,184,121,235, 0, 63,249,203, 31,195, 91,135,243,211, 57,190,251,221,111, 49,155, 76,241,131, - 63,255, 83,124,251,197, 3,204,206, 79, 48,216,189,131,225, 32,197, 59,247,175, 49,204, 38, 67,211, 2,182, 93,226,224,157,119, - 48, 57,155, 96,126, 49,193,209,179,231,120,253,232, 59,120,239,113,245,206, 61, 92,185,115, 31,253,141,125,172, 42,135,215,207, - 95,225,244,245,107,184,102,134, 50, 7, 70, 27,125, 36, 89,138,166,110, 49,187,184,192,217,209,107, 84,203, 5,210, 60,199,230, -206, 14,134,227, 49, 32, 82, 64, 38, 4,147,105, 52,116, 83, 81, 65,176, 88, 68,186,161,103,228, 39,161,107, 51,244,250, 37, 11, -143,104, 71,105, 76, 8,137, 48,107,220,232,176,231, 77, 98,234, 86,146, 40,100,121,142,254,112,136,225,104,128,209,120,136, 60, -207,186, 24, 76,134,164, 88,235,208, 52, 13,163,139, 27,222,253,209,148,201, 88, 27,229, 80,212, 41, 74, 78,124,115,220,221,203, -110, 10, 22,146,205, 66, 65, 26, 5,164,142, 5,100,156,238,231, 45,210,180, 64,154, 21, 76,213, 18, 48,186,134,179, 13,116, 91, -117,138,120,102,182, 75,149,196,157,174,181, 38,226, 54, 37,199,187,190,149,103, 45, 4, 18,182,179,165,105,182,214, 0,117, 99, -110,247, 22, 48,198,199,208, 21,120, 25,137,117,244,250,242,136,127,166, 51,196, 67,201, 36,234,122,180,209,208,186, 69,219, 52, -112,206,192, 57,131,178,215, 71,127, 48,140,128, 26,103, 29,218,182, 70,181,154,115,113, 34, 35, 6,245, 45,194, 88,232,210, 61, - 98,144, 84,248,143,146,114, 77, 64, 7, 74, 90, 76, 18,158,188, 72,238,154, 69,103,235, 11, 97, 37,174, 91,107, 70,205, 3, 43, -227,133, 16, 49,213, 79, 73,196,233, 39,233, 42,232,146, 83, 44,122, 3, 11,182,140, 54,113, 12,111,173, 99,206,198, 90, 12, 54, -119,172,193,190, 28,196,104,105,154,196, 21,104, 88, 27, 90,227, 98,132,117, 96,186,171, 68, 69,219,163, 35,172, 38,233,191, 90, - 29, 45, 96, 96, 1, 98, 32,126,146,235,163,179, 46,166, 89,194,231,177, 96,202, 28, 5,105,137, 56,213,232,196,147, 97, 39, 79, -103,106,167, 79, 8,159,113, 68, 11,180,165,241,126,244,205,175, 9,248,194,234, 34, 80, 2,215, 34,175, 61, 3,160,186,162,179, - 3,205, 36,172, 37, 9, 5,222, 26,178, 38,138, 92,165, 72, 24,190, 35, 99,242, 81,151,209,206, 58,138,191,250,244,222,207, 67, - 46,113,144,243, 91,103, 35,114, 15,162, 27,137, 88,235,208,182,148, 25,109,157,231, 64, 18, 98, 66, 39,172,118, 5,128,182,165, -234,190,105, 26, 78, 54, 18,209,167, 76, 20, 53, 19, 31,148, 32, 32,171,171, 21,154,198,224,189,143,222,195,124, 50, 99, 62,188, -140,251, 49,218,245,231,108, 21, 32,138, 93,240,248, 89, 30,125,132,224, 2,218,123,119,227,109,185,198,128,167,145,160, 68,171, -187,176,135, 32, 12, 12, 34,158, 80,120, 0,158,249,214,134,217,239, 20, 66,226,217, 27,218,212, 45,217,225,140,161, 67,128, 71, - 78, 49, 88,129, 71, 63, 73,150,162,236, 23, 72, 57,219, 58, 60, 84, 70, 91,198, 72,130, 15,220, 36,142,168, 0,143,213,178,166, -177,187,181,204, 67,166,170,175,105, 90, 54,224,128, 31,228, 36,238,151,116,211,114, 92,172,139,175,175, 44, 11, 56,107, 48,187, -156,162, 63,222,196,214,238, 38,170,197, 2, 70,183, 88,206,166, 56, 59,190,192,246,193, 33,110,222, 57,196,197,233, 5,163, 34, - 83,228,236, 54, 8, 48,145,166,170, 80,215, 26,163,241, 8, 73,154,226,240,214, 1, 22,147, 9,166,231,151,240,182,198,100,178, -196,230,238, 62,174, 92,219,133,119, 30,147,139, 37, 38,199, 47,161,155,138,149,164, 22,214, 1, 66,229, 40,251, 37,138, 34,199, -246,254, 46,202, 66,162, 63, 28,226,244,213, 43,100,121,142,159,253,245,207,208,182, 6, 79, 30,190, 64,150, 37,216, 61,216,131, -105, 91, 88, 43, 81,246,115, 0, 10, 82, 2,101,153,227,242,244, 18,109,107,240,244,155,111,241,237,239,191,192,237,247,222,199, -157, 15,223, 71,219,104, 92,158, 77,112,126,116,130, 44,245,248, 15,255,211, 95,227,226,232, 4,175, 94, 92, 98, 53, 57,193,171, - 39, 79,241,233, 31,255, 49, 30,253,254,107,204, 46, 78, 48,218,189,141,209,214, 8,239,188,119,128, 0, 99, 66,210, 67,191, 84, -216,191,117, 11,207,191,125,142,217,197, 4,203,217, 2,121, 89,162, 28,239,162,109, 29, 94, 63,254, 14,111, 30, 61,192,236,236, -136, 52, 10, 69,129,157,221, 13,108,108,111, 34,239,245,160,219, 22,151,199,199,184, 60, 61, 66,189, 92, 0, 34,193,112,115, 7, - 27,219, 59, 40,251, 61,180,154, 4, 64,214, 81, 38,194,114,122,137,102, 69,163,118,201,194, 47,201, 46,142,178, 63, 32,242,159, - 12, 23, 85, 26,237,151,193, 67, 75, 98,182,150,221, 39,154, 71,207, 25,146, 52,193,104, 60,194,104, 99, 3,131,225, 0,253, 97, - 63,218, 99, 2,117, 48, 68, 1,207,102, 75,180,173, 70, 83,119, 2,204,112,248, 74,118,151,208,202,206,241,116, 73,173,141, 51, -213, 91,118,172,144,193, 16, 14, 46,207,123,195, 40,146, 82, 20,220, 67,151,165,130,214, 52,213,169, 86, 11, 88, 83,195,232, 38, -178,174, 3,218, 54, 60,179,214,146, 29, 44,142, 47, 37,251,169, 5,214, 14, 75, 64,202,148,133,178, 89, 44, 50,194,121, 22, 58, - 98,183,134, 87, 37,245,187,125,139,203, 30,132,118,105,146,178, 98, 62,116,191,142, 67, 67,248, 28,224, 66, 69,183, 13,156,163, -117, 68,175, 55,164,181,159, 74,226,216,189,169, 43,104,221,242,104,223,199, 2,129,205,120, 76,196, 67,140,123,117,145, 1,176, - 54,162,231,137,133,146, 9,178,172,224,212,194, 36,122,201, 37, 67,189,104,247, 43,161,117, 27, 71,150,138, 47,235,224,217, 22, -188,131,151, 2,113,255, 28, 4,194,193, 69, 32,197,250, 72, 57, 96, 83, 37,175, 51, 4,210, 60,143, 83, 5,106,116,194, 94, 94, - 70,168, 17,157,193,235,191,191,142,135,223,217,189,214,232,110, 66, 34,225,181, 77,224,237,119,156,119, 2, 38,121, 22, 97, 2, - 36,148,203,178,148,166, 2,252,243, 73,142,166, 38,221, 9,133, 24, 17,194, 88, 68,181, 58,216,203,174, 98,247, 46,214,130,116, - 34,234, 39, 6,174, 56,214,126, 5, 91, 36, 21, 11, 62, 42,254, 59,193, 99,199, 81,232,120,239,161, 1,166, 51, 58,156,177, 16, -190,179,182,133,116,190,168,222,239,148,248,240, 93, 32, 82,224, 42, 4,199, 20,224,145,208,129,160,216,159,232,227,152, 73,107, - 67,111,132, 20,252,129, 34,191,180,148,114, 13,106, 17,248,198, 46,190, 65,121,158, 65,240, 62,189, 93, 53,104,155, 26, 66,130, -115,112, 37,140,145,172,234, 37,120, 69,194,236, 96,231, 4,166, 23, 23,248,253,175,151,248,248, 7, 31,226,197,163,199, 56,122, -117, 2,159, 18,132, 36,236, 87,156,163,142, 82,176, 31, 62, 84,216, 90,211,133,103,195,190, 90, 8, 20, 69,134,214,121,254, 62, - 4,123,161, 93,185, 68,150, 37,107,108,117, 21, 45, 20,212,245,155,248, 65, 51,198, 68,107, 90,107, 52,211,182, 26,194,109,166, - 60, 38,226,106, 84, 70, 10, 18, 21, 61, 65,252, 35, 4,225, 93,179, 60, 35, 69,121, 47, 71, 83, 53, 88, 46, 42, 30, 5,185, 88, - 48, 72, 9, 52, 77, 75,254,237,182,141, 29,191,146, 68,111, 11, 97, 53, 77, 93, 83,120, 1,167,192,209,184,150, 3, 47, 82, 5, -173, 61, 63,144,146,173, 97,244,187, 58, 63,122,131,172, 28,226,198,221, 59,120,253,228, 49, 39, 21, 89,188,126,242, 8,211,241, - 14, 62,253,241, 15,240,251, 95,254,154,226, 53,185, 66, 77, 18,138,133,244, 0,172,174,113,250,230,152, 1, 62, 35,188,255,217, -247, 80, 45,230,120,253,236, 25, 76, 61,195,147,111, 30, 98, 56,254, 28, 59, 87, 54,112,126,124,142, 79,126,248, 61,252,227,255, -253,183,212, 1, 58, 11,143, 4,206,232,184,159, 19, 2,216,187,186,135,172,200, 49, 28, 15,240,254,247, 62,196,238,213, 93,252, -211,127,249, 37,154,166, 1,196, 0, 89,150,224,244,104,130,131, 27, 87, 49,189,152, 67, 72, 2, 28, 37,194,224,205,203, 51, 12, -199, 37,126,249,247,127,135, 94,127,128,155,247,238,161,105, 28,142, 95,188, 66, 81, 22,104, 86, 51,252,213,255,240, 23,248,234, -151, 95, 96, 62,175,177,119,176,139,175, 31,124,131,143,254,232,143,240,240,139,175,208,174,102,184,118,247, 3,136,116,128,187, -247,118,169,200,114, 30, 50, 31, 96,123,123,132,180, 40,113,118,116, 10,149,230,176,190,197,217,241, 37,206, 95, 61,130,109,102, -113, 79,221, 27,237, 96,180,189, 7,149, 80,241,150,101, 41,166,231,231,152, 95,158, 97, 57,187, 36, 91,147, 21, 24,108,108, 97, - 99,123, 7, 73, 94,192, 26,139,166, 49,208,218,193, 57, 13,221,172,208, 86, 43, 22, 67,178,245, 47, 85,200,203,140,159, 79,197, -249, 82, 93, 7, 98,121, 52,106,184, 19, 8,148,194, 64, 4, 27, 12,169, 59, 84, 73,138,140, 73,133,161,240,180,142,166,108, 82, - 73,212,117,131,166,110, 40,203,189,169, 33, 32,248, 89, 87, 8,124, 23,203,187,239, 16,195,170,148,130, 89, 3,200, 4,159, 78, - 56,244, 73, 12, 69,207, 56, 77,104,152,197, 13, 27, 19,255,138,178,207,187, 90, 18, 69,105,173,209,182, 45,172,174, 88, 17,206, -186, 30,107,162, 29, 48, 48,191, 29,143,205, 41,132, 73,178,162, 92,112,114, 24,251,168,249,107, 11,149,240,107, 15,135,122, 18, -161, 45, 97, 39,171, 34, 96,133,192, 91,218,120, 30,149,130,199,238, 4,177, 10,235, 11,250, 26,157, 38,198, 59,178,179,133, 67, - 24,220,225,229, 69, 31, 69,175, 68,202, 54, 49,195,200,235,186, 94,242,101, 67,194, 90, 47,125,196,224,134,137,103,128,225,184, - 53,222,119, 92, 35,132, 92,122,120,158,134, 74,214, 18, 73, 4,203,146,181, 38,218,212,130, 10,223, 58, 19,255, 92,152,116,168, - 36,141, 25,222,206, 57, 4,205,182,226, 80, 43,193,221, 96, 56,115,165, 96, 95,123,196,222, 58,200, 36,227, 54,212,137, 20, 0, - 0, 32, 0, 73, 68, 65, 84,132,179, 48,153, 9, 43, 32, 25,109,196,105,158,116,162,184, 64,145,227,104,101,176,210,221,123,250, -158, 68,221,244,200, 50,210,132,196, 88, 81, 5, 88, 72, 72,203,193, 46,169,130, 1,119,199, 94,198, 66,210, 26,139,172, 72, 89, -216,109, 1, 39,161,148,103,109,133, 90,179, 8,242,142, 89, 3, 70,251,152,214,230,121, 85, 40,164, 66,154, 10, 82,215, 71, 24, -146, 65,154,210, 26, 70, 41, 17,103,223,222,185, 24, 29, 30,120, 11,158, 19,214, 52, 55, 90, 74,137,206,229, 33,101,164,222, 1, - 30, 54, 76, 61,224, 99, 83,234,215,162,171, 59,170,157,231,226,166,187,216,195,107,161, 78,253,179,251, 63,119,220,250, 75,165, -128, 53, 27, 74,164,169, 57, 31, 85,240,214,145, 66, 62, 50,125,165,228,176,150, 28,105,158, 34, 77, 51,174,182, 29,172,209,208, -218,196,232, 58,197,226, 15,165, 36, 7, 77,128,209,178,158, 15, 41, 11,107, 53,222,188, 56,194, 59,239,223,195,106, 49,163,135, -220, 6, 86, 59,141,174,210,148,186,234, 0,176, 65,136, 52,140, 70,124,207, 16, 40,201,182, 20, 17,217,216, 93,210, 93,103,101, - 17, 12,232, 8,222,206,132, 59,108, 58,144, 12, 7, 26,208,179,162,181,137, 59,241, 36,149,100,107, 99,191,119, 40, 48,140, 89, - 31, 79,186, 46,160, 70,116, 21, 92,209, 43,137, 83,156,165,221,206,139,193, 34,186,105,249,112,119,208,198, 64, 8, 31,109,115, -129, 56,151,176,218, 52, 73,187,239, 45, 98,199, 96,217,142,151, 32,205, 11, 86,210, 19,238,209, 90, 15,221,172,112,113, 58,193, -193,205,155,200,243, 4,245,138, 48,163,109,189,196, 98, 78,227,120, 88,141,229,108, 1, 33,169, 0,138, 1, 16,158, 70,193, 77, -181,130,247, 18, 59, 87,246,176,181,187,137,217,229, 57,170,197, 12, 42, 45, 88, 39,144, 35,203, 37,246,174, 29,224,217,215, 15, - 99,129,146, 23, 61, 36,105,129,114, 56, 68, 81,228,216,216,222,194,198,230,128,210,226, 36,112,243,189, 91,104,107,131,135, 15, -158, 33, 77, 19,148,189, 30,198, 27, 61, 76, 39, 21, 54,183,199, 56, 59,153, 32,205, 82,140,199, 57, 30,252,230,107,236, 93,187, -138, 95,253,221, 63,224,226,244, 8,127,244,151,255, 30, 16,196, 28,104,170, 6,171,217, 5,254,234,127,252,115,124,245,203,223, -227,233,183, 79,240,238,199, 31,226,249, 55, 95,227,206,135, 31,224,219, 47, 30, 64, 9,135,155,247, 62,128, 21, 61,220,186,181, - 73,218,140, 34, 67, 90,150,216,189,186, 7, 33,115,188,120,242, 26,143,190,122,136,175,127,243, 5,142,158, 62, 66, 53, 61,129, -211, 43,210, 8, 8,137,225,214, 1,246,111,220,134, 76, 83, 12,198, 99,140, 54, 7,152,157,159,226,232,217,183,152, 93,158,195, - 56,137,180, 24,226,234,205,155, 24,109,109,195, 11,137,166,110, 88,192,214, 98,122,126,142,213,108, 26,249, 14, 89,145, 33,205, - 82,100, 25, 9, 38, 3,221, 13, 60, 38,148,124, 89, 17, 1,204,243,123,157, 32,205, 72,136, 88,246,123, 40,202, 2,101,175,135, -193,104, 64,132,177, 60,237,116, 36,137, 66, 83,183,252,223, 26,171, 85,133,197,108, 73, 17,186,214,194,104, 13,173, 45,175,130, -212, 91, 0, 18,240,243, 79, 43,174, 54,118, 59,145,104, 38, 3,125, 75,198,103,147, 62,183, 34,138,195,104,252, 95,160,236, 15, -160, 84,202,221,182, 70, 93, 87,168,171, 37,116,187,130,179, 6,218,104, 14,126,210, 72,146,140,120,245,174,243, 49,203, 53, 43, -143,228,115, 42,244, 69, 9, 39, 64,134, 41,163,224,110,177,139,190,244,113,138, 17,166,147,142,139,255,160,253, 96,150,110, 76, -125, 11,157,155, 82, 20, 85, 27,166,140,134,207, 3,186,120,232, 34, 13,151,104,146, 36,216,216,220,142,161, 39,214, 26,198,251, -206, 98,209,132,152, 35, 47, 98,199, 28,208,182,235, 64,216, 32,156,147, 82, 34, 77, 50,222,111, 43,162, 16,230, 57,148, 10,221, - 41, 23, 28, 60, 82, 15,190,237, 16, 25, 27, 46,111, 17, 38, 31,220,201, 10,129,216, 96, 73,238,146, 3,170, 85,112,148,233,186, -222, 34, 52, 67,137, 82,113, 90, 24,145,220, 74,197,176,171,160, 75,144, 74,198,207,148, 7, 11,144,215, 44,101, 73,188,236,192, - 64,154, 46,192, 37, 32,190,131,203,200, 51,163, 35,136,232, 18, 14,136, 81, 28,227, 27, 40,118, 0,117,249,130, 61,224,244,236, -168, 14,108,198,211, 34,103, 44, 28,199,119,119, 25, 55,226,173,207, 25,193,176, 4,167, 70,118,239,147,228,105, 71,180,197, 5, - 15, 62, 23, 53,225, 57, 16,107,112,156, 88,160,189,229, 32,241, 29, 74,214,117,126,123,210,123, 8,158,164,119, 92, 2, 90,169, - 81,215, 46,217, 58, 23,154,114,245,151, 31,191,247,243,144,172, 19,196, 56,142, 67, 8, 8,191,199, 30, 70,134, 75, 68, 38, 45, - 13, 59, 98,114, 77, 94,228, 16, 50,137, 17,170, 84,113,235,168,116,165,209, 92,231,181,107, 27, 13,163, 45,199,245,117, 73, 52, -129, 96,246,250,229, 17, 62,250,252, 19,156,188, 57,226, 29, 49,209,173,130,153, 31,222,198, 12,224, 64,125, 11,222,109,242,226, -166,145, 54, 21, 73,108, 65, 1,202,190,221, 48,106, 11,200,215,240,161,164, 48, 2,102,112,115,170, 16, 21, 5,238,109,127,174, -243, 81, 89, 76, 20, 41, 77,217,232,188,102, 48,173,137,241,123, 70,155,136,141, 36, 59,134,129,115,130, 59, 8,137,170,106,217, -135,142,232,157, 79,178, 4, 9,143, 46, 35,144,197,119, 99,119,126,239, 33, 3,221,142,127, 7, 89,150,240,200, 43,101,191,163, -140,170,232,182,213, 52,178,242, 14,147,243, 11, 12,183,182,177,181, 61,198, 98, 58,229,223,173,197,233,209, 57,246,111,220,198, -214,206, 8,147,179, 11, 38, 85,209, 69,227,173,142,175,127, 62,153,160, 24,110, 96,255, 96, 23,253,225, 0, 23,199,199,104,235, - 6,253,209, 24,189, 94,129,171,183, 14,113,122,116,137,221,253, 77, 28,191,124,137, 52,205,144,230, 5,178,178,143,178,236, 99, - 56, 30,160, 28,244,177,185, 61, 66,209, 43,177,179, 55,194,112,123,140, 63,252,250, 27, 44,230, 53,146, 68, 98,255,112, 15, 74, -210, 8,121,114, 62,129, 67,138,225, 48,131,105,150,152, 76,106, 56,221,224, 23,127,255,223,112,239,211,239,161, 28,108,162, 63, -218,192,233,235,215,184,125,247, 58,126,242, 23,159,227,241,131,239,240, 47,255,207, 63,224,179,159,253, 12,245,236, 2,227,221, - 61,188,248,238, 49,198, 27,125, 92,123,247, 46,102, 43,129,237, 13,133,141,173, 1,146, 52,161,228,179,172,143,227,151,167,248, -195,175,126,131,239,190,248, 18,147,179,115,138,194,116, 45,224, 90, 8, 1,140,119,246,112,251,195, 79,177,177,127, 21, 69,175, -132,146, 10,109,181,196,197,209, 49,166,147, 25, 21,190, 73,142,157,131,107,216,222,191, 2,161, 82,180,154,156, 24,198, 58, 44, - 39, 23, 88,205, 39, 16,222, 65, 42, 32,205, 51,148,172,173, 8, 43,162,136,230,148, 29, 35,155, 28, 18, 57, 79,124, 74,244, 6, -125,244, 6, 67, 66,122, 38,157,229,134,124,182,116,112, 6,161, 91, 85,213,168, 86, 53,150,139, 37,218,150, 62,111,142,253,188, - 66, 72,180, 60,233,113, 28, 91, 42,100, 39,152, 10,221,177,110,219,183,192, 31,164,248,237, 86, 70, 73,150, 70,198, 69,228,119, -115,131, 80,244, 74,148,189,126, 92,189, 57,103,209,182, 13, 86,203, 57,150,179, 41, 44,219, 81, 67,244, 46, 9,133,152,183, 46, - 21,137,149,100,200,244,102,235,152,239,186, 88,186,120, 85,156, 72,120,116,207, 87,244, 61,115,128, 76,236,202, 89,252, 27,248, -223,206, 59, 74,253, 90,227,170, 7,191,179,247,130,249,247,244,191, 65, 44, 72,151,185, 69,221, 52,244,215,134,120,227,101,217, - 71, 89,150,200,242, 12,150, 29, 65,213,106,133,138,109,137, 65, 85, 30, 83,216, 56, 35, 35, 73, 82, 30, 99, 73, 30,139,171,248, - 26, 67,234, 93, 71,145, 83,200,243, 2, 9,243, 5,194, 94, 56, 52, 15,193,118,103, 35, 3,157,116, 82,235,255,190,231,117,155, -148,130, 5,128, 29, 7, 36,184,136,194,254,154,233,167,252,254,178,226, 61,114, 77, 4,239,161, 69, 44,138, 60, 11,146, 19,166, -112, 26, 75,141, 76,128, 22,133,140,145,112,223,208,185,106,163,126, 34,122,212,215,114,198,233,226,103,183, 19,175, 86, 83,214, - 76,209,159, 67,167, 11, 34, 91, 87, 20,134, 6,219, 30, 53,153,178, 19,107,242, 62, 59,144,241, 98,248, 25,251,245, 41,163,193, -133,212, 19, 64,120,182,214,137,104, 39, 77, 88,157, 31,236,126,240, 29,254,188,163, 24,250, 14,159, 27,214, 14, 2,111, 21, 25, - 1,158, 20, 98, 94, 41,205, 77,198,105,140, 16,201,218,103,231,237, 61, 61, 0,168,127,255,189,123, 63,199, 26,140, 31,108, 83, - 8, 86,136,240, 67,173,135,144, 88,235, 57, 37, 38,196, 29, 10, 56, 47,162,208,139,160, 51, 76, 47, 98,184,125,224,164, 19,176, -223,197,108,218,136,109,236,214, 87, 52,246,214, 45, 46,206, 38,248,252, 39,159,225,248,245, 17,140, 37,208, 10, 89, 36, 4,218, -166,129,224, 72, 69,165,100, 4,222,199,196, 37, 17, 34, 34, 13,117,242,198,194,114,156, 97,168,120,194, 1,145, 36, 50,142, 23, -157,247,240,150,160, 49, 97,213,224,215, 42,229, 16, 74,211, 54,154, 14, 56,126, 88,155,186,161, 67,210, 57,190,208,201, 14, 6, -143,248,207, 40,235,156,124,190, 77,163,185, 75, 97,241, 88, 78,151,166, 99,161, 4,141, 93, 68,215,161, 51, 66,209,178,205, 66, -183, 6,101,191,232, 48,142, 28, 82,227, 25,163,153,102, 41,137,239,242,140,198,184, 28,105, 27,198,247,214, 16,249,106, 62,185, -132,245, 9, 14,111,221,128,110, 27,202,183,118, 6,243,203, 75,164,229, 24,239,125,244, 46, 46,207, 46,224,217,166, 67,156,125, - 7,235, 20, 18,233,225,156, 64, 90,148,216,218, 25,163, 55,232,227,236,245, 75,168,180,196, 96, 52,194,104,107,147,247,123, 41, -102,231,103, 76,126, 74, 33,100,138,188, 71,107,136,225,198, 8,227,205, 17,250,195, 30, 18,229,225,173,199,111,254,249, 43, 8, -149,161, 63,200,176,119,176, 3,173, 29,246, 15,183,112,126,182,132,181, 14, 7,135, 27,248,250,183,223,224,240,206, 77,124,245, -203,127, 67,219,180,120,255,179,207, 80, 55, 2,195, 81,142, 44,203,240,241,231,239,224,252,232, 12,255,231,255,252,191,225,253, - 31,252, 16, 91, 59, 27, 72,211, 28,167,175, 94, 97,255,234, 46, 6,155,187, 56, 57,173, 80,164, 26,251, 87,119, 80, 14,199, 48, - 46,193,217,217, 10,213,228, 18,175, 30, 61,194,201,155, 83,212, 53,197, 96, 38,146, 32, 74,189, 65, 15,215,222,189,143,119, 62, -249, 30, 54,247,247,208, 31, 14, 80, 47,231,120,254,245, 3,188,121,254, 20,117, 99,145,100, 57,198, 91,219,216, 63,188,138,162, - 63,132,245, 2,121, 73, 66, 45,167,107, 84,179, 11,152,182, 33,247, 69,153, 33,205,115,190,204, 21,243,197,179, 40,112, 75,210, -140, 58,240, 94, 15,253,193, 0,189, 65, 15,227,141, 49,146, 52, 67, 94, 20, 49, 50, 85,107,205,162, 54,214,128, 52, 13,234,170, -198, 98,190,192, 98,190,192,124, 54, 39, 72, 81,204,225,150, 49, 60,137, 66, 41, 92,100, 62, 52,220,133,147,239,150,159, 47,185, -246,112,138,181, 98,217,117, 74, 98, 33, 9,100, 19,172, 81,222,131,114, 12, 84, 66, 41,115, 44, 46, 19, 18,168, 43, 42, 46, 86, -139, 41,234,106,249, 22,225, 44,140,197,169,227,167,174, 59,240,198,131,131,130, 16,206, 6, 82, 38,177,112, 13, 99,101, 33,232, - 34,207,152,144,153,132,131, 26, 29,150, 57, 64, 87,130,127, 63, 8,173, 92,164, 92, 82,244, 40,173,223, 28,143,253, 85,236,208, - 35,159,157,247,240, 36,112,162, 68,194,209,198, 24,195,209, 8,189,126,159,166, 36,108, 55,213,218, 96,181,154,195,152,150,187, -116, 25, 87, 26, 88, 11, 60, 10,205,136, 74,210, 24,152, 18, 19,227,184, 32, 10, 62,116, 41,201, 46, 26,172,137,225,207, 6,145, - 91, 72,105, 19,204,157,151, 81, 96, 23,194,118, 4,217,251,164,228,125, 50,226, 74, 35,101, 54, 6, 21,117,116,193, 5,134,121, -152,230,166,108, 11,139, 22, 70,182, 49,135, 88,109,239, 61, 57,160, 2, 60,134,187,246, 0,247, 10, 14, 43, 56,191,198, 95,231, -207, 29, 59,133, 20,211, 67,193, 0, 24, 21, 73,129,157, 72, 76,112,240, 9,229, 87, 36,107,220,116,178,105,147,245, 90,196, 53, -169, 15, 43, 82, 41,223,186, 15, 16,217, 3,134, 87, 90, 54, 22, 67,129,244, 38, 85,128,147, 37,107,107, 9,172, 9, 84, 93, 12, - 97, 9,194, 83,193, 95,179,203,169,247, 81,247, 68, 77,167,141,240, 25, 31,138,169,184, 14,151,107,137,127, 60,149,224, 6, 60, - 60, 55, 65,191,224, 1, 36, 97,143, 76, 23, 51, 85,222,150, 5, 48, 66, 42,120,211, 81,210,188, 1,224,108,180,112,208, 78, 78, - 49,238,208,243,168, 61,143, 99,136, 80, 37,183,124,128, 5,118,123,128,219,228,121,138,182,181,252, 11,202,226,139,247, 44, 68, -168, 87,115, 60,248,221,183,184,255,241,251,120,240,197,195,184, 14,168,235, 22,222, 58,184,186, 69, 89,230, 81,101, 24,114,124, -243, 60,225, 75,151,128, 26,228, 21, 5,127, 16, 61,146,132,118,248, 33,109, 39,218, 90, 18,234, 18,180, 51,104, 27,141,182, 17, -156, 78,231,226,197,158, 21, 25, 18,235,121, 52,175, 97,195, 46,138, 71,122,186,109,163,250,215,121,162,206,101, 44,142,131, 79, -161,148,131,214,154,236, 72, 10, 40, 10,234,176,116, 75, 86,140, 81, 49,132,209, 26,139,249, 2,166,213,113,236,231,215, 18,165, - 76, 75,233,106,245,170,134, 74, 9,107,216, 27, 80,114, 87,154, 1, 90, 39,236,149,183,157,110,128,187,166,178,228,176, 25, 67, -147,140,182,110,177,156,156,225,121, 93, 97,239,240, 16,205,242, 18,211,203, 9,146, 4, 88, 92,158,224,241, 98,137, 15,127,248, -125,124,243,155,223,162, 94, 46,209,212,164,103, 72, 83,234,132,230,151,231,152,158, 21, 72,147, 93, 92,189,121, 3,203,233, 12, -143,190,126, 12,113,231, 38, 22,211, 57,180,118,216,216,222,196,251,159,127, 15,255,250,183,127, 31, 47,130, 94,175,196,120,163, -143, 44, 85,209,167,122,113, 50,229, 93,189, 65,191, 55, 64,209, 43,176,177, 53,192,108, 90,209, 7, 91, 41,228, 9, 96,218, 10, - 50, 43, 33, 4,101,186,127,254,211,159,224,226,108,134,235,239,222, 70, 53,155,224,240,250, 14, 38,103,151,248,143,255,235,255, -129,253,107, 55,241,206, 7,239,193,180, 45,206,207,222,224,224,250, 1,156, 87,184,156, 25,236,239,245, 48,222,222,132,245, 2, -203, 69,131,186,177,176,245, 2,199,111,142, 81,173, 26,234, 6,157,129, 18, 22,105, 34,177,127,235, 14,250, 91,123,200, 7, 99, -100,101, 15,186,105,112,244,236, 25,158, 61,124,136,182,174, 33,100,130,225,120, 3,123,135, 7, 40, 7,189,152, 92,166, 26,131, -106, 49,199, 98,114, 1,163, 27, 40, 37,209, 27,246, 98, 80, 4, 29,132, 2,121, 89,210, 52, 35, 75, 33,147,148, 87, 67, 9, 83, -170, 2,186,217,163,105, 73,164,105,180, 70, 83,215,104,234, 6, 85, 85, 97,181,172,208, 54, 13,235, 97, 36,143,196, 19, 70,136, -210,133,209,237, 30, 73, 80, 68, 19, 38, 27, 15, 5,173,117,236,186,105,164, 41,214,242, 26,152,210,230,201,202, 89, 85,134,159, - 41, 23,161, 37, 65,253,222, 47,250,145,194, 38, 5,120,221,230, 24, 50,180, 66, 91,175,208,182, 13, 5,139,240,165, 70, 69,183, -103, 65,156,139,118, 35,201,156,118, 26,115,202, 40, 14,164, 75, 95,177,210, 94,198,104,102, 82,167,103,176,204, 88,232, 60,190, - 12,218,114, 93,202,153,144, 18,112,150,162,153,215,186, 24, 41, 84, 76,148, 4,119,226,196, 6, 95,183,199, 10,142,122,165,203, -101, 52, 30, 97,123,119, 59, 82,210,170, 85,133,166,174,163, 99,160, 90, 45, 81,215, 21,251,239, 17,109, 74, 88, 19, 86, 9, 65, -156, 3,203, 13, 65,135, 49, 85,241,194, 94, 7,228,164, 89,142,162, 40, 34,165,142,132, 95,221,159,243, 76,203,164,156,136,183, -131, 83, 66, 81, 34,208,117,247,244,125, 68,164,124,250, 32, 50,230,182, 82, 55, 84,240, 89, 4, 66,160, 65,209, 75,227, 94, 95, -196,236, 13, 68,123,161,230,192, 47, 99, 44,178, 76,198, 29,176,103,191,187,140, 14, 15,207, 83, 81,221,121,195, 57,204, 42,161, -192, 4, 10,113,225,215,104, 13, 17, 6,147,132,166, 38, 42,205, 35,138,151,214, 66,136,209,225,142, 83,247,188, 99,151, 23, 73, -213,161, 50, 82,240,211,180, 94, 1,158, 84,229,164, 98,167,207,175,110,216, 39,175,212, 90,116,111,202,202,127, 74,103,247, 96, - 32, 18,211, 89,101,128,204,128,172,120,193,229,224,157,141,214, 60,138,130,181,177,232, 2,243, 71,226,215, 18,146,223, 11, 9, - 48,216, 6, 80, 72, 56, 35, 36,120,238,125,200,228,241, 14,176, 64,146,164,105,103, 33,123, 43,252,132, 66,215,141,145, 12,141, - 65, 84,136, 74,239,121,199,173,162,133,204, 89,131,213,146,252,184, 25,143,227,225, 45,154,138,144,151,186,109,209, 31,244, 96, -141,229, 44,111, 10, 82, 0,108,167, 48,101,113,153,136, 33, 2, 22,151,167, 71,216,220,217,193,104, 60, 68,211,180, 40,138,140, - 59, 86,139, 44, 73, 99,106,148, 99,133,160, 74, 84,236, 72,228,218,248, 48, 91,131,200,180,141, 65,146,102,113,188,232,156, 67, - 94,228,188, 11, 39,202, 87,216,187, 47,231,154,223, 60, 25,247,154, 1,170,161,188,143,182, 50,147,104, 26,239,120, 27, 71,157, - 33, 20, 38,120, 38, 61,175, 5, 72,136,168, 1, 77,111,120,238, 67, 68, 34,197,133, 74, 73, 56, 82, 82,201, 54,104,235,102,109, -245, 1,120,225,209,212, 13,178, 60,131,240, 14,121, 89,196,202,158,128, 25, 13,113,135,185,144, 18, 0,178, 60,141,171, 6,107, - 45,178, 34,135, 53, 6,131, 97, 31,214, 88, 44, 23, 21, 38,167, 71, 24,110,237,224,206,253, 29,188,122,242,130,185,255, 19, 60, -252,178,193,237, 15, 63,198,229,209, 43,188,126,246,130,185,225, 18, 89, 57,128, 51, 26,213,114,133,211,215, 39,104, 55,199,184, -253,193,125,204,167,115, 28,191, 58, 70, 57, 28, 97, 48, 30,194,122,137,221,107, 55,112,237,246, 13, 76, 39, 43,140, 54,183,176, -177, 61,130, 82,138,236, 82,134, 24,229,163,173, 49,126,251, 79,191,139,187,175,162,215, 99, 27, 23, 48,155, 17,247, 96,115,187, -143, 71, 15, 30, 97,103,111, 27,147,211, 83, 92,189,117, 3, 77,109, 48,216,216,194,181,155,187,104, 86, 3, 56, 83,227, 95,254, -246,159,209,182, 26,127,250,103, 63, 69,154, 38, 88, 92,156, 98,115,103, 19, 85,101,224, 85,142, 59,239,238, 98, 54, 89, 96,181, -172,113,245,230, 21, 44,230, 45,218,203, 83,232,122,129, 52,241, 56,157, 92,194,182, 21,242, 76, 98,247,224, 0,219, 7, 7,112, - 72, 96, 29,137,126, 22,211, 25, 46,142,142,112,246,230, 13,138, 94, 15, 27,219, 91,232, 15,134,216,218,219,133,151,105, 92, 39, -173,230,115,218,153,155, 22, 89,166,144,164, 5,171,127, 5,185, 11,210, 20,189, 65,159,139,221,140,152,225, 12,159,161,144, 29, -139,229,178,134, 49, 22, 77, 85,195, 24, 67,169,127,198,193, 90,205, 59, 95, 62, 24,216, 27, 78,147, 24, 7,175,136, 51,175, 84, -178,214,141, 18,191, 60,144,229, 8, 48, 18,128, 82, 34, 30,178,161,107,141, 93, 42,251,171,233,121, 51,168,170, 38, 78,215,194, -215,206,139, 2, 66, 40,244,250, 37,255, 60,134,159, 99, 13,221, 54,104, 27, 18,206,134,184, 73,163,117,204,121,160,221,183,136, -194, 84,178, 76,165,145,136, 22,187, 32,103, 32, 5, 11,196,162,246, 39,229, 91, 86,241, 69,201, 96, 41, 36,209,199, 31, 58,125, -218,141,170,152, 87,225,152, 38, 22,162,151,201,239, 31,118,182, 10,102, 45,135, 34,201, 72, 12, 71, 94,238,238,172, 12,214,212, -254,160, 71,218, 16,110, 30,136,223,223,237,111,155,166,130, 82,105, 36,244,117,148, 50,214,247,112,192, 84,244,187,175,229,185, - 99,109,205,208,141,197, 57,215, 62, 73, 72, 16,200, 69, 11,237,212, 45,159,175, 20,181,234,124, 23, 93, 26,134,176, 1, 45,154, -102, 93, 20,109,112, 42,132, 88, 81,143,144,112,166,162,224, 43,232,143,132, 36,123,100,152,218, 4,142, 1,130,191,159, 53, 12, -150, 49,177,224,120,106,107, 67, 99,229,160, 88,131,225,215,178, 50,194,251, 18, 18,217, 58, 49,164,132,204, 83,180,117,179,246, -251, 96,182, 61, 91,228,194, 36, 39,176, 18, 72,114, 37, 33,184,206, 17,158,197,108, 0, 84,145,145,163, 40,203, 34,184,198, 69, -126,136,138, 19, 27,165,100,180, 72, 67, 72,214,130,152,168, 57, 9, 59,243,208,177,135,226, 23, 76,140, 11,246,228, 68, 41, 88, - 62, 23, 4,200,147, 79,194, 87, 17, 87, 14, 60,217,231,176,165, 0, 14,226,137,144,103,147, 27,239,209,109,176,150, 70, 37,189, -132,148, 14, 73,194,185,199,224, 95, 54,249, 46, 85,252,101,102,121,142, 52,203,208, 54,196, 96,119,150,230,215, 52,134, 7, 95, -164,244, 3, 40, 37,226, 88, 33,100,130, 75,149,192,235,144, 0, 86, 33, 43, 10,134,176,240,155,190, 62,250,224,253, 70,162, 36, -124, 66, 92,116,107, 29, 94, 60,121,130, 79,126,240, 9,190,125,240,144,199,209,116,184,180,141,166, 46, 63, 37,161, 16, 97, 79, -243, 40,242,160, 85, 12, 43, 22, 61,199,167, 42,129, 44,167, 46,200,104, 7,149,208, 97,209,182,134,217,209, 44, 82,115,136,212, - 32,242,212, 90, 22,197, 72,222,173, 81, 5,152,229, 84,165,102, 69,142,188, 40,162,234, 49,205, 51, 88,163,177,156, 87,104,185, - 99,203,243, 20, 43, 94, 35,164,144,144,138, 58,249, 0,191, 8, 35,246,188, 8,113,168, 18,253,193, 0,121, 81,160,169, 43, 52, - 85, 77,147, 20, 67, 31,162,128,236, 52,134, 70,181,244,186, 36,202, 94,193,106,202, 54,146,237, 60,127, 16, 72,152,199, 0, 33, - 29, 40,124, 41,210, 60,135,213, 6,205,114,138,137, 29,224,230,123,239, 97,118,113,130,102,181,130,243,192,201,203, 23,216, 62, - 56,196,222,225, 21, 60,255,246, 41, 85,221,101, 31, 82, 0,171, 85,131, 52,149, 88, 44, 27, 12,198,125,252,224,207,127,134,135, -191,251, 10,105, 74,193, 30,205,106,133,141,157, 77,124,242,147, 31,226,193,175,190, 68,222, 27,112,150,178,224,152,202, 22,179, -203, 57, 70, 59, 3, 28,191, 58,129,177, 41,178, 44, 65,127,212,195,235, 23,103,216,218, 25,226,242, 98,137,188, 32, 34,158, 19, - 41, 86,243, 41, 38,103,151, 56,188,125, 19, 47,159, 95,224,243, 79, 14, 49, 59, 59,195, 96, 99,136,111,191,126,142, 39,223, 60, -196,191,251,239,255, 6,163,205, 17, 46,222,188,193,120,115,140, 55,175, 47,161, 93,129, 60,111,241,232,235,103,184,118,251, 0, - 87,111, 94, 65, 93, 25,204, 47, 46, 32, 92,131,182, 90,225,228,245, 17,140,174,177,119,120,128,157,131, 3, 8,149,226,252,108, -134, 36, 77, 48,222, 28,162,215, 75,177,154, 78,224, 76,139,253,195, 43, 68, 42,204,115,148,131, 1, 32,105,245,180,156, 47,176, -156, 92,192,182, 21,210, 44, 67,185,177,133,178, 44,144,100, 25, 31, 34,136, 22,207,186,106,177, 92,173,176, 90,158, 71, 84,176, -209,154, 45,161,212,173,212,117, 3, 99, 93, 76, 46,164, 60,121,206,195,118,224, 81,166,135,148, 38,122,214, 67, 81, 75,151,152, -142,212,170,206, 54, 36, 72, 80,186, 22,118, 65,251, 98,230,114,203,176,127,228,245, 22, 31, 58, 41, 19,236,116,171, 73,107, 81, - 12, 80,150, 37,156,167,201, 83, 44, 44,172,103,207,118, 13,107, 53,172,213,113, 55, 25,198,218,221,216,157,138,147, 48,150, 94, -107,245, 24,188,226,248,226, 74, 58, 53, 48,143,160,195, 8,156,162, 76,201, 30, 42, 65,175, 89, 34,129, 74, 68,180, 95, 97,109, -175, 25, 52, 52,129,251, 32,101, 71,174,116,222,147,115, 39, 0, 61,120,117,160, 98,182, 60,141,154,243, 34,103,161, 90,224,151, - 91,148,189,146,116, 11,220, 92, 56,231,177, 90, 46,153,191,207, 64,153,192,240, 94,203,255, 14,246,184, 78,231,208,237,197,229, - 26,120, 7,107,233,106,161, 96,203, 50,181,134,198,117, 17,134, 67,218,154, 12,186,173, 99, 76,167,146,178,163,172,241,138, 52, -229,177,121, 24,221, 59,211, 21, 30, 1,172,165, 91, 29,179, 1,156, 37,146, 32,161,136, 17,133, 93,173,182,200,242,188,139,121, - 53, 62,158,181,130, 11, 16, 10,240,242, 72, 21,253,158,195, 20,192,121,143, 60, 85,112,150,132,135, 33,130,217,219, 54,174,106, - 99,250,156, 49, 28,222,101,162,227,130,120,234, 18,206,120, 8, 56, 86,210,119, 14, 6, 90,173, 72,250,103, 82, 2,222,174, 5, -209,240, 10,196, 91, 8, 72, 88, 39, 32,133,139,221, 62,173,153, 77,196, 0,135,139, 62,124, 78,195,115, 27,147,232,188,130,148, - 62,238,216, 3, 86, 88, 8,188,197,247, 87, 82,174,165,230,137,104, 9,244,111,193,147,216, 22,168, 40, 29, 53, 56, 45,131,251, -193,175, 81,231,148, 74,144, 56, 38,192, 9,176,220,158,113,124, 20,210, 98,226,190, 77,169,132, 71, 80,129, 8, 69,244, 29,120, - 17,121,190, 33,254, 45,120,239, 22,154, 42,112,195, 59, 54, 82,172,115, 32, 75,162,224,180,231,206, 90,163,169, 53, 84, 42, 25, -176,210,137, 13, 72,225,219, 98, 54, 93, 97,103,119, 11,179,201,140, 39, 11,157,112,143, 58,202, 0,136, 48,200,178,156,247, 11, -172, 4, 79, 19, 88,227, 88,236, 99,225, 28,125,184,179, 34,133,209, 54, 10,129,140, 49, 28,218, 66, 80,126,239, 29, 67,110,104, - 44,233, 61, 96, 53,121,118,235,170,226,174,191,142, 94, 95,239, 8, 44, 67,169,107, 36,238,217,222, 43,209, 54, 58, 38, 36, 25, - 75,254,126, 99, 91, 0,130, 39, 4,196,134,150,140,185, 93, 45,150,200,242, 12,121,145, 17,117, 45, 85, 72,179, 2,121, 94, 64, -183, 13,234, 21,141, 89,133,148,104,235, 22,173,104,121,111,101,227, 97, 35,149, 68,154, 23, 48,203, 21,179, 3, 90, 56,107,104, - 61, 81,116, 0, 14,193,158, 76, 56,135, 52, 79, 33,141,131, 20, 45,206,143,143,176,177,187,143,141,109,139,203,179, 75, 56,231, - 49, 61, 59, 69, 59,220,192,187, 31,127,128, 55, 79,159,195, 24, 67,248,214, 84,161, 28,244, 81,207,231,168, 42,139,254,160,192, -221,143,223,199, 98, 78, 57,238, 69,191,135,163,103,175,112,227,238, 77,108,238,190,134,214,142, 47, 53,131, 86,107, 84, 75, 10, -191, 25,244, 19, 76, 39,115, 20,195, 45, 72, 37,145,101, 10, 23,167,115,140, 54,122,204,246,151, 56,126,122,140, 52,207,224,189, -193,120,123, 19,175, 95, 94,226,214,123, 55,241,230,201, 19,108, 95,217,197,252, 98,130, 95,252,221, 63,226, 71,127,254,167,184, -117,247, 22,230, 23,167, 72,210, 4, 23, 23, 53, 22,149, 66,181, 56,199,104,220,195,181,219, 87,113,120,115, 31,198,120,156,190, -124, 13,216, 10,139,233, 20,231,167, 19, 12,183,182,113,247,250,199, 16, 82, 97, 49,175, 97,150, 21,178, 60,193,112,212,199,238, -254, 6, 46,143, 79,176, 90, 44,176,185,179,133, 36,203,128, 96, 9,229, 64, 34,219, 54,232, 21, 9, 54,110, 94,141, 74,224,166, -105,161,181,197,124, 81,161,174,102,168,150, 21,103,110,147, 86, 33,192, 52,168,195,167,203, 94, 37, 9,154,186,165,221, 43,103, -159,219,224, 85,214, 52,134,164,194, 90, 5, 36, 70,180,161, 5,109,135, 84,138,120,240, 12, 14, 9, 26, 18, 99, 44,138,178, 32, -224, 7,239,229,169, 80,102,255,185, 34, 61, 71, 86,230, 81,253, 75,107,151, 20,206, 26,244, 6,125,128,133, 99,193, 58, 20,242, - 22,156, 53,168, 86, 43,178,237,213, 77, 20,200,134,142, 23,222,161,109, 26, 38,104,201,248,186, 67,179, 32, 21,189, 38,163,117, - 12, 84, 2,186, 84,172, 0, 13,161,195,152,187, 39, 14, 12,161,144,154,206,126,166,216, 74, 70,122,152,110, 39,239,177,150,120, -198,251,218, 96, 77,179,140, 99, 14,132, 47, 26,155, 34,166,151,245,250, 61,214, 8, 40,206, 51,112, 76,205,108,145,166, 25,166, -151, 51,172,150, 43, 98,114, 4,136, 84, 93,189,149,163,225,157, 3, 36, 40, 9, 50, 81,156, 88,198, 28,114, 15,186,156, 24,170, -163,184, 43, 91,199,136, 66,120, 62, 75, 85,244,178, 7,187, 91,232,168,215,113,166,148,110, 40, 98,142,184,227,240,143, 32,116, - 12, 90, 29, 37,137,211,193,115,100,238,230, 5,180, 53,220,200, 72, 78,225,203,216,162, 40,226,110,220, 57, 27,221, 56,158,221, - 74, 41,175,215,130,235,192,177,151,155,238, 63,186, 76, 77, 75,103, 97, 81,228,244,179,120,139,162,204,136,131, 98, 44, 23, 83, - 65, 72,230,227,179, 70,190,249, 52, 54, 82, 73,146,194, 90,205,147,138, 46,205, 14,222,194, 5,113, 89,152, 6, 72, 1,153,100, - 16,214,172,133,226,144, 70, 72, 40, 5, 8,187, 38,100, 22,252,217,180,220,140, 0,222,201, 40,214, 4,115, 0,156, 12, 43, 43, - 5, 33, 44,132, 80,104,181,137,252,123, 99,108,244,196,147,246,201,112, 17, 69,177,197,225,247, 73,207,175,136, 57,247,222, 3, -206, 4,248, 12, 89, 17,130,115,128,116, 6, 4,164, 33, 71,140,163,148, 54,149, 8,154,213, 39,221,232, 13, 97,231,230, 61,164, - 15, 42,111, 17,247, 71,222,123, 8,235,129, 64,161, 10,249,220,206, 34,168,233,179, 44,133, 51,170,163, 37,113,122,142,135,236, -198, 43,236, 45,180,206, 66, 88, 48, 27,221, 71, 27, 76,194, 30,242,231,143,159,227,238,251,239, 96,122, 57,101, 15,166,141, 95, - 67,200, 20, 42,138, 51,168,235,166, 49,132, 66,198, 97, 46, 89,158, 98,181, 88,161, 63,236,147,152,135, 71,119, 97,164, 13,239, -217, 62,195, 0,138,150,162,251, 66,190,185,148, 2, 22, 20,145,218,182,148,150, 70,149, 61,117, 69,205,146,108, 97,117,181,138, - 62,214,160, 66,238, 15,122, 16, 42, 65,206,226, 53,207,227,149,106,213,196,162,164,109, 53,148, 2,234, 21,193, 55, 22, 51,138, -183,205,242, 12,240,217, 91, 28,128,254, 40, 69,214, 50,152,134, 1,253,206,104, 24,103, 33,144,211,123, 40, 4,188,162,241,152, -247, 22,153, 32, 31, 38,249,252,155, 40, 80, 76, 51, 5,109, 57, 39,216, 9,180,173, 65, 46,232,161, 59,125,253,134,163, 65,119, -112,246,230, 13,132,243,168,231,231, 56,106, 43, 92,185,121, 19,211,179, 35,204,231,148, 24, 87,175, 42, 36, 89,138,233,217, 9, -202,222, 53,244, 7, 5,198, 89, 14,163, 61,132,202, 32, 96, 49,157, 44,112,243,254, 93, 60,248,245, 31,144, 42,131, 52, 81, 88, -204, 87, 24,173,106, 24,221,226, 69, 75,221, 77, 82, 90,228,101, 1,239, 29, 54,182, 70, 12, 57,242,104, 86, 11,228,253, 18,199, -207, 95,226,221,143,222,195,249,233, 20, 91,123,219, 24,143, 82,124,247,124,142, 27,119,111,225, 63,253, 47,255, 59,190,255, 39, -127,132,207,126,250, 3,232,213, 28, 16, 9, 12, 36,142, 79, 39,184, 56, 57,193,253, 15,111,225,224,112, 7,227,173, 17, 86,243, - 21,102,151, 51,152,118, 73,100,192,164,192,157, 15,238, 99, 99,123, 12,163, 45, 46, 47,230, 48,198, 34, 77, 5,182,118,182,176, -189,183,129,233,249, 5,178,162,192,245,119,182,162,162, 58,205,211,255,143,171,247, 90,146, 44, 75,179,243,214,150,231, 28,151, - 33, 82, 87, 86,101,169,238,153, 22,104, 12, 6, 52, 26,134,164, 25, 73,227, 21,223,135, 79,192, 55,162, 25, 13,102,184, 0,134, -128, 17, 36, 48,152, 65,115, 68,203,170,169,233, 18, 41, 34, 67,135,187, 31,177, 37, 47,254,127,239,227,217, 87,101, 93,157,149, - 17,238,126,124,239, 95,172,245, 45, 72, 1,184,113, 68,140, 45,140,109,208,247, 35,118,251, 1,135,221, 30,253,126,143,105, 28, -225,167,129,199,114,137, 39, 44, 97,190, 48,145, 41,225,144,215, 35,212, 93, 57, 62,236, 21,146, 32, 50,150,138,153, 9,143, 12, - 35,161, 13,220,108,133, 82, 10,146, 49,206,154, 47,191,130,239,164, 3, 85, 48,157, 78,207, 4,174,148,209,117, 13,198, 97,224, -191,131, 70,154,182,105,224, 61, 29,212, 77,219, 97,177,108,121, 2, 0,134,219, 68, 40,190,152,202,101,120,240,129,105, 91, 84, -224,212, 16, 18, 46, 0, 98, 8, 53,138,152, 70,243,185,170,131, 73,156, 70,152,224,162, 5, 17, 0,148,225,248,229,234, 80,153, -199,229, 69, 41,126,108, 65,154, 87,136,242,104, 13, 71, 23, 90, 96,134, 70, 8,137,247,225,243, 25,144,145,224, 60, 51,197, 3, - 31,198, 60,153,107,154, 6,221, 98, 69, 52,190,213,154,119,200,168,220,120,239, 29,250,195, 1,198, 6, 6,245, 68,182,238, 2, -253,161,167,166,160, 80,235,152, 14, 87,214, 25,180,126, 48,236,112,225,125,108,136, 48,198,242,132,101,102,126, 23,254, 55,157, -175,150,242,235,149, 98,139,155,172,160,156,146, 32, 38,165,160, 70,132,119,213, 69,253, 78, 59, 93,226,164,199, 20, 89, 11, 65, -235, 13, 90, 85,204,148,204, 98,165,205, 5,159, 42, 52,133,201,104,214, 0, 40, 10, 27,209, 90,145,186, 93, 11,126, 93,156,162, - 25, 35, 36, 68,101,255, 39,240, 5, 28, 34,218,206, 16, 83, 67, 42, 72,173,234,148,151, 56, 13,116,113, 42,118, 26, 72, 41,160, - 68,177,223,209,232, 92,208,104,134, 68,194, 69, 64, 89,187,105,162, 97,230, 72,122, 49,205, 5,169, 96, 72,145,214, 2, 62,203, -138,222, 77, 33, 67,105, 75, 58,143, 84,200,161,186, 78,107,138,112,178, 52,104, 41, 81, 39,174,164, 68,150, 26, 50, 39, 58,139, - 83,166, 16,158,148,106, 67, 89,115, 63,114,162,133, 70,138,208,122,158,154, 86,234, 99, 76,200,130, 24, 21, 41, 1, 9,128, 98, - 65, 92,206, 71,216, 96, 33,230,245, 66,113,164,241,138, 74,131,171,239,242, 38, 80,116, 96,248, 32, 23,183, 8,174,138,237,128, -118,250,164, 10, 87, 66, 64,113,252,104, 76,164,226,115,211, 4, 99, 69,245,241, 89,107, 48,241, 94,120,232, 71, 44, 86, 93, 5, -253, 39, 49,251, 94,179,226, 67,136, 71,226,130,191,184, 49,122, 64,140,216,239, 39, 88,107,248,226,156,147,157,192,185,208,222, - 5,246, 84,199,202,142,143,145,138,141,178,119,161,177, 9, 21, 38,110,242,213, 62, 64, 44, 94, 1, 63,121, 74,155,211, 18,158, - 39, 9, 37, 56, 70,243, 84,129,198,147,116,225, 19, 27, 89,114,215,238,171, 87,125, 26, 70,126,160, 51,198,190, 71,211,117,112, -166, 40,157, 45,140,149,104,186,134, 33, 29,116, 8, 78, 28,125, 74, 59, 83, 78, 45,243,212,177,173, 54, 43, 44,150, 29,130, 44, -137,116, 13, 78, 31,119,240,147,195,216,247,232, 15,125, 77, 63, 34,174,125, 32, 27, 73,221,233, 1,214, 90, 24, 99, 48,244, 67, - 85, 53,187,201, 85,186, 81,241,237, 78, 83,100,112, 71,134,235,239,113, 57,246, 56,127,250, 28,211,225, 30,253,238, 1, 72, 17, -223,126,221,227,163,207, 94,193, 52,123,236,247, 35,194, 52,160, 93,172, 49, 13, 87,248,254,155, 31,240,242,179, 23,120,250,226, - 28,206, 69,220, 92,247, 88,158,108,241,246, 15,223,227,229, 23,159, 98,181, 89,227,230,102, 15,239, 52,250,221,136,221,253, 30, - 90, 43, 28, 48, 32,103,144, 26,126,213,225,176, 27,240,248,217, 25,222,190,190, 69,219, 53, 8, 83,198,176, 63, 64, 91, 13,101, - 45, 32, 45, 94,126,186,197,215,127,251, 43,252,233,159,255, 20,127,243,127,253,191,248,111,255,167,191,192, 39, 63,254, 18,211, - 97,143,119,111,238,113,191,243,120,253,135, 31,160,224,241, 63,252,207,127, 6,129,132,110,217, 98,247, 48,224,254,118, 15,153, - 39,172, 54, 27,216,182,173, 99,241,235,247,183,216, 63, 80,167,181,217,116,248,228,243, 23,117, 42,243,232,249, 83,116,203, 14, -227,232,209, 31, 70,184,209,225,230,242, 30,187,251, 7,244,251, 3,134,253, 0,239, 60,166,113, 64, 78, 30,195,225, 1, 57, 6, -158, 56, 77, 53, 2,181,140,162,132, 44,156, 1,154, 52, 57,239, 97, 12,169,133, 41, 56, 36,215,231,149,116, 29,244, 28, 78,227, - 4,109,169, 96,211,204,224, 78, 41,161,177, 22, 67, 63,144,253, 48,151,238,151, 44,129,213, 34,199,150, 74,173,116,141, 35,142, - 33, 30,197,118,210, 74,171,109, 91, 52,109,139,197,178, 67,219,181,213,238, 38, 4, 71, 10,167,128,187,251,253, 17, 38,116, 78, -100,243,204, 74, 40,177,160, 33,149,174, 55,179, 8, 44, 51,141,107, 22,129, 42,221,212,215,130, 42,180, 69, 77,151,211, 60, 34, -166, 34,136, 41,117,188, 94,192, 31, 89,184, 50,139,120,149, 54, 85, 8, 92,132,139,117,119, 91, 44, 65, 49, 32,242,196, 36,114, - 32,139, 98, 93,135, 84,196,222, 88,173,215,244,189, 53,182, 38,210,165, 24,145, 66,198, 52, 77,184,191,187,163, 85,101, 37,161, - 25,140,195, 72, 65, 67,253,129, 35, 63, 69, 37,143,165, 28,171,152,184,124, 30, 37,243,162,140,112,201, 14, 76,141, 82,133,222, -240,186, 32,241,228,164,240,241, 82, 34, 71,145,146,146, 24,250,154, 50, 23,104, 31, 78,136, 85,142,193,129, 64,164, 66, 49, 49, -172,138,159, 47,210, 33,208, 77, 82,206, 61,173, 52,119,248,244,204,106,166, 19,166, 44,184, 35, 38, 11, 96,113, 97, 28,179, 67, -138, 82, 30,252,243,149, 52,252,249,104, 30, 27, 39, 76, 35, 21, 17,218, 40, 70,115,163,114, 3,102,192, 24,145, 67,193,197, 14, -137, 4, 75,193,146, 56,243, 61, 34, 75, 32, 50,255,132,138, 86, 82,179,155,198,206,186, 4,105,233, 48,228, 98, 84, 32, 33,167, -130,234,157,121, 32, 66, 17, 11,210, 92,209, 0, 0, 32, 0, 73, 68, 65, 84, 40,168,116,197,200,169,126, 70, 74,155, 58, 97,211, -182,129,159,166,163, 2, 17, 31, 62, 99, 60,185,150, 66, 66,104,126,118,153, 49,193,162,129, 35,148,179, 68,202, 17,170, 0, 98, - 69,230,201,120,170,218,132, 98, 47,167,207,111,246,204,211, 84,157,238, 84,109, 45,161, 38, 67, 8, 60,134, 5,231,206,134,163, -202, 64,242,200,196,179, 73,128,130, 3,188, 39,235, 73,102,192, 68, 78, 9,210,170, 15, 10, 1,173, 53,188,208, 80,138,108, 54, - 25, 2, 67, 47,224,117, 64,203,163,189,196, 22, 14, 34,162,137,202, 56,255,160,160, 16, 25,187,251, 61,150,139,134, 47,161,128, - 16, 19,220,228, 96,173,229, 47, 74,169,146,168, 26, 78,137,126, 79,169, 36, 2,199, 59,122,231, 57, 22, 54, 31,101,169,139, 26, -202, 98, 44, 21, 9,129,115,149,181,150, 92,105,129,129, 54,165, 58,231, 56,188, 80,166, 24,185,174, 30,202,174, 91, 73, 81, 83, -239, 98,136, 80, 42, 98,228,148,171,195,174,135, 54,148,149, 94, 94, 95,129,141,108, 78,183,240,147,163, 64,149,126, 64,191,239, -113,127,123,139,135,219, 59,172,182, 43, 40,109,176, 88, 46,234,231,178, 88,175,177, 92,175, 48, 49,154,119,154, 8, 7,217, 68, -139,204, 65, 27,198,218, 58,166, 90,174, 55, 8,193, 49,221, 74,214, 81,184,109, 26, 76, 35, 59, 5, 4,117, 78, 57, 38,196,112, -192,119,247, 55,216, 62,126,142,229,201, 41,174,222,188,134,214, 10,255,244,235,223,224,228,201, 11,172, 54, 27, 12,123,192,141, - 14, 39,143, 30,225,187,175,254, 17,111,190,211,144, 34,227,197,167, 31,225,250,106, 15,219, 44,176,187,189,197,111,126, 57, 96, -123,186,193,238,110,135,110,189,198,106,187,196,254,126,143,237,217, 26, 55,151,183,208, 90,225,197, 39,207,160, 20,192,250, 77, - 0, 2,251,135, 30, 93,103,240,237,111,191,194,207,255,213,191, 68,127, 8, 88,111, 23,112,253, 1,219, 71,231,184,121,119,129, - 63,251,239,254, 28,186, 93,227,221,155,107, 92, 95,238,240,240, 48,225,225,230, 26,175, 62,123,140, 23, 31, 63,197,197, 15,239, -240,248,163, 39,184,185, 62,160,237, 26,156,157,117,216,156, 62,165,177,109,204,184,190,184,198,229,197, 29,114, 22, 88,174, 23, - 88,173, 58,124,241,211, 79,177, 92, 47,113,115,121, 11,239, 19,190,255,246, 2,183, 87,119,216,221,221,243,151, 57, 96,234, 7, -238, 78, 9, 98,145, 64,150,203,232, 7,120, 55,206, 94,100, 41,107,215, 88,114, 9, 50,128,166, 93, 48, 62, 57, 33,231,192,145, -197,182,142,207,137, 52, 72,226,155, 12, 1, 31, 18,101,151,139,162,204, 38, 42,100, 1,107, 40,163,107, 87, 72,194, 84,205,227, - 73, 13, 31, 34,218,150,132,122,162, 82, 26, 21,180, 46,105, 84, 29,132, 36,177,155,146,170,138, 90, 37,239,254,156,115, 24, 14, - 7,196, 64, 98, 80,228, 8,165,200, 91, 79,221, 92,226,238,133,214, 89, 5, 0,165,181,134,115, 99,181, 96,249, 92, 34, 36,105, -109, 37,143, 18,173,128,121, 63, 92, 19,197, 56, 57, 82, 74, 73,140,108,100,142,247,172, 58,246,185,227,230,192,147,152, 18,192, - 63,187,172, 52,170,247,158, 47,198,156,104, 98, 34,133,128, 79, 9, 74, 25, 72,101,171, 47,222, 48,114, 84,107, 11,165, 12, 63, - 43,116, 54, 4, 63,193, 57,138,163,165, 48,168,150,132,188,156, 19,225,125, 96, 82,223,200,187,111,218,187,166,163,216,211,154, -170, 8, 90,189,137, 36,185,243, 47, 69, 81, 98, 87, 15,135,206,240, 57,163, 53,185, 94,170,128,140,197,106, 37, 99, 27, 72, 85, -232,150, 99,168,224,153, 44, 50,148, 50, 16,130,173, 84,145,156, 52, 57,122,218, 55,179, 32, 50,184, 80, 89, 2, 50, 39,100, 97, -170, 53, 45,231, 50, 14, 39,245,119,228, 11,204, 52,244, 76,210,234,136,220, 97,193, 83,129, 8,134,239,216,198,242,103,153,234, - 68, 88, 84, 93, 86,174,122,141, 66, 83,203, 41, 67, 25, 5, 1,134, 14,153,130, 41,201,176,141,133,131,175, 64,150, 26,199,155, - 18,197,129,131,117, 24, 92, 36, 70, 70, 33, 43,163,144, 56,232,133, 86,198, 9,137, 39, 70,199,208,164, 82, 72, 21,192, 16,253, -222,168,105,137, 82, 42, 4,231,232,189,151,100,195, 46, 80,153, 20, 8,186,230,189,175, 74,248,153,149, 34,234, 58,123, 14, 11, -162,201,138, 49,134,248, 47, 49, 66, 49,251,159, 88, 10,153, 39, 33,137,155, 93,207, 80, 52, 1,165,242, 7, 22, 77,237,216, 74, -165, 89,174,111,172,161,180, 31, 99,216,155, 78, 74, 64,239, 2,135, 22,160,254,114, 52,174,214,140, 89,101,108, 99, 54,213,163, -170,141,194, 48, 36,216,198, 34,165, 0,197,196,170, 20, 35, 4,203,242, 37,239, 26,180, 38,225,219, 52, 57, 6, 33, 72, 14, 80, -201,117,108,239,198, 30,167,167,231, 53,240,126, 14,150, 79,117,140, 81, 70,229,227, 48,161,233, 26,116, 11,226,197,155, 70,195, - 79, 84, 81,250, 41, 64, 45,216,223,202,123, 11, 74,161, 42,169, 77, 51, 24, 97,134, 36,228, 15,176,173, 82,203,218,117, 37,126, - 8, 83,244, 8, 62, 85,255, 33,253, 46,138,119,117, 84,113, 66, 0,211,224, 56,103,222, 99,232, 73,165,233, 28,145,227,172, 49, -188, 87,164, 11,123,181,217, 98,181,217,176, 45,131,184,209,253,161,135,159, 28,129, 39,186, 6,198, 88,180,203, 14,221,122,133, -197,122, 5,129,132,135,187, 29, 0,192, 79, 19,220,228, 56,253,140,132, 45,125, 63, 17, 61, 73,208, 62,116,236, 71, 76, 99, 64, -240,229,119, 6,144, 3,220, 56, 85,177,135, 64,198,237,219,239,112,111, 23,120,254,201, 43,220,188,249, 30, 41, 12,184,252,254, - 27,220, 47,206,240,252,213, 11, 12,247,215, 24,199,132,213,102,133,239,126,247, 43, 56,247,167,232,247, 3,158,127,250, 18, 63, -124,123,133,229,102,139,203, 55,239,176,220,110,177, 88, 46,106, 40, 71,100,142, 0, 50,251,124,207,182, 24, 15,123,156, 61,218, -226,230,114,135,229,170,197,254,254,128,171,215,111,160,173,129,233, 22,232, 15, 19, 94,125,118,142,175,254,238,247,120,252,226, - 41,214,219, 53,238,119, 1,253,253, 1,111,191,191,192, 56,102,216, 70,225, 95,254,197,207, 48,246, 61,222,189,126,143, 71,207, -159,226,176,119,208, 90,226,228,164, 97,170,159,192,197,235,247,120,184,221, 35,102,137,205,217, 41, 22,203, 22,235,245, 2,143, -158,159,227,176, 59,224,219, 95,254, 14,247,183, 15,216,221, 61,224,246,253,123,236,239,110,233,128,230,232, 81,201,112, 15, 90, -201,104,100,112,158,122,182, 80, 12, 74,145,162, 8,101,216,154, 34,230,110,145, 10,106, 5, 68,202,123, 46, 16, 35,197,188,117, -109, 40, 36,163,116, 71, 74,167,154,137, 94, 38,106,249,232,153, 1, 91,200, 74, 33, 90,104, 84,164, 90, 38,221, 76,140, 9,157, - 49,104,154, 6,107,107, 42,179,186, 8,216,220,228,144, 83,198, 52,141,149, 80,152, 18, 77,225,202, 40,209, 90,141,105,138, 85, - 1, 76, 69, 1,191, 30,246, 28, 11, 8,208, 93, 70,239,141,177,162,142,153,173, 53,224,218,189, 42,210,101,205, 72, 23, 71,145, -153,220,189,234,178,175, 21,208,138, 58,177, 34, 40,203,220,249, 10,222,205,231, 35,232, 7,241,235, 19,119,159, 37, 88, 72,214, -179, 76, 27,203, 66, 59, 0, 66,207, 94,119, 89,224, 47, 69, 68,150, 17,188,171,104, 79,199, 54,189,146, 65,223, 52,246, 8,231, - 74,231,200,225,112,168, 12,111,121,196,188, 7,168,161,192, 81,252,169,136, 51,130,183,232, 16,102,107,161, 98,133, 54,152,250, -105,171,119,158, 34, 67,233,156, 52,214, 84, 33, 34,216, 94,149, 18,143,169, 69,174,169,102, 36, 58, 20,144, 66, 85,161, 52,162, -231, 78,182,132,180,144,216,139,248,254, 52, 49, 40,246,184,156, 34, 79, 16, 20,180,149, 60,254, 78, 16,138,108,209,200,128,182, - 10,193,211,153, 47,165,132, 50, 22,193,121,100, 4, 72,173, 88, 65, 63,175, 66,105,218, 26, 25,191,157, 16,249,252, 87, 42,215, - 46, 93,107,158, 68, 40,197,141, 26,224,125, 68, 46, 0, 50,246,236,135, 16,121,202, 32,235,164,166, 12,116, 18, 23,193, 53,237, - 46,230,202,189,143,172,163, 40,147,232, 66,232, 11,172, 97, 41, 43,158, 24,242, 81, 6, 65,172,108,129,148, 2, 39,197, 50, 75, - 5,224, 21,158,134,247,145,237,123,243,119,151,220, 10,166, 18,233, 50,138, 11,193, 80, 1, 17, 73, 59,144, 69, 98, 91,158,172, - 19, 85,169,115, 45,154,115, 74,140,182, 13,208,197,158, 85, 60,222,206, 49,249, 76,113,104,201, 52, 33,248, 63, 34,146,165, 34, - 32, 83, 20, 15, 90, 63,116, 64,107, 38,159,177, 48,129,186, 96,170,114,232, 75, 28, 17,130,135,156, 36,251, 41,231, 36,180, 25, -230, 64, 15, 76,230,160, 3,197, 23,168,119, 35, 98,146, 21, 60, 81, 0,246,137, 1, 24,222,147,213,166,120, 28, 41, 14,214, 64, - 52,134, 69, 43, 17, 50, 68, 34,173, 69, 18, 18, 25,203,161,244, 85,185, 31,107, 97, 80,184,213,130, 89,245, 36,196,137, 71, 41, -110,168,144,142,161, 31,129, 76, 21, 84,138, 12,144,129,128,144,134, 49,180,220,157,241,106, 97, 28, 28,165,177,197, 4,200,132, - 24,136,212,229,198,137,132,127,252,165, 44, 35,186,197,106,193, 74,123,139,211, 71,139,186,207, 87,146, 82,217,250, 7, 18, 29, -153,134,210,222, 54,167,167, 16, 34,195, 79, 35,134, 67,143, 20, 61, 70,231, 42,220, 33, 5,178, 37,122, 71,220,230,205, 73, 11, -207, 93, 88,191, 31, 32, 16,121,204, 51, 63,220,180,143,186,199,254,238, 22,143, 95,190,130, 10, 7, 92, 95, 92, 32, 76, 19,190, -233, 7,124,242,229, 39,120,184,122,143,118,185,133,209,223,227,135,175,191, 66,206, 95,242, 14, 75,225,244,233, 99,220, 94,221, -225,230,226, 10,219,243, 83,244,135,177,226, 49, 11,199,251, 71,255,236,199,152, 70, 71,201, 74,138,130, 78,250,155,123, 52,173, -193, 87,127,255, 91,252,248, 95,252, 2,247,119, 61, 62,250,120,139,225,208,227,147, 31,127, 6,109, 44,174,175, 15, 80, 2,248, -238,171, 63, 32,201, 22, 79,158,111,113,254,228, 4, 15, 55,183,212,117, 51, 55,255,229,167, 79,177, 61, 89,224,250,253, 45,118, -119,123, 42,234,164,129,180, 11, 60, 92,221,225,250,226, 26, 79,158,159, 98,185,252, 8,215, 23, 87,120,253,135,215,184,187,188, -197,221,205, 45,134, 67, 79, 36, 66, 86,174,131,199, 95,137,225, 17, 21,123,156, 5,132, 50, 80, 85,201, 74,207,162,150, 26, 41, -199, 35, 31,172, 34,215, 1,219,171, 20, 43,131, 75, 84,104,211,118, 71,208, 21,193, 98, 36,218,243,133,224,106, 94, 58, 93, 14, -169, 6,209,144,203,129, 39, 51, 41, 87,107, 81, 25,161,119,139, 14, 90,179, 99,163,177, 85,121,238, 38,178, 80, 14,253, 1,253, -190,231,221,190,130,181, 22, 94, 42, 58,184,185,144,214, 86,177,230, 69,215, 52,169, 24,249,162, 46, 69, 0,243,185,173,108,216, - 18,102, 48, 13, 3,239, 25,105,231, 90,220, 55, 37, 1,173,168,156,107,152, 13,135,215,148, 32,151, 84,245, 31,212, 52, 80,119, - 26,102, 81, 20,251,136, 99, 76, 20, 5,203,149,141,168,148, 46, 48, 23, 34, 49,173,142,241,171, 42, 67, 66,162, 81,115, 70,115, - 17,133,121,239,160,179, 66,138, 84,232, 96,185,224, 44, 11,234,172, 41, 89,209,162,105,104,207, 75,199,145,192, 56,244,216, 31, - 30,102, 7, 78, 58,142,176,206, 71, 8, 87,238, 2,203, 8, 55, 69,222,187,131, 59,184, 80,109,112, 5,124, 82, 4,135,130, 51, -210, 13, 79, 73,162,247,220,169,231,122,142, 74,145,171,133,173,228,124,231, 28,161,164,174,192,147, 50,166,207, 57, 64, 10,205, - 23, 91,100, 17,104, 65,175, 22, 53,182,168,201,106, 74, 0,201, 71, 36,161,144, 65, 83, 27,234,142, 34,166,222, 67, 40, 93, 95, -159,119,174, 66, 96,104,237, 9, 52,204,118, 87,140, 28, 78,124, 22, 32, 39,216, 70,147,202, 93,146,218,157,130,191, 60, 12,199, -186,166,148,224, 39, 79,186, 2, 6,136,101, 46, 14,140, 85, 85,243,144, 51, 7,191,240,132, 6, 49, 31, 45,151,115,109,204,106, -238,130, 80,140, 29, 47,133,119, 89, 57, 71, 94,163, 49,219,132,161, 67,168,251,110, 6,134, 37, 58, 27, 4,143,214,139, 48,181, -236,250, 9, 48, 83,224,110,199,244, 67,210,152, 20, 97, 94, 12, 97,142,161, 45, 23, 62, 74,158,123, 96,125, 66,154,129, 55,244, -169, 67,151,125,178,102,145, 66, 8, 52,166, 70,152, 57,202,211, 56,161,109, 45, 66, 72, 20,146, 50,121, 68,149,142, 18, 98, 34, -229,125,115,197, 67,234,121,122, 96,218,182,129,155, 38, 40, 77,138,241,226,203, 12,129,224, 46, 21, 48,161, 36,178,144, 76,139, - 82, 53, 73, 40, 8,218,149,175, 54,180, 63,116, 46, 64, 42, 13,239, 93,237,240, 1, 93,105, 88,101,196,162,149, 68,110, 8, 18, - 35,164, 96, 70, 59, 29,154,182,149, 21,209,167, 25, 1, 43,165,168,130, 31, 89, 2,103,184,178,170,164, 33, 14, 27,144,146, 70, - 78,245, 50,202,100, 87, 35,106,147, 70, 10, 35,124, 8,104,187,150, 15,101, 89,233, 81,136,116, 88, 53,141,101,214, 48,141,119, - 34,119, 55, 33, 4,142, 75,141, 21,121, 11, 0,211, 52,212,160,142,166,165,195,121,185, 94, 64, 89, 11,203,255,155,186, 49,202, -240,141,137,178,201, 55,103,103, 88,109,183, 0, 18, 14, 15,123,244,135,129,248,222, 46, 50,134, 86,241, 4,129,188,188,221,162, -133,146,148, 50, 53,197,192,106,253, 80, 61,173, 57, 0, 70,143,120,247,135,223, 99,177,125,134,103,159,126,142,135,171, 11,164, -176,195,213,219,247,120,250,241,115, 76,135, 61, 94,253,201,143,241,219, 95,254, 29,222,124,247, 26, 74, 73,188,252,252, 37, 14, -251, 17,155,211, 45, 30,238, 30, 96,187, 14,125,239,232,253, 73,212, 86, 45,214, 29, 62,251,147, 87,184,188, 60, 32, 37,218,219, -110,182, 11,188,185, 63,224,205, 63,254, 30,175,254,228, 75, 8,179,192,201, 73,139,237,201, 18, 15,247, 3,156, 23,244, 94, 55, - 26,127,248,253, 15,128, 94,226,227, 79, 30, 97,177,176,232,239,111,241,232,201, 25, 67, 36, 44,158,190,120,132,118,209,224,230, -242, 14,211, 24,113,241,230, 26, 23,111,111, 49, 77, 30, 34, 7,156,159,175,240,211, 63,251, 2, 82, 41, 92,188,126,143,171,183, -151,184,191,185, 33, 69,123,160, 47,141, 49, 10, 57,105,136, 64,196,192, 2, 59, 17, 82, 81,167, 34, 5,140,182,136, 9, 64, 18, -149, 17,159,217, 62, 35, 25, 41,153,145, 89, 37, 91,200, 96,146,211,185, 72,220,216, 46, 90, 22,106,169,122,252,208,133,205,150, -160,152, 48,185, 0,114,236,168, 90, 8, 10, 33, 97, 27, 34,145,117, 93, 7,219, 90,116,139, 14,203,213,146, 99,117,153, 32,199, -138,237,254, 48,192, 57, 7, 63, 57,236,247,123,210,116, 48,238, 52,103,160, 91, 16,237,206, 54, 13, 57, 43, 20,101, 20,216,198, -206,138,246, 72,235,129, 98,151, 44,201, 88, 37,125, 12, 16,236, 30, 73,112,139, 9,193, 59,140,195, 88,105,116,133,182, 22,131, - 3, 96,184,176,142,245,112, 35,171,172,224,224, 21, 85,249,226,244,157, 39,221, 14, 65,115,240, 65, 30,117,228,223,139,205,107, -148,248,101, 4,139,255,116,253,206,148, 84, 67,133,204, 59, 91,250, 14,145, 53,144,166, 87,198, 26, 40, 41,171,254,136,210,222, - 10, 3,162,161,244,188,178,110, 12, 30, 25, 25,187,135,125, 61, 35, 75, 76,105,153, 44,146,154, 63, 85,225, 97,233,202, 9, 6, - 83,176,177, 37, 47, 94,214,112,151,204,120, 86, 99,168,153,160, 61, 57, 49,242,219,214, 84,139, 26,137,184, 34, 82,244,148,248, -199,160, 18,154, 0,240,133,149, 2,227, 93,105, 18, 39, 50,137,205,146,146,140,157,165, 66,174, 96,173, 73,227, 17, 88, 4,150, -235, 26, 73, 40,193,240, 44,202, 53, 80,122,118,131, 16,194, 20,240,172,118,167, 11, 76, 1, 40,148, 63,137,110, 97,217,105, 52, -223,179, 41,206,202,247, 24, 73,193,174,141,174,147, 93, 33, 5, 68, 46,211,147, 84, 99,195, 37,128, 16, 18,223, 33,162,190,103, - 37,241, 62,213, 2, 43,147,202, 60, 82, 33, 30,156,255, 96,125, 83, 45,101, 49,113,108, 44, 5,239,240,156,171,134,156, 33,139, -170,175,226, 33, 19, 51, 94,138, 8, 52, 33, 71, 65,147,132, 18, 98, 37, 45, 21,167, 74, 81,198,189, 84, 16,108, 97,206, 50, 33, - 39, 28, 37, 46,250,234,208,160, 20,193,192, 97,109,185, 78,232, 74,128, 16,167,215,208,248,189,235,186,250, 70,229,156, 16, 51, -137,170, 10,200,101,177,236,120,150, 21,171,245,165,105, 12,239, 95,243, 7, 9, 81, 67,223,163, 91, 46,225,189, 71,199,241,119, - 66, 72, 52, 77,131,177,239,107, 7, 58, 12, 3,195,240, 5, 90,171, 25,127,135, 57,198,128,173,168,244,128, 48,211, 61, 70,140, -195, 4, 99, 12,250, 3, 93,232,178,236,126, 43,184,128,245, 1, 98, 14, 58, 9, 62,212, 46,220, 88,139,224, 2,132,149,100,135, -101,138,145,144,128,231,221, 88,137,192,179,141, 70, 12,153,247,251,162,138, 81,114,202,180,115,210,234, 40,138,111,134, 16, 64, -144, 85, 45,103, 89, 67, 47, 10,156, 33,198,132,182,109, 8,231,167, 36,119,168,145, 5, 65,137,237,121,190, 86,157, 72,168, 4, -161,152,231,228, 31, 0, 24, 15,135,154, 87, 76,204,250, 6,182,105,208,116, 45,186,101, 87, 15, 46, 90,127,100,194,151,158,103, -184,113, 66,191, 39,113,221, 56,240, 1,158, 20,191, 14,192,182, 11,104, 99,177, 92,175,112,120,216,161, 63,120,140,253, 80,249, -226,137, 99, 10,199,135,183,120, 51,236,241,236,147,143, 17,134, 59, 12, 15, 87,184,122,171,240,226,179,143, 49, 29, 90, 60,123, -249, 18,175,191,253, 30,215,151,107,172,182, 43, 52,139, 37, 54,103, 91,220, 94,223,227,246,242, 22,139,245, 18, 72, 36, 76, 20, - 82,224,249,171,143, 48,142,158,109,137,180, 71, 63, 57, 91,195, 79, 35,164, 20, 88, 63,122, 10,239, 60,206, 31,175,224,124,198, - 97, 31,107, 16,206,205,213, 3,148,237,240,179,159, 62, 67,107,105,180,216, 46, 90,244, 15, 7, 72, 99,113,182, 93,225,250,234, - 1,119,215, 15,184,248,225, 61, 14,251,129,253,245, 10,167,231, 91,156,158,173,241,244,163, 39,208, 90,226, 31,254,250, 31,112, -115,121,141,161,159, 96,173,132,214,150, 58, 57,238,128,134, 97, 36,104,132,182,180,115, 68,217, 79,107,254,119,244,204, 79, 62, - 65, 72, 77, 29, 37, 88, 13, 46, 20,132,204, 16, 50, 67,155,134,145,205, 25, 41,147,114,189,227, 66, 80, 41, 93, 67,123, 10,170, - 88,228,196, 93, 57,199, 87, 98, 14, 53,105,219,134,130, 92,150, 75,180, 29, 49, 19,202,115, 17, 88,200, 52, 14, 19,145,251,174, -239,234, 97,183, 88, 46,234,232,111,123,178, 5,242,134, 64, 78, 66, 85,157,135,226,105, 20,209, 21,195,220,221, 9, 90, 91, 69, - 31,145,114,132,159,202,184, 88,112,151,146,171,248,171,120,134, 23,139, 5, 82,106,177, 88,174,106,225, 58, 7,170,144, 96,173, -223,239,225,166, 17,146,167, 80, 4,238, 96, 37, 87,241, 8, 87,194, 98,230,162, 66,124, 96,121, 35, 63, 59, 93, 32, 41,207,232, - 81,194,240, 42, 62, 56,227,220,201,165,136,224, 39, 42,240, 16,103, 87, 12, 39,184,153, 2,156,210, 51, 12, 6,204, 60, 95, 44, - 90, 40, 45,107,167, 21, 66,194,112,232,225,188,171,187,251,200,107,141,121,205,128, 15, 80,220,115,106,216, 12,226, 58,118, 0, -120,239, 96,180,230, 75,149,211,220, 80,108,103,146, 29, 76,185, 78, 58, 88, 83, 9, 32, 81, 88, 74, 46, 74,247, 84,243,209, 1, -218,165,139,218,133,179, 29,139, 47,249,227,134, 70, 41,131, 88, 82, 42,131,103,117, 58,173, 10,163,247,176,141,169, 17,205,137, - 19, 35,115, 22,160, 56, 53, 5,109,104, 15, 46,149,132,109, 45,119,178,244,223,120, 23,208,180,166, 78,150, 38, 23, 16, 60,119, -228, 71,221,116,233,202,133,148,136,222,215,159, 7,182,123,149, 49, 62,253, 23, 18,211,228,200,223,159, 2,211,226,248, 61, 77, - 84, 52,208,253,158, 72, 28, 88, 99,111, 69,205, 51,153,198,169, 58, 14,114,204,204, 87,225, 38, 52, 83, 49, 93, 46,118, 48,158, -187,124, 31,201, 97, 64,187,243,196,175, 27, 34,215,231,220, 24,131, 44,100,157,122,100, 70,130, 67,170,242,193, 85,215, 10,233, -197,136, 4, 58,243, 21,136,163, 79, 23, 58,253,192,146,140,167,141, 49, 76, 49,163, 20,181,204,135,128,231,113, 69, 9, 9,200, -108,209, 8, 33,214, 64, 6,165, 34, 98,154,253,163,101,125, 81,190,248,222, 27,180, 12,100,137,137,170,165,178,111,179,214, 32, -120,143,166,109,107,206,114,137,243, 43, 24, 65,130,218, 73,196, 40,120,138, 16,200,230,163,233,133,134, 20,184, 42,162, 15,142, -144,150,115,212, 95, 25,183,145, 37, 99, 14,165,208, 70,206,163, 40,158, 80,224, 40, 77, 45,134, 84,247,249,229, 67, 40,241,170, -133,135,109,172, 33,117, 98, 38,112,133,115,108, 89, 73,212,133,211,254,147, 99,101, 51,160,121,151,222, 46, 90, 22,224,105, 70, -212,198,186,130,136, 33, 48,250,211, 85,129,152, 16, 2, 40, 97, 48, 85, 89, 74,234, 98,163,233,139, 24, 28, 83,178,252,136,251, -155,200,116, 58, 9,109, 27,172, 54, 43, 40, 99,209, 45, 87, 88,109,150,176,141,133,110, 21, 54, 77,135,245,233, 9,130,155, 48, -236,239,113,119,117, 83,243,157,233,181, 73,132, 0,180,171, 13,186,229, 18,110, 28, 48,246, 7,140,227, 52,163, 40, 5, 16,198, - 59,188,253,167, 1,203,211, 23, 56,123,250, 12,251,219, 27,252,240, 13,240,244,227,151,120,254,249, 23,232, 15, 61,118,183,239, -112,117,177,198,179,151, 6, 49, 83,234,216,238,238, 30,139,237, 6, 82, 36,228, 24, 96, 27,131,205,217, 22, 23,111,110, 49, 77, - 17, 57, 42,108,207, 86,120,247,230, 6,135,251, 7,188,252,241,231,184,189,233,113,126,102,113,123, 51, 97,191,223,211,151, 49, - 3,206, 39, 18, 16, 42,133,177,119,232,247, 25,167,143,182,144, 50,194,116, 75,196,224,241,246,187,215,152, 6,135,235,171, 29, -250,131, 67,244, 35, 30, 61, 90,225,228,124,139,118,209, 98,123,186,197, 56,140,248,155,255,240,119,184,191,185, 37,229,177,162, - 29, 31,144,209,118, 84, 36, 13,135, 30,214, 90,140, 33, 32, 51,246, 49, 73, 16,122, 85,146, 42, 88,242, 51,210, 45, 59, 68,239, - 43,227, 64, 86, 37, 54, 72,225,202,202,203,210,125,118,139, 69,245, 0, 23,210,163,210, 68,112,140, 12, 87, 25, 6, 7, 37, 37, - 86,235, 21,108, 75, 60,134,213,122, 5, 41,185, 8,200, 96, 20,235,132,222,123,162,191, 29, 70,190, 15, 37, 22,139, 14,155,205, -170,114,227, 75,212,104,138,101,143, 30, 49,244, 61, 59, 48, 60, 26,182, 18, 21,229,122, 74,145, 47, 25, 95, 45, 59,110, 28,137, - 72, 23, 18,243,191,143,248,227, 0,129, 93,152, 53, 95, 58, 26, 33, 4,246,187, 3,211,217,136, 30, 71,105,142, 22,106,179, 69, -140, 43, 72, 37,224,157,131,119, 14,110, 28,234,168,179,154,119,249, 59, 25,242, 60,146,167, 29,227,124, 97, 42, 77,122,129, 84, -207, 23,218,201, 10, 81, 94, 3, 77,201, 2, 59, 19,138,206,167,208, 51, 99, 72, 48, 37,161, 50, 38,222, 49,203,154,121,177, 88, -118,208,214,144,199, 60,132,202,164,232,251, 1,193, 59,178,162, 85,205,133,168,211,131,227,128, 41,173,143,245, 65,116, 78,170, -163, 34,165,120,178,115,230, 73,162, 17, 12, 17, 74,144, 44, 42,172,187, 98,190,240, 51,143,147,145, 99,141, 12,173, 9,107, 41, - 48, 50,149, 94, 99,217,199, 75, 62,231, 5,219, 4, 37,167, 1,150,160, 39, 26, 83,123, 74,192, 99, 75,163, 86, 18, 66,203,170, - 55, 42,187, 93,201,251,237,152, 40,176, 36,133, 4,109, 37,131,149, 2, 22,171, 69,189,164,164,204, 24, 7, 87, 17,188, 69,213, - 29,125,224,198, 75, 84, 87, 15, 25,155,210,124,121, 23, 75,100, 6, 33,187, 57, 59,157, 44,137,156,101,174, 52,173, 34, 50, 79, -200,164, 64,202, 18, 82,144,160, 49,213,152,212, 92, 39, 28, 36,218, 35,139, 94,113, 26,148,172,245,232,153, 41,193,248, 95,106, -148,169, 25, 77,145,242,218,131,159,234,138,162, 20,109,224, 59, 82,107, 81,109,221,164, 3, 99, 24, 81, 13, 28, 74, 92, 40,240, -231,207,235,225,130,210,157,145,238, 10, 73,228,202, 57, 41,207,138, 38,216, 65, 70,204,161,238,245,154,182,169, 10,192,182,107, - 42, 8, 99,246,147,198,250,208,171, 72,111,148,143,129,194, 78,124, 96,177, 12, 5, 91,132, 16,185,163, 16,232,186, 22,206, 57, - 14, 4, 80,240, 62,210,255,102, 91, 93,140, 9,109, 71,150, 28, 26,243, 1, 49,145, 96,163,236,135,134,126,128, 92,154,234,151, - 7, 15, 86, 76, 67, 30, 66,173, 24, 90, 97, 84,197, 48, 18, 2,145, 70, 94, 77, 99,171, 18, 82,178,165,203, 24, 85, 43, 35, 82, -178, 18,108, 70, 43,205, 15, 71,102,145,160,172, 33, 47, 49,205,213,124, 42, 79, 21, 43,227,203,232, 91, 41,226,220, 11,169,102, -191,111, 99,200, 67, 44,104,172, 3,166,213,105,173, 42, 16,134, 32, 3,162,230, 43,199,144,103,138,147,214,228,147, 71,198,216, - 79,213,155, 79,157, 0, 39,192,121,135, 41, 68,136,190,199,120,216, 81,209,160, 52,164, 50,176,237, 2,139,213, 10,155,211, 13, -132, 16,104, 23, 13, 78, 30, 63,195,217,147, 39, 24, 15,123,220,223,220, 98,127,119, 79, 22, 57,107,209,118, 13,132,182,104, 86, - 91,116,171, 13,252, 52,194, 77, 3,134,253,158,198, 75, 41, 34,248, 3,166,225,107,220, 95,111,240,226,179, 79, 33,211,132,171, -215,111,113,250,244, 49, 62,255,249,207,240,253,239,191,194,238,234, 29, 78,206, 55,136, 41,225,236,233, 35, 28,246,223, 33,133, -128,182, 83,220,157,211, 20,228,230,122, 7,219, 54, 48,134, 14,201,219,203,123,124,244,217, 11, 12, 83,132, 81, 25,163,151,112, -135, 1,154, 71,174,182,109,176, 57, 89,162,105, 52,218, 86,227,225,190,135, 82, 2,251,135, 3, 85,174,137, 2, 78, 14, 15, 61, -110,111,246,240,147,195,147,199,107,156,158, 63, 37,109,135,200,216,108, 90,124,247,245, 55,248,229,255,243, 55,184,191,185, 37, -196,177, 96,210,158,181,136,222, 34,133, 0,219, 54, 16, 57, 50, 21, 45, 98, 28,134,186, 19, 46, 88,202, 92,246,222,198, 32,199, - 0,169, 53, 26,173,169, 11, 13,156, 90,168, 5,178, 8, 72,153, 18,185, 12,115,179, 51, 4,180,109,232,146,208, 10,224, 41,139, - 54, 6, 90, 27,116,203, 14, 57,211,191, 35,162, 91,168,226, 82,138, 45,245,240, 33,192, 90, 58,148, 23,171, 5,186, 69,139,229, -114, 69, 94,235,214,144, 63, 59,211,184,219, 29, 70,118,101, 8,238,136, 3,166,129, 46, 79,242,172, 3,222,145,248,139,212,240, -243,222, 87,136,121,130, 84,246,223, 37, 71, 93, 41, 9,101,200,187,159,114, 70,107,116, 85, 16, 91,107,225, 70,135,156,139, 0, -151, 86,115,222,121,238,148, 29,107,116, 44,218,174, 69,219,182, 48,198, 96,181, 94, 35, 84, 58, 29,141,198,141,144,212,121, 66, -213, 48, 24,154,186,229, 74,125,204, 53,150,153, 40, 99, 3,163,118, 75,136, 6, 9,153, 60,163, 61, 35,114,205,106, 39, 91, 43, - 84, 29,134,179, 62,129,166,146,214, 24, 40, 43,209,182,109,229,223, 71,142,202,236, 15, 3,166,105,172,130, 57,218,229, 42,148, - 70, 43,179, 5, 23,249, 8, 28,196, 93,186,148, 68, 31, 11, 49, 0, 76,176,155,237,166,122,206, 82, 87,178,238,113, 11,129,172, -252, 89, 81, 45,111, 52, 98,207,165,187,231,224, 39,186,244,202,234,209,145, 23,187, 78,125, 36, 19,218, 88, 63,193, 81,203,145, -247,186,179, 74,187,104, 30,120, 30, 34, 41,103, 60, 68,218,143, 39, 33,145,156,131, 80, 36,122, 35, 61, 82, 97, 36, 52, 8, 62, -194, 88, 26, 39, 79, 17,117,124, 14,144,174,200,104,186, 12,163, 75,188,242,162, 12,242,200,217,235, 53,194, 84, 8,120,126,134, -115, 6,172,201,152,124,132, 18,128,210,156,197, 46,230, 24, 83,169, 36, 34,159,215, 33,208,115, 20, 38, 7,211, 88, 10, 58, 42, - 94,241,156, 56, 64,135, 25, 37, 33,206, 54, 59,126, 70,138,214, 35,101, 22,174,114, 81, 89,237,134,130,244, 53,137,245, 54,101, -229, 82, 84,245, 82,106,210,121,169,162, 7, 40, 49,175, 20,122, 84, 10, 25,193,194,205, 50,189, 41,127, 55,137, 97, 57,172,135, -191,151, 41, 37,104,197,132,156, 50,162,118,147,131,109,108, 85, 96,150, 20,161, 68,190,250, 35, 80,190,226,206, 60, 99, 24,166, - 90, 53,123, 71, 25,224, 90, 43, 76,195, 4, 41,103,234, 81, 74,168,136, 66,122,211,230, 40,215, 50,226,158,166, 80, 47,213, 20, - 35,108,211, 18,119, 55, 21, 5,161, 71,206,102,150,239,115,149, 59, 43, 3, 99, 5, 67, 72, 41, 43, 69,169,132,134,164, 68, 32, -154,177, 31,160,179,230,116, 41, 82,203,227, 72,145, 88,246,219,206, 57, 22,254, 24, 36,153, 56,228, 97,174,170, 75,236, 98, 97, -231,211, 69,208, 80,218,157, 49, 85, 8, 38, 5,216, 47, 41, 42, 1,138,136, 68,185, 42, 74, 75,192, 67,241,162,122, 95,252,226, -243,126,109, 28, 70, 88,163,120, 98, 18,145, 92,172,156,230, 84,114,158, 37, 37,101,121,231,145,120,122, 49,142, 30, 74, 50,130, -212,245,232,239,175,208,180, 22,235,147, 21, 6,211, 97,115,118,138,211,167,207,240,228,227,143, 17,189,195,176,223,225,250,221, - 5,110, 46,175,225,134,123, 8,169,209,116, 29,132, 50, 88,110, 23, 88,159,156, 97, 26,122,140,135, 61,130,119, 24,250, 1, 98, -186,199,119,191,249,123,156, 62,123,133,199,207, 55,184,191,190,197,114,179,194,199, 63,254, 17,254,240,155,223,225,112,255,128, - 71, 47,158,224,176, 31,241,232,217, 35,140,125,143, 39,207,158,225,208, 79, 80, 90,224,225,110,199, 66,160, 8,165, 52, 46,222, - 94,163, 91,182, 24, 93,130,155, 18,164,238,144,146, 66,219, 50, 94, 88,208, 36,226,249, 71,103,200, 57,227,246,234, 14, 82, 68, - 0, 10,195,110,135,174, 51,232,251, 9,247,119,196,141,127,242,244, 4, 77,171, 49,236,118,248,234, 31,126,139, 79,190,120,137, -211,231, 79,240,183,255,249,111,241,205,239,190,193, 52,142,228,221,119, 19,117,115,197,134,166, 20,154,182, 69,211,117,148,134, -133,196,236,103, 81,249, 4,166,105, 16, 83, 66,246, 1,202, 8, 36, 71, 29, 95, 97, 7,104,195,135,104,140,244,185, 75, 93, 89, - 13, 90, 27, 52, 29, 9,173,186,101,135,211,243, 83,202, 80,104, 90,152,198,194,185, 0,239, 2,118,247, 59,236, 30,246, 56,236, -175,121, 7, 73,222,103,203, 81,172,246,204,178, 16,135,186,208,113,112, 8,142,153, 7,227, 88,211,161,202,184, 59, 67,240,119, - 42,213,248, 84,193,150, 49,138, 6,166,113,168,109, 77, 5,101, 16,147, 58,113,124, 38,127, 39, 29,161, 89,149, 84,124,233,101, - 40,157, 16,216, 54, 90,214,143,141,181, 44,150, 34,123, 87,211,210, 26,193,187,192,187,110, 95,213,217, 41, 58,236, 31, 38,206, - 34, 87,176,182,133,210, 13, 54,139, 53,229,192,239,247,200, 72,196,201,214,178,102, 51,148, 53,150, 16,180,226, 11, 62, 64,177, -232,183, 58,105, 10, 32,139,109,130, 82,210,231, 66,234,225, 92,119,246, 31,250,142, 81,247,232, 74,209, 65,190,236, 22,180, 42, -145,229,220,202,152, 70, 7, 55, 57, 34,197, 41, 18,244, 26,109,152, 53,192,113,205,199,251,213, 35, 44,108, 57,179, 34, 39, 52, - 66,204, 57,222,101, 14, 92, 86, 0,177, 20,111, 25,149,231,158,145, 56, 18,148,196,152,193,123,228, 28,249,156, 78,236, 21, 23, -200,177,208,200, 68, 77,123,203, 60, 98,167,179, 72,208,138, 8, 84,148, 9,182, 79, 73,221,208,154,168,164, 66, 42, 65, 62,239, - 72,223,135, 88,108, 87, 62,243, 93, 97, 32, 57,161, 51,167, 4,219, 72, 70,135,163,218,188, 74,206,121,129,155,145,245, 46, 97, - 28, 74,152, 16,125, 38,211, 68,191, 59, 4,237,167, 21, 59, 13, 74,252,118, 57,143, 61,167, 85,198,144,144,120, 31, 29, 67,164, -245, 8, 3,224, 75, 24, 74,100, 13, 24,164, 32,122, 32, 59, 83,200,185, 34,143,162,186,211, 7,235,221,156, 18,251,194,233, 34, - 14,126,170,153, 10,168, 5,144,172, 84, 70,193, 96,154,242,187,150, 53,109, 46,204,151, 50,169, 45,209,179,197, 46,157,168, 75, - 47, 43, 87,114,156,147,238,131, 58,118, 18, 88,227, 8, 47, 11, 74,105,155, 15,158,224,105, 87, 18,188, 7,178,174,162, 54,207, - 65, 39,197,135, 90, 42, 52, 18,219,204,187,173,242, 48,119, 28, 29, 57, 77, 30, 74, 59,116,139,142, 58,110, 85,246, 48,177, 70, - 8, 30, 95,234,134, 51,215,165,164,206, 6, 5, 19, 27,169,170, 35,239,119,170, 94,191,116,180,195,192, 17, 15, 87,114, 37, 99, - 57,168, 64, 72, 73, 0,127,165, 42, 39,186, 80,239,230,176, 4,122, 29,206,121,178, 28, 48,210,210,187, 0,173,100, 21,140, 8, - 38, 54, 21,113,196,252,144, 16,104, 95,155, 6, 74, 27, 62,200, 53,220, 20,168,144,104, 27, 78,149,146,208,134,193, 6,121, 30, -245, 21, 71, 65, 57, 60,136, 48,167,102,223,101, 78, 21,151, 72, 65, 31,116,208,104, 37,170,248,166, 84,128, 2,204, 78, 86,138, -210,166,152,129, 47, 13,237,195, 36,128, 97,152, 48,236, 18,118,183, 87, 80, 74,227,234,109,139,110,177,132,237,150, 88,157,156, -194, 52, 11, 60,126,245, 37, 62,254,147,159, 32,184, 17,253,195, 61,238, 46, 47,177,187,223, 33,186, 8,187, 92, 66, 44, 55,104, - 87, 27,164,224,225,199, 30,251,187, 91, 28,246, 61, 30, 46,190,193,238,246, 26, 79, 94,125, 1,219, 6, 52,235, 14, 95,252,179, -159,224,245, 55,223, 97,236,183,136, 49, 97,177, 94,163,223, 95, 98,185, 89, 32,191,190, 4,114, 70,127,152, 88,197,156, 24, 86, - 68, 7,192,213,229, 1,182,105,209, 88, 64, 36, 18,146, 72,173,233,210,190,191,199,119,195, 1,109,215,146,207, 87, 40, 24, 13, -120, 37,113,232, 3,148,182,120,244,180,197,212, 31,112,243,254, 10, 55,151,215, 88,174, 22,248,179,191,248, 5,134,195,132,127, -247,127,252, 91,220, 94,223,204,234,106, 30,127,106, 83,132, 96, 36, 92,116, 99, 79, 97, 36,156,152,165,141,170,246, 18,211, 24, - 18,103, 26, 61, 95, 26,154,186,216,192, 2,161, 66,112, 35, 82, 30, 93,172,155,147, 53,214,219, 53, 22,203, 5, 22,171, 69,165, -190, 77,163,195, 56,121,188,191,184,192,208,247,216,221,239, 40, 95,192,106,104,107,113,122,182,129,144, 26, 96, 33,205, 56, 76, -184,187,121,128,115, 30, 33, 56,186,148,121,245,164,181,228, 11,119, 78, 91, 19, 0,140,213, 8, 33,179,173, 83, 64,106,129, 24, -102, 94,188,109, 8, 95, 76, 23, 13, 29,174,198,106,178, 19, 49,236, 34, 86,171,149,172, 0,144, 20,203,193, 87,128, 52,244,103, -154,182, 97, 74,154, 97,187,153,226, 46, 40,213, 44,131,134, 11,248, 18,105, 73,110, 28, 15, 9,210,234, 40,109, 8,188,100, 13, -150,155, 18,120, 52,112, 67,146,144,162,167, 51, 40, 6,178, 59, 49, 88, 37,167, 57,121, 43,242,190, 20, 71,157,105, 81, 5,215, - 40, 76,254,179,199,151, 5,101, 82,232,153,220,199, 83, 77,173, 9, 77, 29, 99,164,149, 29,127, 23,189,119,181, 96, 39, 72, 87, -233,202, 20, 20, 23,244,169,166,210, 73,114, 75, 48, 14, 86,113, 48, 20,117,121,185,162,101, 83, 74,200, 74,113, 17, 95,160, 61, -197,242, 43, 42,191,188,132,229,228,228,128,228, 17,203,174, 92,228,218,164, 73, 33,105,148,174, 8,149,109, 77, 83, 47,134, 2, -154, 33,209, 93,161,255,177, 86, 68, 50, 14,150, 87, 54,200,146, 33, 60,196, 80, 72, 60, 42,166,164,182,200, 94,117, 64,105,166, -211,177, 21, 77,136, 8, 45,136, 46, 90,214,155,211,232,120, 55, 28,185, 59,167, 99,117, 26,139, 86,137, 58,123,194, 39,143,172, - 12, 39, 81,156,119,161, 58,173, 98, 34,141, 10, 56,156,135, 64, 99,129, 38, 47,153,238, 44, 36, 62,123,195,220, 24,146,102,160, -140,201, 5,105,152,152,202,231, 67,100,205, 81,209,119,249,154, 28, 72,152,216,204,154, 25, 57, 95,220,114,158, 62,148,233, 93, -154, 8,137, 27, 66,100,215, 21,115, 1, 56,144,137,186,122,182, 46, 34, 49,209, 78, 32, 70, 1, 63, 77,179, 70,133, 53, 32,101, -162,146,170,232, 52, 66, 7,222, 35,145,233,158, 20,184, 49,230, 58, 82,108, 90, 11, 37, 43,225,129, 20,227, 70,147,218, 61,209, -104, 36,120, 42, 12, 28, 43,205,189,247, 12,132,161,135,221,243,126, 26, 89,240, 62, 94, 32,129,132,106,110,162,241,104,129,242, -107, 45,107, 54,114, 8,148,144,102,155, 22, 37,159,209,179,119,190,118,188, 53,248,128, 14, 1,105, 56, 77,141,211,219,234,159, - 97, 69,172,155,124,253, 57, 37, 91,183,120,207,139,218, 82,178,157,196,243,197, 75, 80,143,196,214,181,161, 10,223, 34, 43,213, - 5, 31, 4, 33, 2,109, 67, 59, 69, 93, 57,214, 36, 98,145,149,105, 79,254,203, 24, 60,141,218,142,196, 71, 82, 10, 76, 35, 85, -252,101,215, 24,120,175, 68, 99, 33, 95, 4,142, 31, 4, 72,104, 93, 4, 21,105, 78,249,209, 4, 4,129,144, 8,211, 68,161, 19, - 34, 3,201, 99, 26, 60, 43, 65, 3, 82, 0,134,224,177,191,167,247,183,233, 90,216,166, 69,183, 92,161, 91,109,208,174,214, 48, -237, 2,139,213, 18,143, 95,157,224, 49, 18,146,159,208,239,246,136,110, 66,202, 9,211,100,208, 46, 86, 88,157, 62,130, 27,122, -244,187, 59, 28, 30, 30,240,238,171,191,195,254,201,167,120,252,226, 41,158, 34,237,237,155, 0, 0, 32, 0, 73, 68, 65, 84, 62, - 63,161,104,212,195,136,105, 18, 80,198, 98,185,110,113,123,189,135,182, 68,191,146,236,197,213, 6,188, 79,141,152, 92,134,181, - 22,109, 67,246,199, 47,126,252, 2, 41,101,124,247,205, 59,236, 14, 7,108, 79,183,216,158,174,209,247, 3,220,142, 70,185,144, - 13,158,125,114,138,126,119,192,229,155, 75, 92,190,185,192,221,245, 13,172,213,248,217,159,255, 20,155,211, 13,190,254,213,215, -248,246,235,111, 49, 77, 36,150,155,198,137,227, 71, 57, 50,145,191,216, 66,154,106,127, 73, 5,251,152, 18,172, 32,111,105,204, -153,247,122, 28, 97, 42, 40, 20,168,211, 26,203,213, 2,203,245, 18,235,237, 26,109,215, 97,181, 89, 84,190,115,206,192, 48,140, -152,134, 9,151,239,239, 49,254,225, 29,239,241,201,134,105,172,197,114,213, 97,177,236,112,254,228, 49, 98,136,216,221,239,225, -156,199,219,215,239, 49,244, 3, 29,248, 37, 83, 65,203,122, 89,185,113,226, 34,135,148,242,166,184, 73, 74,215, 92, 98,136,115, -172,106, 98, 41, 36,178,204, 48,172,112,206, 37, 0,133, 83,191,100,153, 24,241,212, 12,133,249,157,136,105, 65, 25, 8, 37,210, -147, 58,199,224, 19,140, 85, 71, 76,119,186,224, 10,115, 62,229, 12,149, 51, 32, 88,181, 29,231,203, 41, 48, 67,162,105, 27,238, - 2, 35,188, 27, 17,252,132, 24, 27, 98,206, 91,131,224, 38,140,158,254,125,153,238, 37, 30,107,131,153,219,130,131, 83, 40, 38, - 58,214, 11,189,168,210,139, 93,183, 56, 79, 10,228, 71, 1,181,208, 42, 48, 27,205,112,157,118, 65,190,244, 99,145, 91,140,145, -246,255,156, 71, 95,108, 70, 18, 52, 78,151,236, 41, 46,217,224, 82, 72,100, 81,210,226, 34, 50, 99,125,139,255,185, 28,224, 41, - 70, 8,165, 25, 45,186,160,223, 93,138,186,131, 46,133, 68,101,232,231,196,150,212, 9, 57,115,119,158, 60,147,205, 4,167,235, -177, 0, 42, 71,206,112, 79,156,216,214,208,249, 98, 44,130,119,124, 97, 8,216,150,186, 95, 32, 85,190,123,138,129,167, 14, 5, - 36, 35,153, 19,239,235,200, 88, 40,194,105, 27, 67,208,176,224, 2,148,209, 64, 10,164,118,231,177,114,244,196, 64, 32, 54,129, -128,247,185,102,164,151, 4,203,196, 48,154, 88,156, 65,124, 15,184,224,209,118,182,118,243, 51, 82,149, 20,238,153, 93, 75,197, -207,157, 82,230, 59, 45,115, 30, 7,105,170, 42, 57,212,168, 15, 38,178,180,227, 7, 93,232,117,245, 92,246,244,236, 76,201, 51, -217,175, 60,203,178,102,161,204, 77, 47,221, 73,170,142,241, 75,252,183, 64,137,100,229,169,108, 49,168, 49, 52, 40,149,245, 67, -164,247,189, 4, 52, 81,224, 88,174,220,139,140, 4, 77, 85, 12,197,120, 22,123,151,243,129, 85,211, 13, 31, 24,186, 2, 39,114, - 6, 9,169,216,206, 80,184,234,222, 11,230,180,103, 86,117, 39, 86,239, 18, 94, 79, 41,137,172, 40, 0, 33,184, 17, 17,236,247, - 99, 91,130,119, 52,166,138, 49, 64, 75,186,144,130,151,252,179,192, 24, 65, 82,229,106, 37, 33,172, 97,181, 60, 42,240,161, 88, -131,200,167, 78,163,240,162,150,117, 19,137,149,154,150, 99, 6,197,156,135, 28, 60,170,165, 65,112,181,227,125,228, 64, 7,212, - 75, 31, 12,231,192, 81, 40, 67,206,229, 61,104, 24, 62,194, 92,103, 14,155, 16,108, 37, 33, 76,101,130, 23, 52, 14, 44, 52, 47, -129,249, 50, 46, 25,243, 49, 37,182,116,208, 62,200,141, 19, 97, 50, 21,117, 72, 5, 91, 88, 38, 30,200,242, 8, 35, 73, 29, 68, -202,160,177,170,204,104,187, 22, 34, 51, 61,203,187,218,237,147,127,210, 83, 70,113,166,177,176, 31,247,144, 82,226, 94,105, 24, -219,194, 52, 13,150,235, 13,214, 39,167,208,205, 2,221,122,141,118,185,196,250,252, 17, 71,185, 42, 68,239, 17,188,131,214, 51, -222, 51,248, 9,119,151,151,184,125,127,133,183,223, 28,144,226,167,248,232,147,199, 88,110,150, 56, 9, 2,239, 47,238,176, 61, - 63,197,221,245, 61, 76,163, 97, 27,129,105,114, 48, 6, 16,136, 56,236,129, 97,162,189,166,181, 2,198, 10,252,233,207, 63,197, -237,205, 30,191,254,255,254, 17,155,237, 18,159,124,241, 17,188,243,216,221, 61,160, 93,180,104,187, 37,214,219, 5,118, 55,183, -248,235,191,252, 79,184,190,184,196, 56, 78, 88,174,150,248,242,167,159,227,179,159,124,142,239,191,254, 1,127,245,151,255,133, -118,185, 82,162,109, 59,246, 66, 75, 76,195, 80, 29, 8,169,138,110, 36,239, 68,139, 85,138, 86, 72,145, 47,169,213,154,240,189, - 39,231,167,216,156,108,176, 98, 17,154, 16, 84,228, 78,163,199, 48,140, 56, 28, 6, 92,190,191,163, 14,141, 49,198, 49, 70,172, - 56,174,243,236,227,167,124,129, 81, 40, 67,127, 24,112,216, 83, 30,247,126,119,192,208,247,200, 41,240,148, 40,179, 22,196, 2, -160,194, 59,149, 32, 16, 9, 6,212,112,129,196,163,238, 50, 13,107,187,150, 15,196, 84,185,239,134,191,167,133,151, 94,186,131, -156, 56,251,186,160, 44,235,234, 76, 84, 33, 85,153,210, 53,109,131,224,124,197,223, 2, 18,221,210,146, 3,196,146,197,174, 4, -121,104, 99, 32, 36,173,251,166,209,241, 1, 73,218,156,154,179, 34,105, 90, 69,124,235, 0,239, 38,164,200,207, 42,201,157,176, - 88, 46,161,140, 65,211,182, 8,126,164,139, 44,209,184, 83, 8, 1,109, 77, 77,146, 75, 12,110, 81,108,225, 44, 86, 55, 33, 0, -213, 88,226,109,112,240, 11,141, 96, 53,255, 57, 98,172,207, 98, 54,154,212, 52, 44, 82,244,206,147,110, 6,212,160,128,119,248, -225,232,192, 15,145, 84,240,145,191,175, 82, 10, 4,254,187, 83,200,188,183, 47,171, 1,250,255,139,171, 37, 21, 26, 90,156,195, - 64,164,152, 69,108,197,193, 83, 58,116, 32, 33, 4, 7, 37, 50, 34, 18,239,158, 49,239,239,211, 44,166, 43,175,151,188,216,138, -166, 63,108,163, 12, 12,214, 41, 49,200,222,209, 88,154, 82, 34, 3,132,230,108,112,182,172, 85, 60,111,189, 39,200,243,142,164, -160, 23,134, 35, 96, 3,164,166,201,227, 52,122, 22, 18,131,245, 20,142,186,250,144,145,148,172, 66, 62, 82,184,211,251, 64,204, - 30,202, 37,160, 2, 81, 86, 29,194,208,143,164, 62,151, 92, 16,242,181, 8,163, 33, 20,113, 57,102, 26,104,172, 65, 58,153, 85, -227,197, 13, 2, 68,158,132,138, 90, 0,148,213,140,228,201,147,100, 48, 79, 18, 5, 49,203,175, 95,240,132, 5, 76, 10,100,203, - 34,233, 58, 48, 11,223, 50,133, 51,201,156, 72,252, 40,102,149,127,138,244,185,148,243,135,214, 96, 28,175,154, 34,162, 15,148, - 36,202,207, 65,140,158, 89,242, 84,248,102, 0, 58,243,242,189,236,210,133, 20,104, 26, 59, 67, 98,142,186, 84,231,104,204,133, - 48, 71, 22, 74,201, 62,196, 34,211,103,145, 73,211, 18,129, 74, 73,234,138, 33, 4,140, 84,240, 73,178,239,112, 6,199,120, 79, - 72,189, 84, 72, 71,188,195, 55,214,192,251,128,110, 97, 9, 13,169,228, 60,146,130,168,177,125, 37,153, 73, 72,197,157, 80,233, - 68,128,166,177,108, 15,202,213,114,160,217,126, 82,115,167,107,130, 20, 42,251,183,120,199,173, 53,196, 29,230,203, 87, 43,137, -161,239, 73, 68,199, 56, 44, 99, 40, 77,171, 91,118, 20,173,105, 12,252, 68, 94, 81,194,206, 82, 81,225,189,167, 78,136, 65, 10, -101,183, 89, 34,111, 11, 86, 80, 21,190, 47, 23, 71, 5, 22,225,125,134,150, 36,244,200, 41, 66,100,218, 93, 57,231, 56, 67, 90, - 86,245, 47,111,131, 32,133,134, 64, 68,244,142,121,249, 25,211, 88, 84,191,168, 35, 57, 57,167, 64,210, 3,233, 71,184, 56,193, -245,192,238,250, 2,151,166,129,177, 13,218,197, 18,237,114, 5,221,110,112,242,248, 49,150,155, 13,150, 43,226,166,215, 64,156, - 4, 52,203, 22, 31,157,156,225,229,151, 95,162,223,237,240,112,251,128,254, 48,226,241,243, 51,108, 58,138,201, 61,244,142,179, -224, 19,144, 35,189, 71,110,130, 75, 18,195, 68,159, 77, 99, 13,140,150, 88, 46, 59,252,254,215,223,163,223, 29,240,249,143, 62, -194,106,221,194, 77, 30,219,147, 21,242,233, 22,135,135, 3, 46,190,251, 22,255,254,191,254, 3,238,174,175, 49, 77, 14,139,213, - 2, 63,253, 23, 63,195, 47,254,213, 47,240,246,187, 75,252,135,255,243,223,163, 63, 12,228, 37, 55, 6,237,146,118,125,235,147, - 53, 37,217, 77, 19, 0,138,198,181, 45,117, 22,221,146,130, 76,186,197, 2,135,253,200,222, 83,138,239, 61,125,116,130,110,217, -241, 56, 45, 97,236, 29, 14,135, 1,253,205,136,200, 83,166, 34,234,105,187, 37,182,167,167,196, 46, 80, 10, 67, 63,225,176, 31, -160,141,192,122,179,132, 16, 18,195,224,216,206, 72,153,225,221,130, 69,141, 39,167,149, 92, 86,184,230, 49, 38, 72,205, 93,104, -189, 72,243, 7,128, 21,197,211,142, 18,171, 90,186,196, 57,106, 82,212,221, 94,138,177,218,199, 82,140,104, 91,133,105,242,144, - 70, 85,244, 41,219, 97, 96, 20,131,163,216, 19,159, 98, 34, 14,132,165,181, 68,112,133, 5, 78,239, 83,206,242, 8, 24,163,121, -159,207,201,135,200, 92,168,134,122,144,122,231,232,178, 8, 30,147,163, 20,196, 28, 61,139,190, 56, 19, 34,120,236,238, 71,180, -221, 26,182,109, 96,109, 7, 63,141, 60,238, 22,243, 46,149, 5,101, 74, 41,248, 20,217,199, 79, 35,224,194, 27,143, 33, 64,105, -195,138,121,137, 12, 87,249, 18,162,114,184,231,174,139,196,120,130,131, 69, 72,187,210, 31, 40, 79,129, 52, 63,153, 39,112,190, -238,231,227, 17,211,163, 76, 84,152,143,133,152, 2,140,110,136, 14,167, 36,143,124, 81, 65, 40,206, 79,212,129,114,107, 94, 98, -123,161, 18,180, 80,204,187, 96,209, 28,239,235,227, 7, 97, 53,133, 16, 63,143,123, 51,127,150,197, 29, 68,225, 47, 12,164,242, -129, 86, 72, 74, 67,170,166, 2,111, 52,227,135, 37,199,150,166, 24,200,232,205,123,103,193, 17,186, 82, 73,128,131, 70, 76, 99, -152,126, 71,128, 24, 31, 28,209,210, 34,144,146, 71,138, 35,101,102, 20,229, 62, 50,100, 40,246, 58,138, 27,157,122,199, 40, 89, - 85, 27, 56,231, 99, 73,230,173, 73,106,193, 57, 8,165,170, 31,221, 88, 75,231, 96, 85,190, 3, 57, 56,166,196,209,119,163, 48, -221, 41,100,201, 87,168, 13,216, 65, 85, 92,135, 57, 70,164, 50, 17, 78,168, 84, 62,169,152, 58,167, 24, 18,196, 34,241, 34, 40, -204, 16, 85,148, 73,211, 20, 14,223,201, 37, 21, 14, 21,182, 68,133, 51, 29,196,217, 5,100,169, 43,150, 55,197,192, 5, 89,170, - 46,148, 88, 94, 23, 55,120,153,173,144,186,120,132, 37,251,228, 34, 47,241,181,214,220, 13, 24, 8, 67,151,107,219, 90,178,110, -229, 4,163, 53,167, 45,205, 42, 83,147, 20,131, 49, 2, 87, 66,186,142,206,140,177,204,147,167, 42,212, 7,186,240,173,229, 61, -189, 15,136, 70,195, 24,170, 78, 76,211,240, 23, 56,207,226, 23, 41, 63, 56,132, 82, 76,156,252,202, 23, 60,239,196, 20,255,185, -166,181,136, 41,161,209, 18,110,154, 5, 48,164,108,253, 16,195, 72, 30, 72, 26,193,135, 92,200, 66,115,216, 68, 97, 28, 15,253, - 64, 63, 95,196, 10,116,112,158,132, 67,218, 24,130,185,196,116,228, 65, 37,191,164,159, 28,143,193, 98, 61,152,221,228,224, 29, - 67,110,254,136, 79,159,139,239,157,190, 29,117,220,228, 16,235,223, 17,185,155, 39, 42, 32,211,146, 36, 19,186, 92,137, 32,140, - 8, 83, 68, 10,244,197,136,169,236,110, 82,181, 14, 38, 6, 24, 20,190, 54,249,230,115,237, 58,168,123,160,177,125, 78, 30,227, -225, 30, 25,111,112,245,253, 87,144,186,129,237, 54, 56,125,242, 12,235,179, 51, 44,215, 11, 10,195,113,190,122,170, 87,235, 21, -206,219, 5,118, 15, 35,134, 62, 96, 28, 3,158,126,116,142,175,126,253, 61,114,166,105,129, 81, 17, 15,187, 30,214, 40, 60,236, - 73, 4,216,182, 22,221,162, 65, 74,192, 52,121, 32, 69,188,252,244, 9, 91, 58,200,167,249,213,175,254, 9,187,235,107,228, 52, - 34,184,128,199,207, 78,241,236,229, 35,124,241,147,207,241,163,255,230,231,136,131,195,175,254,250,215,232, 15, 3,190,252,249, -143,208,118, 45,173,131,120,210, 84,198,109, 57,103,130,182,112,103,100,216,227,239, 38,143,177, 31,113,121,113,141,215,223,190, -193,187,215, 23,144, 34,214, 36,178, 57, 4,137, 16,183,133,181,191, 92, 45,177, 92, 47,113,122,126,138,172,104,188,124,127,251, -128,155,171, 91,244,135, 1, 41, 69, 76,227, 88, 87, 48,132,103,142,213,110, 53,241, 90, 42, 48,193,174,116, 84,179,216, 38, 34, - 67,162,227, 29,125, 41, 46,203, 33, 77,222,106, 67,150, 37, 30,139, 23,141,134,214,154, 65, 30,138, 87, 14, 20, 83, 76, 42,238, - 92,247,234,180,223,101, 45,137, 20, 21,161, 92, 4, 57, 84, 8, 4,100,157,144,179,162,204,247,144, 33, 11, 53, 76, 75, 22, 46, - 9, 42, 16, 20, 77, 99,202,179, 21,188, 71, 74, 1, 90,102,248, 24,201,123, 12,162, 36,210, 52, 35, 50, 28,133,232, 92, 82, 40, - 64,229,202, 6, 79, 33,160,223,223, 66,200, 83,242,219, 35, 99,191,123, 96, 97, 89,201,209,214, 85,255, 67, 43,185, 60,115,212, -249,249, 87, 74,193, 88,250,253,181,197,156,120,197, 87,122, 81,198,151, 20,203,197,178,227,115,132, 69,196,153, 98, 90, 73,111, - 20,120,122,134, 74, 27, 44,156,112, 58,155,230,139,105,206,193,166,241, 50,209,249, 4,124, 14,148,106,103, 27,196,224, 97,155, - 14, 41,120, 74,175, 99,181,124, 9,124, 41,251, 87,114, 71,102, 62,216, 73, 95, 64,223,227,217, 26, 87,252,252, 36,248,227,105, -170, 50,128, 80,144, 82, 83,247,201,191,147,109, 23,204,244, 39, 81,178,110, 13,143,192, 35,119,241,164, 53, 10, 41,212,179, 88, - 73,138,139,165, 98, 78,176, 72, 90,127,136,187, 69,170, 14, 35,169, 20,118,119, 59, 18, 17,178,254, 35,103, 1,104,112,199,155, - 72, 15,148, 51,144,128, 20,248, 28, 76, 9,218,146, 24,154,178, 22,152,235, 15,192,176,112, 85, 25,197,186,165,121, 58, 1,145, - 17,125,224, 98, 55,205, 66,112,102, 93,208,244, 57, 86,221, 88, 17, 4,210,243, 46,103, 56, 13, 63,255, 66, 10,164, 16,217,161, - 69,174, 39, 42, 94, 12,162,247, 92, 28,204, 69,101, 6, 5, 40,209,254, 95, 86,225,105,228,207,176,172, 24,200, 90,152, 17,146, -171,118,187, 34,176, 45,107,143, 66,191, 75,108,137, 78, 44,184,203, 41, 66, 23, 59, 4,253,135,129, 59, 53, 98, 68,147,112,204, - 85, 81, 8,142,210,162, 68,141,227, 35,177,142, 54, 18,193, 43,116, 93, 3,231, 40,254,148, 8, 77, 30, 66,116,149,242,150,132, -134,246,134, 24,202, 28,147, 74,214, 49,170,146, 10, 77,174,192,234,141, 81,117, 68, 79, 20,157,204,254, 72,133, 24, 80,119,133, -101, 31,122, 44,128, 75, 57,163,181,134, 60,129,153, 18,138,168,155,205,117,247, 81,114,172, 51, 43, 87, 75,194, 84, 56,218,243, - 75,254, 2,185,105, 98,212, 95,102,177,145,169,160,253,218,245,148, 81, 37,239,240,156, 11,112, 35,117, 96,221,162,225, 49, 79, -132, 68, 73,199, 10, 85, 48, 72,130, 15, 87,147,242, 4, 7,203,144, 10, 57,209,239, 42,114, 21, 65, 9, 8,158,174,148, 24, 71, -138,249, 75,130, 46, 42, 41, 18,130,155,120,132, 25, 33,129,138,151, 36,251,143,228,181, 7, 79, 79, 4,169, 89, 73,181,235,235, -107,163,131, 60,192, 52,221, 7, 96, 31, 32, 64,120, 7, 55,238, 49,238, 46,241,238, 27,129,152, 52,186,245, 22,139,237, 25, 86, -219, 83, 74, 52, 59,140, 76, 78, 18,232,191,127,135,152,128,245,118,133,237,249, 6,151,239,110, 17,188,199,192,200,199,224, 41, -126,182, 91,118,176, 86,227,238,102,143,245,166, 69,138,100,161,122,184, 31,177, 94, 91,184,126,135,174, 81,248,201, 47, 62,129, - 50, 95, 32,134, 76, 33, 14, 2,216,223,237,240,112,187,195,127,252,215,255, 9, 99, 63, 96, 26, 61, 54,167, 39,216,158,159,225, -201,243, 71,208, 90,225,225,126,135,221,221,129, 56, 9,200,120,184,125,192,187, 31,222,227,230,234, 6, 55,239, 47,113,127,123, - 71,137, 93,193,215, 49, 93, 25,135,249, 20, 89, 44,103, 96,155, 22,171,245, 10,219,211, 45,186,197, 2,237, 98,129,148, 5,250, -195,136,161,239,241,250,251,247, 24,107, 98, 31,143,184,185, 83,179,214, 64, 25,195, 99,233,204,106, 95,195,157,114,195,154, 10, -207, 41,111, 36, 0,178,156,194, 86,242, 22, 66,240,213,194,164, 20,248,243,242,232, 15, 61,154,166,229,130, 79, 99, 28,124,117, -158,152,166,161, 44,110,214,109,144,130, 61,212, 64, 9, 99,168, 75,167,221, 98,134, 53,170,118,174, 90, 43, 40,163,235,168,190, - 93,144,232, 75, 55, 30,221,154,186,124,207,151,115,228, 78,220, 24,130, 88, 73, 33,161, 12,231,132,115,135, 67, 74,101,138,112, -205, 52, 93,174,151,110, 1,131, 8, 41, 17,121,119,152,120, 37, 70,212, 52, 18,149,141,253, 30, 98,181, 65,211,116, 8,158,196, -130, 5, 89, 82,136,153, 74,235, 15, 46, 83,218,147,234, 82,119,243,116,177,169,153,223,228, 44,144,204,107,136, 28,133,153,248, -242,148, 21, 69,237,157,175,194, 85,128,206,179,178,211,151, 74, 1, 49,147,245, 47,229,163, 36, 54,240,120,159,190,147,101, 84, -235,125, 64,219, 52, 53,102, 53,231,146, 8,150, 0, 73, 14, 28, 98,110,112, 88, 9,143,225,165, 32,148, 90,113,192,100, 30,235, -214,249, 63, 47, 44, 68, 25,239, 74,138, 36,149, 82,215,117, 89, 25,193,107, 99,232,217,224, 8,220,162, 11, 2,171,244,105,170, - 33,129, 36,145, 65, 98, 47,161, 36, 4, 7,157, 20, 5,184, 16,162,118,202,197,253,160,216,106, 40, 65,159,249,110,183,167,207, -145, 11, 85,239, 36, 71, 83,115, 51, 83,109,105,148,131, 80,162,124,165, 86,180,234, 65,129,188,164,138,243,142,145, 45, 98,222, -147, 61, 49,211,218,162, 92,134,180, 94, 97,215, 82,240, 92, 52,230,186,167,102,198, 47,175, 75, 35,211,254, 68,229, 51, 20, 33, - 47,217,206, 88, 55, 32,242, 7,252,129, 24, 35, 69, 95, 11, 81,109,173,101, 58, 18, 75, 28, 49,243, 5,104,154,205,188,139, 52, - 83, 74,117,177,123,170,146,254,201, 43,187, 48,113, 56,145,155, 45,141, 57,213, 59, 60, 35, 19, 38,182,166,177, 85,166,121,192, -195,189, 67,211,146,109,192,115,213, 65,132, 42, 85, 35, 72,149,150,148,150, 99, 45, 95,254,137,119,207, 98,142, 19, 84,244, 97, -216,134, 18,102,192, 99,230,200,191, 84,211, 8,254,187, 81,197, 70,203,101,203,226, 6,141,148, 51,133,179,180,134,213,246, 52, -142, 79,129,114,139,231,252,245,204, 44,119,122,243, 12,251,212, 11,163, 87,114, 97, 82, 66, 91,180, 86, 56, 60, 28,160, 12,147, -166, 82,230,144, 21,234, 24, 50,147,154,172,213, 85,132, 23,188,231, 78, 74,144, 32,143, 67, 25,178,160,240, 16, 64, 84, 37,167, -100,193, 80,244, 97,134, 41,132,128,192,201, 70, 19,219,106,142, 5,110,153,153,199,161,142,131, 82, 21,176, 20,223,105,136,137, -133, 46,162,198,225,106, 69,252,242, 16, 18,144,168,163,200, 49,112, 8,128,103, 66, 24, 42, 72,161,120, 27,179, 16,104, 26,205, -147, 1, 58, 24,148, 42, 15,179, 98,196, 36,103,134, 27,195,182,187,242,103, 80,237,130,185,242,183, 37,130, 27,112, 8, 61,198, -221, 21,238,222, 89, 58, 56,100,131,197,246, 20, 66,183, 80,218,146,135, 59, 1,166,161, 64, 15,231,128,221, 48,194,143, 35,116, - 75, 62,108, 37,129,221,125, 15,107, 37,218,206, 96,181,238,176, 94,183, 56, 57, 95, 66, 10, 5,231, 34, 39, 99, 53,136,145,158, - 17,109, 12,100, 78,152, 52,165,140, 45, 86, 43,174,178, 41, 10,247,221,247, 23,248,237, 47,127,131,155,203, 27, 76,227,132,152, - 34, 78, 30,157,227,233,243, 39, 88,109, 86, 56,127,124,130,147,211, 37,182,219, 14,111,190,215, 56, 60,236, 49,142, 83, 21, 67, -117,203, 14, 93,183,224,189,121,199,211, 36,178,116,246,135, 30,215,215, 23,152,198,145,139,129,192, 19, 36,208,229,173, 21,175, -152, 10,244,136,240,152, 4, 71,145,136, 37,146,149,167, 63,222,135, 42,208, 2,119,147, 50,129,213,191, 12,138,202, 96,187,151, - 2,178,230,216, 82,137,166, 51, 88,174,216,183,219, 16,189,112,161,215, 53, 44,101,142, 42,101,139,145, 36, 94,181, 86,154,138, - 47, 46,168, 41,156, 40,224, 48, 13, 92, 60, 11, 76,163,135, 49,179,134,165,172, 2,104,178,197, 35, 87, 67,107, 60,219, 52,244, - 89, 26,131,213,118, 22, 1, 81, 33, 75, 43, 63,226,180, 7, 76,125,143,137, 33, 82, 2,148,120, 69,214,172, 92, 3, 79,192,170, -241,156, 19,239,151, 37,251,199, 61,166,126,143,229,230, 20,203,245, 6,119, 55,215, 12, 11,161,201, 68,158, 1, 16, 16, 50,151, - 53, 48,159, 63,228,249, 15,133,191,175,112,132,150, 5, 98, 74,232, 44,229, 90, 72, 37,209,216,134,215, 23,162,194,170, 8, 39, - 77, 58,146, 34, 70,115, 44,230, 42,103, 66,161,251,149,131,183,160, 89,185,233,227, 44,121, 77, 62,111,198, 7,211,161, 31,184, - 32,153, 61,202,180, 70, 35, 55, 17,152,161, 33,114, 17,105,137,186,198, 40, 1, 55,243, 68,160, 0,143, 20, 55, 63,124,121, 27, -139,110,177,172,130, 96,197, 19,129,192, 5, 64,202, 25,201, 71, 2, 69,177,224, 75, 30, 5, 18, 81,240, 10, 19,218, 16, 96,219, - 14,198, 54, 20, 52,195,127,167,140, 14, 1, 10, 16,116, 31,140,195,136,254, 48, 16, 37, 47, 70, 30,221,147,130, 92, 73, 90,171, -130,253,244,166,105, 16,217,114, 45,181,230,168, 87, 77,211,145,226, 60, 98, 92,112,226,231, 67, 42,250,142,144,214, 36,177, 48, -121, 38,248, 21,177,103, 57,159, 83, 12, 72,209, 51,136,169,160,191, 36,124, 76,149, 8, 71,120,243, 2,240,103,134,124,221,126, -169,249,251,203, 77,165,146, 18, 1, 69,133,159, 42, 78, 90,213, 16,178,200,154,170, 34,158, 76, 53,241,174,196, 8,187,201,213, -181, 74,170, 94,244,192,171, 54, 70,219,214,158,151,158, 39, 93, 60,141, 37,108, 29, 57, 51, 74, 80, 86, 95,100,217,117, 16, 95, -184, 97,126, 58,165,185, 25,171,234, 3,206, 58, 6, 76,147,132,146,164, 84, 87, 0,119,189,196, 14,166,253,177,168, 86,174, 28, -121,108, 88, 68, 17,197, 82, 99, 21, 66,160,138,214, 88, 86,219, 26,133,148, 88,180,150,100,165,198, 73, 41,170,216, 39,215,177, -178,172,176, 28,239, 60, 23, 9,108, 7,209,108,159, 64,174, 25,203, 49, 37, 88,109, 16,193, 24, 78,109, 88, 65,108, 57,216, 62, -215,209, 38, 5,180,104, 30,227,210,216,168,237, 90,122,248, 35, 71, 93, 66,192,141, 14, 62,196,154, 46, 36, 56,116, 49,215, 61, - 73,170,222,196,178,195,175,116,163, 60, 31,102, 41,145,181,167, 68,173, 22,107, 16,133, 16, 0, 40, 99,214, 24, 33,141,226,140, -224, 68, 5, 68,177,232,164,217,215, 92,148,151,244,176, 23,228, 96,128,119,153,105, 95,236, 36, 96,221, 1,216, 39, 73, 93,202, -124,153,212,216, 79, 80,138, 16,197,100, 10,254, 61, 13, 31,112, 17, 49,236,241,240,254, 1,222, 17,175,223, 7,129, 96,159, 65, - 43,131, 47,127,242, 9,180,181,184,191,189, 37,128,208,148,208, 95,221, 99,179,182,120,249,233, 25, 94,125,241, 4,219,147, 37, - 14, 59, 7,239, 19,110, 46,123,158, 26,209, 30,240,226,237,129, 64, 42,163,167,192,149,137,242,232,165, 0,218,174,193,106, 77, - 86, 55,173, 21,206, 30,173,177, 61, 93,224,229,167,207, 48,244,244,231,250,195,128,221,253, 29, 30,110,111, 25, 30, 2,180,139, - 14, 63,251,243,127,142,229,170,195,237,245, 29,167,129, 73,236,238, 15,216,239, 15,216,221, 61,224,221,219, 27,140,125,207,214, - 22,170,152, 53,251,134,143,149,173, 0,112,146, 50, 94,172, 45, 46,161, 49,102,154,174,116,139,142,131, 50, 4, 91, 54, 13,171, -193,233,162, 48, 77,130,105, 90, 44,215,169, 22,152, 5,108, 83, 84,219,101,100,104, 27,195, 35,215, 84, 11, 90, 8,138,207, 44, -201,110,180, 91,167, 85, 77, 65, 61,151,144, 13,234,102, 35,166,129,108, 63,110, 20,117, 42,167,148, 64,112, 19,180,166,144,154, -174, 83, 85, 44, 10, 70,191, 18,160, 41,241, 56, 61,243, 78, 60,227,176, 3,147,235,116, 77, 86, 36,207, 50, 96, 27,138, 53, 85, - 77, 3,129, 6,235,237, 22,126, 26,105,229,192, 86,181,105,232,225,198, 1,110,114,164,228,230,213,128, 16,134,237,118,226, 40, -121,205,225,176,219, 65, 42, 93, 59,204,178, 7, 87, 74, 86, 0, 84,226, 98,186, 76, 3,169, 11,164,131,150,124,235, 17,182,105, -152, 50, 23, 89,225, 78,103,143,146,146,227, 88,117, 13,167, 34,193,169,194, 52, 6,242,217, 75,142,168,230, 73, 90,249,157, 73, -253, 46,184,139,166, 73, 1, 77, 73, 99,133, 99, 5, 63, 65,138, 22,224,209,126,177,174,149,104,106, 89, 83,227, 84,229,220, 19, -170, 86, 80,241, 94, 44,121, 57, 86, 98,102, 1,221, 72,148,221, 45,141,248,165,210, 80,202,194, 88, 66,246, 22,119, 14, 41,214, -109, 29, 49, 83,116, 43, 21, 17,132,220,158,170,245, 19, 71,175,165, 76, 64, 41, 14, 86,193,251, 0,153, 4,164, 81, 48, 58, 33, -103,186,252,189,155, 16, 99,196,112,160, 66,113, 28,136, 91,144, 35, 61,220,166,153,207, 91, 40,137, 12,133,105, 28,217, 59, 47, -145, 67,224, 73,142,231,139,146, 50, 23,164,226,238, 93, 74, 8, 86,189,151,145,124, 46, 8,238, 52, 19, 9,139, 55,191, 50, 82, -104,215, 75,147,209, 92, 66,147,184, 80,133, 66, 76, 64, 42, 25, 33,113, 22, 51, 22,254,124,217,103,151, 34,170,172,110,137,194, -234,235, 24, 62,113,232, 75,224, 34,163,232, 46,144, 83,181,170,129,157, 78,145, 39, 78, 37,208,135,254, 89, 88, 42,146,247,246, -179,250,189,248,156, 53,125,193,197,188, 7,226, 81, 11,177,127, 81, 71, 13,134,227,236, 92, 25,203,121,242,139,210, 27,156, 43, - 72,195,113,150,119, 17,159, 41,174, 32, 11, 24, 70, 74,133, 44, 19,101, 42,187,169, 70, 62, 54,109, 51,163, 6, 51,143,216,181, -129,212,154, 97, 17, 64, 74,179,234,179,188, 56, 34,209, 17, 36, 70,114,117, 43, 56,166, 81, 41, 89, 89,200, 77,107, 43, 31,186, - 64, 99,102, 79,162,172, 2, 6,207, 2,140,166,109,170,221, 37, 56, 15, 55, 18, 96,197, 26, 77,162, 26, 69, 9,117,166,177, 53, - 34,211, 51, 15, 94,176, 74,186,140, 17,173,165, 32,140, 20,200, 74, 22, 98,172,106,252, 92, 70,249, 70,177, 13,136,109,120,152, - 63,168, 2,181, 41,105,211,218,144,223, 94, 73,170,186,203, 88, 71,130, 98, 25,115,142,200,165,115, 98, 85,189,119, 19,237, 81, - 57, 64,131, 42,254,204,153,195,243,206, 45, 29, 17,237, 10, 3, 89,105,222,181, 87,254,112, 62,226, 12, 83, 90, 87, 40, 14,135, -242,144,179, 23,155, 44, 28,146,119,246, 0, 88,160,103,154, 9,187,171,247,248, 47,255,247,128,255,254,127,249, 57,126,244,211, - 87,184,190,218, 67, 43,129,243,117,135,207, 94,157,226,110, 8,248,230,171,107, 24,115,207, 99,198, 50,177, 16,213, 82, 89,126, -102, 8,180,223,214,182,133, 93,172,107,248,136, 16, 64, 63,140,200,217, 99, 26, 70,184,201,161,237, 12, 78,207,182,216, 72,137, -118,209,178,141,135, 0, 23,169, 70,116, 18, 29,113,115,118,142,229,170, 69,219,145,120,116,255,176,199,238,126, 15,239,105,236, -154, 98,194, 56, 76, 8,129,114, 9, 74, 86,183,102,244,171, 16, 18,191, 88, 89,124,242,106,139,209,174,241,126,239,240, 48, 56, - 76, 62, 96,242, 17,147, 39,118,122,165, 74,101,218,167,199, 20, 72, 77, 43, 19,180, 20,117,199, 14, 22,150,129, 1, 51,145, 41, -131, 74,137, 58, 98,165,247,170, 60, 45,153,225, 42, 25, 66, 36, 68, 79,240, 18,109, 52,192,140,121,106, 67, 51,160,192,192, 39, - 93, 45,107, 49, 38, 52,173,173, 69, 59,173,186, 84, 29,191,187, 34,114,229,231, 33,248, 80, 99, 74,203, 10, 12,137, 86, 3, 49, -120, 98,186, 43, 13, 32, 96, 56,236,121, 21, 86,162, 47,103,246,132,181, 13, 86,235, 21, 97, 98,189,195,238,238, 30,253,254, 1, - 3, 39, 93, 21,219,106,157,102,100, 32,134, 9,222,187, 90,204, 83, 55,171,171,200, 85,114,251, 71,100, 70,186,228,149,214, 80, - 82,147, 88, 19, 64,100, 98, 27,202,100, 79, 72,178,226,166, 4,221, 52, 53, 95,158,127, 4, 31,210,140, 41,173,104,106, 70,134, -178, 15, 61, 51,241, 49,178,218,190,164,182,205, 77, 20,105,105, 74,132, 51,142,108, 80,197,125,163,149,161,247,136,109,134,162, -136,230,152,147, 33, 89, 25,159,114,168, 74,116,250,188,116,181,100, 10,169, 25,215,171, 96,108,139,110,177,226,157, 55,224, 3, - 51,228,153,158,150,217, 83,158,121,173, 67,213, 36,117,147, 34,211, 52,215, 59, 95, 47,246,136, 12, 99, 91,104,219,113,190,129, -132,212, 10, 18, 30, 66,144, 11, 33,101,129,105,156,224,221, 84,217,240, 66,170, 26, 74,162, 21, 72,251,163, 4,175, 43, 34,132, -164,174, 92, 8, 1,164,204,182, 58,130,176,208,249, 36,104,213,171,115,205,241,144,146, 84,244,133,179,159, 93, 41,156,202,133, - 45, 48, 14,142, 21,246,177, 90,199, 34, 3,204, 66, 72, 85,248, 39, 65,107,233, 50,241,201, 66, 67, 42, 84, 61, 69,224,169,111, -121, 13,145,157, 45,213,110,200,150,232,210,156,149,233,177, 86,244,247, 17,194,152,180,105, 37,138,183,172, 59,143,147,223, 88, -217,200, 5,106,134, 72, 5, 60,131, 58, 33,163,164,189, 12, 29,130,135, 76,138,194, 75,202,120,220, 16,177,136,170, 80, 93, 71, - 29,150,171,168,105, 34, 76,162,224,135, 52,132,116, 52,230, 17,245, 80,115,206,147,153, 62,250,122,184, 19,180, 67, 64,183, 13, -164, 72, 53,129,230, 3,226, 83, 5,206, 80,197, 88, 72,114, 74, 73,100, 65,194, 36,149,100,237, 20,200, 86, 32, 42,102, 85, 41, - 18,132,197,152,160, 89, 84, 82, 48,180,162,136, 43,138,111,150, 69, 49, 5,154, 97,140,129,177,196,242, 85,140, 34,165, 34, 35, - 16,211,253, 40,139,151,246, 70, 13,137, 78, 98,174,220,107,239, 34, 19,223,184,202, 85,196, 63,142,188,131, 11, 76, 56,138,165, -146, 76, 9,222, 39, 4,199, 49,130, 5,199,201, 42, 87, 42,138,232,139, 82,124,237,214, 90, 4,222,235, 80,177,192,135, 76, 8, - 85, 29, 41, 89,112, 69, 94, 84, 42,134, 66, 76,176,134,120,245,154,133, 67,202,208,168, 93, 27,205, 2,165, 57, 34, 82,240,110, - 48,199, 48, 3, 46,202,248, 41,167, 26, 29,121,108, 43,180,109,203, 29,229, 60, 50, 77,145, 25,219,222, 1,162, 65,215, 72,236, -187, 51, 12, 59,224,175,255,227,239,112,122,190, 66,112, 17, 79, 94,156,226,229,103, 79,112,113,231,241,230,135, 43,104, 99,177, - 88, 90,172,214, 29, 5,113,100,170,204, 33, 21,175, 4,202,200,154,132, 89, 77, 67,163,195,182,109,104, 61,148, 51,148, 49,184, -186,120,192,237,109,132,146, 6, 39,143,207,208,172,214, 24,135, 9,215,215, 19, 4, 28, 95,142,212,117, 14,195,132,105, 32, 22, -120,211,104, 44,150, 13, 63,159,130, 5,109,138,115,194, 19, 14,187, 17, 49, 36, 76,206, 3,153,200, 98, 49, 70, 40, 77,202,220, - 6, 9,159,252,143, 63, 1, 78, 86,104,149,198, 39,136, 52,206,122,216, 3,247, 3,222,252,112,141,215,183, 14, 23,119,119,232, -167,128,161, 31, 89,116, 53, 91, 92,202, 62,190, 20,202,249, 72,228, 24, 66, 68,244,138,158,205,148, 57,174,146,246,184, 36,192, -212, 8, 1,104,172,168,217,229,197,206, 89,245, 37,153, 86, 79,218,176,101, 79, 73,222,251,147, 7,189, 8, 51, 67, 17, 24, 50, -146,148, 86, 65,178,130,144, 72, 23,164, 88, 64,168, 89,117, 47,248, 57,161,241,168,228,223,125,232, 71,158,202,177, 87,152,117, - 35,253,225, 80,131, 58,180,209,176,214,194, 88,131,205,201,150, 83,230, 4, 14,251, 61,180,210, 8, 49, 86, 96, 75, 77,150,175, -105,138,134, 71,161,172, 50,151, 52,161, 64, 6,132, 42,150, 49, 85,161, 29,138, 11,176,148,136, 96,102,140,193, 56,186, 25,137, -203, 57,221,116, 8, 51, 26,215, 19,194, 57,132,200,217,234,164, 41,160,213, 25, 79,221,144,234,247, 55,179, 66,153,224, 54, 44, - 98,227,162,186,188, 87,162,198,176,102,142,166,158,191, 95,146, 11, 41, 84,104, 14,179, 4,138, 2,154,223,231, 99,241, 93, 17, -116,201,218,233, 11, 24,219,113,172, 47, 19, 8, 57, 14, 84, 41,133, 84, 88,242, 12,171,201, 57, 34,133, 68, 62,247, 82,164,228, -192,221, 59, 77,111,165,210,176, 77, 7,109, 91,176,117,156,139,191,200,133, 14, 77,248,166,190,199, 52, 14,212,197, 43,154,206, -150,205, 10, 57,126,232,183,241,108,223, 35, 46, 61,234, 42,171, 52,152,138, 35,153, 5,175, 8,137, 45,207, 41,125, 44, 78, 75, -129, 26,155, 82,208,101, 94,139,144,208,175,172, 67, 83,133, 22, 21, 17,104, 0,189, 15,153, 61,241, 33,151,226,160, 4,171,164, - 90,108,149,166,199,243, 74, 86,105,253,193, 52, 38,231, 88,173,104,153,195,184,100,153,172, 36,193,192, 30,112,160, 11,234,127, - 71,218,129, 25,168, 22,121,138, 32, 24,198, 86,164, 18,196,208,224,148, 61,214,213, 32, 39,104, 99,103, 27, 26, 9,182, 72,245, - 42, 36,197,240,149,203, 86,105, 67, 56, 76,107,160,164,134,243, 44,208, 41,104, 64,166, 42, 89,107, 32,101, 70,127,160,152,214, - 84,236, 29, 33, 96,177, 92,240,131,171,129,204, 74,248, 60,135, 51, 52,141,169,138, 98,202, 41,151, 72,153, 46,158,166, 49,180, -143, 9,220,173,107, 5, 1, 93, 41, 64, 4,224, 97, 24, 63, 68,125, 40,114, 4,160, 68, 5,202, 68,222,193,100,160, 90,111, 36, -199,229,149,152,214, 2,160,241, 62,178,112,134, 70, 97,144, 10, 82, 25, 22,184, 69, 24,206, 80, 6,163, 12,203, 37, 89,131, 38, -124,160, 14, 54, 1,202, 42, 6, 91,208,193, 18,125, 17,212,128,187,180, 34,192,147,213, 39, 93, 56, 0,180,130, 48, 85, 16,103, -140, 33, 32, 68,163, 16, 61, 93, 72,202, 72,100, 22,123, 20,240, 78, 60,178, 66,216,198,242,200, 46,145,149, 67, 0,137, 71,116, -228,251, 20,117,114, 64, 5, 78, 70,211, 45,106, 14,181,177, 12, 1,137, 17, 41, 80, 65, 52, 95,228,224,176, 11, 5,219, 82,202, - 88,114,177, 90, 8,203, 62, 47, 70, 2, 76, 64,129, 70,240, 98,137,132, 30,151,183, 35, 46, 46,118, 80,136,232, 31, 14, 88, 88, -137,118, 33, 17,250, 91,236,247, 15,184, 85, 11,108,206,207,241,228,249, 57, 86,235,150,196, 98,135, 30,251,187, 61,121, 95, 43, - 14, 24, 60,254,165, 46,122, 28, 38, 76,195, 64,251,243, 64,200,200,166,177,184,187,160,139, 95,219, 6, 39,231, 39,120,246,226, - 49,206, 30,111,217,158,197, 30, 87,214, 33, 16,175,157,254,206,232, 3,137, 20,147, 36,166,123,123,138, 20, 35, 14, 15, 59, 92, - 95,222,176, 72, 75,241,197, 75, 57,220,159,156,156, 2,255,252,231, 76, 45,115,252, 79, 13,188,216, 2,135, 61, 94,252,232, 12, - 47,110,110,129, 93,194, 95,253,229,175,240,111,127,243, 14,235, 45, 77, 6,180,209, 72,178,196, 46,210,164,202, 24,162,104, 37, -198, 89, 22,176, 82, 41, 82,199,209,163,109, 45, 93,174, 66, 34, 69, 1,219,128, 71,163, 52, 89, 41, 60,121,165,105, 45,161,117, -170, 19,178,226,121, 22, 71,222, 89,161,168, 3,215, 37, 79,129, 87,100, 90,139, 10,132,130, 40,233, 89,129,196,123,124, 1, 21, -120, 72,206,148,130, 88,246,247,213,100,149, 73,197, 94,244, 35,229,103,250,105,196,176,247,244,123,107,139,245,118, 75,221,180, -144,213, 23, 77,177,193,212,229, 74,205,120, 83, 81, 68,104,153,114,177, 3,229,170, 23,158,133,228,255,134, 2, 79, 18,148,161, - 81,186,103,172,171, 82, 25,217,100,196, 3,135,149, 48, 8, 68,105, 5,107, 13,140,161, 60,135, 34,200, 45, 36,202,105,114, 92, -200, 83,145, 80, 46,234, 92,188,201, 44, 96, 43, 10,103,252, 81,215, 94,152,238,101,111,170, 89, 76,153, 18,193,136,168, 40, 8, - 60, 69, 40, 43, 24,134,250,212, 40, 49,212,223, 7, 40, 41,148,168, 23, 55,165,251, 53,104,187, 21, 55, 32,186,170,201,133,144, -136,137,180, 30,137, 89,249, 49, 80, 55, 27,253, 0, 63,141, 8,110,100,136, 13,185, 10, 50, 7,230,216,166,133,182, 13, 21,218, -218,212,144, 34,154, 48, 90,164, 68,209,215,161,138, 27, 37, 23, 98,146,201,116,129, 85,146, 20,113,170, 10,127, 63,135, 58, 53, - 41,211, 31,138,198,213,117, 61, 89, 52, 82,101,237,151, 83, 34,110,126,121,213,114,206,114,159,153, 13,169,238,205, 75,232,202, -156,117,158,234,247, 64, 8,114, 19, 81, 60, 10, 63,123, 41, 2,146,126, 62,173,178, 2,233,134,242,156,196, 87,254,222, 50,249, -240, 49, 84, 55, 4,253,108, 70,207,114,177, 33,164,230,194,130,155, 91, 16, 71,158, 50, 74, 18,164, 50,156,110,202, 77, 51, 3, -172,132, 36,167,126,202, 28,244, 37, 40, 3, 65,183, 45,133,172,148,106, 67,235, 98,139, 17,204,199, 37,144,130,229, 43, 39, 79, -192, 98,169,145,125,174,144,255,156, 85,133, 88,120, 71, 94,210, 50,146, 32,181,106,170, 97, 3, 4,133,209,136, 62,178, 15,221, - 49,218, 85,192, 31,237,193, 72, 81,152,176, 88, 46,224, 92,224, 12, 91, 69, 65, 31,145,170,241, 66,140, 43, 35,117,201, 95, 90, - 41, 69,245,169,131,191,144,153, 85,143,180, 3,244,245,139,112,156,142, 36,120,135,236,217,103,120, 28, 2, 80,118,116,226, 18, - 36,142, 71, 0, 0, 32, 0, 73, 68, 65, 84, 8, 33,217,118, 77, 21, 52, 17, 9,207, 0, 49,177,117,143,118,139, 82,240,158, 37, - 9, 22,224,144, 8,207, 26,205, 93,180,132,243,190, 38, 0, 21,142,125, 25, 73,106, 86, 40,151,195, 84, 41,137,144,200,191,153, -107,232,142,193, 52,142, 52,186, 2,117, 61,145,215, 42,244, 96,138, 57,100,160,178, 36,103, 61, 66,221,254,229, 92,247, 59,165, -107,209, 90,178,152,144, 71,132, 92, 49,230, 68,135, 61,169,176,169, 82,172,136,196,200,171, 27,126, 95, 67,160, 61,169, 27, 71, -214, 81, 12,240,185,169, 15,118,219, 26,108,159,108,176,222, 44,209,152,140,175,255,254,111,144, 99, 15,187,126,142, 87, 63,122, - 5,183,123,143,195,237,119,248,250,226, 15,216, 31, 18, 78, 30, 63,197,179,143,159,225,217,139,115, 8, 4, 28,238,239,113,253, -238, 61,222,191,185,196,238, 97, 95,109,153,138,159, 1, 99, 53,220, 68, 46, 7, 55,112,133,205, 54,167,171,215, 10,191,255, 91, -192, 52, 29, 86,219, 19, 60,121,254, 20, 39,231,167, 88,111, 22,128, 72,216,221,221,227,234,221, 21, 66, 8,100, 91,212,138,255, - 73, 34, 45, 42,182, 52,150,155, 83,244,187, 61, 78,207, 91,172,182, 43, 72, 37,113,241,195, 53,254,236,203,103, 0,152, 78, 21, - 70, 64, 91,190,216, 37,176,220, 0, 75, 0, 75, 9,124,253, 21,254,234,223,252, 87,252,155,255,252, 29, 86, 11,139,255,253,127, -251, 95,177, 62, 95,226,155,119,183,120,127,127,192, 20, 34,147,247, 50,154, 70, 33, 70,197, 49,162,164,109, 33,229,178,134,146, -132, 90, 85,202, 98,221, 26, 40,157,142, 58, 54, 58,147,104,181,164,171, 63, 86, 26, 89, 19, 25, 9,118, 81,124,238, 84,140,199, - 16,208,180, 13,117, 81,206, 35,241,207,173, 99,110,142,242,204, 57, 99,255,176,167, 98, 60,150,209,168, 67,138,162,178,212, 67, - 96,193,147,144,224,166,142, 83,220,202,254, 91,179, 45,202,241,232, 62, 33,165, 17,247, 55,100,131, 10,126,162,233,220, 31, 61, -179, 52, 85, 2, 68,230,103, 82,234, 57,178,146,113,177,165,107, 43, 99, 90, 64,160,105, 26, 88,107, 1,204, 66,170,192,128,167, -114, 30, 18,230,215,160, 91,116, 52,201,211, 4,196,114,163,103, 61, 66,152, 93, 49,236,143,207, 12,169,201, 28, 28, 82,253,206, - 71, 72,106,160,140,120,203,132, 3,188, 86,208, 44,118,163,137,133, 82,166, 78,199,228,209,148,176,194, 76, 56, 42,182,224, 79, - 75, 98, 23,193,168,230, 61,188,210, 6, 77,187,168, 48,172, 84, 38, 63,124, 33,136,226,142, 65,134, 68, 68, 74,164, 83,113,211, - 30, 57, 56,158, 30,122,222, 63, 43, 52,221,154,254, 62,211, 66,219, 5, 23,118,170, 50,236, 51, 55, 40,222, 7, 76,211,192,238, - 1,125,148, 66, 87,226, 73, 57, 30,152,147,207,200,136,195, 34, 98, 85, 18,208,138,128, 87,240,228,151,207,170,196,171,202, 44, - 32, 34,144,165, 56,122,143,129, 28,192,180, 53, 96, 26,135,202, 45,160,230, 53,176,150, 32,212, 98, 54,165, 8,145,232,189,242, - 33, 66,170,196,250, 32,174,194,196,172,119, 8,222,115,146,223,255,207,213,155, 60,219,150,158,103, 94,207,215,173,102,239,125, -218,123,110,147,153,247,102, 74,153,146,108,185, 85, 25,219,184,170, 2, 71, 85, 65,208, 4, 38,130,128,128, 33, 67,130, 1, 17, - 48, 97,192,204, 83,102, 4, 35,248, 19, 32, 32,160, 32,168,192,101,187,108,151,195, 14, 35,149,101,149,101,164, 82,102, 42,155, -155,169,188,153,183, 61,221,222,123,173,175,101,240, 54,107, 95, 75, 3, 73, 41, 41,207,185,123,175,245,125,111,243, 60,191,135, -238, 65,199, 73,136,133, 89, 1,181,100,228,180, 64,111, 14, 47,111,217,196,211,116, 60,107, 40, 15, 21,132, 14,181,241, 25,193, - 1,106, 42,136, 99, 11,165,222, 21,124,249, 27,217,203, 55,192, 15, 99,207,106,204,134,148, 19,143,140,150,241,220, 18,180, 50, -179,165,130,246, 34, 33,208, 31, 58,132,160, 57,188, 77, 70, 89,222,161, 20,139,113, 53,192,236,105,228, 27,231,153,237, 18,134, - 71,213,142,149,213,124, 73,176,125, 77, 80,125, 49,102,144,224, 90, 84,159, 30,182, 17,132,191,235, 3,166,109,212,120,199,253, -126,210,180, 35,129,226,148, 74,184, 60, 31, 60,179,164, 57, 99,152, 95, 84, 57, 92,164, 99,200,133,132, 60,113, 34, 75, 25, 1, - 93, 12,239, 9,139,254,185,114,170,154,110, 38,120, 69, 97, 73,236,119, 81, 99,101, 75, 46,152, 91, 85, 81, 83,228,238,145,176, -183, 52,218,179,206,106,101, 90, 88,161,191,116, 74, 7,170,103,206,180, 37, 70,116,135, 96, 27,123,132, 35, 31,180, 68,144,202, -165,232,136,150, 72,182,158, 45, 23,108, 17,226,248,192,156,121,212, 86, 50,124,215,107,231, 96, 29,249,109, 73,173,237, 17,250, -142, 5,114,140, 4,106, 85, 89,211,242, 2, 19,177,210,145,219,192,114,247,199, 33, 29,150,109, 73,150, 21,207, 42, 86, 49, 30, -251,220,161,228, 9, 93,231,112,116, 52,224,206,221, 99,188,251,205, 55,241,252,241,251,184,105, 19,206, 46,206,177,218, 56, 92, - 63,127,138,139,183, 30,193,117,207,240,233, 79,222,167,116,184,253,115, 60,123,252, 99,252,244,232, 12,247, 31, 61,194,197,253, -187,184,255,181,111,226,238,163,111, 32,167, 8,107, 43,226,126,143,105,191,195,126,187,197,246,230, 22, 87,175,174, 41,223, 32, -243,222,188,239,180, 88, 51,214, 96,222,223, 34,206,123,220, 92, 18, 11,127,125,116, 4,223, 13,184,115,247, 2,247, 31, 62, 68, - 8, 22,183, 87,215,120,245,242, 37, 94,189,120,133,148, 50,186,190, 35,140, 50,135,108,228, 84,112,125,115,139,147, 93,196,122, -179,194,171,167,215, 40,239,189, 1,119,123, 3,108, 54,128, 63, 3, 48,243, 37,207,121,204,168, 64,127, 4,188, 0,254,233,247, - 30, 99,218, 71,124,237, 98,131, 95,251,143,255, 46,176,234,240,205,109, 4,126,252, 62,190,252,155,143,241,185, 89,227,133,239, -144,184, 59,110,141,222, 19,154, 84, 88,158,224,200, 62,209, 98, 28,131,182,111,244,189,103,216,222,178,200,102,193,188,182, 86, -104, 95,103, 45, 26, 63,147,150, 11,200, 20, 27,179, 19, 50, 66, 32,161,102, 48, 78, 69,155, 41, 87, 21,197,154, 86, 94,195,114, -230,196,136,203,182, 40,183, 73, 12, 75,112, 20,219,220, 65,148,100, 85, 82, 99,173, 70, 59,177,192,118, 48,234, 90, 88,240,202, - 12,120,178,254,116,140,177,117,250,115, 96, 40, 36,167, 49,152, 73,248,220,222, 27,196, 10, 14, 46, 33,231, 71,215,119,122,198, -200,180,177,176, 18,190, 10, 45,210, 59,172, 86, 3,233,116, 60, 21, 58, 4, 25, 73, 42, 48,171,234, 96,161,139, 56,231, 3, 1, -165,179, 10, 0, 18, 0, 73,227,212, 72,175,233,151,203, 90,164,240,206,223,242, 26, 68, 88, 8,196, 70,169, 7,222,115,104,113, - 78, 26,130, 70,163, 90,213, 16, 64, 45,101,222,119,232,251,113, 41,230,100,252, 93,193, 13, 25,233,115,136, 33, 80,145,230, 25, -105,218, 98,222,223,162,230,153, 11,249, 4, 52, 34,152,117, 97, 68, 55,108, 96,195,128,208,175, 40,160,136,243,204, 41,200,132, -138,188,105, 46,152,247,123, 6,178, 88,248, 78,220, 2,225, 64, 48,204,136,217, 86,153,223,222,212,194,149, 75,102, 97,174, 20, - 92, 85,215,184,146,191, 78, 89, 26,105,209,242,184, 37, 14, 92,138, 23,203,247,147,132,173,136,136, 48,206,145,113,202, 73,193, -100,181, 25,222,171, 51,205,142,148,113,220, 73, 87, 78,148, 59, 16, 98,114, 74, 31,233,175,162,174,104,228,126, 2,128,220, 10, -219, 48,235, 65,186, 30,137, 87, 13, 39,189, 25, 41,167, 10,231,170, 75,186, 95,181, 48,166,168,213,174, 73,209,192,130,101,154, - 62,112, 94,169,181,240,180,123,113,154, 43, 30, 35, 33, 13, 73, 69,235, 25, 64, 66,163,190,148,104,132, 98, 29, 93,228,125,223, - 83,124, 34,135, 39,144, 39,214,105,152, 65,138, 73,187,217,156, 43,166,105,198, 56,246, 40,220,201, 27, 70,186,210, 14,210,243, -200,106, 94, 18,214, 12, 29, 22,214, 58, 30,145, 17, 2, 81, 16,151, 37,145,122,181,239, 59,254, 29,204, 66,186, 99, 91,136, 68, -163,154, 82, 57, 90,177,233, 5,147,115,133, 67, 33,180, 38, 63, 8, 93,239,105,151,102,248, 65,227,200, 87, 99, 40, 96,160,212, -202, 25,202, 29,225, 66,115,225,100, 36, 6,110, 57,226, 6,199,105,210,142,214, 89,139,221,156,152,221,236, 16, 39, 14, 46,169, -237, 32,217, 40,195,119, 30,211, 52,107,244,167,236,155,100,215,223,224,116, 47, 84,115, 38, 72, 7,239,132,114,169, 58,230,174, - 57,195,120,218, 55,145, 16,138, 19,246, 28, 9, 1,189,183,250, 66, 21, 33, 57,241, 75,228,120,135, 46,187,116, 88,163, 93, 17, - 81,172,205,146, 26,196,123,156,106, 13, 66, 63,234,197, 86, 88,180,102,172, 97, 69,244, 97,202,145,129, 63,126, 27,123,158, 38, -173, 87, 61,142,143, 87,184,255,198, 25,142,143, 60,158,236, 94,225,237,119, 31,161,235, 59,218,129,206, 17, 79, 62,250, 9, 76, -127,134,175,255,226, 47,225,131,127,249, 3,236,182, 91,212, 90,113,115,249, 2,207,191,248,148,160, 63,221,136,163,179,115,108, - 78,206,225,251, 21,206, 47,206,112,126,255, 45,140,171,192,120,220,172, 2,150,156, 51,186,224,176,219, 77,136,211,140, 24, 35, - 9,120,230, 8,199,211, 38, 58, 64,102, 60,121,252, 83, 60,254,176,162, 27, 55,184,115,239, 14,238,220,123,128,119,190,177, 66, -205, 17,151, 47, 94,225,217, 87,207, 49,177, 77, 48, 4,234,228, 47, 95,190,196,231,159,124,129, 23,159,221,226, 15, 34,240,198, -143,159,224,205,251,199,184,255,232, 14,240,230, 49,112,210, 1,227,200,251,210, 6,192,225,179,159,222,224,233,237,132, 6,224, - 27, 71, 14, 72, 91,224,244, 12, 56, 30,128,175,122,124,240, 23,239,163, 25,135,247,126,235, 87,240,189, 39, 59,164, 97,192,131, -135,231,216, 28,143,168,149,194,112, 90, 51,252,125, 86,214, 81,208,200, 53,197,164, 97, 36,162,148, 37, 62, 3, 3, 48, 88,240, - 21, 99, 60,152,214, 88, 37, 34,214, 82, 17, 44, 67,157, 88,208,102,216, 30,103, 44,141,205,125, 35,141, 75,215, 5,118,106,136, -229,137, 84,195, 21, 52,174, 52, 86,242,163,157,186, 73, 2,243,246, 75,109, 10, 10,145, 11,130,108,119,141, 47,115, 15,107,121, -143,107, 23, 33,159, 28,104, 50,169, 11, 61,225,118,157,138,110,147,238,221,189,163,137, 70,232,250, 37,150,249,192, 75,221,120, -135, 75,118, 61,139, 16,156, 66,124,200, 49, 66, 59,234,221,118,226,241,120,225,209,114,214, 61,104,230, 49,108,107, 34,188, 74, -139, 70,133, 71,164,181, 46, 22, 63, 17, 80,153,131,203, 88,127,167,218, 22,151,132,138, 92,205,114,161,243,136,121,209, 92, 36, -250,238, 37, 29,210, 58,116,221,136,192, 43,151,192,201,145, 82,132, 56,111, 17,140, 71,131,165,221,116, 73, 40,105,194,180,187, - 69,142,123,212, 60,233,206,190, 85, 90,171,116,253, 26,227,230, 28,161,167, 46,189,192,193,177,167,159, 87,254,108,247, 37,188, - 47, 56,104,171, 54,131,154, 5, 8,100,145,107,211, 51,179, 86,210, 19, 20, 22,160,129,237,120,133,189,229,141, 5,104,244,247, - 38,157,150,116,167,113, 90,116, 9,173, 22, 84,231,217,161,228,184,152,178, 26,191, 43,182, 70, 89,115, 80,144,204,164,141, 83, -202, 34, 6,174,124, 33,179, 82,157,155, 43,103,205,146, 5,193,162,218, 90,210, 1,255,160,161,177,206, 64, 92, 2, 50,161,168, - 53,190,246, 93,137,168,211,178, 5,177, 52,163, 29,187,101,145,105,225,187, 7,150,180, 68,212,128, 19, 27,192, 54, 32,151,164, -118, 64,240,123,224,137,102, 69,212,165,105, 74, 88,173, 87,152,246, 19,239, 63,170, 66,243, 69,172, 64,118,167,136,156,105, 76, -100, 83,162,202,151,119,224,104, 64,215,123,220,222, 52,149,248,231, 76, 31,182,120, 27, 67, 71,213, 80,223,247,122,232,103, 38, -204,201,135,107, 88, 4, 34, 44,247, 38, 49,128,188, 55, 17, 97,155,177, 70,211,205,108,112,170,136, 53, 88, 50,158,199,149, 85, -133,183,140,217,193,251,140,194, 22,180, 16, 2,163, 3, 51,141, 14, 61,237,218, 83,165,138,186,235,137,127, 60,140, 61, 66,215, -113, 81, 65,154, 3,218, 53,210,158,149,196,104,153,252,150,206,192, 5,143, 24,103,229,223,203, 36, 68,198, 79, 20,161, 73,190, -204, 24, 19,197,179,242, 30, 41, 56, 81,241, 59,228, 2, 37, 30,165, 73,168, 92,132,127,149,132, 33, 2,246, 16,154, 81,184,197, -173,146, 0, 78, 84,244,206, 5,173,236, 66,215,147,191,152,247, 81,180, 66,112,252,226,118,180,223,135, 96, 16, 73, 99, 80,234, -226,195, 36, 17, 23,217,124, 72,143, 65,121,224,141, 71,128, 4,206,161,135, 90,128, 57,214,247,176,227,125,228,235,136, 16, 44, - 54,155, 30,231,119,142,240,230,163, 11,108,159,125,130,187, 15, 46, 52,175, 56,165, 61, 74,109,120,254,229, 19, 76,251,143,240, -242,252,109,252,194,111,254, 93,124,242,163, 31,226,201,103,159,169,168, 47,198, 25,102,191,199,238,246, 10, 95,126,246, 9, 71, -239, 6,116,227, 6, 71,167,103,120,240,214, 61,220,185,119,138,243,139, 99, 12, 67,192,238,118,143,235,171, 91,236,182,147,170, -173,189, 31,208,245, 43,116, 67, 71,104,223,102, 52,184,135, 96, 47, 22, 41, 82, 90,219,228, 13,134,113,196,221, 55,223,196,241, -233, 57, 90,203,216, 28,141,168,181,226,242,229, 21,118,219, 61,158,253,236, 10, 67,232,241,234,114,135,237,118,198,103, 63,123, -133,245,143,159,224,120,237,113,113, 50,224,237,135,167,112,111,157, 1, 23, 27,160,183,248,127,191,251, 1, 42, 12,110,211, 14, - 62,238,129,159,252, 24, 24, 45,112,239, 1,112,247, 4,255,198,127,242,171,120,255,123, 79,241,239,254, 55,255, 35,182,200,136, -104,120,100,239,224, 63,248,183,126, 13,255,245,127,245, 59,248, 12, 6, 87,115, 66, 9,142,179,165,185, 96,179,180, 34,104,181, -161,235, 45,166,253,204,157, 56,244,192,107,236,182,232,122,207,107,151,166, 22, 46,112, 54,132, 92,144,164,190, 61, 84,158, 55, -180,230,200,155, 95,178,238, 25,227,156,248,146,106,203,197,201,226, 38, 42, 58, 36, 99,251,111, 69, 25, 91, 58,172,104,188,207, - 25,245, 48,140,134,165,125,185,231, 81,172, 4,158, 88, 3, 5,231,144, 19, 5, 58,189,232,135, 30,109,162,244,171,190, 39,160, -207, 48, 44,113,206,148, 56, 71,100,187,148, 50,226, 60,169,133,208, 89, 58,111,134,177,167, 38,132, 47,195, 28, 51,219,116,137, - 79, 31,231,153,157, 63, 9,153, 93, 39,214,154, 69,159,196, 30,102, 25,245, 74,225, 36,226, 66,103, 9, 35, 43,108,124,154,110, -155,131, 8, 88,171,249,222, 49,103,181, 86,137, 19, 5, 26, 96, 82,232,191,115,130,224, 38,186,161,239, 2, 66,232,153,211, 97, - 53, 9, 47,114,234, 87, 3, 21, 18, 41, 39,228,121,135, 52,237,144,211,132,154, 39, 30, 21,179, 0,203,123,116,195, 17,250,241, -152, 46,244,110, 5,235,123,142,152,134,226,180, 35,139, 69,247,187,253, 50,193,224, 21, 0, 49, 63,154,134, 38,201, 26, 1,166, -234, 84, 80,196,101, 57,165, 3, 7,128, 99, 97, 49, 59,119, 26,208,210,196,190,242,194, 34, 65, 42, 0,172, 76, 59,185,144,106, -172, 49, 0, 7,207,104,195, 87, 43, 1, 98, 88,152,109,125,167,103, 29,173, 89, 51, 59, 1,120,128,234, 73,147, 84,170,225,243, -174,162, 36,246,156, 84,182, 75, 58,199, 90, 14,137,112, 53, 92, 84,100,133,216,208, 58,198, 82,115,204,100,198,170, 43,135, 69, -105,159, 19, 33,117,155,104, 79, 80,152, 39, 98,153, 32, 71, 19,236, 37,233,148, 62, 63, 47,218,123, 98,190,211, 75, 86, 89,129, -103, 76, 62, 0,203, 88, 30, 84, 83,146, 80,201, 5,232, 73,184, 16,124,224,202,208, 50,196,194, 97, 28, 71, 26,219,165,196, 35, - 38, 30,255, 57, 15,107, 11,194, 24,248,101, 44, 64, 58,140, 65,132, 42,229,115,110,176,174,160,121,167,185,236, 34,188,241,222, -161,194,243, 65,226,216,234, 32,209,153,164, 26,239,122,143, 97, 53, 48,254, 53,243,184,177, 32,167,170,180, 56,176, 53,194, 48, - 34, 54,165,138, 97,236, 73,208,229,157,142,126,228, 3,147,209, 52,169, 95,179,242,123, 67,231, 49, 79,116,176, 17, 24,135,232, -112,173, 26,246,190, 50,188,197, 27,152, 44, 2,193,202, 65, 6, 77, 81,161,100,115,240, 76, 8,163, 9, 74,230,252,250, 28,137, -112,150,115, 98, 72, 71, 81,241,154,236,226,187, 46, 80,161,147, 73,253, 78,145,144, 28,225,231, 3,251, 33,229, 65,171, 7, 30, -226, 78,133, 59,174, 11, 60, 46,171, 58,233,168,188, 55,247,146, 28,197, 66,145,214, 40,166,212,178, 53,166,178,117, 45,167,229, -192,161,200, 64,234,236,252,250, 1, 82,113,240, 78,112,170, 35,222,120,120, 7,182, 77,120,241,236, 57, 11, 84, 12,226, 52, 97, -119,187,195,229,243,151,200, 49,162,213,130,155,103, 31,227,175,254,252, 18,191,248,235,127, 7,239,124,243, 61,252,245,119,255, - 18,183, 55, 55,154, 76, 85, 10,116,122,208,106,197,188,203,152,119,151,120,249,213,231,148,146,118,114,138, 71, 95,127,132,135, - 95,123, 11,239,254,252,123, 40,185, 96,191,221,225,230,250, 26,215,175,110, 40,202,115,159,176,187,161, 34, 51,231,130,253,110, -135, 56,207,136, 49,241,243, 65, 35,224,126, 92,227,244,252,140, 3, 82, 10,118,183, 59,132, 16,240,240,157, 55, 48, 14,107,228, -203, 25,171,163, 99,212,210,144, 80,104, 87,152, 11,182,219,134,103,207,111,240,225,167, 47, 48, 4,139,139,179, 17,155,206,224, -207,191,255, 41, 86, 99,143, 82, 11,142, 6, 15,220,220, 0,223,253, 43,224,235,239, 0,131, 1, 30,222,193,201,119, 31,227, 25, -246, 40, 0,254,145, 61,195,186,171,248,232, 7, 31,226,206,119, 30,226,206,186, 7,174,182,248,228, 47, 63,197, 39,151,147,134, - 32, 25, 67, 69,123,225,245,210,106,179,214,203, 70,196,152, 33, 56,181, 63,209, 74, 8,188, 19, 23,220,114,143, 56,205, 8,220, -105,139, 43,195, 7, 7,195, 9,119,253,208, 33,205, 13,153,247,178,214,121,196, 52, 49,149, 77,108, 87,141,242, 10, 88,203, 33, -145,197, 6,139,253,147, 52, 47, 52,233,233,186,142, 2, 63,102,178,130, 58,177,224, 97,137,109,166, 52, 45,192,241,106, 13,156, -223, 77, 10,126,218,223,110,216,249,162, 26, 0,107,120,143, 79,251, 86, 89, 11, 73,138,150, 20, 24, 34, 38,116, 28, 56, 83,114, - 89,248,108,173, 34, 39,234,234,231, 57,170,208,213, 26,131, 92, 23,148,173,116,203,130, 91, 54,102,217,147,162, 73,151, 90, 15, -152, 25, 70,145,205,170, 87, 64,211,142,159,238, 60,142, 16, 45, 69,197,114,149, 29, 38,100,133,162,104,226,208,245, 12, 97,241, - 68, 26, 11,157,126, 55,250,185,137,214, 33,206, 72,243,158,186,243,146, 22, 75, 21,200, 82,229,187, 17,227,234, 24,214,119,176, - 97,128, 13, 35, 90, 35,177, 96,232,188,134, 91,181, 70, 23,216, 60,199, 37, 49,142,227,176, 43,127, 95,206, 49,114,182,208, 20, - 5,173,194,153, 10, 27,130, 78, 81, 11,191,243, 68,168,147,166,165,232,154, 68, 32, 60, 37, 87, 22,247, 10, 60,198,211,197,104, - 28,103,154,211,157,101,140,132, 24, 57,181, 17, 54,206, 16, 81,123, 32, 11, 56, 73, 40,110,244,190, 49,198, 40, 81,208,123, 15, -148,172, 13,175,225,240, 21, 21, 3,231, 66,171, 37,107,168, 80,225, 63,115,173,146,191, 46,235, 38,214, 27,241,243, 86, 36,147, -225, 32,186,213,250,192,171, 30,163,247,107,147,248, 92, 6,138, 44,206, 24,168, 55,222,231, 68,213, 69,158, 35,179,218, 73, 92, - 81, 12, 48,207, 51,169,183,173, 69,232,189,166, 27, 9,142, 48,197, 8,191,162,139,178,115,157, 86,160,214, 57,244,131,209,125, - 60, 41,103, 3,128,172, 56,212,146, 11,108, 32,106,220, 48,200, 8,154,173, 60,124, 65, 53,199,201, 98,185,192, 27,242, 15, 82, -134,184, 69,205, 70,121,202,251, 29,133,116,152,234, 88,213,184, 68,170, 74,154,220, 66, 61,195,130, 23,180, 22,222, 57, 86,192, - 27, 20,166,102,197,200,220,223, 66, 9, 88,165, 52,180,148,105,132,229, 73,197,158, 35, 87, 92,156, 17, 79, 10,235,194, 30, 98, - 14, 27, 56,168,246,112, 16,223,153, 18, 77, 37,170,238, 70, 42,217, 75,204,178, 4, 91,173, 6,238, 80, 28, 60,239,126, 42,243, -127,173,105,136, 28, 76, 32, 2,184, 90,170,118, 55,168, 96,255,184,209,100,173, 90, 43,226, 52, 83, 65,196,137,119,134, 25,225, - 34,194,105,104, 8,189,231, 67, 67, 42, 63,222,157,242,206, 74,214, 20,214,123,206,137, 95,113,134, 60, 21, 9,193, 89, 76,251, - 73,149,154, 41, 70,181,103,133,174, 67, 56,121,136,219,151,145, 67, 90,122,156, 95, 28,225,236,124,141,191,252,103,191,135,235, - 87, 47,153, 53, 13, 76,251,137, 18,185,120,207, 24,186,158, 70,157,183,207,240,151,127,252,135,120,251, 91,191,132, 95,251,237, -223,198,147,143, 63,194,199, 31,124,136,105,191,167, 93, 30, 11,115,186,161, 71, 73,180, 34,162,253, 91,198,237,245, 37,126,244, -131, 75,252,171, 31,254, 24,155,163, 35,220,185,119,129,211,139,115,172, 55, 35,142,207, 78,145, 18,229,113, 75, 84,103,206, 25, -199,233, 8,149, 35,132, 75,230,176, 17, 67,240,162,146,119,184,185,218, 99,125,116,132, 7, 15, 31,192,152,138, 23,207,158,225, -233,251, 79,208, 95, 94, 82,231,181, 58,226,189,178, 81,184, 76,140, 25, 41, 27,220,222,102,188,124,181, 69,142, 9, 95,189,218, -147, 87,181, 53,188,255,228, 26,248,224, 57,112,113, 4,164,199,192,233, 10, 24, 3,126,248,170, 96, 15, 96, 3,131,255,238,191, -248,109,124,251, 63,252, 21,224,197, 22, 56,237,128,213, 6,240, 21, 95,251,133, 11,124,254,199, 31,163,244, 29,139, 25,161,221, -158, 21,186, 26, 42,235, 91,232,157, 18, 32, 71,227,152, 79, 11, 79,108, 5,217, 7,102,131,205,113, 80,173, 80,140, 25, 61, 43, -167, 91,171,234, 83, 39,234, 90,193,170, 54,122,214,152,120, 88,121,172, 46,235,151,208,117,234, 90, 16, 46, 56,173,225,178, 88, -114,152,165,207, 24, 92, 99, 88, 27, 66,135,161,239,122,141, 62,166, 72, 79,154, 0, 52, 35,112,152,142, 59, 36,246,117, 55,154, -230,228,152,216,210,190, 20, 21, 53, 23, 76,251, 9, 41, 37,236,110,119, 36,170,147,119,166, 16, 43,195, 49,187, 67,136,147, 49, -102,125,159, 39, 78, 7, 51, 60, 73, 20,111,186,164,185,137,198, 69,240,159,220,235,105, 19, 35,254, 98,107,196,122,181, 88,222, -156,243, 42, 32, 44,117,193,160,210, 36, 0, 58,105, 36,106,154,196,113,114,180, 39, 35,112,189,239,216, 61,211, 41,147, 35,231, - 12,240,154, 35, 83,254, 41,230,105,143,146, 39,181, 95,149, 60,115, 26,156, 67, 8, 61,134,205, 49,140, 9,176,174,131, 11,131, - 10, 81, 29, 35, 89,165,235, 78,145, 28, 39, 85,125, 87,178, 66,245,122, 41,138, 59, 68, 72,158,214, 54,216,208,163,230,196, 24, -235,162,147, 89,177,209, 9,183, 62,151,172,107, 10, 42,222,185,144,169,145, 48,209,168, 0,220,107,218, 3,212,204, 73,104,102, -241,159, 91,138,125,109, 57,163,177, 94, 74,114, 48,100,202,178, 36, 19, 90,250,123,212,134, 20,171,234,179, 40,114, 56,106,246, - 72,101,168, 19,216, 65, 84,138,225, 98,162,112,192, 78,123, 45,209,142,196,157,134,139, 21,175,174, 16,210,249,176,224,142,199, -238,165, 45, 56,247, 74,131, 13, 42, 4, 89,111, 98,157, 69,102, 17,158, 87, 50, 19, 87,108,228, 75,173,203,216,155, 95,196,194, - 81,130,228,217,244,156,204, 54,147,197,234,216, 99,191,219, 83, 76,231,122,212, 15,174, 99,101,169, 8,122,156,117,228,202,108, -132, 85,181,140, 56, 77,169,113, 80, 12,237,240, 36,164,196, 88,131,113, 53, 96,154, 18, 76,240,100, 25, 59,200, 71,151,181,136, -252,238,172,240, 99,129, 79,193, 48, 24,166, 66,209, 88,177, 52,195, 98,181,162, 84, 40,177,233,165,148,149,207, 59, 12, 1,187, -109, 81,161, 5,121,157,249,231,115, 48, 68,140, 76,124,178, 52,118,163, 42,191,106,119, 92, 57,225, 71, 98,253,140,133,126, 41, - 29,179,176, 11,119, 11,158,133, 62,242,121, 43,121,139,173, 35,187,219,157,198,166,150,156,144,227,196, 35,183,170,187, 55, 90, - 23, 80, 48,135,164,191,161, 86,205,131, 54,188,187, 34,127, 60, 17, 1,101, 52, 36,162,200, 90,201, 97,224,248,133,162, 46,161, -106, 81, 4, 48, 46,177,210,103,236,124, 0,172,103,122, 26,125, 1,153, 73,116,137, 85,211,243,204, 35,238,218, 96,250,115,228, - 26,224, 92, 68, 8, 14,155,205,128,251,111,158,227,250,249, 19,124,249,248, 99,182, 11, 86, 30,225, 82,183,182,168,136,232, 69, -233,250, 1, 57, 23,124,254,225,223,224,201,227, 79,240, 11,255,218,175,225, 55,223,124, 3, 31,255,228,125,124,254,233, 99,174, -188, 41,174,182, 27, 71,178,117,213, 6,231,141,238,188,188,111,184,190,122,133,219,155,107,124,250,209, 39, 88,109,214, 56, 58, -230,216,212,190,131, 15, 14,113,158,201,166,148, 18, 51, 18, 60,219,191,232,178,235,250, 97,217, 75, 58,143,105,183,197,209,201, - 49, 78,207,238,192,223,141,184,220,101,236,159, 62, 71,184,111,129,245,102,193,142,178,199,187, 85,113, 86, 87, 76, 49, 35, 38, -234,220,188,181,248,103, 79,158,227,191,252, 31,254, 12,247,142, 71,124,237,222, 17,190,253,206, 57,142,143, 71,252,207,255,247, - 95,147, 77, 8, 6, 23,191,240, 30,240,157, 95, 5, 2,241,187,177,189, 6, 94, 93, 2, 87, 79,241,247, 47, 26,126,255,171, 45, -127, 22,150,199,195,150, 15, 98,199,235, 37,175,105, 99, 68,120, 35, 45, 65, 97, 96, 84,138,137,169,111,172, 34,231, 76, 3,209, - 99,100, 6, 23, 9,143, 33,197,140, 56, 71,210, 84,112,144,143,239,122, 85,209,199, 57, 29, 88,146, 0,223, 81, 65,141, 3,190, -129,116,156,198, 58, 12, 12,108,113,140, 76,150,208, 28,239, 45,166, 41,161, 11,142,119,213,228,223, 46, 18,230,196, 98, 65,239, -140,198, 17,203, 58,143, 98, 62,163, 22, 55, 41, 38,164,148,105, 66, 35, 26,152, 6, 52,126,199,137,186,182, 48, 24,100, 77,216, - 88,212, 84,152,115, 95, 57,130,180,148,204,235, 38, 22, 69, 49,140, 68, 2,114,164, 35, 44, 69,244, 40,137,127,151, 69,111, 98, - 32,135,124, 80,113, 43, 57,137,200,162,122,152,196,183, 40,250,139,174,224,140, 76, 92,172, 71, 63,172,225, 67, 15, 31, 58, 10, -107,169,226,222,225,241, 61, 72,160, 53,239,183,168,101, 98,228, 54,237,212, 5,200, 21,186, 1,227,250,132,222,115,227,121, 82, - 66,171, 70,231,173, 78, 14, 74, 46,216,239,103,196, 56, 83, 99,101,192,211, 62,234,152, 75,109,108,243,204,156, 25, 95, 25, 30, -197, 35,100,246,128, 19,216,170,233,232,156, 58,225,170,212, 67, 97,163, 44,104,215,136, 90, 34, 39, 47,122,221, 47,211,191, 46, -187,120,113, 69,229, 2, 22, 17, 51,207,221, 46, 58, 0,137, 42, 46,236,193, 39,232, 80, 83,154, 40, 90,227,198,161,170,143,125, - 89, 65,209, 51, 88, 90,101, 59,101, 85, 60,177, 4,146,121, 31, 56,171, 65,220, 34, 18,212,196,116, 58, 94,179,192,200,234,134, -236,152, 41,237, 57,200,135,214,161,198, 84, 45, 32,205,129, 62,130, 2, 0, 12,188,204,226, 51,239,105,188,119,176,134,198, 94, -212,141, 36, 89,241,210, 5,196, 54,151,142, 45, 45,165, 22,108,183, 59, 28, 29, 31,105,232, 72,224, 46,193,243, 23, 79, 63,124, -166, 78,155, 43,149,146, 43,250,245,128,146, 35,239,156,132,160,100,121, 23,158,129, 92,113,117,121,203, 41, 90,157, 94,216,178, -211, 67,245,168,166, 49,141,167, 80, 86, 47,172, 86,193,198, 58, 37, 36,249, 96,217,183,189, 92,122, 18, 98, 81,106, 99,180, 32, - 85,232, 57,147, 72,162, 54,195, 95, 36, 29, 64,149,191, 32, 33,135, 53, 99,104,175,206,138,106,217,237, 24,222, 81,213, 92, 84, - 33,235,188,211,208, 1, 41,164, 8, 40, 67,194, 29,217,177,117, 93, 80, 27, 77,201,141, 46,242, 68,213, 40,189,180,149,233,125, - 20,145,104,189,248,152,217,118,198, 49,137,144,253, 36,199, 45,202,129,186, 88,189,196,142,181, 8,133, 66,215, 43,133, 78,130, - 21, 4, 28,228,248,240, 49, 48, 48,206,194,119, 52, 89,112, 62,104, 10,145,178,139, 57,188, 98,218, 79,212, 53, 32,195,120,143, -112,242, 8,219,125,132,119, 22,171, 85,143,243,139, 99,156,223, 89,227, 15,254,151,255,147,254, 44, 69, 80,141, 18,198, 33, 88, - 84, 74, 5,132,190, 28, 14, 49, 53,228,249, 22, 63,250,222, 95,224,193, 59,239,226,221, 95,252,101, 60,120,248, 22,126,250,175, -222,199,246,118,187,196,101, 50,159, 91,194, 24,188, 55,186, 91, 20,119,199,126,123,131,105,191,195,229,203, 14,171,205, 6,231, - 23,119,176, 62, 26,209, 15, 3, 51,170,111,113,115,117,141,155,235,173, 98,125,133, 24, 23, 66, 32,135, 69, 8,216,111,119,120, -245,233, 43,156,216,128,205,131,187, 24, 78,143,145,231, 25,213,189,206, 61,247, 65, 14,242,202,106,117,122, 94, 60,135, 75, 92, -161,226,127,122,254, 57,218,243,134,240,145, 65,248, 11,122,101, 39, 52, 84, 0, 3, 60,198,205, 26,232, 70, 96, 53,128,232, 50, - 35,176,138, 64, 44, 48, 23, 3,222,189,186,198, 71, 51,225, 58,199,224,116,250,146, 34,219, 80,115,194, 60, 17,171,188, 31,123, -220, 92, 77,164, 88,103, 98, 23,233, 9, 10,226,204,171,159, 92,244,114,115, 22, 58,126, 36, 62,117,102, 2,159, 20,254, 86, 33, - 80, 66,137, 35,175,246,146, 89, 64, 35,233,138,224, 45,195, 73, 72,180,229,189,125, 13,188, 65, 40,226, 5, 87, 13, 52, 12, 67, -224,137,160, 81, 21,115,222,237, 57, 26,180, 48, 38,182, 2,178,207,231,162,151, 68, 84, 52,129,203,153,176,174,211,126,210,252, -108,129,130, 72, 48, 19,141,207,169,144,239,123,203,156,123, 74, 80,243,157, 99,252, 52, 21, 11, 37, 31, 94,184,141, 47, 34, 97, - 30, 64,201,114, 58, 21,209, 96, 37,241,243,147, 3,193,184,165, 16, 17,229,180, 10, 98,154, 36, 55, 54,125,111,151,168,104, 86, -111,135, 1, 62,244,228, 29, 15,129,221, 1, 65,149,211, 51,199, 11,183, 76,186,128, 20,103,234,202,173, 1, 74, 98,175, 53,141, -234,251, 97,131,208,175, 96, 92, 96,208, 75, 37, 12,171,101, 90, 31,168,227,142,251,200,171,170, 61,159,153, 52,197,132, 49,216, -239,147,194,189,248,170,166,243,194,210,231,233,250, 30,176, 6,133, 45,115, 34, 76,166,221, 54, 61,191, 53, 39, 22, 41,146,185, -173,240, 56,187,164, 25,181, 70, 6,164, 5, 14, 73,225, 56, 89, 88, 93,135, 88, 71, 63, 3,198,193, 91,163, 83, 68,103, 27,119, -249,230, 64,100,188, 36, 87,202,234,168, 52,206,194,104, 21, 45,211,101,157, 82, 97,150, 0, 79, 75,234, 98,153, 52,156,243,209, -248,238, 16,118, 73,102, 29, 1,145,242, 12, 74,201,180, 51,111, 88,178, 51, 74, 93, 8,156,206, 33,229, 4,231, 59,246,222,155, - 37,167,133,145,191,185, 20, 21, 24, 54, 48,120,233,223,255,173, 95,253,221,156,104,196,238,236, 1,133,136, 91,122,107, 12, 18, -251,186,105, 12,212, 56, 75,124,153,227, 23, 94,252, 11,188,198,170, 87, 81, 68, 8,237,181, 4, 53,207, 33, 22, 57, 87, 5, 57, -164, 20, 53,234,211, 48,173,170,239, 59, 86,139,202, 56,221,243,197, 71,113,117,125,231, 15, 70,189, 22, 33,116,228,193,229,180, -161,113,236, 57,141,140,236,114, 98, 99, 3, 11,111, 36, 46,211, 26,167, 98, 34,203,137, 62,173, 25,177,253,169, 74,150, 72, 70, - 84,184, 8,189, 46,167,140,105, 71, 41, 92,161,243, 26, 31,233,157,209,253,190, 4, 11,144, 15, 56, 49, 33, 47,171, 7,189, 31, - 6, 66,222,242, 69,145, 11, 17,172, 74,202,186, 71,175, 37,161, 11, 34, 88,108, 7,145,139, 75, 42,221,114, 24, 26,221, 57,170, - 74,211, 57, 93,141, 40,183, 24, 84, 68, 88,222,231, 75, 39, 87,106, 85,205,128,172, 50,104,186,210,241, 1,215,195,119,157,142, -137, 28,199,205, 54, 14,190,153,167, 9, 41, 70,214, 98,240,197,236,143, 96,199, 55,200, 17, 49,120,156,223, 57,194, 59,239, 61, -192,211, 79, 63,196, 7, 63,252, 1,143,235, 36,224,162,113,145, 34, 10, 93,210,122, 72,210, 86,227, 96, 25,176,226,117,218, 94, -227,249,211, 87,184,120,240, 38,222,126,239, 29,172,120, 90, 20,186, 14,227, 72,176, 26, 26, 55, 59, 18, 34,242, 69,223,245, 29, - 12,131,142, 66, 8,186,183,220,239,119,184,189,222, 98,154, 34,237,161, 87, 43,172, 54,107,172,214, 35,101, 31,100, 42,228, 98, -140,216,110,119,152,166, 25,183, 55,183,120,249,244, 18,223,253,227, 31,227,241,135, 95, 32,199,130,205,233, 6,171,187,231, 88, -157, 29,115,156, 34, 19, 4,217,151, 45,135,163,183, 22,119,206, 54,120,239,209, 5,126,241,221, 7,248,185,187, 15,240,243,235, - 11,108,110, 44,108,105,216, 34, 33, 46,110,119,156,161,199, 55,223,120, 7,253, 87, 87, 56,125,122, 9,179, 57, 6,206, 31, 2, -214, 98,254,243, 31,195,143, 43,124,249,254, 19,124,190,163, 98, 86, 84,212,212,137,115,103,157,178,242, 20,230, 41,106,200,133, -168,214,169,115, 46, 10, 39, 34,129, 79, 98, 97, 39, 41,172, 73,131, 48,107,183,154, 18,137,155, 44,150,224, 32,177,168,102, 73, -207,170,228, 69,119,236,150,145,239,130,224, 49,172,201,112, 94,197,150,149,243, 11,196,226, 36,118, 92, 73, 12, 91,160, 46,132, -205, 53,252,108,203,248,221,176, 93, 85,198,233,148,218, 55,161, 20, 42, 58,229,240,173, 44,136,181,220,185, 81,151, 20, 48,114, -204,106,232, 2,197,198, 98,129,105,197,148,232,239, 55,199,215,104,127,153, 67,106, 4, 62,179,136,189,140, 78, 65, 15, 65, 59, - 11, 47,130, 46,222,190,163, 51,108, 92,141,252, 46, 47, 98,174,156,242,223, 10, 82,226,207, 57, 83,180,179,247, 61,250, 97, 68, - 55,140,232,250,129,223,119,230,116, 48,119, 3, 45,179, 37, 54,233,174, 23,181,160, 22,218, 99,119,253,136,213,230, 4, 97, 88, -195,186, 0,195, 98, 45,193,111, 11,179,160,129,196,179,243, 28,233,179,172,242, 59,114,230, 69,229,169,101,101, 92,111, 91,162, - 97, 37,131, 60,231,140, 86,146,230, 85,104,156, 45,103,102,148,156,208,176,144, 43,201, 62, 72, 99,119, 77,162,179,158,232,106, -138,205,110, 75,224,149, 11,186,198, 52,188, 2, 32,218, 93, 85,161,168,172, 37, 12,167,117, 90,179, 48, 75, 52,246,186,102,245, -151,107,184,150, 88,192,121, 74,130, 70, 77,152, 36,158,138, 85, 84,118,190,202,204, 87, 40,167,103, 91, 27,111, 93, 89,224, 41, - 52, 84,186,172,151,204, 17,192,168,125, 81,238,150,198,213,239, 2,139, 50,112,255,206,111,252,242,239, 90,222,167, 90,101,161, - 27,141,220, 52,172, 70, 39,161, 80,101,213, 37, 94, 3, 7, 56,103,181,187,236,250,160,240,151, 42, 9,105, 60, 90,243, 12, 61, -144,164, 40,177, 14,177,163,158, 43,111,246,188,242, 31,160,235,123, 18,101, 57,143,194,225, 47,180, 47,174,138,142,205,137,201, -112,206, 50,203,217, 97, 24,123, 12, 67, 7,107, 23, 37,173, 88,155,186, 46, 32,229,170,169, 59,196, 68,103, 31,187,165, 4, 0, -171,128,139,229,207, 41, 7, 32,253, 89,168, 8,152,167,121,209, 18, 88,218, 81, 9,206, 81,148,147, 48,148, 72, 38, 15, 73,156, - 35,140,163,177,100,215,247,220,241,209, 40, 82, 98, 49, 83, 76,200,115, 66,232, 44,231,211, 71, 30,229,208,129,108,152,125, 13, - 22, 5,214, 3, 69,173,230,192,243, 69, 78,147, 19,192,119,244,114,202,133, 34, 18, 81,153, 36, 20,174, 18, 9,189, 91, 85,200, - 68, 89,192, 84,220,132,224, 52,178, 19, 44,234,147,201, 72,101, 42, 88,156,247,216,239,247, 68, 17, 75,244, 50, 12,103,223, 68, -204,116,137, 29, 29, 15,184,255,224, 12,247,238, 31,225,159,255, 95,255,152, 68,137, 34, 26,145,232, 66, 46, 88,132,153,208, 56, - 63, 94, 30,106,231,105,114,226, 68, 48,130,130,151, 79,159,162,193,227,252,222, 61, 60,120,235, 62,186,190,211, 2, 76, 52, 22, -150, 11,151, 16, 60, 50,251,129,229,207, 40,200, 80, 25,147,237,247,123,220, 94,223,224,242,242,154, 40,135,161, 67,223,247, 24, - 87, 35, 54, 71, 27,172, 55,107,138, 0, 46,130,128, 4,214,155, 1,102,232,240,249, 23, 47,240,163,159,252, 12, 83, 53,184,251, -230, 29,172,143,214,240,206, 80,209,215, 26, 76,227, 49, 53,219,122, 86, 99,135,177,243, 88,175, 7,156, 28,175,112,255, 98,131, -159,123,239, 77,124,231,189,183,241,203,119,223,194,119, 46,222,194,195,182,198,201, 28,240,246,241, 5, 30, 61,186,143,159,125, -241, 18, 63,121,255, 43, 92,126,122, 5,251,248, 75, 60,253,222, 7,248,111,255,251,223,195,151,207,175,241,170, 24, 84, 75,113, -181,153, 83,180,136,162,152,148, 63, 45, 33, 72, 18, 37,106, 84,111, 82,149,253, 14,254,220,165,187,150,220,121,201,208,206, 41, - 49,112,138,254,253, 60,209,142, 57,177, 30, 39,206, 51,119, 91,153, 47, 69,202, 81, 23, 97, 85,213,108, 0, 66, 42,247,195,160, -160, 37,107, 27,139, 81,161,103, 14,157, 97, 77, 9, 91,181, 20,237,200,165,195,165, 63,175, 97, 49, 91, 86,166, 67,201,153,109, -185,133, 39,107,139, 59, 7, 7,209,149,116, 74,226, 42, 45, 0, 0, 32, 0, 73, 68, 65, 84,160, 18,127, 62, 48, 69,206, 8,238, -152,215, 38,214,145, 85,112,187,221,179,248,118,225, 48,104,162,150,210,201, 14, 73,111, 77,227,175,244,226,145,145, 50, 63,143, -125,223, 99, 28, 7,158,126, 65,115,239, 41,100, 38, 31,132,194,200,250,173, 0, 53,163,235,105,186,212,179,189,212,251, 78,152, -128,124, 25,209, 42,163,230,130,105,154,249, 98,100, 13, 80,161,245,136,239, 6, 12,171, 35,132,126, 77, 78, 21, 23,212,249,228, -120,165, 65,164, 69,234, 78,167,253, 68, 65, 74, 73,114,213,137,148, 41,184, 89,192,242,232,222, 28, 8, 13,237, 65,182, 4, 41, -190, 91, 43,186,170, 44, 60,225, 20,178, 41, 64,231, 64, 74, 51,235,149,178, 22, 80, 46,116, 48, 54,104,144,140, 97,111,183,117, - 94,115,226, 45,163,206,219, 1,108, 75,154, 82,171,128, 62,206,179,224,103, 95, 62,175,122,192,209, 95,198,220,141,197,202, 85, - 83,225,150,176,155,162,255, 31,195,238, 25, 17,166,138,138, 93, 10,178,156,179,106, 77,180, 40,228,203, 95, 65,171,198, 28, 68, -163, 19,133, 79, 38,150,130, 56,167,213, 5, 89, 66,141, 49,240,214, 24,184,224, 56, 23, 61,195, 59,163,204,221, 97, 28,105,135, -155, 50,198,149,197,180,223,107, 5,106,173,227, 17, 48,121,248,122,254, 82, 68,189,222, 56, 85,204, 58,143,121, 63,209, 8, 47, - 21,218,177,113,245, 50,174, 89, 53, 89, 11,124, 8,216,222, 78,100, 17, 99,156, 31,137, 13, 88,200,151,201, 78, 38, 21, 73, 63, -244, 28,169,153,153,226,211, 16,122,199, 83, 2, 14,151,137, 9,195, 16, 20, 39, 72, 42,244,142,237, 47, 78, 87, 14,180, 63,163, - 75,121,158,146,162, 99,107,109,240, 93,143, 56, 71,205,180, 37, 29, 0, 93, 0,187,221,158,119, 88,150,128, 26, 76,134,179,150, -172, 46, 80, 48,193,114, 49,213,214,208, 13, 29,127, 97, 86, 67, 7,172, 49,176,161,131, 49, 22,105,142,154, 69, 61, 79,244, 32, -123,207,159,181, 49,172, 83,104,252,240, 23,125,120,114,206,236, 67,133,166, 58, 9,154, 80,210,221,172, 51, 11,183, 29, 11,162, -183,230,194, 33, 3, 96,133, 55,184, 11, 7, 31,240,132,170,165, 49, 23,253,211, 50,226,177, 53, 42, 10,115,169, 72,243,132, 24, -231,165, 75,171, 21,190, 63,129,237,143,128,219, 9, 93,231,177, 57, 26,241,224,173, 59,120,255, 7, 63,192,205,245, 37,239,243, -101,204,203, 59,249,148,208, 82, 68,215, 15,136, 51, 11, 45, 13, 17,246, 42,195, 25,188, 55,156,146,199, 81,149,166,225,233, 23, -159, 97,119,123,139,187,111, 60,192,157,251,247,113,126,247, 2, 87,175, 94,225,234,213, 53, 7,162, 48, 74, 54,101,126,217,100, -138,195, 66,164, 90, 85, 79, 96,120, 90,145,226, 30,159,125,122, 13,239, 29,134,113,133,163,227, 99, 12, 67,135,174,119, 24,198, - 1,231,173, 97, 98, 28,237,184, 25,112,191, 53,160,189,129,219,203, 61,174,190,216,226,167,127,243, 49,238, 62,186,143,245,186, - 71, 42, 13,101, 63,163,243, 22,142, 5, 54,173, 22,100, 25,229,214,130,150, 35,208, 42,130, 3,186, 85,135,163,245, 8,103, 13, -190,253,173,183, 80, 51, 29,154,174, 85,164,153,144,147,159,125,121,131,199, 95, 94,227,135, 63,252, 16,127,231,239,127, 11,143, -126,254, 17,208, 34,230, 57, 51,131,157, 38, 98,164, 2, 54,188, 23,109,172,197, 96,236,108,107, 74,152, 67, 89, 2, 71, 28,143, -238,101,114, 35,182, 76,209,181, 80,244,171,209,139, 50,120, 82,208, 35, 91,102, 2, 20,157, 49, 8,215,154, 58, 86,135, 52, 87, -102, 27, 36, 42, 56,107, 69,219, 1,206,209,101, 29,167,137, 97, 65, 89,195,105,104, 31, 13,198, 55,103,237,164,136,125,222,150, -103, 41, 12,200,160,213,159,100, 89, 72,183, 95,107,162, 41, 92,165,157,120, 8, 22, 41, 55,189,216,197,137,220,245,129,162, 99, -197,207,222,160,193, 80, 41, 38, 76,211, 68, 5, 60, 23, 29, 60, 35, 96,157, 66,213,235, 84,148,211, 98,169,210,110,144, 89,142, - 50,245,211, 14,158, 59, 71,253, 87, 25,235,243,132,177, 85, 44, 81,157,188,255, 13,221,168,145,169, 4,172,225,224,153,218, 14, - 2,182, 10,169,220, 57, 80,197,218,198, 35,244,202, 49,204, 27, 66,200,118, 61,171,199, 73,112,230, 67, 80,187,150, 53,203,119, -157, 51,165, 28,150,186,104, 2, 96,200,174, 76, 5,162,231,149, 6, 52,151,189, 85, 34,138, 82,254, 6,233,110,196,234, 44,157, -168,134, 64,153,162,211,186, 90, 34,173,106,217, 22,215,216, 99,214,224, 56, 57,178,146,142,137,155, 37, 81,191,147,252,221,113, - 90, 97, 56, 8,243,178, 42,130,147,244, 54, 74,125, 91,152, 29,114,153,194,100, 93,201,180,146, 89,191, 33, 49,192, 80,215, 79, - 67, 85, 70,125,107, 13,166, 57,206,216,240,188,190, 40,154, 52, 39,147,128,156, 51,156, 15,168,185,105, 1, 45,174,137,202,147, - 15, 35, 19,116, 99,201,198,204,116,211, 37,118,220, 0,197,242, 68,171, 17,251, 93,118, 94, 29,139,211,148,167,205,137, 83,227, - 56,176, 53, 45,113,206,177, 36, 19,177, 85,202, 24, 78, 29,179,232, 82,135, 97, 28,149,192,214,106, 67, 55,208,197,232,184,147, - 38, 42, 92,207, 95, 32,133, 16,144,223, 59,176, 48,161, 32,206, 17,125,223,107,101, 85,217, 82,214,208,208,117, 65, 15, 7,235, - 28,243,152, 13,127,185, 13,214, 19,158,177,239, 3, 74,174, 8, 1, 58,118,201,185,170, 82,211, 0, 52, 50,202,133, 30, 52,222, - 77,147,106,214, 32, 32,104,215, 43,170, 83, 26,149, 80, 22, 52, 37,129, 81, 49,144,102,130,230, 52,102, 56, 31,142,187,133,226, - 6, 88,140,171, 21, 29,142, 60,122, 68,107, 92,160, 44, 59,178,148, 18,239, 87, 11,230, 56,211,193,228,173,114,163,157,147,233, - 73, 92,126,142,136,213, 4, 41,235,229, 33,242,104,153,194, 78, 68, 12, 66,154, 8,167,132, 36,235, 72,216, 88, 88,225, 31,188, -103, 46, 61,237,250, 42, 91,222,156,247, 60, 62,165, 34,104, 98,113,164,105, 6,211, 52, 33,199,136,237,237, 13,210, 28, 85,160, -214,106,197,120,246, 54,226, 76, 58,130,245,186,195,197,221, 19,120, 87,240,195,239,254, 5,227,123,105, 34, 36, 19,140,170, 2, -191,130,105,191, 71,215,117,116, 32, 27,171,158,247,202, 33, 16, 66,222,107,188, 99,114,206, 98,123,123,133,233,163, 45,174, 94, -158,225,238,131,251, 56, 58, 61,195,201,217, 41,174, 46,175,137, 6,183,155,153, 34, 69, 47, 97,140, 73,225, 69, 2, 20, 9, 28, - 19, 44,163, 78, 65,146, 78,251, 29,246,187, 45, 90, 51, 56,187,115,142, 97,160,110,174,239, 7,108,142,142,112,126, 81, 48, 79, - 51, 39,248, 5, 92, 62,185,198,179,199, 95, 98,119,187,199, 91,239,189,133, 97,213, 99,246, 30, 31,126,240, 57,108, 41, 56, 63, - 89, 97, 53,120,120,222,179,230,148, 48,239, 38,181, 90,122, 11,100, 46,120,140, 15, 48,104,240,166,161, 76, 59,228, 2,132,213, - 72,254,234,253,132,235, 28,241,235,111,159, 97,154, 18, 46,238,157,161,190,122, 69,160,149,224,217, 74, 99,117,119,188,196, 37, - 83,225,102,141,133,101, 17,101,232,131, 98, 41,107, 94, 52, 40,149,233, 93, 36, 68,148, 48, 23,250,255, 89,217, 91,183, 5,135, -154, 98,212,131, 71, 46,117, 74,132,116, 42, 18, 85,173, 65, 74,232,134,129, 85,224,244,189,199,105,175, 29, 20,169,147, 43, 12, - 10,114,172, 76, 58, 46,234,106, 17,154,164,231,181, 94,201, 51, 92,232,121,125, 64,118, 40, 48, 74,218, 8,248,131, 21,196, 49, - 10,181,140,117, 36,149, 86, 77,130, 5,150,238, 95,224, 90,210,117,215, 82, 53, 96,131,138,243,124,176,143, 21,251,156,229,188, -128,178, 68,177,170, 56,208, 30, 80, 45, 43, 39,243, 5, 70,187, 46, 32, 45,113, 38, 40, 43, 95, 2,125, 32, 33, 84, 29,199, 79, -119,172, 77, 8,100, 9, 78,130,134,182, 40, 57, 34,197, 61, 74,140, 20, 3,203,209,203,181, 21, 56, 22,196,117,195, 26,174, 27, -152,109,110,150, 68, 49,111,224, 44,101, 94, 68,222,225,206,243, 76,161, 60, 62,112,200, 79,227, 21,173, 81,219,156,211,120,224, -166, 43, 77, 99,232,175,201,138, 71, 11, 53,179,196,199, 54, 14, 50,106, 48,156, 93,145, 56,109,212,145,242, 27, 64, 5, 65,211, -228,204,175, 60, 53,180,206,115,215,238,121,164,238,148,149,160, 32, 32,195,232,240, 38,185,134, 12, 59,106,130, 62,247,220,244, -212,197, 58,199,187,242,198,150, 96,152,166, 97, 61,218, 97,139, 29, 78, 86, 0,150,157,100,149,176,187,150, 11,236, 82, 10, 76, - 93, 68,206, 41, 38, 52,188, 54,180,214, 68, 57,153, 70, 21,182, 6, 22,221,185, 55,242,223, 55,106,166, 84,183,210, 26,124,140, -137,237, 36,149,171,240,170,106,242, 82, 40, 52, 1,161, 49,108,162, 28, 36,206,144,184, 14,156, 63, 44,128,251, 24, 19,156,247, -232, 24, 66, 98,140,213, 48,145,121, 79,138,226,190,239, 89,152, 21,208,230,132,152, 40, 1, 45,167,168, 59, 2,231, 60, 82,206, - 48, 49,161,235, 44, 60,227, 28,187, 62,168,245,206,240, 33,111, 88,169, 41,177,177,158,131, 42, 72,245, 76,187,187, 56,211,206, -199, 7,135,148,120,183,116, 80, 17, 27,190, 24,134,177, 67, 76,153, 11, 18,246, 76,242,248, 41,165,162,220, 98,170, 8, 25, 58, - 32,121,195,134,148,167,133,237,101, 50,166, 35, 33,155,103, 50, 22,121, 72,201, 26,216, 72,112,198, 94,201,253,118,143,121,138, -116, 48,181,130, 52, 79, 48, 7,169,121,178,155,163,174, 99, 17,246, 89, 35, 64, 24, 25,149, 51, 63,160, 35,152, 2, 88,133, 79, -202,119,142, 10,108, 32,155,139,248,244,217,255, 47, 54, 14, 83,155,254,127, 58, 23, 16,148,218,103,217, 82, 65,133, 89, 99,196, -103,206, 5,187,237, 45,166,221, 78, 71,230, 57, 87,116,227, 9,194,120,134,253,213, 14, 67,239,113,116,178,194, 27,143, 46,240, - 87,127,242, 71, 58, 17, 64, 99, 69,174, 15, 90, 60,201, 63, 90, 45,152,231,137, 85,180, 6, 37, 4, 56,235, 96, 28, 39,205,249, -160,233,113,212,173,177, 98,213, 86,220, 94, 95, 98,191,221,226,228,252, 12,167,119,232, 98,223, 28, 29,225,250,234, 10, 47,159, -191, 66,227,110, 65, 80,169,181, 90,189,196, 19,179,168, 37, 0, 72,246,250,161, 11, 72,153,192, 35, 87,175, 94,226, 18, 6,195, - 48,226,232,120,163,223,201,230,232, 8,235,205, 17, 0,224,233,227, 27, 60,127,252, 10,229,242, 22, 55,255,242, 35, 60,120,116, - 23,111, 60,186,192,183,127,229, 61,124,254,209, 23,248,232,147, 39,196,165, 7,217, 1, 79, 55, 61, 86,125,128,227,239, 37,115, -242, 94,227,157,116,227,212, 65, 99, 44, 12, 3,146, 58,239,240,229,245, 30,223,249,173,159,195,241,233, 41, 63,219, 1,155,227, - 13, 29, 40,220,189, 90,103,104,157, 83,151,113,112,156, 51,227, 72,173,102,104,215,202, 43, 26, 44,121, 7, 18,206,147, 83, 89, -248,217,192, 98,189, 49, 6,195, 56, 96,123,179, 39,107, 21,143, 81,197, 75, 75,108,139,204,151,118,164,131,211,121,228, 72,202, -229,213,209, 17,199, 19,103, 18, 77, 21,194, 52,215,202, 48,165, 86, 20,104, 35, 90, 29,235, 44, 91,178,232, 16, 36,138, 37,209, -187,208, 42,114,140, 60, 13, 99,114, 91,201, 0, 8,206, 34,145,175, 85, 70,234,134,166, 78,162, 69, 33, 61,143, 81, 70,124,107, -139,109,171,150,162, 62,108, 10,105, 90,166, 0, 58,198,133,100,166,151,215, 58,112, 17,176,106,167,199,217, 18,194,164, 39,113, -177,103,128,146, 57,208,144,152,133, 51,207,192,172,194,105,141,178, 34,164,181, 84,208, 36, 61,145,132,229, 20,129, 74,250,156, -121,154,248,253,151,130, 96,128,247, 1,195,138,246,231,178, 30, 53,206, 1,149,199,245,213,177,181,152, 4,193,243, 68, 43,149, - 6,139,148,139,174, 85, 75,165, 73,143,236,175, 89,247, 74, 83,145,102,212,115, 46, 5,123,112, 52,169, 96,157, 26,253,253,101, -111,221, 26, 95,242,156, 12,119, 0, 40,162,207,137, 52, 50, 50,149,244,161,231,239, 43,112,247, 42, 62,117, 7,227,137, 12, 10, - 99,248, 44,141, 76, 8,229,244, 54,235, 88,160, 6,158,157, 84, 6,214, 24, 6,117,149,133, 74, 41, 54, 57, 69,208, 22,190,131, - 2,101,138, 88, 94, 49,243, 14, 92, 28, 11,165, 2,165, 38, 61,199,170,228,138, 48,245, 78, 46,124,221,175,243, 36,215, 24, 10, - 60, 18, 39,135,177,242, 59, 25,133,111,169, 56, 85,146,227,254,189,127,253, 87,126, 87,186, 63, 25,169,211,225,209,180, 3, 52, -127,235, 97, 92,198, 3, 85, 5, 70,244,224, 67, 69,106,210,121, 75,181,183, 40,247,136,199, 78, 23,189,213,252,233, 90,168,154, -141,115, 84, 50, 90,227,135,156,176,130, 6, 48,158,133,118,158,199,227,162,192,165,203,211, 57,143, 97,236,209,117, 1, 93,231, -209,143, 29,119,178, 70,147,124,164, 99,148,244,181,121,166,176, 10,199,248,200, 82, 26, 86,171, 81, 45, 5,153,247, 79, 50,166, -241,206,115,248,141,140,221,219, 18, 18,193, 4, 33, 65,220, 54, 0,193, 59, 78, 76,178,146, 47, 67,107,128, 46,240,174,199, 81, -103, 92, 42,246,219, 61,251, 83, 13,230,253,142,246, 61,156,150,103,140,140,201, 41, 18,151,118,102,158,199,226,157,250,255, 29, - 95,204, 4,200,129,198,187, 18,244, 65,254, 59, 42,120, 74,202, 44,144,179,140,194, 36,203, 10, 97,169,141,218,237,104,228,117, -168,150, 55,252, 48,146,127, 54,206, 51,230,253, 14,243,180, 37,122, 94,202,170,248, 28,207,222, 67,179, 35,172, 5, 54, 71, 35, -222,124,120,129,206, 37,252,217, 63,253,127,184, 91, 98,178, 95,173,236,229, 60,220, 23,113,246, 76, 91, 14,200, 86, 43, 18, 63, -204, 98,195,163, 21, 71,211,238, 73,146,177, 36,252, 96,191,221,225,230,234,150,236,141, 67,143, 97,181,194,201,217, 49,125,230, -187,137, 3, 56, 26, 11, 3,205,242,243,216, 14, 35, 89,199,150,133,140, 82,157,203,207, 40, 37, 97,123,123,139, 56, 39,101, 51, -120, 79,120,209,219,235, 61, 46, 95, 76,176, 93, 7, 52, 96,119,187,199,180,139,232,214, 35,134,205, 10, 38, 71,204,215, 55,240, - 6,120,241,226, 6, 31,127,250, 12, 31,124,244, 37,174,110, 38,122,182,141, 65, 99,196,109,137,108, 89,146, 17, 55, 12, 92,232, - 97,187, 30,159,125,245, 2,191,244,155,223,192,201,217, 49, 86, 71, 27, 24, 99,112,241,224, 46, 95,104,150, 84,203, 50, 30, 45, -133,198,234, 88,244, 5,137, 47,107,171, 22, 46,114,118, 52, 44, 86,204,229, 93,134,142,235, 51, 11,154, 68,131, 35,145,205,133, -197, 98,120, 77, 24,181, 68,173, 86,182, 10,141,171, 17,227,106,212,181, 85,201, 17,211,110,143, 28, 35,217,210, 12, 40,191,187, - 86, 29, 21,139,232, 44,197, 89,125,192,153,193, 45,194, 87,207, 26,176,226, 56,126,149,247,247, 44,152,171, 12, 16,201, 41,113, - 60,187,213,103,223,121,139,129,117, 19, 36, 2,165,113,112,240, 12,131,202, 5,219,155, 91,204,243,172,236, 8, 42, 80,121, 39, -204,129, 52,154,202,198, 92,123,163, 81,179,149, 69, 84,237, 64, 33, 79,135,127,215,141, 24,199, 21, 66,215, 29,228, 62, 64,145, -171,133, 3,178,136, 88,201,241,195,128,250,255,201,193, 98, 85, 47, 99, 76,227,168,219, 91,196, 56, 75, 53, 7, 99, 42,186, 48, -160, 31,214,232,134, 21,172, 13,108,155, 50, 10,235, 18, 64,116,173,141, 41,153, 5,243,156, 56,196,202, 48, 40, 43,208, 51, 10, -199,247, 6, 91, 93,141, 89,132,101,173,177,119,158, 10,199, 28,105,229, 33,223, 9, 90,195, 60,207,124, 97, 85,166,172,241, 62, -219, 88, 37,172, 21,222,163, 91,223, 45, 83, 80,223,193,119, 3, 96,232,223,135,142,137,159,214, 49,199,132,126, 15,239, 44, 91, -217,202,129, 54,195,112,222, 57, 19,228,114,209,125, 53,173, 98,232,187, 37,254,124,230,149, 98, 36,155, 47,167,241, 73, 1, 68, - 66,222,142,167, 11,149,227,108,177, 48, 10,164, 48, 19,225, 29, 95,196, 57, 39, 14,255, 33,151,133,144,246,100, 79,111,140, 33, -170, 39, 79, 8,170, 68,203,242, 4, 85,196,143, 44,221,160,169,209,239,252,189,239,252,174, 84,116, 98, 77, 18,239,178,136, 27, -164, 50, 23, 92,159,140,129, 37,247,183,241, 95, 55,172,104,165, 0,129,133,149, 91,249, 34,151, 7, 87, 96, 39, 11, 0,131,233, - 74,214,146,120,131,171, 34,137,211, 51,150,168, 78, 52,238,246,232,250, 94, 31,108,169, 98, 59,246,196,246, 60, 14, 13,157,215, -113, 25,101,148, 83,167, 45,194,184,166, 99, 65, 67, 85, 95,160, 80,142,213,122, 80, 17,197,126, 71,185,218,228,197,116, 72,185, - 48,145,173,177,245,175,105, 66, 27, 96,224,185, 59,111,135,187,116, 30,191, 72, 5, 79,135, 62, 61,252,161,239,249, 50,181,124, -233, 68,164,121,194,238,230, 22,222, 45,148, 28,234,168, 34,219,236, 56,189,141,213,234,135, 69,151, 32, 79, 29,103, 33,107, 66, - 21, 11,253, 36,105, 14, 98,203, 10, 52, 98, 44,165,114,176,197,226,169,183, 34,228,145,244, 47,222, 71, 9, 66, 23, 77, 46,244, -136,253,110,194, 60,147,226,157,118,252, 2,168, 89, 97,115,247, 91,200,169, 96, 24, 60, 78,207, 54,120,251,221,251,248,222, 31, -253, 33,158, 62,249,130,255, 30,109,217,161,181, 37, 22, 87, 4, 66,242,176, 58, 31,120, 74,208,224,125,199, 47, 88, 57, 80, 21, - 47,202, 90,233,176,165,240, 76,124,112,223, 92,223,224,230,242, 86,211,239, 86,235, 53,142, 79,143, 80, 10,129,121, 50,171,218, - 15, 28,192, 26,190, 96, 14,196, 65,181,138,158, 33,243,200, 21,186,215,107,220, 33,238,119,100,225, 76, 83,193,237, 85,212,194, -213, 56,139,253,110,194,246,122,135,147,243, 99,108, 78,143, 80,230,136, 23, 63,123,142, 15,191,120,133,175,110,174,145,114,198, -202, 90, 92, 94,238,240,211,207,158,227,179, 39,175,112,115, 59,209, 25, 82, 89,147, 81,155,218,190,174, 47,111, 16, 7,224,222, -195, 83,206, 5,160,103,220,119, 3, 41,149,173,135,239,104, 45,230,216, 27, 46,239,167, 76,228, 26,219, 61,233, 25, 99,164,112, -112,200,145, 68,152, 68,121, 91, 34, 88,155,114,170,101,240,104, 88,148, 70,223, 11,133, 13, 65,247,225, 75,164, 37, 71, 84,194, -226,248,228,132, 97, 82,134, 35, 62,103,236,119, 59,214,237, 84, 69, 33, 19,235,221,106,167, 42, 5,151, 38, 26, 22, 26,169, 74, -246,120, 61, 60,179,216, 94, 71, 71, 35,184,224,163,201,195, 52, 69,104,237, 40,112, 18,198,205, 14,227, 72,107, 68,118,143, 88, -231, 88,151, 0,196, 41, 98,154, 38, 22,201, 22,198,173, 46,227,216, 82, 18,249,189,153,204, 70,147, 19, 6,212,212,124,176,127, -135,186,138, 26,159, 43,227,184,198,122,179, 65, 23,186, 3, 20, 47,148,180,150,242,172,238,150,174, 31,116,148,239, 24, 48, 99, -173, 87,202,153, 36,137,205,211,158, 38,104,109, 9, 25, 9,221,136, 97,181,134, 11,129,187, 75, 40,107, 66, 26, 11,185,152, 40, - 47, 62,145,197,185, 54,180,102,225, 24, 18, 37,194, 92,137,186,133,125,125, 5, 67, 59, 98,171,232, 84,162,103,154,101,151, 47, - 10,126, 97,230,139,248, 81,138, 73,144,123,106, 33,187,117,148,109,223,117,234,193,247,161,135,247,157, 2,138, 52,241,207, 26, -141,193,134, 89, 0, 72,162,164,215,169, 0,255,231,198, 76, 14, 58,171,179,146,245,208,202,193,119,153,244, 18,149,117, 96,229, -145, 68, 83, 1, 94, 83, 82,167, 20, 14,144, 78,250, 32,189,135,116, 73, 4, 93,210, 48, 34, 88, 84, 86,205, 27,137,226,229,113, -123,109,117, 17,116,182,198, 19,144,166, 58, 32,161,213,121, 34,125,121,196, 57, 46,201, 48,172,116, 53,198, 32,248,128,148, 19, -167,177,129, 48,167,134, 14,220,253,110,167, 48,131,140,132, 16, 58,234, 42,217,238, 68, 93,152, 87,133, 33, 89,217,188, 94,216, -100,143,242,232, 74, 69,148,192, 16, 22,142, 73, 69, 13,142, 0, 28, 6,138,234,236,248, 32,178,134, 58,118,121, 0,140, 53,232, -250, 94,109, 23,170, 48,181, 11,190,182, 50, 69,169,176,253,202,200,104,142,225, 59, 62,120,238,202, 26,230,253,172,213,170, 11, -129,246,110,181, 34, 55,122,233,187,158,166, 7, 53,147,224, 36, 59,199,240,141,196, 2,177,134, 97,236, 53, 77, 74, 44, 36,150, -131, 98,250,224,209, 15, 61, 11,130,136,229, 78,241,164, 59,148, 20, 49, 53,234, 42,101, 76, 74, 1, 41, 22,195, 48, 80, 92,173, - 4,187, 20,192,240,248,187, 31,122,148, 92,105, 37,196, 68, 59, 25,143,214, 82,152, 12,151, 85, 29,106,212,147,239, 15,210,178, - 10,144,233,251,149, 81,160, 85, 52,103,160,232,219,156, 81,106,227, 75,156, 14,176, 90, 18,103, 3,243,244,197, 89,108, 46,222, -225,196, 46,160,239, 3,238,191,121,134,155,151, 79,241,201, 7, 63,209, 72, 74,249,236, 11,239,225, 94,183, 21, 10, 58,184,242, - 51,215,193,112, 10,150,156,198,226, 29,150, 96, 26,226, 16, 4,254,158, 59, 61,112,196,114,183,223,237,113,117,249, 10, 71, 39, -167,184,123,255, 2,195,106,192,201,217, 9, 86,235, 21,174,175,174,113,123,125,131,218, 10,166, 45, 1, 56,200,110,216, 84,248, -104, 56,124, 36,167,204,162, 78,234,124, 67,215, 96, 77, 64, 45, 21,169, 69,212,153,128, 38,219,155,136,123,103, 35,166, 84,113, -187, 39,235, 95,105,192,237,245, 30,159,190,255, 51,124,253,231, 31,226,205,247, 30, 34, 77, 17,255,252,195,207,240, 17, 94,226, -172, 89,124,163,110, 16,188,195,233,233, 10,159,188,184,193,112,255, 4,143, 95,109,241,226,167, 95,225,226,244, 24, 15,238,108, -112,113,186,198,177,113,120,126,181,195, 55,127,251, 91,232, 58,161, 62,103, 76,211, 30, 49, 87,220,123,112,161,187, 94, 99, 28, - 3, 97, 58,205,158, 55,166, 50, 63,130,198,229,165, 84,152, 86,120,191,207,187, 66,158,106,137,157,138, 34,131,177,100,162,163, - 33,206,121, 33,166, 21,201, 4, 7,246,115, 6,172,225, 9, 3,189,223,221,176, 98, 1, 26,189,139, 37,205,136, 19,119,246,162, -110, 46, 5, 83, 76,176,142, 38, 70, 57,145,208, 76,237, 87, 92, 96,150, 76,150, 79,231, 45,140,115, 12,144,170, 72,137, 39,103, - 53,194,216, 78,149,241,114,156,210, 14,154,198,208,115, 76,240,129,138,116,103,169, 1, 1,219, 85, 67,231, 85, 12,188,168,150, - 41,146, 52,231,116, 96, 95,227, 78,142,255,115,140,123,110, 0,184,225, 97,204,182,181,139,245, 72,168,142,114,240, 91,182,101, - 73,134, 59,137, 2, 9, 0,229,188, 67,155, 10,175,120, 28,250,126,208, 61, 62,141,221, 59,101,137,103, 70, 76,203,254,118,158, -103,164, 20,117,100, 61,172, 54, 8,161,163,208,149, 12, 84, 43,185,228,204, 36, 55,141, 48,207,198, 32,205,228,246, 73,185, 50, -218,148,190, 5,211, 40,199,219,123,186,204,172, 39, 81,116,229,115,167,168, 24,204,146,127,188, 86,213, 3,213, 90, 97,106,214, -213, 69, 19, 5, 63,255,255,148, 42,122,160, 6,183,134, 10,137,192,197,142,117, 65,167, 20,214, 46,113,181,134,181, 2,200,226, -146,177, 76,245,204,154,186, 9, 43,247, 67, 61, 8,242, 17,183,130, 80,234, 10,255,247,153,215, 36, 73,197,112,180,238, 43,104, - 45,232,101, 46, 69, 39,105, 40, 22,183,137,156,171, 37, 39,182, 6, 47,110, 4,203, 29, 62,135,152,208,200,223, 52, 88, 27,180, -208, 16, 50,160, 17, 81, 50,154,146, 7, 27, 22,125, 88,227, 21,166,177, 6,190,213,198, 10,208,192,196,164,172,169, 68, 2,109, -240,172, 14,174, 21,218,181, 24, 99,128,213, 10,105,142,136, 28, 91,151, 51,145,183, 10, 39, 22,245, 67,207, 12,121,250,131,135, -224,153,201,222, 33,197,130,213,138, 4, 30,162, 72,175, 70,176,134,204,120,247,180, 27, 26,198,142, 50,221, 61, 22, 67, 63, 31, - 64, 50, 25,176, 46,112, 37,231,149,153,188, 4, 34, 52, 29, 77,144,208,170,233,232,177,178,242,190,235,233,231,230, 84,212,118, - 70, 93,137,103, 42, 87,212,157,105, 63,144, 82,183,212,138, 52, 71,197,176, 46, 76,244,160, 42, 80,177, 45,204,251, 61,255,249, - 27,243,166, 23, 11, 97,138, 19,226, 52,193,123, 32,199,120, 32, 32, 41, 26,205,216,245, 29,171, 93, 51,255,236,178, 84,201,153, -214, 32,170,180,101,133,176,248,203, 27, 31,234,105,142,232,134, 65,181, 8,206, 7,125, 16, 8,192, 33,207, 23,217,224,132, 61, - 95, 53,215,153, 32, 23,153,197,124,165, 84,228, 56,171, 55,147, 86, 47,196,157,119,190,199,120,252, 6, 82, 36,230,248,201,233, - 26,103,231, 27,252,254,255,246, 79,148,140,167,213,242,193,238, 80,192,128,196,196,110, 60,130,236,216,191, 95, 88,235, 80, 85, -141,188,144, 57,160,133, 40,141,216, 12,230,121,210, 40, 75,153, 42, 9, 58,244,197,179,175,112,123,115,141,245,230, 8,231, 23, -103, 44,118,235,209,221,237, 16,231,136,155,235, 91,196,152, 20, 83,106,141, 65,105,244,125,211, 40, 52,241,168,206,162,235, 58, -122, 30,157,131, 45, 25, 37, 55, 70, 81,210,239,122,188, 89, 97,200, 13,222, 69, 92,223, 78,164,107,112, 6,113, 63,227,201,167, - 79,241,181,111, 60,192,197,215,222,196,187, 15, 31,226,167,159,191,196,215,176,193,217,134,211,180,208,240, 34,237,241,159,254, -195,159,199,184, 26, 48,111, 35,158,127,117,139,199, 63,253, 10,223,255,248, 57,122,247, 18,103, 15,207,240, 91,247,142,185, 0, - 99,213, 47, 12,134,222, 33, 70, 18,120,205,115, 68,220,205,202,146,144,110,219, 7,199,126,121,143, 90, 19,198,193,171, 90,186, -200,161, 91, 43, 21,131,134, 46,210, 44,220,114,211,216, 53,225,144,145, 22, 2, 90,224,245, 88, 41, 56, 58, 89, 35,231,198,239, - 23,217,192,186,174, 67,205, 9,177, 16,250,120, 42, 25,173,102, 29,207, 19, 36,169,170,208,140,214, 91,153, 58,113, 46,204, 43, -255, 94,104,133, 60,199, 5, 12,142,138, 12, 60,162,139,155,208,155,149,119,146, 5,238, 32,151,192,121,139,188,139,220,217, 21, -114,113,180,197,242, 41, 44, 11,225,230,147,166, 32, 47,177,153, 92, 44, 75,248, 71, 83, 76,108,229, 62,108,153,148,113,192, 27, - 4,151, 3, 99, 96, 57,232,197,200, 4,212, 58,116,221,160,106,123, 58,191,104, 87, 77, 19, 16, 97,226,147,150, 69,220, 51,128, -208,243, 68, 47, 67,147, 18,128,152, 17,113,154, 40,230, 53, 4,140,171, 53, 66,232,185, 67, 44,220, 92,101,216, 38,120,211,172, - 35,122,162, 41, 22, 6,214,112, 35, 96, 0, 7,195, 6, 9,210,176,144, 20,111,121,191,196, 85, 84, 10, 83,210,106, 81,221,133, -128,169, 40,124,165,234, 72, 93, 20,232,106,248, 99, 92, 47,106,165,228, 72,107,185,105, 51,212,153, 43,132,140,115, 63,248, 29, - 5,139,245, 40,178,151,215, 48, 60,170,110, 5,154,213,113,152, 80, 73, 43, 0,186,192,141, 78,149,168, 43, 39,173,205,124,112, - 54, 45, 63, 35,103, 42, 24,229,179, 47,181, 46,182,208,214,212,234, 44,205, 11,145,228,150, 6,131,152, 38,118, 89,151,192,162, -212,164,251,122,185,248,133, 17, 47,211,204,162, 83, 89,168, 0,177, 84,154,126,121,227,224,169,250,118, 48, 40,106, 59,200,156, -147, 94,100,183, 9,122,249,173, 29, 84,197,190,187,221,193, 59, 15,116, 80,149, 94,156,211, 18, 26, 80,201,211, 61,104,183, 73, -157,193, 56,246,152,166,136,110, 32, 97,129,235,101,108,222, 33,206, 13,195,106, 64, 78, 17, 19,219,185,156,119,228, 71,175, 13, - 62,112, 8,131, 68,120, 6,238,250,157,213,220,244,174,239, 17, 60, 61,228, 41,209,133,157, 19,217,242,230, 57, 34,206, 25,199, -167, 27,242,188,119, 1, 48, 9,125, 31,244,195,139, 49, 81,166,186, 53, 24,198,158, 21,207, 17,165,208,152,125, 24, 7, 29,163, -151, 28,169, 51,182, 4,142,105, 13,216, 28,247,106,143,154,167, 72,190,117,176,133, 46,101,196, 84, 73, 28,215,104, 23, 93, 75, -134,105, 13,222, 1,115, 42,228, 41, 47, 36,174,145,120, 76, 82, 18, 47,152, 86, 99, 14,224, 19, 28,237, 74, 89,189,150, 4,135, -173, 32,103,192,176,221, 77, 42, 57, 17, 64, 26, 0,193, 19,125,203,241,254, 76,254,225,124, 64, 63,246, 60,178,178,186, 75,167, -206, 45,243,119, 77,163,178, 28,103,196,121,210, 75, 64,162, 62,131,177, 88,157,189, 67, 99, 58,215,112,124, 50,226,238,131, 83, -188,248,242,115,124,245,179, 79, 57,240,128, 57, 8, 56,200, 62, 86, 1, 74,211,204,111, 17,226, 89,179,140,139,237, 65,198,124, - 46, 11, 83, 92,198, 79,214, 58,141, 75,148,131,164,242, 33, 79,233, 76,164,194,158,246, 59, 34,201,189,122,133,243,139, 59,216, - 28,109,224,189,195,241,233, 49, 86,235, 53,177, 25, 74,198,246,118, 71,248,203,186, 68, 38,202, 14,215, 58, 11,103, 29,239, 94, - 19, 98,205, 8,190,227, 0, 6,102,222,123,139,110, 8,252,191,181,216,238,102,236,247, 51,114,105,184,190,220,226,203,207, 95, - 34,172, 2,190,243,235,223,194,243,231,151,120,119, 36, 84,177,239, 59, 92,237, 19,238,223, 57,199,241,233, 6,161,243, 56,187, -123,138,251,111, 95,224, 87,255,222, 55, 49,109, 19,126,246,217,115,172, 55, 3, 86,235, 21,237, 56, 29,173,157,106, 51,136, 49, -163,180, 45, 78,207, 79, 48,199, 12, 23, 2,233, 7,106, 37,160,148,181,184,189, 73, 4, 21,202, 5,185, 52,244,125,165,132, 54, -182, 5, 81,162, 91, 89, 66, 77, 44,117,115,161,243,200,169, 98, 88,209,138,141,214, 51, 85, 5,117,210, 65,239,183, 91, 56, 95, -152, 24, 72,162,159, 41,147, 71,122,158, 8, 33,220, 5,178, 39,194, 88, 13,125, 66, 51, 40,168,100,245,225,189,121,171, 36, 96, - 77,243,164, 99, 78, 33, 84, 86,186, 65,136, 84,199, 7, 92,100, 36, 44,101, 92,119,250,172, 59,103, 81,138,161,243, 75,216,236, -252, 79, 24, 33, 4,210,154, 49,198,200, 44,131, 5, 20, 51, 79, 51,143, 69,229,103,231,131,140,243,133, 68,215, 26, 93, 72,178, -206, 84,129, 21,175, 12,197,177,162, 57,243, 18,138, 84,155, 42,223, 75,149,105, 20, 77, 63, 66,232,120,138, 70, 1, 81, 41, 21, - 78, 73,244,175,121,157,141, 53,152,246, 51,246,251, 61, 10, 51,215,187,126, 68,215, 13,128, 37,187,175,156, 49, 64, 69, 99,206, - 6,157,155, 89, 45,206, 41, 37,238,200, 3, 53, 67,124,193,122, 7,148,108,212, 22,137,131,221,191,115,116,161,139,206,170, 72, -144,151, 33,205,132,243, 22, 37, 25, 85,216,151,106, 52,208,164, 29, 96, 85, 41,249, 50,240,234, 53, 48,170, 57, 44, 52, 78,118, -140, 80, 44,117, 83,127, 55,167,147,234,234,164,112, 52,170,192,173,218,193,196,128,138,200,164,133, 34,216, 97, 81, 75, 66,107, -137,118,232,198,104, 99,104,140, 91, 10,143,118,216,237, 47,246, 56, 97,187,148,131, 41,114,227,132, 77,253,115, 41,131,195,106, -227, 7, 84,205,187, 47,124,199, 8, 62,150, 16,176,141, 3,179, 2, 26, 68, 43,197, 19, 17, 44,214, 58,223, 24,154, 47, 92,224, - 86, 27,114,205, 74,211, 98,151, 20, 10,163, 83, 67, 71,201, 49,171,205,138,118,218, 0, 6,195, 15, 2,147,206,114, 38, 1, 86, -225, 93, 76, 63,244,220, 93, 2,153, 33, 32,206, 82, 39, 75,222,105,167,151, 78, 2,117,137, 18,119,153, 83, 65, 48,158,199,254, - 6,187,221,132,110,232, 89, 82, 73, 23,175,196,216,117,189,231, 10,220,115,124,104, 96,127,109, 81, 80, 73, 63, 16,144, 97,181, - 25,144, 34, 85, 63,158, 5, 96,251,219, 25,251,221, 12,112,136, 76,215, 17,240, 38,165,204, 59, 72, 2, 98, 84, 30,169, 27,235, - 48,172, 2, 87,139, 69, 81,173,149,217,192,181, 36, 88, 67,251, 72, 18,155, 84,142,104,156, 17,131, 99, 99, 6,141,124,186, 62, -144,240,134,211,170,100,124, 69,147, 14,131,220,170,170,224, 15, 71,156, 52,102,166,131,182,164,132, 61, 31,214, 66,154, 51, 10, -152,161,181,130, 97, 42,151, 60, 48,181, 53, 85,201,122,239,208, 13,129,215, 16,150,193, 46,150, 69,131, 12,190,168,146, 80, 21, -153, 65, 79,194,176, 16, 28, 82, 42,188, 19, 2,198,147, 55, 16,231,130,190,119, 24,199, 30, 71,199, 3,126,255,127,253, 19, 46, - 10,140,170, 78,155,238, 21, 13, 91, 72,172,238, 96,101,146, 32,202, 80, 17, 39,214,214, 16, 83, 84,123,209,225,216,191,177,248, - 72,160, 56, 20, 7, 27,144, 83, 70, 46, 21, 93, 32, 98, 94, 43,139,208, 45,198, 9, 79, 62,255, 12,195,106,141,211,243,115,108, -142,142, 48,142, 61,198,177, 71, 46, 29,214,235, 53,182,219, 45,166,253,132,171,171, 43,134, 61, 52, 74, 6, 3, 80, 27,193, 50, -196,167,236,157, 67, 78, 77,119,244,155, 85, 64,105, 22, 22, 1,166,208,243,220,121, 96,191, 79,136, 49,227,171,207,159,163, 6, -131,227,179, 13,126,243, 55,126, 14,253,203, 23, 24,142, 54, 8, 93,192, 71, 31, 63,195,123,239,222, 87,215, 7, 96,121,122,230, -113,116,214,225,219,119,142,121, 92, 76,221,112, 76,172,242,237, 60, 12, 35,151,135,177,199,229,203, 43,221,167,230,220,128,204, - 76, 6, 11, 76,211,164, 85,255,246, 54,234,225, 40, 64, 26,217, 69, 90,179, 64, 58,100,183,158, 98, 70,198, 18, 92, 33, 46, 4, -242,222, 71,178,160,165, 9, 37,206,216,207, 9, 41,205,244, 57, 29,112, 18,138,237,233,185,170,228,177,110,133,118,152,133,115, -216,169, 88,100, 21,127,206, 58,174, 46,220, 1,101,254,107,149,133,121, 48, 4,167, 18, 33,146,243,134,252,255, 28,167,107,148, -208, 85,153, 41, 17,225, 59,122,126,134,161,215,194, 55,206, 51, 74, 41, 24, 87, 43, 37,210,149,156, 89, 91, 81,249, 32, 93,104, -113,210,157,233,174,220, 28, 90, 7,249,103,131,254,250, 50,104, 90,252,208,222,119,232,250, 14,195, 56,240,138, 9,220,229, 50, - 3, 60,206, 58, 57, 20,189,136,236,152, 43,175, 67,100,194, 82,107,198,180,219,233,216,125,181, 62, 98,133,187,211,206, 88,126, - 87,131, 5, 21,157, 18,117,212,211, 52, 35,166,124,144,255,190,100,214, 55, 78,181, 36,192,139, 81,251, 42,125, 6, 21, 45, 91, -142,182,109, 48,108,197,106,181,162,114,115,151, 82, 82,129,115, 41,245,181,116, 58, 73, 42,115,222, 48,222,217,176,181,153,132, -220, 10, 69, 99,126, 59, 97,195,249,115,109,224, 11,154,188,241,165,144,160,173,182,165,171, 21, 93, 67,173, 52,157, 33, 91, 96, -211, 85, 47, 90, 65, 46,145,168,123, 45,235, 56,157, 0, 87,140,119,174,162, 54, 23, 32,204, 18,162, 35,160, 46,153,170, 80,191, -123, 96,231,145,221, 58,135,181,228,146, 89, 24,206,133,177,236,247,213,209, 99, 22,225,175,177,104, 16, 71,133,167,112, 27,235, -233, 12,183, 30, 96,104,151,151, 12,227,156,146,230,132, 75, 5, 66, 95, 80, 67,232,130,114,120, 69, 37, 15, 24,184,218, 48, 12, - 84,237,245, 67,143,105,154, 69,174,204,187,205,131, 10, 85,105,104, 69, 69, 34, 82,117, 81,210,147, 71,201,212, 61,207, 19,229, - 32,239,110, 19,123,199,151,184, 61,199,214, 27,107,161,214, 41,192,240,161, 71, 15,143,216,112,230, 57, 97, 92,217, 37,134, 84, -198,185,206,177,216, 46,163,235,185,227,205, 36,188, 51,173, 18,105,140,121,236,187, 29, 1, 38,154,166, 34,209, 3,213,117, 65, -173, 53,173,150, 3,204, 35,237, 88,231, 24,209,245, 30,113,154,209, 0,220, 92,239, 40, 4,193,130,171, 75,218,145,116, 67, 64, - 73, 21,183,215,123,108,111,182,204, 3, 96,203, 73,173,168,150, 10,169, 90,133,116, 69, 68, 46, 26, 95, 47,137, 66, 70,220, 10, - 33,200,146,104, 33, 65,121,167,224, 16, 17,123, 89,231,152,119, 79,145,174,206,123,140,171, 1,150, 99,114,199,177,199, 60,179, -165,133, 93, 0, 37, 37,222, 39,207,152,118, 91, 93, 55, 8,152,193, 58,226, 35, 31,157, 60, 68,107, 30,222, 23,172, 86, 61,238, -191,121,142, 47, 62,254, 16, 47,158, 63, 85,133,125, 41,204,197,103, 7,132,192, 45,212,101, 33,137, 73, 62,104,208,144, 40, 63, -209, 10,107, 60,232,165, 58,220, 45, 30,138, 61, 11, 91,152,196, 10,130,102, 16, 83, 84, 13,129,140,230,193,118,204,156, 34, 94, - 62,123,134,171,203, 43, 28,159, 28,227,248,228,152,129, 59,132,138, 29,198, 1,195,216,227,229,243,151,184,189,189, 85, 60,178, -101,154, 94, 49, 84, 61,207,211, 4, 31,122, 88, 75, 23,127, 8,148, 1,238,157,129, 67,143, 91,103,225,124, 70,231, 44,182, 59, -131, 23, 47,111,240,215,127,253, 24,255,224,223,254, 53,188,247,115, 15, 97,118,247,112,251,242, 26,190,101,204, 49,225,235,223, -122,132,113,189, 86, 60,229,162,123,177,186,167, 35, 91, 78, 83,183,135, 76, 64, 66,176,216,109,103,205, 52, 72,145,166, 95, 52, - 38,231,157, 94, 51,106, 63, 77, 57,241, 33, 3, 88,215, 48, 79, 84,172, 80,122, 27, 37, 12,130, 89,216, 98,131,115,206, 18, 45, - 47, 39, 37, 82,166, 24, 17,167, 25, 37, 71,236,111,175,177,223,222,178,203,128,154, 58,129,175,192, 52,228,152,209,117, 61,199, - 39, 47, 65, 72,180,183, 4,106, 53, 42,222,146,206,170,112,241, 74, 99, 93, 90, 13,202,179, 43, 41, 95,234,235,206,145,221, 32, -158,185,226, 76,211, 43, 92, 8,177, 94, 66, 46, 11,153,178,136, 32,201,168,152,173,169, 64,147,196,104, 89,133,106,114, 57,182, -195,247,129, 71,234, 42, 58, 46,133, 17,165,130, 31,231,194,150,236, 38,220,113,203,116,137, 59, 58, 99,145, 27,157,131, 11,207, -130,172,180,127,107,251,164,145,211,198, 16, 12,137, 86,169, 29,250, 97,133,110, 24, 17, 66, 98,208,139,186, 0, 0, 32, 0, 73, - 68, 65, 84, 71,248, 86,222,143, 27, 80,232,147,243, 66,166, 36,205,200, 60, 77,136,137,214, 17,198,122,242,132, 91,167,221,160, - 20,227, 48,162,143, 55, 7,205,133,227, 11, 19,250, 59,138,224,203, 52,114, 29,148, 34,141, 14, 3,121, 14, 11,124, 71,241,208, -142,129, 82, 93,215,233, 4, 74, 66, 83, 12, 91,183, 66, 23, 84,105,174,187,121,254,124,114, 74, 74,219,164,160, 54, 17, 83,114, -119, 93,203, 1,188,168,234,133, 78, 23,253, 2, 26,147,223,191, 45,189, 58,175, 86, 57, 9,131, 9,164, 70, 10,154, 3,198,125, -213,152,107,163, 83, 37,117,210, 72,240,140,177,186,102, 38,221, 19, 33,196,233,146,239, 8, 78,195, 56, 93,210,128,121, 56, 71, - 69,156, 21,126, 11, 23,200,162, 43,240, 56, 80, 27, 10,238,114,217,111, 26,246,120, 71,202, 17,231,253,180,115,244,176,133, 16, - 16,231, 9,181,145,117, 75,200, 65,230, 32, 58,144, 16,138, 22,182,167, 11,222, 51,209,172,201, 14,194, 18,119, 60, 39, 34, 63, -237,110, 8,198,146,230,153,132, 95,181,113,168, 7,141,247,123,235, 15,144,139,226, 81,244,154,139, 59,174, 7, 85,112, 90, 75, -233, 80, 50,106, 25,198, 94,127, 71,241,227,203, 30,132,146,214, 18,156,165, 29,126,138, 5,211,180, 96,252, 28,171, 95, 69,184, - 35,149,123,102,239,118, 41,149, 89,202,149, 31, 56,194,115, 78, 83,194,126, 59, 41, 99, 60, 39, 26,247,199,121,134,119,134,168, - 96,153, 18,174,210, 28, 53,102, 80,186,101,240,165,231, 44,165,226,201, 24,178,164, 68,214, 65,138,237,209, 34, 67,106, 11,103, -249,129, 70, 83, 27, 71,170,196, 67,111, 76,100,163,189, 89, 65,232,123,244, 67,135, 6,139,214,232,176,166,174,187,234,158, 80, -153,214,204,161, 55, 92,208,104,120,134, 28, 43,198, 99, 60,125,139,132,123,157,195,217,157, 13, 86,107,143, 63,251,254,191,128, -115, 65, 97, 19, 20, 93,104,151,195,212,242,190,219, 7,245,219, 23,126,200, 13,231, 13,163, 45,214,142, 82,234, 50, 78,231,221, -149, 30,182, 60,186, 82,177, 9, 11,232,100,135,159,213,206, 66, 34, 59,195,138, 93,233,250,115,154,241,226,217, 51,196,105,198, -230,248, 24,235,205, 74,173,148,227,106,196,233,217, 25,142, 78,142,145, 83,194,237,205,237, 1,234, 17, 26, 53, 26, 99, 68,223, - 19, 52,199,123,246,237, 50,230,113,227,248,251,247, 22, 22, 13, 47, 95, 84,252,228,229,103,248,229,167,239,225,237, 71,247, 48, -220,177,200, 51,117, 28,183,219, 9,103,247, 78, 49,172, 70,252,233, 63,249, 23, 48, 63,123,138,119,190,126, 15, 71,111,222,197, -120,247, 20,126, 51, 0, 33, 80,138, 32,139, 48,173,115,228,185, 14, 36, 82,157,247, 19,198,177,199,246,118, 15,120,199,136,212, -202,191,103,134, 99,171,167, 76,129,114, 46,232, 6,143,221,237,130, 38,110,181,146,237,136,139, 74,235, 0,239, 60,117,194, 60, - 25,234,123, 71,187,110,249,249, 14,136, 51, 17,201, 66, 8,164,136,231,201, 14, 44,144, 11, 37,247,148, 68,121,222,171,245,138, -124,234,170, 34, 94, 64, 46,206, 59,148, 20, 25, 44, 5, 30, 61, 38, 62, 28,249, 66, 41,158,138, 30, 35,133,206,146,174, 70,162, - 87,198,150, 56,154, 90,201, 52,202, 40,251,219,107,134,186,176,224, 9,229,188,184, 13, 8, 65, 75, 83,191,172,150,165,165, 67, -167,180,182,178,164,178, 29,220,186,238,240, 57, 99,241, 87, 99, 30,193, 48,140,140,220,118,138,133,165,255,109,211, 34, 52, 69, -217, 29, 91, 29, 87, 59, 62,119,157, 35,140,107, 44,153, 4,183, 51,209,215,134,113,141,113,181,194,176, 26,120, 10,118,192,231, -224,203, 19, 7,153,224,251,237,142, 92, 62,112, 8,125, 79, 36, 54, 21, 80,179,163,128,173,105,198, 58, 56, 35,170,113,190, 60, -217,170, 37,150, 65, 42,106,150,105, 47,185,165,100,170,193, 22, 53, 39, 1, 61, 94, 47, 54, 73,129,148,117, 67, 43,153, 11, 62, -175, 86, 63,195,192, 36,113,190,136,141, 88,178, 13, 12, 42,129,135, 88, 3, 65,228,186,133,181,178, 64, 50, 50, 26, 50, 12, 95, -236,149,139,205, 70, 65,109, 26,134,180, 56, 4,202, 18, 5, 92, 69,187,145,121, 74, 41,164, 69,191,228,125,212,194,231,144,123, - 77,123,165,201,141,218,157,147,187,197,113, 60, 45, 36,248, 72,154, 25, 13, 26, 90,224, 69,181, 37,214,183, 72, 97, 95,224,101, - 39, 44, 57,183, 6, 36, 8,146, 49, 71,142,153,147,102, 22,177,145, 0, 78,156,183,104,173,215, 23, 43,116,244, 35, 19,143,187, -201, 91,108,225, 44,239,218,152,217, 76,149, 71,129,109, 88, 24,241,173,161,166,134,213,102,196,246,182, 96, 92,175, 56,145, 43, -107, 55, 6, 35,252,227, 66, 62, 71, 22, 84,128, 21,239,210,181,144, 88, 76,108, 45, 85, 47, 88,234,248,104,100,100,249,239,215, -210, 18, 95, 40,234,200, 82,232, 16, 33,203, 74,197,176, 26,232,207, 90, 42, 13, 96, 88, 1, 63,101,138,167,156,118, 19,192,100, - 50, 81,110,199,153,246,237,183, 55,123, 90, 55,152,197,251, 89, 56, 99,189, 11, 22,105, 38, 43,208, 60, 77,186, 58,176,156,150, - 69, 48,152,140, 86, 50, 98, 93,114,211,157, 51, 60,134,131, 6, 17,128, 41, 76,224,239,110,218,239, 9, 74, 19, 60, 43, 47, 29, - 17,152, 64,105, 81,210,189,134,142, 70,126,150,157, 9, 34, 32, 4, 91, 63, 50, 79, 48, 26,135,125,148, 28,213,167,175, 44,246, -131,110,101, 60,190,143,218, 2, 12, 10,198, 85,143,139,123,167,248,217, 71,239, 99,123,115,163,201, 67,150, 71,115,130,199,116, -222,195,155, 37, 33,206,123,170,192, 67,224,234,221, 26,120,222,147,203,238, 93,248,211,203,104,211, 45, 74, 86, 44,246, 54,233, -198, 29,143, 29,193,132, 40,195,130, 23,210,147, 44,162, 20,185, 68,188,119,152,227,140,114,121,137,105, 63,161,235, 3,214, 71, -107,210,148,132,128,222, 15, 40, 57, 99,189,217, 32,167,132,221,118, 71,180, 69,126,135, 52,192,161, 86, 14, 5,241,152,166, 8, - 99, 51,106, 75,112,166,163,136,207,163, 53, 74,254, 18, 91,204,248,252,211,175,240, 15,254,209,175,162,243, 1,253,106, 64,203, - 5,115, 42,232,122,135, 63,253,189, 31,224,127,255, 63,254, 8,111,218, 30,127,242,253,199, 8,206, 97,240, 30,111,223, 59,194, -253,135,231,248,198,111,124, 19,221,209, 26,231,111,158, 99,191,155, 16,198,158,121,253, 30, 41, 77, 88,221, 57,193,213,171,235, - 37, 34, 82, 80,159,115, 70,228,105,147, 10,195,114,197,180, 37,164,176, 50,218,115,102, 65, 17,123,247,155,225, 44,233,134,102, - 42, 90, 49, 72,145,113,198,243, 12,231, 12, 82,161, 68,186, 92, 61,172,235, 48,142, 9,187,219, 43, 42,128, 44, 21,175, 52, 92, -172,240,118, 68,138,179,242, 43, 40, 49,174, 49,221,143,223,231, 16, 88,132,229, 81, 76, 86, 65,169, 0, 94,106,171,176,144,206, -152,213,197,220,217,165, 24,153,155,225, 20, 18,227,188,131,243, 1, 93,223,243,153, 66,157,190,144,241, 90,147, 70,128,227,150, - 69,225,175,214, 92, 18, 25, 31,218,193,156, 88,148,170,104, 95,172, 94,238,106,167,107,102,233, 26, 5,199,204, 60, 8,117,118, -112,186,164, 49,116, 54, 83, 56,146,101, 49,239, 50, 17,209,247, 21,148,246, 87, 57, 14, 54,116, 20,123,221, 15, 35,134,213,112, - 0, 23, 98,165, 54,175, 11,149, 78,214, 42,230, 24,169, 67,103,174, 70,109,150, 11, 15,163,107, 49, 58, 71, 44,224, 15, 0, 58, -173,176, 72,205,145, 42, 94,227,166,221,146, 97, 46,152,108,102, 3, 24,136, 7,221,243, 37, 70,205,155, 15, 29,163,183, 89, 55, -128,134, 28, 39,110,170,122, 77, 87,132, 88,202, 56,147,221, 88,182,204,113,224, 80,171,153,193, 48,212,144,160,113,103,126,144, -105, 78,236,131,130, 6, 38, 14, 34, 43,159, 69, 83,250,200, 98,195, 5,187, 83, 34,160, 78, 87,172, 65,213, 5, 38,251, 35,121, -165,106,216, 23, 47,171, 79,152,170,103, 83,171, 50,237, 1, 63,147,180, 15, 7,251,212, 1, 3,203, 5, 66, 43,149, 39,103,225, -181, 38,147,160, 97, 5,125,223,209, 89, 37,212, 71,122,128, 43,103, 21, 59,148, 42,145,114,188, 47,228, 67,187,106,186, 80, 91, -104, 82,220, 33, 78,181,193,115, 40, 72,138, 9,158, 95, 12, 17, 54, 85,246, 58,122, 99, 48, 12, 29, 99, 98, 61,106,129,130, 43, -100, 95,108,140,199,106,189,194,174, 85,244, 35,101, 86,199, 57, 34, 37,234, 36, 2, 3,109,148, 61, 45,233,105,153, 46,101,202, -248,181, 76,100,106, 60, 82,178,232,122,186,240, 99,204, 8, 93,207, 15, 52, 80,139,197,180,159,121,244,199, 40,193, 84,144,102, - 18,116, 12,227,138, 70, 31, 0, 92, 16,187, 7,217,211,124,240,152,247, 51, 92,112,136,172, 65,200,153,200, 87, 57, 87,236,119, - 51,249, 64,209,244,192,175, 37,241,248,216,161, 36, 71,153,238, 7,149,181, 86,228,104,168, 37,242,136,122, 65,162,138,240,205, - 90,207,201, 74, 5, 40, 13,134,125,241, 21,192,180, 79,116, 16, 86,242, 76,135,174,227,221, 53,184,155,183,170,146, 30, 86, 3, - 77, 84,120,207,104,217, 90, 71,123,159, 37,109, 40,231, 72,204,104,246, 0,103,158,234, 72, 72, 65,163, 91, 17,195,209, 91,168, -141,132,129, 39,167,107,120, 95,241,255,125,255, 47,137, 50, 40, 94,116, 20,182,232, 45, 17,135,130, 20,110, 92,185, 54, 52,160, -178,162,185, 84,152, 66, 10,127, 1,121,148,156, 97,189,231, 32,160,101,252, 14, 86,104, 87,214, 25, 80, 83,104, 52, 10,178,177, -127,183, 52, 40, 56,201, 57,191, 88,103,236, 34,254, 49,134, 62,211,253,126,143, 57,206,184,188,188, 66, 8, 30,125,223, 51,176, -200,163, 99,239,242,230,232,136,137,102, 17, 41, 70, 76,251, 61,166,253, 76, 8,228, 74, 36,183,126,232, 80, 42, 16, 92, 70,174, - 13,190,101,160, 38,220,220,236,224, 65,135,210,217,201, 6, 46,120,172,143, 70,188,124,242, 12,187, 52,227, 79,127,255, 7,120, -245,215,239,227, 63,251,198, 27, 56, 94, 15,136,197,226,102,151,241, 98,159,177,223,205,120,252,201, 83,252,248,243, 43, 92, 94, -239,208,245, 30,103,235, 30,119,239,110,240,224,141, 51,188,241,238, 27, 56,126,112, 7, 39, 39, 27, 78, 19, 52,186, 78, 73,145, - 21,219,124,129, 89,222, 75,211,187,208, 80, 38, 16, 31,220,112, 14,122, 35, 42,153,247, 6, 69,173, 68,102, 1, 35,149,202,218, - 15,154,144, 25,182,136, 85,134, 3, 81, 26,158, 71, 73,123, 13,150,129,201,168, 5,200,206,193, 22,143,156,136, 33,208,228, 2, -169,196,116,144,238, 86, 4,183, 18,231, 41, 44,123,101,112,163,194, 48,217, 76,162, 55,179,114,215,205, 65,182,185,165,174,136, - 47,139,218, 34,156, 11, 28,223, 90, 37,239,138, 4,195,188, 74,148, 60,117, 24,198,246,178, 7,154, 46,122,222,151,114,129, 97, - 96, 84, 64, 74,159,173, 93,194, 91, 44, 96,141,103,219,147,161,132, 76, 22,129,117,221,194,108, 87,103,143,149,162,115, 73,209, -172,173,194, 91, 33,192, 73,150, 65,213,245,146,115,196, 97,160, 41,145,227,142, 49, 47,152, 90,158,182, 22,246, 89,167,148, 40, -178,216, 8,205,206,113,212, 41,189, 11,173, 80,158,187,151, 11,175,113,164,115,161,253,117, 51, 11, 55, 95,248, 24, 20,170, 35, - 94,245,202, 96,177,162, 98, 50,195,231, 52,217,101,185,184,247,142,253,229,212,192,129, 85,227,161, 31,121,237,203,221,109,171, -176, 77,152,255, 84,116,150, 82, 80, 82,228, 51, 32,171, 37,205,170, 69, 80, 82,254, 72,125, 79, 79, 49, 61,215,214,100,237,166, - 15,195,118, 68,117,224, 37, 88, 5,109,233,170,205, 18,242, 98,248, 66, 23, 10, 99,213,188,116, 0,112, 48,246,245, 64, 24,109, - 58,184,147, 23,152, 78, 45, 77,195,167,234,193,250,103,113, 43, 56,117,113,145,238,165, 59,136, 59,110,204,138,233,130,138, 49, - 14,149,135,242, 27,121,238,218,104, 39,235, 20,120, 34,226, 54,107,128,213,122,228,189,138,193,236,102, 37,227,180, 70, 23,136, - 96, 59, 91,173,116,169,134,192, 66, 38,161, 62,209,216,210,245,129,199,229,164,118,164,241, 54, 85,231,193,152,215, 32, 22,212, -169, 46,217,216,186,135,182, 52,218,107,169,192,122, 26,199, 81,194, 82, 83,114,148, 49,175,143,230, 4,150, 67,182,188, 2, 99, -129,113, 61,144,202,181, 53,132,206, 41,200, 33,140,129, 59,225,153, 5,134, 21,145,199,244,180, 87,161, 60,140,121,206, 52, 54, - 67,195,188,219, 19,115,152, 57,213,214, 52,250,162,141,193,126, 63,163,164,196,251, 55,234,218,115,206, 90, 29, 82, 88,137,196, - 30,210, 62,153,210,150,168, 48,244,204,235,174,149,198, 48,206, 56,250,107, 69,114,145,137,238,215,245, 61,143,236, 12,154,161, -196,177, 48,244, 74,187,115, 7,233, 89,206,187,229, 37,225,234, 55,206, 51,143,103, 73, 23,145,152,189, 79,241,128, 52, 94,234, -143,238,192,117, 35,218,156,176, 90, 15,184,184,127,130,143,127,252, 67,164, 24, 89, 4,211, 20,226, 99, 61, 85,252,198, 46, 94, - 81,203, 40, 86, 47,160, 27,177,253, 85,201, 31, 22,210, 92,227,188,249, 3,117,169,142, 66, 25,240, 97,205,235, 73, 86,178,253, - 51, 75,184, 68,101,145,168, 83,222,124, 59,216,131, 58, 86, 73, 83,183,148,226,140, 24, 35,110,174, 34,199, 98,174, 48,174, 86, - 56, 62,222,192,121, 79,154,144, 82, 49,140, 3,188,163,148, 64, 52,224,249,231,215,132, 65, 30,137,157,111,205, 76, 89, 0,219, - 27,248,235,151,200,187, 9,215, 79,159,193,195, 98, 61,116, 88,141, 1,206, 26,244,101,194,116,121,137,109,189, 65,253,232, 51, -252,155,223,190, 7,164,130,218, 44,186,206,225, 4, 6, 71,235, 30,253,216,225,238,183, 30, 0, 71, 71, 84,132,111,111,113,245, -242, 10,207, 31, 63,195,143,254,240, 99,252,193, 63,158,208, 13, 3,126,231, 63,255,143,240,253, 63,253, 1,198,163, 17,119,206, - 86, 56, 61, 93,209,244,107, 28, 88,108, 4, 52,107,224,123, 18,222,208, 58,169, 96,189,233,145, 82, 68, 41, 36,122,116,182, 98, -222, 39, 56,103, 16,186,158, 53, 36,149,247,145,148, 87, 95, 12,185,105, 10,219,176, 80, 43,121,210,179, 69,215,143,136,141,148, -197,173, 70, 77,228, 43,217, 34,115,215, 38,221,172, 53, 80,193, 35,137,194, 28, 39,178, 81,250, 86, 65, 62, 8, 18,225,131, 22, - 70,159,167,146, 11,235, 88, 44, 83,208, 50,208, 14,162,138,205, 18, 86, 84, 24, 48, 35,250, 14,192, 34,116, 28,201,220, 56, 39, -130,215, 22, 96, 91,173, 42,239, 43,141,210, 77, 99,240, 82, 17, 70, 43, 53, 28,138,109,199,178,111,111, 7,123,248, 16,122, 30, - 53,251, 69,245,222,170, 78, 44, 32,221, 35,133,250, 81,209, 41,180,180,214,144,203, 82, 60,132,208,193,187,128, 97, 53,178, 37, -213,235,115, 44, 68, 76,178, 15, 6, 78,127, 44,152,166,137,156, 56,205,162,227, 48, 23,233,226, 1,238,240,173, 67,207,147, 12, - 41, 52,104,242,102, 25,175, 76, 29,101,102,177,162, 82, 3,185,160,170, 2, 13,170, 50,117, 21, 26,158,209,243,219, 28, 80, 33, -101,205,235,217,155, 46,211, 3,137,207, 22,123,173,166,111, 50,223,159, 4,148, 60, 9,104, 85,215, 33, 36,206, 44,186,190,164, - 66,180,192, 32,243, 56,221,170,207, 93, 46, 71, 57, 15, 32,177,201,198,192, 66,244, 18,208, 21, 2, 12,255,222, 52,118,209, 73, -142,226, 94, 15,114,228,141, 56,101,242,130,195,150,123,181, 48, 73, 85, 68,221,134,155, 26,104,172,106,125, 45, 75, 93, 82, 37, - 91,109, 44, 42,174,156, 13, 33, 81,117, 86,188,232, 36, 60,145,236,234,204,158, 81, 99, 44,230, 73,130, 48, 22,139, 84,109, 64, -224,174, 89, 58,190, 14, 64,140, 81,247, 79,180,195,170,186,207,241, 33, 48,161,138, 20,211, 49,102,172, 55,180,252, 87,111,187, -163, 7,136,130, 95,232,195,219,239, 19, 54, 71,158, 71,110,128,243, 84,173,251,209,235,101,100,141,133,119, 22,177, 85, 98,106, - 51, 15,222,121,171,227,226,126,236,245, 18, 72,169,106, 21,220, 98,211, 23,139, 46, 32,160,168, 56,176,113,117, 13,182, 51, 65, -131, 32,172, 53,244,251,194,160,236,103,250,157,120,242, 48,239,118,140,127, 12,132, 26,172, 65, 47, 17, 1,218, 84, 78, 93,170, -149,180, 8,158, 63,123, 99,172, 62,136,206,129,187,124, 46,188,184,155,202,205,168,103,155,124,180,203, 14,210,121, 18,121,133, - 16,144, 75, 37,132, 98, 63,114, 53, 23, 84,176, 38, 23,183,236, 98,105,116,196, 15,174,105,216,239,118, 92,113, 39,221, 3, 74, - 23, 44, 7,183,177, 14,171,211, 71, 72,115,198, 48, 4,156, 95, 28,195,180,136, 15,126,244, 55,250,146, 84, 14,110,232,254,127, -170,222,236,215,182,244,186,238, 27, 95,183,214,218,251,116,247,214,189,117,171, 35, 89, 36,139,173, 68,145,161, 8, 65,162, 77, - 88,138, 19, 3, 70, 2,219, 65,222,242,144, 39,191,230, 15,202, 91, 16,228,193, 48, 2, 4,137, 19, 36,113, 12,199,129,109, 82, -164, 40, 82,148, 68, 81,165,106,216, 85,145,172, 42,214,109,207, 57,123,175,181,190, 46, 15,115,204,185,246, 37, 4,148, 88,188, -205, 57,251,172,245,125,179, 25,227, 55,134,225, 36, 91, 32,145, 51, 16, 78,108, 34,206,128, 51,237,228, 5, 83,166,182,228,110, -111, 59,169,156,139,133, 45,216,115, 73, 92,108, 37,126,216,112,159, 28,117,234,203,100,214, 18,142,170,229,165, 75,246,125,233, -222,189,181,130,227,225,200, 29,121,194,179,167, 79,112, 60,220, 98, 62, 28,112,117,231, 18,206, 7,140,227,128,148, 18,246,231, -137,122,142, 21,251,115,217, 43,230,181, 97,154, 34,246, 83, 68,184,126,132,240,236, 35, 20,231,145,107,199,135, 79,111,112,134, - 9, 95,248,220, 43,184, 28, 58, 14,143,175, 17,158, 62,193, 3, 20,252,243,255,228,203,120, 97, 2, 18, 26,234, 42, 25,213, 46, - 4,248, 36,251,222,118,117,142,178, 59,195, 68, 94,248,112,247, 10,211,157, 43,220, 45, 43, 94,191, 72,168, 93, 46,200, 79,156, - 71,220,121, 48,224,241,111, 31,226,248,236, 17,214,245, 37, 60,185,158,241,240,233, 1,183,115,193,179,195,130, 37, 55,124,235, - 31,127, 5,247, 94,186,162, 88,172, 97, 62, 10, 45, 45,175,114, 80,122, 22,103, 10, 82,146,110, 86,242,208,203,186,162,100,160, -228,133,221, 17,187,120, 47,233,102,243,220,208, 91, 68,136, 35, 90,157, 81,248,185, 58, 4,148, 60,195,187, 32, 29,187, 3, 66, - 26, 76, 15, 1,120,194, 55, 4, 73,171,185,217,112,129, 7,185,236, 64, 53,143, 29,102, 61,234,166, 8,246, 74,244, 51,245, 52, - 3, 98,104,199, 27,152,165,158,168, 67,152,231,138, 52,130,225, 71,163,156,103,107,222,112,196, 69,114, 49,100, 37,185,121,151, -213,153,233,221,134, 4, 53,108, 52,247,224,186,218,210,169,155, 66, 97,198,105, 34,219,160,219, 37, 47,227,100,125,190, 29,221, - 32, 50, 29,136, 20,225,229, 82,237, 29, 75,113, 32, 98, 54,218,138, 78,215,116,240,114, 37,117,159,144, 25, 98,116,156,103,220, - 92, 95, 11, 6,119,220,163,148, 46,202,115,120,187,128, 84, 95, 37,255,155,138,222,200,224,144, 17,221, 22,163,205, 9,138, 88, - 82,201, 60, 47,133, 68,182, 78,196, 43,211, 52,169,240,215,253,190,140,237, 69, 15,148,134,209, 38, 21,165,138,104, 83, 34,167, -157,164,187,145, 36,216, 72,116, 68,111,210,165, 67,224, 73,218,173,251,176,173,104,132,117, 80, 24, 12,212,108, 76,174, 46, 33, -237,202,213, 97, 35,103, 67, 39,107,110,203,104, 7, 39, 19,142, 77, 85, 33, 81, 78, 73,171,202, 96,151, 12,130,141, 19,111, 14, - 9, 77, 45,212,136,159,222, 4,208,227, 28,130,231, 61,210,100, 53, 45,137,120, 91, 67,173,233,163,186, 62,150,130, 86, 44,191, -154,135, 18, 3,247,208,141, 42, 72,223,165,106, 90,230,213, 0,247,178, 71,151, 31,158,118, 46,138, 47, 84,251,148, 74,252,163, - 38,179, 13, 3,128,204,203, 59,158,116, 66,222, 84,160, 82,149,110,234,234,105, 26, 49, 47,153,157, 79,130,191, 56, 67, 45, 18, - 56,115,115,125,139,148,228,162,222,157,193, 46,189, 52, 4,203, 43, 78,220, 45,109, 35,106, 29,227, 52,219, 59, 13,100,112,203, -191,215, 15, 76,132, 97,146,204, 36,221,226, 74,209, 90,136,204, 22, 55,102,122,227,136, 94, 58, 87, 21, 65, 29, 15, 43, 74,109, -146, 83,204, 17,113,171, 5,105, 24,248,123, 58,234, 10, 75, 13, 66,127, 62,121, 78, 65, 10,133, 15,149,140,241, 58,177, 14,253, -196, 3, 92, 44, 23, 88,109, 45,122,128,218, 75, 18,156,253,220, 92,237,200, 14,162, 58,143,194, 30, 72,156,178,232,101,238, 52, - 80,226, 36,144, 66, 29, 7,243,241, 40, 94,123,194,136, 42, 95, 62,245,245,251, 32, 5,222,238,234, 1, 66, 58,131,111, 13,231, -231, 19,238, 63,184,196, 91,127,249, 61,162, 31, 55,181, 54,156, 90, 85, 0, 16, 48,162, 99,204,222, 29,170,211,253,183,135,103, -188,108,173,133, 40, 70,230,212,115, 82,209, 56, 33,144, 28,251,186,101, 87, 83,125, 45,133, 82, 49,165, 41,156,131,111, 64,247, -157,106,240,108, 59, 79,157,248,168, 48,197,242,213,169,129, 88,150,249,196, 10, 84,137,208,236, 56, 28,110, 80,139,172, 56,174, -238,220,193, 56, 70,198,195, 54, 12,211, 0,239, 14,124, 73, 43,230,235, 25, 83,185,198,148,111, 17,119, 59,172,213,225,186,207, -120,218, 10, 62,247,210, 43,248,202,151, 94, 3,142, 43,250,188, 96,125,122, 0,114,193,189,203, 17, 67,116,136, 45,227,208,129, -247, 63, 62,224,221,135,207,240,184, 0,135,210,113,219, 62,194,189, 31,188,135,207,191,126, 31,127,240,181,215,241,234, 43,119, - 48,238,119,168,209,131, 10, 10,132, 49, 33,185,134, 59, 23, 59,236,242,130, 97, 63,226,226, 43,159, 64,129,199,237,188,162, 49, -175,250,209,227, 27,124, 60,120,180,188, 10, 56,137,211, 46,143,138, 24,153, 76, 24, 4, 4,211,106, 70, 41,142,209,154, 44,254, - 25, 30,226,156, 94, 48, 34,226,170,101,229, 51, 41,154,150,188,122,164, 97, 66,171, 51,208, 35, 85,219, 13,165,102, 68,229,234, -183,134, 52,142,114,128,114,108,190, 46,194,223, 87, 60,166,247, 17,185, 22, 30,199,116, 95,148, 45, 21,204,241,210,219,248,243, - 5,128, 96, 81, 69,239, 36, 93,127, 36, 13,173,119,113, 5,228, 53, 75,114, 89, 74, 2, 22, 98,110,124, 71, 55,212,234, 41, 44, -201, 25,155, 91, 58,118,239,229, 34, 82,129,149, 83,119, 7, 69,156,234,167, 7,164,179, 78,195,184,133, 51,113,218,151,248,126, -245,147,231, 92,225, 46, 58,106,205,165,108, 99,253,224, 49,142, 19, 82, 74,219,250,194, 68,200,153,130, 49,201,172,207,204,126, -191,189, 57,224,246,112,195,100,190, 17,206,241, 29, 8,138, 1,230, 90,198, 38,179,221, 10,164, 76, 48, 87,101, 46,253,169, 19, - 73, 59,215, 90,132,223,222,154,232, 52, 68,211, 32,120,106,245,124, 55,238,227, 11, 17,220,146,219, 49, 42, 68,119, 59, 99,108, -229, 82,184, 94,203, 39,121, 24,153, 19,159, 42,137,110, 0,245, 3,154,142, 82,196, 58,140, 74, 81, 99, 99,163,218, 54,248, 11, -241,217,202,244,240,110,131, 4,193, 72,128,180,243,241, 66,119,222, 89,134,249,134, 63,151, 19, 45, 70,218,155, 37,234,144, 62, -115,111,171, 31, 75,132,236, 98,137,141,180,166, 53,238,203,213,226, 39,211, 94,152, 6, 73,156, 89,201, 52, 31,170,113, 19, 38, -131,156, 89, 17,206,195, 97, 35,179,233,216, 68,198, 78,253, 57, 85,124,107,221,246,236, 34,173,247, 54,106, 17,220,170, 23,175, - 58,119,112,242, 82,104,226,149,127,110,156,169, 35, 53,181,133,105,231, 54,142,131,141, 49, 23, 39, 29, 91,168, 17,227, 52, 9, - 12,164,169, 15,179,194,119,111,246,167,113, 28, 49, 76,201,162, 52,245, 18,137, 41,201,127,247,158,149,173,136, 19,214,121, 21, -177, 21, 85,212,211,126, 20,237,138, 99,204, 42,154,249,187, 59,243,108,197, 75, 75,155,143,231,216,104, 24,140,243, 61,207,171, -252, 80,104,167,242, 62, 88,222,113, 43, 89,138,130, 78, 32, 66,107, 50, 18,175, 5,205, 9,239,183,183, 77,128, 99, 35, 97, 11, - 50,145,145,188, 39,233,170, 17, 40,161,197, 81, 39,188, 66,237,106,146,202, 37,223,171,239, 25,189,201, 24, 83,243,174, 67,220, -126, 6, 93,160,110,226,131,165,186,184,150, 38, 23, 99,149,213, 64,163,128, 67,172,116, 50,217,170,172, 74,125, 8,216, 93,125, - 2,189, 53, 12, 67,192,229,213, 25,202,114,131,159,190,249,183, 39,160, 28,108,197, 95,107,128,247, 76,119,210,110,187, 90, 71, - 97, 65, 6, 4,138,232,101,176,165, 97,193, 62, 35,121, 22,250, 9,241,169,161, 48,133,111,203,207,110,118,209,200,231,209, 68, -229,111,200, 78,229, 48,104,119, 9,243, 62,231, 44,113,195,157, 97, 50, 96,222,188, 82,203,130,247,104, 77, 14,232,227, 65,248, -253,103,231,103,216,237, 38,164, 52, 96, 72, 17,117, 93,209, 50, 16, 92,195, 24, 39,248,222, 16, 82, 66,244,128, 75, 17,175,222, -127, 9,127,244,247,127, 23, 15,238, 95,160, 30,102,220,126,244, 4, 1,210,221, 58,239, 48, 47, 11,254,244,237, 71,248,139, 15, -158,225, 73, 7,188, 11,136, 20, 48,117, 0, 31, 92, 47,120,239, 47,127,137,239,253,228,215,248,234, 27, 15,240,199, 95,123, 13, - 15, 82, 4,206, 70, 72,171,238, 48,207, 43,194,152,196, 29, 81, 42,234,211,103,240,247,239, 99,168, 13,240, 1,117, 93,241,242, -139, 23,184,153,103,226, 88,133,207, 93,214,140,152, 28,218, 42,124,234,238,153, 26, 5,229,184,203,225, 42,142, 65, 71, 37,182, -144, 17,129,193,200,134,181, 10,247, 97,153,143, 2,216,104, 3,134,233, 2,243,225,153, 89, 66,229,240, 47,168, 33, 34, 36,122, -121,121,209,168, 96, 76, 66, 92,188,117, 42,161, 69,179, 67,170,102,179, 54,136, 46, 72,227,127,187,166,207,245, 77, 23,196, 3, - 53, 13,131,100, 83,248,128,188, 86,219,131,167, 33,145,164, 73, 85,119,109,124, 39,138,233, 46, 60,213,234, 37,175,252, 26,229, -162, 85, 23,132,106, 77,132,105,225, 55, 6, 3,109, 92, 14,154,109, 47,197,254, 56, 77,162,255, 33, 40,199, 57, 65,213,110,150, - 58, 24,107,223,187, 0,120, 78,229,216, 81, 11,251,221,111,133, 47,121,252,242,123,154,129,135, 90,107,184,126,118,141,101, 89, - 4, 99,205, 11, 92,169,140,224,136, 57, 80,185,238,253,166, 48, 87, 27,169, 34,166,205,106,235, 3, 19,252,156, 89,216, 10,173, -135, 82,224, 78, 38,104,221, 0, 54, 30,173, 10,141, 79,168,113,194,116,215,220,120,157,210,169,251, 69,166,136,205,118,244,173, - 84,184, 94,236, 50,215, 56, 90,130, 89,165, 1,170,155,104,205, 59,181, 76, 90,162,203, 70,248,235, 27,129, 83, 39, 61, 26, 38, -165, 22,111, 89,251,184,147,127, 7,134,196,208, 1,208,182, 12, 1, 93, 41,107,175,191,201,119, 59, 11,166,102,169,117,222, 7, -123, 34,244, 12,215,224, 44, 45, 80,172, 96, 34,215, 64,223, 7, 41, 28, 58, 82, 26, 40,180,115,136, 3, 47,239, 82,152, 94,214, - 56, 82,200,197,172, 20, 50, 14,146,145,102, 72, 81, 62, 40, 95, 81,138,183, 3,123, 93, 51,197, 30, 1, 49, 4,212, 32, 59,244, -204, 63, 71, 59, 54,149, 60,231, 92,196,191, 75, 24, 70,171, 21,185, 3,227,228, 25, 9,200,189,106, 41, 8,177, 99,119,230, 76, -113, 93,178,188,196,162, 4,109, 72,105, 27,117,233, 14,125, 24, 5,179,169, 15, 94,226,238,185,123, 81,238,245,214,112,115, 88, -216,237, 15, 54, 38,113, 36,128, 45, 21, 8,154,165,205, 34, 69,210,209,182,136,215,228, 4,195,185,174, 5,199,227,194, 8, 86, - 41, 68, 96, 41,114,226, 59, 31,210, 36,213,104,109,112, 33,160,151,138,218, 36,245, 40, 69,143,222,156,141, 87,106, 41,224, 16, - 71, 46,244, 90,121,240, 9,185,200,161, 19, 58, 17,205, 18,161, 94,118, 40, 28, 2, 13, 30,244,215,247,128,224, 65,139,211,150, -219, 94, 21, 39,203, 60,235,112,178,135,158, 73,162, 50, 21, 60,201,125,157, 1, 3,226,253,103, 97, 51, 93, 34,141,151, 40,185, - 96,191, 31,113,255,165, 43,252,232,219,255,175,237,137, 78,171, 82,112, 42, 17, 25,179,170,187, 38, 45, 38, 10,113,181,157,234, -100, 17, 64, 6,123, 9, 61, 28, 74, 19,241, 75,169,133, 35,175,190, 93,182,232,194,249,167, 99,162,247,102,149,175,122, 76,245, - 50,151, 40,223, 73,246,194,196, 46, 6,231,144, 53, 2, 82, 39, 46,173, 89,170,152, 6,184,196,224, 16,131, 8,155,134,113,224, -216, 86,138,158,154, 87, 60, 91, 22,140,211,132,188, 22, 73,249, 67,199,184,155,176, 60,123, 2,119, 43, 94,240,233,124,196,213, -167, 94,193, 55,250, 25,238,222, 61,199,229,110,192,114,152,113,120,124,141,253,229, 30, 45, 23,188,255,241, 51,252, 31,223,251, - 25,126,177, 8, 86, 55,250,136,192,138,255,156,122,139,133,177,201,107,107,248,206,155,239,227,219,127,251, 11,124,235, 19,119, -240, 39, 95,120, 17,247,239,236,177, 30, 87,140,209,195,223,153,176, 60,140, 40, 77,222,161,154,129,167, 55, 11,230,165, 98, 64, -197,179,210,128,171,196,103,163, 19, 1, 42, 7,122,171, 2, 72, 10, 1,232, 77,190,199,170,185,212, 4,139,196, 20, 49, 76, 35, - 74, 94,140,193,221,155,183, 2,203,117,177, 91,201, 58,206,193,135, 1, 49, 77, 88,151,131, 60, 31, 28,199,171,234, 91, 70,202, -224,142, 49,200,123,131, 83, 30,132,144,227, 74, 89,144,124, 56, 89,191, 48,203,224, 68,136, 38,118,204, 98, 33, 47,222,123, 73, - 71, 20, 0, 5, 73,152,171, 81,218,198, 29, 93, 17, 36,144, 85, 38,246, 9, 16, 43,219, 51,109,137,133,189,217, 58,107,203, 44, -232, 6,168,145, 51, 83, 38,111,206,162, 99, 35,195,137, 58,166,105,226, 58, 40, 96, 24,100, 4,171, 42,119, 45, 92,101, 58, 23, - 72,118,108, 76, 80,148,239,101,226,232, 94,157, 48, 41, 12, 44, 80,212,106, 43,207,247,178,102,204,199, 3,150,117, 21,220, 47, -188,129, 79, 26, 28, 2,223,167,148,252, 9, 41, 31,240, 49, 81, 33,142,231, 46,218, 74, 69,189,166, 24, 10,118,124,181,226,161, -181,142,105,191,231,103, 28, 13,135,234,160, 59,247,237, 2,243,124, 79,185, 90, 70, 36,153, 77,178, 6,164, 17, 66, 35,167,158, -104,225,222,116, 93,216,237,226,244,232,104, 77,226,140, 27,207, 77, 71, 59,155, 92,232, 10, 82,114,219,106, 15, 91,114, 27, 7, -246, 66,253,115,202,206,102,110,123,219, 64, 67, 26, 83, 44,127,182, 51, 75,172,146, 6,205,214,216, 59,106, 19, 17,184,170,232, - 69,148, 46,188,128,224,189,137,221, 84,227,101,207,141, 6,167,245,110,169,148,186,165,108,154,173, 94, 27, 66,116,168, 69,138, -217,168, 21,128,250,141, 67,144,135, 90,213,225, 2,118, 25, 25,222, 81,236, 11, 45,115, 69, 26, 68,200, 37, 23,180,216, 15,214, - 92, 76, 52, 7, 31, 48,140, 82,193,165, 97,144,189,156,151,135,193,195,193, 13, 30,235,202,138,178, 48,149,201,201,223, 39, 35, - 28,170,179, 87,217, 79,250, 16,108,164, 38, 16, 21,152,135,120, 24, 18,169, 90, 9,203,188,152, 85, 41,183,204, 9, 1,161, 50, -172,222,197,183, 62, 48, 97,173,211, 54,163, 24,208,204,104,215, 46,221, 27,139, 26,239, 39, 57, 52, 26, 80,230,140, 82, 58, 14, -183, 71,220,222, 28, 76,197,143, 19,144, 66,111,128, 31, 34,171, 65,174, 2,168,160,245,142,142, 0,126,109,114, 41,173, 38,244, - 82,219,150,166,101,245, 30,108,175,210,170,160,102, 45,128, 1, 82, 60,216,158,142,177,171,112,157, 23, 47,171,208,146, 1,238, -143,148, 71,236, 25,197,169,165,167, 98, 35,101,188,165,197, 82,219,242,162,117, 92,125,210,249, 94,220,255, 12,122,239,216, 77, - 9, 87,119,207,176, 28,158,224,215,191,252, 57,197, 71,180,186, 40, 71,206, 44, 67,253, 57, 32, 71,173, 98,201, 27,198,193,124, -190, 10, 43,145, 67,163,216,244,194,220, 15,112, 22,131,186,137,228,148, 18, 37,251, 85,199,203, 63,132,196, 16,143,196, 93,148, -142,184,104,131,164, 56, 47,231,108, 14,138,101, 97, 74,211, 73,102,113, 34, 48,105,127,182,199, 52, 77, 38,218,217,184, 9, 34, -126, 76, 49, 96,157,103,148,236,208,252, 96,244,185,249,209, 99,132, 82, 49,237, 71, 76, 23,123,212,167, 25,151,119,206, 49, 69, - 15, 44, 11, 14, 31, 61, 70,190,189,133,115, 30, 63,255,240, 41,254,229,119,223,198,195, 90, 16, 93,192, 62, 36,124,254,193, 37, -190,112,111,143,215,238,157,225,206, 89, 66,227,187,144,115,197,135, 79,143,248,235, 95, 60,198,155, 31, 63,195,191,121,239, 67, -252,249,123, 31,227,191,253,131, 55,240,149,215, 95, 64,239,192,254,238, 5, 30,167,143,209,154,195,252,240, 26, 45, 59,148, 39, - 79,241,232,216,112,225, 10,126, 81, 28,238,237, 31, 8, 46,211, 59, 30, 66, 85,148,250,209,137, 90, 62,116,203, 4,144,247, 57, - 32,157, 37,198,252,106,178, 26,139,198, 34,214, 42,181, 15,245, 46, 19,193, 70,187,147,236, 85, 51, 60,249, 7,138,224,245, 97, - 16,109, 78, 76,128, 19, 69,176,138,140,244, 82, 17,226, 96, 20, 59, 28,243, 17,100,140,170,221,164,138,156, 84,221, 47, 29,178, -100,145, 39,211,180,248, 56, 96,156, 38,225,102,199,136,149,121, 1, 42,190,179, 73,101, 99,135,216,113,226, 73,119,182,238, 67, -133,113,225,109,148,101,222,238,102,200,101, 83,241, 67, 26, 23,231, 69,156,230,189,128, 86, 66,218,146, 30, 85,151,161, 9,122, -142, 54,183,202, 73,170,118,106, 41, 69,190,139, 13,209,109,234,232,192, 95,223,123, 37, 81,177,226,246,230, 86,220, 54,107, 97, -182,128,219,248,241,142,170,125, 78, 63, 55,192, 81, 56, 41,192,183,162,165, 54,240,110,200,128, 33,148, 79, 10, 50,231, 17,162, - 4,199,196, 33,154, 75, 65,201,132,104, 21,153,107,205,168, 17,213, 18, 97,199,240, 44,250,204,185, 6,211, 41, 69,175, 20,222, -149,153,235,141, 6, 23,156,136,110, 75,102,202,153, 76, 93,100,152, 92,121,158,118, 4,189,164,233,183,199, 9, 32, 6, 39,132, - 63,141,204, 85, 97,181,118,219,254, 52,154,149,116, 78, 1,193,128, 17,169, 32,252,136,103, 43,116,133, 65,242,155,163, 77, 25, -129,137,122,142,113,171,158,159, 87,162, 77, 82,214,198,195, 56,242,107, 87,132,174, 36,117,246,202,175,205,123,132, 8, 75,239, -172,165, 33,142, 99,162, 0,193,163, 54,207,128,134,110,138, 78,120,142,179,189, 99, 10, 88,165,157, 9,112, 57,163,142, 3, 58, - 42,247,164,241, 36,120,222,147, 31, 14,180, 37,195, 53,135,113, 26,204,247,220,188,216,127,198,105,148,151,139,233, 72,150,145, - 14,129,192, 44, 51, 48,140, 98,175, 26,134,122, 82,177, 80,192, 64,241,137,160, 20,101,100,162,118,186, 82,170,160, 44,179,130, - 71, 88,164, 12, 30, 43,194,137,237,197,155,178, 85, 16,163,158, 65, 4,221,198,239,106,163,200,107,150,241, 9,167, 19,243,156, - 77,165,174,226,171,117, 93, 17,124, 55,223,170, 90,226,106,227, 94,188, 53, 84,181,102,213, 66,112, 3, 51,151, 57, 86, 14, 30, -140, 57, 60,169,146, 77,108, 3,116,238,148,204, 59,172, 40,216,146,101,231,233, 2, 66,148, 17,207, 52, 9, 41, 48,141, 82, 8, - 84, 86,131,178, 35,239, 91,128, 76, 17,158,125,201, 43, 71,237,205,200, 74,182, 58, 49,235,151, 92,176,195,254, 46,226,112, 9, -244,134,253,249,136, 23, 95,186,194, 15,254,253,191,129,115, 18,124,163,137,127,176, 60,228, 45, 34,214,121,143,200,117, 7, 78, -246, 80, 26,165,170, 10,227, 82,178,113, 20, 96,186,141,198,177, 46,177,181,204,175,134, 69,165, 58,235,192,132,122, 22, 69,208, - 2,207,168, 73,207, 11, 94, 46,163,202,159, 65,100,138, 96,103, 74,147,142, 50,199,113, 48,177,203, 48, 16, 80,210, 59,246,251, -221,102, 55,164,245, 42, 70, 21, 91, 2,251, 81,224, 57, 75,115,136,107, 6,214,130,150, 87,140,103, 59,132, 56, 96, 46,133, 69, -104,195,227,159,253, 10,183, 79,174,209, 59,240,183,239,252, 6,255,226,135,239,162,184,128,215, 46,239,226,143,191,249, 59,248, -226,231, 95,198,221,201,163,253,242,151,168, 89, 38, 62,178, 43,140,112,232,120,229,254, 57,190,246,153, 23,240,244,217, 1, 63, -252,233, 99,252,235,183, 63,192,127,255,253,119,241, 79, 31,207,248, 47, 63,245, 58, 66,233,104, 93,210,160,106,233,104, 79,158, - 97, 31, 28, 62,121, 21,177,222, 54,228, 15,158,225, 7,191,190,193,227,155, 5,127,248,173, 79,227,242, 42, 88,170,148,236, 81, - 87, 52, 47,254,217,166,225, 72, 37, 19,246, 35, 63,211,113, 28,144, 91,230,200,186,152, 22, 37,120,135,222,188,125, 46,181, 64, - 8,120,113, 68,136, 2, 8,169,173,159,172,132, 88,152,217,146,161, 91, 17, 81,153,105, 96, 59,206,144,108, 76,169,228, 60, 67, - 88,240,215,108,216,205,190, 5, 20, 85,153, 94,197, 24, 1, 62,207,229, 86, 56,229,195,152,158, 35, 38,154,139,162,119, 22, 52, -164, 72,246,141, 83, 14,180,109,199,206, 11,191,182,138,224,195,182, 23, 55,191, 51, 12, 96, 18, 83,192,126,191,223, 60,216,236, -101,155,135, 21,172,176, 49,120,195,110,191, 51,224, 85, 76, 9, 49,137,179,162,113, 20,171,251,224, 74,207,122,206, 5, 57, 23, -220,222,222,160,148, 98,187, 91, 7, 79,107,169, 20, 79, 90,168,196,152, 78, 64, 46,206,220, 34, 18, 98,228,172,219, 78, 92, 79, - 56,175,251, 50,253,178, 83, 0, 0, 32, 0, 73, 68, 65, 84, 98,142,249,201, 52,177, 96, 46,218,245, 4, 64,148,141,213,175, 72, - 87,181,215,122,242, 79,116,237, 88,153, 81,239, 3, 25, 33,129,228, 56,166,166, 57,235,136, 27,201,106, 69,186,244,222, 76,157, -207, 81,139,104,194,216, 2, 91, 1, 46, 57,103,198, 22,113, 92, 59,240,255,108,143,126, 2, 34,176, 78, 94,173,242, 93,201,110, -104, 50,138,111,218,181,243,158,226,121,102, 24, 95, 78,170, 53,187,194,121,209,177, 41, 0, 72, 19, 21,149,141,160,161, 94,153, -188, 24, 71,139,110,103,199, 39,235, 93,177,197,169,229, 57,170,224, 65, 83,186,224, 29, 82, 24, 12,242, 98, 85, 43,156,169,148, - 91,235,136, 73, 58, 28, 25, 69, 53, 59,184, 79,131, 13,212,135, 55,237, 70, 9, 0, 41, 34,132,144,130, 1, 27, 14, 47, 4,254, -176,173, 95, 36,190,177, 74,244,225,218,153,186,147,196,227, 62, 13, 56, 30, 86,140,196,218, 74,210, 91, 98,247,219,204,166,149, - 6, 79,226, 27, 76, 21, 45, 47, 3, 48, 12, 17,183, 55, 11,134,193,195, 37,207, 76,101, 7, 87,229,240,145, 75,188,154, 31, 94, - 94,200, 2, 31, 2,230,121,193, 50,175, 56,220, 30, 77, 44, 23,163, 55, 59,220, 56, 10, 57, 78, 87, 22, 42, 22,170,117,235, 88, -236,129,229, 88, 89, 84,224,188, 96, 89, 69, 6, 39, 49,147, 53, 47,182,203,113,208,181, 0, 44,247, 87,237, 98,218, 41, 36, 23, - 17,146, 71, 8, 66,109, 11, 60, 72,161,193, 23,212,133,200,133, 39,123,168,101, 89, 80, 75, 54,176,140,238, 29,117,252,172, 8, -208,141,190, 41,240,146,233,234, 19, 40,185, 98,191, 75,184,119,255, 18,215,143, 63,194,199, 31,126,200,176,156,205,106,168,123, - 58,231, 20,221,216,201,165,142, 6,238, 0, 47, 69, 37,254,169,126, 37,132, 64,224,131, 50,236,197,215,217,105,253, 19,253,130, - 67,201,109, 19,228, 1,150,177, 28, 7, 81,180, 15,244,222,142,211, 72, 98, 30, 76,128,199, 6, 65, 18,228,106, 49, 77, 68, 8, - 1,187,105,226,115, 42,123,211,152, 18,198,113,176, 66, 78,112,163,137,207,118, 51,165,117,239, 14, 99,242,184, 56, 75,152, 51, - 4, 34, 17, 2,130, 19,177,230,186, 54, 60,124,248, 12,239,255,242, 9, 92, 95,240,169,207,222, 5, 98,194,175, 63,190,193,255, -252, 23, 63,199, 16, 71,252,189,223,121, 29,127,242, 15,126, 15,247,238, 95,202,101,145, 23,228,228,225,181, 99,116, 50,169, 41, -189,195, 51,111,249,236,124,135, 63,249,234, 30,159,121,241, 2,255,195,119,127,138,255,243,221, 15,241,217,247,159,224,235,159, -126,193, 14, 44,160,195,119,177, 95, 13, 83,192,244,165, 55,240,143,191, 33,123,207,255,233,127,253,115,156,157,239, 49, 76,194, -115,152,143,212,138,132,205,122,228,125, 68,136,242,185,231,156, 49,142, 34,126, 90,215,149,145,151, 17, 64,197, 50,207, 24,122, - 68,233, 14,195, 32, 41,114,121, 45,136,131,116, 32,121,105,136,113,148,226,177,117, 6,105, 52, 99,135,119, 10,155, 84,179,164, - 83,156,224, 68, 46, 32, 10,227,198,238, 7, 39,249,238,176, 73,147,118,215,122, 38,181, 6, 4,170,221,197,189, 38,103,151,231, -115, 31,131,252,220,213,161,148,215,124,130,100,117, 50,129,243, 14, 57,235,206,215,139,149,203,109, 35, 92,229, 55, 24,220,133, -192, 30,237,226, 53,255, 92,244, 64,194,122,215, 9,150,119,162,205,206,107,177,192, 14,253,121,167, 97,160,184, 83,138,136, 65, - 85,226, 39,185,235,157,223,167,142,237,115, 46,204,169, 23, 63,186, 88,167,248, 61, 19,219,108,188,113, 71, 11,151, 10,213, 88, - 44,233,229, 44,161, 79,226, 90,234,108,192, 84,227, 35, 86, 92,217,203, 7, 54,117, 46, 13,204,154,119,150,251,237, 85,183,228, - 61,198,113,164, 46, 71, 14,233, 82,171,116,240, 60, 31, 99,144, 85,176,119, 64,205, 34,118,172,101, 97, 0,153,140,221,157,171, - 70, 62, 84,204, 48,122, 67,240,178, 66,243,116, 47,137,141,248,121,180,174,174, 28,117, 23,174,188, 6, 93,197, 54,158, 93, 26, - 12,165,231,132, 61, 91,170,153,160, 86, 40,104,244, 42,188,184,133,124,180,113,250, 22, 26, 68,167, 14, 60,155,166,192,162,243, - 20, 72,228,204,166, 40,119,151,223, 2,107, 56,108, 40,122, 14,178, 49,149,233,120, 71, 84, 44, 41, 8,235,247, 81,252,149,126, - 24,208, 33,121,193,250,141,119, 10, 47,212, 23,172,135,218, 74,164,101,173, 69, 70, 72, 33, 2, 78,152,215,203,156, 49, 12,178, -252, 31, 6,138,181, 6,121, 17,215, 53,163, 22,142,121, 2,199, 29,206,227,112, 59, 91,220,168,236,188,101,207, 55, 76, 19, 5, -120, 17,216,251, 19, 92,160,116, 91,187, 75, 9,105, 81, 0,132,250,217,123,175, 76,108, 11,130,121, 13, 30,203,156,173,154,149, - 7, 3,198,150,159,215, 76,236,162,183, 96,133,101,201, 56,220, 10,124,229,120, 92, 48, 31, 87,198, 1, 38,171, 0, 85,109, 41, -254, 73,121,114, 74,173, 76,117,106, 39,156, 97, 57,140, 2,199,197,129,208, 2,101, 78,203, 5, 61,195, 59, 71, 82, 30,199,213, -157, 54, 51,134,171, 4, 29,213,163, 19, 18, 66,123,157,147,162, 43, 38,207,169, 95, 23, 46,182, 33, 8,229, 1,107, 20, 28,150, - 44,232, 87, 25,245, 53, 27, 55,169,149,240, 84,208, 88, 57,246,129,115, 24,207,238, 98,119,126, 15,181, 52,156, 93, 76,184,247, -224, 18,127,250,255,252, 7,126,246,160,104,198,217,216, 81, 62,107, 25,197,139, 40, 37,114, 47,180,133,134,104,202,151,198,124, -106,149,156,233,145,151, 84, 58, 71, 33,144, 18,199, 18,106,145,103, 79, 85,162,227,184,131,243,209,216,219, 10,174, 80,117,187, - 56,139,250,230,225,165,229, 70,166, 43,128,247,233,185,164, 58, 73,171, 19, 1,211, 52, 73, 78,187,194,107,210, 16,185,126,111, - 22, 97,108, 48,157,229,136,125, 2,198,208,176,252,246, 49, 48, 37,132, 48,161,149, 21,229,120,139, 95,189,247, 91,252,229,143, -126,129,111,252,209,235, 64, 76,152,115,197,191,250,238,187, 24,134, 17,255,249, 87, 63,133, 63,249, 71,223, 64, 96,198,115,121, -244, 16,158,208,155,226, 51,144, 43, 48, 12,232,181,195, 67,166, 22,174, 55,248, 46,251,236,207,188,122, 7,255,217,231, 95,198, -255,242,119,191,198,247,223,253, 8,159,124,241,108, 43,142,164,217,194,184, 79, 24, 46,247, 24,238,221,197,184,159,100,199, 55, -136,251, 36, 68,143, 82, 59,166,221, 36,133, 32, 54,118,186,163,224,169,148,138, 16,155,169,113, 99, 12, 2, 11,130, 19,215,132, -119,152,143, 51,166,253, 14,165, 20,166, 61, 6, 91,255,192,123,184,144, 16,135, 73, 58,203,146,105,197,244, 39,158, 95, 25,231, -235, 1,219,106, 69,117,155,200, 81, 4,187,202, 45,216, 92, 33,205, 14, 65, 61, 48,157,172, 22, 99,103,216,135,220,231,129,120, - 82,121,151,183,221,166,224, 73, 53,246,171,219, 59, 28, 8, 9,217, 78, 96,216,244, 80,119,201,218,213,115, 45,255,156,242,189, - 55, 96,156,118, 50,233, 26, 70,209,100,140,137,235,164,206, 14,125, 75,160, 3, 97, 72,137,171, 78,193, 56, 23,140,211,104, 10, -244, 77,244,217, 13,146,210,154,184,113,150, 69,105, 99,141,211, 42,119, 18, 79, 29,236,189, 74,105, 16, 22, 0,119,205,218,105, - 62,175,108,223,194,105,154,178, 63,156, 55,231,136, 83,104,144,247,178, 62,116,206,118,253,157, 52,185,224, 29, 65, 58, 68,159, -214,134,230,232, 55,103,216,139,162,137, 43, 54,156,172,216, 23,203, 70,108, 3,163,119,245, 75,211,162,138,118, 53,231,131,228, -155,177, 81, 82, 87,148,254,216,186,219,236,179, 54,130,239,218, 65, 59,107, 62,187,238,234,249,239,192, 11, 25,252,217, 40,205, -112,155,212,136, 40, 64,221, 74,112, 81,198,231, 39, 46, 1,189,176, 29,168, 73, 97,129,238,180,112,228,158, 63,156,228,180, 55, -234, 9,116, 42, 21,163,156, 59, 33,122,201, 47, 80,125, 18, 24,111,168, 34, 6,195,108,106,134,247,201,194, 30, 76,110,106,220, - 47,121,250,129, 99, 10,188, 0, 42,106,208,252,225,196, 49,151, 23,161,131,122, 5,185,187, 57,205, 87, 79, 41, 82, 77,219,185, -255,213, 61, 4, 76, 68, 53,216,154, 0,198, 46, 78, 99, 66,226,174,102,218, 37, 73,207, 33,250, 84, 89,223,149,192,255,141, 79, -223,208,153,131,156,146, 99, 20, 35, 49,139,185, 96, 94,169,230,245, 73, 42,169,218, 81,136,123,173,181, 96,153, 87, 41, 48, 70, - 25,211, 74,192,133, 28, 98,195, 16,159,131,242, 31,110, 14, 76, 36,234,180,190,193,130, 14,188,135, 89,213,148, 20, 37, 15,188, -172, 44,164,240,233, 36,168, 81,249,201,209,187,216,252, 60, 59,255, 98,197,132, 67, 23,132,233, 52, 24,224, 39, 14, 3,224,228, -176,106, 16,139,155,101, 69,231, 85, 64, 12,189,161,149,149, 62, 78,233, 60,225,213, 3,188,133,216,224, 4,127, 90,115,198,229, - 43,175,163,213,142,221,110,192,253, 7, 87,120,248,193,251,184,126,250,196, 68, 68, 62, 60,239,115, 85,100,107, 26, 18,163, 76, -171, 98,192,225,248, 44,136,125, 5, 44, 26,157,121, 83,189,183,102,222,198,248,162, 0, 21,204,237,186, 72,104,135,118, 44,250, -244,123, 31, 13,165, 91,248,252,104, 17,161,135,190,140,144, 69,121, 61,237,119, 86, 13,199, 52,136,245,144,151,117, 74,145,140, -125,207, 60,114, 66,108,106,231,138, 98,219,249,235, 68,170, 12, 30,104, 25, 67,136,240,247, 94, 64,197,125,249, 12,175,159, 0, -189,224,225,227, 91,236, 81,241,202, 75, 87,136,231, 19,254,213,191,254, 9, 30,151,142,255,234, 15, 62,139,111,126,243, 11, 8, -200,104, 23,151,162, 57, 88, 11,218,147, 39, 8, 14, 66, 36,116,178, 39, 14,209, 83, 57,235, 81, 22,201,143,238, 92,229,124,225, -213, 43, 92,189,243, 17,254,242,175,126,138,254,219,143,241, 95,127,253, 53,249,249,140, 3, 46,223,248, 36, 66,138, 8, 67,194, -238,234, 2,189, 55, 28,110,102,212,222, 49,237,146,237, 14,125,112, 12,212,113, 8, 44, 42,123,242, 88,142,210, 89, 87,126,230, -142, 99,102, 61,240,125,136,112, 53,194,123,249,108,133, 79, 33, 5, 65, 76, 28, 49,198,132,238, 21,231,188,179, 46, 95,199,203, - 62,168,111, 88, 68,118,114,129, 69,142, 39,149,147, 14, 56, 47, 24, 78,181, 58,106,176, 77,107,234, 29,150,253,242, 56,120,179, -131, 38, 22,129,242, 28,121,220,222, 30, 37,186,153, 35,121,213,222,168, 55, 94,255,188,206, 0,143,109,207,203,131, 90, 49,164, - 39, 23,135,172,221,212, 29,228, 24, 30, 52, 50,204,202, 99,183,159, 48,140,163,177, 41, 18, 45, 76, 61,103,238,195, 59, 39, 94, -209,186,219, 82,178,172,232, 20,108,211, 65, 11,110,227, 72,182, 88,254,192,241, 56,155,142, 71, 93, 64,232,142,239,133, 20,102, -173, 74,113,225,131, 71, 46,141, 64,171,138,224,187,157, 77, 74, 64,211,137, 98,215,179,137, 99, 99,125,207, 85,169, 45,199,152, - 20,188,173,138,107,160,243,125,151, 11,158, 8,107, 93,179,180,138,249,112,228,120,187,113,172, 12,212, 44,141, 70,231,202,177, -181, 98, 42,118, 71,150, 5,161,233, 91,236,173, 38,117,202,226,136,119,201, 41,174,151,182,187,147,128, 26, 29,198,251, 19,136, -145,102,140,200,133,173,122, 41,137,139,110,173,137, 21,212,176,201,125, 75,140,116, 39,247, 23,156,229, 85, 8, 95, 0,150,167, - 17,194,128, 82, 59, 87,202, 81, 38, 25,173,114, 34,210, 45,171,194, 10,135, 86,145,210, 96, 43, 20, 97, 15,104,163, 35, 98,205, - 24, 2,162, 2, 27,188,229,192,210, 39, 13,221, 73,178,243, 32, 74, 86,253,168,194, 7,167,108,223,109,241,112, 37, 75,230,177, - 8,219,188,169,185, 29,119,106, 18, 93, 39, 98,149,156, 59,243,110,133,118,148,156,199, 90,154, 65, 19,180,226,213,200, 87,253, - 6, 99,138, 72,137, 47,127,240,114,193, 50,195, 60, 4,143,188, 86,130,104,250,201,225, 47,157,147,119, 14,203,178,154, 71,113, - 24, 5,132,179, 16, 97,232, 0,120, 78, 32,116, 5,177, 46,162, 96,238,252,140, 98,234,198, 96,175, 85, 69,134,149,112, 27, 96, -158, 37,156,165, 82, 13,239,212,103,201,209,144, 84,123, 10,202,144, 73, 73,109,204,138, 39,221,104, 93, 22,218, 54,138,125,198, - 42,190, 9,129,126, 96, 84,195, 30, 58,120,238, 2, 71, 97, 4, 3, 34,186,241,201,214, 17,142,197, 90,173, 13,174, 9,208,166, -180,142,188, 46,100,207, 55, 30, 88, 82, 85, 22,250,216,107,219,116, 12,242, 79, 32,237,238, 96, 58,127, 17, 49,122, 92,222,217, -227,238, 11,103,248,246,255,245,111,173,179,210,234,184, 85,209, 96, 40,112, 70, 19,251, 58, 45,121,194, 40, 40, 98, 89, 63, 25, -147,106,202,145,134, 91,120,162,128, 19,195,121,116,186, 36,228, 61,161,114,105,110,116, 55, 76,229, 54,125,177,145,125, 43, 40, -228,119, 59,141,211,164, 8, 47, 48,184, 99,156,118,214,145, 52,218, 44,135, 65,130, 37,134, 97, 64, 26,105, 85,171,149,161, 24, -209,158,125, 41, 40,171,217, 56, 75, 41, 24, 2, 16, 47,206,225, 11,144,231, 89, 20,250, 87, 87,104, 15, 63,194,178, 44,248,212, -131, 43,220,121,225, 28,223,125,235, 67,252,236,227, 27,252,147, 63,124, 3,223,250,195,207, 73,183, 50,238, 17,247,231, 72,189, -193,191,250, 10,202,251,191, 4,214, 21, 46,122,116, 7, 44,199,130, 52,202,231,136, 74,222, 52, 19,248,186,243,120,249,238, 25, -254,139, 47,191,138,127,249, 55,239,225, 71,191, 42,248,214,103, 95,192,107,175,221,195,229,231, 62,137,116,182,151,156,235,224, -225, 52, 52,164,175, 38,126, 85,190,117,171, 21,197,109,171, 53, 31, 34,226, 40,238,139, 90, 86,198, 14, 71, 94,190,222, 18,178, -212,161, 82,139, 98,122, 61,162,249,255, 55, 98, 90,119, 14, 45, 68, 36,239, 49,237,207,225, 67, 66, 41, 29,222,211, 22,202,238, -168, 82,240, 88, 75, 59, 97,108, 51, 96, 42, 36, 32,111, 33, 34, 18,251,185,141, 85,149, 22, 38,231, 13,245, 26, 38,216, 19, 54, -119, 8,145, 60, 7,233,126,197, 61, 83,236,178,146,116,177,106, 9,130,202,235,208, 67, 26,182, 34, 10,150,177,238,188,131,239, -213, 58,110, 88,106,153,172,113,166,221,158, 19, 73, 71,176, 85,181, 73,131, 56,146,196,170,166,255, 41, 89,254,221, 48, 74,170, - 93, 24, 97, 84,206,156,183, 8,211,121,158,197,159,206, 6,108, 89,150,147, 75, 77,249, 34,186, 74, 29,136, 54, 5, 34,127, 77, -140,145,159,177,127, 62, 92,132,207, 88, 61,129,250, 56, 56,211,101,133,232, 44,178, 87, 63, 39,205, 83,208,240,172, 82, 36,113, -174,156,184, 76, 52,128,171, 50,194,184, 17,105, 11,198,163,202, 52, 77, 2,129,186,151,177,185,231, 26,210,187,206, 9, 32,207, -111, 71, 43, 30,141, 98, 81, 5,198,234,121, 84,139,152,131,197,248,186,109,152,179,209,223,116,114, 10, 61, 59,187,233,154,108, - 77,170,171,122,239, 81,123,181,194, 74,246,236,122,102, 71,203,185, 16,222,125, 71, 64,218,210,218,218,115,128, 67,129,175,249, - 77, 24,173,182, 92,229,189,108, 19,102,103,250, 18,239, 3, 92,147,166, 41, 2, 21,193,179, 99, 30,252,201,101,186,153,240, 37, -223,124, 65,140,130,108,213, 93,121, 87,186, 23, 43,245,134, 14,239, 26,242,218, 55, 38, 50,186,101,202, 46,203, 74, 36,101,176, -188,102, 57,172,217,109,244,138, 86, 5,150,209, 90,195, 50,175,216,159, 77,102,129,145, 10, 95, 95,136,136,152, 2,237, 42, 13, -227,200,234,157,200, 78, 85, 56,170, 77,111, 24,226, 9,107, 28,246,131, 6,247,201,199,219, 25,227,152, 88, 77, 49, 87, 26,192, -124, 92,177, 44,133, 44,102, 41, 12,198, 49,225,120, 88, 12,216,163, 69, 73, 99, 53,220,106,145,131,141,213, 84,161, 63, 52, 68, -217,111,107, 85, 29, 61, 44, 65, 40,120,143,117, 93, 88,125, 83,109,174, 59,125, 8,235, 28,138, 90,133,168, 58, 85, 24, 38, 34, -195,132, 97,218, 97,152, 38,132,144, 4, 38,193,125,153,115,226, 50,136,145,126,115, 70, 16,172,115, 22,252,233,124, 48,122,155, - 38, 81,157,142, 15,189,223,104, 88,146,204, 4, 92,189,244, 57,160, 3, 67, 10,184,119,255, 18,143, 62,124, 31,203,186, 72,232, -194,137, 64,166,214,134, 33,208,175,203,140,244,206, 28,104,153,164,136, 21, 82,193, 52, 58, 21,234, 0, 66, 15,102,181,236,189, - 35, 12, 65,212,209,238,196,154,230, 34,187,110,144,173, 0, 59,108, 27, 9,130, 78,195,110, 40,154, 1,119,243, 58, 41, 80, 21, -187,190, 28,202,234, 22, 87,132, 96, 70, 53,165, 48,166,128,196,201, 81,111,242,178,198, 24,176, 46, 89,116, 4,124, 67, 5,146, - 33, 99,215,221, 11,247,165, 0, 40, 11,206, 46,206,208, 91,197,242,100, 70, 91, 87, 60,185, 89,112,247,114,143,135, 55, 25,255, -223,143,127,131, 63,250,242,107,248,135,223,250, 18,252,221, 23,112,251,214, 91,146,163,112,118,134,158, 6,184,221, 14,225,254, -139, 8, 79, 30,162,173,194,104,223, 13,222, 86, 24, 34,151, 16, 61, 70,206, 13, 62,116, 32,120,252,254, 27, 47,226, 71,239, 63, -198,219, 79, 15,248,197,161,226,119,191,252, 89,196,200, 14,198, 73,104, 79,125,118,141,180,223, 9,105, 76, 87, 70,132,129,172, -107,135,227,101,182,155,162, 93, 32,226, 23, 23,152,139, 15, 14,105, 72,178, 58,138, 18,160,228, 60,199,223,189, 99, 62,222,202, -179, 23,131,140, 28,137, 1,149,212, 49, 1, 35, 57, 42,201,215,101, 17, 75,145, 75, 70,245,203,235, 98, 12, 3,197, 29, 43, 84, -168,107, 86,249, 9, 57,210,200,132,110,131,183, 56,207,206, 94,247,189,164,193, 45,179,240,236, 83, 74, 24, 71,153,118, 73, 92, -177,210,234, 28,187,167,108,228,195,110,133, 37, 71,235, 80, 56, 20,108, 90,100,170,117, 71, 68,113, 96,163, 20, 69, 56, 54,142, - 19,215,149,193, 86, 99,133, 77, 78,165, 77, 49, 70,225,209,207,199,217, 10, 37, 13, 92, 82, 8, 76, 56, 89,141,249, 32, 13,193, -178, 44, 40, 12,214, 42,132,192,200,222, 53, 88,102,185,163, 11, 68, 63, 15,125,119, 20,198,162, 90, 0, 93,181,170, 59, 72, 66, -117,220,137, 53, 20,132,118, 21,235,136,101,237,169,240,168,106, 69,128,172,172,156,249,255,117,234,167,239,140,198,136,162, 85, - 89,199,234, 5,223, 10, 98, 0,122,115, 42,206,103, 81, 95,120,214, 87,235,172,213,194,230,156,131,235, 10,235,169, 27,232, 42, - 50,139, 92, 19,213,220,137, 85, 76, 47, 94,108,235, 21,239,148,220,160,122, 9,122,197,149, 8,199,117, 0, 76,160,235,248,103, -176,177,177, 70, 5,204,164, 72, 54,226,151, 38,154,197, 35, 2, 45,116,221,210, 54, 59,127,127,103, 3,167,201,148, 41,249, 19, -111,189,125,225,128,235,136, 50,167,215,131,168, 18,130, 48, 96, 93,148, 4, 38,127,120, 74,114, 17, 79,211, 36, 17,138,204, 29, - 46, 85, 70,209,157, 62, 94,231,221,150,212, 3, 7,228, 98, 82,124,217,167,121,195, 28, 58, 31,144, 98,194, 82, 87,142, 65,101, -204, 89, 91,181,131,254,120, 88,144,115,197,217,249,132, 16, 28, 90, 5,134,113,131,150,196, 20, 49, 78,145, 59,161,104, 34,149, - 90, 26, 3,220, 2,134, 36,149,120,163,223,122, 24,182, 52,174,101, 94,112,184,153,233,203,148,145,108, 94, 10,242, 42, 52,160, -195, 97, 17,136,206, 20,216,101, 11,213, 78, 49,166,181, 20,180, 42, 99,248, 90, 42,150,121, 21,155,156,250, 29,117, 71,237,164, - 67, 93,151, 5, 67, 18,187,148,240,225, 37,213,170, 6, 39, 99,112,170,225,197,150, 37,135, 66,119, 91,231,171,188,117,231,129, -224, 54,142,125, 26, 39, 76,251, 51,120,166, 78,249,144,108,167, 44, 42, 89, 17, 63, 90,236, 45,247,200,181,172,150,194, 20,188, -136, 89, 82, 10, 20, 60,249,173,219,162, 69,200,133,128,180,187,194,249,221,151,209,123,199,197,229, 30,103,231, 3,126,248,195, -159, 32,132,100,171,140,142, 46,138, 77, 10, 13, 85,165,233,189,108,158, 60,191,246, 20, 61, 33, 47,133, 35,164,110,163,175, 92, - 50,233,122,186, 87, 93, 77,191,160,113,186,250,146,118,242, 8,192,201, 66, 35, 84, 40,176, 27,215,110,202, 91, 33,229, 12,222, -163, 30, 96, 61, 28,158, 83,200,186,110,157,135,198, 91, 74,232,132,116,202, 62, 72, 53, 94, 75, 17,126,182, 58, 28,184,247, 10, -110,194,176,223, 33, 31,142,168,168, 8,174,163, 62,123,132,225,241,199,168, 49,162,199,132, 47,188,254, 0,239,252,230, 26,251, -105,192, 63,248,250,235, 66, 53,123,244, 16,195,229, 5,220,186,162, 29,111, 17,199, 29,224, 61,202,249,185, 60, 83,183,183, 24, -234, 13,202,218,224,209, 0,142,198, 93,136,242, 30, 81,157,223, 29,144,162,195, 55, 94,191,135,119,254,250,128, 95, 95, 47,130, - 74,245,226, 73,174, 77,190,231,117, 94, 49, 31,102,228,226, 25,245, 40, 19,181,249, 88, 0,178,192,135,113, 64,206,176,207,160, -107,241, 15,241,247,107,216,143,136,190, 6,180, 90,176, 63, 15,152, 15,206,198,215,195, 56, 89,158,122, 94, 51,133, 95, 27,103, - 0,232,136,221,145,224, 6, 22,180, 43,173,143, 98,225,139, 41,162,172,197, 86, 58, 14,157, 23,182,240,204,141, 0,217, 27, 39, -120, 42, 50,146,157,122, 72,210,189,166, 16,132,114,198,115,100, 93,165, 48,235,224,250,128, 95,115,233, 39, 30,102, 10, 57, 79, - 99,129, 45, 6,211,183, 19, 33,150, 55,102,134, 9,158,154,147,119, 36, 38,236,247,123, 92, 94, 93, 98,152, 70, 78,162, 68,139, - 0,163,110, 50,182,212,111, 90, 1,209, 36,200,207, 55, 40, 28,172, 11,234, 90, 11,187,227,225,136,101, 89,172,171,172,165, 72, -106, 91, 20, 12,183, 78, 35, 60, 19,210, 68,143, 34,151,174,170,232, 85, 47, 82, 74,145,179,131, 83, 28,161,150,109, 80,175,206, - 12,112, 45,168,226, 36, 43,129, 86,183,181,197,178, 48,170, 25,242,174,116,238,208, 58,232,159,175, 91,183,222, 91,165,183,188, - 17,139, 93,209, 25,128, 37, 90,162,142,200,228, 77,113, 47, 54,222, 67, 50, 29,241,212, 35,105,196,170, 20, 39,253,185, 8,230, -222, 53, 30,156, 19, 64, 54,125, 98,127,212, 44,144,246, 92,152,139, 9, 47,149, 47,224,228,235,175,106, 33,174, 42,160,147, 34, -169,218,234, 69,120,240, 22,232, 3, 71, 87,147,124, 61,193, 11,119,161,148, 83, 33,168, 96,147,107,107,240,188,128,133,255, 18, - 45,133, 13,155,154,195,220, 28,141,211,209, 16, 2,162, 70, 18, 2, 74, 78,131,189,108,102, 45, 33, 1,104, 33,194,181,159, 0, - 57,134, 33, 17, 50, 82,237,129,200,172,228, 58,237, 51,250, 64, 26,238,143, 81,152, 1, 14,205,201,238,254,120,152, 81,138, 8, -110,198,105, 32,117,108,195, 19, 46,180,142,233,126,214, 7,233,128,207, 83, 32,192,166,157,208,163,156, 29,250,154,168,212,122, -133,235, 64, 26, 2,202,154,141, 93,189, 44, 5,227,148,248,195,109,152,143, 98, 83,211, 49,219,110, 39,197, 68,239, 13,243,113, -101,120,128,100,245,230,117,181, 46,125,157, 87, 27, 9,174,139, 6,178,176, 66, 99, 71, 93,104,255, 89,151, 21,173, 8,169,172, - 22, 71,133,123, 49, 96,199, 48, 36,126,238,222, 94, 40,239, 60,124,226,247, 85, 43, 29, 36,146,143, 62, 76, 35,198,221, 30,227, - 52,241, 48, 9, 8,105,176, 8, 92, 5, 94,200,231,207, 40,221, 86, 81,170, 42,206, 59,119, 99,176, 48, 7,239, 35,121,218,222, -176,134, 50, 18,138,184,124,241,211,200,107,195,217,217,128,123, 47, 94,226,241,135,239, 99, 57, 30,145,146, 40,155, 53, 62, 50, -165, 96,222,101, 41,128, 86,192, 24,198,180,173,241,208,242, 42, 18, 81,236,107, 41,114,113, 82,160,178, 46,139, 5, 63,108,143, - 52,131, 92, 74,177,245, 68,237,210,225,120,183, 89, 62,128,182, 29, 62, 44, 40, 66, 18,225,145,247,193, 46, 19, 29,177, 41, 31, - 64,199,158,129, 86,154,113, 74, 4, 69,180,109,228,185, 10, 72,102, 93, 22,155, 42, 84,142, 21,157,247, 24,247, 13,126,185,193, -248,240, 3,244,155, 5, 97,190,134, 95,103,248,139, 29, 50,130,140,177,167, 17,127,246,119,191,198,103, 63,243, 50,238, 62,184, -131,224, 58,194, 75,175,160, 31,110,209, 30, 61, 68, 59, 30, 81,246,139, 20,138, 33,160, 93, 92, 34, 92,221, 65,125,251,109, 70, -120, 74, 71, 14,146,207, 52,229,203, 19, 0,235, 6,143,171, 93, 66,116, 1,143,175,103,209,125,116, 15,172,183,232,113,194,202, -160,144,156, 51,110,143, 29,227, 46,202, 65,234, 60, 42,170,104, 47, 86,113, 60,228,213, 97,156, 18,122, 79,178,106, 35, 3, 65, -129, 34, 33,142,156,232, 56,161,246, 57,135,113,218, 11,192,137, 29, 91,140,130, 99, 14,180, 78, 57, 34,123, 37, 79,187, 33,132, -198,245, 83, 65, 43,171,117, 70, 10,152,106, 93, 46, 7, 25, 85,119, 50, 53,220,182,103, 4, 76,212,100,105, 90, 28,139,139,118, - 8, 22,218,227,204,139,222,128, 46,227, 99,158,185, 82,168,215,142,113,154,176, 44,171,113,222, 55,209, 48,117, 69, 20,177, 58, -183, 89, 35, 55,245, 59, 15,123,138,169,134, 97,100, 62,192, 30,211,110,162, 56,118, 91,109,149, 92, 54,252, 54,255, 89,114,161, - 48, 84,163,151,131, 81,244, 58,191,158, 92, 10,157, 27,138,148,173,182, 87,215, 34, 35,120,103,197, 38,232,100,104,198,160, 15, -182,154,139, 73,244, 75, 10,128,210,229,179,142,131,197,122, 12,211, 53,152,159,221,116,116,130,133,173, 68, 42,131,235, 79,253, - 79,235, 13,203, 44, 83,201, 94,149,109, 32, 14,134,202,128,150, 86, 56,169, 68, 59, 25,181, 83,152,215, 27, 47,120,216, 68, 77, - 99, 78,213,134,104,137,110,253,212,180,227, 78, 52, 89,145,133, 70,132,243, 58, 53,168, 22,227,171,187,113,168,167,222,144,189, -141, 83,140,106,231,181,114,223,183, 76,138, 13, 2,102,158,247,154,225,124, 66,213, 7,146,214, 59,177, 71,119, 91, 55,162, 3, -181,101,196, 56,160,212,130,105,218,177, 24,149, 21,161, 22, 4, 90, 92,169,205, 88, 27, 39,160, 35,138,127, 84,204,242,174,122, -123, 65,243,186,114, 52,230, 13, 17,106,244,185, 92, 49,237, 70, 30,212, 50, 38, 73,227, 32, 30,246,210,159,203, 17, 94,150,194, - 49,210,214, 77,203, 8,103, 11, 82,105,181, 98,156, 6, 19,214,213,218, 16,180,186,230, 72,169,208, 58, 22,210,102, 75,208,135, - 82,199,172, 41, 5, 19,186,182, 38, 54,163,202,188,221, 24, 60, 86,238,184,101,132, 38, 97, 47,170, 46, 92, 87,241, 11, 31, 15, - 2,123, 24,167, 68,241, 71,197,237,141,132, 90, 28, 15,179, 1,248,165, 32, 88, 36,154,243,246, 96, 85,109,175,109, 3,159,168, - 10,149, 95, 95, 45, 43, 59, 15,193, 26, 74, 72,140,131, 75, 17, 14,241,185, 29,138,142,177, 28,228,130,139,195, 32,225, 46,232, -240, 81, 18,219,156, 3,198,105,194,180, 19,143,107,154,246, 38,102,107,204,149,247, 84, 40, 43,207,189,115,135,115, 92, 86, 3, -121, 4,247,188,229,167,210,154,215,106,135,243, 29, 53, 87,248,152, 16,131,135, 75, 59, 12,251,123, 98,157,186,152,112,113, 57, -224, 39,127,246, 38,149,202, 91,114, 92,171, 32,177,170,211,239,222,101, 15,152, 11, 74,213, 41,138,231,222,211, 33, 13,145,209, -140,162, 28,151,112,182, 66,145,163, 82,225, 68, 12,165, 44,127,197,139,118,125,137, 84,161,170,249, 4,181,113,135, 11,140, 19, - 97, 39, 10, 46, 33, 63, 64,210,243, 26,253,229,210,181, 40, 99,161,181,138, 20,147,249,215, 85, 1,237,106,195,124, 56, 34, 13, - 50,102,214, 66, 47,175,235,137,122,181,162,151,134,155,242, 12,111,190,245, 19,124, 33, 14,120,112,231, 10, 45, 5, 92,135, 14, -220,125, 9,183, 31, 63, 66,115, 14,239,252,234, 33, 30,221,174,248,227, 79,191,140,120,126, 6, 63,237, 68,213,142, 14,119,251, - 20,225,252, 28,213, 11,240,168,174, 25,136, 17,249,233, 51,148,121, 70,115, 30, 8, 17,174, 85, 75,144,234, 0,134,216, 49,157, - 37,212,181, 32,103,135,253,110,192,218, 42,150,165, 0,203,130, 94, 87,244,203, 59,242,235,215,140,101,205,240,113,192,211,199, - 31, 99,119, 22,141,206, 88, 74,145,116, 48,205, 74,112, 29,232,242,189,170,203,100,154, 6,160,123, 83,253,171, 27,193,105,150, -182,247,240, 97, 64, 41, 71,225,251,119,135,158,169,222,101, 58, 70,136, 3, 74,158, 57, 46,174, 28,195, 31,205,218,104,214, 32, - 11, 47, 2, 45, 67,140, 68,205, 21,158, 44,241,231, 60, 75, 60, 92,209,221,150, 31,174, 20, 70, 42,188,101,183,235, 73,139,148, -194,180, 50, 83,161, 18, 62,227,253, 38,186,117,206, 83, 48, 9, 54, 13,133,211,197,128,188, 30,105,237, 18,139,129,119,226, 85, -239,173,210, 83,158,176, 63,219, 99,183,219, 75,183,219,186,105, 78,138,129,152,154,177, 14,150,101, 69, 46,121,211,135,152,150, -201, 91,110,121, 37, 95, 99,165, 5, 78,199,189,243,124,220,166, 25,238,212,131, 46, 99,253,214,177, 21,210, 4,208, 12,195, 96, - 28, 11,109, 40, 24,148, 72,224, 13,185,242, 77,196, 99, 41, 5,227,147,119,178, 67,250,218, 45,107,221,185, 19,180,172,158,103, -164, 61,138,210,189,161,243,231,168,147,135, 86, 87, 99, 19, 40,144, 76,133,212, 10, 98, 17,118,187, 59, 81,188,243,248, 33,191, - 66,187,114, 71, 47,184,218,209, 0,143,144, 6, 3, 87, 9,164,140,162, 96,120,132, 86, 12,252,163, 35,251,205, 53,195, 20, 62, -213, 79,212,106, 96,173,126,234, 97,103, 17, 9,167,119,129,219, 80,213,240,155, 61,178, 59,251,124, 59,164, 48, 52,193,107, 41, -116,107,100,106, 32, 2, 80, 65,219,163, 51,244,178, 57, 20, 12,122,212, 17,197, 95,205,174, 50, 54,162, 20,193,177,148,254,230, -134, 86, 57,102, 11, 50,134,214,143, 82, 2, 31,100, 28,186,180,213, 64, 20,219, 15, 85,170,140,218,128, 97,216,196, 1, 49, 58, -126, 65,221, 68,112,195, 32,157, 93, 28,156, 9, 96,212, 58, 34,255,191, 84,211,112, 13,174, 73, 36,170,238,146, 4,132,176, 81, -171, 98, 10,100,239, 74, 87,218,122,195, 56, 38, 75,157,219,159, 77, 88,103,249,192,106,149, 46,124, 93,139, 89,145,228,114,163, -138,116, 89,208, 90,177,203, 66, 71, 90,183, 55, 7,219,171,233,133, 84,233, 6,232,156,114,232, 4,192, 51,176,197,178,156,187, -170, 41,183,177,186,170,105,123,111,244,150,203,222,112,140,145, 15,113,178,135,221, 71,143,253,217, 57,210,144, 48, 78, 59, 62, -200,129,196, 39,103, 29,130,190, 56,178,195, 17,236,110, 94,102,180,186,152,136, 76, 70,252,167,124,129,106,149,185,143,201,192, - 16,206, 7,156,223,251, 52,214,181,226,252,124,196,221,123,151,120,255,221,119,176,206,179, 92,222, 44,202, 90,109,188,208,169, -248,109,219,228,196, 66,139,224, 54,208,140, 78, 31, 32,118,181,117,153,181, 52,129, 66,169,117,207,174, 46, 10, 87,130,249,138, -109,215, 90,164, 75, 23, 63,185, 28,188, 57,103,203,110, 87,171,165, 71, 20,209,162, 3, 39, 65,193,242,190, 55,143,121, 67,164, -224, 9, 8,240, 67, 50,242,158, 67, 39, 14, 83,104, 87, 74, 91, 84, 76,176,254,188, 85,187,241,238,163,103,120,239,131,140,255, -244,247,207,224, 99, 5,174, 46,225,206, 46,177, 62,155,177, 54,224,189,199, 71,164,224,241,210,213,132,233,222,125,209,158,112, - 61,213, 47,174,208,198,189, 80,222,196, 39,136,118,156, 81,127,243, 27,132, 96, 16, 79,192, 69, 17,136, 6,199,148, 43, 15, 71, -251, 38,178,236,149,207,199, 17, 87, 83, 68,123,252, 16,241,222, 61,184,152,128, 34,127, 15,122, 70, 15, 9,207, 14, 43,206,206, - 34, 15, 84,210,196, 84, 27,211, 36,252,167,148,130,200,119,178,172, 11,174,215, 5,187,253,132, 24, 35,230,227,145, 43, 19,158, -110,112,204,107, 16,144,137,226, 73,199,113, 68, 8, 35,137,126,213, 58, 40,237,114,212,194,214,186,120,202, 43, 97, 28,165, 84, -203, 87, 47,185,129, 57,147, 39, 23,185, 51,117,118,224, 14,178, 80,101, 47,128,156,138, 33,116, 62, 39,193,212,218, 29, 27,177, - 78, 5,111, 34, 16, 13,178, 6,211, 41,160,141, 73,197,114, 41, 34,189, 17,190, 54,196, 88,177,142, 51, 74,185,230,249, 74,219, - 28,125,231, 49,142,152,166, 9,187,253,153, 97,176,213,117, 36,152,109, 25,107, 59, 47, 62,237,117, 37,110,181,202, 68,174, 51, - 20,166, 50,185, 81, 45,122,219, 74, 16,156,134, 20, 19,227,110,107,164,112,162, 93, 9,198, 45, 87, 17, 45,168, 73,201, 69,244, - 61,162,113, 58, 33,134, 14, 9,206, 5, 54, 78, 34,134,171, 44, 70,182, 60,143,102,123,245, 16, 3, 82, 79, 27, 98,183,107,158, -130,156, 65, 64, 23,156,176,126,214,181,114,245,152,233, 49,119,155, 85,152,206, 29, 15, 57,219,108,225, 76,175,190,103, 99, 42, - 82,128,109, 34,224, 57, 45, 82, 65,164, 68,230, 10,171,194, 71,209,129, 24,114, 38,146,213,223, 6,212,186,210, 58,167, 94,117, -177, 14,203, 93, 88, 72,105,151,245,133, 68,194,118,179, 32,154, 91, 76,119,238,142, 69, 0, 5,167, 27, 27,126,107, 46, 58,215, - 43,157, 2,197,101, 89, 57, 89,226, 29,160,228,205,225,164,216,206, 50, 25,215,203,255, 52, 48, 45, 90,154,153,177,211,171,236, - 99,205,255,185,165,199,117,133,130, 56,111,222, 72, 77,137,233, 93,132, 50,128,195,124, 92, 49,142, 9,243,178, 10,167,184, 73, - 88, 61,200, 52, 86, 66,145,122, 33,107,107,152,166,145, 20,177,102,222, 59,185,128, 61, 21,171, 2, 34, 8, 76,126,106,173,193, - 87, 25,129,245,190,229,103,167,129,112, 11, 66,114,164,218,238,232, 77,188, 83, 34, 68,147, 2, 64,193, 55,135,219,163, 76, 1, - 98,192, 58, 47,232, 97, 75, 48,107,173, 11, 97,173,111, 97, 30,189,119,204,199,213, 14,128,154, 11,161, 45,236, 26,213,226,193, - 67, 37,240,229,170,154, 78,232, 3,125,209,205, 42, 84,137,255,219,144,163,222,109,161, 16,162,125,138,104,165, 34, 80,151, 48, - 77,131,248, 84, 9,173,112,124, 75, 29, 54,178,157,128,119,188,141,143,123,235,162,136,173,197,252,168,189, 53,185,184,217,137, -117, 84,243,158,106,133, 29,147,124, 61, 62,237,145,246, 47, 32,120,135,179,179, 17,251,157,195,223,188,245, 38, 97, 45,204, 64, -142, 17,235,146, 81, 74,197, 48, 73,166,120, 8, 78,246,103, 93,189,252,234, 63,175, 40,153,234, 97, 86,245,121, 61, 73,148, 58, -205, 37, 86,223, 48, 3,165,165, 67,231,200,189, 86, 50,179, 55, 76,175,162,109,119,187, 29,114, 41,228,124,147, 56,150, 43,188, - 69, 82,202,165, 21, 67, 64,227, 8, 56, 14,113,139,202,244,114,112, 28,111,111,205,238,148, 41,250,105,204,111, 86, 15,109,224, - 8, 76,196,126, 64, 28, 68,169,253,228,151,215,248,250,171, 47, 99,246, 1, 57, 78,112, 45, 96,184,185, 65, 15,226,133,159, 82, -192,241,184,162,246,142,101,201,200,243,140, 86, 50, 14,207,110,112,221, 60, 94,124, 81,136,105,205,121,244,245,136,254,254, 47, -224,123,177,213,150,186, 58,162, 87, 66, 96, 64,184,220,161, 92,223,152, 72,232,152, 27, 11,157,128,225,229, 87, 16,247,123, 75, -223, 42,237, 8,112,130, 49,207, 25,227, 62,144,245, 79,101, 56,187,146,234,156, 36, 93,161, 97,173,171, 93, 72,206,117, 44,243, -140, 54, 12,240, 14, 56, 30,212, 74, 40,251,194, 56, 4, 90, 17,121,126, 0, 70,169, 84,188,114,173,178, 2, 89,151,133, 77,128, - 88,191,114, 23,194, 91, 39, 9, 38,156,128,178, 90, 7, 90, 46,150,254,165,221,178, 42,192, 55,161, 90,160,173, 76,126,191,132, - 62, 21, 76,123, 15, 31,129, 50, 23,248, 24,249,253,116,172,235,102,229,148,149,141, 71, 41, 43,179, 38,202,115,152, 99, 64, 68, -170,126, 12,200,235,140, 97,220, 83,164,182,156, 8,157, 26,134, 65,112,180,103,231, 23,194,105, 63,205, 35,128, 80,229,212, 22, - 38,239,106, 51,161,159,194, 93, 2,137,107,150,212, 70,171,220,225,150,159, 25, 19, 39,107,115, 88, 41, 44, 4, 9,120, 82,160, -121,120,159,236, 66,145,117, 7,167,158, 67, 98,135, 46, 83,166, 49, 70,134,196, 4,140,211,200,181,134,112, 47,244,140, 26,167, -209,254,252, 82, 10,208,168, 70, 15, 30,190,138,182,162,150,138,228, 3,121,240, 21,165, 22, 75,139,243,102,155,109, 40,235, 2, -244, 98, 98, 55, 5,113,121,167, 43, 67,103,130,176,198,201,171,118,227,114,161,111,147, 25, 69,140,147,182, 33,207,182,134,189, -116,106,100,168, 15,210,108,151,222, 10,124,100,156,244,113,165, 59,198,111,164, 79,234,167, 36, 30, 53,160,180,110, 60, 3,249, -187,170,116,222,108,218,156, 89,184,101, 69,208,153,176,102,105,123, 44,250, 55,106,109,103, 3,188, 26,137,180,214,138,101,153, -217, 4, 39, 11,233,241, 20,154,107,232,148,211,209, 0,179, 54, 34,200,254,245,220,235, 8,223, 90, 50, 98, 91,238, 20, 91,121, -178,214,229, 33,146,196,159, 70, 90, 16,204,179, 30,200,207,214, 48,149,148, 18,188,243, 66, 49,170, 13,235,186, 98,208,248, 83, - 10, 4,206,206, 6,179, 61, 84,190,240, 58,234, 82,248, 76,136, 98, 83,147,138,180,216, 7,162,163, 51,231, 9,183,161,119, 60, - 4, 17,240, 69, 23,176,178, 74, 28, 70,185,248,114,145,252,220,186,200,165, 26, 83,192,157,187,151,112,174,227,201,227,107, 90, -211, 10,213,193, 30,173,174, 8, 94, 60,203, 2,103, 1,179,220,101,151,191, 44, 11,122, 8, 72,105,176, 7, 60,132, 77,221, 47, -187,121,152,186, 85, 59,237, 86,189, 21,156, 64, 35,141,200, 26,249,226, 88, 0, 0, 32, 0, 73, 68, 65, 84,109,227,225, 24,128, - 70,216,149,170, 48,185, 83, 30,167, 17,105, 72, 34,178,225, 47, 8,244,121, 91, 92,110,221,208,177, 90, 33,175,121,177,148, 53, -199, 61, 79, 59, 69,115,118,241,133,138,218, 55, 81,212,232,204,247, 59, 93,125,130, 16,150,136,187,247,175,240,222,219,111,226, -246,250,153,117, 28, 37, 23, 11,187, 8,222, 97,157, 15,178,155, 59,137, 77,236,246,119, 87,227, 36,195,121,234, 11, 50,139,174, - 98,118, 53, 61, 64, 85,146, 37, 35,210,184,209,149,188,116, 15, 10, 6, 81,230,127, 28, 71, 43, 58,199, 81, 52, 26,228,240,200, -158, 46, 70, 68,230, 29, 59, 30,108, 91, 55,228,108, 63, 85, 9, 18,242,222, 97,237, 13,189, 70, 94,244,180, 24,149, 44,123,176, - 90,144,210,192,159, 97,160,123, 99,198,199,239, 31,240,245,215, 94,197,203,111,188, 6,255,226,203,192,178,202,232,219,121,185, - 8, 91,199,211,219, 5, 41,120,228,219, 3, 60, 83,174,150, 53,227, 47,223,254, 16,223,254,225,207,240,223,253,243,127, 36,130, -194, 86,177,254,230, 3,248,227, 12,151, 0,248,200,208,137,142, 66,112, 78,109, 29,195,254, 28,238,193,171, 64,126, 31,235,245, - 17, 62, 38, 60,165, 35,229,165, 87, 94, 64, 79,137,147,153, 6, 31, 7,233, 54, 0, 44,115,198,245,237,130,179,125,183,239, 89, - 52, 26,213,224, 33,181,139,104, 22,168,134,243,212,189,182, 94, 80,243,113,193, 48, 80,208, 24, 35,214,121,181, 95,187, 28, 15, -242,231,122,143,188, 74, 17,144,131,184, 9, 74, 94,140, 46,214, 90,160,163, 97, 36,104, 67, 68, 69,114,209,110, 98,218,198,174, -212,135,190, 89,217,136, 25, 22,113,221, 32,221,103, 20,193,104, 72, 56,217,241,118,179, 49,169,110,165, 86,105, 16,114,150,231, - 32,165, 36,246, 92, 98, 71,117,237,163,234,229,245,184, 98, 10, 1,165,138,215,120,154,118,168, 53,227,233,227,153,123,126,121, -184,134,113,135,253,254, 12,103, 23,231,212, 48,129,152,104,153, 44, 42,146, 84,199,173,173,111, 64, 44,121, 46,219, 38, 66, 85, -146, 25,128,195,141,228,210,235, 8, 33,231,202,125,117,216,146,228, 98,226,101,189,193, 87, 20, 60, 35, 74,113, 2, 78, 92, 64, - 26, 7,158, 97, 81, 82, 2,121, 81, 6, 10,201,160,174, 5, 78, 75, 68, 64, 11, 19, 90,151,210,158, 11, 97, 10,222, 99,158, 23, - 34, 98, 87,163, 71, 10,191,188,160,215,138,146,103,123,142,184, 54,151,100, 75,134,165,200, 5,201,220,134, 46,169,151, 58, 9, -113,180, 0, 75, 58,166,179,201, 85,239,155, 91, 71,211, 21, 85,175,238, 67,132,227,228, 49,196,136,178,102,248,148,184, 18, 85, - 30,129,183, 8, 95, 37, 28,202,138, 47,152,208, 78,179,228, 69,136,183,185,193,244,159,206, 5,254,247,102, 44, 7,241,175, 7, - 54, 43,167,170,251,126,130,218, 85,184,150,183,233,109,109, 21, 81, 39, 95, 85,177,236,218,120, 21,226,180, 43, 82,140, 28, 94, -241,224, 23,146, 92, 18,197, 40,171,104, 31, 58,163, 37, 55, 85,166, 1,212,232, 53, 85,171,212,198,201, 15, 6,246,112,222,139, - 39, 49,203,203,151,215,204, 81,143,228, 78, 47,203,138,148, 18, 85,227, 17, 46,120,219, 73, 86,122,193,243, 90,120,240, 87,192, -117, 12, 41,146,189, 94,177,219, 15, 38,218, 59,222, 46,136,105,203,189,213, 56,207,200,238, 94,242,212,163, 20, 6,206,225,252, -226, 12,243, 44,233,106,243,241, 40,164, 48, 66,250, 59,197, 28, 25,157,170,223,108, 49,138, 58,154, 87,116, 32,152,199, 45, 5, -205, 96, 69, 16, 76, 49, 41, 63, 47, 29, 41,201,248,100, 35, 81, 5, 31,208,181,146,118, 32,206,208, 33,142,193, 20,222,158, 23, -244, 48, 37,140, 67, 18, 2,149, 35,213,200, 75,225,164,157,172,173, 35,214, 85,246,209,190, 99, 57, 30,101,236,222, 42, 71,202, -219, 88, 91, 20,195,178,163,212,125, 77, 43,154,137, 44, 35, 65,132, 9,227,249,125,212,218,112,118, 62, 33,250,140,119,127,252, - 35, 99,198,151,117, 38,101,140, 59, 83,122,110, 37, 39,185,155,197, 69,242,170, 87,196,152,144,215, 89, 34, 3,153,182,134, 16, -104,249, 32,185,137, 72,216,196, 78,204,249, 64,213,174, 50,145,189, 41,222,189,217,104,128,144, 6,235, 8,163, 30, 56, 44,137, - 69,232,179,219,172,155,220,165,107, 17,145, 43, 61,214,174,217,244, 5, 68,109,206,237, 22,227, 56, 89,215,163, 7,164, 56, 42, -146,237, 16,215, 85, 58,158,103,143, 22,188,122,231,101,188,244, 59, 95, 2,246, 59,100,120,184, 16, 16,210, 30, 46, 38,204, 43, -173,120, 73,220, 5, 79,110, 23,219, 9,250,105,194,107,159,124,128,223,207, 29, 88,142,232, 45,160, 35,192,173, 51,252,160,238, -128, 66,237, 9,237, 54,228,153,247,204,169, 72,147,131,165,118,224,167,143, 14, 24,135,132, 23, 38,143,128, 14, 87, 51,194, 52, -193, 59, 96, 72, 30,115, 76, 72,195,128,227,188,224,140,226,201,188,102, 84,118, 95,146, 52,213,205,142, 36,140,132,198,125,167, - 55, 38, 1,136, 87,213,181,157,121,112, 25,203,234, 67,192,202,136,223,117,145, 68, 68,231,129,117,174, 36,243, 9, 26, 86,133, - 85,165,108, 98, 52, 40,178,217,117,227,168,251, 32,130,167,198,115,137,170, 33,187,172,115,206, 86,244, 67,227, 78,163, 88,214, -116, 10,217,185,203,244, 81, 70,170,135,195, 34,239, 55, 5, 99,222, 59, 44,115, 53,152, 85,240,219,184, 83, 44,177, 51,166,105, - 39, 9,151, 41, 98,191, 63,195,186, 28,113, 56, 60, 3, 0,140,227,132,253,254, 12, 23, 87,151, 38,136,211,181, 92, 12,209, 64, - 50,250,174,136,230, 70,211,191,152, 5,193,162, 61,166, 68,152, 75,198,241, 56, 91, 51,164,236,134, 82, 86,251,218,228,207,141, -220,165, 71, 68,238,146,193,159,133,126, 45,206,123, 68, 42,172,135, 81, 8,119,167, 9,135, 33,198, 19,219,164, 92,112, 67, 10, -108, 14, 69,196, 42, 93,172,186,158,154, 9,248, 42, 5,175,130,132, 22,197,124, 94,142,146,102, 88, 50, 58,177,192, 65,228,238, -155,158, 8, 85, 66, 98, 56, 77,210, 29,178,212,142,142,140,130, 13,201,235, 44, 50, 74, 82,249,108,253, 81, 53,198,186, 24,158, -213,199,128, 97,220, 25, 80,103,152, 38,251,181,158,216,214,231, 66,172,160, 54,181, 45, 70,186,107,116, 43,163, 87,181,104, 56, - 45, 0,236,130,199, 70, 28, 52,218,160, 66,188, 26,172, 0,232, 39,147, 6,243,204,119,157, 58, 57,158, 71,222,180, 63, 33,108, -221,186,231,212,217, 57,143, 40, 66,133,110, 25,192,190, 87,172,185, 82, 21,232, 56,106,207, 39,182, 16, 37,217,176, 74, 96,119, -229, 84,176,196,111,192,187, 96, 57,188, 74,134,242, 1, 54, 94, 81,175,186,238,129, 20, 16, 2, 42,163, 83, 74,194, 23,230, 94, - 71,132,117,219,174, 75, 85,224,122,129,245,222,108,181, 86,153,104, 20,130, 99,198,239,182, 70,104,205, 89, 58, 91,239, 29,169, - 5, 28,111, 86,226, 93, 11, 5, 48, 29, 55,215, 55,172, 4,133,103,157,115, 49,101,234,186, 40, 82,148, 34, 32, 22, 48, 30,120, - 46, 97,201, 57, 37,240,117,219, 55, 13, 41, 26, 72,192, 49, 69,173,179,115,180,232, 64, 3, 82, 53, 83,116,150,218,176,219,143, - 84, 13,115,103,143,198, 48, 4,221,211,115, 92,221, 42,150, 89,146,175,188,151, 11,233,246,217, 19,174, 16, 4, 41,219, 91,101, -215,238, 76,149, 44,153,227,145, 2,168, 0,128, 47,116,235,216,221,253,180, 32, 67,199,136,123,247, 47,241,243,159,252, 0, 37, -175,204,115,119,112, 49,241,231,209, 79,188,172,162, 10, 13,209, 91,138,154,230,190,235,136,169,247,198, 60,106,190,140,221,115, - 50, 32,138,220, 13, 64, 20,141,118,232,177, 41,212,141,217,239,165, 35,225, 60, 78, 52, 27,124,225, 84,249, 30,211,176,173, 9, -194, 38,154, 3, 68, 65, 47, 22,194,194,139,200, 1,173,161, 48, 49,175, 80,172,116,172, 5,195, 48,162,205,178,227, 87, 27,229, -178,244,147,110,160, 35, 23,143,158, 47,241,197,111,254, 14,252, 56,202, 1,218,128, 52, 77, 76,253,170,120,244,248, 86,138, 32, -122,175,127,254,243,143,240,141,175, 61,129, 59,191,128,115, 14,175, 62,184,194,203, 47, 94, 97,157, 23,120, 39,121, 2,254,238, - 93,244,103,143,209, 15,139,224,115, 1,140,209, 51,116,168, 35, 57, 15,148,134,118,115,139, 94, 43,226,221, 11, 44,211, 5, 62, - 60,190,141, 16, 60, 94,185,119,142,246,244, 49,194,197, 21,106,172,104,222,163,187,128, 30, 28,110,142, 29,143,159,221,224, 69, - 92, 80,187, 0,142,198,155, 65, 93, 42,187,177, 20,165, 51, 27,166,145, 83, 18, 94,178,116, 74,172,171, 96,153,165, 91, 79,104, -181, 32,141, 35,128, 70, 23,200, 22,239, 41,232,231,100,151, 12, 36,244,140,207, 96,181,142, 5,236, 96,251, 73,106, 94,169, 5, -105,156,224, 3, 51, 5,216, 69,233,197, 37, 7, 57, 15, 99,238,247, 5,231,186, 57, 5, 34,167,110,189, 50, 84, 6, 27, 38, 57, - 37, 17,116,169, 32, 75,131, 60,204,121,209, 36,199,193,251, 64,175,189,140, 67,167,221, 25, 74, 94, 81,234,138, 97,148, 61,186, -247,222, 48,194, 62, 68,218,113, 71, 22, 47,197, 46, 19,231, 61,208, 68,219,164,207,116,109,221, 62,163,170, 60, 12,102,150, 43, - 13,113, 93, 23, 35, 48,234,101,174,251,219, 16,146,137, 12, 1,135,105, 26, 40, 88, 21,254,250, 48,136, 5,118, 24, 73,227, 12, - 50,181, 21, 16,152, 55,173, 72, 96,206,133,144, 52, 59, 71,254,178, 90,148, 21,192, 54,233,210,168,234,214, 43, 27,183,133, 19, -142, 32, 95,119,145,156,133,192,241, 56,168,124, 23,112, 76, 55, 18,164,196,255, 54,152,168,219, 57,106, 44,194,230, 25,247,155, -172, 66,217, 20,170, 18,223,198,241,160,118, 38, 89,172,179,106, 38, 78, 69,107,122,246, 74,151,236, 45,119,189,243, 60,217,184, -236,221,172,219, 22,211,234,157, 5,113,105,130,250,115,220,120,203, 35,104,112, 62, 73, 20, 12,207,237, 70, 78,139,247, 17, 13, -197,186,120,231, 52,238, 87,108,225,170, 85,171,181, 91,252,118, 87, 3, 76,111,136,173,109, 29,118,175, 29, 69,129, 50, 53,195, -117, 66, 17,152,182,182,174,217,184,190, 10, 32,208,180,170, 90, 26, 47,109, 7,201,126,103, 62, 53, 47,100,197,220,117,219, 47, - 87,184,193, 51, 68,192,243,101,237,182,167,108, 93,196, 54,109,229, 55,221,181,210,151, 15,168,201,111,147,140,116,150,232,145, - 29, 79, 94, 11,118,103,145,246, 42,111,168, 89,181, 75, 1,162, 92,175, 28, 85, 45,139, 18,224,138,249,219, 99, 10,204, 33,102, -150, 56,111, 90, 85,230,162,117,219, 77, 57, 64,118, 60,158,182, 17, 45,144, 20, 11, 25, 37, 68, 6, 65, 80,126,138,137, 45,165, - 32, 48,154,181, 41,218,211, 65, 4, 78, 94,178,197, 83,146, 47, 56,141, 73,148,242,189,161,148, 5,193, 71, 98,122, 43, 2, 21, -246,138, 92,172, 69,188,189,206,129,223,219, 1,228, 94,200,131,210, 96, 35, 68,157, 28,120,175,213, 34,137, 97,105,144,206,208, -121,196,221, 11, 72,103, 47,194, 59,224,234,206, 25, 98,200,248,205,207,223,230, 67, 4, 94,204, 20,146,148, 66,143,184,208,219, -164, 88,113,182, 98,144, 76,112,165,250, 17, 85,203,188,108, 9,193, 73,219, 10,161, 53,171, 76, 79,131,130,122,239,116, 98,200, -190, 30, 78, 34, 32, 59, 39, 54,206,188,165,242,191,249,184, 97, 63,245,251,116, 54,114, 85,170,220, 74,201,170,188,112,226,102, - 40,180,178,116, 75,150,130,243, 88,151,102,221,253,178, 44,219,216,222,235, 5, 18,112,253, 40,224,239,127,243,247, 4,122, 20, - 2, 92,111,168,101, 97, 88,144,195,188, 44,248,179,239,191, 9,133,131,123,239,241,203,223, 94,227,248,236, 6,187,105,148, 92, -119,186, 50,128,142,114,115,131,190,204,200, 31,124, 0,248, 0, 87, 42,133, 56, 29,107,237, 24, 61, 53, 8,154,152,117,156, 49, -125,238, 13,248,221,132, 31,124,231, 77,212, 14, 12, 41,226, 19,191,251, 57,132,203, 61, 16,100,140, 92,214,140, 86, 37,194,248, -250,120,131,181, 44,200,101,130,207, 78, 60,239,218, 1,195, 89, 55,182,121,177,229,179,179, 41,140, 33,211,194, 9,154,147,251, - 66,105, 43, 56,174,141, 92,115,201,217,146, 73, 73,243, 33, 26, 51,219, 57,111,133,161,115,162, 65, 9, 49,160,173,213, 84,217, -185,213,109, 34,208,157,132,187, 48, 93,175,219,243, 35,121, 15,202,203,214,139, 77,237,110,195,176,237,232,157,247,104, 37, 83, -217, 47,226,209,198, 88,100, 69, 19,215,162, 25, 18, 30, 61, 55, 19,105, 30, 15, 7, 92,221,185,195,181,219,128, 28, 87, 76,187, - 51,180, 54,224,236,252,130, 34,204, 96, 19,162,222,157,141,225,117, 84,172,211,192,117,201,156,222, 84,243,208, 55,142,233, 15, -183, 51,214, 92, 12, 2, 86,171, 76,169, 50, 81,176,142,142, 37, 79, 22,123,136, 9,105, 72,240, 46,216, 69, 40,142,152, 38,226, -198,148, 12, 89,235,131, 76, 74,210, 16,217,217, 11,199,161,228,138,204,203, 58, 70,209, 44,121, 47,228, 76,160, 97, 94, 51,224, - 58,230,227, 81,206,117,231, 44,227, 99,229,100, 86,222,167,106,239,145,186, 16,212,237,163, 88, 99,199,192,156,238, 28,156, 50, - 36, 66,223,210,245,200, 10,209, 40, 82,109, 46,123,231,165, 91, 79, 51, 48,164, 10,171, 6, 9,146,117,142,210, 38,211, 48, 80, - 4, 39,204, 14, 79,234,169, 93,226,132, 36,169,223, 92,160, 73,141,252,170,211,112,171,254, 92,247,173, 54, 32,239, 2,116,113, - 72, 58,199, 73,184, 21, 51,225,187,183, 4, 75, 45, 60,236, 50,167,243,199, 84,248,174, 99,158, 15, 76,188, 27,184,131,207, 54, -105, 81,225, 93,244, 54,122, 23,251,202, 48,141, 84,160, 75,114, 82,140,226, 95,238,173, 81,177, 9,190,144,218,221,121,120, 38, - 31, 41, 10, 79,255,125,235, 64,173, 14,105, 8, 28,219,108, 1, 13,173,117,233, 64, 72,121, 26,134,168, 42,127,169,142,107, 39, - 45,174,218,139,172,135,166, 38,197,213, 69,254, 30, 87,156,253,125,178,215,246,198,107,214,177, 95,229, 74,161,243,146, 62,222, -206,155, 32,171, 85, 6, 4,136,170, 28,189,161,172,178, 31, 86, 70,120, 91, 5, 46,163, 73,104,170, 18,239,167, 49,162, 58,246, -161, 82, 18,157,176,149, 38,123, 32,233,194, 59, 74,151,188,114,129,199,109,228, 36,157,190, 8, 76, 78, 30,242,154,133,194, 20, -131, 71, 26,130,140,154,233,217,172, 37, 19,119, 41,213, 95,240,226, 52, 80,254,118,205, 43,202, 50,147,227, 76, 0, 8,147,127, - 53,141,168,210,111,153, 56, 26,243, 33, 81,233,206,212,184, 56,226,234,229, 47,162, 54, 96,127, 57,226,238,253, 11,252,244,175, -191, 71,165,106, 19,255, 63,161, 50,153,161, 2, 26,166,208,171, 80,246,132,134, 36,246, 53,101, 33, 58, 78, 20,164,171, 78,128, -226, 42,153, 0,166,225, 47, 49,170, 81,203, 25,182, 52, 70,137,106,140, 62,108,168, 71, 34,126, 7, 83,169,107,148,163,179,130, -204,161, 33, 70, 66,120,208,129, 70,129, 35, 9, 86,162,110, 46, 28,101,174,214,137,128, 49,162,202,224,246, 70,225, 74, 38,164, - 25,134, 36,194,163,214,241,232,227,138, 47,125,254,139,120,229,181, 7, 40,243, 44, 22, 30, 39, 71,132,226,110,255,226, 47,222, -193,207,222,251,173,105,182, 99,111,120,122,155,241, 87,223,127, 11, 95,251,242,171,136, 47,221,151,200,221, 14,212,155, 3,240, -155,247, 17,122, 67,109,128,207, 69, 62, 63,239, 17, 18,215, 17,206, 35, 6, 57,208,251, 56, 34,125,226, 21, 52,239,112,115, 61, -227,207,127,252, 30, 98, 12,248,196,131, 43,156,159,203,216, 81, 97,250, 18,155,156, 16,207,207,112,243,211, 15, 48,164,104,103, -129,135,176, 13, 74,165,136,150,142, 22, 9,176,144,203,168, 46,213,214, 46, 27, 39, 66, 45, 87,242, 46,170,127,222, 19,246, 34, - 7,124, 70,107, 43,166,221,132, 14, 41, 62,133,255, 30,237,157,146,115, 66, 46, 94,193, 59,207, 82, 36, 54, 78, 3,201, 23, 55, - 71,137,121, 19,156,112,181,243, 44,127,191,238, 63,157,183,164, 73,213,229, 52, 69,117,118,152,146,188,179,155, 15, 1, 8,209, - 33, 31,138,193,160,182,221,113, 53,103,128, 82, 16,151,229,136,221,254, 12,232, 30,251,253, 30,193,123,248, 0,236,246, 98, 95, -243,126,115,101,140,187,105, 91, 93,114, 93,133, 34, 7,232, 56, 13, 40, 89, 64, 56,250,123,156, 83, 16, 87,182,207,106,158, 23, -230, 81, 44, 38, 52, 21,218, 88,226, 5,226,204,137, 80, 93,181,142,125, 24,101,213, 34,151,249,198,200, 71,239,216,237, 71,211, - 67,233, 69,234,188, 52, 45,165, 52,228,163,116,219,215,207,142, 6,142,169,181, 72, 56, 23, 69,184,193, 98, 97, 35,167, 94, 91, -156,106,111, 13,185,108, 34, 99, 43,114, 20,158,194, 70, 72, 5,103, 29,133,107, 10,143,214, 43,130, 11, 54, 33, 85,167, 15, 84, - 56,200, 34,221, 17,119, 13, 50,228, 37, 6, 91, 86,164,211,217, 37,179, 5, 28,163, 78, 43,139,127, 13,227,169,114, 95, 52, 90, -110,241,252,100, 70, 39, 29,142, 23,177,174,150,106,237, 34, 92, 85,115,123,239,164,204, 61, 63,154,215,187, 79, 87, 62, 50,153, -137, 0,167,185, 91, 1, 41,171, 37, 84,253,239, 13,142,103,144,234,190,148,208, 87, 74, 35,161, 81, 46,246,232,122, 19,225,129, - 99,215,205,195, 53,112,175, 42, 7, 93,197, 56, 73, 68, 94,201, 84,162, 71,226, 78,157, 67,173,126, 75,238,105,250,195,106, 4, - 70,200, 97, 63,142, 35,173,155,225,249, 49,189, 86,218, 76,128, 67,174,162, 94, 79, 1,153,130,180,224, 55,102,113,107, 2,140, -145, 8, 64,143,227, 49, 99, 28,101, 44, 5,250,151,229,128,245, 70,147, 26, 71, 9, 88,105,185, 96, 89, 86, 28, 15, 7,217,241, -179, 48,169, 57, 91,130, 84,201, 98, 81, 18, 76,102, 55, 53, 98, 39,191, 89, 70,201,110,203, 21,143,218,145, 83, 97,206,180,181, - 90, 42,134,193, 97, 93,178,140,186,155, 88,168,214,121,133,247,224,218, 66, 70, 41, 62,108,211, 4,101, 43,131,105, 71,195, 40, - 85,115, 26,162,225, 82,117,236, 23,130,162,111,165,184, 40,244,173,246, 38, 16,133,229,120, 96,199,228,184,131,118, 38,118,145, -206,181, 98, 72,147, 85,156,162, 8,149, 49,156,129, 25,134,187,112,195, 29,248,218,112,118,190,131,111,183,248,224,231,239,152, - 56,175, 45,178,183, 55,146, 26, 59,180,154, 87, 50,180, 69, 89,110, 38,118,118, 59,232,149,110,135,184,225, 21,109, 69, 34,227, -220, 24,189, 60,168,156,108,196, 52,112, 29,147,172,144, 82,246,186,217,246,156, 38,170, 37, 75,116,219,146,153, 40,214,227,184, - 82, 20,235, 84,220,215,188,101, 31,215, 76,221, 65, 55,171, 78, 34, 71,255,212,227,139,222, 48,142,227, 9,207,187, 97, 62,116, -164,114,134,207,126,234, 5,212,117,209,250,156,153,210,210, 37, 62,126,122,139,255,248,189, 55,101, 76,215, 58,134,224,240,223, -252,241, 23,240,191,125,231, 29,252,187, 31,255, 10,159,189,191,195,221,243, 61,112,117, 71,138,192,195, 13, 80, 42, 48,142, 24, -175, 46,208,142, 51,218,113, 69, 28,165,200,139, 67, 64,175,194, 7,240, 99, 66,250,228,107,112,204,138,255,187, 55,127,129,135, - 79, 15, 40,181,225,139,159,125, 0, 23, 19,124,175, 6,240,112, 46, 96,184, 56, 71,237, 29, 31,252,230, 17, 62,251,233, 87, 81, -251, 99,160, 74,135,164, 90, 24,225, 5, 84, 91,135,152,243,197,203,180,226,226,242,156,144, 20,254, 60,216, 69, 62,199,216,166, - 98, 61, 4,143, 74,148,112, 41,149, 23, 70,198,178,136, 39, 61,198,136,117, 93,105, 67,114,182,215, 86,224,139,163, 61, 84, 46, - 97,181,182, 58,218, 31,229, 18,247,209, 99,152,188,117, 66, 33, 6,212, 6,243,105, 59,174,233,210,232,133,128,217,229,235, 20, -203, 28,125,195,126,179,103,174, 89, 82, 12, 29, 17,197, 49, 6, 1, 98, 81,144, 39,142,152,163, 92,150, 65,198,216,206,203, 4, - 41, 4,103, 46,151,148, 34, 71,218,142, 14, 32, 7, 84,153, 8,148,156,145,198,100, 93,185,106, 75, 66,144, 70,105,153, 23, 91, - 31,109,239,146, 20,241,181,201,229, 36, 2, 53, 79, 66,154, 60,171,203,154, 49, 12, 9,195, 48, 98,156, 38,164, 52,112, 21, 34, - 86,220,152, 18,198, 73,247,233, 73,156, 66,156,154,138,165,183, 88,174,251,186,172,116,178,208,249,193,159,161, 93,240,165,162, - 58, 25,149, 47,243,108,240, 21, 79, 12,182,216,219, 58, 3, 85,156,173, 82,117, 90, 37,218,130,245, 36,167,222,157,196,155,246, -173, 97,169,213,166,162,114,142,202,132, 6,158, 57,232,100, 79,200, 58, 71,206,202,221,254,194, 70,240, 42,214,117, 0, 90,203, -230, 38, 16, 24, 76,149,105, 18, 33, 66,178, 14,177, 91,203, 28, 57, 50, 74,167, 69,205,235,162,157,161, 48,206,211,218,173, 13, - 73, 55, 24,141,131, 19, 76,173, 11, 38,166, 83, 82,161,138,252,132, 7,179,110,182,186,214,224, 66,148,142, 28, 10,213,146, 41, -151, 48, 52,152,149,225, 61, 98,229, 72, 81, 48,161, 30, 46,136,112,165,181,134,192, 12,110, 31,100,166,175, 30,116,221,179,234, - 56, 74, 8, 60, 14,109,110, 38,158,144,177,151,167,130,209,111,227,214, 78,101,164,146,148,186,238,173,202,137, 42,149,240, 26, -223,183,124,116,215, 57,174, 11, 40, 69, 70,218,243,177, 96,127, 54,178, 74,115, 38,126,209, 67,118, 24,252,166,140,102,100,146, -118,152,203,113, 62, 49,237,119,250,123, 29,230, 69,186,183, 82, 42, 43, 80,237, 72,155, 78, 64, 76, 36, 7,200,132, 66,172,126, -234, 57,231,232,175, 22, 34, 18,219, 22,120, 95, 10,119,138,133, 4,165, 78, 49, 76, 51, 70,180,122, 97,161,252, 98,205, 66,231, -223,229,221, 73, 82, 90,173,240,157,157, 16, 11, 10,181,169,101, 22, 92,157, 93,205, 48,122, 3,186,232,239,143, 12,243,208,203, -212, 7, 73, 10, 50,128, 10, 60,206,238,191,129, 90, 26,246,103, 3,238,189,120,129,119,126,240,239,165, 35, 45,153,187, 68,111, - 59, 34, 81,166,242,226,236,186,167,118,220, 1,121, 11,229, 64, 55, 11, 51, 17,186,222,246, 96,202, 54, 22,177,161,124, 94, 33, - 68, 3,131,216, 56,215,235,136,204,219,244,194, 83,180,225,135,141,196,167,187, 97,199,112,136, 90, 86,142,215, 42, 74,209,103, -160,146, 64,119,106, 67,113,246, 94, 32,240,197,118,222,184,241,137,151, 67,136,220,117, 51,174,245,246,105,197,183,190,254, 6, -198,216, 81,111, 30, 3,113,196,120,126, 97,246, 30,180,140,111,127,231,111,240,219, 71,215,102, 57, 42,181,227,234,108,196,223, -251,252, 3,252,139,255,248, 54,254,252,157,143,241, 15,239, 94, 74,145,229, 60, 92, 89, 49,220,189,196,238,149, 87,144, 99, 68, -155, 23,244, 52, 0,143, 62, 6,142,183,232, 49,194,237, 6,184,251, 47,194,143, 3,192,209,220,237,237,130,239,254,213, 47,208, - 1,140, 67,196, 23, 63,255,170,124, 14, 33, 34, 12, 1,173,103,189,190,208,225,240,244,201, 53,190,244,149,215,240,214, 47, 31, -113,212,183,200,196,134, 7,211,154, 89,144,214,138,222, 35,122, 43,232,193,145, 77,190, 96, 24, 7,138,185,154, 77,200, 58, 58, -227, 75, 97,106,248,249,120,144,179,160,214,109, 77, 69, 59,155,115,128,219, 57,179,178,118, 66,148,224, 60, 82, 26,248,220,119, - 11, 24,233,144,206, 74,246,171,178,142,242,129, 22,192,238, 17,124,180,240,164, 97, 8,166,250,150,226, 3, 22, 19,220,114, 59, -225, 40,248, 19,216,144,104, 82, 28, 96, 2, 52, 27,153, 86, 25,255,251,238, 25,226, 35, 14, 14, 9, 0, 74,184,184, 58, 63, 89, - 91,200,249, 52,140, 35,243, 41,146,101, 44,196, 24, 81,242, 44,151, 61,188, 9,199, 10,227,162,123,151,145,124,161,134, 72,197, -153,226, 42,170,198,202, 16,226,163,114, 37,136,128,109, 98,167,219,237,247, 24, 39,241,201,135,152, 4, 84,147, 51,198,105, 36, - 51, 32,156,164,211, 53,148,220,120,161,175,146,235, 78,255,123,111,186,251,173, 12,103,145, 2, 57,175,153,225, 79, 2,124, 58, - 28,142, 8,222,203,116, 37, 8, 83,162,209,142, 90, 40,146,211,219,140,122, 85,227,156, 11,237,173, 89, 4,179, 34,111,225,188, -129,166,100, 75,236, 24,186, 83, 41, 36,222,108,184,154,207, 46,226,229, 29,210,160,232,236, 77, 65,174, 2, 52, 93, 23,128, 26, -141,118,162, 84,119, 94, 26, 6,237,214, 37, 47,194,155,232, 87,245,246, 50,197,225,180,248, 36,205, 82, 52,105, 39, 25, 40,236, -206,133, 93,208,100, 91,228, 20,157,171, 97, 49,242,123,106, 43,136,113,148,203,157,231,126, 46, 43,134, 97,162, 11, 68,112,215, - 18,120, 84, 41, 8,236,136,211,126,111, 8, 70,169, 14, 68,241, 59,237, 70,212,186,193,251,117, 28,166,220,118, 37,199,137,224, -204,157,240,131,163,197,176,250,230,249,226,117, 19, 72,169,208, 64, 5,108,178,255,109,150,175,155,213,111, 87,165, 26,143, 12, - 47,200,107,165,101,163, 73, 78,251, 34, 23,199,241,152,205, 62, 97, 99, 15,170, 84,199, 49,114, 95, 75, 6, 47, 36,148,101,156, - 18,106, 73,104,213,155, 31,178, 86,142,214,209, 33,192, 32,103, 56, 90,201,158,119,152,231,197,112,164,162, 92, 36,254,149,226, - 20,245, 54,107,138, 79,163,160, 67, 42,173, 76,143,181,140,222,165,138, 84,253, 2,184, 91, 92, 17,169,244,244, 65,198,116,145, -194, 20, 29,173,201,231, 73, 50,104,136,176, 53,234, 56,200,215,223, 42,187, 13,142, 98,125, 55,204,173, 50,148, 45, 93, 73,145, -154, 33, 48,217, 77, 60,245,181,118, 9,131,153,238,163,226, 12,206,117,156, 95,236,113,124,250, 17, 30,127,248, 43, 1, 76, 48, - 0,166,214,186, 97, 81, 21,196,172,176, 7,136, 31, 85,212,234,133,161, 52,167,153,238,196, 94,178,144, 83,177,164,248,248,171, - 8,210,204,103,235,140,126, 21,153, 34, 40, 23,188,252, 12, 67,140,132,201, 68,122, 82, 97,187, 85,215, 43, 65, 30,149,171,149, - 21,181,172, 40,153, 94,222,214, 81,212,227,172,151,118,154,136, 63,222,152,223, 29,206, 98, 26,149, 21,239, 29,217, 2,112,120, -242, 48,227,171,159,123, 3,175,191,114, 9, 31,128, 60,238, 81,253,136, 56, 36,187,192, 62,250,232, 26,223,255,209,187, 82, 64, -215,138, 94, 43, 14,185, 32, 31, 14,248,189,207,188,128,127,251,163, 17,255,238,239, 62,194, 11,251, 17,191,251,153, 35,250,197, - 30,253,206,125,196, 59,231,104, 44, 12,252,217,185, 36,178, 5, 7,196, 8,119,255, 1,194,249, 5,124,244, 72,193,163,176, 51, -248,211, 31,188,139, 15, 63,190,134,243, 14,159,126,229, 46, 94,188,119,137, 94, 10, 48, 36,204,135,133, 29,144,140,215,231,249, -136,103,207, 14,184,119,239, 14,218,207,219,134,163, 12,160,213,170, 24,193, 49,232, 74,137, 5,103, 45, 21,227,180,229, 41,228, -156,177,219,237,182, 40,206,147, 9,147,228,207, 15, 88,230, 3, 61,225, 51, 66,216,157,228, 5,204, 22,198, 33,214, 81,141,103, -246,204, 45,168, 20,222, 10,195, 28,212,150,168,251,196,249,184,157, 97,211,206,166, 5,165, 86,218,186,100,250,151,115,179, 8, -103, 89,231,101,114, 28, 68, 36, 28, 57,120, 85, 92,168,178, 49, 84, 67,227, 24, 11,173,239, 66,229,249, 57, 31,143,152,118, 19, - 82,218,227,236,252, 92, 20,237, 76,213,146, 46, 61,217,243, 44,190,113, 9, 91,114,222, 99, 8,129, 56, 80, 89, 51,138,235,166, - 96, 62, 30, 45, 47, 91,221, 64,235, 42, 35,120,229,188,139,248, 75, 46,116, 13,113, 42,165, 98,127,182, 71, 76, 35,166,157, 92, -232, 29, 78, 38, 14, 94,220, 63, 66, 0, 28,204,246, 53, 31, 23,115,148,172,107,198, 45, 25, 30,153,194, 60,205, 57,208,226,119, - 93, 87,148,188,178,147,150,162,119, 89,229,217,210,127,102,114, 62,180, 96,232, 22,207,123,130, 60,213,115,181,109,211, 29,157, -236,168,184, 44,192, 61,135, 9,215,105,218,105,228,177, 94,218, 14, 64, 28, 39,122,237, 71, 22,229, 48, 11,176, 22, 71,186,138, -172, 85,128, 63,121, 93,184, 51,239,128,219,154, 87, 89,225,200, 63, 79, 57, 30,138,105,214, 53,144,142,219,197, 89,227, 21,130, - 7,205,109,235,246,164, 59,115,109,169,165, 82, 58,240,141, 22,232,157, 76, 45,156,247,228,205,119,190,139, 43,156, 19,177, 97, - 74,129,186, 40,191, 69,161,119,120,227, 93,151, 70, 95,104,223,124,227,150,124,229,229, 5, 23, 91,153, 67, 74,130,128,117, 74, -187, 9,178,227,170, 76, 68,242,188,112, 26, 65, 50,189, 59,100,142,195, 91,151, 95,191, 46,133, 98,187, 72, 28,106, 21, 97, 17, -167,165,235, 90,224, 73,110, 18, 43, 82, 64,206,242,226, 13, 99,218,136, 59,140, 3, 45,165, 97, 28, 2,179,122,189, 21, 34,133, - 66, 26,169,192, 28,197, 32, 3,242,178,176, 67,117,100,184,139,226,114,152, 18,242,202,204,229, 20, 49, 31,229,161,157,166,145, -248,220, 77, 89, 89,203,150,227,171, 80,148,218, 52,232, 3,132,156, 56, 11, 35, 80,155,148,176,207, 25,211, 23,228, 7, 38,185, -242,114,232, 76,187, 9, 41,146, 85,205,189,115, 55,150,177, 55,143,101,181,108, 93,249, 26,242,154,229, 80,163,157, 78,188,242, - 5, 49,137,130, 84, 4, 38,222,226,101, 53,189, 74,217,221, 62, 70,132, 36,163,163,241,206,167,209,152,173,253,194,189, 51,188, -245,189,239,152,144, 81,213,175, 10,143,240,126,115, 71,200, 51,145, 25,152,224,233,245,230, 14,191, 9,227, 89,198,138,209,178, -205,245, 65,118,188,220,225,196, 71,154,232, 15,246,118,225,122, 30,222,180, 8,186, 45,215, 60,198, 72, 47,181,132,241,232, 36, -166,183, 6, 71,174,115,111, 5,173, 74,142,124, 74,137, 19,162,141,222,148, 98, 2,188,130, 51, 50,162, 22, 20,250,156, 41,166, - 82, 45, 42, 85, 85,203, 1,231,195, 29,124,245, 83,151, 72,243, 45,250,221, 7,136,251, 51, 17,116,213, 46,120, 87,231,240,237, -111,255, 24,183, 7, 57, 8,255,233,215, 94,197,211,103, 51,254,239, 55, 63,196,245,245,130, 59, 83,196, 63,251,250,107,248, 31, -191,243,115,252,239, 63,254, 53,194,217,132, 47,125,234,147,162, 92,166,212,102,205, 21,111,189,249, 75,124,249,181, 61,166, 94, -225, 94,125, 13, 97,218,163, 66,196,164,203,154,209, 93,192,159,254,217, 91,248, 15,223,127, 7,206, 75, 17,244,205,111,124, 78, - 60,196,168,240,124,159,186,115, 88,142, 11,144, 59,150, 34, 29,105,138,170,127,225,180,206,156, 26, 26,158, 34, 63, 67, 15, 57, -180,208,186, 5,168,168, 11,193,169, 58,153, 7,105, 74, 17,199,227, 98,187,118,231,130,137, 11,107,150, 98, 58,141, 9, 46,175, - 18, 78,210,142,166,186,238,229,180, 83,151, 11, 62,151,133, 83, 18, 57,204, 53,139,188,163, 25, 24,165,201, 75,136,200, 78, 43, -210,129, 33,249,214,206, 34, 47, 59,247,253,122,192,250, 32,221,154,142,190, 51, 51, 25, 26,173,117, 53, 55, 25,157, 86,153, 44, -232,232, 93,180, 73, 29,203,124, 4,250, 29, 76,251, 9,251,179, 61,150, 69, 32, 61,121, 93,101,133, 73,145, 94,224, 94, 95,243, - 15, 44,160,200, 1,165, 74, 92,168,192, 71, 86,131,112, 9, 12, 75, 68,103, 57,103, 59, 75, 98, 76,180,123,146,151,193, 3,116, -154,118, 56, 59,191,192, 56,141, 44,108,154,137, 88,135, 97, 16,171, 40,243,212, 3,133,121, 57, 23, 89, 25,242,239,138, 76,171, - 43,156,154,229, 53,139,221, 49, 23,155,252,105,167,156,115,182, 14, 62,115,132,110, 60,246, 86, 49,207, 43, 5,113,206,166,114, -122, 73, 27, 92,135, 8,238, 83,225,165,103, 81, 45, 43,196, 96,107, 93,121,150, 54,251, 87,253,255,233,122,147,103, 91,178,243, -186,111,237, 46, 51,207,185,247,190,174, 58, 20, 88, 68,161, 33, 1, 82, 12,137, 22, 41,202, 38,105,133, 7, 30, 40, 60,176, 35, - 60,245,208,255,155,103, 14,207, 28,242, 64,161,144,108, 90, 38, 77,147, 4, 9,130, 68,145, 42, 20, 0,162,250,238, 53,247,222, -147,153,187,243,224, 91,223,183,243,210,225, 1, 2, 64,189, 87,175, 57, 39,115,239,175, 89,235,183, 88,184, 77,211,132,105,158, - 44,225,174, 59,200, 59,196,223, 79, 18,226, 26,249, 12,109,144,248,232, 36,176,110, 91,181, 83,125,136,249,164,176,108,104,189, -176, 41, 26, 92,248,238,250,129, 40,231, 44, 17,210, 49,188, 74,215,147,206, 41,116, 7,195, 54, 71,221,135, 2,147, 70,228,173, -116, 97,185,238,140, 94,237,214,145,135, 32, 43,141, 41,137, 24,184,100, 57,211,162,178,126, 69, 98,223, 45,208, 93,114,164,147, -229,148, 59,218, 14, 60,247, 31, 98, 73, 83,235,138,228, 80,203,206,202,219, 72, 69,227, 21, 21, 90,163, 81,129,222,115,204,222, -196,170, 85,155,140,172, 36, 60, 32,152, 48, 79, 41,103, 82,205,102,139,239, 3, 41,120,206, 7, 44, 41,202, 5,163,249,239,193, - 97, 62, 49,123, 59, 38, 10, 92, 60, 16, 58,106, 1,243,187, 69, 44, 87, 91, 55,225,219,216,179,192, 84,177,197, 59,134,219, 36, -193,228,170, 8,200,201,174, 92,198,208,237, 1,167,221,123, 80,244,231,135,154, 19, 13,101,247,104,173, 24,156, 68, 72,110,145, -161, 5,224,231, 47,224, 26, 13,125,240, 28, 77, 6, 79, 88, 72,235,140,185, 12,134, 27, 84, 46,126,201, 5,251,186, 49,108,198, -141,209,189, 87,177, 82, 51, 81,204,176,149,193, 70,214,114, 81, 10, 1,173,163, 34, 93,189,141,238, 79,240,189,227,241,211,107, - 92,158,127,140,231, 95,124, 66,199,152,224, 91,107,173,210,203,180, 6,159, 4,134,160,208,155,224, 3,242,190,201,180,130,227, -119,231, 28, 34,161, 24,145,244, 44,229, 64, 74,244,163,120,133,131,218, 52, 90,135,143,225,128,239, 4, 33, 28,222,108,145, 70, -153, 67,103,220,109, 99, 55,145,109,173, 32,157,132,240,202,189,235,112,196,240, 74, 40,134,178,157,163, 5,214,168,218,125, 89, - 78,166,109, 80, 48,146, 99,130, 89,201,178, 47, 60, 93, 93, 33,165, 19,126,254,254, 5,255,250,247,222, 65, 42, 43,240,218,155, - 8,143, 30,115,124, 91,225, 90,199, 52, 69,188,248,228,115,252,229, 95,255, 12,235,190,227,119,127,245, 41,126,255,159,189,139, -255,237,143,127,138,105, 74,120,121,183,161,191,126,198,175,190,113,131, 63,248,238,235,248,163,159, 63,199,255,252,127,255, 12, -191,191, 59,252,225,239,253, 26,150,229, 10,190, 3, 95,127,117,135,255,229,223,254, 37,254,199,255,254,247,240,237,119,223,130, - 75,147, 20,125, 78, 86, 12, 47, 46, 5,255,230,223,254, 25,222,251,224, 51, 9,183,241, 30,191,249,189,183,240, 43,223,124,138, - 38, 97,235,104,165, 89,247, 85,107,197,253,203,231,184,253,252,115,220,221,175, 56,159,102, 89, 5,133,113, 0, 58,230, 37, 40, -123,194, 4,157,173,195, 5,216,231,163,169,119,122, 48, 5, 47, 93,227,190,151, 17,211,217, 14,180,182, 16,225,107, 69,105, 13, -177, 3, 62, 38,148,114,129,144,117,212, 79, 62, 33,196,201,118,242, 18,127, 43,142, 10,207,162, 81,109, 79,137,157,160, 11, 30, - 49, 58, 59, 71, 66,244,134, 84, 21, 91, 89,192,229, 66, 10, 37,134,173, 86,221, 45,242,190,203,143, 43,165, 45, 67, 41,147,221, -214,145,165,102,138, 85,165,107, 10,244, 89,106,129,217, 58,112,253,232,138,206, 28, 78, 13,157, 51,191,123, 74, 9,219,101, 53, -203,154,172, 56, 59, 59, 52,185, 96, 45,103,156, 0,158,187,187,141,241,206,156, 88,248,104, 19,188,209,169, 59,156, 78, 39, 44, -167, 43, 78, 26, 61,182,109, 19, 31,250, 36, 34, 57,141,112,245,156, 50,237, 91,198,186,110,242, 14, 57,221, 85,123,177,198,214, -202,127,222, 57,165, 45, 54,177, 48, 46,126,161,149, 77, 39,190,156,202,185,131, 24, 88,181, 24,181,140,244, 70,109,122,156, 93, -156, 13,153,207,167,242, 43, 42,253,234,129,231, 84,107,157,124,134, 38, 46,168,224,140,107, 63, 77,147, 1,170, 4,113, 13,218, -126, 29, 39, 53,195, 26,233, 32,127,174, 74,101,254,122,185,151,245, 32,241,185,253, 31,141,210,161, 78,248, 16, 6,190,186,107, -163,218,216,173,247,193,203,111,221, 82, 49, 97, 74,127, 79, 69, 59, 56,241,109, 66, 83,116, 1,206, 41, 6, 54,142, 60, 11, 21, - 18,187,225,230,208,130, 71,185, 49,165, 85,248,220,141,217, 18,197, 70,162,251,139, 38,130, 11,163,225, 59, 42, 5, 37, 22, 48, -164,196,241,172,136, 35,224,100, 87,187, 94, 54,104,199,175, 54,148,152,102,120,126,137, 41, 9, 35,215,123,143, 56, 37,115,190, -116, 38,106,113,129, 76,168,130,164,209,120, 99,133,203, 14,102,223,170, 5, 26,104, 88,252,148,196,195, 41, 22, 12,143,137, 22, -140, 24, 60, 64,171,204,188,200,143, 93,238,183,113,113, 83, 1,223,154, 60,172,178,183,146,191,239,188, 76, 12,177,232,164,212, - 77, 36, 74, 37,219,209,224,128,144,236, 61,153, 71,177,115, 84,236, 89,116,200,175, 81, 49,207, 39,236,105, 67, 43, 5,181, 38, -120,215, 12,134,161,190,204, 64,178,211,188, 8,138, 52, 77,226,229,158,230,201,216,201, 2,158,144,142, 76,147,154, 4,204,211, -121,151,137, 88, 13,222, 35, 38,201,169,167, 76,153,251,217,209,241,118, 19, 96, 84,132, 56,153,119, 58,120,143,210, 60,166, 39, -223,198,158, 27,174,174,102,188,246,250, 25,127,245, 31,254,157, 84,251,101,248,182,197,182,230,232, 67,110,166, 2,110,252,140, - 28,228, 66, 85,132,109,239, 29,133,234, 99,249,254,229,223,117,222,141, 73, 4,139, 51,167,150,197,218,224,101,242,218,158, 0, - 0, 32, 0, 73, 68, 65, 84,217, 49,136,125, 18, 22,238, 18, 40,182,234,202,223, 5, 5,136,196,230,202, 97,180,171, 95, 83,242, -152, 21,253,169,144, 31, 90,127, 60, 71,120,150, 87, 60,157, 72, 22, 12,182,147, 31,137,111, 34,144,115,206,227,116, 58,227,171, - 47, 51,190,245,198,155,120,237,236,208, 79,207, 80,211,130,169, 73,100,169, 10,126,252,237,115,252,249,127,252, 43,220,174, 25, - 79,174, 22,252,215,191,243, 46,166, 41,162, 57,135,101,158,112,187, 22,209,101,132,128,127,245, 91,223,196,167,119, 25, 31,188, -216,240,199, 63,250, 5,254,238,103,159,225, 15,254,249,119,240,253,239,125, 3, 79,159,156,240, 63,252,119,255, 18,175,191,245, - 4, 13, 82, 48,191,120,117,193, 39, 31,127,133, 15, 63,121,142, 31,191,255, 41,110,137,156,141, 33,224, 59,223,120,130,255,234, - 15,254,137,116, 80,154,130,230, 52, 50,147,200, 79, 52,124,241,213, 45,166,232,209,246, 77, 8,121, 36, 47,182, 14,236,185, 32, - 17, 50,163,152,230,125,207, 12,103,146,142, 95, 97, 56,145, 1, 31,173, 85,116, 68,139, 40, 85, 45, 71,182, 80,138, 9,121, 95, - 57,209,171,156,210, 13, 17, 91,154,228, 80,142, 81,253,235,193,214,108,177, 70,130, 90, 64, 36,114, 28,124, 8,254, 29,189, 53, - 13,212,210,168, 0, 56, 70,166, 19,118, 11, 45,105, 20,123,201,251, 10, 76, 44, 56,203,182,217,251,165,218,147,214, 33, 46, 14, -218, 72,119,166, 92, 10, 59,165, 96, 94, 78,164,150, 73,227, 50,207, 34, 48,214,115,196,178,200,117, 66, 26,101,157, 86,115,230, -231,221,140, 80,184,239, 59, 53, 23,242,207, 50,193, 81,149,136,105,231,165, 51,247,212, 94, 72,176, 74,199,245,205, 13, 98,228, -229,230, 3,246, 61,203, 46, 61,136,207, 89,187,121,157, 12,212, 42,130,224,206,223, 75, 21,243,235, 46, 25,238,121,223, 41,154, -227, 78,159, 22,102,157,130, 85,106,142, 90,173, 84,182,119,187,188,245,125,243, 62,152, 9,172,249,118, 0,255, 16, 30, 21,184, -182,195,200,159, 16,145, 93, 55,220,183, 11,222, 58,118, 79,145,156,231,152, 62,198,196,189,185,220, 49,106, 66, 83,148,112, 39, -255,223,199, 40, 54, 96,142,239, 85, 73,190, 17,204,213, 15,227,126,221,161,119,232,148,174, 13,224,152,209, 97, 6,203,253, 24, -139,170, 32, 28,253,105,173, 54, 70,210, 86, 3,202,232, 58, 71,113,228,210,148, 11, 92,169,243,204,214,108,146,166, 36, 58,155, - 56, 15,247, 89,212,117, 75,206, 50,157,240,129, 47,139, 3,246,117,195, 60, 79,216,214,157,204,221,145, 22,166, 2,182,198,241, -176, 11, 9,161,202,229, 54,159, 2,189,214,157, 64,131,131, 16,174,117,250,167, 71,158,185,120,215,171,141, 82, 99,116, 6, 42, - 0, 24,148,177, 55, 83,168,202,248, 94, 70,190,177, 39, 9, 38,112,192, 60, 71,162, 3, 65,136,139,140,116, 36,196, 67,109, 86, - 5,121, 31,163,156,156,139, 28,166, 20,212, 4,138,175, 52,144, 67, 4,125,176, 93,115,222,229,210,191,220,175,216,182, 93,170, - 58, 69,191,242, 80,208,185,184,119,195,186,179,239, 5,137,156,246,245,178,138,142,160, 86,204, 36,143,165,192, 46, 32, 37,130, - 86,100,108,228,157,122,210, 41, 18,105,154, 24,196,106,148, 69, 81,107,205, 82,208,122,109, 88, 47, 23,228,204,145, 39,186, 88, -201, 90, 69,243, 14, 49, 48,224,133, 25,194,181,169,138, 95,227, 30,243,232,216,209,177, 60,126, 23,240, 51,188, 47,120,250,250, - 13,190,250,240,167,184,127,249,149,236,218,181,171,233,242,123, 84,227,215,195, 46,245,206,120, 66,207,253,158,146,152,128,209, - 85, 57,231,225, 35,201, 90, 7, 27,100, 96,190,186,250,223,131, 55,189, 42,215, 65,147, 69, 13,230,109, 35,155,187, 91,170,150, -166,254,229,125,227,239, 57,220, 4, 78,102,193,232, 85, 40,124,129,246, 45,231,186,129,100,132,179,204, 34,143, 17,174,181,237, -198,171, 90,150,217,118,189,211,188,160,212,128, 47,126,241, 10,255,234,247,175, 16,106, 69, 63, 95, 35, 56,143,253,178, 34, 6, -218,171,214, 11,190,254,240, 19,252, 31, 63,250, 16, 62, 4,124,247,141,107,188,249,248,132,146, 43, 46,165,201,100, 39, 4, 57, -112,224,144, 92,197,127,251, 59,239,224,223,255,248, 99,252,217,135,175,240,213,203, 21,255,235,255,254,183,248, 55,127,244, 19, - 60,185, 57,225,124,154, 17,131,172,126, 46,123,198,139, 87, 43, 59,107,140,201,152,247,248,195,255,236, 91,248,207,255,197,175, - 73,162, 98, 19,187, 94, 79,178,210,136,201,163,230,130, 24, 38,224,217,130,207,111,127,138, 55,159,156,176,189,124, 53, 60,232, -141,107, 55, 5,143, 4, 21, 42, 49,216,137, 86,212, 68, 27, 97,138,194,134,192,212, 45,110,185,121,119, 0,112, 84,219,149, 59, -134,126,148,146,109,125, 53, 47,103, 56, 72, 92,104, 48, 11,171,248,180,125, 28, 57, 19, 34,138,147,253, 47,156,132, 67, 57,229, -216,231,130,121,158,204, 87,110, 93,114, 19,209,109,140,137,202,117,165,220,141,140,234,118,152, 96, 57,115,231,200, 88, 93, 53, - 67, 71, 49,150, 2, 67,100,181,235,145,166,136,211,249,108,208, 46, 65, 57, 79, 54,221,144, 49,191,250,168,197,102, 91, 75, 29, - 35,104, 38, 74, 10, 82, 59,219,217,219, 90,145,105, 95, 25,254,244, 14,225,248,203,132,201,155,232,245,234,250,138,136,215,217, -198,218, 41, 69,195, 87,123,254, 60, 37,206,137, 21,111,199,133,187,116, 7,103,104,211, 86, 27, 19,226,154,145, 52,109, 66,227, -197,118,235,201,222,240,109,108,140,213, 34, 38, 28,122,197,204,202,208, 93, 38, 26,193,118,242,170, 91, 80,189,145, 35, 44,166, -113,242, 3,162, 99,125,148,253,178, 22,112,141, 46,152,137, 23,121,240,206,216,253,149,118, 96, 56, 9,192,129,243, 50,100,111, - 29,158,190,111,213, 8, 8, 77,244, 86,112,207, 44, 52, 80, 85,169,220, 45, 86, 85, 35,106, 85,153, 62,194, 91,154, 49,223, 71, - 28,116, 55, 18,104,109, 85,226,122,219,112,230,232,154,178, 99, 8,244, 52,145, 84, 38,224,205, 84,240, 18,102,211, 44, 85,110, -100,177,132,177,174, 41,133,232,117,208,254, 71,128,137, 98, 54,107,235, 12,162,144,145,153, 11,222,246,227,170,172, 30,192, 23, - 5, 1, 80, 64,183,151,129,231,107, 98,107,107,173, 35, 32, 72,202,142, 27,226,143,211,121,198,229,126,103, 21, 39, 86, 57, 65, - 11, 86,218, 36,138, 77, 12, 36,105, 71, 68, 26, 14,193,114,117, 99, 12, 28,119, 51, 17,139,197, 65,222,251, 17,163, 75, 91,147, -100,169,123, 31,208, 88, 57,247,222,224, 23,177,210,197, 24,209, 56,202,211, 75,187, 49,134, 79, 57,238,251,182, 83,120, 49, 80, -141, 71,214,186,163, 18, 83,199,147,121,207,182,175, 15,206,139,181,139, 28,101,231,135, 3,210,251,136,105,138,214,229,132,160, -135,168,227,152, 88,213,222,158, 35, 36, 57, 12, 26, 67, 48,182,109,229,206,235,144,149, 66,136,138,163, 88, 67,170,118,103, 26, -130, 78,161, 93, 35, 61,174,235, 10, 32,156, 16,174,190,137,188,101, 92, 63, 58,225,209, 77,196, 95,252,201,255,195,132,188,206, -189,147,140,183,229,193, 82,208,141, 63,248,147, 27,179,184,187, 41,240,187,209,236,228,101, 81,191,188,116,127,196, 80,134,110, -251, 79,129,240, 4,179,188,105,242,147, 35, 7, 64,177,149,199,138,183, 57,247, 96, 4,239,156, 67,160, 56,198,146, 9,225,224, -168,142, 22, 97, 39,215, 28,116, 98,140, 56, 71,241,149,151,178,115,247, 72,253, 4,247,120,154,115,252,193,123, 95,226, 7,143, -207, 56,213, 12,156, 94,199,180, 76,184, 92,118, 82,181, 0,151, 55,224,243,207,240,254,207,190,192,171,189,225, 60, 69,252,151, -191,241, 22,210,156, 80,106,199,125,149, 53,130,139, 1,126,154, 80, 86, 57, 92,151, 57,226,191,249,157,111,225,215,222,126,137, - 63,254,233,151,248,232,213,134,117, 47,120,121,191,227,235,219,149,118,158,142,156,229,243,234, 89, 14,146,243,146,240,155,223, -126, 29,127,248, 47,127, 13,223,251,238,219,118,145, 58,239, 81,247,140,238, 60,150, 37, 33, 56,160, 78, 19,226,249, 6,229,171, - 59,124,252,197, 43,252,254,111,191, 99,226, 45, 41, 56, 3,211,189, 24,142,161, 62,107,178,244, 91,111, 35,199,185,139,104, 42, -165,132,208,130,196,165,114,180,170,147,149, 61,231,113, 56, 86,135, 52, 77,140, 61,149, 21, 30,156, 19,136,208,193,215,235, 3, - 44,164, 69, 69,184, 26,196, 17, 72, 25,204, 37,219, 20, 33, 68, 97, 92, 56,122,173,229, 61, 33,206, 86,155, 13,245,168,107,113, -156,139,145,216,112,192, 9,195,138,145, 65, 53,212, 67, 84, 3, 53,100,106,181,195,135, 9,203,233,132,171,235, 51, 78,231, 19, - 78,231, 5,211, 44,123,235,202,203,188, 27,249,203, 97, 55, 24, 75,183,236,140, 90, 59, 71,250,197, 10, 29, 25,123,115,229,213, - 21, 93, 26,144,146, 51,161,108, 8, 17, 33, 69, 94,112,129,246, 99, 41, 18,150,147,216,212, 34,153, 13, 74,180,211,179,251,213, -203,187,195, 57,116,136,105,173, 93,152,229, 12, 96,209,245,132,240,219, 59,207,222, 65,118,203,117,183, 73, 87,167,206,161,212, -138,232, 15, 49,168, 26,237, 76,155,171,250,194,189, 27,156,141, 78,177,153, 50, 0, 36, 1,148,120,222, 64, 81,164, 79, 6,198, -241,252, 78,116,178, 43,231, 36, 76,207,213,125,167,112,215,147,233, 47,236, 17, 61,143,238,239,238,144,243,202,226,222,153, 48, - 79,149,237,232, 93,122,126, 34, 91, 85, 80, 46,232,225, 54, 64, 50,102,251,236,212,149,133,129, 18,102, 20,183, 98, 98,149,249, - 32, 26,167,136,218,138,172, 46,237, 0,119,150, 95,160, 69,133, 8,126,251,131, 9,130,112,100,102, 43, 52, 2, 39, 25, 17,109, -140, 50,116,190,148,184, 19,150,241, 48, 0, 47,226, 52,237, 4,130, 23,193,142, 10, 0,114,110,112, 85, 89,125,236,184, 14, 4, -176,204,110, 68, 70,246,242,178, 94,238, 46,166, 96,188,220, 75,151, 46,234,115, 25, 93,245, 60, 10,135, 94,186,217, 27, 64, 54, -251, 52, 5,164, 36, 95,212, 52, 69, 83, 97,247,214, 76, 25,218,106, 55,172, 97,100,146,144,197,167,214, 54,146,150,248, 31,169, - 12,157,165,208,205, 75, 96,222,113, 65,206,192,114, 58,161, 85, 57, 0, 0,201, 50,175,204, 81,143,204,144,158,231,201, 30,174, -156, 11, 2,157, 5,101,221,141,235, 14,116,184, 54,184,249,129,123,100, 79,228,170,236,193, 70, 66,153,250,114, 53,112,167,215, -110,182,174,188,113,114, 0, 71, 65, 9,197, 24,222,113, 44, 40, 52, 51,229,149,171,242, 83,168,125,221,146,226, 20,185, 20,111, -222, 69,105, 2,205,120,246,250, 13, 62,124,239, 47,113,185,187,147, 49, 85,206, 38, 54,212,253,168,163, 95, 92, 9, 93, 45,175, -114,217,243,192, 87, 91,146, 90,209,114, 21,139, 77,171,149,123,199, 46, 74,110,142,119,189,242,174, 99,178,195, 87,125,233,189, -100, 84,116, 19,137,180,146, 77, 89, 47,170, 89,114,242,163,135, 43,180, 8,122,254,154, 65,148,199,246, 34,246, 42, 93,191,243, -163,115,162,136, 40,239, 27, 71,211, 50, 21,170,173,194,117,103, 54,185,180,156,208, 91,197, 39, 31, 93,144, 94,117,188,243,235, - 11,106,239,168,206,193,191,186, 69,127,249, 2, 62, 70,244,109, 71,223,118,220,223,110,248,143,127,251,137,168,208,159,158,240, -237,111,220, 32, 70, 47,147, 22, 7,156,150,132, 92, 59,178,218, 68, 41,144, 41,165,226,187,111, 92,227, 55,127,247,251,184,237, - 14,127,247,159, 62,193,223,127,240, 41,158,223,110,184,187,144,241, 29, 28, 30,157,103,188,245,218, 53,254,233,111,124, 19,223, -255,245,119,240,214,235,215,136, 65,196,144,173, 86,226,129, 29,194,114,102, 1,235, 49, 79, 1,211,205, 35,148,238,241,245,135, - 31,227,203,207, 62,199,219,143,190,141,249,180,200, 94,150, 36, 64,203,174,225, 78,219, 59,111,172,235,192,172,122,153, 72,200, -132, 78,196,108, 66, 28,171, 94,206,129,125,219,173, 83, 20,229, 46,187, 21,120,204,203, 34,240,158, 57,113,119, 31,113,190,190, - 70,222, 54, 78,163, 10, 66,104,164,160, 9, 47, 35,239, 69, 14,107,120,131,121, 56, 39,248,224,146, 43,210, 20, 14, 4, 66,111, -151,152, 90, 94, 21, 25,171, 83,141, 74,143,120, 76, 51,225, 66, 14,217,196,115,205,120,196, 57,231,129,138,181,160, 15, 17, 59, - 37, 82,190, 98, 76,210, 37,235, 10,142, 68,184,245, 34, 83,208,162, 54,180,195,132, 32, 70,225,104,136,213,139,231, 9,153, 21, -165, 10, 7,190,181,194, 8,105,241,190,235,217,230, 92,144,204, 10, 47,226, 90, 41,212,229,123, 59, 95,157, 48, 26, 72, 17,199, -117, 94, 52,251,158,201, 15,247, 44, 14,139,173, 34,106,149, 61,243,195,198,170,211, 98, 10,130, 95, 58, 73,162,133,130,212, 67, -175,234, 37, 21,207, 59,137,255,237, 68,106,111, 12,196, 82,155,151,238,163, 65, 76,107,101,206,122,103,158, 5, 71, 60, 50,141, - 73,178,118,149, 88,225,137,147, 76, 45, 66, 58,139, 2, 63, 34, 89,121,198,187,174,162,228, 42,239, 40,173,116,165, 20,236,219, - 61,202,190, 26, 48,166,243,206,147,201,114,163,248,216,217,133, 94, 45,181,241, 64,193,115,227,179,232, 7,104,142,142,242,123, -131,173, 84,228,159, 13,212,185,126, 78,186, 39,215,181,131,248,226, 85, 61,223, 44, 42, 87, 47,116,163,178,214,102, 57,237, 10, -235, 2,128, 40,223, 89, 21,129, 88,147, 7, 5,157, 22, 3, 7,238,112,155,141,136, 53,123, 61,120,233,138, 52,187, 91, 67, 41, -116, 52,230,116,134, 69,101,228,122,127, 47, 29, 89,169,163, 66, 46,157, 54,162,142,109, 45,134, 70, 44,205,234, 31, 98, 19,119, - 75,106, 66,143,100,131,139,224,101, 90, 34,213,215, 96,215,186,225,114, 89,185, 47,150, 11,103, 89, 38, 42, 69, 69,196,118,127, -183, 10, 8,100,156, 87,246,133,180, 90, 12, 27,153,183,102,152, 76, 85, 5,123,159, 70,222,179, 41,191,165,130,181,108,242,222, -137, 43, 36, 57,136,151, 80,154, 40,144,227, 5,214,122, 71,156,162,237,139, 5,182, 50,128, 42, 58, 34, 3,237,105, 26, 24, 34, -135, 83,197,190,101,174, 39, 18, 28,201, 77, 66,254, 99,118,176, 31,129, 16,106,195,208,174,202, 51,161,172,225,104, 87,188, 70, -188,126, 11,251, 86,241,248,181, 27, 76, 97,199,199, 31,252, 68,252,200, 85,139,184,102, 80,138,110, 54, 22, 38, 46,117, 25,149, -181,154,121,161, 43, 1,169,219,186,194,251,104,251, 83,125, 41,192, 61,187, 12, 50,130,225, 71, 3,156,237,226,213,179,142,222, -109, 31, 38,123,125,162,120, 3, 65, 14,144, 23,151, 27, 45,219, 43, 58,146,220,228,179,243,136,113, 54, 1, 95, 63,248,236,161, -161, 60, 44,244,250,145,199, 16,132,191,157, 98,196,221, 93,198,171, 15,119,252,206,183,158,192,123,135,151, 95,223, 33,189,248, -123, 44, 87,147, 68,121,166, 8,191, 76,232, 62,224,167, 31,191,192, 47,190,190,224, 60, 79,248, 47,190,255, 6,124,154,144,171, - 80,205,155, 27,213,127,222,118,118, 72,164, 72, 65,132, 71,203,156,240,206,179, 71,248,173, 31,188,141,219,219, 13, 47, 94,109, -184,172, 98, 19, 90,247,134,235,115,194,163,155, 19, 82,240,136,203,132,121, 73, 56,205, 19, 60, 58,194,105,145,174,188, 84,160, -238,112, 93, 70,211, 55, 79, 30, 33,221, 60,198,254,209, 47,240,211,207, 62,196,228, 61,174,230,136,190,221,155, 54, 68, 4,111, - 29,206,119,146, 11, 27, 47,211, 78, 50,156,140,136,139,134, 57, 17,230, 36,142, 1,218,122,170, 20, 2,209,137,174, 38,196, 4, - 80, 81,223,209, 49, 47,139,185,111, 84,184,102, 73, 90,158, 98, 49, 90,100,211, 60,143, 17,182,151, 98, 88, 96, 52,132,183,236, - 93,126, 14,215, 63, 66,149, 4,106,174, 2,164, 57, 40,173,229, 50,239,214, 17,139,173, 44, 30, 34,127,137,113, 14, 30,165, 56, -123,175, 99,164,135, 90,213,254,164, 4, 78,243,132,229,180,224,116, 94,144,104, 69,213,104,105, 17,125, 53, 90,245,104,213,226, -129,172,201,108,121,207,114,209,114, 53, 86,184,230,139, 33,160,244, 98, 99,101,129,143, 72, 82, 98,173, 98,209,157,150,197, 80, -202,154,248, 54, 47, 51, 90, 17,151,144,160, 96,101,183,222,187,224, 93,107, 46, 7, 7,135, 56,123,246,109,183,134, 68,216,237, -187,173, 44,181, 91,111,236,210,215,109,167,189,176, 90,226,156,104, 5,226, 3,251, 98, 35,129, 80,185, 31, 7, 65, 21,155, 9, -197,166, 54, 22, 89,149,205,137, 67,156,102,203,104, 72, 41, 90,168,149,169,102, 21,195,195, 92,130, 70, 58,153, 62, 67, 33, 70, -138,209,228, 39,102,230,183,239,219, 42,161, 50,173, 28, 38,116,116,225, 56,111,147,186, 78,245,190,158, 43, 96,147, 2, 47,110, - 38,117,136,140,145,186,126,183,245, 96, 89,107,236,222, 31,254, 60,189,156,187,117,230,132,223, 80, 77, 15,106, 75, 36,176,136, - 85, 37, 27, 15, 33, 89,118, 75, 14, 20,237, 79, 20, 33,118, 72,136,218,185, 6,165,129,232, 47, 74, 50, 78,169, 69,126,177, 82, - 81,155, 8, 36, 44, 79,216,123,160,118,203,235, 86, 79,175, 4,159, 48, 66, 78,125,165,222, 97, 91,243, 65, 5, 40, 21,212,101, -219,121,153, 55,203, 27, 23,210,152, 51, 36, 35, 84,197, 26,100,207,182,204, 9,211, 28,109,164,156, 98, 36,109,105, 88, 61,164, -242,142,112,213,225,190, 86,217,203,183,138,203, 61,204, 87,142, 46,241,174,208, 2,192,233,143,193, 40, 73,219,186,155,189,165, - 17, 69,106,233, 64,125,236, 14,151,101,226,132,128,144,147, 58, 42,249,206, 68,161,188, 53, 17,212,208, 30, 53, 77,201, 46, 35, - 3, 30,176,242, 82, 27,155,121,249,107, 69, 43, 21, 62,176,138,133, 10,241,216,133,107,158,252, 28,196,105,224,186, 85,217, 33, - 58,134, 87, 4,116, 18,179,148,128,231,109,191,229,113,126,227, 7, 88, 55,153,170, 60,125,237, 10,191,248,241, 31, 97,187,220, -113,239,199,152, 81, 10,124,140, 92,215, 57, 66,204,154,121,236,134,216, 77, 73, 80, 20,154,120, 31, 77, 60, 34, 54, 26,217,133, -121,242, 8, 60, 11, 60,207,113,109,239, 77, 14,228, 30,208, 91, 49, 70,190,247,180,233, 69, 79,177, 94,165,192, 70,138, 50,137, - 7,142,182, 3,246,220,209, 47,167,133, 88, 73, 24, 56, 71,234,206,202,181, 71, 56, 8, 96,116,143, 90,104, 9, 20,180,167,168, -233, 51, 62,254,249, 5,223,127,114, 5, 95,129,187, 59,209, 72,192, 7,108,117,135,107, 13,137, 22,214,189,118,252,233,223,125, -138,243,245, 9,255,226, 91, 79,240,171,223,124, 6,106, 25, 81,107,195,186,107, 69,223,237, 29, 44,157,107, 61,105,141,177,175, - 43,214,251,132,103, 79, 22, 44, 87, 39,172,165, 33, 45, 19,124,175,200, 69,190,187,144, 38, 76,215, 87,184,190, 57, 97, 62,205, - 56,159, 38, 44,167,217, 44,121, 64, 67,219, 54,212,237, 30,249,178,225,252,228, 10,117,223,240,229, 47, 63,196,123, 31,124, 46, -193, 67,165,163,126,246, 9, 69,159, 32,124,199,150,135,230, 10, 0, 68,107,226,252, 16,220,233,247,176, 94, 86,156,175, 78, 28, -126, 17, 38, 20,228,217,113,156, 38, 21, 30,102, 82,204, 50,101,141,104,101,167,249,228,222,163,150,140, 52,113, 92,155,228, 98, -108,174, 15,251,163,243,220,201,139,253,213,209, 64, 30,147,236,153,149,101, 32,129, 32,157, 63, 22,108,242,229, 14, 16,167,209, -129,226,176,247,214,130,197,113,180, 57,146,249,116, 37, 17, 52,152,101, 94, 24,137, 60, 25, 60, 73,127,174,173,225,138, 20, 19, -153, 13,193, 17,171,187,231, 76,191, 59,108,207,222,232,159,110,173, 89,184, 85,136,137,161, 51, 14,167,243,140,101, 57, 97,154, - 39,174, 53, 43,197,121, 11,210, 20, 80,188, 36, 44,182, 46, 58,133, 82, 68,136,220, 56,229,211, 56,108,157,130,240, 43,199, 70, - 23,141, 4,243,136,210,125,223,118, 67,185,214, 34,216,220,157,239,144, 22,114, 18,151, 61, 31, 80,187,205, 2,123, 70, 97, 80, -144,162, 71,103,119,237,152,249, 33,107, 57,209, 21, 73,243, 53, 81,196, 9, 91, 85,154, 5, 78,221, 88, 18,101, 39,172, 10,158, -195,158, 40,236,214, 10,122,174,102,245,213, 34, 42,239,171,185, 97,192,184, 32, 35, 96,112,186,162,184,113,157, 38,129,216, 89, -167, 34,224,134,195, 37, 78,209, 27,255, 44,106, 71,235,173,137, 16, 79,129, 53, 93, 19, 37, 15,246, 56,112,165,122, 32,196,105, -129,131, 38,231,137, 3, 40,146,139,240, 8,232,182,215,135, 77, 89, 85,175,166,249, 22, 81, 69, 0,250,226,154,117,141, 10, 89, -231, 58,122,205,220,169, 58, 30,152,244,210, 57,145,206, 41,136, 70, 51,178,197,179, 88,205, 42, 85,246,157,216,206, 74,138,150, -116, 39,154,145,222,155, 55,107,210,168,148, 7, 46, 79, 95, 30, 21,235,120, 47,246, 21, 25,223, 68,222, 33,157, 66,146,108,185, -222,234, 3,175,181,227,124,158,209,170,166, 27, 21,214, 46,210,217,195,130,103,132, 91,236,188, 16,156,148,195,155,179,100, 99, -107,176,130,142, 73, 20, 7, 43,228,164,108,214, 52, 29,217, 40, 57, 8,246,240,145,142, 7,177,254, 77,196,219,206,147, 39,120, -161,195,209, 79, 46,105,105, 29, 46,114, 36, 84, 10, 92, 76,168,101,133,111, 94, 48,154,112,152,151,197,138, 40,231, 3, 2,119, -153,129,254,118,249,189, 61,171,255,138,192,164, 45, 83,254, 82,193, 26, 78,111,160,250, 71,112, 46,227,230,209, 9,229,254, 11, -124,250,243,255,196, 67, 69, 84,246,114,136,110, 70,141,211, 98,200, 98,119, 27,168, 62,174,220,185, 30,226, 9,155, 4, 46, 56, -218,126, 36, 69, 47,216,238, 83,173,114, 26, 82, 35,255,142, 8, 89, 26,195,105,228,193, 13, 98, 35, 50,123,220, 24,167,187,230, - 76, 44,231,220,248,179,132, 52, 41, 29,119, 36,246, 89,234, 84,196,178, 44, 44,218,196, 66,163,123,204, 70,187, 18, 66,176,195, - 6, 0, 94, 62,175, 56,191,200,120,244,230, 25,123,110, 8,231, 25,253,234,140,116,117, 66, 57,159,209,190,248, 28,121,189,199, -212, 29, 62,252,242, 30, 31,124,117,193,227,243,132,223,250,149,199,198, 18,104,165, 96,111, 50,203, 85, 33,106,205, 44,144, 74, - 67,131,199,118,217,112,158,129,237,178, 35, 78, 59,246,234,112,190, 62,225,126,111, 84,160, 23,212,178,163,182,142,251,187,130, - 37,223,225,235, 23,247, 50,110,228,184,115,154, 34,182,251, 21,181, 85,108,151, 13,183,183, 47,241, 15,255,240, 41,238,214, 13, -119,151, 59,220,111,247,240,209,225,141,239, 77,248, 63,127,250,247,112,222, 99,219, 11, 66, 18, 1,156,116, 6,162, 1, 9, 90, - 32,181,110,162,164,198,221,122,221, 51,153,252,188, 20, 89,213,213,218,224,179,103,168,136, 92,216,209, 57, 20, 28, 98, 69,131, - 71,173,194,242,214,168,226,121, 89,176, 94, 58,156,227,184, 52, 23,212, 34,124,137,202,247, 87,119,184,235,186,217,249,144,115, -198,180,204,210,169, 77, 82,140,251, 69,156, 32, 58, 69,204,123, 57, 76,230,154,217,101,101,154, 22,153, 45, 95,236, 44,210,145, -184,231,190,182, 41,244,209, 7,164, 83,194, 52, 37,156,174,206,152,166, 25, 49, 37, 99,104,168,167, 58, 80,192,103,142,152,170, -164, 76, 57,155, 54, 70,151, 74,250,176,231,116,162, 89,131,163,190,105, 31,100, 45, 26,130,104,124,230,121, 33, 92, 70, 58,183, - 20, 29, 93, 25, 48,198,136, 35,128, 68,130,174,100, 26, 16, 72, 71,204, 89, 57, 12,242,191,245,207,208, 8, 98,145,243,114,179, -244, 71,231,100,106,170, 0, 50,237,254,181, 32,246, 10,107,105, 56, 36,112, 54, 42,246, 9,172,177, 96, 41, 41,234, 28, 11,133, - 24,147,176,242,185,215,247, 65,169,162,114,237, 5, 10,242, 84, 11,225, 8, 41, 83,177, 89,135, 0,168,108,221,114, 96,173,244, -166,116, 80,225,213, 59, 77,147,112,221,162,104, 21, 50,164, 24,215,214,221, 97,138,235,108,218, 8,235,232,221, 72, 87, 99,135, -109,207, 84, 19, 2, 95,211, 32,168,134, 65,251, 68,231,222,222, 63, 88,101,134,144, 40,124,230, 42,220, 53, 30,221,188, 47, 9, -229,210,203, 60,165, 25,206,105, 76,236,241,222,172,136,101,223, 8, 47, 81, 16, 3, 44, 65,169,211,106,144,247, 17, 20,175,209, -154,157,127, 67, 5, 58,232,125, 86,184, 95, 81,208,126,167, 87,119,223,154, 49,116, 27,191, 84,217,191, 17,155, 74, 53,188, 20, - 13,220,235,176, 75, 23,209, 50, 71, 89, 41, 98, 57,205, 72, 83,194, 60, 79,210, 97,176, 59,211,176, 22, 71,129, 86, 41,133, 15, - 78,199,122,217,108, 4,239,208,105, 47,145,151, 89, 14, 28, 90,155, 60,255, 14,117, 76, 11, 98, 12, 40,140,234, 83,216,142,116, -244,242,208,184, 42,135,221,182, 83, 37,237,186, 49,173,213,174, 16, 24,235, 89,225,224, 19,153,237,181,216, 46, 94,186,206,110, -162,156,222,186, 0, 33,184,191,143, 73, 46,179, 86, 27,106, 47, 68, 51, 22, 19,239, 28,119,195,222,192,110,149, 58, 7,122, 66, -189,116, 89,193,123, 82,252,228,179,113,126,194,242,230, 15,176,174, 59, 78,167,132, 39, 79, 79,120,239,255,250,119,200, 59,243, -154,115,181, 49,165,114,136,125,224,159,135,222, 93,176,139,233, 10,241, 9,142, 76,230,102,144, 6, 79, 5,116,156,102, 98,137, -131, 88,122, 40, 4, 4,173, 61, 50, 5,145,169,139,119, 74, 21, 19, 11, 85,160,191, 86,214, 63, 59, 71,160, 71,238,123, 39, 85, -174,218,243,162, 32, 9,209, 26,137,167, 63, 77,179,113,246, 27,131, 38, 92,239,226,101, 15, 76,246,234,146, 28, 55, 45,139,165, - 3,150,226,241,217,251,175,240, 27, 79,174,113,161, 74,214,157,175,144,207, 87,232, 81,168,124,238,245,183,224,190,250, 12, 47, -110,239,241,167, 63,127, 1, 23, 60,126,235,237, 71,120,116, 53, 25,187, 92, 58, 73,177,139,229,204,226,165, 3,141,233, 85,117, - 47,152, 60,144,162,195, 79, 63,121,129,159,255,248,125,132, 63,237,120,237,217, 13, 82,114, 40, 77, 14,220,125,223,208,123,181, - 68,185,198,228, 50,207,176, 27, 69, 16, 87, 85,175,179, 51, 13, 49, 33,156, 59,206,179,183,207,251,235,124,135,214, 35, 98,156, -244, 35,179, 29,167, 17,179, 28,108, 29, 49,114, 7,100,229,211,122, 19,229,255,190,137,184, 80,187, 25, 62,211,105,154,216,225, -203, 5,149,152, 53,145, 38, 5, 33,201,129, 60, 77,193,224, 34, 49, 77,104,125,199,171, 23,119, 8, 49,113, 50,225, 12, 77,237, -131, 20, 12,165,116, 78,221, 70, 74,162, 34,170, 53,176, 68, 61,219,221,117, 75,155,212, 72,101,153,250,201, 65,171, 44, 5,155, - 72,129,193, 62,236,208, 43, 5,127, 49, 70,164, 20,177,156, 78, 88, 78, 39, 76,203,108, 29,250,114, 94, 16,147, 48,224, 47,247, - 43,187,192, 96,157,221,182, 21, 76,115,228,152,189, 24,239,189, 85,105,168, 42,139,165,222,155,197, 78,171,232,110,154, 19,230, -121,193,147,167,143,100,133, 25,229,157,150, 34,201,113,210,229, 13, 39,171, 59,242, 90, 71,194,157,228, 25,196,193, 0, 33, 21, - 50, 51,148,165,213, 42,216, 94,116,100, 42,253,229,252, 35, 89,175, 53,148,170,147, 78,207,181,236,112, 72,168,186, 93,162,122, -243, 64, 59, 43,124, 39, 70,115,178,136, 75,198, 91,103, 46,123,229, 96, 57, 21,206,123,203,206,240,206, 83,227, 2, 54, 85,197, -238, 0,242,134,184, 78,174, 38, 44,204,251, 69,196,140,204,232,104, 26,201,174, 52, 47, 22, 22, 48, 33,218, 64,211,154,142, 73, -221, 77, 29,195,142,172,182,188, 67,102,133, 76, 87,250,131,231, 89, 47,112, 1,239, 4,244, 94,108,154,169,239, 71,119, 18, 87, -222,221,192,229,154,251, 41,120,243,216, 71, 18, 22,181, 91, 55, 50, 94, 23,155,233,233,116, 66,108, 85,184,178,121, 19, 35,126, - 96,117,169, 93, 82, 45,172, 46, 26, 14, 50,126,205,176,245,244,237,118,180,174,212, 45, 33,187,237, 91,150,189, 48, 28,166, 73, - 4, 1, 58, 94, 86,219,155,144,145, 10,213,199, 64,111, 25, 13,193, 30,186,192, 49, 91, 41, 13,211,180,136, 47,115, 74,132, 11, - 56, 83, 60,106,183,216, 90,227,232,168,154,159,177, 85,221, 81, 53,126, 64,178,255,174, 53, 75, 84, 32, 31, 94,207, 81,149,140, -121, 2, 87, 15,221, 14,125,253, 2,106,145, 80,152,148, 34, 95, 22,194, 23, 56,134,214, 7,190,247,134,189, 22, 9,171,200,153, -171,133, 78, 5,103, 68,160, 42,216,187,110, 23,179,166,226,137,229, 75,162, 87,181,115,133, 27,188,226,237,178,241,159,201, 24, - 84, 35,112,149, 37,222, 29,108,100, 14,200, 56, 95,117, 2,158,158, 91,231, 61, 90,151,162,108,122,252, 46, 74, 75, 72, 9,120, -250,218, 13, 94,124,242, 62, 94,124,241,169, 4, 67,184,142, 22, 96,106,115,122, 89,196,206,150,179, 37, 72, 53,170,115,171, 93, -248, 21,221,139, 55,216, 81,184, 2, 45,156, 66, 28,192, 29, 72,168, 77, 0,197, 32,181,160,113,212,238, 57, 38, 69,175,210, 41, -171,206,130, 47, 48,208, 76, 23, 33,177,138,147,133,178,184, 56,217,110, 78,172, 52, 82,160, 74,225, 22, 56,150,211, 9, 73,229, - 30,158, 48,159,125, 19, 81, 82, 45, 70, 43, 19,176,134,195, 47, 62,184,197, 91,105, 70,243, 30, 91,131,176,214, 91,135, 91, 87, - 52, 23, 80,154,136,190,250,227,103,248,232,139, 11,126,249, 98,197, 57, 6,124,247,173,107,249, 76, 90,131,139, 73, 4,100,247, - 43,182, 44, 99,207,141, 42,246, 92, 58, 82, 12,112,121, 71,156, 59,220,147,103,120,254,179,175, 17,230, 29,215,215, 1,107,126, -142,220,152, 63,237,164,147,149,142,163,115, 76,237,120, 17, 20, 19,192,118, 30, 94,122, 17, 3,206,214, 61,129, 19,178,198, 73, -145, 90, 10, 77,164,211, 61, 59,105,233,252,106,107, 72,233, 24,101,234,209,208, 68, 60,218, 59,122, 20, 65,150,162, 90,245, 63, -161, 11, 81,177,146,106, 38,197, 65,176,117, 86,135, 67,175, 13, 33, 69,228, 34,100,172,105, 94,100,109,183,109,216,246, 21,125, -221,177,156, 26,150,243, 21,193, 37, 20, 50,213, 14,239,155,145, 37,229, 51, 14, 72, 49,114,228,221,172, 11,211,209,176,238, 55, -157,229,111,143,149,218,182,237,166, 76,151,179,165,217, 58, 77,173,147, 41, 5,184, 41,146,171,126,194,249,234, 76, 0,204, 8, - 70, 9,196,118,234,254, 83,253,240,194,170,119,216,214, 93,206, 64,186,104,244, 82,112, 22,138, 64,100, 51, 17,160,206, 59,204, - 81, 56,238,211, 60, 3, 78, 84,240,222, 59,211, 60,169, 0, 24,189, 90,218,151,188,251,157, 69,188, 27,120,235, 82,209,218,110, -161, 44,162,108,151,240,154, 66, 81,160,136,177, 6, 53, 79, 87,162,130,181,141,140,210,117, 44,254,186,217,137, 37,252, 75,130, -146, 68,175,227,224,125, 18, 49,172,119, 12,121,114,182,250,213,231,209,133, 1,237,114,182,194, 21, 17, 92,235,213,208,190,146, -133,209, 25, 6, 84,121, 94, 87,128,188, 13, 41,116, 51, 74,222,134,178,189,105,200,133, 31,129, 92,124, 31, 70, 50,160,179,187, -222,178, 35,104,157,209,233,179,194,102,116, 66,112, 76, 46, 29,194, 57, 28, 26, 95,141,111,165, 53,142,161, 67, 20, 66,177,208, -179, 32,215,131, 32,110, 32,103,189,143,230, 28,208, 0,155, 16,146, 5,123,181,222, 16,168, 87,138,222, 49,137,204,201, 1, 46, -249,214, 3, 70, 47,135, 69, 59, 48,156,199,126, 86,163, 54,165, 51,211,132, 49,103, 64, 24,221, 21,170,160, 78, 76,244, 26,169, - 87,141, 3, 44,171, 6,103,149, 71, 48, 91,141, 6, 30,120,170, 27, 3,230, 57,113, 92, 19,201, 72, 6,249,211, 5, 59,125,228, -219,186,139, 55,151, 56,214,194, 29,149, 84,173,160, 48, 79, 66, 91,246,109, 29, 23,121,240,136,113,178,106, 86, 65, 52,181,200, -142, 71, 58,212,136,211, 89,186,151,182,107,117, 93, 13,191, 88,154, 10,119, 58,202,158,129, 36, 10,239, 94, 11,166,137, 93, 41, -134, 88, 70, 89,227,158,161, 45,181,116, 90,189, 96, 97, 36,186,127, 43,121,199,118, 89,249,185, 56, 19,175, 9,246, 50,154, 18, - 84, 45, 34,222, 7,134, 1, 4, 59,192,101,124,229,172,210,140,203, 35,248,243,219,216,247,134,171,235, 25,167,185,225, 71,127, -252,103,112, 62,114,183,218, 16,208, 16,147, 27, 22, 62,215,137,250, 29,241,140,218,173,123, 66,113,100, 45, 34, 47,183,142,197, -188, 83,124, 48,119, 66, 14,232, 57, 75, 49,213,187,224, 91, 77, 52, 37,180,169, 16, 28, 28,162, 89, 54,208,155,248, 57,131,236, -112, 61,199,183, 33, 77, 86,252,104,252,164, 70, 61,182,222, 49, 45,179,113,232,237,185, 59, 88,135,188, 15,216,183,141,136, 93, -185, 8,230,101,193,180,156,216, 89, 39,180,210,241,226,179,140,119,191,113,133,181, 59,224,124, 70,127,252, 24, 27,128,190,222, - 99,158, 42, 92,243, 40, 77, 68, 68,127,241,193, 87,104,189,227,183,191,121,131,171, 36, 48,142, 20, 3,218,158,209,168,166,174, -188,236,246, 38, 34,195, 41,202, 52, 99,185,114,216, 78, 79,144,231, 5,207, 30,159,241,234,171,207,168,106,246, 3, 88,161,156, -130, 62, 24,229,186,239,148, 75,127, 0,147, 60,113,160,106,151,145, 21,154,124,126,131, 80,229, 76,208,229, 31,168, 11,168,252, -167,166, 68, 84,209,222,198,209,114, 48,123, 17, 86, 85,112,122, 32, 29,175,226, 63, 67, 12, 88,215, 77,138,242, 16, 24,191, 42, -239,147, 2, 77,172,191,225,119, 20, 99,180,164,171,206,241,103,206, 5, 97,207,152,102,242,188, 33, 34,175,245,178,155, 22,163, -182, 6, 87, 27, 66, 96,151, 3, 25,215,246,126,144, 12, 97, 60,183,141,207, 46, 14,120, 82, 85,137, 59,195,143,182, 17, 52, 68, - 20,105,107, 29,203,105,193,249,250,204, 9,226,194,120,217,104, 43,139, 20, 35,214,203,106,221,155,115,142,227,126, 25,231, 23, -238,165,197,211, 61,212,212, 58,246,117, 62,194,209,159, 47, 80,170, 25,203,233,140,148,130,137,140, 67,244, 86,152, 52,138, 85, -205,177,208, 52,239,193, 83, 20,214,236,188, 82, 50,156,172, 43,119,142,200, 9,148, 33,179, 94, 69,144,129, 25, 30, 58,205, 24, -224, 21, 54, 49,236,202,245,187,149,221,180, 76,165, 18, 59, 77, 77,219,180,132, 58,221,151,107,156,180,146,100,148,224,118,192, -111, 59,239,209,235,200,221,104, 96,212,116,169,112,104,168,112,212, 50, 21,244,154, 9,211,169,156,204,106,145,212,161,174, 69, -160,219,217, 9, 28,149,235,135,117,244,112,152,141,231,164,203, 84, 75, 5,143,131, 87, 32, 99,172,162, 42,116, 54,166, 93,187, -117,174,181,117,146,164, 58, 38, 17,125, 71, 43,192,132,182, 25,237, 98, 47, 53,203,101,221, 10,159,147,104,239,159,138, 13,117, -234,221,200, 17,137,219,186, 82,213,190, 91, 12,170,115, 28,104,246, 66, 3,189, 92,136,224, 72,164,213,134, 94,253,193, 79,215, - 80, 89,106,212, 3, 95, 93, 89,188,173, 53,177, 56,112,103, 82,107,230, 37,212,185,119,106, 54,230,214,145,190,226,135,122,147, -241,207,213, 44,251,174,214,192,156,225,161, 30, 84, 32,131,118,254,232,221, 62,192,198, 5,152,142, 0,143,162, 24,217, 69, 53, -148,188,211, 99, 27, 81,115, 65, 33, 51,120,223,216,201, 78, 50,246,243,204, 13,151, 47, 3, 60,116,228,162, 16,255,164,116,130, -138, 40,197,212,109,143,237,130, 88, 81,166, 20,169,202,148, 17, 85,154,100,215, 95, 90, 19, 43,142,143,195,247,223, 52, 61,205, -163, 53,114,149,189, 3,202, 33,151,156, 66, 51, 29,189, 43,232,191,213,102, 59, 33, 71,161, 94,247, 99,135,163, 79,229,252,244, - 59,216,101,229,143,103,175,221,224,195,191,251, 83,166,142, 69,118,112, 1,193,171,141,172,243,239, 87, 16, 34,189,202,181,162, -213,142,156, 55,179,206,132, 32,163, 53, 56,133, 16, 69,177,155, 81,148,167, 54, 31, 52,217, 27,229,245, 66,150,187, 55,159,180, -236, 23, 35, 21,239,196,146,234,133,229,228, 66, 10, 49, 26,211, 89,252,211,201,240,187, 53,239, 98, 81, 76, 73,220, 4, 28,225, - 53,102,169, 15, 50, 96,225, 1,151, 37,232,165, 10,136, 39,166,132,229,124, 37, 36, 68, 39,221,253, 60,123,156,175, 23,124,122, - 39, 8,209, 19, 46,240,165, 34, 62,122,132,234, 38,180,220, 17, 80, 49, 37,143,247, 63,248, 12,159,125,117,139, 39,215, 11,190, -255,235,223,128,219, 46,112,189,161, 87, 22,112,173, 97, 93,165,160,245, 14, 56, 77, 17, 41, 2,113,114, 40,197,161, 76, 55,136, -215,143,228,114,242, 28,199,146,213, 32, 99,188, 97,183, 18,206, 4,115, 23,104, 85,148,119, 50, 51,235,220,143,164,169,131,245, -200,135,177,143,115, 4, 59, 12,188,101,179,139, 46,248,192, 65,139, 55,140,166,138,233,212,230, 42, 17,197,244, 99, 55, 77,176, -234, 84, 47, 75,177, 16,200, 33, 16, 88,148, 31,172, 6, 78,184, 66, 12,216, 55, 89,179, 56,238,202,115,150, 53,211,124, 18, 88, -143,138,198, 66,172,214, 21, 43,111, 64,166, 14,117,116,215, 12,138, 50,113,174,237, 64,155,237,175,133, 77,126, 80, 33,115,244, -173,241,166,165, 20, 91, 13,193,116, 0,162,198,214,142,124, 89, 68, 36, 39, 89, 11, 9,137, 43,159, 52, 37,131,106,197, 20,177, -239,249,176, 91, 87,120, 20,108,114,230,117,111,157,139, 93, 6, 34,222,108, 92, 55,206, 88, 78, 39, 78,164,100,226,145,146, 31, -211, 16,238,241, 47,247, 27, 65, 60,154,132, 22, 41, 52,172,182, 74,211,108,190,156, 11,246,125,195,182,110, 38,100, 19,209,115, -179, 14,183,183,134,230, 7,183, 18,153, 40, 0, 0, 32, 0, 73, 68, 65, 84,100, 74, 46,150,106, 24,235, 76, 65,154,230,121,139, - 23,190, 48,215,189, 31,124,232,129,216, 83,174, 91, 44,198, 55, 88,241,233, 60, 76,107,211,122,229,153, 10,212, 74,141, 20,131, -162, 36,241, 17, 70,181,147, 73,212,206,137,237,142,195, 2, 92,206,198,134,193,137,239,162, 96,215,189,184,194,174,228,249, 45, - 54,197,209,117,147,237,232,185,179, 86,205, 66,227,106,198,188, 90,221, 1, 8,230,152,106,221,153,230, 71,227,197, 71,247,221, -249,122,141, 17,189,112,239, 3, 31,211,254, 48, 56,134, 69,168,247, 13, 83,154,237,222,169,181,153,176, 91, 28, 0, 29, 81, 42, -196, 54, 84,174, 24,201,108,208, 49,194, 65, 13, 47, 35, 8,217,125,111, 12, 68,145,142,204, 89,228,169, 9,177, 66,192,101,205, - 70, 12,114, 33, 9,149,201, 57,219, 3,143,131,105, 68,206,193, 57, 52,114,154,247,178, 34,132,100,163,216,121, 78, 99, 68,194, - 67, 74,186,244,140,187,219,123,218, 46, 26,214,117,195,233,124,226,197,215,200,137, 14, 88,215, 66,133,181, 67, 45, 35,227,214, -162, 81,157, 67,207,221, 32, 56,206,123,236, 59,173,122,220,133,214, 90, 56, 14, 18,139, 83,222,165, 3,217,214,237, 65, 23,158, -210, 4, 7, 33, 23,165, 16, 57,162,146, 78, 36,114,247,164, 44, 97,169,151,188,169,214,251,131,160, 12, 88, 80,139, 88, 8, 61, - 5, 92, 84, 10, 7, 9,110, 41,123, 70,154, 68,116, 36, 81,160,206,180, 17,173,117,248, 22,132,146, 70, 63,167,155,158,162,135, - 71, 40,235,138, 39,207,174,209,243,115,124,249,209, 63,200,222,135,170, 75,221,227,244, 94, 1, 39,113,155, 33, 78,180,135, 37, - 56,223, 16, 98, 23, 44,112,240, 6,101, 16,224, 75, 61, 20,114,176,142,209, 57,135,188,101, 73,222,234, 28,229,145,172,103,236, - 0, 34,116,155,133,107,136,229,204,113,199, 46,207,132, 35, 74,119, 49,254, 0,232,211, 15, 49,218, 46, 62,120, 79, 92,109,231, -122,168,154,191,118,223, 46, 76, 25, 44,134, 50,245, 33, 98, 62,223,208,149, 0,184,152,208,122,192,190, 53,228, 6,220, 6,143, -215,207, 9,190, 3,113, 22,219, 90, 74, 65,224, 16,232,216,114,199,143,126,242, 75,180,214,240,187,255,244, 93, 44,111,190, 1, - 60,255, 26,254,197,115,187, 52, 83,244, 0,225, 66, 29, 29, 87,147, 92,232, 62, 56,196,215,222,146, 28,241, 82,112, 90, 34,238, - 95,222,179,120,242,240,209,217,232,112, 92,240,163,176,117,156,142,116,219,217,117,248, 3,123, 90, 47,113,207,176, 21,181, 34, - 41, 39,189,163, 24,165,236, 65, 22,122,215, 48,160,134, 86, 58, 60, 1, 76,129,129, 31,170,144,246,174,217,123,225,181,211,114, - 64,219, 55, 94,176,238, 65, 7, 36,130, 50, 41,150, 53, 66, 84, 2, 83,220,200,108,143, 9, 33, 87, 52, 63,156, 17,138, 26, 22, -209, 80, 2,224, 13, 26, 37, 66,167, 17,163,234, 92, 27, 43,136, 58, 70,232,160,175, 61,239, 5,167,171,147,240, 57,218, 80, 74, - 43, 22,180, 20,217, 69,107,102,195,233,124,178, 32,170,211,105,193,180,204, 50, 14,231, 69,126, 58,159,100,252,238, 61, 90,136, - 88,203,134, 90, 68,168,216,121,145,110, 91, 54,240,147,167,245, 77,237,100,222,117,132, 52, 26,146,148, 18,210,188,224,116,117, - 30,254,123, 63,242, 34, 44,119, 34,120,138, 0, 97, 64,157,121,153,217, 93,118, 58,145,164, 72,242,228,218,239,219,134,117, 93, -205,107,190,179, 16,160, 6, 91, 88,245, 33, 90, 97,163, 32,159,100,241,219, 64,138, 73, 64, 49,138,252,238, 13,181, 13,232,144, - 3,108,106,227,186,156,241, 41, 70, 84,200, 84, 65, 91,141,214, 26,187, 77,189,240,128, 86, 26,217, 40,254,176, 90, 24,251,251, -188,239, 64,175, 76,130,171,230,172,210,162, 76,157, 47,253,216,241, 3,112,221,161,234,170,195,143,179,206, 25,229, 77, 53, 21, -120, 48, 13, 51, 62,129,218, 35,209, 13,187,173,191, 79,135,190,131, 67, 20,168,212,184,214,184, 47,247, 3, 77, 46, 69, 73,179, - 40,114, 41, 46, 3, 84,185,166, 98, 56, 41, 76,135,151,253,104,121, 6,167,105,206,121,196, 90,170,161, 31, 77, 48,224,130,189, -196,218,185,195,121,170,172,101,252,230,117, 68,113,176,188,168,218,207,192, 40, 57, 91,151,215,253, 8, 60,145,207,172, 35,171, - 5,129,135, 71,161,197, 74, 31,240, 14,134, 66,196, 32, 94, 87, 98, 60,245, 82,212, 48,150,156, 11,246,156,109, 23,111, 99,179, - 82, 40,148,210,209,136, 8,231, 52,221,168,240, 16,176,168, 60,139,234,237, 60,164, 86,248, 24,145, 8, 63,209, 17,118,224,158, -252, 56,186,237,173, 91,101, 90, 75, 6,226,225,208, 33, 96, 70,171,114, 57, 68, 59,247,242, 21,145,187,102,177,219, 72, 69, 29, -147,163,202, 18,216,183,213,200,105,141, 66,197,152, 38, 99,119,235,139, 51,205,146, 58, 38,190,244, 32, 59,202, 40, 8, 75,111, -233,110, 26,225,151,176, 60,253, 14, 94,221,110, 56,157, 38, 60,126,178,224,103, 63,252, 19,218, 6,101,199,191,109,155, 76, 74, -178,238, 28, 61, 60, 47, 83,225,189, 11,249, 76, 31, 90,101,204,171,106,210, 24,206,170, 90,175,197,178,237,153,168, 43,226, 55, - 30,236, 74, 35,236,228,198,235, 67,175, 20,187,224, 29, 69,118,210, 33, 76,167,133,119,134, 6, 7, 21,225, 32, 51, 75,185,146, - 46,167, 40,219, 66,129, 83,201,186, 71,204,128,210, 11,249,148,196, 52,227,124,243, 8, 33, 78, 40, 53,224,207,255,226,107,220, -222, 61, 71, 41, 29,123,233,184, 90, 78, 56,167, 29,174, 3, 79,175, 38, 60,122,124,131,235, 39,215,104,181,225,114,191, 33,120, -224,199, 63,249, 16,175,238, 55,124,239,157,103,120,247,157,215,132,202, 56, 37, 82,193,100,180,237, 99,192, 90,138,116,101,173, - 99, 78, 14,211,121, 70, 56,157,176,157, 22,132,109, 71, 93, 51,226, 20,112, 61,123,236, 95, 85,224,202,161,100, 48,228,199,161, -218,152,184,217,139,173,159,221,113, 47,219,213,126,217,117,106,213, 1,223,141,178,167, 98, 32,104,160,145,111,230, 99,142, 73, - 52, 40,137,222,253,105,154,176,173, 42, 58,149,164, 69, 80, 4,138, 94,205, 30,232, 29,184, 79,141, 8, 93,138,228,125,221, 48, -159, 70,174,132,171, 64, 11,221,222, 67, 79, 39,196,186,174,150,161,160,194,160,121,153, 81,234,133, 89,217,129,200,214,192, 92, - 9,118,123,209,161, 49,161,208,118,145, 65,118,169,226,171, 47,246,158, 15, 30,124, 52,160, 72, 43,131,250,229, 67, 64,203,242, - 1, 77, 76,135,243,206, 33,206, 19, 34, 83, 20, 99, 12,152,151, 9,243, 60,155, 55,252,116, 62,145,251,158,164,200, 45,213,236, - 98,149,217, 22,165, 8,147,163, 20,103,164, 68, 17,254, 73, 67, 19,210, 16,128,165,148,224, 67,194,188, 44,182,211,214,193,129, - 39, 44, 70,173,129, 98, 59,109,214,132,205, 44, 52,106,107, 40, 91,230,202, 67,132,173,247,247, 27,197,194,133,201,100, 21,219, -186, 31, 80,192,206, 20,228, 58,141,213, 76, 14,179,246,213,193,211,152,195, 68,191,127,182, 85,208,128, 12,141,110,247,152,191, -161,106,112,176,224,240,204,123,240, 78, 11, 3, 33,202, 73,198,185,140,235,213,250,215,123,149, 68,191,154,105,155,237,230,188, - 26, 43, 39,111, 20,118, 19,190, 81, 96, 55, 34, 93, 27, 80, 15,248, 86,189,192,155,198, 11,107,103, 61,212,236,120,208,157,143, -203,187,107, 10, 32, 84, 80, 55,246,234,181, 61,244,167,123,174, 9, 11, 83, 77,187,218, 40,221, 96,204, 43,159,164, 19,187,171, -236,151,218, 6, 24, 71,221,100,234,254, 10, 33, 32,194, 9,115,214, 7, 81, 19,235,174,163,247,134,170,149, 71, 3,122,205,150, - 12,134, 94, 37, 44,196,118,164,236,238,131,140,102,125,240,242,107, 58,238, 60, 88,149,212, 90,108, 4,219,154,103,247, 78,200, -131,119, 84,203, 86, 27,155,169,176, 71, 73,111, 49, 37,204, 11,253,139, 76,237,217,182,140,245,178, 98,223, 50, 5,105,149,244, - 42,207, 10, 88,186, 99, 23,228, 98,221,214,141,212,176,140,105,138, 88, 87, 25, 53, 21,170, 67,231,121,178,253, 99,151,183, 4, -205, 59,120, 23,108, 20, 34, 92,102, 32,239,170,112,167,112,208,113,197,224, 60,124,146,157,239,249,234, 44,169, 96,225, 97,186, -149,118,159,141, 30, 92,249,177, 96,112, 25,173,194, 42, 99, 99, 75,150,142,197,251,202,142, 32, 90,172,173,247, 2,254,232, 24, - 65, 50, 90,145,170, 45,194, 57, 79,138,155,140,128, 78,175,125, 23,247,171, 20, 89,215,143, 78,184,124,245, 75,228,109,165,138, -221,147,192,197, 65, 45, 99, 86,157,239,140,120,132,141,252,106,107,136,230,134, 24,158, 79, 56,245, 94, 71,138,223, 4,146,211, -109, 55, 68,200, 78,144,146,188,236, 59,153,226,145,207, 74, 54,216,142,163,242, 55, 26,195, 90,232,112, 67,196, 40,216,198, 24, - 84,129,223,152,174,229,152,119,159, 81,157,132,189,168, 88, 77, 86, 20,153,160, 37,160, 54,135, 52, 79,184,126,244, 20, 29, 1, - 64,196, 15,255,234, 5, 62,251, 66, 40,129,243,146, 16, 75, 69, 90, 78,168,104,184,119, 19,214,219,138,187, 79,111,241,122, 6, -222,124,227, 6,143,175, 34,238, 47, 25,239,189,255, 9,174,207, 19,126,239,159,127, 15, 33, 6, 76, 41,160,110, 27, 2,153,237, -189,117,164, 8, 4,250,184,247, 82, 81,111, 30, 35,190,243,171,168,205, 97,170, 25, 29, 13,201,157, 16,131,195,107, 79,207,184, -125,239,130, 39,143, 79, 38,190,106,165, 89,154,150,115,209,118,190, 15,105, 86, 50,114, 15, 12,187,108, 29,131,244,215, 20,164, -197,176,112, 46, 98, 29, 39,116, 29,141, 83,172,128,152, 24,126,225,100,101, 22, 2, 59,138, 14,218,154,132,201, 93, 25,230,161, - 68, 57,121, 95, 68,119, 51, 77,211, 33,139, 92,157, 17,157, 69,168, 36,205, 21,211, 6,200,103,148,247,221,224, 68,160, 78, 66, - 70,171, 2,197,106, 97, 76,146,148,149,209, 90,160, 38, 69, 27,133,106, 74,249, 52, 77,116,173, 52, 67, 41,151, 44, 69,200, 60, - 51,231,188, 54,244, 24,237, 64,119,214, 69,139,253,107,154,147, 1,102,148, 72,231,131, 39, 7, 95, 64, 47,105, 74,152, 79, 51, -208, 59,238,110, 47, 22, 83,188, 83,128,199,233,177, 48, 54, 88,148,128, 8,109,165, 26, 58, 42,237,125, 72,240,220,167,135, 32, -116, 62, 13, 53,170, 44,118,228,172,148,233,164,124,102,206, 66, 94,138,177,219, 11, 66, 0,106,145, 98,125, 91, 55,108,219,102, -171,167,109,207, 18,132,133, 49, 50, 14,196, 71, 71,186, 20, 52, 23, 65,133,107,157, 80, 28, 81,208,239,244, 75,215, 7,163,107, -221,253, 2, 35, 20, 71,173,198, 90, 52, 4,181,177,113,122,160,126,120,121,214,139,113, 12,180, 65,168,125,252,111,189, 54, 77, -255,209,117, 45, 9,158,177,149,193, 98, 92,243,246,142,230, 49,166,161,132,167,117,235,184, 49, 32, 48, 74,109,163, 53, 88, 69, -113,253,240,123,142,139,189,143,232, 84,186,191,218,131,127,174,243,143,193,111, 25, 43, 2, 45,170,245, 99,243,182, 58,232,180, -221,121, 22, 82,114,174, 37,101,218, 81,253,222,145,210, 66, 77, 67, 68, 84,111, 98,111,142,162,153,102, 59,166,166, 88,192, 48, - 56,191,186, 83,210, 17,123,171,133, 94, 99,207,177,142,140,209,244,146,143, 49, 80,188, 65,114, 22, 83,201, 74,145,125,159, 60, -196, 96, 18,145, 84,126,182,199,160,127, 87,124,171, 51,199,127,170,186, 23,161,145, 8,134, 10,187,135,194, 88,196, 66,242,155, -168, 49, 99,138, 6,116,112,222,163,108,187, 9,197, 90,131,169,198,209, 69, 9, 31, 56,110,210, 81, 76,219, 68,181,158,248,235, -232,200,195,170, 80, 18,246,132,131, 46, 59, 41,181,103, 36, 50,138, 29,132,202,215, 14,188,103,225,209, 51, 57,107,138,188,196, -162, 21, 38,146, 55,127,176,144,229,194,128, 20,201,164,158,151,161, 24,143, 73, 69,120, 30, 21, 69, 62,103, 47, 82, 22,209, 51, -116, 35, 85,165,211, 51,180,248, 4,117, 93,113, 58, 77, 88,166,138,159,255,228,239,200, 92,158,197, 86, 81, 43,189,242, 77,224, - 53, 77, 98, 35,187,217, 63, 48,236,126,244,220,202, 69,237,132, 40,231, 2,224,153,234,228, 60,224,154, 88,216, 18, 89,205, 94, -138,195,206,100, 38,169, 76,154,101, 26,171,224, 47, 16,158, 50, 77, 51,224, 58, 82,154,105,125,219, 31, 64,107,132, 20,181,161, -213,140, 16,147,100,215,239,155,133, 54,228,125, 51, 33, 93,183,116, 36,126,247,112, 72,193,227,116,245, 8, 33, 45,240, 33,226, - 39, 63,121,133, 23, 47,129, 39, 79,174, 13, 54,228, 67, 68,156, 18, 5,148, 13,251,186,225,242,209,231,120,254,245, 45, 62,253, -135, 79,240,108,114,120,177,101,132, 57,226,159,124,251, 77,252,202, 59,175, 65, 13, 3,113,142, 8, 97, 65,171, 29,209, 9, 36, -232,101,121,129,155,235, 19,182, 61,227,141,183, 94,147,238,174, 3,185, 22, 41,156,162, 67,108, 5,201, 55,220,222,109,104,117, -178,156, 6,141,223, 21, 6,255,176,144,170,136, 82,143, 57,111,169, 86,242, 25,121,117,151, 96,236, 75,189, 15,200, 69, 4,139, -106, 89,148,216, 83,134, 3,213, 62,162, 67, 67, 64, 8,130, 57,206,165, 34, 32, 90, 98,160, 22, 28, 57,239,216,209, 69,204,229, - 2, 90, 43,216,247,142, 24, 19,182, 77,214, 98,210, 37, 7, 19, 13,133, 24, 17, 3,164, 91,140,222,236, 67,128, 4, 28,229,189, -143, 41, 30, 15, 88, 97,218,187, 3, 2,185,195,149,138, 94, 69, 69,157,146,168,245,227, 36,106,227, 66,255,183,138,185, 74,238, -230, 28, 17,139, 85,146, 64,154, 92,198, 84,173, 57, 20, 62,231, 51, 33, 47,105, 74, 76,168,131,216,107, 83, 66,140, 17,203, 89, -176,172,167,243, 66,213,121,193,122, 33,238, 54,103,226,104, 5,198,212, 57,194,150,176, 42,216, 40, 91, 71,233,167,243, 66,205, - 3, 44,210,118,223, 55, 99,117, 0,130,129,213,116, 57,141, 71,213,164, 58, 31, 36,110,181, 86, 78,171,170,124,175,219,182, 97, -189, 92,100,191,207, 70, 6, 93, 28, 23,160, 63, 60, 96,146,180,182, 24, 13, 97,171,250,161, 66,248, 88, 35, 78, 92, 46,115,102, - 93,208, 78,236,120, 22, 42, 34, 53,248,177,242, 83, 24,149,234,154,130,235, 72,105,146,119,150,113,171,114, 97,203,101,158,247, - 13, 37,175,104, 45, 83,196,221,172,163,149, 6,177,216,109, 78,186,137, 53, 23, 77,199,233, 84,148,107,161,167,112, 33, 17, 13, - 87,168,199,205,238,190,166, 34,183, 62,242,206,209, 31,184, 70,154,195, 96,100,112,159,110,214, 54,117, 89, 28,199,242, 38,198, - 28, 68, 60,131,152,113,212,239,237,199,187,225,110,181, 80, 47,228,133,200,132, 89,196,115,193, 38,200,210, 12, 70,229, 7,232, -152,164,150,130, 56, 69,195,223,233, 94,163, 55, 94,220,222,163, 23,181, 86, 21, 38,152, 21,238,152, 59,186,243,135,216, 57,181, - 57,120, 99, 23, 23,138, 89, 40,209, 17, 97, 29, 59, 2,241, 44,139,130, 59,103,217, 23,136,218, 86, 62,160,243, 60,201,120,235, - 52,177,106, 13,204, 54,110,184,191,189,199,182,237,184,187,189,231,152, 8,244,245,137,130, 51, 77,137, 74,206,177, 43,144, 48, -130,136,187,219, 59, 76,115,196,190, 9,130,210,103,200,129,180,115, 28,232, 37, 96, 37,121, 1,231,108,171,170,167, 11,124,149, -142, 92,240,165, 14,123, 46, 12,156,168,182, 62,208,220,111,143, 78,159,115,163,248, 75, 14, 49,141,166,117,212, 20,132,200,189, - 17, 71,117, 62, 0,251, 42,144, 25,241,210, 70,230, 76, 75,106,149, 90, 50, 60,119,245,141,138, 90, 5, 88,152,125,195,195, 68, - 76,232, 1,243,211,239,224,213,237,138, 16, 60,158, 62, 59,227,211,159,254, 80, 84,211, 62,208, 34,232,105,151,216, 73, 53,138, -240,161,115, 20, 52,224, 64, 10,226,136,169,155, 37,100, 8,226,154,105, 47,228, 2, 15,118,152,186, 94,204,182, 18,102,134,122, -240, 32,237,135,170, 58, 77,145,251,243, 96,151, 59,200, 1,144,209, 59,171,105,122,107,189,138,159,106,198,186,238,134, 80,204, - 74, 27, 3,198,165, 24, 19, 2, 72,213,115, 30,167,235, 71,152, 79,103,192,121,124,244,241,142, 95,126,220,112,117,117,162,207, - 94, 94,230,249,180, 72, 81, 88, 41, 50,155,207,240,101,135,107, 25,119,155,195,165,122,124,246,245, 5,243, 60,225,219,223,121, -219, 94,224,114,127,143, 41,120,224,234, 49, 22, 10,127,122,107, 40,203, 11,204,203, 29,224,132, 14, 22,137,247, 45,247,130, 70, -141, 47,191,198,221, 47,126,137,242,245, 5,235, 37,155,218,213,244, 46, 60,144, 59,171,252,214,218,131, 32, 18,179,159,182,134, -198,224,160,170,157,143,186,123, 56, 10,245,166,206, 29,152, 76,112, 61, 2, 78,128,100, 74, 34,157, 77,169, 21,145,207,159, 67, - 64,233, 13, 21,222, 70,131,210, 29,122,244, 86, 16,225, 48,165,201,206, 5, 73, 62, 4, 80,164,200,206,187,188,179,232,193,220, - 12,141,147, 62,231,105, 71,244, 1,112,162,122,207,185, 29,196, 77,142,104,107,233, 10, 67,240,104, 44, 76,198,168,190, 99,154, - 60,122, 8,104, 81, 28, 38,222,203,254, 91, 16,206, 48,101,251,216, 83,170,115,167,114,194, 37,221,178, 68,124, 78, 36, 66,242, -249,140, 1, 87,143, 36,187, 92,216, 25, 19,139,155,138,187,219,149,154,152, 98, 13,129,126,238,106,171,148,119, 4, 8, 81, 58, -236,204,213,135,167, 86,163,183, 42, 66,102, 39,197,202,196,216,223,225,129,110,194, 87,144, 74,144, 34,193,130, 90,119, 27,249, - 3,192,190,109,216,168,205,201,202,160, 87,161,175,230,155,251,200,136,214, 1,144,177,115,140, 58, 11,163,110,238,114,209, 20, - 10, 29, 5, 59,221,208,115,167, 67, 70,191,155,110,224,173, 99, 20,105, 71, 71,138, 9, 33, 38, 76,211,130,105, 74, 60,166,187, -133, 71,249,184, 34,150, 25,235,253, 43,160,100,155, 64, 53, 84,139,115,181, 81,123, 31,152,215,163,210,220,222, 5, 12,103, 64, - 63,188, 43, 29, 35,180,167,211,226,170, 68, 63,103,176, 24,247,128,111,223, 91,183,100, 54,237,204,123,135,229,182,107,118,138, - 58, 5, 76, 36,215,135, 83, 72,139, 28,179,233,185, 49, 93,211,166,242, 65,150,187,115,135,196, 78, 24, 63, 66,159, 99,213, 1, - 68, 1, 48, 48,168, 35,203, 75,208, 74,102,116,166, 67,233,149, 9, 51, 85,236, 97,181, 73, 64, 70,101,104, 67, 27,129, 29,142, - 93,178,222,239,133, 15,103,167,120, 73,163, 11,101, 52, 2, 6, 30, 8, 62, 81,227, 17, 29,171,174, 66,149,102,154,102,120, 31, -132,199,173,130, 36,166,174,181,189, 98,223,118,236,171,100,225,186,126,196, 9, 50, 69,137, 99,150,105,153,177,222,111, 34, 68, -241, 1,189,107,152,193, 32, 62,169,143,186,247, 98, 36,164,188,239,216, 35, 19,144,104,197, 64, 15,168, 78, 30,138, 72,117,170, -116,225,133,153,196, 50,150, 87, 30,179,165, 62, 89,118,140,192, 34,156,107,182,123,138, 41,152,117,198, 19,172,146,247, 13,141, - 24, 80,217, 45, 55,219,157,169, 42,222,216, 0, 57, 91,232,134, 22, 0,170,135, 80,128,133,115, 14,231,215,191,139, 92, 35, 90, - 91,241,228,233, 21, 46,207, 63,196,139, 47, 62,133, 15, 84,142,115,127,214, 88, 80,105, 72, 64,171, 21, 62,121, 84, 62, 35, 42, -162,212, 74, 53,104,130, 22, 58, 16,104, 41,138,222, 44,123, 34,176,202,136,193, 1,144,188,227, 90, 50,234,222, 57,237,161,133, -199, 73, 84,172, 15,147, 40,232, 53,136,131,110,129,137, 5,158,238,229, 26,249,239,162,177,216, 70,138,156,166, 75,105,122, 29, -133,146, 50,133, 81,221, 70, 69, 76, 51,210,188, 96,185,186, 70,136, 19, 94,190,170,248,251,247, 87, 60,126,114,141,117,205,112, -193,217,103, 14,231,209,186,199, 20, 61, 82,242,184,190,154,208,219, 2,108, 23, 76, 1,248,244,249, 5, 87, 55, 39, 60,121,242, - 8,183, 91,195, 39, 95,222,227,113,170, 88, 92, 67, 63, 95, 35,222, 92,195, 47,147, 48,200, 29,112,223, 63, 50,188,102,107, 18, -176,216,247, 13,245,231, 63, 67,126,241, 18, 29, 5,174,137,133,175,213,145, 85, 96, 35, 95, 78,174,168, 14, 51, 43,140,138, 6, - 59,187, 10,207,131,191, 52, 30,138, 42, 38, 82,239,118,173, 50,205,170,170,244,110, 70,250, 66,111, 8,105, 34,129, 80, 28, 30, - 89,226, 29,237,189,209,137, 71,173, 99, 95,217,205,186, 33,133, 83,206, 59, 98, 18,129,165,159,188, 77, 15,192,149, 64,171, 29, - 46,241,204, 49,223,113,195,121,158,209,123, 65,103,161,223, 90,151,162,187, 55, 19,219,170,240, 46,166,128,142,132,245,190, 14, -114, 96,107, 8, 41,216, 59, 24,188,135, 79,204,173, 38,151, 96, 73,129,127,127, 41,196,183,203, 58,240,177,189,113, 37, 39,225, - 51,167,243, 44, 34,177, 46,246,220,232,188, 97,109, 5,176, 35, 86,187, 86, 10,214,251,149,163,101,207, 92,118,142,148,173, 17, -115,212, 13, 4,137, 2, 54,228,106,178,201, 67,171, 89,226,162,231, 40, 68, 79,254,152,231, 74, 45,239,178,126,244,193,155,192, - 56,231,221, 68,159, 42,140,188,220, 95,232,137,223, 13,121,173, 30,103, 33, 91,194, 44, 83,131,226, 57, 20,248,149, 35,243, 82, -138,196,177,106,199,202, 95, 71, 33, 71,122,107, 10,213,146, 43, 50,237,146, 7,233,196,214,171,141,133,119,173, 25,219, 54,138, -203,222,187,188, 99, 55, 55,112,104,240,175,191,134,219, 87, 47,241,226,171, 79,145,247,139,164,118, 66, 93, 22,222, 44,106,166, - 17,193, 0,215,244,166,192,162,192, 95,187, 62,192,124, 27,130, 70, 9,112,234, 65, 63,238,203,251,152,164,216,255, 7,198, 25, -200, 21,164, 5, 91,245, 54,148,238,102,151,235,227, 28,209,162, 98, 40,212, 15,127,158, 14,239,104, 13,228, 20,210, 52,167, 6, -196,145,115, 62,178,128,212,245, 65, 8,145,236,119, 56,187, 92, 44, 51,152, 68, 28,231, 27, 92,243, 18,107,154, 11,147,119,162, -141,186,117,174,175,209,157,154,213, 43, 25,192, 14,109, 47, 72,211,100, 30,233, 78,222,111, 45, 21,149, 29,171,116,168,163,195, -149,139,150, 10,119, 39, 93,209, 60,207,252, 53,228,162,200,123,198,229,238,130, 90, 50,238,239,238,169, 64,159, 88, 76, 80,137, -121,248,144,246,205, 33, 68,122,214,213,122,115,240,115,202, 75, 66,230,244,165, 30,176,123,226, 15,111,220, 87,232,223, 35, 70, -169,218, 11,187,149, 98,138, 90,144, 52, 21,184, 43,239,156, 60, 4, 0,193,162,102, 1, 73,183,242, 60, 68, 61, 93, 8, 2, 83, - 32,254,147, 10,237, 16, 39,249, 98,217,177,122, 50,240,117, 5,161,204,112, 9,224, 16, 59,140,250,123, 75,165,175,219, 57,196, -229, 9, 48,191,129,203,171, 21,167,211,140,243,210,240,179,247,254,134,150,195, 93,194,123, 64,144, 4, 1, 39, 50,222, 10,172, -208,235,225,161, 10,244,227, 15,161,135,142,183, 83,140,220,221,147,186,212, 14,233, 78,252,156, 74, 17, 20,174,100, 35, 69, 19, -252,233,190, 61,132,128,144, 34, 21,159, 2,175,136, 41, 81,201,158,217,113, 75, 32, 77,171,162, 92,207,155,240,255, 69, 8, 39, -159,131, 87,120,140, 15,162, 64,109,227,229,119, 78, 64, 64,203,249, 6, 64,192,190, 3, 63,250,235, 87,120,250,248,145, 92, 76, - 51, 25,211,236,226, 36,118, 55, 98,153, 35,166,228, 81,114, 5,220, 4, 92, 45,120,245,252, 5,154,115,136,222,227,245,215, 30, -161,150,138, 23,159,126,142,118,138,184,121,227, 53,132,229,140, 72, 21,176,111, 50, 50,189,172,114, 96,183,218,224,110, 95,192, -221,158,101, 31,212, 10,178, 11,200,151,130,237, 82, 17,231, 25,211,193, 1,162,160, 37,229,147,203, 5, 36,118, 27, 85, 76, 59, -210, 16, 61,237,108, 14, 34, 56,132, 35, 99, 95,119,138,220,249,105,158,180,119,226,243, 14, 56, 0, 59, 74,193, 52,205, 44, 88, - 15,202,121,123,125,100, 44,235, 56, 50,212, 32,149, 82, 68,125,109,105,103,144, 80,141, 16, 3, 34,173, 73, 34,204, 82, 74,227, - 24, 97,150, 86,144,210,132,109, 43, 72, 83, 68,201,149, 40,216, 60,146,197,246,140,105, 94, 40, 80, 21,102,185,136,237,226, 80, - 74, 59,103, 99,251, 48,123,100,250,196,173, 17, 97,145, 45,250, 0,143,141,171,179,214, 28,138, 31, 5,249,188,204,114,185, 51, -122, 89, 87,145,211, 36, 98, 54,116, 96, 89, 22,211,195,212, 90,113,185,187, 24, 49, 82,198,238, 94,194,113,104,231, 83,119, 77, -156,146,173,129, 58,188, 16, 3,139,140,236,247,125,231,248, 61, 90,225, 16,104, 55,189,191, 95, 5,212,164,153, 1,165, 96,189, - 92,104,127,237, 44,240, 4, 23,188,109,235, 88,153,114,140,123, 58, 45, 38,182, 82, 60,171, 62, 51,129, 80, 23,101,183,131, 29, -186, 8,213,156,217,186,148,252, 41,113,216,170, 30, 23, 91,233, 96,155,200, 57,100,145,198,100,205,139, 29,110, 71,222, 87,220, -223,241,223,243, 65,226,123, 67,128,115,103,132,224,113,186, 58,225,116,154,112,117,181, 32,120,224,179,143,127,193, 9,175, 51, -177,178,138,238,250,193,162,102, 5, 31,239,128,194, 51, 3, 7, 43,219,176, 57,214,131,178,253, 16, 97,221,221, 33,202,218,217, -186, 85, 11,201,110,113,172,236,218, 31,160,125, 15,151, 62, 63,151,110, 54, 59, 21,175,194,208,200, 90,244,168, 46, 70, 87,108, - 77, 69,235,186, 30, 32,139, 94,254,190, 35,230, 85, 52, 20, 5, 81,113,140, 1,144, 4, 46,130, 61,212,207,217, 27,140,236,166, -123, 21,221, 51,104,181, 22, 98, 96,152, 64,196, 94,154,133,145,212,218,224,226, 80,228,138, 20, 95,210,153, 2,189,153,186, 79, -210,238, 66,246,223,205,254,144,232,206,190,228, 16, 3, 69,214,205,254,115,185,191, 96,219, 54, 70, 23, 54,170, 74, 37, 5, 44, - 37, 1,102,192, 1, 37,111, 40, 69, 21,236,131,251, 45,214, 53, 73,157,210,142, 81,193, 22,219,186, 90, 69,165, 35, 45,207,116, -168,214,170,229, 71,171,130,223,133, 96, 73, 66,218,197, 40,138, 81,226, 89,195,131,184,192, 52, 79,246, 80,129,163, 40,171,178, - 41, 34,115, 0, 98,242,168, 85,198,234, 82, 40, 72,246,124, 99, 87, 15,227,244,219, 49, 11,117,162,122,231, 80,209,128, 48,225, -234,205,223,192,243, 23, 27, 0,224,241,147, 19, 62,124,239, 79,176, 93, 46, 68,114, 70, 86,177,206, 44, 74, 33, 70, 57,128, 56, - 98,242,220,231, 75, 62,177, 80, 7, 3,161, 36,141, 97, 19, 18,156,211,185, 30, 25,127, 55, 85, 71, 43, 2, 83,243,173, 29, 58, - 15, 0,249,156,167, 57,241,215, 97,162, 93, 16,117,176, 42,147,113,112, 56, 40,165,176,228,130,188,175,244,157,179, 42, 15, 51, - 73,153,178,214, 9, 41, 1,221,193, 37,125,150, 19,186,115,152,151, 51,124,156, 0,159,240, 55, 63,252, 10, 87,144, 53, 79,111, - 29, 19,100,212, 30,146, 36,233,165,232,184,195,231,247, 66,129,212,190,109,120,121,187,138,127, 58, 4,196,224, 49, 77, 30,168, - 64,243, 17,219, 94,113,251,234,130,240,248, 10,173, 20,204, 75, 68,221, 11, 10,227, 47,239,239, 87,212,109,131, 43, 59, 28, 3, - 54,242, 94,113,119,233,112, 46, 33, 63,121, 12,239, 63,166, 72,168, 25,200, 71, 19,160, 58, 15,230, 82,186, 5,244, 88,222,124, - 27,135,150,172, 88,120,232, 49,238,210,124,186,196, 34, 27,144,134, 16, 18, 77,103, 43,181, 32, 52,178,209, 29,200, 50, 8, 20, -157,241, 98, 8, 17,190,101,238,178, 51, 17,157, 59,166,121,226,158,180,154,176, 54, 80, 15,209, 49, 68, 75,219,150, 49, 47, 44, - 96, 41,236, 84,231,139,115,178,203, 85,192, 85, 41,149,128,171,110, 36,175,121,153,133, 55, 80, 42, 82, 8,104,149, 23, 84,140, -242,115, 27,208, 98, 71,168, 13, 62, 57,219,103, 43, 44,166,247, 97,173,170, 69, 86, 27, 49, 6,158, 37,201, 4,184, 34,158,170, -204, 47,151, 95,123,154, 23, 44,167, 5,128, 71,222, 43,110, 95,222,153,120,235,254,118,181, 6, 69, 14,108,201, 84, 79,243,108, -135,184, 94, 64, 34,192, 45,140, 41,173,150, 54,166, 24,217, 16, 34,246,189, 48, 21,210,141, 40, 79, 22,181,189, 87, 22, 4,149, -127,143,130, 92,118, 22,211,222,236, 84,145, 77,219, 60,207,163,248,161, 24, 43, 19, 12, 20,162, 7,138,164, 69, 11,184,171, 50, -128,138, 16, 32,222, 19, 50,133,109,150,178, 25, 98, 36, 95,126,168,204,189,174,109, 52,210, 85, 61,242,219,206, 85,179, 56, 58, -122, 43,104, 85,180, 3,151,251,151, 56,157,175,240,228,233,119,240,228,217, 19,113,227,160,225,246,213,215,184,125,249,181,156, - 73,212,122,106,174,251, 3,238, 0,207,148, 35,159,161,217, 52, 87,158, 47,229, 61,116,104, 60,234, 1, 58,115,252,111,149,166, -181, 81,120, 90, 23,222,241, 64, 9,175, 54,240,222,199,229,174,147, 66,117,102, 29,108, 99, 44, 22, 88,164, 48,173,109, 88,222, -134, 45, 47,240,159, 5,229, 5,144, 25, 2, 64, 86, 62,173, 99, 74, 19,162,133, 22, 48, 34, 79,125,223,208,108, 87, 50,212,199, - 37, 8,187, 76, 90,151, 11,223,194, 9, 52, 8,166,139, 13, 38, 78, 9,189, 57,162, 67,133, 8,164,137,103,145, 4, 28,253, 2, -212, 26,161,202,123,193,203, 70, 44,103,166, 31,205, 42, 56,147, 16, 21, 57, 12, 47,216,182,221,200, 90, 18, 65, 39,145,172, 33, - 6,233,200,171,178,115, 97, 41, 63,154, 76,164,190, 65,209, 7,236,220, 25,171, 85, 6, 28,111, 73,193, 16,252,200,175, 85,116, -163,115,170,224,142,156,110,116,204, 28, 57,229,156,197, 83,175, 65, 36,164, 42,169, 39, 93, 57,230,242,103, 22,255,126, 97,202, -155,136,158, 34, 98,242,128, 8,131, 49, 77,193, 60,186,173,117,120, 39,251, 30, 13, 1, 57, 6,236,121, 47, 29,149, 83, 28,170, -115,184,249,198, 15,112,119, 47,149,251,227,103,215,216, 95,126,136,151, 95,126, 98,235, 15,231, 27, 90, 21,235, 79, 76, 1,173, -209,219,218,187,196,212,118, 24,109,172, 51, 40, 33,120,143,238, 10, 25,225,146,157,172,127,119,239, 37,215,124, 95, 55,233,254, - 56, 38,111,252, 67, 26, 26,152, 47,193,196,110, 37, 16, 8,164, 62,233, 16,163,105, 34, 98,208, 34, 77,116, 13,101,223, 80,246, -203, 24, 51, 54,118, 67,132,251,128, 2, 42,231,147,236,223,188,106, 28,228, 37,153,150, 5,243,233,140,238, 60,126,250,254, 29, -246,151, 13,207, 30, 45,232, 81, 8, 79,167,105,225,136, 20,232,251,138, 9, 29, 49,157, 1, 82,216, 82, 12,184, 92, 54,124,244, -209, 23,114, 33,205,226,115, 14, 78,236, 81,126,185,150, 84,165,151, 47,208,251, 25,219,156, 68, 36,231, 37,170,120, 91, 51, 46, -235,134, 90, 27, 78, 75,194, 60,121,236, 89,244, 10,107, 14, 88, 91,199,253,158,209, 47, 95, 99,191,100, 56, 55,219, 97,208, 40, -230, 1, 1, 23,153,185, 4, 58, 45,129, 37, 57, 85, 59,128,164,136,174, 40,133,186, 5, 28,187, 8,189,236, 29, 28, 42,100,195, -162,232,216,227,206,177,155,165,201, 57, 25,137,235,174,184, 86, 79,103, 73, 61,128, 57, 24,102, 18, 24, 32,210, 59,178, 83, 43, -151,103,150,116, 51, 86, 68,201,217,198,210, 93, 3, 99,232,230,240, 60, 39,124,169,240,228, 56,236,219,142,121,158,113,190,230, -161, 22, 38, 99,101, 52, 22,117, 26, 90,210, 65, 70,125,109, 38,138, 82,173,134,185, 81, 14,201,105, 34,204,140,152,151,249,129, -174, 35, 38,209,153,104,247, 14, 4,220, 60,186,182, 92,247,109,221,144,247, 66,251,223,142, 76,182,123,103,134,131,171,157,133, - 78,103,195,226, 40,100, 99,144, 17, 26,188,107,135, 9,145,231,148, 48, 18, 58,195,174,178,201,143,175,151,213,206,169,146,171, - 65,132, 58, 21,227, 82,228, 6,198, 7, 59,164, 32,235,148,105, 74, 54, 10, 14,228,224, 75,196,169, 67,174, 21,165,116, 67,191, -234,186,160,150, 54,232,131,116, 13,181,131,197, 74,109,191,141, 65, 34,186, 34,212, 34, 83,113,170,181,102, 4, 31,228,210, 34, -150, 91,161, 56,158,223,127,107, 21,121,187, 71,154, 60, 78,231, 25, 29,205, 82,232,238,134, 55,218, 98,215, 53, 64, 75,149,235, - 99,216,127,216, 75,179,201, 16,114,167, 34, 96, 7,109,240,120,145,183,118,248,247, 15,226, 54,192, 61,236,214,255,127,254,123, - 48, 94,168, 84,111,132,205,244, 35, 23, 6,230,240,209,226, 86,239, 18,135,195,142,221,178,213,253,136,135,117, 64,244,209,214, - 76,145,161, 70, 81,129, 15,250, 71,239, 22, 10, 65, 53,117,224, 11,198,206,192, 57,102,102, 55, 65,224,117,102,155,119,227,107, -123, 56,200,254,105,207, 98,117,241, 32,206,144, 73, 59,158,130, 41,133, 34,216, 62,214, 57,179, 96,169, 63, 47, 4,121,121,196, -230,225, 44,178,114,223,119,212, 34,138,207,117,221, 41, 82,145,203,113, 91, 43, 98,170, 56,157, 38,230, 82,119, 67, 24,154,199, -146,120, 68, 29, 25, 5, 67, 90,202, 5,189,173, 82,249, 53,241,117, 13,202, 86, 63,242,239, 11, 46, 23,241, 70,251, 16,112, 62, -159,208, 93,226, 88,145,135, 5, 53, 2, 58, 74,118,102,219, 2, 63,175, 40,100, 41, 13,198, 49,193,219,225, 18,162, 88,201, 49, - 29, 45,112,180, 42,157,151, 23, 82,153,249, 20,157,137,222,208, 29, 90,169,152,111,222, 65, 11, 79,177,173,183, 72,115,194, 18, - 55,124,240,215, 63, 20, 85,188,227,195,205,138,175, 22, 81,156, 10,109, 79, 48,144, 37, 87,211, 34,104,101,238,204,238,193,231, -163,119,212, 61, 91, 70,114,239,192,190, 74, 32,132, 10,141,228,207, 69, 77,193, 33, 22, 85, 84,159, 36,252, 57,135, 24, 39,249, - 57,209, 15,157, 1, 45,105,141, 73,124,173,100, 1,199,212,108,187, 81,165,241,193, 7, 19,150, 40,240, 6, 78, 46,119,141,107, - 92, 78,139,236,138, 93,192, 23, 95,238,248,240,103,119,120,251,230,132,214, 61, 92, 8, 88,150, 5,240, 30,190,101, 96,223,224, - 29, 1, 70,193,195, 39, 57,132,214,187, 11, 62,252,240,115,108,219,142,211,146,240,226,229, 61, 30,159,103,120,116, 76,179, 76, - 31, 82,244, 8,139,144,237, 90,105,104,185,224,246,174, 99, 74, 30,175, 94,221,227,229,139,123,204,115,194,180,221,227,244,242, -107,248,173, 97,131, 71,116, 18,219, 90,187,195,118,159,197,107,110,221,200, 32,191, 73,103,226, 77,136,212, 9,166, 64, 31, 64, - 13, 41,194,178,141,192, 91,171,232, 33,201,207, 51,190,128,226,134,221, 16,122,226,184,203, 27,151, 93,140, 30,222, 69,155,148, - 72,250,153, 60,243,121, 31,112, 25, 67,208, 18,205, 89,107,166,114,122,128,157,142, 30,123,209,125,200, 69,170,171, 61,121, 79, -234, 67,218, 37,115,219, 91, 3,166, 89, 14,241, 90,154,117,254,231,171, 9,235,101, 67,245,141,133,120,151,117,130,119, 64,103, - 0, 76,230, 94, 56,140,238,249,184,107,118, 94, 10, 4, 65, 82, 7,195,219, 58, 47, 86, 47,177, 87,138,104,238,234,230,108,207, -219,182,237,216, 46,187, 20, 0,150, 69, 14,196, 41,209,149,227, 41,212,149,232,101,163,234,169, 30, 39,103,122,162, 71, 71, 57, - 77, 9, 62,242,249,233, 13,222,119, 97,129, 87,141, 6,222,185,122, 27,116, 49, 17,202, 30, 46, 26,126, 31,186,194,177,241,180, -233, 43,156, 33,108,149, 72,168, 86,229,135, 20, 62,177, 17,235, 89, 84,235, 1, 84,198,243, 83,253,210,224,121, 94,155,172,196, - 96,193, 56, 14, 49, 36,228,146,205,118,172,197,203,128, 77,137,206,227,155,239,188,131,243,245, 25,240,146, 16,231,204,225, 65, -193, 93, 31,103,114,240,162, 36, 87,144,217,209,201,245,144,243,223, 77, 69,175,227, 20,235,196,109,140,175, 32,171, 99,230,201, - 40, 16, 84, 93,255,176, 59,199,255,215,187,110, 81,221,180,240,161, 30, 46,115,111,161, 75, 29, 78, 82, 38,253,136, 53,215, 73, -167,179, 98, 41, 18,206, 54,138,107,189,232, 85,188, 78,161,156,202,252, 61,189,231,157, 10,237,110, 10, 80,165, 74,153, 48,193, - 75,182,172, 19, 92,130,133,135,196,168,251, 49,169, 16, 3, 69,120,150, 80,212,187,141, 13,101, 60, 61, 4, 61,226, 87,100,229, -198,189,121,140,163, 74,158,231,249, 65,108,159,120, 62,139, 88, 42,216,129,171, 77,140,147, 31, 27,167, 29,125,239,186,119,212, - 3,206,211,171, 43,108,225,106,201,107,178,191, 43,244,105, 38,243, 95,118,251,239,129,178, 45,200,146,109,157,197,246,214, 9, -158, 41,165, 34, 76,114, 64, 53,141,176,180,207, 81, 96, 58,194, 83,239,134, 6,236,112,136,211, 68, 48, 75, 50, 79,187,142,217, -188, 39,221,141,225, 48,162, 61,232, 20, 77, 56,212, 44,136, 68,193,196, 86,132,233, 26,215,111,253, 0, 95,124,126, 7, 31, 60, -158, 61, 93,240,203, 31,255, 7,180,186,163,230, 77,136,179, 78,186, 23, 31,162,196,236, 54, 33,209,138,216,110,188, 96, 21,149, -162,192, 72,189,133, 55, 74,151, 4, 57, 4, 98, 93,251,160, 16,106, 22,125,229, 40,157,251,163, 70, 1, 87,111, 21,241, 52,145, -155, 47, 54, 40, 77, 36, 82,177, 98,111, 21,123,173,252, 46, 11,214,251, 59,160, 23,234, 12, 38,102,111, 23, 68, 85,207,154,221, -201, 11, 99,129,227,225,202, 84, 60,239, 3,210,188,192,249,136,203,165,225, 39, 63,122,142,111, 61,185,146,203, 44, 4,248, 57, - 1, 81,138, 57,119,217,225, 60,163, 70,231, 51,194,114, 66,222, 51,182,117,199,103, 31,126,130,175,190,190,199, 91,175, 63,194, - 60, 69,124,249,229, 75, 60,125,250, 58,208, 59,214,203,110,158,216, 28, 2, 90, 46,112, 37,163,220, 53,204, 83,194,253,101,197, - 95,254,205, 7,184,180,142,215,174,174,240,116,142, 8,165, 1,181, 97,158, 49,198, 14,213, 0, 0, 32, 0, 73, 68, 65, 84, 3, -158,221, 76,120,121,151,113, 1,112,183, 55, 52, 31,109,191, 38,133, 95,183, 3,185,210,113,161,188,238, 78,239,106,107, 35,116, - 66, 3,119,244,240,105, 53,195, 35,193, 71,111,160,150, 16,188, 92, 28,117,131, 11, 66,214, 19, 79,249,100, 35,243, 49,246, 31, - 10,116, 31, 2,182,117, 69,239,162, 40,223, 55,209,212, 56, 23, 1,106, 32, 58, 71,178,189, 85, 84, 22, 28,219,186, 98,158,103, -179, 71, 85,218, 96, 51,173, 89, 50, 50,111,198, 30, 7, 65, 56,194, 93,223, 45, 65, 78, 15, 77,157,100,245, 46,161, 58,151,251, -157,107, 1,127,152, 4, 84,235,200,163,242,211, 1,250,127,189,105, 94, 58, 99,124,231,121,162,162, 61, 97, 90,102,139,144, 13, - 49, 97, 57, 45, 88,206,139, 21, 4,121,207, 67, 72,218, 28,246, 77, 52, 19,122,177,164, 41, 89, 64,144,188, 63,206,132, 97,106, -207, 29, 83, 24, 9, 49, 18,113,160,128, 94,228,172,131,128,144,246,140,222,138, 37, 71,230, 93,120, 27,189, 53, 91,145,198, 24, -225, 88, 8,169,176, 78, 19,210,122,235, 12,214,114, 36,133,102, 43, 24,123, 29, 9,107,154,100, 40,133, 65,179,174, 60,231,108, - 29,126,225,164, 84, 55,216, 50,189, 85, 24, 88, 53, 62,186,179, 46, 94, 16,185, 41, 77, 22, 59,172,237,113, 76,137,130,216, 5, -111,127,243, 27,248,198,219,111,193,251,136, 87, 47, 94, 81,223,148,113,185,220, 83,124, 7,203, 31, 23, 38,191, 20,222, 48,109, - 24,197,162,246,185, 10,149,242,144,157, 50, 38,224, 54,158,199,131, 98, 8,253,193, 79,131,238, 81,234,225, 18, 63,118,247, 15, -152,241, 15,254,153,195, 1,210,205,179,190,202, 74,208, 15,253,151, 18, 67, 37,117,209,153, 11, 75,213,238,234,150, 2, 57, 4, - 66,104, 61,188,195, 62, 32,234,190, 65,253,226,194,174,173, 67, 89,202, 75,168,181,253, 1,135,214, 42, 32, 30, 46, 49,140, 36, - 54, 21,113, 85,166, 45,149,194,104, 72, 30, 66, 49, 37,236,140, 13, 85,146,144,247, 50,214,218,182, 34,234,122,118,233,145, 17, -125, 90,181,106,119, 94,107, 21,116,106,201, 38, 54, 80,213,187,134,118,104, 42,146,247,142, 7,158, 51,149,184,122,208, 59,125, -127, 58,195, 9,138, 63,228,229, 85, 25,250, 17,117,245,208, 8,185, 64, 29, 35, 35,114,141,117,188, 84, 72, 61, 82,104,142,143, -145, 35, 64,170,187,167,201, 82,146,188, 37, 20,137,133, 48,250, 52,192, 6, 29,146,145, 78,133,116, 87,246,123,243,198,205,223, -247,140,152,252, 24, 47,249,145, 77,239,188,195,163, 95,249,109, 60,127,190,162,183,134,155, 39,103, 60,255,240,199,184,127,249, -229, 1, 59,216, 45,156, 64, 30,248, 96,127,182, 34, 55, 62,133, 57,213, 32, 54,242,107,119,179, 66,193,193,178,145,107, 25, 49, -160,232, 21,205, 2, 27, 4, 72,212,123, 16, 5, 60,169,131, 49,141,204,238, 64, 28,162, 87,100,111, 87, 15,110, 33, 10,120, 19, - 1, 92, 43,182,254, 8, 65, 94, 68, 31, 35,224,130,113, 19, 2, 87, 26, 42,250,172, 21,166,225, 72,203, 9,189, 75,164,240, 15, -255,252,115,188,123,115,194,213,121, 6,130, 71,117, 78,132, 95, 16, 60,102, 83, 43, 71,136,112,105,194,118, 17, 20,240,139,219, - 11,190,120,181, 97, 74, 1,111,191,253, 58, 62,250,240,115, 92, 46, 59,130, 15,216, 46,187,236,243,122, 71, 15, 30, 49, 84,192, - 3,209, 59, 4, 15,180, 2,124,242,233, 75,124, 81,238,176,162,224,229,171, 59,252,228,253,207,241,205, 71,239,224, 38,122,184, - 30,240,181,243,120,181, 55, 56, 70,248, 46,231,249,193,136,120,120,102,157,140,244,234,248, 62, 5, 28, 51,142, 19, 29, 55,247, - 17, 25,192,253, 96,177,189,179, 22,210,138, 29, 5,253,210, 42,166, 83,183,128,216, 20, 7, 45, 81,192, 36,100,148,187, 14,239, - 21,222, 36,151, 74, 46,217,158, 13,233, 4, 55,156,206, 87,134,132,149, 14, 48,144, 31, 14, 22,230, 99, 87, 43,131,132, 78, 26, -100, 98, 23, 40,156,127,245, 76, 59, 78,122,212, 65, 17,163,136,188, 12, 14,227, 37, 85,109,223,171, 37,143,201, 88, 24,199, 83, - 29,121,207,184,191,187,136,111,155,160,163,121,158,144,166,153, 76,247,132,171,171,179,113, 50,180, 8,112,222, 35,103,238,178, -171,126, 38, 14,247,119, 23,118,207,210,212,152, 5,142,144,151,105, 73,216, 46, 2,129,241, 14, 40,117,140,186, 3,211, 4, 67, -140,130,180,102, 39,143, 38, 23, 86,240,178, 31,150, 96,160,102, 33, 52, 90,200,121,254,153,170, 61, 47,162,205,225,224, 81,220, - 70,185, 96,154, 18,246, 61, 91,166,186,196, 11, 23, 91, 77,206,179,124,230,114,222,139,253, 78,254,140,206,252,211, 38,120, 52, -127,182,118,228, 35,253, 78,153, 9,114, 86, 70, 84,198,163, 46,167,197, 4,198,106,151, 60,159, 31,225,217,107,207,240,248,201, - 35,177,199,114,103,191,109, 59, 62,254,232, 99,249,188,124,176,245,176, 67,176, 38, 75,137,149, 96,241,169, 24,101, 5,207,140, -201, 19,237,233,118,129, 59,155, 48,142,148, 54, 60, 16, 83,247,127, 52,114, 55,213,123, 31,151,126, 59,142,241, 77,248,134, 7, - 29,247,131,217, 59,116,237, 66,129,121, 5,130,166, 28,187, 17,254,162, 90, 20, 3,192, 41, 1, 51,138,216,183,213,198, 59,200, - 33, 42, 92, 66,247, 30, 33,170, 88, 68, 58, 45,253,162, 68,253,156, 77,180, 81,107,149,164, 44,122,150, 85,205,172,149,181, 50, -220,139,198,115,122,111, 23,160,218,227,148,211,220, 85, 88, 87, 36,122, 84,196, 61, 30,105,154, 48,205,179, 41, 51,181,163, 45, -165, 96, 91, 87,238,212,133, 85, 28, 16,237,114,212,194, 71, 95,222, 86, 15, 57,192,135, 46, 91,190,103,170,101, 75,195,190,102, -194, 53, 34,186,111,198,216,213,240, 10, 73,254,138,168,156, 64,232, 72,103,154, 38, 76,147, 6, 74, 52,250, 74,189, 0, 29, 48, - 46, 91, 25,137,118, 19,251,216, 3, 65,136, 72,175, 98,141,211,131, 85,254,236, 90,149,131,121,235,253, 96, 33,226, 24,156, 81, -179, 62, 36, 50,215,165, 10,124,252,214,111, 98,205, 51,182,203, 61,174,174, 23, 96,255, 18, 47,191,248, 7,132, 56,193,183,138, - 82,181,163, 82,236, 43, 67,112, 58,198,248,223,199, 17,214,192, 82,214,199, 64,106, 91, 69,115,213, 18,188,100, 95,214,200,124, -231, 84,131, 43, 19,112,236, 45,206, 7,173, 93,163, 64,130,186, 40,159,133,160,229, 81,246, 85,114,218,153,175,222,106,182, 98, - 65,208,165,139,197,119,182, 46, 54, 37,121,142,101,218,160,171, 1, 64, 10, 77,110,103, 17,227,132,144, 38,234, 55, 28,222,251, -219,175,240, 43,167, 19,190,241,244, 6,185,119,116,239,249, 82, 22, 76,222,163,247, 29,253, 36,194, 36,132,132,198, 11,246,238, -238,130,143, 63,250, 28,247,247, 43,190,255,107,239,192,135,128, 79, 62,125, 46,150,201,222,176,174, 25, 30,157, 4,125, 15,135, - 0,212,138,187,187,138, 57, 56, 4,191,227,197,151, 47,177,162,160,161,225, 5,118,252, 79,255,254, 61,252,179,111, 63,195, 27, - 79,207, 88,150, 25,207,174,100,255,254, 55, 47,118,124,121,183,225,219,239, 46,136,177,218, 1, 62, 84,178,237, 97, 0,132, 90, -130,208,108,236,168, 29,224,145,188,165, 40,223,222, 10,186, 75, 82, 72,115,135,238, 41, 96,108,173,195, 71, 41, 10, 34,121, 1, -154,207,160,239,152, 38, 68,137,239,217, 25,234, 57,166,137, 98, 58, 47,234, 92,237,230,168, 95, 57, 90, 50,211,196, 21,128, 27, -201,128,154,240,168, 80,144, 72, 90,165,104, 44,165,243, 60,157, 38,204,167,201, 50, 3, 6,230, 90, 14,206, 52, 37,203,155, 22, -190, 5,108,220,157,247,204,110, 93,254, 14,226,231,222,233,203,239,152,167,136, 56, 69,164, 24,145,216,173,159,174, 78, 7,134, -194, 68, 26,162, 27, 25,229, 45,216,190,243,238,246,222,210,185,146,151,252,137, 72, 96,205,188,204,204,135,168, 98, 15,227,237, -209, 14,137,104,242,156,143, 11, 93,167,154,133,129, 68, 56,112,197, 91,173,216,182,125,216,137,187,116,124,106,235, 75, 83,160, -200,212, 25,230,186,214,134,105, 26, 4, 59,160,161, 86,119,112, 33,117,201,181,231,223, 1,132,193,148, 90,237, 51, 61,218,188, - 90, 27, 5,201,136,130, 29,249, 15, 58, 98,214,207,204,181, 97, 73,148,231,160, 99, 89, 22, 60,121,242, 24,167, 43,121, 7,124, -240,184, 92, 86, 4, 15,236,251,142,175,190,248, 18,175, 94,190,176,125,185, 62,215,218,209,194, 34,187, 3,121, 12, 3, 34, 51, -110, 94,247,160, 75,239,255, 88, 20,231, 48,240,201,135,159,163,255,231,216,229,247,195, 91,213,143, 12,123,224,193,250,239,232, -149,255, 71, 18,185, 67,103,223,236,223, 86,236,182,166,130,170,157,215,126,117, 54, 86,138, 25, 15, 1,180,198, 82,168, 91,109, - 95,234, 80,217,161,169,104,166,213,106,105, 78,106,121,201, 76,240,138,211, 68, 53, 56,247,114, 52,227,203,232,169,161,119,111, -126,186, 97,145, 51, 15, 9, 15, 34, 57, 44,154,229, 63, 7, 27,141,203,200, 43, 90,197,172, 73, 55, 42,206,216,182,157,135,131, -216, 74,106,169, 82,229, 80,209, 90,139,160, 89, 5, 67, 57,114,134,115,206,220,229, 74,161, 81, 74, 19,106, 84, 17,127,168,138, -192,244,129,155,166,153, 47, 85, 49, 37,113,136,105, 8,149, 32, 98,151, 99,180,168, 98, 29, 61, 1,251, 37,139,154, 61,166,136, - 64,207,170,118, 59, 80,161, 70,147, 96,151, 78, 91,144, 70,136,246, 94,153, 61,191, 91,102,125,136,254, 48, 18, 18,177, 92,208, - 46,142,227,184,235,215,222, 69,155,222,196,203,207, 94, 72,103,147, 50,190,120,255,175, 81, 43,237, 79, 76,156,115, 83,224, 72, - 31, 40, 16,164,111, 80, 22, 49, 11,156, 68,246,181,163, 60,183, 55, 17,125,168,157, 74,188,175, 13, 49,200, 88,183,183, 10, 15, - 41,194, 90, 45,112,221, 67, 85,113, 21, 35,106,182, 22,185,112,211, 60, 27, 98,178,150,141,113,148, 82, 16,238,219,166,172, 91, -137,233, 44, 25,141, 7, 65,175, 69, 42,108,118,130, 71, 49,139,116,252,144,233,192, 49,197,138, 94,233,143, 62,218,225,110,129, -111,126,235, 70, 52, 17,181, 35,206, 18,218,179,255,191,124,189,201,179,101,215,121,229,183,118,123,206,189,239,189,236, 1, 36, - 0,162, 33, 1,144,128, 36,146, 18,169,170, 82,201, 97,107, 80,161,145,135,246,196, 99, 15,253,151,217, 30,217, 81,170,112,184, - 34, 60,144,100,135, 74, 46,135, 90,146, 2, 8, 18,109, 38,178,125, 47, 95,119,239, 57,103,119, 30,124,205, 62, 55, 1, 22, 71, - 32,144,249,218,115,246,254,154,181,126, 43, 21,192, 20, 44,137, 10,159,182, 95, 16, 91, 65,137, 27, 44,112,248,228,147,175,176, -219,207, 56,222, 14, 56, 30, 35, 46, 79, 47,241,229,151,143,177,241, 6,184, 56,199, 50,140,112,155,141, 90, 85,114, 74, 64,153, -225,246,231,216, 47, 51,242,156,241,151,255,207,111, 49,131,158, 69, 15,131,255,156, 95,224,111,127,245, 24,255,245,207,222,193, -208, 50,154,113,248,224,181, 35,140, 22,248,139,223,204,152,103, 17, 62,210,170,164,212,198, 59,191,214,211, 18,219, 74,228, 37, - 93,133,238, 16, 87,225,124, 13, 43,148,111, 69, 69, 2, 16, 84,172, 90, 43,219, 5,107, 33, 32,140, 78, 8, 42,239, 43, 41, 79, - 64, 68,173, 57, 51,101,146,189,214,116, 16, 97,165, 95, 1,114, 77, 8, 54,178,254,162,103,116,151,156,212,101,209,216,219, 43, -123,231, 34,121,246, 92, 85,167,196,130,201, 24,225, 74,101,183, 73,207,118, 23, 10, 92, 45, 13,195, 16,217,197, 65, 33, 72,203, -156,216, 81,209,214, 33,133,186, 31, 45,156, 11, 81, 56, 69,207,249,192, 34,185,136, 24, 35,177,222, 3, 21,190,195,102,212,212, - 63,217,255, 75,184, 77, 75,133, 11,126,172,172,147, 22,199,199, 35, 31,214,100, 13,150,100, 76, 84, 94, 49, 53,234,164,235, 92, -116,247, 45, 65, 78,114,118,241,124, 81,183,191, 68,238,204,216,237,246,188, 34,115,204,151, 16,112, 10,219,146, 89, 51,100, 87, -103,175, 82,206, 90, 31,217,183,131,200,209,170,107,133, 82, 8,221, 93, 91,183, 38,210, 61,209, 3,167,196, 33,208,217,232,130, -131,229,209, 63,131,137,100, 2,228,131,215,206, 50,198,128, 27, 55, 78,176, 61, 58,194,246,104, 75,105,139,173, 97,158, 22,238, -210, 27, 46, 47, 46,241,228,241, 55, 90,116,148,146,168,249,224,166, 80,158, 69,180,134, 92, 22,110,160,202, 33,160,109, 29, 4, -246,242,229,252, 82,103, 78,223,230, 33,112, 6,223,218,173,119,191,122,123,249,131, 98,253,121,215,139,117, 28, 92,238,235,120, -227, 67,191,186,164,140,242,212,156, 27, 45, 90, 79, 67, 51,225,101,207,174,105,136,181,194, 91,233,142, 18, 11, 24,188, 65,206, - 43, 53,188, 16, 42, 26, 14,133, 54,165, 40, 25,167,213,194, 51,126,142, 91, 69,183, 49, 72,245,152,185, 0,168, 60, 26, 50,134, - 98, 92, 75, 33, 80,138,105,125,111, 67, 68,163, 64,234,210, 49,194, 26, 82,180,231,210,224,189,101,134, 55,239,211,121,103,110, -120,119, 38, 76,107,233,204,187,255,153, 20,166, 78,118,118,150,252, 11, 42,208,107, 56,136,128, 21, 16, 5, 17,167, 60, 33, 38, - 1, 5, 68, 16, 16,197, 34,114,197, 78, 33, 43, 94,125,150,134,169, 97,116,211, 85, 22,173, 17, 68, 67,184,205, 62,120, 58,240, - 27,119,232, 96, 97,156,115,188,107,151,248,213, 2,235,131,130, 52,100, 63, 74, 17,175, 77, 47, 49,170, 96, 13,134,227,187,216, -220,125, 15,207,158, 92,194, 89,139,147,147,136,139,135,255,132,101,158, 20,151,235, 25, 49, 88, 42,253, 29, 99, 45,252, 16,217, - 75,107, 20, 26,195,165, 63,199,197,130, 59,113,168,189, 8, 85,190,246, 78,118,170, 92, 33,211,104,210,113,246,121,229, 93,101, - 31, 97, 81,209,206,202,120,211, 15, 10,226, 10,164, 21,114,215, 41,227, 93,198,192,242,220,146, 87, 62,107,144,140,140,239,181, - 50,150,209,159,115, 24, 54, 91,184, 16,113,122, 58,227,203, 47, 39,252,240,213,155, 40, 48, 24,189, 69,220,120,216,224, 48, 47, - 25,155, 49, 96, 89, 10, 2,135,201, 68,103, 16, 76,131,157,175,241,197,211, 61,174,175, 39,212, 82,113,255,149,219,152,150,130, - 39,143,207,112,118,126,141,237,205, 17,118,190, 6,120,133, 83, 76, 67,219, 37,216,235, 51,212,121,135, 92, 50,174,246, 9,127, -249,143, 15,241,127, 77, 79, 0, 0,127,234,239, 98, 87, 27, 62,171,123,252,135,127,124,128, 31,189,115, 23, 71, 71, 35,230,185, -162, 26,131, 59,219,128, 63,127,251, 6,254,230,209, 21, 30,214,140, 87,238, 57, 24, 75, 94,118,249,121,172, 61,174,235,147,201, -172,196,175,221, 70,211, 14, 60,230,141, 65,228,181,102,152,210,148, 90, 88,106,134,107, 65, 59,141,200,161, 37, 26, 96,196, 5, -132,119,142, 16,207, 76,157, 75, 60, 34,244, 33,178, 56,175,160, 53,193, 24, 19,103, 60,132,168,235, 20,177, 22, 89,158,208, 9, - 68, 69,198,240,116,214, 0, 33, 90,165, 63,162, 25,248, 24,148,145, 77, 59,121,199, 74,236,166,171, 50,235, 28,156, 23,218, 24, - 93,118,180, 10,172, 88,150,196,180,201,218,215, 15,134, 26, 4, 73, 91,243,129, 4,114,227,118,163, 30,117, 51,176, 15,223, 91, -108, 70,162, 0,230, 92,123,246,129,165, 2, 98,158, 72,200, 43,174, 14, 24,139, 48, 56,246, 48, 23, 21,234,201, 37,149, 83, 34, - 59, 48,107,109,176,162,226,181, 10,254,254,200,170,152,150, 2,152,134,105, 90,180,217,138,172,195,161,233,106,101,103,130, 67, - 45,141,155, 34,116,107,241,138,240, 38, 2,219, 36,145,176,171,169, 14, 89, 52,121, 21,130,166,162, 85, 18,255, 73, 28,179,211, -209, 59,173, 97,253,129, 64, 77,254,190,172, 43,214, 4,187,237,118,131,147,147, 19, 28,159, 28, 35,142, 17, 67,140,156,250,151, -121,199,111,144,151,140,103, 79,158,224,252,197, 41,173, 84,188,103, 52, 50, 61,203,146,184, 39, 54,215, 90,179, 94,221, 70, 7, - 88, 29, 48, 99,190,181, 31, 63,220,153,191,172, 96, 55, 42,156,123,233,207,190, 52,130, 95,239,213,213,131,254,210,104,236,192, -201,246, 82,215, 46,227,121,114,186, 91, 46, 84,140,226, 98, 53, 41,142,139,120,107, 45,114, 73, 42, 40, 47,133,215,189,104,240, - 70, 46, 66,235, 80, 82, 66, 3, 85, 79, 61,210, 77,148,128, 22, 46, 68, 14,162,175,250, 75,164,203, 90, 22, 20, 78,155, 79,201, -112,150, 7, 86,162, 18,141,236, 2, 77,213,144,122,169, 92, 5,251, 71,223,135, 83, 81,137, 2,110,106,195,245,126,198,238,122, -162, 10, 54, 23,189,204, 83, 74,234,233, 36,152,139, 91, 97, 31,173, 86,158,132, 80,133,174, 8,200,203, 9, 13,110, 80,129,155, -235,163,167, 86, 42,226, 48,240,152,107, 62, 72,108, 11, 49,114,236, 33,253,160,135, 72,170,226, 24, 3, 77, 58,106, 57,124,177, -106, 67, 42, 11,237,195,231,121,245,184,241, 8,210, 81,188, 45,117,248,236, 45, 54, 44,232, 22,197, 57,143, 63,229,251,107, 45, -243,126,168, 34,140, 71, 56,185,255, 17,158, 62,190, 68, 90, 18,110,222,222, 34,159,255, 6,251,171, 51, 18, 97,112, 32, 11, 93, -116,158,158, 23,227, 57, 14, 52,114, 97,212,180, 80, 17,106,149, 28, 16,214, 25, 52,203,145,157, 6,128, 64, 78,196, 35, 90, 13, -143,247,196, 38,222, 69, 43,165, 54,212,156, 16,152, 91, 76,249,176,164,171, 40, 44, 66, 44,181, 41, 76, 70, 60,211,164,187,224, - 30,165, 9,137,140, 5, 47,205,232, 62, 74,198,134,228,249, 4,167,180, 21,248, 16, 21,241,154, 82,195, 47, 63,222, 97,123,116, -130,179, 57, 3,209,163, 6, 96,219, 26,236,146,225, 0,148,148,129, 37,193, 91,139,205,134, 20,202,121, 94,240,240,217, 37,126, -253,217,115, 76,211,130,215,238, 28,227,230,201, 6,203, 82,241,245,131, 39,152,150, 5, 71, 55, 94, 65,185,113, 15,126, 28,144, - 51, 61, 87,241,226, 25,236,114,133,101,169,120,118,182,195, 95,252,250, 11,124,130,107,220,192,128, 31,187, 27,248,111,255,248, - 7,120,126, 57,227,127,249,197,231,248,228,242, 10,159, 61,186,196,107,119,233,197,245, 28,136,116,103,180,248,239,126,120,130, -255,240,201, 57, 30,213,140,215,238, 17,245,144,200, 88,157, 39,109,180,136,105,186,175, 38,155,223,225,129,180,102,123, 41, 18, -182,102, 84, 99, 96, 87, 25,209, 36, 36, 53,157, 78,104, 45,123,145,171,170,239,141, 21,122,159, 57,176,187, 97, 21,197, 12, 14, -135,129,231,203,218,210, 84,174,228,132,121,182,138, 57, 14,108, 7, 5,143,230,117,181,192,171,149,186,178,165, 58,158,136, 45, -115, 66,240,192, 50, 39, 12, 35, 21,211,203,146, 48,110, 28, 79,209, 40,199, 28,236, 54,161,131,170, 34, 14,129, 71,255, 30,243, -180,104,182,182,243, 52,153,242,129,232,149,199, 39, 71,196, 37,143, 97, 5, 59,129,146, 40,133,163, 81, 74,197,156,102, 26,131, -243,249,145,109,134,133,101,134,123, 85, 2,103, 45, 21, 37,149, 21,123,157,120, 3,100,143,131,170,187,133,184, 38,171,182,131, - 36,177,146,117,138, 39,129, 43,210,205, 16, 47,222,161,228,138, 56,196, 46, 2,171, 5,165,242, 26,179, 18,163,191,228,194, 59, -117,114, 31, 8,155, 96, 78,137,195, 94, 90, 79,119,171, 64,225,253, 47,229,125,116,123,101,159, 2, 53,253,253,135,224, 84,141, - 47, 41,140,149,167, 48,183,110,222,194,173,219, 55, 89,183, 48, 32, 68,113, 29,205,204,152,207,152,246, 9,167,207,158,225,242, -242, 5,113, 46, 76, 83, 54, 67,169, 69,167, 17,228,242, 40,189, 99,127,233, 25,111,171,125,118,107,223,186, 87,187, 72,121,213, -173, 31,248,208,191,221,220,119, 11, 49,214, 23,122, 59,216,189, 31, 20, 22,191,163, 75, 63,252,184,135,125,187,164,221,209,231, -145, 41, 7,175, 74, 42,241,223, 69,139, 64, 95, 51, 11,214, 75,150, 40,207, 0, 15, 3,235, 29, 7, 3,244,246, 31,134, 0, 14, -105, 89,244, 50,168, 92, 21,211, 24,138,170, 79,235,186, 32, 73,178,129, 37, 63, 87,126,177,146,138, 99,157,165, 16,121,126,136, -164,227,144,125, 92, 12, 1,113,232,254, 80,181, 48,176,141, 35,229,172, 65, 42,173,210, 56,157, 94,120, 22,196,201,174,138,211, -207,114,206, 60, 54, 46, 60,113,160,138,136, 46, 51,199,193, 8,149,129, 26,116, 48, 56,141,221,235, 49,160, 20,112,144, 16,130, - 87, 86,177,143, 1,227, 16,153,215,139,213,126,143,195, 66,100, 55,197,156,103,199, 93,183,116,167,142, 69, 59, 50, 49,200, 44, -234,179,140, 88,148,152,190,102,235,161,151, 82,190, 63,129,134,248, 1,119,222,250, 49, 78, 95, 36, 44, 75, 66, 28, 2,230,243, -175,113,241,232, 11,237,230, 13,219,113,106, 17,254, 48, 19,183,184,232,114,222,195,182, 70, 99,124,231,153, 18,232,120,252, 13, - 24,166, 67, 97, 85, 49, 90, 70,129, 90,231,209, 80, 84,163,225, 66,100,232, 12,125,173,235,173, 82,109, 0, 88,161, 47,170, 86, - 41, 4,105,228, 71, 95,107, 97,104,134,234, 12, 44,115,161, 11, 9,237, 12, 35, 18,201,235,159, 21,164,210,120,125,226,124,192, -230,228, 6, 98, 28, 96,156,199, 47,255,229, 2,113,188,129,241,100,139, 90,102,156, 78, 21, 87,203,140,109,116,112,181, 98,176, -192,224, 45,198,232, 96, 98, 68, 25, 55,200, 41, 99, 87, 2,126,241,229, 87, 56, 59,189,132, 1,240,238, 31,190,143, 33, 4, 44, -211, 14,223, 60, 62,131, 65,195, 59,111,191, 6, 27, 7, 94,113, 84,180,221, 21,112,117,137,150, 51, 30, 60,185,196,255,241,245, -215,120,138,132,239,225, 8,255,238,205, 55,113,239,198, 6,173, 1, 55,183, 3,238,251, 1, 95,229, 9,191,122,240, 2,112, 30, - 49,120, 68,103,209, 92, 0,150, 9, 49,101,252,209,107, 35,254,207,211, 29, 99,150,237,225, 8,181,245,220,115,193,118,182, 90, - 86,243,246,195, 99,164, 27,120,250,134,182,150,133,132,141, 32,158, 2, 37, 46,123,253, 61,155,213, 32, 64, 66,121,132, 87,144, -114, 81,245,181, 81, 47,173,103, 20,178, 3, 76, 85, 97, 83, 85,119, 73, 97,222,192,162,232, 85, 48, 62,182,178, 95, 87,194,171, - 26, 26,156,233, 99, 74,154,186, 25,108,182, 27, 94, 73, 81,177, 1, 22, 93,166, 37,233,187, 76,108,244,181,245, 74, 20,242, 94, -167, 3, 21, 21,209, 70,181,144,141,155, 72, 32, 28,107, 59,113,141,133,186,141,167, 21, 46, 16, 98,117,222, 39,157, 0,164, 57, -169,152, 81, 68,194,198, 0,227, 54, 34, 47,153,254, 28, 91,105,133,195,111,189,135,231, 29,170, 88,179,150,148,117, 90, 42,186, - 25,234,220,105,170,210, 84, 36, 9,134, 66, 53,190,132, 25,216, 99, 13, 76, 48,202,157, 23, 43, 94,173, 5, 11,235,144, 42, 59, - 1, 68, 72, 76, 0,175,204, 19,141,172, 14, 20,199, 54,101, 82,153,187, 21,181,173, 29,228, 12,120, 47, 52,209,170, 58, 7,153, - 24,120, 78,201,220,110,143,176,217,142, 56,185,113, 76, 83, 77,239, 84,192, 58,237, 39, 45,104,246,187, 61,158, 62,126,140,121, -222, 51,173,142,238,146,222, 21,247, 92,115, 1,206,200, 74,101, 93,196,154,131, 43,252,219, 79,125, 95,183,115, 71,254,173, 33, -250,234, 13,105, 43, 23,216,119,205,241, 33,231, 28,193,157, 76,251,150, 0,254,176,160,126,249,159, 87, 19,250,134,254,185,136, -155,105,117,106, 32,162,214,218, 10, 28, 11,189,169,177,161,194,201, 67, 21,208,134, 15, 85, 6, 60, 48,165,136, 8, 14, 92, 29, -251,128, 82, 37,237,140, 98, 10, 43,239, 72,105, 44,148, 16,199,141,238,190, 41,133,173,104, 2, 13,169,189, 41, 96,161,180,140, - 16, 7,222,161,247, 17,161,144,204,198,205, 72,187,242,194, 84, 29, 75, 15,236, 60,205,152,246, 51, 67, 77, 44,230, 57,227,232, -104, 64, 75,132, 1,116,204,117,151, 23, 97,220, 12, 10,247,151,159,162,101, 97,135, 53,116, 32, 46,169,118,107, 0,103,176,139, -200,164, 72,116, 35, 87, 98, 5, 29, 28, 99, 88,140, 67,121,235,128,183,142, 58,118,241,109,215, 10,195, 63, 71,203, 59,184, 6, -192,106,158,110,239,114,101,124, 60,207, 73,211,118,168,170,182,170,100,165, 29,117,225,167,144, 60,189, 68,252, 34,193,223,173, -215, 63,196,197,149,193,213,197, 53,140,179,216,248, 29,158,125,253, 27,194,198,242,239,131,239, 0, 14, 93,225, 81, 42,172,134, -237,200,122,164,153, 74, 49,161,141, 14,230,214,152, 4,199,211, 6,107, 72, 73, 43,191, 63,195,182, 50, 58, 0, 28, 80, 45, 11, - 31, 29,114,170, 40, 53, 3,181,194,135,129, 1, 51,244,240, 22, 22, 14, 10,128,199,112, 36, 43,173,117, 58,101,169, 50,236,133, -126,111,196, 77, 64,163, 0,158, 16,163, 70, 76, 58,197, 3,211,250, 99,123,116,131,105, 75,192,195,111,246,184,220,121, 28,223, -220, 32, 12, 30,117,105,168,105,198,229, 62,225,217,179, 43,132, 96,177, 29, 60,110, 29, 69,140, 48, 20,199,105, 2,246,185,226, -175,254,211,199,248,242,193, 51,204,211,130,127,245,147,247,240,234, 43,183, 80,114,193,139,211,115,188,184,222,161,181,138,237, -232, 17,189, 65,202,172, 62,190,190,196,110,183,224,227, 47,159,227,255,190,120,138, 2,139, 15,112, 3,127,246,222, 27,120,227, -206, 49, 21, 39,148, 96,131,239,191,122, 11, 15, 30, 62,193,131,211, 61,222,121,189, 98,202, 84, 56, 14,150,208,179,187, 84,113, - 52, 58,196,214, 71,114,140,141, 65,213,248,235,151, 46,116, 57,170,204,170,250,111,223,181,211,235, 61, 2,165,220, 69,142,186, - 13,218,213, 73, 34,154, 18, 22, 43,239,245,217,197,176,238, 46, 26,147,216, 90, 35,130, 36, 88,189,108, 28, 86,127,159,253,207, -185, 32, 91,194,143, 6, 88,216,232,180, 83,111,149,221, 53,168,122,240,235, 37,210,122,128,133,172, 12,140, 17,123, 45, 65, 82, - 54, 71, 86, 5,119, 20, 31,219, 79, 77,183,202, 66,246,206, 33, 55,192, 71,143, 24,105,143,238, 3,105, 12, 44,251, 99, 41,120, - 38,235,231, 83, 14,133,248,137, 89, 61, 47,226, 85,199,226, 47,141,178, 93,157,113,198, 2,105,159,244,223, 53,238,196, 50, 79, -180,114,106, 76,179,243,172, 3,202,218, 73,146,199, 31, 42,112,155, 38,182,176,214,138,121,201, 4, 64,226,189,245, 60, 37,141, -144, 94,230,164,231, 82,173, 89,189,254,133, 5,167, 37,151,149,234,189,162,228, 74,216,106,239,213, 6, 40,194, 67,121, 15,251, -244,211,112, 28, 47,212,245,195, 81, 23,240,158,154,159,227,147, 35,118, 16,144, 77,153, 46,121,175,176,179,221,245, 30, 97, 32, -109,212,233,243,231,184,188,184, 80,126,125, 79, 57, 19,120, 77, 82,219,180, 42,218, 87, 93,120,143, 67, 48,135, 93,187,162, 97, - 15,247,233, 7,227,243,223,101, 83,107, 56, 8, 87,249,157,183,243, 1,127,238,165,105, 88, 51,122, 13,225,191, 52, 53,195, 97, - 28,172, 88,135, 9, 9, 44, 43,102,190,228, 91, 81,174,126,229,169,156,111,124,168, 36, 81,169, 27,242,192, 26,217,135,218,198, -176,127,182, 8, 48,129, 13,165, 87,172,100,132, 3, 71, 65,102,238,170, 86,223, 32,251,238,106,235,158, 97, 25,203,234, 72,139, - 31,184,192,187, 50,178,131, 17, 22, 85, 20,183, 57,103,194,194, 78, 51, 18, 87,150,227, 16,232,194, 67, 39,253,132, 16,104,170, -192,121,235,195, 16, 96, 89, 36, 39,156,122,185,116, 75,173,172, 82,119,152,167, 5,195, 16,104,159, 29,131, 62, 72, 98,241, 19, -101, 45,161, 64, 29,188, 15, 36,178,178, 22,195, 24, 86, 73, 87, 44,188, 81,223,107,103,251,170,168,193,209, 8,185, 11, 28,154, -142,144,151,121,225, 67, 27,252,249, 69,225,222, 93, 10,193,211, 47,125,225,151,250,238,247, 62, 68,182, 55,113,126,118,142, 6, -131,147, 77,195,243, 47,255,153, 46,221, 70,137, 73,178,111,174,156,190,229, 88,184,104,173,135,113,134,139, 3, 42, 18, 68,169, - 91,153,149, 94,101,247,183, 42,114,172,117,168,121, 33, 15,123, 74,176, 94, 44,101, 22,198, 81, 34, 12, 41,214, 1, 3,170,200, -193,144,147, 42,221,159,161, 98, 72,148,158,180, 35,228,128, 27, 78, 85, 36,245, 45, 9,102,228,235, 18, 7, 3, 21, 68,232,145, -184,186, 79,182,216, 28,111, 81, 17,240,213,215, 51,158, 60,111,168, 38,224,214,221, 91,202,253, 47,176,216,103,135,154,102,186, - 32,172,197, 30, 30, 87,167,123,184, 97,131,227,101,194, 24, 22,252,253,223,255, 26, 95,126,253, 20,203,146,112,180,137,248,224, -189,215,176, 29, 12,166, 90,241,235, 79, 31,224, 58,237,113,228, 34,142,182,131, 38, 90,153,180, 67,154,174,241, 15,191,125,134, -191,219,157,163,193,227, 30, 34,254,252,195,183,113,188,137, 58,214, 35, 26, 31, 48, 6,135,130,138, 71,151, 19,174,246, 25, 67, -160,164,172,106, 12, 96, 27, 82, 51,192,237,155, 24,158, 36,228, 60,171, 23,216, 40,229, 13,170,116,151, 14,230,119, 15,250,240, -157,255, 78, 68,173,206,121,182, 46,246,212,171,146,147,146,249,122, 26, 92,211, 76, 0, 81, 30,135, 16, 40,122,215,246,156, 6, - 43,197,100,171,136,113, 64,173,164,149, 0,231,150,215, 70,209,184,228,147, 14, 48,206, 96,158, 22,222, 71,147, 56, 48,179,165, -139,166, 76, 93, 43,225,216,237, 32, 19, 52, 41,158, 97, 12,166,253,130,205,118, 64, 28, 34,237,163,115, 34,251,101, 32,100,172, - 97, 65,104,136, 20,242, 19, 35,117,222,113,136,140,132,117,122, 46, 73,115, 98,120,197,211, 69,144, 44, 86,187,222,227,250,114, -199,157, 61,137, 89,151,153, 59,113,206, 59, 39,190,125, 86,151,129, 15, 14,211,190,192, 88, 10,176,114,158, 67, 93, 50,119,214, -158,180, 55,134,119,199, 18,179, 74,235,127,171,221,186, 0,134, 98,244,152,103, 74,117, 52, 86, 10, 39,168,250, 59, 51,252, 41, -165,110, 79, 22,171,156,184, 24,150,148, 97,173, 71,136, 13,134, 73,154,149, 39, 33,148,150, 39,144, 32,240, 36,102,125, 30, 64, -159,143,113, 28, 49,142, 35,142,142, 55,170, 59,178,124,214,209,154,133,206,255,101,102,182,189,119,184,186,184,198,249,139, 51, - 76,211, 68,241,162, 14, 74,196, 76, 75,103,206,147, 78,163,232,106,182, 29,236,164, 87, 23,188,161,200,111,172,152, 37,125,252, -190,222,149,155,213, 71, 89,101,130,172,222,145,111,221,239, 47,253,139,223,245,150,201, 68,195, 28,220,230,173,143, 21, 86,187, -118, 25,168,153,245,148,193,116,228,183, 20,238,118,149,240, 38,122, 13, 35, 56, 94, 99,225, 11, 11, 23,168,155,236,170, 75,197, - 37, 26, 67, 23, 59,231, 53, 75, 71, 41, 20, 40, 18,126, 84,205,115,238,251, 77,199,188,112, 7,227,208,201, 67, 42,216, 96, 49, -149,113,170,160,108,172,112,221, 28,145,186,158,130, 26, 76, 23,102,148,130, 92, 50,251, 20, 13,103, 12,103,237,142, 73, 85,221, - 35, 9,205,234, 97, 92,199, 82,106,170, 80,165,151, 33,241,184, 91, 66, 12,228,107,145,236,109,241, 63, 82,113,227,244, 1,245, -158, 3, 86,152,118, 71, 35,118,195,161, 43,100,223,106,154,219, 78, 85,175, 60,164, 36, 76,164, 23,209, 24,131,121, 74,212,197, -191, 84,198,169,135,221, 16, 1, 79,136, 75, 64,215, 44,188,242,246, 15, 97,198, 87,241,228,225, 25, 74,109, 56, 62,242, 56,251, -250, 31,137, 5,189,122,200, 29, 87,199,228,253, 52,170, 33,128, 97, 1, 32,119,183, 20,191,104,120,148,103,122, 55,100, 44, 2, - 31,106,132, 18,134,170,251, 91,237,224,100,139,213, 37, 35, 30, 17, 67, 66, 69, 63, 68, 88,239,225,196,118,102,232,149, 34,102, -127, 90,141,245, 29, 76, 96,204, 45,168,176,148,177,187, 80,161, 66,116,200,252,205, 73,162, 88,173, 64, 28, 7,148,226,240,224, -137,195,249,121,197,107,183,182,248,209,251,119,113,113, 57,227,122,191,192, 56,143,121, 63, 99, 73,133,246,254,113,128,143, 1, -197, 56,236, 83, 65,105, 1,117, 95,112,122,121,129,199, 95,127,131, 71,143,158,177, 2,184,224,199, 63,125, 15,119,238,220, 4, -202,140, 80, 23, 60,126,250, 2, 0,240,222,155,175,226,248,100,139, 60,147,120, 51,149,140,191,250,229, 35,124, 60, 95, 97, 68, -164,248, 92, 0,159, 62,190,192, 71,111,221,213,238,214, 57,135, 92,155, 30,208,251, 82,176,155,137,234, 85, 1,156, 28, 69, 56, -111, 96,110,222,129,187,113, 19, 75,126, 66, 69,166,103,234,151,161,103, 70, 10,110, 81, 51,155,245,152,177, 29,142,255,100,123, -215, 86,167,138,179, 78, 29, 6, 70, 15,105,171,204,110, 82,190, 55, 52,219,122,208, 18,119,236, 96,177, 85,173,164,252,166, 67, - 39,175,214, 1, 92,102, 25,203, 23, 10,217, 72, 5, 82,100, 86,212,175,204,202,113,177, 91,225, 37,239,111,173,149,105,135,162, -205, 17,228,109, 23, 26,145,221,209, 97,220, 68, 22,198,210,225, 71,157,102, 97,209,158, 20, 36,149, 63,159, 71,140, 17, 71,199, - 27,250,218,120, 10, 86, 11, 93,250, 57, 87,237,242, 67, 12,216,108, 73,205,190,223, 77,216, 95,239, 49,237,233, 93,243,174, 71, -127,202, 4, 83,246,160,242,253,214, 90,225,163,195,245,229, 30,195, 38,162,148,130, 16,105, 7,158,248,156, 36, 49, 45,137,210, -214,129, 56,222,123,204, 11,171,187,249,207, 78,251, 69,253,241, 68,175,164,201,158,116,167, 66,133, 43, 53,163, 21,233,196, 23, -213, 44,244,115,145,216,225, 2,157, 17, 66, 89, 8, 94, 53, 1, 34, 94,164, 41, 95,215, 56, 80, 65,232,177,217,140, 56, 58,218, - 34, 68,102,140, 4,207, 25,239,212,232,133, 64,190,248,148, 18, 34,243,244,175,175,119,184,186,188,196,180,223,233,196,173,159, - 89, 30, 57,207,204,119, 79, 76,177, 75,171, 84,181,151, 54, 76, 56,188, 59, 37,136,101,253,191,158, 26,183, 22,139,126,123,220, -254,187,202,223,239,222,135,127,199,158,126,213,181, 31, 4, 32,173,147,225,214,119,189,249,246,162,224, 32,203, 67, 92,105,181, - 80,230,130,145, 59,184,168,205,173, 25, 11,111,172,120, 45, 3, 67, 58, 50, 17,195,248, 43,145,232, 60,162, 8,209, 24, 76, 0, - 46,162,175,165,145, 58,135,193, 88,176,221,134, 9,101,188,199,165, 92,227,194, 47, 28,195, 83,162, 83,188, 97, 67,211,234,216, -128, 95,122, 57,176,141, 65,105, 21,211,126,210,189, 75,211,172,231, 78,135,163, 95, 44, 29,148,203,146,245,176, 32,177, 72,233, -172,226, 34, 89,203, 86, 9, 72, 41,101,165, 63,153, 85,198, 52, 9,218, 50,195, 99, 68,237, 25, 56,142, 17, 42,230, 43, 26, 30, -208, 52,125,135,192, 42, 20,142, 16, 98,212,138,173,213, 30,185, 42,251, 65, 9, 39,167, 81, 51, 91,202,248,215,154,211,130, 56, - 4, 45,138,136,249, 78, 33, 13,119,223,254, 16,241,198, 91,120,244,224,140,162, 42,183, 30,215, 79,127,137,253,213, 11, 22, 37, -209,215, 77,159,159, 60,195,196,175, 14,188, 94,168, 12,158, 16, 32,135,131,229, 92,119, 74,186,227, 74, 87,189,152, 70,199,145, -149, 41,110,211,190, 71, 76, 54, 82, 29,146,178, 89,115,177,169,170, 28, 54, 27,250,222,216,133,208,106,134,113,150, 87, 1,101, -149, 23,110, 25, 85, 89, 0,227,212,226, 97,228,239, 88, 18,225, 21,222,215,151, 68, 89,210,198,123, 88, 31,241,236,204,225,209, -115,143,187,247,238,224, 15,126,239, 46,134,253, 57,114,153, 81, 48,163,185,134, 93,154, 81,150,190,171,183,198, 98, 94, 72, 56, - 84, 27, 80,115,193, 60,103,156,191,184,192,151, 95, 61, 82,190,193,107,119,111,227,245, 55, 94,197,213,110,198,232, 45, 78,175, - 10,206,118, 19,172,177,120,227,245,219, 56, 62, 25,145, 56, 9, 16,103, 19,126,250,131,215,240,226,147,138, 93,109, 40,172,245, -248,213,139,107, 52, 99,240,147,119,238,194,178, 21,175, 54,131,108, 44, 70, 19, 81,140, 69,174,192,156, 10,106,107,136,131, 67, - 24, 35,204,230, 8,205, 24,236,231, 25,104,221, 94,217,106, 93, 49,166,153,129,112,224,100,238, 2,166, 67,181,111,223,135, 58, - 31,213, 46,103,120, 21, 36, 23, 57,106, 69,230, 81, 48,133, 95,116,216, 82,206,101, 69,121, 44,202,232,135,224,144, 25,194, 98, -100,239,103, 29, 44, 43,174,165, 88,173,105, 33, 1, 94, 4,246,187, 29,142, 79,110,144, 31, 90,116, 37,206,160,176,134,133, 46, -228,200,103,142,101, 62, 2,117,136, 52,213, 3,150,133, 46, 97, 82, 16, 55,245,195,103, 14,156, 10,145,222,103,217,147,251,192, -162,174, 24,177, 57, 26,201,109, 35, 42,127, 71, 78, 3,195, 96, 44,137, 78, 13, 49, 96,158,200, 78,187,187,158, 48,239,103,182, -225, 6,126, 86, 12, 7, 97,145, 95, 92,166,140,162, 30,111,141,208,203, 20, 94, 85,212,138,151, 27,133, 62, 53, 85,233, 23,166, -225,137,154, 93,210,108, 73, 3, 48,207, 11,143,197, 61,188,184,147,184,137,105, 44, 24, 37, 91, 31, 9,110,197, 93,146,217,162, - 38,147, 8, 82,163, 51,218, 57, 17, 19, 67, 69,138,166,175, 76, 26, 55, 67, 18,236, 69,105,149, 1,227, 56, 32,132,136,237,209, - 8, 3,112,248,141, 85, 77,209,250,172,219,239, 40,171, 33, 14, 17,105,201,216,239,174,113,113,113,169,100, 74,185,196, 28,219, -214,200,225, 83, 20, 45, 44, 49,224, 82,178,174,167,233,114,195,183,111,217,197, 14, 54,227, 93,236, 88, 87, 87,166,238,192,219, - 33, 5,238, 96, 95,245,187,246,233,223,190,232, 15,254,232,203, 11,243,213,136,125,125,153, 27,201, 99,127,233, 99,202,239,191, -187, 78, 8,209, 46,103,160,129, 1, 44,152,244,105,224, 21, 86, 98, 68, 61,204,150, 41, 25, 27, 48,147,183,144,244, 20,210,107, -135,249,172, 0, 0, 32, 0, 73, 68, 65, 84,217, 75, 50,143, 94,254,214, 34,120,171, 74, 83,163,170,119,175,226, 52,107, 29, 82, -154, 97,189,209, 29, 84,136, 81,127, 51,181, 84,184,209,227,232,120,171, 93,122,229, 39, 43, 39,242, 99, 46,243,130,105,191,192, - 58, 3,192, 43,239,152,212,171, 25,126,140,156, 24,231,212, 46,146, 82, 86,235, 27,217,223,168,194, 92,230, 25,206,121, 76,172, -126, 21,225, 79, 87,149, 87, 44, 75, 85, 27,213, 56, 14,188, 35, 18, 66,156,196,182, 50,246,113,173,254,100,142,178, 15, 18, 51, -217, 69,238, 37, 21,174, 90, 61,195, 81,214,160,141,190, 47, 45,124, 33, 10,248, 71,254, 28,137, 73, 42,238,188,254, 30,142, 95, -253, 0,223,124,125,138,121, 90, 48,142, 30,215, 79,126,133,171,179, 71, 92, 2, 90, 62,252, 2,199,156,130,167, 50, 21,181, 38, - 5,226, 88, 24, 88,207, 99,227, 6,238,194,237,202,103,203,137,197,181,162, 24,163,190,218, 92, 27,108,227, 61, 96,206,180,227, -151, 21, 12,243,192,117, 31, 62,140,204, 95, 39,223,113, 99, 84,174,177, 28,188, 35,126, 76,235,212, 81, 97,156,215,181,129,119, -178,179, 7,106,110,156,188, 71, 98, 70,231, 3,170,137,184,188,182,120,118, 30, 49,110,111,225,189,247,111,225,198,201, 64,160, -145, 84, 97, 7, 7, 95, 11,134,154,225,188,193,134,163,110,231,235, 29, 18, 28, 0,139, 82,102,164,185, 96, 41, 22, 23, 23,215, -120,248,224, 17,125, 94, 67,145,169,111,191,253, 26,246,251, 9,222, 86,180,205, 6,191,252,151,175,144, 91, 65,180, 30,239,188, -253, 26,142, 54, 1, 37, 88, 44,169, 34,188,243, 14,126, 8, 32,160,225, 47, 62,254, 6,222, 6,148, 86,113, 39, 4,252,224,254, - 45,166,254, 1,197, 80, 81,183, 75,156, 33,222,128, 41, 23,178,247, 4,160,109, 6,204, 55,110,163,204, 51, 48,101, 92, 92,237, -241,182,245,186, 0, 92,103, 48, 87, 1,110,188, 84,235, 31,134, 66,137,136,211,145, 96,147,237,126, 48,142, 59,222, 30, 11,105, - 26,197,127,186,224,153, 86, 86, 52,182,178, 37,113,218, 52,228,133,162,112,235, 74,211, 80, 74,101, 1, 95,211, 85,141, 66,159, - 88, 7, 16,124, 64,109, 36,124,117,133,214, 89,203,178, 80,242,153,243, 12,164, 98,178, 99,109,172,160,238,218, 0,235, 44, 91, - 51,141,134, 13,209,234,176,177, 42,220, 51,228,165,174, 38, 95, 93,100,104,157,131, 15, 86,113,177,210,205, 47,115, 90, 93,174, -124,161,242,218, 39,167, 78,165, 43, 12,193, 90,230, 69, 17,176, 34,208,171,166,170, 73, 42,165,164, 93,186, 88,248,132,194, 38, -157,218,188, 36,178, 0,231,238, 23,151,117,159,172, 31, 1,211,149,234,204,186, 16, 58,157,120,217, 37,114,217, 58, 96,153,179, -166, 73, 54, 86,141, 91,182,157, 73, 4,169, 1, 14, 32, 86,218, 61,114, 50,151,248,196,131,232, 43,184,179,223,108, 40,104, 43, -198, 8,103, 45, 55, 78, 85,197,195,210,148,181, 38,150, 57,138,204, 29, 55, 35, 90,107,184,188,184, 66, 90,200, 45, 96,217, 69, - 69,161, 64,125,196, 15,222, 25,235, 26,129, 63, 86, 39,130,214, 85, 78,187,233, 59,104,131,131,172,116,250,186,205,106,247,222, -190,205,108,104,135, 32,154,245,248, 28,178, 42, 91,137,125, 15, 59,233,246, 93, 45,250,183, 90,111,115,112,227, 31,138,226,116, - 84,175,223, 73,111,224,122,133, 80,213, 54,217, 71,243, 70,157, 99, 50,161,246,134, 85,157,181,210,168,199,135,168,159,134,198, - 48, 43, 66, 91,174, 26,234, 97,157, 3,172, 83, 69,188, 60,188, 13,224,232, 86,232,200,220,135,128, 34, 4, 52,121,168,141, 69, - 8,125, 7,221,120,239,139, 38, 0, 23,122, 33, 13,239, 70,106, 35,226,211,110,183,231,203,195,173, 4,118, 61, 66,114, 89,250, -248, 92,108, 32,145,243,152,233,165,245,180,223, 7, 84,133, 78,187,227,172,203, 18,137, 15, 44,165,169,232,200,251, 64,209,167, - 60,114,151,200,198,245,126,132, 58, 9,175,163,169, 24,195,202,151,111, 97, 3,103,127,243,138,131,118, 84, 88,197, 71, 26,216, - 64,100,189, 86,197, 39, 95,244, 55, 47,233, 62,173, 85,220,124,229,123,184,243,189,223,195, 55, 15,206, 48,237, 23,248,224,112, -253,244, 95,112,125,250,144,126,185,206,193, 51,163,189, 50,191,208, 51,249, 43,196,168,235, 9,233, 28, 76, 99, 37,179, 39,155, - 30,117,240, 70,247, 71,165, 86, 29,229,121,239, 48,237, 38, 6,200, 20,173, 66,137, 48,183,114, 85,153,206,182,166, 93, 35, 41, -156, 13,115,181,107,171,112, 16,197, 59,115,165, 13,193, 69, 26, 43,125,105,251,190, 74, 85, 42,210,157, 22, 88,191,193,213,180, -197,249,179,134,203, 93,195,107,175,221,195, 91,239,222,230,162, 20,184,158, 43,108,171, 48,197,194, 44, 6,152, 22,184, 74,182, -188,209, 83,254,182, 55, 13, 41,103,164, 6,248,205, 6,209, 55, 60,252,230, 12, 15,190,122,192,150, 71,122, 23,126,255,163, 31, - 32, 90,131,221,195,135,104,183,110, 32,223,189,135,199,207,206,177,141, 35,182, 67,192, 43,175,220, 0,140,197, 48, 56, 12, 3, - 48, 15, 30,227,247,223,194,110, 90, 48,124,250, 12, 75,173,184, 21, 7,252,217, 71,175,227,120,140,186,250, 41,141,190,158,194, -240,166,165, 22,248, 96, 49, 28, 5,224,230, 29,180,163, 45, 8, 9,111, 53,141,173, 20,161, 61, 50,138,151, 5, 84,135, 84,153, -118,208, 49,168, 50,216, 58, 13, 45,170,205,116,171, 41,123, 97,141,170,155,185,163,110, 5,166, 82, 14, 56, 93,118, 77, 39, 82, - 20,101,204,244, 58,244,192, 12,225,137,151,182, 62, 20,137,160, 33, 81,156,134, 51,212, 37, 90, 53,231, 2, 99,169,155,175,188, -191, 38,224,145,225, 75,197,233,207, 44,215,194,163, 96,195,226,200,192,218,159,198,201,111, 70, 21,251, 36,188,165,168,209,214, - 26, 54,219, 1,243,180,176,102, 7,202,134, 15,129,118,233,243,156,224,189, 93,141,187,173,174, 54,168,201,225, 64,169,121,193, -126,183,231, 20, 59,207, 22, 88,201,111, 7,159, 61,141, 93, 46,134, 18,186,248,119, 96,189,133,131,227,204,243,138,105,154,233, - 44,105, 64, 8,100,187,148, 53,162, 16,220,228, 76,241,158,149,253,188, 58, 43,165,135,175, 88,107,225,108,161, 41,229, 10, 89, -237,156, 35,203,104,169, 26, 14, 69,246,167,166, 69,117, 91,119,227, 88,173,115,152,205,222, 42, 17,232,198,113,224,200, 89,203, -113,196, 78, 1, 65, 50,217,148, 75,115,154,102,154,208, 13,196,201, 47,185,224,242,226, 10,243, 52,235, 10,181,213,214, 65, 68, -188, 90,148, 38,141, 86, 84,158,207,134, 66, 34,237, 90, 14,242, 29, 52,147,220,116,212, 43,141,219, 13,240,210,126,189,181, 67, - 45,188, 52,207,245, 59, 90,122,209, 64,173,199,251,230,191, 36, 81,121,201,148,134,239,198, 66,124,167, 95,125,189,227, 63,252, -211, 13,223,245,183,157,245, 74,241,147, 85,153,126,141,198,192,183, 42, 59, 50,195,191, 96, 48,222,147,236, 64,200, 89, 71,203, - 2,219,151, 46,163,213,172, 37, 8,229,133, 7,221,127,171, 13,134, 59, 53,152, 85,198,108,165, 56, 79, 26, 71, 25, 77, 0,243, -252, 98, 17,243,221, 41, 94, 86, 96, 14,211,126, 70, 90,104,244,239, 69,113,107, 13, 95, 56,212,133, 14,209,245,228, 27,246,181, -230,204,185,211,172,212,150,221,119,101,187,148,232,171, 72,253, 9,190, 76,171, 50,229, 53,110,145,193, 48,206,133,149,160, 16, -171, 64, 8,154,122, 88,239, 24,160, 70,168, 87, 18,112,161,195, 81,172,209, 67, 35, 45,164,182,151,120,189,148,232, 69, 36,126, - 53,237,208,101, 10, 94,107, 65,205, 25,183, 94,125, 11,247,223,251, 25,190,250,226, 57,133, 86, 56,139,229,252,183,184, 62,123, - 0,112, 0,135,117, 30,206, 5, 37, 91,137,130, 84,186,115,168,114,190,227, 36,133, 27,111,173,133,141,180,111, 4,163, 33, 27, -239,240,106,173,216, 93,207,122, 0, 24, 11, 82,183,115,236,109,101, 95,190,252,110, 90,225, 14, 52,211, 51, 69, 17,190,130,143, -164,103,160,164,212, 19, 2,121,172,100,172,163,200, 56,116,145,160, 0,108,156,115,152,150, 17, 95,127,229,113, 61, 21,220,186, -113,132,143, 62,186,143, 6,135,203,235, 9,105,201,176, 62,192,185, 66,153,229, 75,130,157, 95, 96,235, 26,188, 49,136, 14, 88, -174,103, 88,227,224, 13,239,164, 82, 65, 13, 35,190,248,230, 41, 62,251,226, 17,114, 33, 33,102, 45, 21,239,188,249, 10, 94,189, -119,130, 58, 47,112,241, 6,106, 60,194,217,139, 43, 60, 61,187,130,115, 6,247,110, 31, 99,227, 1,247,236, 27,212,163, 27, 8, -183,110, 99, 19, 2,178,181,248,248,209, 21, 18, 31,236,163,119, 8, 43,176, 79,230, 64,140,138,134,125, 46, 56,138, 3, 6,111, -177,185,125, 19,230,238,109, 42,114,157, 67,154, 38,160, 21,213, 86,104, 54,180,138,156,202, 75, 29,198,106, 27,199, 90, 23,203, -226, 55,210,196,200, 20,167, 7,178, 84, 30,169, 11,178, 57,165,140,224, 35,231,213, 19,149,141, 58, 73,122,124, 6, 23, 97, 12, - 93,244, 18, 50, 67,239,142,209,142, 94,124,243, 69,169,118, 61,226, 85,138, 75,233, 50, 37,121,176,241,142, 94,166, 84,228, 71, -183, 12,139,225, 44,118,182, 65,149, 92, 96, 2,159, 47,178,166, 3,141,190,199,109,224,209,181,209, 78, 61,242,120,220,135,160, -151,143, 15, 30,195, 24, 0, 80,199, 46, 57, 4,178,135, 78, 75, 65, 28,169,209,201,165,240, 25,194, 46, 3,110,198,125,112, 72, - 75, 86, 96, 38,113, 55,160,250,143,204,188, 10,112,102, 56, 90, 67, 53, 13,198,176,189, 13,125,194, 87, 74, 23,155, 73,136, 14, - 26, 96, 57,223,129,222, 35,206,215,246, 30,165, 36,253,253, 9, 24,198, 57, 2,224, 16, 91, 66,194,182, 40, 67,131,154, 27,195, - 34, 55,163, 83, 76,112,241,237,188,227, 21,169,129, 9,158, 19, 40,233, 12, 27,199,145, 33, 60, 86,149,249, 29, 72,100,153, 56, -154, 21,101, 75,218, 4,250,250,175, 46,175,112,125,181, 83,216,145,211,212, 61, 97,134,208,187, 93,107, 86,253,143,156, 63,234, -148, 41,249, 96,207,172,190,116,211, 47, 97,243,146,161,173,245,168,131,111, 9,212,218,119,169,222, 94, 34, 47, 30, 92,232,120, -105,150,223,190,141,166, 51, 47, 45,214,205,119,136, 81, 15,196,112,166,171, 92,204,193,215,184,186,151,101,106,106, 44,156,177, - 26,134,101, 29, 71,174,250,192,211, 31,122,191,188,196, 84, 58,190, 88,169,154,143,189,210,183, 61,153,201,172,196, 72,212, 13, -145,144, 70, 94, 68, 33, 12,201, 40, 86,198,201,212,181, 70,160,177, 0,136, 15,107, 25, 63,136,216, 38,196, 17,155, 35,242, 49, -202, 56, 34, 45,153, 61,230, 69, 31, 22, 42, 40, 56,231,153,195,226,115, 46, 42, 50,171, 43,235, 85, 78, 5,227, 38, 34,167,134, -220, 10, 39,204, 89, 29, 21,150, 92, 85,245,171,174,192,218,147,141,208,154, 86,242, 50,162,151, 74,210,177,144, 75, 33, 56, 60, -197,160,136, 61,242, 80,143,145, 64, 36,132, 90, 77,124,208,113, 48, 2, 43,244, 69,171, 80,149, 48,101, 20,248, 34,244, 42,160, -162,149,138, 59,175,191,131,215,223,251, 35,124,254,217, 51, 92, 93, 78,180,139,187,252, 28, 87,207,191,224,228, 39,207,163,169, -142,154,117, 62,176,218,158,194,199,106,173,112, 13,170,196,181,214,193,134, 0, 86, 49,240,104,145, 33, 15,185,243,255, 91, 45, - 90, 24, 25,208, 14, 90,148, 21,194,180,167,226,144, 10, 30, 43,110,138, 90,224,173,231, 98, 10,148, 2,197, 90, 13, 83, 41,150, - 54, 45, 73,145,135,203,188,240,104,162,234, 32,170,100,210, 53, 84, 4, 60,122,106,241,248,105,195,184,241,248,209, 59,183,113, -107,235,145,231, 61,150,102, 81,175,119, 72, 83,194,126,202,200, 54, 2,214, 96,180, 21, 67,201,184,118, 6,105, 90,176, 29, 35, -129, 49,150,130, 58, 47,200,115,194,217,213, 30, 31,255,234, 33,158, 95, 77,220, 65, 53, 4,231,240, 71, 63,125, 31,239,189,247, - 6,173,113,152,232, 85, 26,240,205,195,103, 4, 61,202, 25,209, 2,249,201, 35, 92,165, 2, 95, 61,142,238,191,134,214, 42,174, - 94, 92,224,211, 7,167,136,158, 50,170,207,230,132,255,248,203, 71,120,239,238, 17, 62,184,127,147,125,189,192,156, 42,206,103, -209,124, 0,102,123,140, 6, 7,235,232,144,164, 60, 4,207, 88,100, 10,197,233,163,196,210,151,131,107, 18,128,161,201, 8, 21, -204,108,115, 50, 92,180, 99, 29,241, 72,133,170, 85, 43, 26,165, 0, 42, 82, 85,196,154, 37,161, 54, 7,203,202,239,101,154, 85, - 63,210,216,150, 36, 94,113,153,148,137, 69, 75,115,160, 87,203, 1,231,132,123, 1,117,192, 72, 1, 74, 2, 77,210, 10, 56, 71, - 23,124, 28,130, 50, 12, 80, 42,251,186, 59,100, 71,236, 90, 94,199,190, 12, 65,226,145,178,208, 17,157, 37,184, 83,229, 60,113, -130, 68, 85,226,207,243,233, 47, 23, 99,206,100,133,147,119, 66, 5,153,176,152,118, 11,127,223, 13,214, 82, 78,121, 99,112,145, -128,115, 36,174,214, 90,131,198,144,160,146, 10,191,243,137,180, 73,156,177, 46,113,168,210, 92,200, 10,207, 90,135,198, 28,138, -101, 73, 40,133,206,106, 74, 70,236,171, 47,242, 42,247, 11,210, 57,139, 92,114, 31,203,114, 49, 47, 41,105, 75,202,140,141,237, - 17,160,114,102,198, 24, 25, 52,212,125,251,146,236, 70, 2,193,202,112, 25,175,250,166,253,110,102,247, 1, 16, 98,196, 48, 16, -244,167,214, 66,184,215,154, 87, 89, 4,128,243, 70,167,162, 20, 73,187,186,172,107, 81,103, 75,149,239, 37,247,203,186,181,223, -225,230,248, 14,240,139,121,249, 46,110,135, 23,127, 59,228, 53,117,128,234, 75,171,244,181,240,237, 16, 96,211,190,227,207,125, - 87,135,221,199,237,230, 32, 71,157,167, 55, 60, 25,235, 58, 53,171,117,131,119, 20, 73, 77,211,236,214,109,148, 10,253,170, 92, - 48,242, 4, 57, 11, 14, 21,132, 73,172,188,115,166, 14, 41,179,213, 72,186,102, 67,193, 41, 77,226, 29,105,132,158,150,153,128, - 52, 18, 75,138, 62,235, 39, 11, 22,237,120,172,179, 8, 8,186, 55,117, 54, 40,118, 82, 58,245,113, 24,116, 36, 40,170,120, 99, -129,121,158,105, 55,212,250, 72, 12,133, 70,109,228,167,230, 28,104,198,147,210,218, 64,212,239,135, 15,137,236, 30,172, 92, 62, - 98,255, 48,194,202, 54, 58, 58,118,252, 49,196,170,148, 83,193, 48, 68, 30,199,145,112,200,121,242,102,203,136,218, 49, 76, 71, - 20,243,226, 57, 44,108, 73,241,158, 84,251, 36, 36,226, 93,117,206, 40,185,113,183, 64,135,142, 32,118, 37,223,248,222,235,239, -226,213,119,127,140,207,127,251, 20, 23,231,100,159,201, 87, 95,225,250,244, 51, 56, 31,120, 4,104,216, 95,236, 20, 52,147,115, - 33, 37,126,149,100, 52,175,176, 24,107,156,250, 32,141,117,132,139, 20, 31,191,117, 40,144, 36, 36,114, 9,172,179,188, 37,151, -190, 72, 50, 83,237, 94, 75,121,240,164, 75,170,234,105, 6,172,113, 60, 37, 40,196, 62,200,139, 70,227, 54, 86,111,203,203, 75, - 12,242, 6,227, 6,156, 94, 56, 60,120, 68,185, 0, 63,248,254, 93,220,185,115,130,176, 59, 71, 40, 25,182, 52,192,122, 12, 37, - 97,218,239, 97,151,140,227, 49,195,134, 45,192,140,237,232, 29,182, 71,244,187, 43,251, 5,187,235, 25,121, 73,248,242,233, 5, -190, 58,223, 99,102,178,161,116,158, 63,251,241,187,248,209,135,111,177,179,194,118,124,176,109,248,229,217,185, 38,141,189,118, -123,139, 52, 39,204, 75,195,113, 3, 23, 40, 14,127,245, 55, 31,227,116,191,192, 51,211,223, 89,139,235,156,241,247,223,156,225, - 55,207,175,241,123,247,111,224,189,251, 39,216, 47, 11, 46,231, 5,185, 86,108,135, 65, 69,145, 2, 51,217,140, 30, 14,192,156, -120, 77, 4,219,253,232,109,117, 48,177,247, 64, 20,236,198, 56, 21, 55, 18, 0,198,234,232, 91, 38, 51,116,160, 85, 88, 46, 32, -215,158,221,218, 24, 71,203, 8, 85,211, 50, 9,223,172,193,178,244,132, 54, 99,109,199, 6,163,209,101,134,166,202,232, 53,198, - 86, 58,187,222,105, 22,118,148,172,182,163,130,143,118, 65, 47,236,180,228,222,209,177,235,101,176, 30, 41,101, 12,227,160, 23, - 60,105,109,172,226, 73,141, 5, 12, 91, 52, 9, 49, 93, 49,110,122,183,233, 2,197,147, 18,226,153,104,137,181,102,204,115,209, -162, 75, 3,102,216,243, 78, 78, 22,139,156, 27,108,108,108,115,229,113,185, 68,100, 58,154,116,201, 5, 95,146,172, 49, 11,246, -251,153,215, 22, 84, 88, 88,166,119,106,119,174,185, 25,204,249,168,141, 47,116, 18, 35, 39,214,180,244, 88, 84, 86,214,243,207, -220, 24, 18,158,218,106,209,108,131,117, 65,149,224,214, 2,181,145, 24, 89,138, 46, 99,168,144,217,110,183,156,124, 72, 68, 61, -207,103,138, 20,123,214,246, 8, 87, 99, 12,166,105,198, 50, 47,168,181, 32, 4,135, 97,140,234, 32, 58, 63,191,228, 11, 59,245, - 81, 58,159,141,228, 36,201,236, 53, 23,141,147, 71,206, 11,159,247, 70,131,183,202,234, 57,151,100, 54, 34,233,117,117, 59,117, -235,230, 59,172,227,237, 91,106,243, 53,126,198,152,151,130, 93,240,237,139, 92, 47,240,213,252,125,157,165,240, 59, 33, 52,223, - 49,114, 55, 42, 62,151,118,189,169,223,188,231, 55,172, 7,241,134, 67,116,178, 18, 94,157,160,214, 93,231,199, 88, 22,182,202, -187,235,165, 2,211, 63,104,197, 19, 71, 68, 48,219, 68,213,222,147,118,250, 40,158,108, 18, 48,148,234, 36,137, 59,158,125,133, -125, 42, 97,120, 95, 66,194, 39,203, 86,133, 53, 14,210,249,136,113, 28,117, 63,213, 86,227,234,156, 50,179,148, 83, 87,187,115, -118,158, 99,204,173,229,192, 2,203,184, 67, 41, 84, 36, 62,176,143,153, 68,173,207, 70,125, 47, 59,196,222,221, 83,250, 40, 77, - 29,188,239,190, 93,199, 99, 40,218,245, 26, 5,200, 72, 53,220,233,113, 84,244,120,182,130, 8,207,184,173,248,211,244,189, 25, - 37, 40,209, 62,168,178,213,173,234,190, 90, 14,139, 55,190,255, 67,220,126,227, 71,248,252,183, 79,112,241, 98, 15,231, 45, 48, - 61,192,245,233,103,244,242,231, 10, 99, 2, 91,207,156, 30,180, 2,252, 33, 75, 72, 65,240, 36,100,233, 7,161,208,195,236, 42, - 98,145,243,161,211, 66,163,108,205,162,239, 59, 60,226,122,215,149, 45,169,123,241,197,106, 37,135,141, 36,124, 81, 28,163,101, -130,160,163, 17,247, 66,193, 60,148,224, 74, 85,186,216, 43, 91, 45,168, 8,120,122, 10, 92, 92, 57,108,134, 17,127,248, 7,247, -113,124,114,132,148, 42,202, 50, 35,101,250, 92,176, 30,213,143, 8,184,196,205,209,193,222, 28,105, 13,176,137,152,206,247,180, -110,224, 41, 65, 93, 50, 92,107,176, 45,227,151, 95, 61,199,211,125, 82, 58, 34,248,160,125,255,221,251,120,255,131,183,201, 42, - 34, 57, 6,165,194, 89, 42,182,158, 60, 59,231, 2,211,225,181, 55,238, 1, 71, 17,102,211, 96, 78, 78,136,115, 16, 26,238,221, - 61,193,157,147, 35, 92,236, 38,230,163,211,197, 30,172,195, 46, 23,252,127, 15,206,240,249,233, 53,137,241,106,133, 99, 54,129, - 15,158,163, 91,171, 18,193,188,203, 48,231, 79, 57,159, 58,117,182,182, 15, 42,104,132,177,218,237, 90,235,251,120,111,205,169, - 22, 8, 17, 26,156, 11, 61,137,177, 84, 14,116,169,108, 23,163,119,189,182,190, 42,147,103,168,105,150, 58, 23, 15, 13,104,153, -131, 96,120,114, 39,150, 85,121,135,214,201, 94,107,116,108,107, 13,214, 83, 34, 99, 41, 21, 78, 17,169, 85, 63, 47,237,212,189, -138, 79,107,109, 24,198,129,161, 46, 52, 85, 26,134,168,248,234, 24,189,198,161, 58, 43, 59, 97,102,216,143, 65,129, 40, 66,170, -180,209,115, 83, 96,184,136,181, 28, 48, 68, 33, 43, 82,160,138,200, 52,205, 43,130, 89, 37,162,227,146, 88, 40, 42,145,196, 60, -117, 42, 44,250, 44,185, 32,183,202,172,140,194,192, 22, 18, 43,138,126, 73,168,119,222, 7, 20, 14,150,106, 13,216,239,103,202, - 71, 96,235,177, 8,219,228,231, 73, 19, 50,217, 45, 27, 77,206, 20,189, 14,120,253, 37, 26, 4,225,191,147,163,129, 68,109,155, - 13,173, 58,157,117, 36,118, 99,239, 63,173, 19,138, 22,100, 41, 81, 81, 34,194,201, 16, 61,198,205, 70,109,112, 87,151, 87,200, -133,166,171,242,113,232, 44,102,157,150,164, 88,150,170, 54, 63,177,105,117,251, 46,248,206, 49, 48, 5,244,142,243,197, 78,144, - 42,116, 77,128,121, 73,229,190, 26, 93,155, 3, 76,108,191,220,215, 16,166,111,253, 51,176,178,116,175,132,117, 6,223,234,238, - 91, 59, 84,185,183,117, 84, 27,186,118,164, 11,227,214, 23,186,233,191, 15,126,111,193,144,182,134,254,193,233,253,226,233,128, - 5, 55,173, 78,163,195,165,121, 12, 62, 32,243,115,225,141, 49,138,212, 68, 51,136,195,160, 47, 18,141,115, 28,106,174,186,175, -240,222, 99, 89, 22,141,121, 68,115, 12, 23, 33,245, 57,141, 82, 28,123, 75, 43,226,176,161,224, 21,219, 73, 71, 82, 93,200,159, -243,156,194,230,125,192,102,187, 65,140,129,247, 81, 77,115,211,231,105, 86,116,164,236,189, 68,174, 40,176,137, 2, 3,239,161, - 30,216,106,232, 2, 77,139, 89,229, 73,179, 90,189, 57,237,204, 69, 13, 44, 9, 95,133, 69, 33, 98,217,208,125, 58,143, 55, 12, -160, 85,149, 28,112,128,193, 48,120,237,222, 36,211,188,241,254, 92,210,226,192, 24, 88,199,251, 46,233, 96,215,246,163, 90, 25, - 12,200,234,216, 55,191,255, 33,110,190,246, 30, 62,251,244, 49, 46, 47,246, 84,245, 78, 95, 99,127,254,128,127,174, 20, 44, 67, - 93,148,231,145, 94, 80, 26, 30, 97, 88, 11,130,188,172,108,103,179, 14, 10, 47,160,137, 69,208,176, 24,121,152,201,118, 69,120, - 86, 58,216, 9,181, 11, 86,193,171,211,129,199,227,226,195, 21,232, 14, 9,174, 56,208,199,121,101, 65, 75, 18, 91,205,164,216, -174,133,195, 38, 56, 10,214, 7,143,243,115,139, 79, 63,175,248,254,247,238,225,103,255,246, 77,220, 56,217,162, 89,139,221, 62, -225,178,206,168, 32, 39,193,156, 50, 42, 50,252,237, 13,112,114, 3,219,253, 21,114, 42, 88,114, 69,219,239,113,180, 25,208, 74, -198,178,159,169,227,107,192,179,171, 9,191,120,240, 2,215, 75,193,209,118, 80, 59, 99,173, 13, 31,189,247, 6, 62,252,232, 29, - 98,122,243,229,154,178, 81, 93,194,139, 23,215,152, 88,133,108, 12, 48,158,156, 32,111, 71,120,103,176,203, 13,152, 43, 76, 89, -240, 39, 63,121, 27,127,252,193, 43,248,229, 87,167,248,171,191,249, 4,159, 61, 58,163, 81,175,243,234,159,125,122, 77, 99,108, -199,185, 7,222, 25,140,209,161,193, 97,153, 18, 80, 18,112,113,138,146,103,164,179, 43, 70, 98,246,238,206, 57,207,196,184, 30, -129,217,154, 81, 70, 68,107, 6, 70,153, 9, 50,106,109, 28,188,209, 58,254, 87, 20,239,134, 25,254,173,209, 72,215, 5,141, 25, -174,181,162,162,114, 26, 33, 61,155,222,211,180,173,153,166,253,133,181, 36, 88,181,250, 49, 37, 27,157, 51,217,171,225,194,142, -118,187,173, 1,243,188, 32,198, 65,255, 89, 46, 10, 25, 47,230, 82, 96,138,225,213, 1,209, 43, 91,131,254,185,101, 33,154, 97, - 8, 94, 41,140,206, 17,255,193,123,135,205, 17, 53, 12, 49,122,142,101,245,172,142,151,119,195,115,212,178, 65,205, 85,187, 82, - 74, 43,108, 88,230,194, 34, 91, 33, 59, 82,227, 80,109,211,213,159,136,203,100, 39, 47, 83,170,121, 90, 72,107, 36,209,196,173, - 97, 24, 54,172, 85,130,146,234, 8,159, 77,231, 69, 98, 86,193,126,183, 71, 74,153,155, 16,163,132, 1, 42, 20,106,167,170,193, -234,129, 47, 69,159,117, 84, 36,166,156, 17, 60, 77, 18, 93,160, 41, 80,140,195,106,212, 76, 44,125,199,162, 55,171,150,198, 30, -243,156, 82,198,245,213, 78,119,194,228,245,167,157,252, 60,205,152,166, 73,117, 1,214,146,194,158,116, 17,172,157, 66,211,204, -137, 42,207, 68,237, 51,232,198,121, 19,194,160, 32, 47,125, 65, 45, 73, 69,161, 34,186,181,214,247,248,234, 21,189,205,172, 72, - 48,166,225, 59,100,103, 93, 83,126, 56, 82, 63, 36,209,181,122,232, 62,107,171,150, 94,138,228,190,254, 50, 7, 54, 57, 99,205, - 1, 82,214,174, 45,106,102, 53, 33, 19,228,171,117, 61,122, 85,210, 57, 87,249,237, 85, 89,251, 93,209,223,239, 28, 17,166,122, - 30,203,115,198,122,227,151,188,112,210, 81,225, 44,115, 31,140,218, 54,124, 12, 42, 88, 42,156,130, 4,219,171, 63,195, 41,102, -198, 88, 88,206, 69, 7, 23, 0,243, 60, 99,220,140, 84,237,137,141,132, 15,207, 37, 81, 53,103,140,163, 76,242, 97,224, 61,141, - 84, 47,228, 43,191,190,218, 97, 89,102,253, 6,199,113,192,178, 36,133, 52,136,239,213,178,151,207,242,222,172, 85,122,112,114, -206,136, 67,196,180,103,197,101,147,223,122, 83,207, 37,165,251, 24,181, 99, 24,217, 71,115,241, 32,113,134, 49,146,248,172,149, - 10,231, 37, 9,137,170,202, 82, 24, 63, 41, 21, 19, 31, 92,185, 20,254,239,244,160, 90, 14, 75,169, 43, 81, 70,109,171,136, 91, - 73,192,242, 22,239,252,240,247,177,185,245, 22, 62,251,205, 99, 92, 94, 76, 52, 9,216,125,137,253,229, 35, 22, 64, 57, 30,183, - 25,134,202, 64,187,110, 25,175, 18,113, 43,246, 97, 20,243,164, 13,239, 54,168,179, 54, 10,228,145, 53,134,243, 52,246, 21,192, - 79,109,134,237,120,108, 65,172, 20,176, 82, 51,141,195,230,253, 68, 64, 10, 71,190,119,193,252, 90,103,105,135, 87, 58,128, 71, - 0, 54,148,149,158, 97,217, 82,233,156,229,132,190, 17,229, 69,193,135,239,221,198, 31,253,248,109, 88,107,113,189, 79,234,189, - 63,222, 68, 36,111,177, 76, 51,242,254, 28,246,198, 9,117, 74, 33, 32, 93, 55,180, 76, 93,245,120,247, 54,114, 3,230,243, 11, - 88,236,209, 90,197,111, 30, 93,226,243,103, 87, 72,165, 96, 28, 35,117, 30,173, 33, 6,143,255,234, 95,127,136,239,191,123, 31, -165, 84, 26,159, 26, 58,108,114,202,168,185,194, 71,143,175, 31, 62, 67, 46,164, 57,184,119,243, 8,155, 33,112,209, 72, 47,235, -254,252, 5,202,233, 99, 4,222,219,254,201,207,127,132, 63,253, 55, 31,226, 31,254,233, 51,252,175,255,254, 63,227,244,114,191, -130, 36,153,158,121,110, 12,198, 33,224,104,160,177, 50,205,220, 95, 96,191,223,227,242, 58, 33, 85,131,237,102,131, 48,140,221, -178,163, 73,138, 70, 3,157,154,210, 90,232, 57,215, 76, 3, 21,172,246, 3,168, 86,114,188,138,128,212,114,226,150, 28,232, 98, - 95,172, 18,244,194,197,124,169, 21, 53,209,132, 79,236, 96,244, 25, 11,170,174, 95,232,194,169, 43,156,151,119, 94,181, 54, 82, - 40, 11, 87,189, 11,229, 72,148,233,184, 35, 25,198,129,217,231,125,245, 67,162,172, 10, 31, 50, 28,251,204,197,227,171, 89, 17, - 48,216, 30,109,144,115,225,192, 16,143,113, 51,244, 46, 73,124,250,206, 41, 42,149, 86, 95,194,157, 55, 12, 94,105,216,108,253, - 42,123,156,126,186, 89, 17,216,244,204, 91, 16,153,179,212,138,101, 90, 96,184,169,168,106, 67,165,119, 97,216,140,220,141,173, - 67,112,232,125, 39,136, 77,229,124,116,102,202,231,172,154, 24,185,200,122,161, 37,172,117,199, 5, 67, 7,109,209,193,111, 49, -140,163,218,223,164,128,144, 49, 48,173, 51, 28,229,198, 51, 6,150,166,116,133,163, 93,233,103, 66,238,128,160, 2,183,153, 19, -226,118,187, 93, 7,234,112, 81, 32, 93,189,232,105,228,210, 92, 68,181,207, 5, 94,105,156, 50, 86, 87,151,162, 49,250,179,114, -214, 34,177,155,233, 80,157,222,232, 34, 99,244,180, 54,139, 47,161,144,205, 1,149,193,176, 15,188, 7,188,152,213,199,108,173, -155,222, 69, 73,111,165,225,125,121,148,110,215,127,238, 80, 23, 38,243, 0,163,218, 43,123,192,131,183, 7, 1, 76,102, 53, 9, -176,250, 76, 74,247, 46, 16, 8,211,119, 13,250, 51,202, 37,147, 85, 89,226,120,141, 1,192,148, 83, 18, 94,200, 47,128,171, 9, - 86, 37, 83,180,101, 84, 27,129,227,104, 55, 25,129, 83, 90, 22,129, 37,194, 48,112,110,116, 65, 99, 81, 74,225, 11,130,108, 34, -158, 32, 25,149, 70, 40, 57, 23, 4,111, 85,217,231,125,196, 48,142,132,137,181,142, 59,218,204,223, 63,145,170,164,147,170,149, - 46,140,202,123,164,156, 73, 69, 12,131, 3,228,170,252,214,156, 39,209, 70, 8, 44, 20,226,213,128,238,219,213, 72, 72,126, 75, -195, 99,208, 56, 4,173,118, 37,243, 92,245, 1,150,112,170,203, 34, 96, 26,163, 22, 58,241,104,166,148,185,242,207, 43,125,128, -248, 74,139,102,183,235,190,209, 52,173,228,188,115,248,224,167,127, 12,184,155,248,236,211, 71,184,186,154,137, 95,125,253, 5, -150,221, 83,182, 6, 2,141, 65,255, 6, 13,141,237,131, 20, 86, 67, 54, 20, 27, 7, 26,131,134,192,251,174,202, 93,118, 83,165, - 43,133,163, 88,158,206,208, 69, 65,157,126, 86, 36,100, 46, 61,144, 35,113, 36,106,229, 81,108,225,221,191,215, 74, 27,154,152, - 86,114, 70,171,244, 32, 55, 78,230, 18,220, 35,253, 55, 18,248,128,179,206,195, 16,169,251, 99, 33, 93,136, 17, 23, 87, 51,156, - 49, 48,206,146, 30, 97, 78,200,165, 96,153, 18,142, 78,182, 56, 58, 30, 81,141,195, 52, 45, 36,144,171, 30, 33, 24,140,183,110, - 98, 98,156,102, 29,183, 56,125,126,129,127,254,228, 9,118,153,138, 24,239,232,239,160, 53, 28,111, 7,252,201,207,127,132,251, -111,220, 35, 96, 14, 26, 2,167,138,229,148,217,165,224, 48, 77, 51,190,254,230, 84,131,120, 78,182,131, 2, 66, 82, 42,112, 21, -200, 79,158, 34, 47, 19, 90, 6,134,152,209,190,122,140, 27,223,123, 29, 63,255,217, 7,248,224,253, 55,240,191,255,251,255, 23, -127,253,247,159,169,167,219,192, 34,179, 30,229,149,187, 39,184,119,123,131,235,253,130,197, 85,212,157, 67,216, 12,216, 21,131, -253, 85,193,176, 25,216, 83,110, 85,120, 36,122, 23,234, 52, 69, 21,187, 18,230, 88,171,255,194, 24, 42,216,100, 84,175, 74,120, -121,246, 12, 69, 58,166,156,145,139,252,127, 38, 46,122,219, 3, 93,235,202, 79,220, 26,163, 68, 61, 95,188, 18,178,209,185,220, -214,244, 78,178,119, 45,189,192,148,131,177,148, 2, 87,233, 82,179,206,193, 54, 71,197,178,119, 48, 28,138,148,139,104, 9, 8, -174, 98, 12,217,188, 98,140, 12,149,113, 60, 9,160, 85,198,198,145, 16, 45,142, 17, 13, 70, 11,113,201,118, 40,133,172,149, 34, -250, 18,119, 2, 21, 27,180,230, 27,198,128,221,245,172,130, 44, 17,204, 73, 24, 83,102, 61, 2,249,208,179, 30,252,146, 29,111, -141,225, 46,153, 46, 95,177,111,229, 84,148,115, 47, 22,176,196,209,163,178,186, 19,152, 15, 17, 37,187, 79, 94, 46, 83, 0,172, - 55,234,171, 46,239, 37, 2,218,232,247,148,115,102, 7,129, 88,215, 12, 89,205, 10, 93, 70,203,156, 84,189, 46,252,122,231,168, -137, 18, 23,204,213,229,142, 44,105,203, 76,205,155, 49,112,142,222, 37,217,151, 3,253,236,246,222,107, 4,182, 97,157,150,243, - 86, 69,207,149,207,158,202,234,247, 82,136,121,208, 0,204, 83, 87,203, 31, 32,227, 84, 4,199, 77,201,203,227,117,115,104, 21, -147, 98, 8, 47,255,251,151, 8,111,162,255, 18,102, 75,171,135, 33, 84, 26,100,179,182,211,241,197,109,209, 39,121,130, 70, 23, -189,152,196,145, 91, 99, 15,132,124,142,139,227, 46, 20,109, 42,164, 62, 20,144, 86,190, 19,107, 23,159, 43, 32,205,177,240,218, - 35,132, 1, 33, 70,248,117, 52, 31,125,128,194, 15, 11, 71,186,177, 2,190,171, 90,187,146, 64, 0, 16,209,143,200, 11,209, 40, -228,192, 32,152,128,231, 37,191,215,157,157, 42, 49, 13,169,215, 83, 74, 24, 55, 3,134,113, 32,213, 59,255, 70, 50,167, 18,165, -133,162, 12,155, 86,201,189,202,182,130,109,244,110,245, 53,113, 32,205,202,187,217, 69, 52,107, 32, 77,210, 42, 93, 2, 87, 66, - 12,154,205, 43,226, 5, 18, 61, 89,237,222,125, 96,177, 29, 67, 18,214,170,221, 16,250,206,164,178,223,115,217,207,202,232,213, -140,241,117,224,170,248, 12, 25,200,239,189, 69, 28, 6,124,240,147,127,133,253, 28,241,245,111,159,224,242, 98,194, 48, 58,204, -231,191, 65,218,159,106, 21,215,140,225, 73,121,101, 10, 32,141,201,198, 49,104, 49, 99,172,129,101, 93,123,145,209, 0, 40,176, -133,246,118,232, 99,102, 46,101,213,182,195, 35,193,156, 73,143, 32,118, 66,177,182,201,255,134,205,160,108,120,231,233,162, 73, -203, 66,176, 16, 67,137,108,206, 90,212,146, 56, 46,145,105,121,181,168,168,208,135, 8, 63, 12,236,192, 48,188, 43,109,216,167, -138,103,103,123,220,187,115, 4,111, 28,210, 50,211,139,151, 59,233, 43, 23,131, 96, 29,204, 38, 98,140, 14, 87,206,160, 2,184, -220, 45, 72,153,190,254, 79, 63,253, 10,223, 60, 57, 83, 54, 64,206, 85,139,144,155,199, 91,252,155, 63,254, 16,119,239,222,212, -195,197,240, 30, 82, 69,149, 44, 76,249,230,225,115,156, 95,237,180,136,187,117,235,132, 18,237, 4, 18, 52,207,104,121, 70, 46, - 5,181, 88,180, 12,184, 84,145,207,118,152, 83,193, 56, 6,252, 15,255,253,159,226, 79,255,245,251,248,159,255,183,191,197,103, -143,206,104,143,207, 72,205,247,223,190,139,215, 95,191,133,221,245,132,253,133, 67,157, 79,177,179, 6,203, 64, 94, 99,159,174, -212, 75, 46, 69, 51,184,163,232,158,115, 3,138, 90,162, 46, 93,230,114, 70,196,167,202,133, 0, 11, 42,141, 90,178,202,188,144, -142, 37,103, 36, 6,175, 52,190,124, 75,173,186,191,215,220,103,198,178, 90,103, 81, 42,113, 26, 12,228,128,166, 34,208,113,178, -163,109,102, 69,197, 2,235, 62, 4,108, 67,157,106, 3, 77,217, 98,164,174,146, 14, 43,191,130, 87,101,132, 64, 68, 55, 10,242, - 33, 33, 31, 77,128,160, 29,152,115, 14,195, 72,221,229, 50, 39,238,186,105,101, 49,239, 23, 77, 78, 44, 44,144, 21,182,251,192, -145,172, 57, 23, 42,240, 1,132, 13, 81,232,196, 37, 19,130,165, 92,119, 97,113, 48,222,186, 49,177,178, 49, 11, 97,158,178, 6, - 30,129, 15,116, 97,179,139, 37,174,182,138,178, 80,211, 34, 89,235,211,148,120, 68, 78,157, 51, 21,178, 75,207,212,174, 77,127, -151, 50,102, 39,145,154,215, 11, 77, 10,120,107,193, 63, 71, 71, 63, 71,177,206,101,106,174, 42, 11, 59,247,251, 9,181, 54,140, - 99,212, 12,248,194,235,132,253,126,194, 60, 47,152,167, 25, 75, 74, 84, 28,240,217, 66, 2, 46, 18,224,102, 94,211,138,107,167, - 25, 42, 54, 68,136,108, 45,227,136,249,210,147,194, 48,132, 1,203, 66,188,119, 25,201, 87,214, 79,201,148,180,169,195,163,169, -127,222, 50,238, 26, 85,232,151,135,233,113,253,194, 62, 84,196,137, 43, 71,129, 95,181,117, 62,188, 53,250,126,136, 7,188,113, - 51, 35,106, 55,153,178,233,223, 93,249,204, 73, 95,149,117,117, 93,106,159,178, 72, 7, 46,133, 65,237, 9, 69, 93,160,186, 90, - 6,116, 24, 13, 61, 47,142,223, 29,153,182,121,231,233,220,244,145,217, 1, 4,108,242,122, 17, 58,199,106, 67,195,233, 99, 78, -115,181, 41, 38,147,163, 49,115,209, 48,118,160, 40,188, 69, 34, 59,141, 37,218, 17,177,140, 11, 98, 28,104,231,196, 59, 29,122, -201, 50,188,115, 72,185,240, 47,153, 42, 70, 18,110, 8,201,172,104, 14,241,180,159,180, 26, 11, 12,116,209,221,184,100,131,219, -126,153, 58, 33,239,176,189, 74, 94, 70, 82,140, 86, 69, 76,210,247, 7, 78, 30,242,100,115,210,157, 63,133, 43,200,104, 75, 84, -198, 11, 43,155,173, 53, 92,245,123, 29, 25,130, 65, 25,146,251, 43,191,240,174,218,132,190, 8, 82, 36, 89,223, 3, 18,208,128, - 56, 30,225,163,159,255, 91, 60,127,190,224,209,195,167,164,242, 29, 26,234,245,111, 96,234,165,238, 82,117, 23, 67,244,114, 61, - 44,135,129, 68, 66, 52,113,224,148, 55, 33, 53, 25, 11,235,233, 65,145, 68, 37,128, 14,154, 97, 28,200,179,238,201,106, 87,120, -199,157, 82, 34,177, 28,239,199, 41,128,163,233, 97,130,214, 5,148,210, 57,144,215, 89,190, 71, 17, 51, 45,202,210,119, 22,156, -103, 77,227, 85,207, 83, 4,178,239,241, 85, 81, 43, 66, 48,184,190,158,177, 44, 5,231, 87, 11,198, 96,177, 29, 28, 78, 78, 54, -112,195,128, 96,216,185,176, 79, 72,185, 98, 24, 35,106,169, 24, 51,127,206, 37,225,139,175, 31,227,171,135,207,113,181,155,180, -184,107,204, 10, 88,150,132, 87,238,222,192,159,252,252,135,184,121,235, 68, 71, 95,104, 92,116, 58,192, 27, 67,128, 24, 3, 44, -243,130,143, 63,125,160, 7,198,173,147, 13,190,255,238,107,200,133,105,103,198, 2, 33,162,109, 78,128,122, 14,211, 26, 76,176, -104,195,128, 92, 27,246, 83,162,223,167, 55,120,227,245,187,248,159,254,199, 63,199,211,211, 43,252,195, 63,126,129,191,253,231, - 47, 80, 27,240,193,219,119,241,202,189, 35,236,183, 30,211,198, 35,205, 39,216,219,107, 76,209,227,203,103,123,108,143, 2,119, -205, 14,214,117, 49,143,117,140,232, 21,222,128, 49,171,192, 7,195,106,231,172,157,185, 91,225,157,115,106,252,140,100, 69, 41, - 75,130,151,117, 70,237,104, 61, 13,106,197,157,144,177,103, 45,164,113,200,137, 99, 55, 57,143,129,211,204, 12,119,242,114, 72, -107, 49,194, 2, 83,205,132,230,206, 37,165,207,235,114, 52, 0, 0, 32, 0, 73, 68, 65, 84, 76,239,219, 76,122, 15, 31,131,174, -223, 42, 3, 95,100, 85, 32, 59,247,148, 10,226, 40, 44,137,238,165, 30, 54, 3,172,161, 93, 61, 26,224,188,213,179,141, 50,199, - 9,173,234, 71,183, 34,210, 89, 14,152,138,106,253, 75, 83,214,212, 51,129, 91,137,197,181, 73,236, 44,141, 37,116, 50,135,118, -152, 50,166,211, 44,158, 68,101, 38, 9,122,239,176,223,113, 3, 96,160,206,130,101, 89,212,141, 34,209,171, 49,138,207, 30,154, -154, 38,103,165,168,204,197,130,215, 42,120,194,210,243, 60,150, 37,163,228,138,253,126, 81,110, 70, 8,158, 19, 39, 61, 11, 88, - 19,246,251, 25, 57, 23, 76,211,172,133,189,236,216, 75,173,202,117, 87,203, 31,191, 63, 50, 89, 81,164,105, 21, 4,117, 95,187, -120, 7, 36, 86,249,207,243,158,197,193, 6,185, 85,125,182, 68, 4,166, 46,142, 86, 97,109, 64,179, 85, 47,121, 83, 43,165, 69, -114,195,164, 72,233, 53,101,141,119,223, 93, 11,213, 84,192,221,173, 35,125,207,222,148, 70, 99,180,219,110, 60,242,151,224,162, -158,113, 98, 14,210, 3,233, 46,229,117, 28, 41, 64, 58,197,145,129, 40, 7, 76,119,211,109,118, 77,146,229,196, 49, 98,176, 90, -207, 8, 60,202, 50, 59,192, 35,198, 17,206, 7,120, 31, 16,130,216, 16,121,252, 46,130,145,218,232,194, 33, 22,187, 81, 65,148, - 70, 9, 90, 7, 19,250, 30,200, 57,131,165,204,156, 81, 76, 35,130, 16, 2, 77, 75,208, 35, 57,105, 92,237, 52, 20,194, 8,254, -208, 24, 84, 70,182,134, 56, 80,167,236, 28,141,218,121, 60,187, 44,179,122, 48, 3, 35, 8, 29,219, 42, 42, 43, 57, 87,136, 1, -181, 92,248, 96,120,127,196, 74, 74, 67,156,103,231, 44,102, 86,115, 58,142,249, 28,199, 81, 65, 13,133,153,239,162, 16,149, 93, -161, 53,188,183, 19,109, 7,119,249,214, 90, 24, 14,120,209,145, 94,202, 60, 30, 35, 13, 66, 8, 52, 14,164,145,148,213, 75, 92, -248,202,181, 20, 52, 99,112,231,222,171,120,239,199, 63,199,215, 95,190,192,233,243, 75,236,247, 9,193, 37, 44, 23,191, 69, 73, -179, 94,222, 70,246,177,214,195,170, 87, 81,252,165,134, 85,167,236, 73, 45,132,182,172, 60, 85, 49,142, 2, 32,188,243,236,199, - 38, 95,105,202,148,109, 94,138, 81,255,115,206, 5, 75,162,159,253, 60, 47, 26,196, 51, 12, 17,243, 68,138,245,156,178,142,200, - 74,149, 92, 87,104, 48,142,128, 71,122, 44, 35,161, 61, 3,127,173,224,143, 41,130,193,212, 42, 41,150, 99,132,243, 13,251,139, -132,218, 12,174,175,175,224,156,197,253, 87, 79, 96, 99, 67, 28, 0, 83, 9,222, 33, 32,156,253,190, 33, 45, 25,211,110,198,167, -159,126,141,211,243,107, 60, 61,187, 90,185, 13,232, 99,207, 75, 70, 12, 22,119,110,157,224,103,127,248, 35,248, 24,201,202,103, - 9,207,235,172, 69, 93, 22,114,126,248, 0,239, 44, 98,240,184,188,184,198,233,249,181, 22,134,223,187,127, 7,145,129, 75,213, - 68,128, 59, 35,187, 61, 65, 59,190, 9, 87, 22,196,237,136,102, 3,255, 12, 9,107, 91,155,195, 92,169, 96,120,235,173,251,120, -239, 7,175,227,205, 55,239,224, 63,254,229, 47,240,253,247,223,192, 38,122,108,134,128,116,188,193,126,185, 66,216,239, 17,173, -193,220, 26,134,193, 0, 28,150,132,182, 18, 10,213,170,123, 57,210,136,148, 85,120, 18,217,244,106, 17, 76, 43, 57, 67,212,186, - 90, 42, 90, 38,215, 65,169, 69,133,167, 50,181,129,237, 23,185, 30,102,102,133,213,108, 21, 21, 6,104,137,153,235, 6,214,208, -115, 69,110,153,126,160, 67, 69,178, 12,187,226,253,127, 97, 11,165,227, 46, 57, 4, 46, 68,216,255, 46,220, 8,153,188,213, 10, -164,165, 96, 24,233, 57,150,139,172,148,170, 69,182,116,231,109,181,202,171,149,164, 10, 98,189, 13,209,234,174,190,177,110,198, - 25,135, 16, 57, 61,145, 57,237, 37, 23,120,103,176,148,238,101, 10,129,222,101, 25,185,246,124, 4, 18, 62, 46, 53,235, 52, 69, -138,252,162,171, 75,139,194, 56,107, 26,121,139,104, 22,156, 68, 71, 63,239,192,136,222, 56, 16, 50, 87, 98, 75,181,120, 83, 78, -134,209,241,119,226,241,185,100, 91,180, 66,223, 63,217,226,154,238,215, 55,155,129, 29, 29, 78, 25,239,251,105,194,180,159,121, - 21,192, 33, 82,173, 11,220,188,119, 7,206, 45,175,151,119, 15,126, 89, 75,211, 72,173,158,217,210, 75, 63, 35,209, 41,208,249, -212, 85,236,194,251, 79,203,220,137,137,192, 74, 3, 96, 87, 30,242, 85,250,153, 92,188, 44, 26,163, 34,171,112, 67, 70,226,101, -237,204, 1, 93,175,174, 19,236, 84, 95, 96, 44, 33,174, 57, 73, 79,180, 93,208, 9, 85,183,104,202,101,143, 70,235, 60,211,253, -111,170,189, 48, 2, 50, 91,189,139,198,172,195,101,192,123,118, 28,252,236, 36, 5, 81,157, 23,198,194, 26,139, 56,140,136,113, -128,115,129,186,244, 16,224, 44,199,216,130,166, 3,222, 58, 75,249,214,181,161,181,172,121,230, 18, 99,168,213, 48,167,152,213, - 74, 52,183,121, 94, 52,166,177,178, 90,188, 7,165,116,245, 36,154, 97,251, 90,235, 23, 41, 95, 74,214,209,131,109, 29,117,201, - 96, 6,176,247, 14, 19,143,173,209,170, 10, 54,188,183,136,209,235, 40, 52,165,110, 36,164, 88,208,218,105,109,221, 73, 64,233, - 67,131, 99,193, 15, 41, 76, 73,212, 36, 32,142,195,177,189, 40, 24, 11, 11,224, 90,173,176,129,168, 61,150,247,113, 84, 25,117, -251,136, 42, 42, 88,100, 68, 29,189,225,209, 9, 84, 73, 79,225, 47,153, 31,206,158,212,245,250, 59,239,226,205, 31,124,132, 47, - 63,123,138, 39,143,207,201,198,227, 38,164,171, 47, 81,203,194,194, 11,167,100, 33, 26, 48,175, 41,112,142, 15, 63, 30,231, 84, -131,153,247,190, 96, 21,102, 74, 5,109,166,120,219,181,178, 85,170,217, 82,233,176,174, 13, 60,178,236, 93,160,172, 29, 90, 35, -191,186, 11,180,199,172,124, 41, 11,217, 73, 68, 78,173, 85, 30, 75,211,158,207, 59,122, 14,132,145, 45,170,124,177, 84,145,198, -193,234, 97,212,106, 65,205, 51,114, 14,176, 28,170, 49,110, 34,174,246, 9, 46, 82,254, 54,150, 25, 25, 14, 67,164, 67,191,230, - 5, 79,158,158,227, 31,254,233, 51, 92, 79, 51,166, 41, 97,224,137,145,247,150,139, 79,250,122,239,222, 58,193,239,127,244, 3, - 12, 3, 21,138, 75,170,176,174, 17,241, 13, 36,184, 51,180, 72,132,177, 52,242,123,248,232,185, 86,217,181, 20,188,245,189, 87, -121,215, 90,117,215,153, 18, 16,188,129,241, 14,110, 60, 65, 54, 13,166, 2, 1,148, 63, 79, 56, 97,154,248,212, 82,176,219, 39, -196,232,240,195, 15,222,196,171,175,222, 66, 8, 30,167,207, 47, 16, 6,206,236,206, 25,129,211,199, 30, 93, 37,140,175, 17, 92, - 8, 76, 86, 19, 2,164,216,129,100,127,106, 12,131,144, 12,217, 43,133, 18, 38, 34, 36,152, 66,156,127, 5, 71,149,213,142,222, -173,114,190, 1,163, 23,187,129, 53,140,117,134,236,140,165,240,109, 29, 82,101, 44, 44,199,170, 58, 23,248, 29,160,201,135,248, -137, 73,216, 42, 62,110,192,201,193, 38,180, 60,230,124,203,182,180, 53, 82,108, 55, 62,232,156,119, 24,199, 65,249, 22,206, 83, - 78,119,101, 81, 42,133,186,208,154, 37,231,196,177,189, 22, 3, 79,176,104,175, 91, 72,151,210, 58,174, 57, 70,202, 1,240,190, -175,237, 12,179,212,211, 34,201,142,244, 94, 9,113, 80,127,246, 60, 78, 71, 51,152, 57,155,220,240,101, 40,221,186,186, 8,100, - 44, 15,225,201,211,133, 73,238, 21,154, 22, 24,214, 49,201,179, 21, 3,187, 6,120,212, 76, 54, 93,163,192,175, 90,123,104, 85, -201, 92, 92,167,172,116, 79, 31, 60,182, 71, 81, 11, 51,185,228, 82,206,104,149,112,181,251,253, 68,211, 27, 46, 12, 66, 8,138, - 38, 38,225,107, 85,225,154, 93,165,249,145, 20,203,194,122,187,178, 60, 26, 94,233,201, 36,145,248, 15, 98, 53,108, 10, 73,162, -208, 42,231, 44,230, 37,105, 7, 92,107,101,198,131,225, 40, 86,167,150, 75, 17, 23, 66,211,203,136,114,214, 51,200, 29, 92,147, - 12,117, 62,107, 44,116,116, 46,229,128,124,157, 13,253, 44,196, 10, 80,211,208,180, 40,173,171, 40,226, 53,150, 85, 56,234,109, -197,144, 23, 75,154, 85, 34,129,170,236, 86,169,149,185,211, 0, 69,240,103,176,226,204,247, 41,236, 48,110,169, 51,119,158, 39, -155,158,105,139,172,157,224, 9,150,181,150, 2, 93,136, 76,196, 22,179, 74,225, 30, 30,157,254, 35, 29,165, 40, 17, 43, 3,254, -115,206, 36,192,226,200, 68, 81, 99,247,168, 81,199,151,111, 81,219, 68,230,151, 64,208,133,196,162,166, 74,195, 59,122, 65,151, - 37,233, 65,179,223, 77, 60,178,117,170,246, 36, 90, 29, 16, 3, 69, 41,150, 90, 52,138, 85, 82,211,156,183,200,198, 48,228,197, -118, 86, 46,132, 64,199,217,202, 43,168,130,243,172,116, 87,190,240,106,223,209, 64,182,157, 74, 69,143,170, 26,249,101, 33,155, - 29, 65, 93,114, 41, 42,160,169,170, 87,232,213,112,109,146,252, 75,151,229,123, 31,253, 62,182, 55, 94,193,111, 63,121,132,179, -179,107,178,249,153, 11,212,253, 99,160, 21,120, 31,213, 17, 64, 2, 45,163, 62,124, 37, 79, 57,187, 82,180,178,183,184, 74, 74, - 84,165, 41, 71, 41,176,177,211,200, 28,195, 56, 4,132, 39, 47,248, 50, 83, 96, 78, 45, 21,227, 56,112, 26, 84, 83,209, 80,145, - 46, 60,103, 46, 22, 18,115,156, 11, 9,225,248, 82, 22, 1, 33,165,112, 69,130,246,136,213, 70, 67,132, 9, 11,219, 84, 84,213, -144, 89,244,211, 90,198, 56, 4,108,142, 6,148,218,144, 43,161, 20, 47, 46,246, 56,218, 4, 26,135,213,134,105,166, 61,230,215, - 95, 63,193, 63,255,234,115,204, 11,253,140,130, 39, 10, 92,169, 21, 45, 53,141,194,252,225, 59,175,226,207,254,155,159,192,123, -135,203,171, 5,215,187, 5, 46, 58,160, 20, 20, 88,100, 94, 61, 12,129,178, 2,140, 1,246,251, 5,159,125,241, 84, 41, 94, 55, -182, 35,222,184,127,139, 66,126,172, 37,219,166,115, 88, 82, 65, 42,228,142,168, 75,194, 38, 58,152, 70,194, 40,103, 45, 39,157, - 1,206,210,237,126,113,118,197,135,140,197, 38, 90,124,252,215,127,135, 99, 87,113,252,214,235,184,249,234, 93,184,203, 29,114, -105, 56,155, 50,158, 76, 51,222,181,125, 63, 88, 43,117, 62,181,244, 93,183,138, 68,209,159, 99,233,220,235,234, 82, 65,169, 4, - 37, 49,134, 67,131,172,174,136, 10, 67,147, 68, 76,215, 12,173, 68,172, 6, 14, 97, 21,145,107, 15,130,141, 36,156, 39, 37,214, -121,128, 68, 66, 33,132,149,158,134,247,132, 28, 75,186,206,154, 22, 68,168, 93, 5, 74, 25, 14,239,161, 38,195,179, 91,134,153, - 12, 32,251,163,115, 30,113,136,240,193,169,192, 77,118,250,148,171, 62,174,172, 72,189,179, 52,177, 39,204,165, 36,225, 37,166, - 63,239, 60, 46,157,167,164, 93,153, 56,103, 44,139,252, 90, 46, 44,216, 51,236,182, 41,250, 57, 10, 39, 87,138,186, 90, 0, 63, -148,149,158, 0,239, 52, 25, 78,199,242,181,175,177, 26, 79, 17,192,214, 95,195,182, 46, 65,227, 46,105,230,208,150,164,121, 9, -210, 48, 58,239,177,217,110,116,202, 33,133,133,136, 63, 97, 12,174,175,246, 52,157, 97,193,160,120,224,181, 43,230,139, 55,120, -182,165,114, 49, 78, 26, 8,167, 35,231, 82, 42,224,173, 98,156,151, 37, 49,159,160,112,195, 85, 86,138,124,126, 7,156, 67,229, -244, 76,154,208, 46, 52, 37,211, 73, 40, 7,242,212,166,150, 99,231, 2,188,231,179,134,237,124,204,239,212, 38,100, 77,123,171, -171,155,214,172, 56, 14, 52,190,127,169, 11,111,141, 32,106,194,101, 41,245, 64, 84, 39, 23, 58, 86,240, 25,105, 18, 14,214, 96, -171, 72,225, 90,215,239, 38,123,243,209, 39, 86,135,196,120, 14, 6, 99, 16, 24,233,180, 6, 12,227, 6, 33, 12, 44,130,244, 92, -204, 27,196, 16, 14, 82, 51, 45,120,181,172, 22, 47,126,226, 43,197,111,145, 21, 73,204,239, 6,176,193,116, 80, 64,105,106,133, -104,172,152,151,221,217,126, 55,117,201,191,165, 46,137,108,106,125,207, 76, 35, 14,171,223,200, 48,142, 42,214,178,204, 85,174, -173, 98,222,207,164,144,110, 34,162, 33,241, 30, 93, 26,156, 3,237, 45, 76, 37,212,170,147, 93,150,181,112, 43,220, 30, 49,156, - 89, 44, 18, 61,137,108, 66,224, 21, 0, 61, 92,106,109,121,137,126,149,115,134,231, 95, 84, 78, 5,155,237, 8,239,237, 1,118, - 81, 94,154, 90,233,229,215, 8, 76, 57,232, 26,186,178, 22,253,161,218, 30,111,241,225, 31,254, 12,251,201,224, 55,159,124,131, -171, 43,202, 13,246,245, 57,234, 66, 93,161,143,131,218,224,156, 51,240, 49,104,130, 17, 21, 14,150, 5, 64,208, 17,167,181,238, - 32, 64,194,112, 46,118,107,142,139,148,170,144, 6, 99,161,126,246,214,138,102,155, 75, 2,223, 60, 47, 12,219, 1,219,138, 72, -184, 51, 77,115,127, 28, 45,141,204,164,203,118,214,210,224,194,146, 56,199,123,175,121,236,237, 96, 60, 7, 61,164,188,167,130, -136, 14,170, 4, 3,131,113,140,104,150,214, 50,187, 61,185, 23, 74,109,152,115,198,178, 20, 68,111,224, 13,237, 91, 81, 42,230, - 57, 33,241,129,186, 44, 69,247,179, 98,171,114,214,225, 15,126,244, 54,254,224,247,222,134,115, 22, 67,244, 24,238, 4,220,184, - 49, 98,154, 18, 22, 94, 83, 80,144, 15, 65,143,198,145,168, 90,159,125,246, 8, 47,174,247,136,209,195, 89,139,119,190,119, 15, - 71,219, 1,198, 91, 68, 68,202, 29,135,193, 16, 88,131,194, 72,214, 92, 10, 70, 79,222, 96,103, 13, 12, 44,218,178, 32, 47, 9, -203,126,194, 38,122, 44, 25,200,243,140,203,175, 30,163,238,102, 92,123,139,103,167,159,227,248,238, 41, 94,189,127,130, 0,131, -127,122,112,137,241, 8, 8, 67,208,131,183, 11, 92,173,186, 61,196,210, 36,116,178,202,208,142, 34,227,245, 66,151,147, 31,142, - 56, 52,200, 29, 8, 92, 5,242, 1,201, 74, 55,178,138, 34,112, 15, 69, 35, 67, 99, 99,165, 99,171, 28, 44, 99,180,176, 44,122, - 96, 69,222,247, 54, 0,110, 5,212, 38, 2, 98, 81,154, 22,217, 75,171,198,151, 2, 21,214, 54, 94, 59, 12, 88,230,132, 56, 90, -118,188, 20,132,208,224, 24,223, 28,162, 95, 49,221,141,102, 42,148,131,139,168,123,133, 61, 59, 95,156, 51, 74,149,140,209, 43, - 14,213, 49, 16,136, 70,239, 25, 33, 88, 76,123, 81,181,247,192,151,202,214, 71,234,150,165, 97, 97,204, 50, 95,178,142,119,194, -180,102, 12, 12,199,114, 24, 54,163, 82,238,140, 53, 74,194, 52,166,168, 29, 45,142, 68,119,155,167,133,214,104,153,178,200,107, -201, 88,230,180,178,246, 90, 14, 20, 34,174, 70,136, 3, 77, 78,121, 10, 71, 33, 47, 84,224, 79, 19, 65,165, 72, 97,223,244, 89, -161,143, 19,176,164,140, 16, 60, 18, 23, 42,206,137,122,220, 43,233, 48, 70,163, 57, 25, 69,178,220,249,114, 35,224,213, 33, 77, -208,241,244,150, 46, 97,187,138,161,109, 10,255,146, 96, 26, 99, 56, 13,148,159,107,141,183, 46,101, 69, 26,101,205, 83, 43, 48, - 21,186, 42, 57, 96,191, 27, 3,167, 29,181,237,194, 81, 0,173, 57, 62, 7,125,183, 10,178, 80,216, 57,219,195,110, 90, 61,136, - 96,237,163,127,113,114,208,125, 99, 86,151,183,218, 30, 91, 15, 57,106,170,136, 95,121,230,185,200, 49,104, 26, 55, 13, 22,149, -142,227, 6,222, 15, 24,134, 1, 62, 68, 86,185,155,190, 83,231, 92, 21, 97,175,136, 13,181,214, 12,111,157,103, 17, 4, 39, 54, -101,242, 95, 59,231,184, 98, 47,138,128,244, 44,184,114,193, 33, 39,254, 34, 45, 86, 48,121,202,201, 45,133,136, 65,212,253,146, -141, 65, 70,239, 82,181, 18,167,217,193, 27,143,113, 35, 36, 57,207, 93,166,195,180,167,177,217,180,159,244,112, 50, 98,229,209, -212, 47,186,204,169,211, 22,159,119,133,231,253,152,179,182,143,140, 60,117, 3, 85,162, 85,105,104,174, 93,122,169, 21,145, 81, -183,166, 90,173, 74,187,170,150, 40,108,210,241, 59,111,216,242,103,148,136, 84, 50,123, 92,185, 80,144,248,196,182, 30, 1,241, - 3,242,202,253,251,248,224,199, 63,198, 55, 15, 46,240,232,225, 25, 95,212, 5, 54, 63, 69,201,215,196,220,175,108, 93, 17,149, -113,115,224, 33, 5,143,220,141,218,227,192, 99, 44, 70,166,243,154,193,178,143,191, 39, 21, 9, 43,160,214, 30, 67, 75, 93, 67, -230,203,157, 3,109, 26, 9,168,164,170,167,106,184,251, 49, 27,219,217,100, 45, 34,196, 65, 81, 56, 12,227,134, 63,191,215,160, - 23, 24,232, 88,148,112,171,204, 29,119, 52,202, 47, 37,163,149,140, 97, 24, 96,141,193,146, 44,246, 51,197,174, 6, 78,218,195, - 74,105,124,149, 42,198,104, 49, 14, 21,193, 91, 21,238, 8,209,204, 27, 96, 97,228,238, 56, 4,252,236,167,239,227,221,183,239, -163, 90,224,252, 98,194,149,157,176,221, 12, 24, 55, 1,199,219,128,156, 28,230, 76,163,116, 58,127, 88,141,189, 44,248,197,167, - 15,177,217, 12,188,151,183,120,235,173, 87,169,112,225,145, 45, 93,124,149, 89,224, 68,246, 41,203, 2,164, 5,109,160, 84,182, -105,183,135,171, 20,144,212,114,129, 31, 2,130,179, 8,206, 34,239,174, 81,230, 25,115,169,152,115, 67, 78,192, 89,187,198,105, - 5,218,229, 21,126,241,236, 26,183,239,121,141,230,236, 43,162,172,227, 87, 69, 19,151, 46,102, 92,150,153, 5,112,185,103,100, -163,193,175, 28, 24,114,152, 8,213,171,241,184,188, 19,234,232, 89, 19,120, 16,117,210,224,152,214,254,247,105,252,158,245,226, - 44, 44,220,211,247,223, 19,104, 70, 98,177,122, 78,116,247,169,175,243, 32,132,151, 96,154,197,126, 63, 97, 24, 6,164,133,196, - 64,162, 83, 9,222, 97, 24, 7,125,223, 8,160,226, 84, 72, 22, 98, 64,157, 22, 44,115, 70, 28,131,238,109,125,164, 6, 33, 39, -201, 33,160, 38,220,179,147,160,115,202, 91,119, 7,112, 4, 52,173, 12,120,111,234, 27,176,116,234,154,230, 70,240,152,188,175, - 45, 43,210, 82, 49,140, 1,227,134,247,227, 44,208, 51, 60, 65,162,206,159,246,194, 62, 24,245,169,239,174, 39, 24,211,176,223, - 77,180, 51, 79, 11, 26,107,117,198, 13,173, 32,136,184,103,123,214, 72,109,100,253,227,194, 66,172,106, 57,101,162,185,173,196, -174, 26,173, 45,232,217,149,131, 64, 46, 50,129,234, 84,222, 51,147, 45, 57,171, 30, 65, 71,241,102,165,167,226,241,189, 76,141, -132,199, 33,209,202,146, 16, 41,163,107,199,226,233, 16, 34,114, 78, 7,222,111, 25,243, 31, 98,135, 89,239,101, 61, 26, 42,156, - 13, 42, 14,149, 73, 79, 59,184,200, 1, 99, 59,100,200, 52,187,202,140,239, 84, 76, 29,171,211, 83, 77, 23,186, 61,204,131,177, -198,105, 66, 31,197,145, 59, 21,125, 98,117, 89,195, 64, 87,216, 26,242, 98, 59,163,194, 88,195, 43, 95, 10,151,114, 62, 96, 24, - 54,136,195, 8,239,131,174, 85, 67,136,135,153,110,214, 42,196, 77,222,125,177,115,122, 17, 32, 72, 53, 27,135,240, 18,120,159, -118,201, 26, 45,200, 59, 32,177,167, 73,183, 70, 9, 76,244, 0,133, 16,116,183, 64,135,185,213,228, 37,241,165,202, 40,125, 28, - 3, 54,155,145,136, 78,188, 47, 73,243,172,187,161,198, 81, 72,194,188, 37,239,183, 67,224, 84, 39,103,165,131, 23,200, 10,253, - 16,156,181,148,247,205, 80, 24,177,204, 20,206,248, 54, 26, 98, 67, 39,201,102, 51,232,215, 78, 26,129,176,170,182,170, 50,167, - 7, 62,160, 13,243,158, 19,227, 33, 75,238, 25,201,242,226, 59, 86,200,211,184,205,178,159,222,224,237,247,223,199,171,111,190, -139,207,127,243, 12,103,167, 87, 76,223, 90, 96,210, 35, 21, 5, 86,217,243, 8, 78, 87, 44,113,206,161, 84,135,146,232,224, 22, -219,139, 5,237,209,197, 38,100, 33,105,115,141, 61,241,134,169, 89,149, 43,253,194,122, 8,186,160,209,138, 10, 82,114, 46,152, -247,179,134,180, 24,219,208, 56,228,132,196, 51,137, 53, 3, 50, 5, 73,154,170, 39, 1, 16, 97,136, 93, 20, 98, 13,172,241,170, -150,182,214,194,242,248, 51,231,130, 92,168,115,117,206, 34,140, 35,134,113,164, 19,214, 2,184,172,136,129, 88, 7,214,208,168, - 61,115, 18,160, 5, 48,205, 52, 85,218,142, 30,251,253, 2,163,235,162,134, 31,190,113, 11,159, 61,190,196, 62,101,164, 84, 48, -207, 25,187, 41,209,250,164, 17,138,183,154,140,210, 12, 66, 48, 8, 14, 24, 96,208, 66, 84, 1, 90, 45, 21, 15,158, 93, 81,152, -203, 74,135,112,251,246, 13,174,150,169,140,137, 30,100,173, 27,131, 70,143,238, 77,192,139,165,226,250,244, 18,131, 7,124, 43, -216, 68,131, 60, 47,204, 91, 15, 40, 67, 64, 43, 25,121,218,227, 60, 37, 60,153, 19,246, 12,131, 50,245, 28,126, 54, 48,166,226, -214, 27,130, 46,229,136, 90, 25,215, 53, 40,195, 97, 89, 22,221,141,231, 76,221, 28,233, 55,186,232,168,234, 36,167,194,219,174, - 2,151,247,145,222, 85,186,144,170,116, 23,132, 58, 99,184, 75, 99, 29,133,213,189, 61,157,127, 2,167,177,108,139,229,140,238, -146, 81, 91,195,104, 54, 12, 49,137, 10,140,178, 28,242, 35, 98,209,181, 71,183,105,184, 80,161, 76,117, 31, 48, 47, 11, 9,120, -115,233, 7,190,233, 29,112, 28, 60,246,187, 25,219,163, 13,156,167, 34, 37,250, 64, 54, 59,211, 20, 11,173, 35,108,153, 30, 24, -254, 94, 45,212,237, 82,185, 75, 23, 16,148, 0,109,140,137,122,232,147,184, 13,188,162, 97,122, 93,140, 36, 46,171, 89,207, 75, -225,219,135,104, 87,211, 52, 90, 13,202,153, 81, 43, 49,190, 75,174, 61,189,144,179, 16,168,216, 42,204, 88,247,136,131, 87, 61, -147, 40,252,231, 57,241, 68, 17,168, 57,179,123,160,169,138, 93,113,175,173,155,189,100,125, 67, 17,205, 21, 41,167,213,184,124, -109, 33,230, 85,112,163,189,122,230, 41,132, 83, 53,183, 56,144, 58, 97, 83, 5,117,132,160, 96,180, 43, 84,233, 47, 93,181,129, - 69,169,153, 69,115, 77, 83,249, 76,173, 36, 66,229, 80,152, 46, 24, 51, 42, 44, 3, 23,222,224, 40,110, 81,178,215,182, 22,196, - 85, 56,190,200, 69,216, 70,120,228,118, 96,211,182, 43,160,140,136, 80, 41,195,224,165,117,184,138,221, 44,154, 41,234, 68,146, -181, 34,212,214, 86,149,150,167,155,198,202,145,229,104,108, 65,102,177, 97, 12,112,142, 20,236,162,102,143,195,160,238, 42,209, -148, 88,199,192, 34,209,123, 25,179,154, 8,203,115,221,224, 83, 42, 26,144, 66, 22,151, 76, 35,162,148, 21,148, 34,204, 99, 33, -184, 25,205, 26,150,192,136,130,138, 76, 89,232,141,195, 58, 86,251, 5,121, 1,214,213,133,176,214,157,247,154,128, 38,246,139, -204, 22,145,101, 94,116,188,219,152, 70,229,130, 99,120, 66, 83, 1,130, 96, 25,101, 23, 86, 75, 69, 81, 64,144, 81,229, 99, 63, -192, 86, 9, 78, 13,240,220, 45, 82,231, 75,163, 96,242,193, 58,180, 82,145,115,197, 48,112, 96,138,190,224,230,160, 58,135, 1, -230,169,135, 23,144, 34,215, 40,137, 45,231,130,163,227, 35,252,232,167, 63,129, 15,199,248,237,175, 31,225,226,197,142,159,162, - 75,164,233, 25,156, 39,175, 60,237,170,105,172,226, 56, 56, 66, 42,210,204,163,242,106,233, 48,169, 92,136,228,210, 52,203, 93, -156, 5, 50,242,183,134, 38, 38,114,136, 24,211,187,117, 72,160,135, 53,172, 40, 78,164,232,229, 41,131, 88, 99,140, 53,220,205, -147, 35,193,240,184, 75,248,208,173, 53,238, 26, 60,103, 95,211,222,207, 75,250,148,120,152,141,209,131,107,158, 39,228,133,138, - 24,218,135, 18, 39, 64,212,170, 37, 87,212,156,145,167, 25,182, 21,148, 37,163, 36,177, 21,145,178, 84,178,140,200, 30, 73,187, - 59, 81, 18,159,220,185,133,159,191,249, 6,254,250, 63,253, 2,198, 0, 95,124,249, 8,183,238,220,196,201,201,182,231,203, 87, - 0,169, 32,229,134,113, 28,200, 90, 85, 41,137,205, 25,131,139,139,107,252,237,223,253, 90,127, 30,181, 52,220, 56, 30,177,221, - 6,204, 11,193, 60,130,179,128, 51,112,141, 99, 39,157,131, 65,197, 29,151,112, 35,238,241,252,234, 18,159, 63,206,152,138,193, -141,173, 71,222, 95,225,249,229, 41, 54, 27,135,134, 2, 88, 22, 31,109, 26,236,145,197, 70,154,217,149,224, 38,243, 26, 74,220, - 29,133,217,217,100, 61,203,122,248,211,120,157,131, 95,248, 2, 17, 63,186, 20, 59, 48,158, 58, 22, 30,109,202,127,183, 12,131, - 66,181, 40,173, 80, 14, 4,167, 32, 30,216, 71, 69, 85,189,202,134, 22, 73,144, 6,241, 88,138, 5,149,113,253,178, 76,172,219, -233, 30, 95,222,209,241,101,235, 85,191,178, 70,109, 75,174,123,206, 9,131, 27,176, 44, 51,150, 52, 32,164,140, 56, 52,221,219, -138,119,204, 57, 96,153,103,253, 56,214, 38,254,122, 43,124,112, 10,225,107,181, 11,197,106,147,188,118,168,136,109,173, 79,209, -213, 97, 19, 75, 88,209, 81,115, 41, 4,191, 74, 75,226,194,179,147, 54,107,101,107, 87, 21,110, 57, 77, 58,197,187,109, 12, 56, - 34,213,106, 88,203, 52,205, 58, 78,151, 17,181,229,196,180, 24, 7,214, 21,208, 33,158, 19, 93,244,162, 71, 89,230,132, 6,234, -232,115,202,140,135,245, 36, 20, 13, 1,227,224,137,118,183, 20, 38, 1,250,222,105,243,101,105,184, 89,178, 44, 20,244,222,253, -255,100,189, 73,147, 36,215,189,221,121,238,232, 30,145,145,153,149, 89, 3,166, 7, 2,143, 32, 65, 82,124, 67, 83,175,219,100, -109,210,166,205,122, 39,211,162, 23,250, 52,189,225,119,235,109, 47,212,207, 36, 25, 9,129, 32, 64,176, 48, 87,229, 24,225,195, -157,122,241, 31,174, 39, 69, 51, 26, 73,176,134,204, 72,247,123,255,195, 57,191,195,157, 61,148, 56, 41,204, 11,131, 70,235, 80, - 17, 62,243,253, 32,176, 25,185, 51,160,233,127, 77,133,216, 70,233,119,124,207, 48,218, 88,138, 69,103, 27,130,247,244,207,107, -209,103, 42,165,188, 17, 98,115, 50,167,228, 76, 24,192, 62, 97,186,119, 59,152,243, 34, 6, 47, 58,142,119,182,135,181,202, 51, -169, 59,112,165,203,113, 17, 43, 26, 42,131, 13, 88,198,232,136,221,232,120,157,245, 11, 72, 44,108,110, 42, 40, 53,222,108, 50, -220, 89,212,230, 3, 11,223,232, 34, 31,134, 65,133,168,222,210, 59, 41,196, 61, 33, 65,202,136,159, 62,111,175, 77,181, 68,133, -123,202, 24,230,136, 69, 38,215,104,236, 40, 87, 95,148, 30, 22, 72,101,171,105, 95, 86,237, 35,222, 59,164,106, 55,234, 75,211, - 95, 82, 39,201,103,221, 30, 7, 85,176,146, 98, 53,142, 81,161, 35,242, 97, 81,156, 32,141,132, 67,244, 26, 39,104,216,163, 75, -255,156,241,181, 85,130, 79,248,242,227,174, 49,167,196, 15, 23, 89,220,228, 32, 18,207, 36,125,239,130,144,164, 29,205,186,214, - 39,161, 2,173, 53,134,219,208,139,228, 88,192, 32,212, 36,108, 81,127, 32,127,109,140,129,158, 46, 6,175,132,224,240,252,213, - 43,252,250,159,255, 9, 63,253,240,136,215,159,125,141,121, 78,128, 5, 76,121, 11, 91, 31, 97,130, 87, 54, 60,140,219, 64, 29, - 28,156,231, 49, 56,175, 57,200,167, 44,214, 31,143, 6,203,121,212,134, 3,104,108,167,241,241, 65,180,204,180,151, 79, 43,193, -126, 40,245,138,148,209,165, 84,172, 75,214,207,176,113,184,207,186, 36, 86,235, 23,212, 84,153,163,159, 53,222, 82,188,235,227, - 24,181,114, 23,214,187, 15, 65,167, 44, 0, 16,134,129,119,220,108,151, 91,137,235, 76, 7,150,103, 75, 97, 6,248,249,171,156, -103,110,177, 71, 91, 39,148,165,194, 25, 15,111, 65, 89, 4,173,251,113, 67,244,202, 75, 88, 20, 22,100,225,199, 61, 46,159,157, -227, 23, 63,127, 31, 95,126,245, 61,230,148,240, 95,254,191, 63,226, 31,255,225, 19, 92, 95, 93,170,168, 51, 87,131,181, 84,148, - 70,187,211,232, 45, 28,143,228,254,244,213,143,152,215,172,235, 2, 99, 12,254,254,195, 23, 24, 57, 10, 52,167,194,159, 19,173, - 63, 44, 26,144, 19,214,159,190, 87, 7,201,176,206,248,232,114,135,219,226,240,175,159,125,139,215, 63,222,225,197,115,131,119, - 71,131, 24, 58, 1,177, 85, 40, 39,162, 50, 24, 67, 1,152,146, 25,224, 26,219,140, 88,181, 94, 10,106, 43,252,110, 86, 29,107, -107,225,187, 17,205, 9,104,198,250, 17, 4, 4,176, 20,176,100, 29, 39, 48,242,255, 54, 6,182,113, 7,165, 73,101, 18, 94, 4, - 5,199,136,178, 89,172,130,116, 54, 20, 78,214,235,168,203,170,240, 14, 67, 98, 40,231,184, 75,183,128,161,137,209,202,159,149, -115, 94, 15,104, 85, 5,243,216, 59,231,130, 97, 24,122,113,185,172, 56, 89, 26,191,123,239,177, 46, 25,227,126,228, 48, 41, 67, -207,121,202,112,205, 97,220,121, 44, 75,214,176, 24,177,188, 73,132,243, 54,211, 92, 50, 25,104,245,213, 84, 51, 4, 52, 22,150, -210, 30,157, 10,220,140,172, 66, 96,171, 77, 6, 0,141, 27, 21,117,124, 90,147,186,105,248,199, 11, 99,154,250,231,173, 51,252, - 46, 53, 68,230, 77,108, 17,165, 66,128, 92,151, 68, 40, 94,142,135, 21,186,220,214,134,102,140,193, 48, 68,130,232,176,215, 94, - 2, 63,232,235, 43,155, 0, 18,202,188, 23, 93,212, 22,226, 66,170,247, 64, 26,150,232, 57, 32,203, 50,252,168, 50, 0,172,105, - 14,130,224,193,183, 19, 15,225, 16,212, 82, 0, 30, 23,115,120,184,166,107,182, 90,225, 5,158, 35, 77,135,116,230,206,111, 2, - 93, 54,197, 1,119,220,202, 9,128, 48, 73, 12,219,139,155,250,219,157,181, 40,141, 19,225, 84,131,210,243, 67,172,161,233,129, - 85,119, 17, 39,119,130,132,188,116,150, 75, 19,200, 77,155, 20,163,216, 40,227,249,239,118, 46,118, 94, 59,127,125,180,154,101, -253,136, 33, 55,135, 15,145, 73,112,129,197,227,145,147, 34,155,230, 56,200,100, 75, 10, 31, 73, 12, 5, 23,157,116, 23, 23,110, -136, 26, 5,186,148,146, 85,109, 72,213, 63,143,165, 88,165,220, 28,239,134, 69, 33, 56,120, 14, 53, 48, 88,151,202,246, 39,203, - 42,103,163, 21,154, 84,183,165, 84,142, 25,109, 79, 96,247, 80,209,138,127,114,128,213, 82,176,242, 8, 94, 18,194, 42, 67, 43, - 12,149,199,154,128,102,248, 50, 54,214,233, 15,193, 40,102,207,194, 7,171,202,206,156, 51,206, 14,123, 21, 59,136, 72,199,114, - 2, 27,189,176, 84, 1,199,129,166, 21,226,169, 20,241, 67,169, 13,196, 25,177, 24, 68, 25,206,187,105, 2,166, 4,254,126,189, -190, 64,191,254,199,127,131,139,231,175,240,197,231, 63,224,225,110, 34,111,168,171,104,137,130, 58, 68,100,147,249,176,241, 33, -240,222, 5, 10,234,111,205,110,236, 23,116,193,109,163, 93,121, 58, 10, 99,105, 28,107, 25,224, 33, 65, 19,134,149,183,214, 26, -204,211, 2,103, 41,117,204,123, 11,148,198,148,181,220, 21,210, 34,244, 97, 53,191,208,240,198, 93, 84,150,184, 80,246,172,149, -252, 95,163, 62,205,117, 93, 17, 7,254,181,214, 18,188,165,100, 44, 51,141,133,157, 53, 24,134, 1,113,136,228,113,103,168,209, -186,172,212, 53,149,140, 86, 10,230,135, 35,194,224, 96,141, 71, 13, 30, 67,244,136,193, 33, 39, 98,166,193, 91,245, 95,239, 15, -123, 92, 95,157,147,123,194, 24,148, 74,234,215, 15,222,127,133, 31,126,188, 5, 12, 9,134,190,248,226, 53,206,255,151, 3, 28, - 19,198,168, 35, 50,180,203, 46, 9, 37,122, 4, 83,241,248, 56,227,139,175,190,131, 76,179,168,107, 53,120,249,226, 74,109, 52, - 22, 84, 72, 24, 23,144,151, 5,246,238, 13, 60, 10,234, 90,200,174, 25, 60, 30,239, 19,154,205,136, 47,158,227, 87, 31,191,194, - 97,140,120,253,211, 3, 62,255,114,193, 7,239, 26,156,237, 91,135,100,176,231,220,112,208, 14, 52,250,147,220, 32,180,103, 93, -181,216,234,108,235,246, 36,190,147,198,131, 80,141, 3,159,148, 68,118,243, 3,156, 15, 12,128,225,170,223, 57,148,210, 51,155, - 75,133,146,235,176,205,119,222, 8,134,250, 69,214,189,215, 77, 25,238, 61,213, 77, 61,187,198,116, 42, 90,219,170,187,141,134, - 95,200, 89, 68, 34, 52,246, 72,171,194, 25,228, 90, 97,246,185, 15,145,167, 19, 5,243, 52, 35,196, 1,235,178,194, 24, 75,228, - 54, 99, 49,238,162,198,164, 26, 78, 25, 20,187,152,105,125,154, 40, 83,183,156, 10,133,149,160,171,155,173,170,214,161,147,192, -180, 22,181,142,201, 10, 65, 38,134,141,241,167, 33, 58,141,140, 53, 6, 88, 83,129,133,229,139,189,232, 57,228,189, 35, 26,156, - 53,132,186,229, 75,195,139,109,180, 54,181,220, 53,246,177,147,157,142,198,236,105,205, 42,220,243,236,204,145, 21, 67,136, 81, -191,102, 90,203, 84, 56, 71,147, 9,154, 40,244, 4, 54,243, 55, 17,164,149,133,112,181, 80, 46, 66,101,224, 12, 37,176,121,216, -218,161, 45,181, 62, 37,142,246,130,194,179, 32,143,158, 39,105,218, 40,161, 82, 66,160, 42, 50,175, 67, 28, 11,139, 41, 16,134, - 66,160,132,234,153,153,252, 73, 24, 98, 38,184,137, 86,137, 59,105,197,187, 90, 79, 19, 72,198,124,183,214,224, 77,251,159,162, -116,133,124,104,173, 3,228, 89,213,189,127,208,123, 76, 32, 56,134,173,139,242, 62,200, 59,106,173, 87,109,139, 15,129, 21,244, - 27, 40,145,177, 27,219,228, 8,235, 28,134,161, 91,212,188, 15,125,170,198,212,207, 24,153,131, 32,232, 39, 71, 56, 90, 69,161, -139,200,145, 87, 38, 50,138,247,243,188, 62, 21, 92,113, 85, 31, 66,208,223,108, 29,117,189,222,123,234,236,114,229,177,114, 67, -136, 30,235,146,180, 82,144, 31,170,116,214,104,128, 9,134, 3, 70,250, 56,183, 54,131,253, 46,176,186,207,243,104,138, 46, 3, -241, 92, 22, 30, 99, 89,103, 17,140,213, 8,121,194, 67, 22, 61,100, 41,238,177, 41,209,136,194, 68,162, 10,196, 68,248, 51,178, -160, 70,192, 14, 21, 44,174,226,234,186, 85, 22,138,240,131, 35, 2,158,224,141, 42, 48,189,167, 17,150,149, 8,213, 6,206, 64, -175, 26, 2,129, 70, 2,187,195,249, 1,191,249,221, 63, 97,158,129, 63,255,143,239,112, 58, 46,244,162, 96, 66, 41,119, 88,215, - 69,137,125,118,227, 6,144, 56, 90,218, 35, 49,117,139,163, 32,101,185, 35, 47,182, 32,114,101, 12, 90, 57, 2,113,149,200,199, -141, 37,145, 70,168,178,135,205, 42,134,179,155,206,144,246,136,149,139,140,204, 65, 21,108, 71,100,170,148,139, 65,173,106, 96, -136, 71,227,226,131,132,135,212, 9, 56,231,144,121,135,159, 88,141, 94, 75,198, 48,208, 65, 43, 54, 56, 57,144, 72, 79,208,176, - 46, 11, 12, 40,169,106, 58, 2, 67,141, 48, 94,248,217,145,166, 31,251,161, 83,189,156, 1,140,195, 60, 77, 28, 8, 67, 66,169, -196, 84,180, 97, 28,240,226,249, 37,126,248,241, 6,198, 90,220, 61, 28,241,167,207,191,198,167,159,126,196, 17,147, 52, 46,207, -137, 70,231,203, 90,176,162,225, 15,159,191,198,196,227, 81,207,157,195,232, 12,230,251,123,188,110,100,211, 26, 7, 15,148,134, -211,241,132,188, 44, 40, 55,143,112,140,197,141,214, 34,160, 98, 56,219,195, 94, 95, 97, 89, 19,206,246, 3, 62,254,240, 5,158, - 95,159,227,203,111,239,240,249,151,111,113,182,207,120,255, 29,139, 33, 54,205,147, 22,140,177,240,208,181,235,110, 77, 57, 7, -242, 51,104,173,118,235, 14,156,238, 21,141,221,112,177,121,223,106, 93,132,143, 35,125,150, 78,222,111,143,194,120, 78,195, 0, -158, 46,122,100, 78,127,109, 27, 65,155,172,120,122,241,188,245,185,131,119,234,194,164,246, 62, 48,126, 19, 61,225,175, 85,180, -156, 88,174, 74, 19,175,234,158,194, 70, 36, 92, 73,138, 93,114, 71,208,138,136,162,159,169, 91,111,205, 32,156, 7, 22, 4,210, -249,224, 60,137,235,140, 21,228,107, 96, 12,110,198,110, 79, 10,244, 16,157,194, 21, 8,114,227,245, 98,183,220,200,164,181,162, -114,190, 4, 26,241, 5,104,167, 95, 24, 34,197, 90,149,210, 54,201, 92, 22,205,242, 4,135,241,161, 50,221, 40, 28, 11, 13,181, -223, 66, 25,237,130,118, 37,173, 78,209, 46, 87, 58,230,146,139, 78, 48,107,173, 12,128,178,204,197,183, 8,134,154, 35, 87,248, -121,112,178, 91,166,213, 37,117,127,235,230,179,165,159, 79, 74,153, 18, 38, 53, 74,153,190,214,186,172,106,149, 34,220, 52, 20, - 6,180,166,194,147,197,170,197,142,184,102,172, 19, 62, 63,180,187,150,194,175,150,170,201,126, 49, 4, 22,151,102, 56, 7,213, - 50, 37,190, 43, 44,231, 87,196, 24,121,239,238,121,197,211, 21,234, 34,154,147, 92,121, 3, 11, 23,232,130,115, 62,114,230, 64, -161,213, 46,107,160,208,168,201,144, 28, 12,217,255,211, 25,151, 24,172, 22, 58, 45, 81,154, 62,190,168,173,115, 26,169, 43, 5, -148, 56, 11,196, 21, 37, 8, 89, 18, 24, 6,206, 66,176,164,247,112, 30,113,160,119,208,135,216,193, 76, 34,176,227,191,175, 54, -240,148, 69, 80,185,134,181, 17,153,255, 94,108,144,184, 77, 11, 51, 47,213,125,143,202, 4, 89, 54, 74,209,212, 49, 82,170,179, -138,177,213, 13, 70, 15, 79,136,115,138, 41,172, 93,214, 47, 47,127,223,173,178, 77,134, 63, 8,231,221,147,164, 27,231,136,115, -188,240, 40,201,109, 70, 66, 82, 41,202, 15,191, 53,249, 6,125,183,206,242,191,107,227,151, 7,134,241,175, 77, 3, 39, 28,239, -182,188, 35, 76,105,140,129,187,186,214,133, 33,172,252,165, 81,110,120, 98,107,144,245,132, 19,171,128,207, 0, 0, 32, 0, 73, - 68, 65, 84,140,172, 83,202, 12,218,112,140,234,115,248,229,111, 63,197,187,127,247, 51,188,254,203, 27,220,221, 30, 49, 77,116, - 97,181,245, 6, 41, 79,155,168, 82,170,196, 36, 84, 71,126, 68,194,109, 54,155, 84, 33, 23, 44, 11,217,232, 97,166,106,155, 48, -145,109, 3,233,177,198, 32,215,138,102, 28,251,234, 45, 31, 72,153, 39, 28,165,239,126,152,152, 37,196, 49, 81,180,147,150,194, - 41,111, 64,178,228,173,226, 60,153,190,197,149,172,136,102,228,231,106,157,195, 50, 51,109,176, 36,180, 86, 48, 12, 17,118, 8, -253, 66, 41,148, 49, 13, 80,188,169, 32, 37, 5, 56,100, 93,195,227,154, 17,134,136,161, 26, 28,108, 69, 43, 11,108, 24, 81, 29, -217,217,106, 93,145,171,135, 9,236, 93,118, 22,185,208, 88,106, 89, 18, 33, 94, 1,188,247,222, 11,188,189,121,160, 3, 3, 6, -175,191,249, 17, 47,174, 47,240,236,250, 18,165, 53,162, 72, 49,121,173,149,134,239,190,125,131,175, 95,255,168, 57, 8, 11, 43, -185,127,243,238, 51, 92,180, 5,109,126,192,177,156,227,254, 56,195,151,132, 56,142,132, 50,117, 30,199, 57, 99,201, 25,103,227, -128,203,203, 11,156, 95,157, 83,238,244, 58,227,244, 56, 51,224, 39,226,147,143, 94,225,213,203,103,248,235,235, 31,240, 95,255, -240, 19,222,121, 1,188,122, 81,213, 18, 73,133,178,221,140,208,229,249,112,202,161,110, 48,104,178,187,227,119, 82, 83,209,120, - 87,218, 4, 81,105, 28, 92, 28, 20,127, 76,187,245, 30,135,209, 32, 52,186, 46,114,149,113,167,236, 49, 53,195,186, 1,153,187, -113, 73,137,170,173,231, 99,135, 32,211,128,190,103,109,220,165, 89, 67,201,133, 82,252, 9,131,161,182,250,132, 10, 73,251,235, -117,163, 20,230, 24,225,156,116, 4, 95, 61,209,250,214, 53,209,222, 84,227,100, 9, 68, 51,157, 22,154, 46,193, 32,240,251,179, - 44, 89, 41,147,146, 76,233,125, 96,158, 61,233,106,150,185, 42,186, 86,186,195, 92,196,199, 79,207, 68, 8, 94, 67,174, 74,102, - 39,136, 88,175, 76, 67, 12, 35,101, 0,112,183, 22,130, 71,243,224, 9, 66,208,238,222,123,139,148,171,254,156, 41, 5,109,225, -213, 71,227,110, 60,169,246, 73,136,148,158,191,119,250,249, 64,155, 32,137,179,174, 27,228,174, 76, 53, 37,181, 78, 10, 18,199, -221,253, 60,175,220, 45,246,159, 47,237,119, 59,195, 63, 21,130,120,209,121,156,148,208,231,131,131, 85,189, 18, 52, 58,148,109, -216, 26,252, 67,187,109,249,253, 85, 21,247,158,115, 15,228,126,160,243,150,159, 41,113, 71,100,131,230,106,215,219,148,218,131, - 83,140,164, 20,118,107,181, 20,172,205, 84, 5,213,100, 46, 40,132, 94, 23,188, 85, 48,144,124,207, 62, 16, 68,205,122,211,105, -139, 16, 62, 73,212,149, 19, 77,137,200,169, 32, 58, 17,249,121,161, 85,130, 41,161, 11,247, 66,136,136, 60,102, 15,113, 96,253, - 26,219,247, 42, 97,202, 5, 1, 78,217, 11,133,158,103,141,219,237,182,115,157,120, 85,104, 17,190,181, 17,122,241, 47, 75, 55, -103,116, 71, 98, 17,120, 28, 42, 88, 84, 9, 61, 41,185,104, 62,120,101,143,113, 31,141,144, 20, 93,133, 12,214,168,224, 3,155, - 88, 68, 1,222,232, 62,149, 97, 15,101, 45,188,131, 19,186, 89,207, 25,119,156,182, 36, 24, 82, 31,130, 50,206,197,122, 34, 35, -114,201, 4,150,157, 28, 85,246,196, 70,151, 23,149, 66, 79, 24, 7,201,226, 48, 99,193,126,217,140,113, 63,108,148,231, 84, 20, -120, 79, 96, 5, 17,254,229,210,233, 73, 21, 13,207, 46, 47,240,143,255,235, 63, 35,103,143,207,255,248, 13,142, 15, 51,201,135, -234,130,117,122,131,156, 87,245, 24, 38,169,118,165,160,241, 14,105,233,190,211, 45, 30,209, 5,203,150, 19, 2,203,108, 69,108, - 66,175, 43,153,170,222, 34,185,109, 27, 59,139, 40, 82,201,158,102,224,157,168,119, 51,123,206, 13,182, 89,132,214, 89, 26, 79, - 6, 71, 99,192, 84,186,192,168,201,225,236,121,228, 5,190,132,157,166, 28,229,180, 18, 92,131,149,255,227,110,212,244, 54,131, -198,123, 63, 48, 27,158, 10,132,202,191,222, 90,131,102, 44,134,193, 2,222, 96,134,131, 3, 5,100,216, 24, 81, 42,129, 97,156, -247,104, 41,193,249,136, 52, 79,200,137,201,115, 67,196,154, 50, 30, 30, 79,184, 78,207,200, 18,231, 3, 66,160,221,109,229,206, -231,171,175,191,199,249,229, 57,127, 93, 70, 47,206,148, 18,254,244,197,107,204, 75,210,159, 77,173, 13, 67,244,184, 62,219,195, -186,128,118,241, 12, 23,129,132,138,211,100,241,230, 97,161, 3,106,124,134, 22, 43, 60, 26,166,218, 80,178,195,114,115,196,203, - 23,231, 24,118, 59,236,198, 1,203, 60,225, 44, 85,204, 75,193,213, 33,224,157,203, 15, 17,208,240,245,247, 95,226,234,210,115, - 71,203,187,100,238,152,173, 13,155, 3,138, 14,110,122,254, 10,123,138, 83,199, 86,162,241,126,144,195,116,156,131,113,145, 14, -207, 40,163, 62,166,204, 89,162, 68, 54, 88, 29, 51, 82,195,198, 42,222,214,199,250, 52,202,124,138,100,174,133,199,213,220,137, -196, 24, 81,107,210, 51,196,216, 30, 8, 83,121,180, 46,194,174,190, 95,183, 40,101, 85,210,100,183,167,241, 37,205, 28, 13, 89, - 37,209,197,150,250,122, 47, 23, 46, 14,192,233,130,188,119,102,231, 74, 98, 90, 96, 90, 57, 2,185, 26, 45,136,233, 32,183,172, - 20,175,154, 13, 64, 63,119, 78,105, 51,134,201,115, 12,249, 48, 36,140,148,115,108,183, 11, 0, 67,158, 4,141, 45,123, 49, 73, - 76, 35, 95,124,213,117,158,132,117,212, 90, 49,207, 25, 0, 21, 5, 6,204,168,135,193,124, 90,158, 40,252,201,206,216,244, 89, - 21, 8,215,186,100,205,210, 46, 60, 61, 20,189,143, 54, 40,156, 60, 86,152,113, 17,249, 28, 55,214,160, 26,138,168, 93,150,132, - 33,146, 63,157,114, 59,130, 66,181,106, 45,136,135,208,213,252,134, 47, 53, 67,207,153, 9, 78, 47, 98,209, 3, 73,156,173, 76, - 9, 37, 68, 73,248,248,222, 56,178,238, 90, 42, 60, 56,249, 9,168,194, 86, 55,122, 7,208,228,222,193,243,126,221,218,214,215, - 63,146, 96, 87, 55,204, 6, 88, 21, 99,155,237,196, 73, 86,195, 18,236,130,190, 27,239,112,157,210,249,249, 60, 45, 34,140,180, -121,178,138,245,124, 31,136, 75, 44,231,196, 5,179,164,178,113,250,164,115, 24,199,145,173,138, 94,223,225,221, 46,240,221,100, -212, 89, 35, 19,178, 32, 29,122, 41,186,166,174,149,252,202, 91,237,147, 52,218, 50,126,207, 57,195,253, 95,255,199,191,251,189, - 30,210, 60, 78, 13,161,219,218,196,107, 44, 22, 18,211,249,247,170,156,236,142,250,166,136, 60,233, 2, 5, 92, 34, 41, 55,149, -149,148,206,147, 63,253,236,252,128,221,217,158, 96, 29,173,162,150,132,227,195, 35, 78,199,147,118,137,173,161, 11, 85,244,165, -103, 47,168,181, 93,120,231,136,163, 44, 48, 11, 65,231,201,142, 78, 67, 35, 90,231, 42,123,183, 77,113,163,203, 93, 86,195,154, - 19,189, 17,104,144,104,167,104,104, 6,105, 13,200,195,249,233, 63,252, 10,191,252,237,111,241,230,199, 19,190,251,230, 45,166, -211,138,101, 73, 48,237, 17,121,190, 81, 18,147,248,218, 37,130, 84,160, 19, 0, 16,163,231,142,166,231, 70,147, 5, 4, 26,115, -168,180,170,156,137, 9, 93, 50,171,214, 51,167, 20, 22,245,144,182,218,119, 50,107, 42, 79,246,174,206, 25, 44, 75,162,145, 88, - 12,172,164,119, 90, 81,123,206,186, 87, 6,113,173, 28,144,195, 98, 68, 17,166,152,174, 81, 88,151, 5,133,237, 84,180, 91, 11, -136, 49,106, 58,147,112,229,193,130,185,198,158,209,154,187,112,199,216,158,204,117,115,211,168, 19,151, 10, 53, 14,176, 62,114, - 42, 88, 3,156,167, 32,147,105, 66, 78, 43,126,188, 57,234,133, 40,154, 2, 41,124, 74, 41,120,120,156, 52,192, 40,165,140,146, - 10,174,159, 95, 18, 1,174, 82,177,241,199,207,190,194, 15, 63,221,232,179,180,205,103,246,214,224,253, 95,126,132,243,235,103, - 36,172, 76,212,105,158,159, 69, 56,239,112, 60,173, 56, 46, 5,143,115,193,244,120,194,242,112,143, 99,106, 88, 50,253, 20,188, - 51,136, 40,216, 69,139,193,145,205,237,176,115,120,253,205, 13,236,112,143,221,222,179,173,203,195,249, 64,187, 65, 22,239,200, -136,174, 25,153,162,128, 51, 5, 68,177, 43, 29, 57, 77,126, 72, 80, 73,145,140,148,230,228,213,191,171,105,120, 13,156,249, 96, - 53, 58, 56, 51,171, 91, 67, 73,180,232,169, 10, 84,146,231,214, 7,175,144,170,200,161, 43,242,247,234, 59,226,236,147, 61,188, - 60, 43, 91,173, 0,133,155,172,202,159,151,216,222,109,222,181,176, 39, 0, 80, 94, 67, 8,188, 91, 37,165, 57,109, 15,123,178, -164,240,202,141,225, 28,113,208,186,144,240,176, 77, 5, 72,130,173,205,153,247,159,214,161, 39, 55, 27,190,144, 26,211,230, 40, - 51,220, 5,130,246,200,122,128,220, 23,252,217,112, 65,227, 3,141,247, 61,195,183,200, 82, 10,238, 20,171, 98,139,165,251,204, - 41,211, 72, 93, 68,101, 34,142,171,155, 11,172,245,190, 77,214, 97, 34, 68, 51,154, 43, 14, 29,225, 74,238,129,132,170,136, 35, - 98,139,136,150,239, 85,214,165,214,116,155,150, 60, 51,206,219,190,175, 54, 93,105,237,172,131, 15,158,139, 13, 14, 18,226,251, -196,104, 81, 97, 56, 69,206,233,186, 83,254, 44,105, 18,212,174,198,231,184, 8, 14, 27, 71, 89, 27, 22, 12,169, 94,137, 93, 0, -186,178,100,225,181,172, 63,132,102, 42,133,186, 8,228,250, 3,213,221, 21,248, 27,173,136,217,188, 35,134, 47,114,253,103,130, -228,118, 60, 37, 97, 13,151,128,213,140,104,195, 12, 16, 60, 57,122,198,113,143, 16, 40, 82,218, 49, 53, 53,196,200,246,210, 30, -129, 28, 56, 29,207,108,214,225, 58,218,175, 61, 94,188, 42,226,119,139, 28, 38,171,113, 78, 25,126, 27, 83,183, 77,224,161,221, -148,231, 31, 82, 85,192, 64, 45, 4,163,113,252,131, 41,188, 99, 65,166,109,135,247, 22,235,188, 62,169,184, 21, 95, 89,133, 66, - 71, 86, 9,121, 32,232, 67,239, 73, 88,180,175,234, 88, 65,218, 47, 52, 29,197,203, 15, 86, 30,116, 10, 41,160,174, 89,132, 39, -178,119, 33, 33, 68,101,129, 66,120, 50,145,144, 48, 2,233, 58, 82,206,138,187, 44, 60, 46,164, 2,132, 70,116, 82, 33, 5, 86, -129,138,178,125,183,223,227,183,191,251, 71, 24, 59,224,203,207,191,199,178,144, 45,204,154,140,150,126, 68,181, 96, 69,101,211, - 61, 76, 41, 25,222,137,130,145, 4, 27,198,178,146,181, 54,192, 83,156, 98, 78,130,236,132,138, 91, 84,169,107, 45,150,105, 70, - 67,223,187, 74, 5,175,145,179, 27,214,176, 76, 82,132,142,183,174, 61,186,209,160, 33, 12,129,253,251,172, 66, 70, 3,204,198, - 71, 44,160,157,210, 89,231,212, 53, 17,137,110, 93, 87,180, 74, 99, 45, 31,168, 51,118,210, 85, 88,192, 26,222, 89,169, 61,140, - 38, 28,121, 93,225,120,151, 28,152,143, 15,182, 0, 93, 28, 86,148,182,224,108,231,144,203,136,106, 61, 76,107, 72, 28,164, 97, - 26,193,105,170, 37,188,171, 42,122,185,128,250,230,187,159,250,174, 23, 6,145, 15, 21,114, 19, 84,124,253,205,143, 24,199,136, -151, 47,175, 0, 0, 15, 15, 71,124,245,151,239,117,228,213,197, 69, 6, 25,192,127,251,235, 91,220,150,207,240,191,253,203,175, -112,113, 24,176, 27, 3,188, 51,120,124,152, 97,106,193, 59,215, 59,164, 84,112,255,184,224,135,219, 19,150,227, 17,102, 74,184, -185, 95,240,221, 16,112,125,112,120,177, 51,120,113,189,199,225, 44,226,124, 28,113, 92, 43,126,184,191,193,123,127,119, 64, 5, -117, 90,198,145, 11, 66,102,156,181, 54, 24,231, 53,226, 81, 52, 16,114,224, 72,247,208,227, 28, 29, 83,203,118, 90,212,218, 13, - 35, 66,214, 77,141,199,150, 41, 17, 20, 39,103,194,111, 10,153, 16,108, 91,106,252, 12, 57,239,217,202,100,117,151, 71,103,101, -225,115, 66,118,200, 77,197,176,138, 60,101,104,134, 90,235,248, 10,202, 57, 81, 3, 80, 73,125, 92, 75,226,253,105, 87,165,139, -117,135, 44, 77,129,243,191, 51, 92, 33,123,172, 49,132,230,117,142,158,217, 24, 27,154, 1,188, 37, 26,219,184,139,152, 25,245, -234,156, 67,110,188, 58,224,238,213, 7,186, 60, 99,244, 61, 64,195, 18,101,172, 22,106, 0, 4,134, 99,189,133,105,244, 94, 73, -209, 83,114,213,189,174,117, 30, 48,155,108, 6,235, 0,111, 54,208, 20,106, 48,116, 44,110,128,233,180,112,163, 98, 52,133, 79, - 58, 92,177, 50,146, 53,205,195,114,209, 51, 24, 78, 19, 84,188, 43, 96,188, 67,128, 81,142,132,115, 3, 82, 42, 24,134,192,223, - 63, 84,244, 41, 13,131,172,251,228, 44,165, 71,169,146, 66,154,159, 53, 29,237, 6,175, 14, 24,209,253,208, 56,154, 47, 80,112, - 18, 93, 41, 92,204, 73, 74, 95,247,250,211, 52,167,106,186,166, 76,135,115,202,202,228,247,188,250,163, 64, 30, 18,165,134, 96, -250,250, 38,103,250,179,109,239,197,107,165,159, 35,229,188,131, 73,155,109,243,188, 1,141,139,107, 89,105,202, 69, 45,217,240, -164, 92, 39,254, 63, 24,137, 46,147, 49,203,130,108, 33, 46, 26, 67,120,115, 34, 14, 70, 20, 91, 52,197, 45,176, 85, 59, 14, 3, - 35,108,173,166,123, 90,102,190, 8,140,169, 55,155, 29, 30,230,189, 81, 69,124,229,208, 29,231,232,231,186,213,218, 72, 12,118, - 46, 52, 61,159,167, 19,220,127,252,223,127,247,251, 14, 14, 49,204, 78,182,221, 38,192,212,167,200,241,152, 61,126,145,252,221, -216,196,233, 9, 59, 93,211,148,248,226, 33,204,169,211,133,183, 84, 96,135,243, 3,226,184,195,176, 27, 57, 68,100, 37,213,123, - 73,152, 78,179,142,115, 4,136, 32,151,186,247, 94, 11, 2, 57,172, 74,105,154,241, 43, 30, 76, 57,204, 40,248,161, 83,160,228, - 5, 21,207, 55, 9,173,192, 17,163,150,187, 85,203,127,167, 60,232,252, 33, 87,217, 27, 83, 69,245,209, 39, 31,227,211,127,250, - 7,188,125,115,194,235,191,252,132,121, 78, 52,242, 94,110, 81,214,187,205,174,198,179, 0,199,178, 13,164,103,175, 91,103,144, -214, 2, 52,178,238,104,130, 25, 92, 79,168,226,149, 3,219, 62,159,194, 41, 10,129, 84,200, 19,219, 39, 19,226,189,239,163, 29, -232, 5, 45, 15,130, 88, 18,229,192,183,108, 85,244,161,143,214,219, 38, 42,178,199,201, 26,166, 84, 37,130, 93,228,164,145,170, -148,201, 76,249,206,194,225, 22, 47,171, 40, 81, 11, 17,129,128, 86,116,180,234, 57,181,201,113,119,128, 86,241,236,210,225,217, -101,197,217, 89,197,215, 95, 79,128,137,216,159,237, 54,250, 6, 32, 45, 43,144, 19,210,154,112,243,184,244,244,176,141,103,184, - 20, 2, 29, 45,108,211, 91, 57, 78,182,148,130,239,127,184,193, 24, 60, 46, 47, 15,240,222, 97,136, 30,111,111, 30,116,229, 51, - 50, 49,174,176,246,228, 52,205,248,252, 79,223,160,228,138,139,203,115, 88, 31,129, 86,176,174, 5,165, 1,231,187,128, 23,229, - 30, 87, 54,195, 22,201,125,247,152, 83,198,237,195,132,219, 83,198, 52,103,196,224, 48,236, 6,252,225,243,239,240,246,244, 35, -118,103,148,133, 64, 10,109,199, 99,112,240,104,188,109, 0, 80, 77,149,196, 26,155,204, 87,172, 15, 17,206, 71,132, 97, 71, 7, - 10,143, 67,229,215,168,106, 23,146, 71, 13, 21,174,233,248,120, 3, 19, 81,157, 72, 12,186,235,220,170,230,181,123,100,152,143, -236,100,233,107,241, 79,186, 32,235, 68,171,147,153, 93,145, 84,205, 46, 66,187, 90,178, 22,169,212,209,231, 77,172, 39,141, 57, -233, 48, 29, 24,112,228,144, 75,227,184, 92,195, 42,126, 25, 75, 23, 45, 12, 74,237,234,111, 65, 46,131, 27, 6,114,216,108, 11, - 21,251, 4,241,188,172,148, 99,208, 41, 34, 70, 39,143,146, 4, 41, 96, 17,107, 45,196, 38, 44, 99, 86,180,166, 29,186,100,199, -151, 34, 40,217,242,100, 26, 34,251, 95,233,134,229,130, 18, 2,167, 48, 10,228,103, 42, 29,170,236,147, 5,207, 45,194, 94,122, -110,168,179, 29,134,160,231,181, 20, 13,162, 23,210,125, 56,255,255,137,181, 57, 78, 66,189,148,133, 15,237,162,221, 70,103, 33, - 92, 12,233, 50,131,239, 63,123,185,248, 37, 29, 78, 57,246,102,251,247,218, 77,131,230, 53,146,187, 71,131, 91, 93, 47, 25,118, -182,200,231,133, 77,154,166,174, 44,237, 86,196,217,116,109, 98, 45, 51, 73,140,237,150,203,210, 87, 26, 98,239,243,142, 86,149, -244, 14, 89,165,232, 25, 93,169,112, 54, 61, 79,161, 75,233, 88,106,239, 29,134,145,222, 63,185, 11,133,197, 2,112,145, 39, 4, - 67,207, 19, 55,177, 21,110, 66,212, 4,136,195, 92, 60,205, 14,161,149,234,170, 54,207,101, 89,144,214, 21,243, 52,209, 10,224, - 63,253,135,127,249,125,230,209, 17, 12,158, 84,242, 20,147, 71,221,155,136, 68,104,148, 84,186, 39,220,117,145,142,124, 33,234, -101, 55,125,252, 34, 76,100, 45, 30,124,192,254,112,134,253,225, 12,214, 5,238, 0, 19,230,105,194,116, 60,177, 32,175, 63,236, - 82,181, 8,208,222,108,144,129,134, 21,160,149,121,188,148, 33,110, 53, 87, 92,138, 10,185,224, 12,191,120, 29,221,138,190,106, -240, 76, 54,242, 86, 31,200, 56, 4,142, 56,108,234,113,191,184,188,196, 63,255,187,127,139, 56,158,227,155,191,190,193,221,205, - 17,185, 52, 88,155, 81,211, 45, 90, 89, 20,123,219,179,132,155,194,105,232, 0,171, 61,229,138, 53, 1,195, 16,153,131,205, 34, - 35,142,132,149,145,170, 40, 84,193, 65, 30, 10, 2,105, 82, 60, 56, 70,244,114, 5,206,214,152,218,216,211, 92, 68,213, 78,127, - 23,172, 97, 68,175, 35,244,230,102, 95,215,106,101,181,104, 83, 90,145,198, 76,182, 70,225, 45,188,138, 31, 98, 64,140, 68, 7, -180, 28,229,216,116,125, 66,137, 91, 84,145, 74, 84,104, 34,229, 44, 23, 36,157, 94, 37,138, 90,225, 56,211,248,118, 93, 13, 94, -127,103,113,125,125,213,167, 16,155, 41, 83,157,103, 56,103,113,127, 90,186, 21,167,246,181, 82,173,141,152,215,236, 41,110,181, -113,167, 68,118, 29, 3,224,157, 87,207,225,172,197,179,171, 3,110,111, 30,144, 75,213, 68,169, 79,222, 37, 27,219,227,156,176, -172,212,213,126,251,253, 13,190,250,234, 7, 60,187, 60,199,225,226, 28,185, 20, 76,247, 15,184,249,254, 45,230,187, 7, 92, 12, - 1,239, 62,219,225,114,116, 48,243,132, 22, 3,224, 60,110,239, 38,124,253,221, 91,252,229,219,183,120,253,221, 91,124,246,245, - 55,184,122,110,117,204,172, 11, 82, 81, 82,111, 32, 62,219,142,187,178,101,137,132,167, 14,158,197,105, 46, 4,114, 69,240, 37, -228,172,211, 14, 67, 15, 63, 64, 39,114,244,156, 84, 26,187,243,216,145,242,218,253,166,147,226,231,139, 11, 64, 17,214,138, 8, -140,214, 69,229, 9, 91,189,255,190,250, 36,230,178, 54, 10,254,145,112,139,158, 94,198,228, 52,201,125,231, 49,182,236, 40,131, - 31,200,199,107,105, 45,225,125,164,174,152, 51,226, 27,140,158, 25, 50,146, 20,200, 82, 45,141,139,118,163, 19, 68,233,216, 10, -211,211, 66,244,228, 11,230,230, 68, 50, 22, 42,107, 87,164,155,173,165, 7,167, 72,177, 34,135,183,211, 29,107,223,157,211,106, -173,105, 16, 18,208,176, 44,153,166, 87,182, 7,128, 56, 71,123,231, 90,170,198, 87, 91, 99, 85,252, 85, 10,137,163, 66,240,218, -245, 9, 40, 71, 46, 26,203, 52, 77,203,150,216, 97,140,155, 36, 74,240,153,226, 85,160,214, 54, 41,151,146,166, 39, 13, 77,201, -133,206, 52,137,222,102, 27,165,116,220, 93, 96,109, 85,184,187, 45, 16, 84,244,182,129,192,168,231,158,115, 43, 10,171,219,155, - 98,101,187,240,204, 74,225, 34,251,117,254, 26,122,195,229, 54,147, 15,167,127,175,147,180,182, 77,236,175,172, 5,104, 39, 15, -157, 58, 90,231,217, 18,109,251,215,197,191,111, 24, 7, 22,179, 25,109, 40,123, 40, 77, 7, 36,201,185,238, 57, 53,141,226, 81, -131,134,150,201, 89,188,253, 51, 36,111, 94,255, 44,211,109,159,194, 70, 16,171,110, 90,201,241, 64, 5, 36, 21,188,203,178, 32, -151,140,121,158, 48,207,243,230,125, 50,112,255,241,223,255,238,247, 82, 5,201,142, 71,108, 9,210,197,210,195,212,244,131, 16, - 27,141, 36, 8,201, 15, 76, 30, 28,129,129,200,126,161,109,190,113, 17, 2,140,187, 29,118,103,103, 8,113, 32,155, 82,109, 72, -235,130,180, 44, 88,230,153, 83,126, 8, 29, 43,222,113,101,230,242, 72, 75, 58, 75,113,184, 71, 70,184,170, 77,137, 3, 14,228, - 96,146, 23, 79,126, 28,242, 80,232,195,238,122,119, 46, 31, 62,117, 27, 70,171,167, 16, 3, 62,253,135, 95,225,103,191,248,132, - 64, 50,127,249, 9,243,180,162,212, 2, 83, 31,145,151, 59, 46,114,232,207, 24, 71, 26,127,201,138, 64, 14, 81, 65,200, 86, 14, -224, 16, 75,155,227, 23, 86, 94, 98,241,207, 55,209, 52, 24, 9,231, 40,170,248, 23,181, 43,209,170, 82, 71, 8,242, 97,187, 44, - 9,105, 93,121, 36,214,167, 49, 77,117, 3, 68,139,147,221,166,225,164, 58, 65,119,138,149, 74, 8, 78, 57, 37,212, 74, 9,109, -222, 89,236,198,129,196, 64,178,251,130, 81, 75,160, 0,137,104,247,152,144, 87, 18,208, 53,238,218,173,231, 17, 61,103,162,123, - 79,209,162, 82, 81,139,130,247,135, 31, 42,230, 57,226,226,226,160, 89,222, 82,112,120,111,225, 76, 65, 53, 22, 63,188,121,160, -206, 77, 81,138,192, 3, 43,206, 73, 36, 67,190,242,221,224,241,226,234,128,143,127,246, 46,126,241,201, 7,120,255,253,151,156, -126, 68, 83,131,253,110,192,235,111,223,208, 36, 32, 87, 92,158, 69,252,226,253,231, 24, 7,143,183, 15, 19, 61,175,185,224, 56, - 45,248,252,139,191,226,244, 56,225,252,108,192, 89, 58,193,181,130, 92, 43,222, 78, 25,183,143, 9,209, 2,239,156, 7,188,250, -224, 26,247,199, 21,127,252,242, 43,188,243,110,198,225,178,160,186, 9,135, 11, 3,235,249, 93,105, 61, 37, 75, 14, 36,162,193, -113,127,205,187, 78,218,205,141,244,249,249,168,104, 73,121,214, 73,212,233,187,208,175,209, 8, 47,179,214, 1, 74,173, 99, 36, -105,237,132, 71, 93,213,216,254,115,160,206,155, 49,155,214,104,142,122, 46,153, 11, 14,209,206,180,158, 11,109,122, 7, 34, 99, -208,148,215, 13,216, 3,170,120,151,213, 28,121,211,139,162,102,213,194,233, 7, 24,227, 97, 93, 64,173, 22, 67, 28, 73,176,216, - 28, 39, 17, 54, 38,223,245, 85,162, 60,183,141,109,106,162, 29, 50, 12,212, 34, 34, 34,169,207, 67,244, 26, 70,211,152, 0, 41, -211, 60,161,117,213, 90, 56, 74,117, 75,158,131,226,170, 59,135, 99,115, 40,163,103, 68, 57, 47, 86,175,166, 74,117,225,165, 59, -239, 48,157, 40,180,200, 88, 65,110, 55, 12, 99,196,202,226,217, 30,250, 34, 97, 61,208,194, 74, 10, 87, 13,113, 98,207,127,103, -133, 27,221,123,247,240, 21,241,211,123, 94, 31,152, 39, 34,172, 97, 8, 12,197,177, 12,190,162, 66,200,234, 69,212, 5, 92, 50, - 17,139, 49, 32,165, 14,168,162,241, 53, 52, 50, 87,139, 31,231, 84, 0, 40,121, 20, 98, 95,150,247,159,108,213, 86, 57, 10, 82, -108, 58,134,114,216, 77,194,167, 32,104, 45, 95,238,181, 54,189,220, 69,215,161,133,190,216,207, 76, 47, 98,244,207,116,142,243, -202, 61, 79, 56, 28,130, 15,122, 95,200,121,180,253, 87, 23,112, 27,156,157,157,241,154,151, 26, 96,103,123,216,150,232, 59, 26, -136,139, 96, 88,148,217,116,218,252, 84, 20,151,185,233, 16,103,146,208, 35,167,105, 66, 90, 23,172,203,204,241,228, 80,174, 9, - 26,224,254,211,127,248,183,191, 23,208, 76, 46, 89,171, 48, 33,104, 9, 56,166, 87, 21,237,137,197, 77,118,102,242,205,118, 33, -196,255,236,185,150,241, 13,117, 1, 84,209,236, 15,103,186, 31,111, 53, 99, 58, 30,241,248,112,212, 42,197, 40, 51,215, 62,169, -240,104, 28, 38,170, 70, 9,101,233,187,211, 97,140,106, 47, 35, 53,123,211,162,131,252,234,246, 73, 58,209, 54, 43,119,251, 32, -201,238, 3, 13,120,249,222, 43,252,246,119,255,132, 82, 60,254,242,231, 31,112,123,115,228,241,208,130,154,110, 80,107,194, 56, - 70, 86,181, 59,245,111, 58, 70,253,129, 31,166,156, 50,219, 98,170, 90, 57,156, 51,172,196,183,156,107,110,181,203, 17,114, 31, -133, 66,100, 85, 59,110,139,149,204,163,248, 45, 12,164, 53,250,245, 96, 49,154,247,114, 33,208,180,195, 57,171, 35, 83,199,226, - 39,217,129, 75, 68,103,211, 52,173,218, 73, 78,150,104,124,250,159, 82,129, 42,136,162,168,181,133,132,146,252, 61,151,204,204, -121,171,187, 44, 31,156,242,161,251,171, 34,113,183,141, 47, 99,224,179,207, 23,188,124,241, 2,135,243, 51, 30,215, 27, 45,222, -104,166,100,177,100,131, 31,223,220,177,170,185,242,104, 42,243,190,141,118,239,251,232,241,235,143, 95,226,215, 31, 94,225,131, - 15, 94,225,250,229,115,242, 53,243, 75, 15,134, 48, 13, 67,192,244,120,194,227, 68,214,202,183,247, 19,222,127,113,192,123, 47, - 46, 48, 88,224,187,183,199,141,128, 12,184,185,123,196,215,175,127,196,224, 44,222,121,126,142, 64, 17,136,168, 48,248,233, 97, -198,237,113, 69,116,192,213,203, 75,220,221, 46,184,159, 86, 92, 92, 26,182, 45, 26,189,224,200, 82,211, 87, 60,149,241,152,206, - 7,132, 48,162,193, 96, 24,247, 76, 26, 36, 75, 85, 96, 21,174, 28,116, 98,103,234, 93, 61,141,250,200,161,226, 84, 15, 34,138, - 80, 17,161,201,223,169,147, 35, 24,189, 88, 5, 91,172,177,189,174, 91, 80, 9,164, 82, 40,116,168,148, 62,202,228,200,217,198, -255,217,195, 57,122, 6,132,168,180,104, 37,148,181,232,104,155,232, 99,239, 71,120, 63,192,135, 1,150,187,244, 90, 41,252,130, - 44,171,161, 39,193,192,108, 28, 11,149,175,161,206,224,176,174, 23, 25, 60,209,124, 18,157, 76, 93, 58,237,209,141, 53,148, 12, - 23,189,138,246,100, 66, 68, 66,190,162, 74,106,193,255, 72, 48, 11, 1,114,114,247, 81,243, 51, 77, 40,105, 97, 2, 8,162, 20, -236,163,166,134,105, 97,171,108, 8, 30,243,180,106,247,223, 42, 77,221, 74, 45,108,129, 53,106,205,203,185,168,190,197,110, 98, -103,229,178, 69,235, 63, 59, 69,155,154,190,175, 23,140,182,216,120,123, 30,186, 81,132,248,182, 83,173, 27, 11,155,196,216, 74, - 76,234,211, 4, 65,163, 23,174,144,212,107, 41,155,102,138, 46, 51,207,159,187, 76,161,100,106, 44,207,176,168,211, 61,175, 88, -201, 9, 36, 20, 60, 46, 4,248, 94,161, 20,185,176, 65, 22,247,175, 83, 62, 3, 65,160,123,207,163,120,142, 30, 23,145, 53, 53, - 38,142,131,206,172,122,192, 45,175,163,100, 85, 35, 20, 61,107, 40,117,207,178,200, 50, 14, 65,139, 68,209, 72, 84, 45,110, 91, - 31,179,111, 2,140, 68, 72,158,115,209,169,215,186,172, 72, 44,128,155,231, 25,235,186, 48,219,131,206, 70,249,254,229,190,240, - 62,192,203, 23, 70, 34, 5,167, 49,159, 62,122, 86,101,154, 30,220,194, 35,144,154, 73,109, 77, 21, 30,225, 90,211,146,224,188, -237, 57,196, 70,112,129, 69,171, 19,189,208, 45,129, 94,100, 68, 33, 69, 4,117, 94,149, 15,126,122,249, 58,162, 17, 58,106,210, -157,222, 70, 40,164,222,243, 40, 33, 37, 12, 66, 81,104, 0, 61,212, 99, 28,180,210,213, 63, 11, 13,158,233, 65,173, 86,237, 56, - 37,140,102,183,223,225,151,191,253, 20,113, 56,224,251,111,222,226,225,254,132,105,162, 93, 96,203, 15, 0,164,146,166,253,200, -110, 63, 34,231, 6,235,218, 38,120,194,176,165,167, 99, 3,125,240, 27,191, 58,143,111, 44, 7, 9, 40,103,185,233,238, 92,196, - 28, 70, 15, 15,177,181, 85,205, 22, 46, 76,180, 82,112,143, 53, 48,150, 43,113,231, 17, 44, 29,160,173,242,126,223,110,220, 10, - 27,136,140, 28, 14,181, 2, 37,175, 58, 93,216, 78, 60, 36,250,207, 90,203, 62, 90,143,204,221,189,145,168, 75, 86,233, 74,114, -154,132, 87, 72,197, 93, 75,161, 32,138,218,152,207,204,221, 16,175, 25, 72, 89,155, 17, 60,133,186, 12,193,161, 41,105,139,159, - 25,146,129, 35,151,132,148, 72,168, 7,102, 39, 95,156, 57, 12, 49,224, 48, 90, 92, 95, 95, 98, 55,120,196,154,224,163, 67, 25, - 56, 73,142,139, 45,209, 78,231,101,134,113, 30, 31,189,251, 12,127,253,246, 45, 86, 38, 99,125,241,205, 13,126,119, 62,226,131, - 87,151,248,236,245, 13,214,218,158,100,152,151,218,240, 95,190,250, 9, 0,240,219,143, 95, 32,175, 22,193,103,152, 66, 81,177, -223,252,120,194,222,237,241,171, 95,190,135,255,231,255, 61,226,238,174,224,250,121, 84,141, 4, 9,172, 44,226,110,208,174, 47, - 48,159,219,178, 31,215,113, 49, 45, 5,154, 84,233,173,118, 49,164, 6,118, 52,194, 0, 91,239,224,130,129,173, 36, 6,165, 72, -210,166,129, 61,127,171, 62,150,131,176,139, 93,123,192,147, 76, 84, 90, 37, 33, 90, 77, 5,214,210,159,227, 56,208, 35,241,243, -106,116,175,222,250,239, 3,169,144, 11, 79,112, 42, 79,128,182,123,111,169,238,172,139, 8,126, 68,140, 59, 52, 56,138,201, 52, - 14,214, 6, 0,142, 89, 14,228,108,160,179, 73,196,155,116, 9, 36,225, 45,136,246,162,138,195,132, 50, 29,204, 0,172, 68,104, -165, 73, 82, 42,216,237,119,170,100,159,166, 76,197,221,105, 81,229,113, 73,116,177, 52, 78,195,155,213, 6, 5,214, 19, 25,141, -122,150,162, 86,248,244,142,167, 89, 48, 68,165, 20,132,172,243,244, 14,146, 6,150,115,222, 13,217, 87,165,161,218, 66,174, 12, - 7,238,100,161,224,113,132,108,206, 77,227, 96,165,169,170, 53,233,100, 75, 81,208, 76, 82,171,133, 68,184,105, 35,132, 3,175, - 90,229,107,151,198, 65, 38, 41,242,141,138,178,222, 50, 76,131,104,112, 78,133,110,206,202,180, 3, 61,143,130,255,187, 97, 58, - 41,229, 59,208,196,111, 93,147, 6, 60, 41,153,206, 25, 21, 70, 91, 91, 57, 59,128,104,116,214, 89, 12, 46,114, 71,155,122, 12, -169, 33, 26, 93, 45, 77,223,167,214, 26,220,166, 84, 52, 32, 78,130,172, 29,122,134,124,111,144,130,247, 28, 94,100, 52, 95,157, - 10,134, 30, 63, 44, 58, 10, 90, 93,134, 13, 77,111,208,207, 48,179,109, 16, 5, 58,161,208,179,198, 24, 22,119,246,179,215, 56, -163, 83,160,196,193, 60, 98,225, 44, 57,179,200, 55,179,227,196,235,244,150,238, 65,114,100,248, 82, 11, 80,193,120, 83, 30, 81, -177,165,194, 72,213,210, 26,198,195, 5,210,244,168, 99,117,225, 50, 27, 99,145,150,196, 72,195,172,202,243,198, 23, 38,141,150, -232,146, 17,191, 99, 3,176,219,141, 79, 72, 60,222, 91, 36, 3,172, 41,179, 34, 86,226, 68,237, 38,159,182,234, 78, 10,141, 30, - 62,167,227,150,170,187, 48, 18,247, 80, 49, 32,151, 14, 77, 21,217,103, 42,170, 95,206,246,173, 76,200, 51,108, 23,210,135,195, - 7,252,236,231, 63,195,171,247,223,199,155,159, 30,241,229, 23,127,165,124,229, 82,225,221,138,117,126, 96, 43,137,131,245,148, -168, 70, 25,198,156,202,198,113,141,141,149,138, 37,247,125,110,227,140,227, 24,189,142,158,182, 99, 44, 9,169,208, 68, 50,166, -121, 89, 43,130, 62, 86,108,242,131, 67,223, 9,177, 47, 43,199, 57,146,128,197,170,104,201,123,250,121,192,121, 10, 88,217, 88, - 92,104,180, 10,218,213,164,140, 86,203,147, 64,134, 16,156,238,120,133,150,100, 56,130,147, 40, 81, 93, 56,162,158,201,180, 42, -161, 43, 4,171, 68,164, 16,157,174, 19,104,231, 86, 97, 36,111,153,187, 54, 73,152,155,167, 9,222, 59,188,251,170,225,171,191, -222,227,253,247,159, 19, 43,193,177, 54,195, 89, 52, 22, 8,238,207,118,248,244,211,143,176, 27,130, 86,210, 49,122, 68,100,152, -180, 32,231, 6,199,212,177,234, 71, 77, 4,171, 37,163,112, 38,182, 1, 16,199, 1,165, 0,151,175, 94,226,147, 15,239,240,217, -215,111,224,172,193, 15, 15, 51,254,242,253, 45,206, 71,178,163,196,224,177,166,140, 33,122,181,114, 14,193,225,234,114,143,221, - 97,135,214,118,188, 54,114,152,167,149, 21,183, 21,213, 69,252,230,211,159,225,203,215,223,225,250, 69,160, 3,203,243, 33,193, -222,112,239, 69,123,129,190,215,230,169, 10,137,186,156, 10,147,156,181,104,210, 93, 85,102,114, 51,118,116, 27,143, 41, 66, 40, -209,114,148,210,105,126,253, 93,204, 60,101,170, 58, 6,166, 51,160,207, 81,196, 94, 67,233,126,149, 29, 13, 77,197, 85,165,210, - 72, 94, 56,234, 98,205, 50,204,215, 46,124,137,111, 59,216, 82, 41,235, 93, 14, 93,231, 6,248, 64,153,210,214, 70,138, 29, 54, - 30,242, 91,189,167,239, 53,231, 74,159, 21, 7,195,136, 16,210, 57, 10,254, 88,150,166,254,227, 56, 4,204,211,130,156, 37,147, - 26, 42, 14, 36,175,181,193,233, 56,211,164, 3, 84, 24,136,160, 50,115,128, 78,107,141, 82,207,184, 11, 51,173, 17,118,217, 73, - 65, 68, 19,207,202, 23,114,228, 88, 99,239, 29,141,209, 29, 37,147, 97, 35, 68,150, 46, 95, 66,166,228,231,174, 86,210,214,116, -135, 79, 77,142,209,172,115, 98,179, 71,164,148,116, 47, 77,158,106,171,227,109, 99,229,140,102,107, 95,107,200,173, 95,204, 50, -162, 46,165,219,203, 10,239,210,115,110, 60,161,168,112,250, 28, 53,157,210, 72,227,161, 52,207, 53,171, 87,188, 85,122,175,187, - 0, 17, 48,168, 90,252, 56,239, 80, 0,157, 88, 2,228, 62, 16, 23, 4, 21, 54,133, 61,254, 69, 97, 93,130, 92,149,105, 68,136, -145,238, 43,103,116, 45, 49,140,156, 7,129,142, 83, 21,140,171, 49, 64,116, 94,181, 98,222,246, 52, 75,178,104,146,171,128,224, - 46, 44,242, 45, 69,191,151,148, 50,156,181, 8, 49,146, 91, 71,214, 9, 82,244,110, 50,224,157,111,218,136,137,128, 87,206,218, -202, 46, 46,137, 60,150,105,232,178,172,112,206, 98, 89, 22,172,235,202,196, 61,167,197, 85, 8,145,133,169, 61,119,222,123,163, -239,180, 90,218,186,197,192,118, 1,151,179,168, 9,170, 6,223,254, 75, 34, 90,115,162,145,115, 22,209,150,193, 38,183, 25, 42, -226, 32,193, 73, 81, 11,141, 11,164,200,132,122,242, 88, 8,192, 23, 30,173, 1,172,126, 93, 42,226,227, 10, 18,166,239, 30,213, -226,166, 73,115, 85, 85,227,198,138,111,208, 40, 88, 66,246, 54,153, 71,132, 54, 90,254,128, 29, 28,168, 26, 60, 59, 28,240,171, -127,252, 53,230,169,226,203, 63,125,143,187,219, 35,143, 14, 19,202,250, 0,184,174,124, 20,213,166,100,147,123, 99, 49, 79, 43, - 29,170,137, 81,150,220,149, 96, 19,227, 40,130,154,190, 95, 19, 6, 56, 99, 41, 55, 35,170, 42,157,120,235, 42, 98, 73,112, 74, - 41, 83, 81,196, 69,206,150,228, 68,113,178, 94, 21,244,231,215,207,113,186,191,133,129,231,208, 26, 18, 17,166, 68, 92,113, 26, -175,211, 30, 57, 48,228,198,218,200,145,149,142, 47, 21,250,204,196, 94,167, 34,196, 68,211,154,180,174, 72,235,202,221,155,229, -135,184, 51,224,189,179,104, 70,124,207,116,136,215, 82,129, 77, 40,143, 8,255, 36,140,226,229,203,128,215,223,174,152,231, 85, - 69,125,181, 80,122, 94, 74, 69,159,139,171,171,115,157,252, 8,221,108,153, 19,253, 57,235,132,106, 44, 76,116,168, 54,168,215, -222,123,162,209,229, 84, 17,247, 35, 85,235,107, 66,131,193,175,127,245, 33,238,231,132,105,165, 23,249,245,237,140,221,144,113, -184, 56, 67,109, 21,231,231,123,172, 92,120, 57,107,240,207,159,188,194,223,191,123, 5, 31, 40,173,238,241,113,134, 29, 6,152, - 66, 80,145,129, 15,129,171,103,103,248,254,205,136,146, 11,198, 61,139,119,188,225,145,105,230, 41, 87,235,162,202, 74, 59, 99, -201, 82,111,155,124,242,218,160, 94, 89,171,232,222,166, 59, 84,205,149,150, 78, 76,121,254,125, 20,104,120, 66,100, 56,184,194, -128, 46,237,210, 26,108,115,172, 1, 1,235, 57, 50,170, 53, 20,220, 82, 86,194,194,162,106,209,237,125, 96, 40, 83,219, 36, 13, -102,221,121, 82,247,104, 57,192, 38, 35,231, 85, 47,116,218,159,143,112,126, 32,205,128, 13, 48, 54, 34,186, 8,107, 35, 12, 19, -188,100,156, 42,233,117,206, 57,172,137,104,129, 33, 4,238, 18,201,202, 85,114, 65, 8, 14,199,148,104,223, 89, 0, 51, 2,203, - 12,196, 49,162, 85,122, 95, 7,110, 8,150, 90,113,126,190,227,228, 52,138, 45,118,206,113, 68,114,103,209, 11,117, 63, 4, 42, -136,228,194,244, 44, 24,163,105,166, 8,245, 88,196,202,248, 87,105, 34,250,179, 94,245,242,209,226,169, 52,206,167,239, 59, 86, - 25,223,234, 74, 15,192, 60, 47,186,174,162,166,202, 17,144,198,245, 32, 28, 90, 41, 24,229,158,139, 40,145,172,111, 30,165,117, -140,171,164, 76,150, 77, 49, 33,128,176,206,253,160,255, 78,197, 5,244, 89, 19,254,132,229, 28,241,148, 18,134,129,226,187, 91, -223,168,208,159,195,151, 46, 77,142, 40, 88, 11, 28,152, 34,153,240, 62,244, 12, 14,203,177,214,141,155, 20,171,130, 56,160,178, -206,203, 24, 3, 27,169,232,241,220,168,202,101, 47,130, 55,201,147,111,220,172,168,122,159,167, 47, 21, 18, 11,219, 54,234,123, -167, 43, 9,103,157, 66,156, 2, 67,205,232, 78,115,172, 65, 2,239,213,155,226,211,101, 13,189, 93, 77,136, 59,167,181,186,201, - 73,161,159,101,214, 20,195, 0, 0, 32, 0, 73, 68, 65, 84,213,241,241,136,156,147,138,236, 36,182,218,176,173,220, 74,216,199, -102, 85, 41,171, 38,247,127,254,203,111,127, 47,221, 96, 8,182,167, 81, 9, 61,135,173, 76, 62, 70,148,180,234,229, 40, 35, 4, -218,117,116, 72,140, 99, 31,250,214,202, 32, 86,143,109,130,209,197,245, 75, 28, 46,159, 33,142, 7,196,113, 64,171, 13,211,233, - 17, 57, 45,170,246, 83, 17,131, 68,185,170,234,214,110,178,102,193, 0,150,254, 65,201, 40, 92, 4, 61, 34, 48, 33, 59,133,209, - 31,104,247,192,146, 0, 99,140, 1,207,159, 95,224,213,171, 23,248,217, 47,127,129,183, 63, 61,226,219,215,111, 48, 77,204,163, -207, 71, 88, 76,168,181, 98,127,126,137,214,178,122,216, 61,103, 42,207, 39, 34, 89,173, 43, 85,206, 36, 82, 75,250, 80, 56,238, - 48,157,119, 24,207, 46, 16,135,136,188, 65, 97,234,120, 43,238, 48,238,247, 88,166, 73, 87, 23, 86, 67, 89,172, 62, 0,194, 35, - 46, 85, 44,125,244,121,133, 24,112,118,121,133,154,147,170,218,173,243, 40,105,209, 93,166,120,131,165,219, 42,137,160, 49,198, -118, 27, 20,169, 55,187,253, 67, 92, 14,102,179,211,214,100,176, 90,177, 46,139, 66,138, 66, 12,218,177,197, 24, 16,188,213,172, -123, 17,102, 82, 50, 19,219,145,120,141, 98,141, 83, 65, 79, 8, 65,169, 92, 67,244,184, 63, 58,156, 95, 28,250,133, 87,187,251, -161,177,237, 79,246,109,178,191,107,153,139, 69, 67,122, 5,227, 44,154,143, 12,217,161,180, 50,231, 60,124,164,236,237, 16, 61, - 12,219,158,226, 24, 17,172,195,253,227,204,238, 8,143, 10,154, 54,200,232,113,183, 27,224,157,197, 47, 63,124,129,223,124,252, -146,118,220,142,166, 8,178, 43, 44,165,194,143, 3, 48, 14, 40, 21,248,241,205, 29,118,135, 21,187, 51,251, 55,187,224,166, 22, -205,214,176, 73,127,178,155, 95, 70,211,171,204,251, 91,153,146, 72, 65,109, 55,133, 0, 56,255, 92, 73,108,165, 32,229,164,158, -118,113, 79,200,115, 39,187,116, 93, 25,233, 30, 80, 20,235,141,221, 9,133,215, 50,148, 75,160,191, 79,192, 74,156, 86,101,173, -164,197,241,136, 61, 39, 46,226, 19, 82, 94,144,210,210, 59,116,227, 16,226, 30, 33,238,224,220, 8, 31,104,244,238,252, 0, 24, -175, 33, 52,100, 73, 50,106,113, 42, 28,143,220, 88,228, 75, 34, 79,186, 48,214, 37,169, 88,211, 52, 25,135, 98, 83,208,244, 73, - 97,227,164, 52, 9,126, 41, 27, 2, 92,225, 34,165,233,174, 30, 28,142,148, 24, 84,101,159, 68,160, 22, 94, 75,172,156, 12, 39, -110, 30, 31,172, 94,178,212,101,245, 21, 72,218,216, 45, 69, 23,211, 1, 50, 77,187, 68,195,163,115,154,104,230, 30,214,194,194, - 80,129,217, 60,201, 14,104, 20,130, 35,174, 60,209, 17, 73,214, 71,206,165, 19,230,182, 12,120,165,217,101, 21,183,150, 90,148, - 86, 89,248,239,178, 60,213, 17, 65,173,120,246, 75,206,204,176, 72, 8,222,169,182, 65,166, 74, 74,235,116, 29, 22,211, 49,198, -208,213,169, 53, 61,139, 94,184, 37, 66,167,115,155,137,172, 8,128,101,130,213,211, 70,157, 38,200, 57,158,168,250, 16, 52, 14, -216,108,214, 86, 98,121,107,219,128, 28,141, 28, 54, 24,198, 17,198, 58,229,178,199, 97, 80, 61,139,209,231, 82, 24, 14, 93, 35, -224,157, 83,221,130, 52, 68,216, 8,145,115, 46,152,166,137, 47,246,170,239,172,181,142,167, 99, 78,155, 84,209, 21,200,231, 39, -137,118,181, 53,120,108, 70,218,243,180, 48, 33, 44,242,238,155,198,185,150, 69, 63,137,219, 75,221, 65,108, 60,205, 2, 63, 89, -115,210,113,139,168, 54,157, 55, 29,157,231, 28,141, 45,130,199,233,225, 30, 33,173, 24,198, 29,219,231, 40, 86, 81, 70, 44,180, - 67,106,234,223,147, 67,202, 7, 7, 8, 28,134,213,245,226, 59, 21, 6,176, 68,144,138,229,164,100,153, 36,176, 78,128,173, 10, -251,253,136,203,243, 61,158, 95, 63, 67, 12, 30, 57, 55, 60,156, 18,254,252,249,119, 56, 29,103,170, 78,243,140,150, 79,244, 89, - 56, 66,150, 58,223, 31, 50,130,196,176,205,207, 82,224,132, 80,204, 52, 97,136, 95, 76, 17,152,120,166, 52, 85, 14,146, 40,235, -170, 21,151,225,241,143,140,160, 40,227,187,123, 48, 5, 23, 41,140, 99,217, 39, 57,241,121, 59, 7,239, 44,134,232, 81,119, 81, -127, 95,171,133,195,108,120, 37,144, 51,175, 5,146,130,122, 98, 28,244, 98, 17,111,179, 18,200,184, 64,146, 89,174, 76, 42,114, -226,189, 93,173,156,204, 86, 40,122, 80,128, 16,158,208,142, 82,237,243,218, 81,121,247,118, 51,166,237,163,218,166, 1, 48,214, -122,180,150,113,125,237,240,230,246, 17,167,211, 57, 14,135,145, 44,134,124,105,164, 92,212,106, 84, 75,219,136,184, 42, 76, 5, - 90,136,188,207, 93,177,204, 51,130, 39, 63,247,241,241,136, 92, 23,180, 22,240,222,123,175, 54, 7,135, 71,179, 21, 13, 30, 31, -126,242, 17,190,249,241, 22,143,199, 89, 95,124, 18, 94, 58, 21,146,253,252,227,247,240,155, 95,188,143,161,156,224, 55, 66, 49, -103, 12,246,151,123,132,195,136,228, 71,220,220, 29,241,205,247, 63,194, 12, 39,140,177,119, 60, 26, 4, 33, 34, 71, 16,252, 69, -216,237,226,229, 53,204,164,177,214, 10,169,148, 14, 92, 64,199,141,168,221, 70, 38,251,204,156, 18, 74, 45,170,136, 22,213,177, -140,254,172,237,217, 7,222, 65,247,237,154, 33, 45,133, 66,206,154,180, 69, 16,187,166, 69,156,112,175, 13,191,171, 13, 13, 89, - 83,215, 26,139,230, 68,208,181,234, 56,155, 14,194,128, 16,118, 8,129, 46,115,231,200,186,102,109, 4, 12, 77, 82, 26,123,196, -183,185, 18, 36, 0,227, 51, 9,125, 4,233, 44,117,137,142,211,231,114,218,190,179, 17,173, 20,248, 51,131,180, 44,200, 76,179, -220,159,237, 48,215,166, 89, 16,222, 57,172,117,209,231,190,108, 46,215,233, 52, 51,221,177,162, 54,131,121,234,162, 56, 52,154, -202,205, 83,210, 73, 89, 99,245,123,107, 86,145,163,130,126, 45, 44,114,115,140,113, 54,108, 99,146, 11, 90, 10, 88, 9,223, 42, -185,144, 70, 70,149,239,242,235, 13,150,165,168,144,207,242,164,176,182,206, 51, 88,151, 85, 1, 55, 50,222, 86,242,155,237,217, -226,105, 45,122, 17, 21, 46,146, 42, 12, 96, 58,170, 86, 66, 92, 4, 25,222,195, 85, 88, 15,197,224,162,194,226, 73,202,138,231, - 0,162,106,159,124, 6,206,245,100,185,202, 98,104,200,101,207, 98, 97,111, 28,143,233,161,130, 54,207, 23,158,209, 41, 16, 91, -100, 5,124,196, 77,138, 97,136,147,181,142, 19,254,130,174, 37,169, 96,165, 66, 53, 12, 81,225, 90, 62, 68,172,235, 74,130,222, - 24, 9,201, 28,237, 19,230, 9,236, 38, 35,157, 45,124,181,110,163,104,177, 9,172, 42,189,152,150,159, 61, 79,136,151,180, 34, -167,164,193, 69,242,254, 26,121, 87,225, 58, 6,189, 85, 88, 22, 78, 74,241,162, 43, 18,107,225, 75,206,108, 37,233,135,234, 92, -103, 88, 99, 16, 7, 66,251, 85, 20, 84, 22,202,249, 97, 68,176, 22, 37,173, 26,199,233,252,128, 90, 23, 98, 40, 75, 87, 18, 60, -252,217, 14,211,227,253,134, 67,108,121,103, 76,216,203, 16, 77,199,117,150, 4,227, 68,252, 66,148, 40,203,221,147,117,129,228, -251,204,214, 13,195, 14,105, 93, 89, 92,229, 84, 65,123,113,117,133,219,183,183,240,214, 96, 60, 59, 71, 94,103,196,113,199,135, - 64,197, 58,205,236, 39,116,120,231,229, 5, 94, 60,191,198, 48,142,120,120, 92,112,154, 22,124,255,253, 45,121,147,115,197,112, -113,197,211,192, 21, 62, 54,248, 48,162,242,135,125,184,188, 4,140,193,254,226, 25,140, 49,120,188,189,101,129, 5,189,224, 54, - 68, 18, 40,149, 6, 32,113, 39, 65, 98,171, 97,228,135,137,187,141,121, 89, 96,125,232,187,222, 90, 49,236,247,200,235,218, 67, - 13, 74,131,245,196, 61,142,123,122,137,208, 10,210,186,160,150,130, 96, 3,206, 46, 47,177,158, 78,136,135, 1, 62,122,173,134, -227,238, 0,231, 28, 78,247,183,164, 10,221, 29,176, 78, 15, 20,166,146, 18,206,175,174,177, 78,143, 20, 72, 18, 2,225,102,215, -153,253,231,180,179, 9,195, 14, 62, 70, 26,245, 47, 51,242,186,176,146,191, 32,238,206, 17,119, 69,191, 86,107, 12, 78,247, 55, -250,153,187,230, 52, 7,154,192, 12, 70, 69,122,173,208,232,173,114,167,100, 5,100, 34, 43, 23,107,225,229,226, 52, 1,222, 54, -124,248,126,198,215,223,222,192,186,231,176, 0,134, 49,160,128,146,193, 44,239,174,156,183,176,181, 31, 22,118,220,241, 36, 0, - 72,115, 70, 75, 5,190, 22,220,220,220,225,226, 48,227,226, 34,227,207, 95, 85, 60,187,186,196,225,226,128, 16, 35,173, 36,150, -149, 42,223,224,241,209,199, 31,224,179,255,241,149, 34, 69,101,210,227,172,199,167, 31,191,194,207,127,245,247, 24,163, 7,142, - 5,168, 25,222, 2,171,221,161,186,136, 33, 6,248,146, 81, 79, 43,190,249,254, 47,104,225, 17,113, 20,152, 80,239, 18,100,164, - 46,240, 11,245, 65, 27, 18, 44, 86,101, 98, 55, 29,249,201, 69,147, 75,210,105,143,221, 88, 4,115,102,215, 65,235, 32,169,218, - 40,180, 69, 96, 54, 34, 10, 45, 44,106,205,173,104, 28,165,120,165,155,138,101, 37, 86,153, 16,188,148,158,101,181,163,183, 44, -196, 52,118, 27,179,154, 55, 88,216,190,155, 22,127,174,181, 30, 49,238,121,143, 62,194,152, 0, 31, 70, 52, 88,210, 6,176, 0, -104,219,157, 43,127, 94, 66,109, 90, 86, 31,124, 74, 21,201,200,104,220,233,175, 35,120, 11,115, 16,106,128,117, 36,170, 26,198, -136,146, 41,146,120,220, 13, 40,197,192,193,195, 6, 1, 0, 85,228,181, 42,191, 33,165,170, 44,115,205, 9,111,164,223,152, 39, -106,100, 44,187,134,233,239,175,124,113, 91,208,176,211, 32, 51, 11,163,234,196,211, 81,140,115,233, 76, 13,199,187,243, 45, 21, - 83, 61,218, 3,173, 52,220, 38,114, 19, 6,180, 54,226,230, 96, 97,209,179, 6,187,172, 69, 69, 88, 2,112, 17,218,155,105,100, - 63,131,109, 58,177,104,181,209,106,105,195,253,207,252,103,102,214, 7,145, 6,195, 82, 49,193,118, 80,181,207, 57,179,233,194, -251,232,189,100, 14, 63,169,150,167, 8, 64,107, 14,198,208, 78, 91,237,145,150,109, 27, 66,190,227, 40, 95,177,171,245,231,221, -194,132,174,188, 23,171,111,201,137, 38,131, 12,153,180,155,156,247, 14, 45,171, 26,227, 26, 66, 64,169,180,187, 95,217, 15, 46, - 25, 34, 68, 15,141, 58, 29, 86,209, 96,147,244,196,158,215,225, 88, 24, 89,153, 81, 34, 63,131, 82,171,254,122,181, 92, 26,131, -105,154,233, 62, 99,235,154,225,103,218, 57,223, 99, 99,189,225, 34,213,178, 78, 41,235, 84, 92,190,167,198, 65, 80,190,212,194, - 47,131,213, 15,209,242, 75, 84, 10,141,193, 61, 31,112,198, 57,164,229, 68,182,176,253, 25,106,201, 88,231,132,218, 38,132, 97, -135,146, 38,133,162,196,241,140, 70, 47,134, 31, 62,174,190,200, 95,235,121,167, 36,157,153,133, 11, 35,242,186,232,129, 20,135, - 29,124,136,120,184,191, 35, 63, 98, 24, 96,157,197,114,154, 97,230, 9,187,195, 57, 33, 56,121, 23, 49,158, 29, 48,159,102, 29, - 61,146,128, 98, 64, 94, 23, 52, 52, 28, 14, 7,188,252,224, 93,140,129, 0,251,169, 56,188,189, 57, 97,158,110,144, 56,177,106, - 89, 27,214,121, 37,204,100,157, 80,203, 17,121,165,248,198, 48,140,136,187, 29,242, 58, 99, 62, 61, 98,220,159,227,241,238, 86, -233,120, 41, 23,178,162, 57,143,229,116,194,178, 38,196, 97, 64, 28, 6,164,117, 38,228, 46,143,122, 74, 46, 40,166, 74, 2, 54, -198,113,192,195, 60, 17,193,104, 28,248,176, 78,104,113,164,231,198, 24,248, 72,159, 79, 89, 41,249, 44, 12, 3,226, 48,162,178, - 50,157, 4, 94, 17,181,172,152, 31, 78,104, 48,216,157, 95, 98, 62, 62, 80, 84,226, 74, 98,166, 16, 28,214, 19, 85,179,227, 46, - 98, 24, 3,188, 59, 71, 78, 51,210,156, 16,134, 17, 67,188, 64, 78,180,167, 11, 59,218,107,150,188, 32,167, 70, 36, 47, 99, 48, - 29,143,228,249,126,188,225,151,184, 34, 12, 35,176,161, 89,181, 74,145,159,186,118,105,149,159, 47,238,244,197, 94,197,163, 37, -233, 48,250,250, 70, 10, 11,238, 6, 91,197,126, 15,156,141,143,120,184, 27,112,249,236, 92, 61,195, 70,120,253,214,162,242,136, -208,114, 12,107, 74,180,227, 75, 41,193,194, 32,163, 97, 77,183,120,231, 69,134,181, 5,214,120,188,122, 81,112,115,115, 15,148, -130,221,217, 14, 46,142, 68,182,227,175,233,221,247, 94,224,245,235, 31, 48, 77,211, 19,107,204, 47,255,238, 26,127,255,243, 15, -104,247,151, 11,220,238,128,101,158,209,130, 67,220, 81, 49,177,206, 43,242,154,241,223,255,251,159,176,212, 27, 12, 59, 66, 3, - 27,227, 0,238,142,196, 91,102,172,133, 51,118,227, 59, 54,154,112, 38,191, 76, 18,170,182,168, 72, 93, 59,241,175, 79,204, 29, -104, 27, 32, 12, 29, 78,124, 24,215,130, 82,243,102,167,219, 35, 50, 69, 44,219,132,242,166, 33,148, 60,122,175, 6, 13,221,219, - 78, 69, 59, 84,152,199, 49,137, 40, 53,241,180,166,176,163,163,251,168,101,116,232, 92, 68, 8, 59,162,224,133, 29,156,139,176, - 46, 18, 77,209,121,246, 34,123,221, 31,246,220,245,218, 59, 99, 97,145,155,134,133,217, 5,153,147, 19,211,218,185,232, 46, 9, - 21,172,194,154,134,180, 90, 32, 52, 96,193, 19, 7, 64,107, 13,197, 86,118, 2, 61,133,141,136, 88, 85, 14, 85,201, 80,108,104, -152, 78, 75, 23, 17, 55,179,193,208,146, 67, 72,160, 93,138, 45,206,189, 56,156,231,196, 81,166,221, 34,108, 57, 21, 81,114,230, - 5, 19, 45,194,217, 30, 0, 34, 7, 59, 61, 75,235,218,195,182,176, 81, 96,211,142, 63,108, 70,223,244,249,165, 76,223,193, 86, - 54,229,156, 69, 53,141, 74, 19,231,177, 44, 43,103, 85,152,141, 46, 9, 79, 48,175,150,197,147, 20,249, 92, 20, 35,222, 54, 46, -135,156, 24, 38,149,170,254,121,222,123,190,128, 61,171,203,187, 80, 77, 72,156,145,191,110, 77,103,131, 99,170,156,213, 4, 79, -249, 33, 85, 6,247,200,250, 72, 38, 56,114,137, 10,251, 99,147, 28,207, 43, 7,168,139, 42,248,160, 98,101,112, 35, 72,107,230, -173,101,155,166, 14,158, 39,165,181,108,132,208,173,105,113, 83, 54, 89,243,242,243, 46,185, 80, 36,117,226,216,114,118, 28, 81, - 65, 80,225,172,127,146,149,208, 56,233,141, 88, 33, 22, 96,112,145,240,255, 83, 74,250, 92,249, 86, 11, 86, 22, 90, 17, 26, 20, -104, 45,195, 6,135,188,146,120, 65,246, 84,121,157, 88,197,238,176, 76, 39, 24, 71, 98,163,148, 18, 92, 24, 40,148,165,100, 24, - 71,190,191,229,248, 64, 7, 69, 54, 44, 10,200, 27, 11,129,133, 31,123, 7,184, 46, 51,214,121,214,125,111, 28, 7, 28, 31,232, -247, 47,203, 74, 48,130,113, 68,141, 25,181,144,248,195,199,128,117, 89, 49,238, 70,192, 56, 44,211,145,173, 7, 84,160, 68,107, -112,241,236, 25, 14,135, 61, 1,108,106,192,237,219, 27,164, 92,136, 10,198,196, 48, 10,194,160,170,206,250,132, 86, 11,150,101, - 70,206, 75, 23,254,149,130,176,223,211, 37,207, 7, 76,136,196, 65, 46,165,114,208, 12,165,133,173,235, 74, 31,244,186, 96, 28, -119, 40, 57,241, 97, 96, 20, 96,211,106,211, 16,141,211,241,136, 48,238, 97,204, 9,113, 24, 41,201,141,199, 81, 36, 50,170, 40, -105,214, 49, 86, 45, 13,166,101,196,221, 14,243, 99,130, 99,189,192,178, 16,165, 13,188,131,234,228, 57,230,204,243,154,194,128, -128, 45,178,151,105, 53,115,142,122, 3,204,138,253,197, 21,210, 58, 83,241,229, 7,164,101,194,186,172, 50, 75, 66,225,140,119, - 57,212,197, 35,227, 67,196,252,120,215,245, 20, 60,142,133, 86,221, 50,102,238,187, 86,242,127, 58, 21,207,160, 9, 74,182,194, - 52,178,228, 84,206, 46,110, 60,210,126,255, 93,135,207,190,120,192, 37, 14,212,189,177, 5,200,152, 2, 24,178,197,216,129, 86, - 41,202,180,102, 45, 66, 74, 11, 94,189,147,176,219,211,120,176,100,234, 62,119, 35,112,255,120,131,220, 14,120, 60,174,112,115, -129,227, 36, 43,207, 7,202, 71, 31,125,128,127,253,215, 63,242, 75,239,240,222, 59, 87,120,239,227,159,161,249,145,242, 14, 24, -149, 91,214, 4, 88, 7, 44, 43,124, 12, 88,150, 21,255,237, 15,127,194,106,239, 48,158,121,254, 58,146,234, 80,100,202,209, 96, -117,125, 34,211,173, 14, 82,225, 60,239,121,166,253, 40,251,166,173,235,170,244,148,132,161, 94,216,226, 38, 91,128,162,187,211, - 62, 22,108, 29, 65, 41,232,205,210, 63,231, 86, 58,134,151,190,198,170,197,147, 0,147,106, 43, 26,176, 2, 22, 23,145,160,147, - 60,231,109,195, 70,223,230, 75, 24, 78,175, 10, 97, 7, 31, 70,132, 48, 34,132, 29,143, 24, 61, 96, 60,124,136, 26, 42, 34,151, -182,149, 48, 35,116,129,153,138, 95, 25, 91,108,208,144,171,164, 15, 78,176,182, 41, 80,202, 90,139,253,110,196, 50,101, 10, 3, - 43, 14,130,226,161,244,197, 12,107, 87, 69, 89,103, 43, 88,234, 78,251,138,198,235, 85, 32, 29,178, 92,106,222, 19,164,197,130, -214, 74,153, 57, 11,134, 89, 10, 68, 41,115,124,134, 82,247,182, 44, 43,175,178, 88, 15,176,137, 63, 22,216, 77,230, 9,136,247, -100,231,162, 34, 96,229,245, 28, 21, 96,166,116,103, 2,217, 8,235,134,181,238,249,239, 15,106,143, 19,177, 29,173,208,184,168, -102, 29,130,210,227, 74,210,157,240, 56, 68,157,194,210,121, 88, 55,118, 51, 46, 68, 74,121,114,121,213, 34,226,224,186,193,135, -155,205,174,222,234, 4, 9, 27,240,146,188,179, 0,176,206, 11, 39, 90,174,234, 12, 17, 7, 86,171,149,226,127, 55, 92, 2,153, -102, 60,241,144, 11,216,133,187,222,233, 68, 86, 69,142,250, 80, 52,120, 90,217,189, 33, 43,102,187, 41,178, 44,157,219,162,253, - 33,113, 31, 41,209,177,177,255, 73,161,101, 89,244, 75,176,180,198,246,195,166, 69,214,188,204,124,177,211,207,191,241,247, 75, -171,163,190, 82,168, 98, 85, 53, 93, 8, 40,224, 30,177,141,139, 85,180,177,158,198, 11,135, 89, 56,196,226,149,110, 12,243, 23, -139, 85,173, 5,203, 60,161,150, 30,140,178, 59, 27,112,124,152,216, 94,181, 96, 24,247,120,188, 61, 97,119, 56, 32, 45,139,130, - 46, 4, 21,106, 55, 99, 15, 88,131,146, 38, 22,206, 88,248,232,148,132, 68, 66,173,128,113,127, 1,227, 44,198, 67, 99,170, 86, - 69, 41,143, 84, 32, 44, 19,198,179, 11,184,156,225,195,128,180,204, 8,193,225,242,226, 28,215, 87,231,120,246,226, 21, 30,111, -239,145,114,197,219,155,137, 20,143,126,196,195,237,137,119, 81,128, 13, 30, 97, 31, 65, 19,149,202,153,196, 64, 53,108,147,147, - 68, 44,221, 9,202,104,202,178,159,144, 46,169,202,123, 49,231, 45,140,143, 24,207,162,194,102, 72,253,154,144, 83,247, 38, 74, -103, 37, 15, 78,205, 25,158, 59, 67, 24, 10,105, 65,171,112, 49,243, 3,218,179,144,125, 12,138, 71,181,206, 32,179,118,192, 88, - 25,199,109,212,211,173, 91,210,168,226,167, 11,213,251, 78, 43,179,206,179,149, 35,232, 1, 41, 99,173,117, 73,216,133, 29,194, -238, 12, 62,142, 44, 62, 2, 92,205, 72,147,248,200,105,149, 50,236,246, 88, 79,143,122, 0, 98,131,208, 52,130,101, 84, 56,141, -237, 59,184,214, 0, 39,233,125,242,114,115,149,207,144, 13, 81,169,215, 66, 88,212,188, 38,188,184,170, 56, 30, 39,236,118,180, - 3,243,214,194,120,234, 32, 91,227,125,220,208,253,231,104, 5,131,127,196,229,243, 5, 62, 24,180, 70, 93,132,120, 79,209, 26, -206,207, 78,152, 78, 84,172,182, 90, 57,102,184, 34,238,207,248, 98,240, 24, 99,192,237,253, 17, 47, 94, 92,227,163, 79, 62, 70, -181, 1,211,146,209,214,153, 39, 1,141,125,193, 11,210,106,241,248,195, 29,254,244,213, 95,144,237, 3,226,208, 19,183,250, 24, -189, 42,159, 90,190,239,101, 73,170, 63, 72, 41,177,142, 34,107,198,122, 15,161,200, 48,213,232, 63, 83,129, 90, 45, 76,106,107, -155,108,242, 78, 11, 20, 39,137, 88,214, 58, 20,134, 62, 59, 26,229, 54, 13,184, 48,182, 23,103,212, 17, 85,137,107, 71, 46, 73, - 69, 81, 45, 37,237, 91, 37,233,176,199,182,244,110,215,218, 0,239, 7,222,161, 15,112,126,228,156,131, 72, 23,186, 15, 42,204, - 36, 64, 82,183, 81,130,173, 87,102, 11,190,146,139,134, 33, 55, 57,173, 88,230, 9, 41, 45,104,141,198,169, 49, 4,192, 91,204, -115,215,120,160, 1, 33, 22,140, 24, 80,162,135, 19, 15,112, 54,236, 40,161,110,169,176,170, 89,227,154, 25, 84,164,128,166,202, -144, 31,167, 70, 29,233,119, 85,221,221, 26, 80, 76,238,212, 52, 94, 7, 88, 55,242,154,164, 48,147, 34,107, 40,143,136,248, 74, -202,128,119, 88, 87,201, 71, 47, 24,135,160,144, 26,201,198, 40,133, 86,124,212,169, 59,212,146, 52,115,163, 85,218,207, 18,110, -187,193, 90,118, 8,193, 96,220, 57,140, 99, 84, 33,236,184,139,172, 25,177, 60,241,168,184,191,123,196,241,241,164,185,225,149, - 11,144, 53, 37, 22, 25,214, 46,170, 91,133, 51, 66, 23,111,181,189,187,207,169,243,209, 37,134,186, 86,163,151,107,215, 65,244, -207, 64, 28, 80, 82, 36, 88,107, 40, 60,138, 47,120,209, 60,208, 62,221, 0,182, 23, 21, 98, 29,116,190,175, 36,131,183, 58,217, - 17, 38,134,116,243,243,178,112, 90,101, 64, 94,179,254,172, 20,246, 83, 27,115, 7, 54, 12, 1,136,253,208,117,202,101,112,188, - 62, 73, 72,107,183, 24,231,148,217, 54,156,168,217,227,201,142,164,188, 81,250,100, 85,173,131, 20, 55,146,126,168, 23, 59,175, - 37,139, 18, 74, 29, 11, 83, 29,252,186,172, 92, 5,122,180, 2,246, 13,246,131, 85,148,235,149,119, 15, 82,177, 91, 67,221,117, -171, 5,198, 89,204,199, 35,156, 15,136,187, 17, 46, 4, 44,211,157,126, 8, 84,197,122,245,219,137, 82,176,150, 4, 88,202, 60, - 94, 78, 51,226,184, 71,195, 91, 78, 76, 75,200,105, 65,157,201,128, 31, 98,192, 50, 23,221,207, 82,101,150,177, 59, 59,224,213, -171,107, 28, 6,143, 24, 34,114, 1,166, 57,227,205,155, 35,238,110, 30, 81, 91, 83,203,211,238,224, 81,249,208,141,187,128,218, - 18, 74, 90, 81, 82,227,149,194,129, 5, 62, 76, 17,242, 91,102, 47, 93,162,100, 19, 41,136, 60,206, 33, 61, 0,117,252,214, 39, - 76,167, 19, 42,131, 91,156,119, 40, 43,244,197,139,145,124,186,158, 59,116,234,242, 73, 76,130,154, 17,247,103,152,143, 39,141, -225,139, 49,162,172, 19,130,241, 24,198, 29, 74,201, 88,231, 35, 10,167, 25,237, 14, 23,212,161,173, 9,113,207, 16,154, 2,197, - 64, 58,215,243,136, 99,244,250, 67,151,196, 43,225,230, 67,210,175, 56,241,168,150,172,211,134,117,153,144,150,169,123, 37,217, - 42,229,196,137,224, 44,118,103,231, 88,166, 71, 70,243,242, 88, 40,117, 59,145,118,234,218, 85, 17,158, 82, 81,195, 44,254,145, - 81, 99,102,130, 30, 17,195,154, 30, 24,149,121,220,181, 1, 87,207,128, 63,255,245, 17,105,217,113,128,133,165, 9,145,233,209, -150,214,128,246,136,229,136,171,139, 9,103,123,240,133,207,221, 49,103, 51, 27,235,128, 90,176, 27, 27,110,238,110,128,246, 2, -121, 77,152,166, 5,113, 24, 49,223, 29, 53,141,233,234,250, 25,113,226,223,123, 7,107, 42, 72,169,160,166, 5,168, 69,157, 13, -196, 13, 95,241,211,155, 91,124,251,211,119, 56,123, 70,105,114,116, 49, 87, 69,239,138,216,166,214,181,239,200, 75, 81,177,151, -188, 63,125, 15,202, 54,174, 82, 96, 18, 84, 0,213, 26,255,218, 86,225, 26,117, 63,164, 8,110, 42,164, 34, 6,188,225, 11,163, -109, 58, 77,190,116, 91,209, 72, 84,176,205, 80,212,208,132,104, 23, 32, 82, 23,207,149,154,249,247, 53,221,167,226,111, 58,243, -142, 73, 21, 65,156,103, 85,251, 30,214,122, 88, 55,192,121,182,170,109, 21,238,214,246, 14,133, 39, 68, 13,228, 11, 23,171,145, -140, 30, 11,219, 59, 41, 32,134, 47,244,188,160,148,149, 38, 61,213,160,213,128, 80, 9,100,100, 48,192, 89,242, 1,251,224,177, -174,148,229, 62, 12, 77, 63,243,110, 21,229, 44,241,232,177, 46, 52, 46, 37,219,158,215,142, 51, 68,143,117, 45,170, 78,223,159, -197,110, 11, 86,177,150,132,153, 84,205,164,167,239,147,232,117,178,187, 45, 62,192, 57, 48,141,142,154,170,236, 51,159, 63,244, - 94, 73,172,169,228,177,203, 69, 93,231,138, 24,189,114, 58,182,142, 27,161, 85, 6,198, 94,203, 24,126,183, 27,158,216,107,155, -138,184, 54, 33, 58,206,226,234,197, 21,222,254,116,135, 31,191,251, 1,211, 52,235, 78, 56, 4,199,235, 51,163, 5, 14,193, 80, -208,133,144,205,104, 48,148, 92, 80,235, 90,213,107,238, 28, 11, 47, 83, 71,116,111,105,141,142, 83, 51,229, 25, 34, 70, 73,238, - 57, 18,173,145, 5,147, 29, 0,224,134,133, 4,138, 13,134,125,238, 6, 64,225, 53, 83,226,103, 71,160, 74,228,128, 96,126, 70, -163,228,192,202, 83, 15, 89,255,136,149, 82, 68,173,226, 87,167,207,218, 43, 10,183,129,220, 87, 36, 82,164,207, 53,229, 76, 19, - 87,118, 12, 56,103, 80,114, 71,207, 90,198,134,171,242, 95,194,211, 56, 41,142,166,131, 30, 77, 50,224, 13,101, 97, 9, 61,178, -148,130, 97, 32,206,191, 55, 32, 15, 37,184,250,234,204,110,167, 10,233, 16, 61, 82, 74, 8,195,128,202, 49,137,214, 7,148,188, -234,190,207, 88,131,117,158, 48,236,206, 48, 61, 62, 42,223,184,143,240,168,203,203, 57,195,135,168, 7,155,103, 33,193,180,208, -254,207,179,177,190,230,140, 16,119,200,121,102,185,190,195,249,213, 57, 30,239,238,176,219,141,120,126,117,129,119, 94,189,194, -229,245,115, 60,222, 31,241,240,112,196, 79,111,238, 81,106, 67, 46, 13, 97,215, 48,157,102, 85,178,134,232, 96, 93,131,243,116, - 0,132, 33, 98,153,120,244, 99, 44,134,221, 64,226, 13,102, 27,247,132, 54,186,176, 99,116,202, 50, 22,123, 8,189,140, 34,148, -105, 88,166, 9, 33,142,104, 62, 35,175,137,196,128,195,136,178,206, 24, 70, 30,125,177, 5,171,172, 5, 99, 12,240, 43,217,181, - 74,166, 2,163,150,130,113, 71,144,140, 17,173,143,234, 56,144,165,100, 82,214,135,184,211,131, 86,146,178,164, 82,118,222,118, -150,115,240,168, 60,226,211, 49,215, 70, 37, 76,137, 76, 93, 41,238, 60,137,147, 36,117, 41,205, 19,206, 46, 46,144,230, 25, 57, - 45,100, 59,218,141, 72,243, 9,206, 91,248,184, 35,107,147,198, 80,209,190, 72, 88,244,210,174, 9,128, 71,128, 35, 85,178,177, - 45, 95, 8,140,173,173,165, 50,212,134, 65, 69,210,201,182, 30,206, 97,172,131,119, 6,231,251, 5,199,211,140,103,151, 52,134, -175,220, 77,197,104,208,106,194, 52,157, 16,221, 29, 46, 46,243, 38,151, 90, 98,100,177, 73,174,227,136, 90, 52, 28, 14, 19, 30, - 78, 73,109,101,133,125,225, 41,145,111,221,143,103,184,126, 53,224,238,254,136,187,251, 19, 74, 78,240,166, 98, 8, 30,251, 93, -160, 0,161,148,241,240,240,136,111,126,248, 26, 23,215, 64,201, 70,109, 43,137,137, 89,178,103,125,124, 60,110, 88,255,165,231, -142, 51,120,200, 26,199, 23, 73,247,176, 11,204,162,212,222,141, 11, 64,100, 59,126, 4,122,124,170,250, 92,101,156, 46,223,188, -129,142,250,244, 61, 21, 23, 6,239, 72, 75,237,182, 44, 26, 19, 39,141,195,148,162, 64, 24, 18, 79,187,243,167,119,188,247, 3, - 98,216, 33, 68, 82,183,123, 63, 80, 56,139,161,112, 22, 99,156, 30,198,133,125,249, 41,103,242, 81,203,247, 42, 19,142,210,145, -180,148,228,150,177,174, 11,210,186, 32,231, 5, 37, 47,168, 53,161,148,196, 32,173, 8,107, 6,254,245,158,109,125,134,113,172, - 3,131,102,168, 51,222,237, 7, 84,161,127,165,132,194, 66,193, 90, 43,198, 49,160, 20,160, 22,234, 20,119,251,129,115, 21, 26, -114,166,247,239,248, 48,179, 54, 8,234,109,174,121,213, 75,198,106, 39,201,172,111, 99,148, 69, 17,135,158,184, 70, 66,224,130, - 56, 68, 88, 67,207, 32,197,150, 50,155,157,139, 41,241,207,239,207,118, 60, 49, 36,208,205,225, 16, 52, 7, 93, 38,166,134, 93, - 55, 20,192,226,213, 49, 2, 0,235,105,162,162,100, 79,184,211,113, 63,192, 26, 75, 80, 33,231,176, 63,203, 8,113,196,195,253, -163,186, 75, 40, 55,220,245,216,221,214,148,154,166,158,108, 35,254,234, 62,173,180, 90, 1, 50,207,128,131,123, 72, 24, 72, 93, -110,229, 36, 76,153,102, 57,187, 93, 25,210,247,147, 57,115,188,242, 89,102,248, 60,174, 10, 69,178, 27, 90,158,233,239,178,114, -251,141, 90, 54,231, 57, 61, 73,150,115, 76,164,171, 76,164,147,157,117,226,248,211, 56, 4,222,118,246,239,179,129, 92, 19,164, - 65,232, 89,232, 66,141, 36,248, 13, 21,101,113, 28, 41, 18, 92, 86,211, 76, 81, 37,216, 13, 1,139,106, 33,198, 2, 9,194,171, -178,244,183,172, 0,233,212,229,188,245, 57,173, 36, 70, 74, 34,234, 72,122, 56, 26,182,212,228,149, 18,185,166,121,198,217,197, - 5, 89,136,150, 19, 10,131, 0,218,204, 10,199, 64,106,200,117,153,249,130,225, 60, 91,174, 52, 8, 77,104, 68,114,163,232,214, -101, 94, 97,172,197,186, 30, 17,198, 29,210,186,208, 68,160,172,136,113,196,176, 59,131, 51, 22, 87, 23,103, 56,124,248, 14, 14, -103,103,152,167,140,227, 41,227,230,254, 39,220,221,222, 34,113, 7, 87,106, 35,238,110,164,238, 38,151,132, 97,180, 0, 86, 24, - 59,192, 7,131,156,128,156, 22, 88, 79,221,125, 43, 5,203,188,162,193, 17, 66, 82,109, 75,149,217,210, 86,187, 34, 99, 13, 76, - 51, 88, 78, 51,252, 16,177,174, 21, 41,157,244, 18, 51,166, 34,238,118,136,227,158,190,247,156,104,229, 44,160, 26,111, 52,147, - 93, 36, 82, 34, 52,146,195,119, 93,146,190, 48,181, 85,160, 20,228, 83,198,184,223, 97,220,147,242,127, 93, 23,245, 69,194,144, -216, 48,196,160,187,117,231, 12,210,124,194, 56,238,176, 59, 59,224,116,119, 75,228, 58,103, 20, 44, 4,211, 11, 43,218,221, 88, - 77, 97, 35, 23, 5, 83,186, 78, 71,248, 56, 96,207,214,195, 52,157,244, 98, 26,246,228, 37, 15,195, 8,107,104,167,152, 78,247, - 60, 54,134,238,191, 84,184,195,237,141, 36, 90, 45,115, 81, 14,193,186,102, 13,117,145,139,140, 96, 15, 44, 42,107, 18,145, 72, - 7,250,229, 69,195, 23, 95,221,224,217,197, 25, 93, 44, 92,184, 44,203,138,156, 30,240,236,226,136,224, 36,210, 51,117,174, 60, - 63,147,102,147, 91,208, 84, 77, 93,129,246, 6,181, 61, 39,123,158, 49, 90,156, 54, 30,167,206,185,114, 17,150, 96, 77,195, 84, - 27, 30,141,193,221,163,195,126, 23,113,188,191, 71,198, 61,174, 95, 9, 34,149,116, 7,162, 94,149,221, 52,237,176,169, 75, 22, - 78,184, 66, 40, 88, 60,152, 91,209,168,227, 45,133,173,176,226, 85,236,111,236,100,163,175,210, 26,221,211, 3,181,171,233,177, - 17, 86, 9,175, 92, 81,183,156,135,174, 43,236,198,254,254,194,163,191,170,207,198,223,182,225,205,244,175,171,239, 50,183,255, - 50,136,145,236,106,206, 13, 12,151,137,108, 91,243,112,214,195,160,175,145,232, 96,183,250, 25,232,104,114, 67, 87,147,233, 64, -206,133,186,243,101, 65, 90,103,164, 76,209,205,212,161,175, 48, 40, 0, 40, 80,169, 56,135,182,210,179,228,125,224,142,145,118, -181,194,197,112,187, 81,151,255,235,146,148, 98, 38,240, 24, 81,161, 75,113, 54, 79,237, 9,102, 84, 46,178,113, 36,225, 36, 15, - 54,248,247, 22, 69, 41, 91,211, 35, 59,165,120, 10,209,245,125, 52,127,191,187, 33, 80,126, 3,120,125,217,186,138, 90,118,207, -222,247,236,121,183,167,179,234,252,226,208, 21,243, 60,129, 17,112, 75, 90,105,220, 63, 12, 17, 11,219,142, 97, 44,246,251,145, - 69,204, 22,203,188,224,246,230, 30,243, 52, 99,158,201,118,108,109, 64,202, 85,173,140,165, 18,236,167, 42, 36, 11,155, 24, 85, -210,104,200, 26,176,150, 94,234,105, 49, 93,187, 48, 12, 60, 6,167,128, 41,217,145, 23, 53, 45, 27, 75,235, 80,141, 30, 54,196, -200,215,104,110,214,205, 40, 76,137,195,195, 72, 48,219,119,227, 50,209, 82,133,124,233,107, 8, 89,177, 90, 93, 77,118, 31,124, -213,192, 35,167, 52, 71, 65,105,167,212,116, 50,230,172,229, 66,212,105,130,225,178,172,154,174, 6,190,244,231,121,229, 75,155, -190,231, 97,116,124, 38, 85,157, 80,200, 62,189,255, 28,123, 48, 12, 74,213, 66, 72,139,122, 33, 18,254,223,255,249,223, 55,242, - 66,123, 13,112, 55,155,100, 33, 18, 90, 4,205,115,150,208,135,192, 68, 56,203,134,120,231, 3,118,103,231, 84,181,230,172, 25, -188,158,171,211,170,252,117, 11,239, 35,174, 95, 94,195,199, 1, 46, 70,164, 53, 35, 45, 51,230,211, 17,211,241,164, 40,191,221, - 56,224,234,242, 18, 87,207, 46,224, 92,196,178, 20, 60,220, 79, 56, 77, 43, 93,226, 54,224,248,120,162, 23,187, 84, 13,228,240, -193,194,218,138,113, 71,151,180, 8, 0,125,112,218,173, 40,217,201, 82,103,158,216,114,150, 57,134,209, 57,139,101, 78, 60,202, -222,238, 52,232, 67, 89,230,164,149, 18,241,214,161, 99, 49,195,187, 55, 17,131, 41,158, 83,160, 14,219,131,153,247,154,228, 61, -175, 93, 25,203,191,191,176,154,216, 24,244, 75,141, 69, 67,206,154, 13,172,164,234,190,104, 93,215, 77, 85,203,227,237, 84, 57, -105,174,169, 34, 83, 84,231, 70,241,163,153,233, 80,108,171,225, 7, 65,236, 74,129, 31,194,162,161, 29, 76,151,115,244,115, 85, -181,116,235, 97, 15,114, 73,200,129,166,212, 51,174,154,197,163,107,141,217,124, 70,146,136, 5,189,192, 5,182, 65,225, 5, 85, -121,248,223,126,223,224,252, 75, 60,191,186,192,237,237, 3, 30,142, 15,184,122,182,226,226,156,190, 15,221,229, 51, 18, 82,197, -103,149, 43,124, 30,139, 11,249,176, 54, 96, 77,192, 15, 63,158,225,112,184, 68,169,224,128, 29,154,104,164, 92,144,115,165,236, -226,148, 16, 25, 78, 34, 7,201,221,221, 45,206, 46, 18,206,206,141,134,147, 72,225,176,229,172, 83, 49,151, 54,207, 86,223,209, -146,197,180,118,176, 38, 39, 19, 54, 30,131,151,218, 54, 25,220,142, 15, 63,137,103,229,120, 27, 43,226,212,196,214, 23,206, 10, -216,228,119,203,243, 79,226,163,162,147, 31,152,246, 4, 97,218,239,239,214, 59,239,206,167, 17, 97,250, 38,189, 11, 79,190,190, - 24,119,240, 46,194,249, 17,145,211,213,156,139,236, 6, 97, 76, 50,243,204,101,236,174, 35, 85, 97, 59,240,179,174, 9,101,149, - 10,161,156, 87,164,180, 96,153, 39,180,150,145,185, 67,111, 53,211,127,114,218, 27,157, 89,103,212, 36, 12,180,203,143,195, 14, -222, 5,132, 24, 17,227,136,113, 55, 80,129,202,163,233, 16,131, 38,136,137, 21, 41,198, 64, 80,162, 33, 98, 93,211,147,131, 82, - 10,227, 24,189, 66, 94,100,245, 38,144, 38, 99,240, 55,180, 75,232,106, 69,131,116,184,184,150,177, 58, 52,147,157, 8,158,242, -191,149,203,222,122,224, 21,237,145,141,186,108,196, 63,157, 89,109,189,157,230, 16, 37,146,119,213, 28, 69,124,124, 60,225,248, -120,194, 52, 77,152, 78, 51, 23, 59, 21,173, 57, 60,123,254, 46, 78,199, 71,164,229, 78,145,215,214, 89,122, 7, 88,128,215, 3, -127,140, 90,197, 68, 4, 40,147, 32, 81,215,203,138,169,181,110, 51, 67,235,171, 58,121,223,181, 43,229,239,205, 8,148,102,115, -166, 10,203, 68,166,145,242, 32, 54,126,119,132,175,226, 92,207,171, 16,129,104, 78,165,255, 76, 96, 25,169, 29,224, 67,208, 53, -139, 99, 20,117,136, 65,209,223,178,166,210,115,149,167, 1, 82,152,175,107, 70,201, 25, 41, 37, 44,203,162,163,117,249,187, 58, -205,181,105,206, 10,176, 81,200, 11,154,184,210,202,205,179,128, 86, 3,121,176, 41, 84,106,213, 53,157,151,177,157, 38,107,109, - 30, 54, 17, 25,208, 88,201,233, 33,228,125, 64, 54, 77,125,116,165, 0, 46, 12, 72, 57, 99, 62,157,224, 67, 64,203, 69,199,133, - 70,160,255,220,173, 91,233, 38, 35, 65, 91, 4, 90, 95, 50,169,180,159, 63,123,142, 87,175, 94,192, 57,143,105, 74,184,189, 95, -113, 58, 30,145,107,195,233,180,226,248,184,192,248,128, 56, 0, 15, 15, 19,137, 18,188, 5, 76,134,117,181,239,179, 75,163,175, -141,247, 73, 89,125,155,141,145,141,204, 74,111, 61,104, 68, 46,238,170, 56,206, 46, 98,160,157, 34,212, 75, 88, 53,128,130,249, -219,181, 17, 42,112, 19,159,183, 77, 70,146, 93,149,140,174,156,165, 41,133, 88, 82,100,172,178, 46, 9, 33,144,237, 3,173, 98, - 24,189, 30,236,166, 81,144, 70,201, 5,205,118, 62,178, 84,137,181, 85, 70, 31, 66, 85,174,222, 89, 88, 47,251, 56, 43, 75, 84, - 6, 37,212, 30, 58,163, 15, 38,137,255, 42,251,114,185, 54, 32,188,168,118,224,230,201,131,108, 93,213,140,110,203, 47,158,184, - 4,192,240,154,194, 5,144, 15,244,146, 9,228,145,108, 83, 20,150, 65, 69, 22,120,220,201,104, 73,174, 70, 9,126, 87,200,106, -195,136,224,151, 47, 12,254,240,249, 91, 76,243,140,232, 31,241,225, 7, 86,199,155,180,183,244, 10, 35, 49,155,238,200,122,175, -226, 36,186,240,179, 94,114, 6, 5, 49,172,184,189, 49, 24, 3,181, 81, 51, 0, 0, 15,117, 73, 68, 65, 84,134, 65, 85,227,196, -253,167, 12,131,182,174, 8,214, 34,179, 43, 96, 45, 21,211,250,136,243,203, 21, 97, 52,200,197,233,197, 35,202,254,182, 9, 47, -217,190,188, 66,212, 51,205, 60, 1, 91, 84,197,134,242,200, 17, 85,187, 32, 18, 13,109, 40,132, 60,222, 19,107,155, 92,212, 6, -146,154,199,216, 88, 94,101, 72, 33,208, 74,235,255,187,117,133,174,217,220,222,230,111, 47,116, 60,129,224,109,238,248, 13,141, -142,125,182,129,249,237, 33,208,101, 78, 96,153, 64,121, 9,214,169,239, 90,148,238,212, 60,208,138, 72, 4, 96,102,147,143,190, -221,159,175,235, 74, 4,202,188,176, 46,129,186,243, 90, 18,249,214,217,190,215,211, 14, 87,148, 66, 17,192,198, 56,132, 80, 80, - 96,224,170,195,233,116, 82, 1, 92, 74, 96, 33, 18,189, 35,105, 77,234, 53, 78,107, 67,225,221,185, 36,147,137, 69, 73, 88, 20, -153,197, 94,130, 9,149,213,147,196, 84,251, 90, 53, 24, 68,146,185, 2,239,194,101,151,236,156,225,208,162,166,169,107, 50,186, -118,150,196,114,173,153, 30,155,202,204, 14, 10, 52, 34, 32,148, 36,247,201,115, 47,255,166, 88,107,139,227,241,132,101, 94,112, - 58, 78, 72, 41, 97, 58, 45,180, 86,228, 34,160,243, 7, 40,242,247,248,120,194,186, 76,204, 40,105,154,174, 56, 77,243, 19, 17, -161,142,152, 89, 41,110,108, 63, 11,169, 1,226, 11,152,207, 88,176,166,131, 86,201, 22,173, 64, 27, 13,171, 49,223,178, 38,107, - 42,152,148,144, 43, 17,210, 78, 75, 82, 87,132,156, 61,221,114,215,167,175,212, 76,249,206,172,231, 59,140,158, 89,104,128, 76, -173, 21,235,178, 34, 12,145,244, 21,206, 49, 91,194,116, 91,166,193, 19,180, 47,221, 99, 69,173,106,203, 66,159,169,172, 87,140, -181, 88,151,117,147,244,102, 54, 86,188,170,231,129,198, 14,115,194, 27,173, 99,184, 49,226,245,130,156,191,164,115,233, 5,181, -231, 12, 35,162,240, 88,203,248,199,158,125, 43,187,207,156, 87, 86,165,210, 14, 11,153,237, 23,193,227,240,236, 57, 90, 51,152, -143, 15, 12,245, 23,241, 6, 80, 83,131,247,161,123,123, 45, 61,200, 68,161,107,240,129,190,152,253,126,196,203,103,231, 8,206, - 35,165,134,159,222, 76,152,166, 21,243,156,144, 75, 35, 81, 18,167,148,237,175,158, 33,173, 9,211, 60, 33, 12, 22, 33, 22,180, - 58,179,157,141,148,205, 90,237,212,202, 15, 85, 85,171, 27,212, 71, 8, 77, 18, 43,165,193,251, 30,195,186,204, 36, 70, 19,111, - 44, 76,235, 47,112,237, 30,234, 90,179, 90, 34,114,238, 54, 34, 99, 13, 26, 67, 56,100, 76, 35,221,156, 40, 26, 73,100,199,151, -220, 38,178,144, 88,210,244,194, 72, 80,128, 88,196, 52, 0, 0, 82,156, 88, 13, 64, 49,242,119,240,195,101,184,184,201,185,106, -177, 86, 56, 58,146,198,202, 89, 89,208,208,206, 12, 76,113,227, 52, 35, 21,148, 84,189, 60,156,119,172,115,128,194, 99, 68, 45, - 43, 43, 23, 65,153,166, 53, 49,121,176,176,250,150,212,235,150,191, 46,137,148,108,173,160,149,138,102,232,247, 56,239, 0,107, -209, 74,225,189, 22, 58, 74,183,117, 69,117, 8, 13,239,190,172, 56, 28, 38,140, 99,208,226,141, 72, 95, 13,144, 46,191, 86,254, - 51,250, 56,187,177, 32, 70,190,175,156, 23, 10,229,169, 5,187,161,226,246,230, 45,156,189,166, 29, 42,167, 36, 89,107, 17,157, -193,249, 97,135,148, 18,230,156,240,211,219,123,184, 97,194,243,119,156, 2, 78,138,178,249,205,223,132, 95, 72, 4,234,255,223, -214,181,237,216,109, 28,193,154, 11,201, 93, 57, 78,236,135, 0, 9, 96, 63,228,255, 63, 43, 15, 14, 16, 59,182,172, 61,231,144, -115,233,201, 67, 87,247, 12,109, 9, 16, 4, 44, 36,237,146,135,156,238,174,174, 75, 92, 34, 87,181, 83, 79,132,129,199,178, 11, -159, 40,204,156,218,215, 73,217,236, 52,173,249,180,230,199,190, 30,252,239,117,202,172, 26,167, 78,251,179,227, 38, 87,192, 36, - 35, 33,172,243,121,184, 23,246,101, 37, 57,198, 82,227,131,197,119,110, 94,208,247, 67,161,219,141,153,232,192, 44,232,112, 98, - 26,156,209,222,250,156,220, 76,114, 55, 29, 25, 59,122,107, 40,245,242,130,174,158, 10, 85,207,165, 81, 1, 84, 90,191,172, 77, - 53,208,165, 18,185,216,144, 82, 67,109, 21, 57,155, 90,100,195,121, 94, 8, 81, 27,185,109,219,200,124,166,206,155,205,106,135, -224,245, 58, 85,158,118,108, 14,211,170, 15,133, 65,231,112,207,246, 45, 37, 8, 39, 84, 51,100,114, 75,107, 78, 97, 58, 81,235, -174,214,154, 2, 35, 40, 91,163, 16, 34,152,205,173, 15,255,182,103, 95,147, 25,167,166, 92, 5,163,171,252,106, 14, 29,211, 6, - 22, 67, 11,240,235,169, 83,248,227,241,100,222,195,148, 90, 53,114, 24,148,209, 62,188,129,120,251,116,208, 0,168, 65,216,156, -152,237,172, 41, 45,134, 8, 98,200,158, 97,111,143,145,197,209,118,242, 65,114,202,254, 46,169,194, 69,125,243, 83, 74,142, 32, - 26,170, 97,201,115, 49, 76, 94,138, 77,234,118, 63, 12,221, 51, 91,104,227,121,105, 61, 91, 99,136,103, 86,155, 57,245, 37,222, -103,115,228, 84, 4, 35,123,100,177,237,235,117, 55,222,177,167,233,187, 98, 60, 29,131,253,205,213, 80,155,121, 54,157,173,222, -204,162,208,187,171, 78,212, 13, 86,207,233,110,140,251,218, 16,227, 68, 61, 76,249,209, 91,115,228,213,243,215,137, 42, 91,212, -116,167, 9, 82, 6, 4,209,187, 22, 97,197,159,187,179,141,249,189, 70,167,183, 27, 97,111,118,111, 13, 95,126,253, 89, 15,235, -214, 61,151, 86, 53,233,137, 58,214,177,236,194, 42, 90,219,244, 34, 14,229,112,126,251,118, 32, 33,224,247,207, 23, 94,175, 7, -158,175,130,243,210, 29,215,117, 53,196,108, 83,139, 78,142,143, 47,191, 33, 39,193,113,116, 79, 19,179,125,181,194, 53,209, 39, -229, 28,130,134, 27,208,223,215,166,108,125,209,231,174, 55,165,192, 0, 2,157,110,246, 35, 47,153,226,184,153, 10,120,210, 34, -221,198,202,213, 72, 72, 81,105, 96, 38, 81, 77,117,160, 1, 49, 42,179,242, 60,139, 63,148, 66,223,246,108, 4, 69,179, 11, 13, -240,140,112,149, 92,204,137, 78,247,159,253,118, 0,175, 48,220,236, 22, 53, 24, 99,176,235, 11,113,129, 80, 57, 1, 91, 62,180, - 70, 54,138,107,218, 3,244,250, 58,253,169,253,112, 29, 97,153, 2,131,119,218,154,122, 74,171, 69,139, 37,140,137,135, 48, 83, -228, 74, 33, 66, 48,240,122, 40,255,160, 94,250,176,231,180,234,118, 59, 66, 87,184, 83, 95,242,232, 5,195,156,182, 52,242,176, -249,164,222, 91,197,247,223, 1, 67, 42,202, 53,227,125,253, 90,237,112,176,156,110, 55, 24, 17,111,106,220, 95, 61, 48, 87,122, -232,117,126,247,221,137, 95,254,243, 63,236,251,155, 42, 29, 74,197,219,177, 97,223,222,241,122,105,206,241, 79,255,253, 5,127, -253,190,226,239,255,248,228, 76,122,157, 20, 4, 0, 19,157,114,102, 97, 45, 12,199,208, 67, 77,245,228,118,176, 36,247,111,182, -104, 82,135,249, 48,247,182,198,202,118,184,117, 76, 57,142,174, 62,132,205,100, 92, 32,117, 42, 13, 32,186, 34,185,193,232,227, -207,108,245,177, 74,179,194, 77,243,107,187, 61, 47,232,127, 34,188, 7, 45,228,187,234,207,119,146,226, 98, 82,103,200, 85,125, - 97,202, 11,243,235,246, 92,239, 46,124,180,105, 98,211,245,231,174, 77, 61, 42,106, 43,184,174, 23, 73,112, 69,239,171, 84,200, -104, 24,210,110, 43, 14,191, 30,207,119, 47, 16,217,209,187,146, 83,115,214,176, 17,164,140, 24, 6,141, 78, 56,169,146,236,123, - 28,135,146,157, 24,245,171, 13,250,180,216, 77, 35, 57,241,209, 62, 43,203, 67,183, 70,206, 66,139, 34, 77, 96,212,149, 13, 44, - 14,244,163,168,170, 58, 17, 1,114, 86,228,107,223,178, 26, 71, 5, 96,132,225,196,177,141,214,220,103,189, 92, 1,227,106,163, - 23,220,203,222, 62,251,215,243,196,243,161, 30, 26,154,160,216, 60,186,216, 10,184,145, 36,173,209, 53,180, 40,229, 12, 25, 17, - 32, 26,226,166, 39,214,188,218,170,144,239,175,177,254, 91,155,235, 66, 55,127,177,240,120, 26, 33,217,207,108,146, 47,251,173, - 4,228,230,141,159,121, 47,140,133,133, 89, 59,179, 72,168,134, 82, 2,174, 44,171,161,224, 82,199,225, 68,225,137,154,165,148, -200, 63, 74, 72,121,195,182,101,198,135,139, 15,129, 54,100, 89,146, 95,163,228,176, 93, 21,177, 69, 59,130,253, 68,190,248, 89, - 61, 30, 31,254,238,205,204,140,238, 36, 97,107,240, 60, 69,174,119, 52,147,116,135,225, 28, 46,243, 2, 25, 67, 0,161, 14, 94, -132,110,232, 51,115,161,209, 99, 66,186, 32, 43, 52,216,233, 81, 25, 49,122,115,253,157, 38, 43,233,161,157, 24,252,224,105, 80, - 8, 24, 65,148,192, 68,219,186,169,123,141, 40,103, 81,157,175,177, 89,217,157,138, 31, 62, 3,173, 40,228,255,251,243,194,199, -163,224,186, 42,174, 83,205,107,122,159, 26,188, 64, 88,116,223,129, 24, 27, 54, 90, 2,106,241, 75, 64, 83, 15,232,193, 34,165, - 7,134,249, 82, 79,215,186,152,166, 17,193, 16,154, 89, 12,133,232,243,198, 29,148, 77, 71,116, 54,203, 57,210,148, 66,221,209, -214,221,186,133, 97,236, 71, 90, 36, 24,113,198, 40,118,225,126, 95, 67, 26, 18,111,250,220,151, 40,249, 37, 68, 64,218,240,220, -229,200, 66, 27, 72,210,210,105,187, 57,236, 35, 93,176, 31, 27, 68,135, 45,221, 77,166,200, 16,137,224, 76,104,113,105, 84, 92, -162, 84, 65,102, 60, 31,170,129,197, 12,134,161, 44,181,187, 29,162,176,176,216,122, 34, 48,105,205,188,244, 45,169, 47,249,100, -161,100, 65, 44, 80,179,244, 14,105,102,132,211, 81, 37,120,131, 84, 45, 71,221,247, 91,205,119, 78,181, 54, 63,140, 53,245,170, -112,111,107, 47, 69,243,233,221, 88,234,154, 96,215,252,165,193, 8, 51, 60, 33, 40, 10, 97,134, 47,182,106,176,207, 67,247,201, -180,100, 29, 3,219,214, 17,143, 7,202, 83,229,111,182,167, 46,231,133,231,243,196,207,159, 63,227,159, 63, 2,223,124,251, 78, -120, 54,122, 97, 14, 49, 83, 18,179,249,228,145,199,174,205,133, 5, 48, 64, 53,181,102, 44, 19, 98,210,249, 82,204,219, 31,115, - 90, 48, 40,190,247,165,160,136, 79,115,129, 72,210, 48,167, 44,169,108, 12,198,173, 73, 95,208,250, 63, 34,232,203, 58, 96, 45, -213,227,214, 48,134,233, 70, 51, 27, 36,135,221,163, 23,114, 43,236, 41,239,202,108,143,137,190,237,201,119,156,195, 67, 67,104, -136, 50, 58,119,152,147, 12,103,147,102,151, 6,145,134, 82, 78,148,122, 82,121, 67,184, 93, 10, 27,152,254,199,125,192, 87, 26, -150,134, 90, 47,228,188, 19,145, 59,241,246,246,134,171, 48, 36, 35, 68, 92, 87, 65, 41, 13,239,239,111, 44,190, 21,159,190,121, - 87, 50,173, 7, 41,117,103, 49,219,103,116,190,206, 25,133,203,213,156,249, 54,104,200, 76,167,223,120,242,116, 46, 64,225, 84, -133,218,251,242, 30,168,193,201,179, 84,151,142,198,212, 81, 95,138,184, 60, 62,228,230,185,191, 6,132, 32, 0, 31, 95, 26,191, -223, 32, 81,107, 62,243,142,246, 12, 37,236,218,212, 58,205,193,244,140, 83,152, 62, 33,196, 93,223,137,246,244, 0, 26, 13,124, - 2,174,243,226,215,194,189, 32, 27, 95,163,155,253,112,192,190,169, 18,105,176, 17,101,210, 1, 17,129,228,177,191, 51, 20, 38, -112, 85, 18,248,190, 12,247, 84,241,253,240, 98, 21,219,249,110, 27, 39,105,140,232, 36,100,123, 70, 45,120,198, 16, 1,125,156, -233,158,200,179, 10, 92, 45,235,125,152, 6, 74, 93,186,174, 44, 23, 75,117,247,197,103, 3, 88,107, 65,171,141,114,207,153,199, - 17,226, 76,158,244, 21, 32, 21, 22, 78,160, 37,105,185,113,226,182,208,172,110,242, 61,139, 86, 77,202,250,247, 53,240, 48, 88, - 94,239, 95,158, 89,173,220, 17,164,232, 55, 53,111,219,116, 97,228, 69,107, 6, 55,167,170, 16, 17,146, 48,118, 84,157,193,108, -130,200,140,180,203, 57,161,182, 37, 88,158,211, 68,171, 13,191,254,124,225, 58, 59,206,171,206,130, 16, 3, 6, 37, 20,105,139, - 80,235,230,130,253,128, 67, 30,215, 89, 84, 83, 9, 22,151, 56, 89,163, 86, 80, 21,101,176,131, 53,121, 71,169,132, 25, 26,235, - 84,241, 78,108, 64,211,187,114, 12,144, 1,228, 40,232,157,142, 73,180,138,236,109,166,225,204, 93,221,212,114,186, 7, 51,179, -222,205, 62,213,246, 98, 0,208,139,120, 98,156, 25, 88, 96, 4,106, 68,133,102, 17,193,225,170, 96,228,138,184, 88, 52, 6, 96, -116,241,110,218,174,215,194, 86, 6,134,103, 42, 15, 12, 72, 45,206,196,148,160,159,141, 30, 34, 10, 75,135, 8, 84,178, 96, 21, -137,201,252,127,130, 67,162, 10,175, 51, 62,151,102, 22,182,223, 82, 61,120, 33, 2, 33, 19,118,238,157,241,129,209, 15,142, 24, -163,202,250, 0,102, 84, 7,196, 33,144, 22,110,187, 67,219,167,201, 50, 97,199,104,251,114, 78,161, 11, 36,109, 36, 45, 33, 76, -107, 18,164,177,144,212,172,152, 56,215,131,147,166, 50,237,163, 91,122,202,152,101,240,219,191, 13,252,244,185, 34,149,134, 79, -223,188,227,237,200,248,229,215, 15, 60,234,239,248,225, 95,154,234,166,132,187,160, 13, 49, 89,219,198, 42, 55,152,217, 8, 50, - 49, 69,156,116, 78, 12,105,166, 86,137,116, 90,171, 10,155,183,177,192,167,114,131,234, 21, 77, 80, 6,111, 37,204,175, 48,250, -202, 80,159, 6, 48,171, 17,140, 23,102,140,251, 20, 27,190,166, 45, 95,254,237, 88,216,247, 94,215,131,223,207, 16, 18, 73,104, -159, 56,157,111,234, 10,151, 54,132,168, 74,143,152, 19,229,148, 51, 81,107, 70,121,234, 90, 75, 74,245,230,163,213,206, 67,147, -150,154,237, 68, 41, 23,164,147, 12, 55,218,178, 63,191,147,250, 2,166,202,230, 94,212,133,108,249,147,172,124,125, 22,246, 35, - 59,186,168, 43,167, 0, 57, 54,222,130,142,243,188,148,109, 30,117, 2,237, 77,220, 8,196, 11, 70,210,172, 2,219, 73,103, 73, -232, 61, 78, 43, 83, 66,228,225,164, 67,220,150, 81,174,203, 87, 99, 38,209,179,201, 47,156,156,238, 45,223,158,223,195, 73, 98, - 93, 9,194,147,201,221,150, 20,197, 53,249,111,146, 83,205,218,182,241,156,108,189,163,131,222, 17,146,110,201,110,145,104, 88, -222,222,112,157, 47, 64, 46, 95, 37, 90, 66,156,173,155,134, 8,210,150,153,248,216,221,100,106,208,157, 79,152, 67, 16,194, 92, -137, 6, 68,198,252, 6, 72, 24, 75,192,204,112,249,179,213, 38,105,226,123,100, 31, 46,185, 91,206, 41,163, 19,121, 8,182,131, -103, 13, 75, 41,163,212,194,230,139,198, 69,190, 94, 18,162, 34, 74,244, 54,196,110,163,153, 78,107,182,254,154,104,146, 38,154, -106,243, 95, 94,197,239,111, 35, 33,238, 60, 95,238, 13, 17,104,181,174, 15,119,184, 37,210, 13,183,196, 54,190,139, 54, 27,231, -171, 56, 58,106,232, 67, 92,185, 13, 33,176,160,119,111,126,245,243,238,254, 12,100, 37, 30, 97, 18, 18, 8,191,167,152, 8,193, -194,139,146,233,133, 71,183,167, 70,208,155, 22,116, 61,212, 35, 82,222,144, 55,211,253, 6,159,182,221,199,186, 11, 18,229,103, - 31,207,130,215,147,121,200,153,105,112, 91, 68,171, 5,239,239, 3, 57,107,182,247,160, 14, 79,243,201, 5,199,219,225,249,217, -105, 83,130, 73,165,251,143, 57,115,101, 66, 95, 6,181,244, 62,144, 6,176,237,145,153,220,145, 76,245, 37,237, 9,129,241,133, -129, 93,221, 64, 19, 62,252,117, 66, 85, 33, 4, 71,193, 99, 28,126, 95, 76, 94,166,222, 4,193,139, 36,220, 35, 25, 56,222,119, -151, 72, 25,121, 6, 49,176, 72, 83,243, 30,151,132, 34,204,134,192, 58, 68, 55,195, 33,100,156,114, 68, 41,213,201, 70,246,255, - 90,167, 94, 75,157, 59,114,122,192,247, 46, 12,228, 80, 59, 86, 45, 24,129, 49,174,130, 8, 30, 68,152, 49,173,138,134, 76,252, -171,209, 64, 66, 72, 34,155, 70, 49, 76,149,147,249,252,128, 6, 47, 6, 69,137,241, 3,250,204,153, 71, 72, 68, 95,112,243,115, -246, 78,185,117,205, 92, 31, 36,128,153, 11,215, 26,231,104, 80,155,177,189,187, 44,126,203,141,205,253,152,161, 8, 57,121,202, -221,180,190, 37,209, 12, 1, 57, 3,251,123,199,245,219, 64,137,192,191,191,124,224, 47,223,119,252,248,131,134,190, 88,150,121, - 24, 3,199,219,161,135,249, 18,150, 97,135,136,125, 46,205, 15,238,137,124,129, 84, 19, 89,243,207,205,108, 37, 96,129,208,225, -225, 44, 70,210,148, 49,225, 76, 44, 5, 28, 52,133, 27,203,159,179,136,143, 91,192, 6,238, 95,162,106, 97,122,170,143,123,169, - 95, 10,188, 69, 29,103,108,251, 59,142,227, 19,182,125,215, 44,244,188,185,127,187,241, 43,220, 33,142, 7,228,140,149,158,141, -153, 77,232,181, 84, 93, 65, 54, 13,123,186,202, 11,173,158,110, 40, 51,134, 22,115,127, 17,195, 87,213,118, 95,181,168, 53,150, - 60,160, 90,228,148,148,208,116, 28,193,119,204, 41, 51,147, 61,137, 15, 6,198,109,177, 56, 96,159, 2, 69,136,226,137,107,213, -227,162,236, 88,149, 40,118,109,186,207,143, 68, 12, 35, 7, 39,113, 4, 80,145,185,232,241,198,138,132, 90, 35, 36,222,240,153, -191,192,141, 80, 6, 99,208, 51, 52, 40,154, 55,131, 66,252,182,215, 54,132, 54,209,132, 41,198,190, 12, 32,148, 94, 70,101,249, -247,246, 64,239,215,228,125,112,144,241,226, 52, 4,113, 76,206, 80,107, 21,206,120,115,120, 94,207,156, 25, 49, 60,161,100, 29, -118, 22,130,152,173,250, 40,181, 84,114,156,102, 22, 4,128, 92, 27, 61,139,106, 43,110,108, 3,227,149, 18,210, 47,181,249, 26, -201, 26, 81, 67, 34, 66, 0,101,150,217,163,166,109, 64, 90,127,117,219,211,143, 85, 6, 59,110,202, 2,243, 72, 48,189,122,171, -226, 74, 14, 43,208,238,183, 80,245,231,219,182,221, 27,228,169, 40, 10,168, 36, 34,218, 36,127,158, 39,182,156,209,153,116, 89, -174,230,211,191, 17, 50, 53, 35, 68, 47,254,255,159,208,210,246, 3,165,114,118, 0, 0, 0, 0, 73, 69, 78, 68,174, 66, 96,130, +137, 80, 78, 71, 13, + 10, 26, 10, 0, 0, 0, 13, 73, 72, 68, 82, 0, 0, 1,245, 0, 0, 1, 26, 8, 6, 0, 0, 0, 8, 90,206, 70, 0, 0, 10, 79, +105, 67, 67, 80, 80,104,111,116,111,115,104,111,112, 32, 73, 67, 67, 32,112,114,111,102,105,108,101, 0, 0,120,218,157, 83,103, + 84, 83,233, 22, 61,247,222,244, 66, 75,136,128,148, 75,111, 82, 21, 8, 32, 82, 66,139,128, 20,145, 38, 42, 33, 9, 16, 74,136, + 33,161,217, 21, 81,193, 17, 69, 69, 4, 27,200,160,136, 3,142,142,128,140, 21, 81, 44, 12,138, 10,216, 7,228, 33,162,142,131, +163,136,138,202,251,225,123,163,107,214,188,247,230,205,254,181,215, 62,231,172,243,157,179,207, 7,192, 8, 12,150, 72, 51, 81, + 53,128, 12,169, 66, 30, 17,224,131,199,196,198,225,228, 46, 64,129, 10, 36,112, 0, 16, 8,179,100, 33,115,253, 35, 1, 0,248, +126, 60, 60, 43, 34,192, 7,190, 0, 1,120,211, 11, 8, 0,192, 77,155,192, 48, 28,135,255, 15,234, 66,153, 92, 1,128,132, 1, +192,116,145, 56, 75, 8,128, 20, 0, 64,122,142, 66,166, 0, 64, 70, 1,128,157,152, 38, 83, 0,160, 4, 0, 96,203, 99, 98,227, + 0, 80, 45, 0, 96, 39,127,230,211, 0,128,157,248,153,123, 1, 0, 91,148, 33, 21, 1,160,145, 0, 32, 19,101,136, 68, 0,104, + 59, 0,172,207, 86,138, 69, 0, 88, 48, 0, 20,102, 75,196, 57, 0,216, 45, 0, 48, 73, 87,102, 72, 0,176,183, 0,192,206, 16, + 11,178, 0, 8, 12, 0, 48, 81,136,133, 41, 0, 4,123, 0, 96,200, 35, 35,120, 0,132,153, 0, 20, 70,242, 87, 60,241, 43,174, + 16,231, 42, 0, 0,120,153,178, 60,185, 36, 57, 69,129, 91, 8, 45,113, 7, 87, 87, 46, 30, 40,206, 73, 23, 43, 20, 54, 97, 2, + 97,154, 64, 46,194,121,153, 25, 50,129, 52, 15,224,243,204, 0, 0,160,145, 21, 17,224,131,243,253,120,206, 14,174,206,206, 54, +142,182, 14, 95, 45,234,191, 6,255, 34, 98, 98,227,254,229,207,171,112, 64, 0, 0,225,116,126,209,254, 44, 47,179, 26,128, 59, + 6,128,109,254,162, 37,238, 4,104, 94, 11,160,117,247,139,102,178, 15, 64,181, 0,160,233,218, 87,243,112,248,126, 60, 60, 69, +161,144,185,217,217,229,228,228,216, 74,196, 66, 91, 97,202, 87,125,254,103,194, 95,192, 87,253,108,249,126, 60,252,247,245,224, +190,226, 36,129, 50, 93,129, 71, 4,248,224,194,204,244, 76,165, 28,207,146, 9,132, 98,220,230,143, 71,252,183, 11,255,252, 29, +211, 34,196, 73, 98,185, 88, 42, 20,227, 81, 18,113,142, 68,154,140,243, 50,165, 34,137, 66,146, 41,197, 37,210,255,100,226,223, + 44,251, 3, 62,223, 53, 0,176,106, 62, 1,123,145, 45,168, 93, 99, 3,246, 75, 39, 16, 88,116,192,226,247, 0, 0,242,187,111, +193,212, 40, 8, 3,128,104,131,225,207,119,255,239, 63,253, 71,160, 37, 0,128,102, 73,146,113, 0, 0, 94, 68, 36, 46, 84,202, +179, 63,199, 8, 0, 0, 68,160,129, 42,176, 65, 27,244,193, 24, 44,192, 6, 28,193, 5,220,193, 11,252, 96, 54,132, 66, 36,196, +194, 66, 16, 66, 10,100,128, 28,114, 96, 41,172,130, 66, 40,134,205,176, 29, 42, 96, 47,212, 64, 29, 52,192, 81,104,134,147,112, + 14, 46,194, 85,184, 14, 61,112, 15,250, 97, 8,158,193, 40,188,129, 9, 4, 65,200, 8, 19, 97, 33,218,136, 1, 98,138, 88, 35, +142, 8, 23,153,133,248, 33,193, 72, 4, 18,139, 36, 32,201,136, 20, 81, 34, 75,145, 53, 72, 49, 82,138, 84, 32, 85, 72, 29,242, + 61,114, 2, 57,135, 92, 70,186,145, 59,200, 0, 50,130,252,134,188, 71, 49,148,129,178, 81, 61,212, 12,181, 67,185,168, 55, 26, +132, 70,162, 11,208,100,116, 49,154,143, 22,160,155,208,114,180, 26, 61,140, 54,161,231,208,171,104, 15,218,143, 62, 67,199, 48, +192,232, 24, 7, 51,196,108, 48, 46,198,195, 66,177, 56, 44, 9,147, 99,203,177, 34,172, 12,171,198, 26,176, 86,172, 3,187,137, +245, 99,207,177,119, 4, 18,129, 69,192, 9, 54, 4,119, 66, 32, 97, 30, 65, 72, 88, 76, 88, 78,216, 72,168, 32, 28, 36, 52, 17, +218, 9, 55, 9, 3,132, 81,194, 39, 34,147,168, 75,180, 38,186, 17,249,196, 24, 98, 50, 49,135, 88, 72, 44, 35,214, 18,143, 19, + 47, 16,123,136, 67,196, 55, 36, 18,137, 67, 50, 39,185,144, 2, 73,177,164, 84,210, 18,210, 70,210,110, 82, 35,233, 44,169,155, + 52, 72, 26, 35,147,201,218,100,107,178, 7, 57,148, 44, 32, 43,200,133,228,157,228,195,228, 51,228, 27,228, 33,242, 91, 10,157, + 98, 64,113,164,248, 83,226, 40, 82,202,106, 74, 25,229, 16,229, 52,229, 6,101,152, 50, 65, 85,163,154, 82,221,168,161, 84, 17, + 53,143, 90, 66,173,161,182, 82,175, 81,135,168, 19, 52,117,154, 57,205,131, 22, 73, 75,165,173,162,149,211, 26,104, 23,104,247, +105,175,232,116,186, 17,221,149, 30, 78,151,208, 87,210,203,233, 71,232,151,232, 3,244,119, 12, 13,134, 21,131,199,136,103, 40, + 25,155, 24, 7, 24,103, 25,119, 24,175,152, 76,166, 25,211,139, 25,199, 84, 48, 55, 49,235,152,231,153, 15,153,111, 85, 88, 42, +182, 42,124, 21,145,202, 10,149, 74,149, 38,149, 27, 42, 47, 84,169,170,166,170,222,170, 11, 85,243, 85,203, 84,143,169, 94, 83, +125,174, 70, 85, 51, 83,227,169, 9,212,150,171, 85,170,157, 80,235, 83, 27, 83,103,169, 59,168,135,170,103,168,111, 84, 63,164, +126, 89,253,137, 6, 89,195, 76,195, 79, 67,164, 81,160,177, 95,227,188,198, 32, 11, 99, 25,179,120, 44, 33,107, 13,171,134,117, +129, 53,196, 38,177,205,217,124,118, 42,187,152,253, 29,187,139, 61,170,169,161, 57, 67, 51, 74, 51, 87,179, 82,243,148,102, 63, + 7,227,152,113,248,156,116, 78, 9,231, 40,167,151,243,126,138,222, 20,239, 41,226, 41, 27,166, 52, 76,185, 49,101, 92,107,170, +150,151,150, 88,171, 72,171, 81,171, 71,235,189, 54,174,237,167,157,166,189, 69,187, 89,251,129, 14, 65,199, 74, 39, 92, 39, 71, +103,143,206, 5,157,231, 83,217, 83,221,167, 10,167, 22, 77, 61, 58,245,174, 46,170,107,165, 27,161,187, 68,119,191,110,167,238, +152,158,190, 94,128,158, 76,111,167,222,121,189,231,250, 28,125, 47,253, 84,253,109,250,167,245, 71, 12, 88, 6,179, 12, 36, 6, +219, 12,206, 24, 60,197, 53,113,111, 60, 29, 47,199,219,241, 81, 67, 93,195, 64, 67,165, 97,149, 97,151,225,132,145,185,209, 60, +163,213, 70,141, 70, 15,140,105,198, 92,227, 36,227,109,198,109,198,163, 38, 6, 38, 33, 38, 75, 77,234, 77,238,154, 82, 77,185, +166, 41,166, 59, 76, 59, 76,199,205,204,205,162,205,214,153, 53,155, 61, 49,215, 50,231,155,231,155,215,155,223,183, 96, 90,120, + 90, 44,182,168,182,184,101, 73,178,228, 90,166, 89,238,182,188,110,133, 90, 57, 89,165, 88, 85, 90, 93,179, 70,173,157,173, 37, +214,187,173,187,167, 17,167,185, 78,147, 78,171,158,214,103,195,176,241,182,201,182,169,183, 25,176,229,216, 6,219,174,182,109, +182,125, 97,103, 98, 23,103,183,197,174,195,238,147,189,147,125,186,125,141,253, 61, 7, 13,135,217, 14,171, 29, 90, 29,126,115, +180,114, 20, 58, 86, 58,222,154,206,156,238, 63,125,197,244,150,233, 47,103, 88,207, 16,207,216, 51,227,182, 19,203, 41,196,105, +157, 83,155,211, 71,103, 23,103,185,115,131,243,136,139,137, 75,130,203, 46,151, 62, 46,155, 27,198,221,200,189,228, 74,116,245, +113, 93,225,122,210,245,157,155,179,155,194,237,168,219,175,238, 54,238,105,238,135,220,159,204, 52,159, 41,158, 89, 51,115,208, +195,200, 67,224, 81,229,209, 63, 11,159,149, 48,107,223,172,126, 79, 67, 79,129,103,181,231, 35, 47, 99, 47,145, 87,173,215,176, +183,165,119,170,247, 97,239, 23, 62,246, 62,114,159,227, 62,227, 60, 55,222, 50,222, 89, 95,204, 55,192,183,200,183,203, 79,195, +111,158, 95,133,223, 67,127, 35,255,100,255,122,255,209, 0,167,128, 37, 1,103, 3,137,129, 65,129, 91, 2,251,248,122,124, 33, +191,142, 63, 58,219,101,246,178,217,237, 65,140,160,185, 65, 21, 65,143,130,173,130,229,193,173, 33,104,200,236,144,173, 33,247, +231,152,206,145,206,105, 14,133, 80,126,232,214,208, 7, 97,230, 97,139,195,126, 12, 39,133,135,133, 87,134, 63,142,112,136, 88, + 26,209, 49,151, 53,119,209,220, 67,115,223, 68,250, 68,150, 68,222,155,103, 49, 79, 57,175, 45, 74, 53, 42, 62,170, 46,106, 60, +218, 55,186, 52,186, 63,198, 46,102, 89,204,213, 88,157, 88, 73,108, 75, 28, 57, 46, 42,174, 54,110,108,190,223,252,237,243,135, +226,157,226, 11,227,123, 23,152, 47,200, 93,112,121,161,206,194,244,133,167, 22,169, 46, 18, 44, 58,150, 64, 76,136, 78, 56,148, +240, 65, 16, 42,168, 22,140, 37,242, 19,119, 37,142, 10,121,194, 29,194,103, 34, 47,209, 54,209,136,216, 67, 92, 42, 30, 78,242, + 72, 42, 77,122,146,236,145,188, 53,121, 36,197, 51,165, 44,229,185,132, 39,169,144,188, 76, 13, 76,221,155, 58,158, 22,154,118, + 32,109, 50, 61, 58,189, 49,131,146,145,144,113, 66,170, 33, 77,147,182,103,234,103,230,102,118,203,172,101,133,178,254,197,110, +139,183, 47, 30,149, 7,201,107,179,144,172, 5, 89, 45, 10,182, 66,166,232, 84, 90, 40,215, 42, 7,178,103,101, 87,102,191,205, +137,202, 57,150,171,158, 43,205,237,204,179,202,219,144, 55,156,239,159,255,237, 18,194, 18,225,146,182,165,134, 75, 87, 45, 29, + 88,230,189,172,106, 57,178, 60,113,121,219, 10,227, 21, 5, 43,134, 86, 6,172, 60,184,138,182, 42,109,213, 79,171,237, 87,151, +174,126,189, 38,122, 77,107,129, 94,193,202,130,193,181, 1,107,235, 11, 85, 10,229,133,125,235,220,215,237, 93, 79, 88, 47, 89, +223,181, 97,250,134,157, 27, 62, 21,137,138,174, 20,219, 23,151, 21,127,216, 40,220,120,229, 27,135,111,202,191,153,220,148,180, +169,171,196,185,100,207,102,210,102,233,230,222, 45,158, 91, 14,150,170,151,230,151, 14,110, 13,217,218,180, 13,223, 86,180,237, +245,246, 69,219, 47,151,205, 40,219,187,131,182, 67,185,163,191, 60,184,188,101,167,201,206,205, 59, 63, 84,164, 84,244, 84,250, + 84, 54,238,210,221,181, 97,215,248,110,209,238, 27,123,188,246, 52,236,213,219, 91,188,247,253, 62,201,190,219, 85, 1, 85, 77, +213,102,213,101,251, 73,251,179,247, 63,174,137,170,233,248,150,251,109, 93,173, 78,109,113,237,199, 3,210, 3,253, 7, 35, 14, +182,215,185,212,213, 29,210, 61, 84, 82,143,214, 43,235, 71, 14,199, 31,190,254,157,239,119, 45, 13, 54, 13, 85,141,156,198,226, + 35,112, 68,121,228,233,247, 9,223,247, 30, 13, 58,218,118,140,123,172,225, 7,211, 31,118, 29,103, 29, 47,106, 66,154,242,154, + 70,155, 83,154,251, 91, 98, 91,186, 79,204, 62,209,214,234,222,122,252, 71,219, 31, 15,156, 52, 60, 89,121, 74,243, 84,201,105, +218,233,130,211,147,103,242,207,140,157,149,157,125,126, 46,249,220, 96,219,162,182,123,231, 99,206,223,106, 15,111,239,186, 16, +116,225,210, 69,255,139,231, 59,188, 59,206, 92,242,184,116,242,178,219,229, 19, 87,184, 87,154,175, 58, 95,109,234,116,234, 60, +254,147,211, 79,199,187,156,187,154,174,185, 92,107,185,238,122,189,181,123,102,247,233, 27,158, 55,206,221,244,189,121,241, 22, +255,214,213,158, 57, 61,221,189,243,122,111,247,197,247,245,223, 22,221,126,114, 39,253,206,203,187,217,119, 39,238,173,188, 79, +188, 95,244, 64,237, 65,217, 67,221,135,213, 63, 91,254,220,216,239,220,127,106,192,119,160,243,209,220, 71,247, 6,133,131,207, +254,145,245,143, 15, 67, 5,143,153,143,203,134, 13,134,235,158, 56, 62, 57, 57,226, 63,114,253,233,252,167, 67,207,100,207, 38, +158, 23,254,162,254,203,174, 23, 22, 47,126,248,213,235,215,206,209,152,209,161,151,242,151,147,191,109,124,165,253,234,192,235, + 25,175,219,198,194,198, 30,190,201,120, 51, 49, 94,244, 86,251,237,193,119,220,119, 29,239,163,223, 15, 79,228,124, 32,127, 40, +255,104,249,177,245, 83,208,167,251,147, 25,147,147,255, 4, 3,152,243,252, 99, 51, 45,219, 0, 0, 0, 6, 98, 75, 71, 68, 0, + 0, 0, 0, 0, 0,249, 67,187,127, 0, 0, 0, 9,112, 72, 89,115, 0, 0, 11, 19, 0, 0, 11, 19, 1, 0,154,156, 24, 0, 0, + 0, 7,116, 73, 77, 69, 7,220, 2, 15, 16, 38, 41, 22,193,141,250, 0, 0, 32, 0, 73, 68, 65, 84,120,218,236,189,121,220,101, + 87, 85,231,253, 93,123,159, 59, 60,207, 83,115, 85,170, 50,146,137,132,132, 81, 8,208, 54, 40, 70, 9, 32, 40, 42, 72,130,208, +138, 10, 10,221, 14,221,106, 55,130,173,253,170,175,162, 4, 7,212, 87,232, 38,109,191,190,106,171, 40,210, 14,216, 56, 16, 20, + 25, 84,196,200, 76,152, 50, 48,101,170,212,252, 12,247,222,115,246, 94,239, 31,123,237,115,246,189,169, 74, 42, 69,134,170,244, + 89,245,121, 62,245, 12,247,158,123,134,189,247,111,173,223,250,173,181,161,183,222,122,235,173,183,222,122,235,173,183,222,122, +235,173,183,222,122,235,173,183,222,122,235,173,183,222,122,235,173,183,222,122,235,173,183,222,122,235,173,183,222,122,235,173, +183,222,122,235,173,183,222,122,235,173,183,222,122,235,173,183,222,122,235,173,183,222, 30, 16,243, 15,240,231,137,125,141,129, + 11,156,227, 52, 85,214,129,218,126,223, 91,111,189,245,214, 91,111,189,157, 2, 38,128,115, 78, 30,254,227, 87, 62,238,205, 31, +250,197,111,185,227, 99,191,242,188,125, 63,247,237, 79,248,211, 97,229, 46, 43, 94,211, 91,111,189,245,214, 91,111,189,157,228, +145,186, 0,195,239,123,246, 35, 94,243,139, 47,184,228, 37,123,234,141,149,211,182,172, 44,125,245,191,186,232, 17, 95,117,201, +105, 87,188,247,250,219,110, 59,176, 58,251, 52,160, 61,184,247,214, 91,111,189,245,214,219,201, 13,234, 14, 88,254,154,243,150, +190,245,153,187,155, 71,111,236,221, 79,125, 96, 31,205,198,148,139, 47, 62,119,251, 11,190,234,194,231,126,234, 75, 7,252,103, +110, 57,252, 97, 96,163, 7,246,222,122,235,173,183,222,122, 59,185, 35,245,209,251,111, 62,124,219,206,173,195,199, 62,245,194, + 45,167,107,163,132, 35,135,105,142, 28, 97,251,238,221,213,139,158,254,200,175, 9,177,185,232,189,159,184,237,131,192,190, 30, +216,123,235,173,183,222,122,235,237,228, 4,117, 0, 81,229,200,219, 63,113,232, 67,183,111,132,157,207,184,116,219,197, 99, 95, + 81,111,108, 16, 14,238,135,209, 50,207,120,234, 35, 47,125,236,185, 91, 47,255,187,143,221,114,243,234,164,185,177,127, 68,189, +245,214, 91,111,189,245,118,252,209,243, 3,253,121, 99, 96, 43,112,246, 87, 61,124,243,119,254,207, 23, 93,240, 61,231, 46, 85, +227,245,245, 26,188,199,157,121, 30,227,115,206,225,134, 91,246, 29,126,197,175,191,235,231,223,249,161, 47,189, 17, 56, 98,239, +215,147,249,102,170,234,101,192,118,251,241, 70, 17,121, 72, 59, 37,255,167, 93,111,111,189,245,214, 91, 15,234, 71, 55, 7,108, + 1,246,156,190,165,250,166, 63,248,206, 11,127,228,171, 78, 95, 57,125,178, 17,128,136,236, 57,155,165,135,157,207, 76, 35,255, +233, 55,223,247,219,255,207,159,126,244, 39,128, 47,216,249,126,217,192,174,170, 23, 0, 23, 28,231,203, 15,136,200,117,199,121, +220,119, 0, 87,216,143,175, 22,145,171, 31,226,160,254,127,212,245,246,214, 91,111,189,157,236, 86,125, 25,160, 28,129,205, 59, + 55, 13, 30,179,115,165,218, 25, 85,100,206, 83, 16, 16, 17,209,252, 27,201,191,111,255, 90, 1,203,117,208,141, 31,126,251, 29, +127,249, 43,223,114,206,183, 60,101,247,202,182, 89,173,112, 96, 31,147,229, 77, 12,118,238,225,215, 94,113,249, 75, 46,123,248, +158, 71,252,208,155,222,253,202,131,171,179,247,222, 71,192,126, 37,240,218,123, 1, 94, 0,111, 1,174, 21,145,107,250, 97,243, +144,117, 82, 60,240,175,128,175, 3,158, 4, 60, 10,216, 3,140,128,131,192,231,128,127, 4,126, 79, 68,254,225,126, 58,135, 39, + 3, 87, 1, 95, 11,156, 5,236, 4,214,237,179, 63, 2,188, 7,120,187,136,124,225,100,189,134,222,122,235,237,212,138,212, 5, +112, 43, 35,255, 21, 63,251,236,115,127,238, 69,143,219,125,249,214,165,193, 48,138, 75,128,237, 92,250, 18, 65, 42, 63,247, 51, +206, 33,222,119, 63, 75,250, 91, 68,180, 86,137,227,170,242,148,199,241, 30,135, 48, 88, 25,243,145,155,110,223,251,178,215, 95, +251,147,255,252,233,189,191, 9, 76,191, 28, 96, 87,213, 87,221, 27, 80, 95,176,107,129,171, 68,228, 64, 31,169, 63,116,174, 87, + 85,255, 43,240,124, 96,247,113,190,229, 93,192, 75, 69,228,166,251,232,243,207, 2,222, 0,124,243,113,188,252,157, 34,114,197, +201,118, 13,189,245,214,219,169, 27,169,159,246,186,231,158,255,250,239,123,202, 89, 95, 61, 91,143,104, 20,188,147, 20,192,171, +164, 47, 28, 18, 37, 65,175, 2, 78, 82,108, 31, 21, 60,136, 72,138,247, 21,188,136, 84, 78,188, 69,196, 9,212, 21, 80, 37,138, + 48, 93,159,241,216,115,119,159,246,142,159,123,254,175,127,223, 27,255,246,162,223,255,155, 79,255, 60,176,247, 62,138,218, 51, + 80, 31,203,174, 56,202,207,239, 80,213,103, 28, 13,216,123, 59,101,237,223, 30,229,119,251, 44,178, 61,104, 17,243,163,233,196, +165,151, 3,255,172,170, 95, 35, 34, 31,251, 50, 1,253, 81, 6,176,187,138, 95, 31, 2,110, 4, 14, 0,155,129,139, 73, 90,148, +147,242, 26,122,235,173,183, 83, 23,212,101, 52,112, 23,124,227,165,219,159,164,107, 53,245,100, 10, 49, 38,144,110,153,117,131, + 91,145, 14,119,189,195,237,220,109,224, 30, 17, 7, 68, 99,241, 5, 90,132,119, 49, 1,191,115, 16,108,249, 17,152, 77,107,182, + 14,135,238,247,126,244, 57, 63,252,164, 71,156,254,152, 31,251,141,247,253,232,180, 14, 31,186, 47,128, 93, 68,158,113, 15,139, +110,166,235,115, 30,254, 50,224,229, 64,159, 67,126,232,217, 39,129,223, 4,254, 92, 68, 62,177, 48, 14,118, 0,255, 17,120,149, +141,204, 29,192,219, 84,245, 82, 17,153,156, 32,160,159, 15,188,179, 0,244, 15, 2, 63,102,209,120,179,240,218, 71, 3,207, 3, +206, 63,153,174,161,183,222,122, 59,121,204,157,192,123,252,172,142,251,222,252,145,189,239, 23, 55,101,101, 24, 88, 89,130,229, +177,218, 87,236,190, 31, 69,198,110, 6,161, 70, 70,203, 9,228, 99,132, 24,105,163,114, 0,102, 16, 39, 16, 55, 64, 39,192, 52, +253,172, 51,123,189,162, 26,169, 67,164,153, 6,126,248, 91,159,116,197, 59, 94,247,173,127,114,222,158, 45,207,183,133,201,221, +159, 55, 73, 68,222, 2, 60,195,162,166,108, 87,246,195,231, 33,101,239, 7,158, 35, 34,151,138,200,235, 22,193,208,198,193,126, + 17,249,113,224, 37,197,175,207, 59, 70,132,124,188,246,223, 73, 57,111,128, 63, 0,158, 36, 34,127,181, 8,232,246,249, 31, 19, +145,159, 17,145,151,158,100,215,208, 91,111,189,157, 36,118, 34, 57,245, 1,137, 6,124,212,215, 92,184,233,249,151,158,190,116, +174,128,139,170, 49, 31, 50,106,130,236,245, 89,116,143,127,216,230, 71,126,239,211, 30,126,193,184, 26,187, 8,144,115,234, 8, + 52,235,136, 23,220, 57,143,195,157,246,112,100,203,233,200,120, 11, 52, 83,226,218, 94,244,200,173,196,189,159,134,102, 2,126, +201,114,237, 30,193, 49, 92, 25,241,233, 91,246, 29,250,250, 87,255,175,151,223,116,235,161,183, 90,180, 30,143, 51, 58,154,203, +169,139,136, 28,231,251,222,100, 17,250, 81,223,119, 34, 57,102, 85,221,110,145,127,182,235,238, 11, 90,127, 65,225,127, 66,229, +102,247,116,140,147,229,122, 23,206,243,186, 7, 34, 45,162,170,127, 9, 60,203,126,124,143,136, 60,237, 4,142,241, 34,224,247, +236,199,143, 3,143, 23,145,250,129,154,252,247,197, 53,244,214, 91,111, 39,151,157, 8,253, 30,128, 53,224,250,191,187, 97,245, +245,127,119,195,234, 18, 71,111, 98,179,243,217,143,221,253,178,231, 63,241,252, 51,150,221,208, 53, 81, 19,245, 62,153,160,211, + 53, 8,107,248,139,191,154,234,137, 47,198,159,255,149,199,164, 16,116,255,205, 52, 55,188,147,240,185,247, 33,126, 8,170,168, +192,108,125,198,197,103,238,220,250, 39, 63,253,205,111,120,250, 43,255,112,255,157,135, 38,127,195,125,151, 99, 63,150,221, 39, +117,216, 6,108, 47,183,104,255,178,163,252,253, 70,224, 26,224,154, 99, 1,148,170,190,182,120,239, 91, 68,228,154,226,184, 47, +103,161,100,207,142,121,245,241,168,247, 85,245,229, 36,122,246,130,123,123, 94,247,199,245,222,205,181,190,202,142,187,189,120, +249,181,198,170,220,223,246,103, 5, 32, 94,122,130,199,248,247,197,247,175,122, 32, 1,253, 62,188,134,222,122,235,237, 20, 7, +245, 8, 76,128,134,212, 20,198,178,222,109,212,175, 34, 60,242,234, 23, 92,252, 83,175,188,252,188,203,195, 12,102, 33,160,245, + 20,157,172, 67, 51,133, 74, 25, 61,231,199,168,158,248,162,123,166, 18,118,156,199, 96,199,203,112,167, 63,150,230, 3,191, 1, + 46, 36,200, 23, 97,182, 94,243,216,139,206,216,245,250,127,119,249,235,190,227,181,127,249,124,224,243,247, 51,168,151,224,113, + 66,209,160,170, 94, 1,252,225,194,177, 22,237, 2, 99, 18, 94,174,170, 87, 29,163, 78,254,178, 34, 74,190,214, 26,193,188,233, +104,160, 89, 28,243, 77,170,122,153,136,188,226,110,192,247, 77, 28, 59,181,144,207,235, 74, 85,125,198, 3,120,189, 71,187,214, +119,220,195, 49,239,111,219, 87,124,191,229, 4,198,193, 35,129,236,205,222, 1,252,229,169,118, 13,189,245,214,219, 67, 3,212, + 49,224,172,237,139, 2,208,253,185,187,198,207,125,211,139, 46,185,250, 89, 23,239,186,104,186, 17, 9,161,134,233, 6, 52, 53, +136, 34, 3, 24, 61,239,231,241,143,254,134,246, 96,135, 55,166,252,213,135,110,230,175, 62,124, 51,251, 87, 55, 24,120,225,210, + 51,119,240, 77, 79,124, 56, 79,184,240,140,116,224,115,158,132, 12, 55, 83,191,247,151, 96, 88,165, 83,112, 66,179, 58,229,219, +159,254,232,199,255,207,119,126,242,101,127,245,129,155, 95,195,151, 89,238,118, 15,209,230,149, 11, 17,225,189, 61,198,149, 6, +112,165, 93,103,199,202, 78, 66, 25,205, 94, 64,167,180,191,238, 30,156,141, 63, 44, 34,235,183,216,113, 51, 32,150,231,253,114, + 85,189,241, 24, 84,249,107,143, 2,232,229,177,242,185, 93,118,148,235,120,160,174,119,251, 2,160, 31, 40,206,239,130, 7,112, +238,156, 87,124,191,247, 4,222, 95, 58, 69,239, 22,145,240, 32,204,255, 47,247, 26,122,235,173,183,135, 8,168,207, 5,211, 6, +162, 91,159,253,232, 29, 63,124,205, 85,143,248,209,179, 55, 45, 45,109,172, 5, 52, 76,161,158,218, 39,121,164, 89, 99,240,212, +239,153, 3,244,127,252,204,173,188,242,119,223,195,141,119, 30, 97, 60, 26, 48,168, 28, 78,225,195, 95,216,207, 31,253,195, 39, +121,238, 19, 47,228,191, 92,249,213, 44,143, 6,184, 61,151, 80, 61,250, 42,154, 15,254, 38,108,222, 3,104, 74,162,171,240,211, + 47,121,202,247,252,245, 63,223,252, 71,170,124,140,148, 34,184,175, 1,253, 77, 11,160,113,205,189, 60,198, 5,118,140,108, 55, + 2,175, 16,145, 69,231,224,234,133,232, 54,127,246, 19,239,230,240,175, 42, 0,248, 21,139, 20,182,125,246, 31, 22,224,249, 42, + 85,157,163,186,141,114,127,249, 2,248, 94,181,144, 71, 47,207,237,138, 7,233,122, 95, 85, 28,239,213, 38, 98, 92,124, 86, 15, +132,189,160,248,254,253, 39,240,254, 39, 21,223,127,196,206,125, 39,240, 50, 59,246,133,192,178,129,237,191,144,168,242,223,185, +143, 41,250, 47,247, 26,122,235,173,183,135, 24,168,103, 64, 63,255,135,190,238,172,159,121,237,179,207,251, 55, 85,172, 88,159, +214, 16,102, 16,154,148, 71, 23, 64, 3,178,235, 28,170, 39,119,162,219,207,220,118,128,151,188,225,175,184, 99,163, 97,121,101, +137,218,123, 6, 3,207,208, 11, 94,135, 72,104,120,235,251, 63,139,119,142,159,125,241,229, 41, 98,127,248,215, 18, 62,245,151, + 16, 86,161, 90, 74,122,187, 89,205,227, 47,220,125,250,147, 47, 61,253, 89,239,255,196,109,215,147, 82, 4,199, 29,173,155,112, +238, 88,118,197, 81, 0,236,104,224,116, 79,246,166,133,232,242,137,199,202, 75,139,200,181, 70,111,231,136,244, 50, 85,125,249, + 61,228,195,175, 21,145,171,142,113,188, 27, 85,245,213,118,188, 28,237, 94, 97, 78,192, 34, 88,102,192, 60,106, 29,126,113,110, +255,252, 32, 94,239,141,199, 58,222, 3, 36,146,123,198,130,211,241,251, 39,112,152,199, 22,223,223,170,170,207, 4,126, 11, 56, +125,225,117,231,216,215, 55, 3, 63,174,170, 47, 20,145,127, 62, 73,174,161,183,222,122, 59,201,236,203, 41, 5, 19, 64,118,172, + 84, 87,188,249,187, 30,241,199,175,255,198,243,254, 13, 53, 76, 99,157,202,209, 36,192,192, 65, 37, 80, 9,202, 12,127,241,211, +144, 77, 93,127,141, 87,255,238,251,248,204, 23, 15,113,168, 17,110, 93,109,248,194,161, 25,159,189,115,131, 27,239,220,224,192, + 36,160, 85,197,214,173,155,248,147,127,250, 12,215,126,216,154, 94,249, 10,127,193,211,208,195,123,193, 59, 16, 37, 10, 12,151, +134,188,240,242, 71, 92, 65,202, 13,222, 91, 85,255,107,239,230,235,138,133,232,252, 25,247,182, 85,172,229,128,203,227,188,250, +158,192,199,232,231,107, 22,156,139,187,179, 87,220,195,241,174,165,163,169, 41, 89, 7,163,201, 75, 22,226,234,187, 59,191,163, +156,219, 3,125,189, 87, 63, 88,141,127, 84,117,235, 2, 3,241, 65,224,173, 39,112,168,157,197,247,143,179, 72, 60, 3,250, 29, +164,118,176,255, 0, 28, 94,120,102,127,167,170, 79, 57, 73,174,161,183,222,122,123, 8,128,122, 22,197,109,250,234, 11, 55,255, +200,251,190,255, 81,127,244,194, 75,119, 60,110,125, 61, 16, 8, 16,235,116, 84, 47,136, 23,164, 18,196, 59,164, 18,220,153,143, +110, 15,114,211,237, 7,249,139, 15,125, 30,150,151,186, 50, 55,239, 9, 56,142, 76, 3, 55,237, 93,231,198, 59,214,169, 85,136, +222,243,206,143,126,174, 59,129, 93, 15, 71, 55, 14, 3,141,157,141, 66, 19,185,228,236, 29, 23, 2,103,112,255,109, 84,115,165, + 69,145,247,150,226, 45, 1,234,192,189,112, 10,174, 93,248,236, 99,217,117,199, 89,178,118,221, 49,206,233,138, 5,128, 61,158, +243,123,203,131,116,189, 55, 62, 88,253,247, 85,213, 89, 52,157,155,191,204,128,151,181, 91, 28,220, 59, 43,187,195,253, 0,169, + 55,251,237,164,230, 50,167,139,200,211, 68,228, 41,192,105,192,247,147,196,169,144, 40,249, 55,171,234,150,147,224, 26,122,235, +173,183,147,204,238, 45,253,158,233,246, 51, 95,250,149,167,253,212, 27,159,123,238,247, 14,162,103,125, 22,193, 43,104, 68, 20, + 36, 10,234,197,168,247,244, 22,169,134,184,237, 15,107, 15,116,243,222,195,108,172,215,176,101,212,249, 9,121, 89,113, 14, 84, + 57,184, 90, 83,207, 26,206,222, 90,113,100,210,165, 18,101,243, 30,192,195,116, 29, 89,218,140,162,208, 52,156,191,103,243,238, +209,208,159, 62,157,133,235,239,229,117,189,250,110,254,118,129,129,212, 5, 36,106,184, 85,127,223,139,104,241,138, 99, 0, 43, +247, 20, 93,151, 77,122, 76,185,126,221, 61,128,225,221,217,141,119,115,141,247,234, 88,139,231,246, 0, 94,239,117, 15,226,124, +249, 37,230,123,179,191, 82, 68, 62,120,130,199, 26, 47,252,188, 6,124,173,136, 92,191,112, 79,102,192, 27, 85,245,115,192,159, +219,175,207, 1,254, 29, 39,214,209,240,190,188,134,222,122,235,237, 20, 6,117, 1,216, 60,246, 79,249,133,111, 56,251,117,175, +184,236,180,167,206,102, 48, 25,164,150,175, 26, 20,169, 35,195,161,227, 80, 8,113, 9,231,168,124, 91,193, 46, 0,218, 53,201, +218,189,117, 25, 63, 28, 16, 34,214, 47, 94, 13,212,237,127, 21,240,142,181,245,154,207, 77, 38,140, 30, 87,156,170, 6,208, 58, + 53,165,113, 91, 16,141,104,140,236, 88, 25, 44,111, 93, 30,110,191, 99,182,113,175, 24,136,227,108,154,242, 42, 82,222, 57, 55, + 79,121, 7,119, 47, 94, 43,173, 44, 51,187,192,154,182,156,136, 29,139, 33,248,114,169,232, 19, 2, 97,123,237,101, 15,240,245, + 62, 40,160,174,170,255, 23,240, 67,197,175,222, 32, 34,191,246,101, 28,114,157,212,211, 61,219,213,139,128,190, 48, 70,255,183, +170,190,165, 96, 48,190,251,222,130,250,253,112, 13,189,245,214,219, 41, 8,234,153,202, 30, 92,178,103,252,226,223,125,225,249, + 87, 63, 97,247,242,238,141, 89,132, 81,149, 0,189,142, 84,117,100,184,228,249,241,119,126,233,195,231,110, 27,110,251,222,203, + 78, 59,119,162, 32, 57, 90,175,107,226,157,159,197,157,147, 68,191,151,158,181,147,127,117,209,110,254,254,250,189, 80, 85, 9, +196,157,206,247,133,139,233,189,147,253,107, 92,116,122,183,190,235,225, 91, 96,122, 24,157,110, 67,108,199, 24,141,217, 41,192, +113, 63,208,239, 34,114,181, 69,145,185, 19,221,241,136,215,142, 6, 78,247,102, 47,247, 7,195, 14,220, 7,175, 61,149,174,247, +120,192,240, 63, 1, 63, 93,252,234,119,129, 31,252, 50, 15,187,186, 0,234,191,125, 28,239,249,173, 2,212, 31,161,170,187, 69, +228,142, 7,241, 26,122,235,173,183, 83, 12,212, 51,221,190,251,170,175,216,241,202, 95,125,206,217,255,254,244,241, 96,184, 30, + 5, 89, 78, 33,184,206, 34,227,168, 76,134,240,131,111,251,220,219,174,121,223, 29,127,252, 63,174, 58,239, 71, 69,141,121,247, +166,126,175, 28,122,123,183, 17,148,115,194, 79, 60,239,137, 60,231, 19,127, 14,147, 26, 70, 67,219,221,205, 64, 61, 2, 26, 97, +117,157,199, 63,242, 44,190,227,107, 30,213,190, 55,222,113, 61,170, 53, 18,102,233,133,170, 56, 81,246,175, 78, 54, 14,175,207, +142,220, 95, 55,203,128,189,220,178,245, 74,238,101,105, 27,137, 2, 63,209,206,116,167,226,174,112,167,244,245,170,234, 15, 0, +191, 80,252,234,143,129,239,186, 15,114,208,119,146,244, 31, 0,251, 68,228,115,199,201,140,176,224, 48,221,241, 32, 94, 67,111, +189,245,118, 10,129,186, 0, 82,121,185,248, 53, 95,127,230,175,190,242, 95,159,254,172,166,129,245,202, 33, 35,135, 70, 69, 55, + 2, 43,149,112,243,180,153,124,247,255,188,233, 55,222,245,233,195,191, 11,196,207, 31,170,111, 71,244, 18,109, 35,117, 96,188, + 76,184,249,189, 84, 7,110, 70,182,159, 7,192,179, 31,127, 30,215,252,187,175,229,135,254,199,123, 88, 63, 56,133,241, 40, 41, +218, 85, 97, 86,195,250, 6, 79,184,100, 15,127,244,202,111, 96,101, 60, 72,103, 85,111, 16, 62,241, 86,100, 56, 74, 10,123,141, +104, 12,224, 28, 55,220,118,112,239,100, 22,246,114,255, 9,229, 32,229,156, 51, 93,125,197, 9,188,255,154,135,250, 62,235, 15, +149,235,181,218,253,146,158,254,107,224,219,142,182,217,202, 9,216, 39,129,199,100, 80, 63,206,247,236,187, 27, 70,228,193,184, +134,222,122,235,237, 36, 51,119, 15,160,190,251,181,207, 57,235, 13, 63,250,212,211,159, 53,105,160, 94,174,144, 37,143, 70, 96, + 61,176, 50,246,252,237, 45,107,183, 95,254,198, 79,254,228,187, 62,125,248,191, 2, 55, 3, 95,250,212,157,147, 79,225, 4,130, + 5, 2,222, 37,138,189, 89,165,126,239,235,231, 62,228,123,159,254, 40,254,225,231, 95,192, 15,125,227, 99, 56,127,199,136,177, +214,108,114,129,167, 92,180,139, 95,255,190,175,227,221,175,185,146,243,247,116, 66,225,230, 3,191,129, 30,188, 25, 6, 35,212, + 68,120, 52, 1,156,240,169, 47, 30,248, 28,169, 89, 71, 60,201,238,243,177, 84,231,167,250,249, 93,113,138, 94,239,241, 0,250, +119, 3,255,173,112, 16,223, 13,124,139, 9,215,238, 11,251,120,241,253,232, 56,223,179, 40,174,155, 60,200,215,208, 91,111,189, +157, 66,145, 58,231,108, 31, 94,254,221,143,217,241,244,217, 36,194,166, 1, 50, 20,116,166,248, 73,195,104,197,243, 59, 31,222, +247,201, 31,248,163,155,127,225,240, 70,120,143, 69, 17,107,192,248,221, 55, 28,249,167, 91,143,212, 47,221,181, 60,168,130,106, + 87, 4,183,180, 76,252,252,187,105,222,247, 43, 84, 79,237,244, 58,143, 61,119, 23,175,127,233,211,248,249,239,104,184,109,255, + 26,195, 65,197,153, 59, 86,238,114, 62,225, 19,127, 74,243,145,223,129,241,114,242, 58,156, 71, 67, 68, 66,164,158, 76,121,235, +123,110,120, 31,169, 31,253,253, 9,234, 39,146, 31, 46, 5,101, 87,168,234,246, 7,171,206,250, 24,118, 99,113,126,151, 29, 39, +232, 93,118, 10, 95,239, 61, 93,219,139,129,223, 40,192,240,253,192, 55,138,200,198,125,248, 49,239, 46,190, 63, 83, 85,199,199, +177,159,249,226, 62,234,183, 63,200,215,208, 91,111,189,157, 66,145,122,117,222,142,209, 69,219, 71,158, 38, 38,117,187,174, 7, +134,179,128,140,132, 87,254,213, 23,174,125,201,239,220,240, 31, 15,111,132,119,218,226,114,136, 84,243, 90,223,114,112,246, 79, +111,189,254,192,135, 6, 21,232, 36, 0,138, 56, 82,189,250,242,102,194, 71,126,155,250,218,159, 64,215,239,156, 15, 67, 6, 21, +231,237,217,122, 87, 64,175, 55, 8,239,127, 35,205,123, 94,131,140,134,136,247, 41, 95, 63, 24, 65,221, 48,112,240,143,159,186, +245,182,191,255,196,237,215,146,122,191,223, 47,160,190,176,197,231, 98, 68,122,119,182, 88, 38,246,242,147,108, 28,148,231,183, +221,218,182,158,104,148,126, 42, 92,239,221, 61,227,111, 37,137,214,242,220,248, 32,240,245, 34,114, 95,107, 53,222, 77, 71,167, + 15,128,203,143,227, 61,207, 42,190, 63, 72,162,240, 31,204,107,232,173,183,222, 78, 33, 80,247,159,184,125,227,211, 95,156,133, +102,121,217,179, 92, 7,150, 61,172,250,168,223,254,135, 55,254,254, 47,190,227,214,159, 2, 62, 76, 18,252,172,145,250,173,231, +141, 94,110,255,213,191,187,253, 45,135,234, 64, 85, 7,168,163,237,133, 78, 18,206,173,108, 38,222,240, 23,204,222,250, 18,194, +199,223,138, 30,254,210,209, 23,216,181,189,196, 27,174,101,246,199, 47,165,249,224,127,135,241, 24,124,149,154,205,136, 32,110, +128, 76,106,240,202,207,190,249,131,127, 12,124,214, 62,255, 62, 7,117,107, 56,179,184, 57,201, 91,142,231,189,214,159,188, 20, +139,189,234, 30, 34,221, 7,218,222,194,188, 40,237, 85,199,113, 47, 94,117, 10, 95,239,177,174,235,185,164,118,169,121, 43,225, +143, 3,207, 20,145,131,247,245,103,217, 6, 46,165,226,253,199, 84, 85,238,230,220, 54, 51,175, 86,127,187,136,196, 7,243, 26, +122,235,173,183,147,207,238,150,126,223,183,218,124,224,133,191,127,211,213, 63,244,180, 61, 87,238, 92,174,182, 94,127,231,228, +139,255,237,189,119,188,237,227,183,172,255, 25,112,171, 69, 11,179, 5, 16, 13,192,198,103,247, 78,254,226, 53,127,115,219, 21, +175,251,134,115,158,209,172, 54, 80, 57,100,228, 59, 50,112,121, 11, 52,135,168,223,251,115,200,112, 19,178,243, 18,220,142, 11, +161, 26, 67,172,137, 7, 63,143,238,253, 56, 76, 14,194, 96, 0, 43, 69, 3, 46, 5,162, 67,167,194,112,147,227,183,174,253,212, + 39,254,250, 95,190,244,251, 36,234,253, 62,221,147,218,162,243, 43,184,235,254,226, 7,184,119,202,247, 87, 48,223,123,253, 29, +182,205,232,181,199,241,249, 87, 26, 16,220, 47,130, 51, 17, 57,160,170, 87,211,149,235, 93,161,170,111, 58,218, 22,173, 6,232, +199,179,237,233, 73,123,189,199,248,220,103,154,115, 99,138, 76, 62, 13, 92, 33, 34,119,126, 25,199, 44,213,229,207, 19,145, 63, + 89,120,201,207, 3,223, 67, 42,109,123, 26,240,122, 85,253,145, 69,176, 86,213,101,224,205,164,166, 51,216,124,187,250,129,184, +134,222,122,235,237,161, 3,234, 53,176,255, 31,110, 60,242,255,254,195,141, 71,222, 97, 11,207, 62,224, 54, 18,213,190,106,175, + 89, 44,139,201,251,173,223,246, 75,239,188,245,245,143, 63,103,249,252, 23, 61,110,231,195, 55, 14,207,144, 45, 67, 24,185,212, +105, 14,133,193, 0, 25, 12,146,130,125,223,135,105,238,184,174, 61,156,184, 10,170, 33,172,108, 90, 88,185,128, 89, 64,227, 18, +227,209,144,235, 62,115,251,129,255,240,223,223,255, 58,139,210, 55, 56,129, 29,218,244,110, 90,163,221, 29,104,221,155, 60,177, +117, 75,123, 5, 93,207,237, 12,116,215,146,232,234,197,190,236,217,153,200, 17,238,171,239,231,177,112, 13,243,219,160,190,220, +104,248,107,138,115,187,130, 68,165,111,183, 72,252, 0,199,200,193,159, 2,215,187,104,127,194,188, 96,109, 29,248,255,142,119, +104,136,200,215,159,128, 51,181,215,202,205,126,203,126,245, 31,128,167,169,234,111, 0,215,219,252,124, 2,169,123,220,185,197, + 91,255,111, 17,249,200,201,112, 13,189,245,214,219,169, 3,234,193,128,187, 49, 16,119,246,187,169,125, 5,142,189, 19, 90, 3, +172, 70,213,143,254,219, 55,223,244,179, 59, 87,170,215, 60,243,225, 91,207,154, 28,154,193,230, 1, 50,246, 93,253,122, 66,112, + 24,142,239,190, 14, 77,129,168, 48, 13,196,195, 51,150,206,216,195,245,183, 30, 88,189,234,234,191,187,250,208, 90,253,158,194, +201,184,191,237, 58, 3,244,123,221,217, 76, 68,174, 41, 26,216,108, 47,128,242, 65, 87,136, 91,180,126,149, 69,215, 23, 20, 96, +251,218,163,188,252, 0,112,213, 49,254,118, 74, 92,239, 81,108,105,225,231,175,120,128,238,251,111,171,234, 25,192,207,217, 28, +123, 60,240,134,187,121,203,175, 0, 63,115, 50, 93, 67,111,189,245,118,242,152,187, 7, 24,109, 72,249,242, 3,192,126, 18,221, +190,110,191,215,123,120,239, 20, 56,116,120, 35,188,235,121,215,124,250, 63,255,206, 7,247,125,114, 60,116, 12, 14,215,196, 67, + 53, 76, 98,123, 20, 65, 16, 57,202,151,253, 35, 0,179,136, 30,110,144, 3, 83,150,182,111,227, 93, 55, 30,186,237, 89, 63,121, +237, 79,222,120,251,234,255,178,115, 91,231,254, 83,189, 95,107, 17,235, 85, 34,242,196, 19, 1,244, 18,232, 72,237,101,175,225, +248,154,171,188,133, 68,101,223,239,155,152,216,166, 48, 79,188,135,207,186,150,180,237,233,117,167,250,245,158, 44,102,105,134, +203,129,127,186,155,151,125, 4,248, 38, 17,249,225,163,229,210,123,235,173,183,222,224,254,109,210, 2, 73,172,179,108, 81,218, +163,190,251, 41,187,191,231,103,158,125,214, 55,157,181,117, 88, 53, 83,165,169, 4,198, 30,169, 92,138,220, 93,113, 58,170, 16, + 64,155, 8,147,128,175, 35,131,129,112, 56,192,207,189,103,255,223,254,242,219,110,120, 83, 29,226, 7,232, 74,233, 78,201,102, + 26, 70,113, 47, 82,216, 55,146,118, 55,187,246, 65, 60,175, 76,135,151,123,162, 95,123,156,187,193,157,114,215,123, 18,141,135, +139,128, 39, 1,103,218,252,188, 13,248, 71, 17,249, 76,191, 92,245,214, 91,111, 15, 54,168,103, 96, 31,147,182,154, 60,253, 97, + 59, 70, 95,247,242,175,222,253, 45,223,121,217,174, 39,159,189,121, 48, 64, 5, 85, 37,138, 16,139,179,113, 10, 78, 53,149,174, + 9,236,155,132,248, 7, 31,222,255,209, 55,189,239,142,183,125,228, 11,107,111, 7,190,104,204,193,198,169, 10,232,189,245,214, + 91,111,189,245,118,170,129,122,254,156, 33,176, 2,108, 1, 78,223,177,169,250,138, 39,159,183,233,201, 47,120,220,142, 39, 61, +238,172,229, 51,182,143,252,202, 74, 37,195,202,137,107, 34,186, 30,226,236,208, 44,174,127,230,142,141,189,111,249,208,254,127, +249,251, 27, 87,255,233,150,131,179,235,128, 47, 1,135, 73, 57,244,251,173, 38,189,183,222,122,235,173,183,222,122, 80,191,251, +207,114, 36,117,238,178,125,109, 6,118, 0,123,150, 71,110,231,184,114, 91, 6, 94,134, 77,212,102,210,232,145,245,105,216,167, +202, 29, 36,138,253, 48, 41,111,190,198, 61, 11,245,122,235,173,183,222,122,235,173, 7,245, 7, 16,220, 7, 22,189,231,175,138, +174, 97, 6, 22,129,215,246, 53, 51, 32,111,122, 48,239,173,183,222,122,235,173,183,147, 7,212, 23, 63, 63,131,124,254,191, 4, +117, 45,254,239,129,188,183,222,122,235,173,183,222, 78, 98, 80,191,187,243,233, 65,188,183,222,122,235,173,183,222,122,235,173, +183,222,122,235,173,183,222,122,235,173,183,222,122,235,173,183,222,122,235,173,183,222,122,235,173,183,222,122,235,173,183,222, +122,235,173,183,222,122,235,173,183,222,122,235,173,183,222,122,235,173,183,222,122,235,173,183,222,122,235,173,183,222,122,235, +173,183,222,122,235,173,183,222,122,235,237,126, 50,185,236,180, 93,170,128, 56, 16, 60, 14,240,206, 33, 78, 82, 39, 24,201,173, +222, 28, 34,224, 36,245,135,241,222,225,108, 31,116,239, 82, 35, 56, 5,188, 19,196, 9,131,252,122, 0, 17,236,109,120, 71,251, + 62, 39,224, 17,162,166, 93, 87,157, 19,124,126, 33,138, 23,193,171, 18, 81,156,203,251,174, 87,136, 6, 28,130, 31, 8, 62, 4, + 70, 78,240, 40, 30, 80,167, 16, 97,136, 50, 85, 37,160,108, 21, 88,169, 28,195, 42,245,163,165,242, 92, 60,155,240,132, 11, 4, +249,198, 11,224, 43,214,144, 29,207,131,241, 51, 96,184, 2,178, 9,100, 37, 93,188,206, 64, 87,161,190, 29,142,188, 14,253,244, + 77,240,143, 99,226, 71,239, 96,114,243, 97, 14, 15,132,102,101,204,157,107,240,169, 53,144, 8, 91, 6,176,105,224,112, 46, 82, + 71, 88,171,133,105,128,129,128,162, 4, 32, 58, 65, 67, 32, 70,104, 52,221, 59, 81,235,190,163,160, 2, 66,218,165, 78, 28,169, + 57,110,126,104,154,254,182,216, 83,183,253,187,245,237,145,246,169,104,123,255,219,215,216,126,245,115,191, 3, 84, 28, 98, 71, + 83,181, 70,126, 66,219, 10, 72, 36,245,242,245,214, 11, 80, 4, 42, 15, 81, 29, 81, 99,215, 49, 72, 23,143,156,118,211,109,255, +164,224,237, 69, 51,210, 56,113, 2, 3, 7,227, 42, 29,171,137, 16, 3, 72, 37, 12, 61,108, 95,169,216,188,175,230,172, 93, 75, + 84,223,117, 22, 60, 50,192,142,139, 96,211, 85, 48,126,108,250,128,250, 19,176,246,103, 48,109, 64, 46,128,112,115, 58,250, 48, +192,182, 43, 97,240,104, 82, 71,226, 85, 88,127, 39,124,238,191,193, 39, 60,251,174,190,137, 27, 42,229,208,192, 81, 7, 88,118, +214,203, 88, 32,186,244, 92,163,192, 76, 29,177, 14,204, 80, 98,128,105,132,160, 16, 4, 66, 80,102, 81, 17, 32,106,250,125,190, +110, 5,156, 83,198,164,107,209,152,126, 31, 21, 26,148,202,158,231, 84, 96, 26,210, 51, 70,211,120, 73,131, 99,126,140, 84, 54, +142, 28,218,182, 98,172, 28, 12, 68, 24, 58,216,228, 97,164,202, 29,181,114,103,147, 78, 98,164, 80, 9,172, 6,216, 80,109,231, +221, 88, 96, 87, 5, 35,129, 89,132,101,129,109, 14,238, 12,202,135,167,112, 48, 40,162,202, 52, 20,231,148,199, 93,241,115,110, +255, 88, 14,153,114, 24,196,252,224, 17, 68,180, 29,125,206,190,198,164,243,139,105, 10, 19,237,218,134,164,251,155,199,123, 69, +234, 49,173, 54,130, 29,202,200,254, 94,147,238,187, 22,195, 48,146,174,119, 18,187,115,245,246,229,138,249,147,223,211,144,239, +143,180, 45, 47, 21,165, 18, 88,178,175,129, 77, 73, 87,206, 51, 73,107,219, 80, 96, 69,210, 39,205, 20,234,252,252,237, 61,209, +198,132,147,180, 17,198, 72, 28, 94,210,239, 39,170, 76,219,215,203,220,156,174,128,136, 16,236,247,145,124,108,101,136,176,221, + 41, 75,192,134,194,106, 76,115,113, 93,149,219,163,114, 32,166,223, 47,139,112,182, 75,235,239, 94, 85, 86, 53,125,102, 19,243, +241,148, 90,161, 70,105,138, 49,156,103,177,179,103,148,231,171,144,215,175,180, 80, 69,164,125, 6, 51,148,105, 84,136, 17,161, +235,239, 93,142,137, 60, 36,212,174, 81,224, 46,227, 34,127,137, 20,231,144, 23,163, 98,237,155, 91, 95, 22,142,131,192,192,121, +156,147, 22,195, 70, 26,113,162,108, 68,152,218,170,231,129, 74,187, 57,165,118,222, 1,233,182, 2, 21,193, 11, 12, 92,197,168, +170, 24,120, 79,227, 61,235,245,140,122, 54, 67, 99, 64, 5,230, 27,164,118,239,165, 56,175,104, 63,167,239,243,249,187,118, 13, +135,132,185,222, 87, 68,160, 81,197,197,200,226,162,172,237,189, 77,227, 20, 85, 69, 52, 29, 72,109, 11, 84, 81,219,226, 92,139, +187, 99,223, 56, 17, 68,237,160, 78,218, 1,235,178, 23,160, 66,144,180, 72, 57,215,157,158, 72,247,254,116,234,206, 62, 43,218, +244,180,133, 6, 1,231,210, 77,117,180,206,133, 83, 69,109, 53, 20,177,197, 33,223, 16,192,185,118,229, 64,129, 74, 4,111, 94, +137,243, 48,208, 4,144, 3, 34, 1, 73,103, 16, 3, 90, 76,205,110,186,147, 30,167, 12, 64, 54, 67,165, 48,126, 1,114,246, 47, +161,151, 68,220,193,237,140,238,156,178,114,100,131,189,190,225,112, 28,224,156, 50,240,201,121, 24,136,226,241, 68,133,202,219, + 57, 69, 5, 17, 6,164,133, 60, 22,231,174, 24,144,219,205,116,206,208,132,136,196, 60,197, 99, 58, 51,129,136, 75,131,217, 97, +175, 41, 39, 95, 66,128,202, 29,107, 11, 59,215, 78,160,114, 2, 36,160, 79,231, 40,136, 57, 22,121,193,138,243,147,206, 0, 61, +109,141,235, 24, 58,101,214,164,201,157, 23,210, 60,233,165,123, 44, 54, 86,180, 3,128,242,243, 21,115,222, 34,106,231,226,134, +130, 87, 24, 58,112,123, 39,236,172, 61,213,183,236,129,199, 4,216,122, 38, 44, 93, 1,163, 75,210, 50, 31,111,129,141, 15,193, +250, 45, 32,231,147,118,230, 5,164, 2,105,138,229, 33,164,101,193,237,132,241, 18,108,153, 49, 64, 88, 82, 69, 42, 24, 84,224, +196, 17, 52, 18, 98, 2, 58,196,158, 31,218, 62,180,236,103,229,169, 32, 2, 35, 73,139, 67, 99, 99,185,156, 62, 18,211,177,199, + 62, 57, 50,117, 76,227,219,197,244,158, 1,105, 81,198,165,191, 57,233, 6,197,220,115,178,181, 97,104,192,224, 13, 76, 42,215, + 57,132,211, 38,237,124,180, 63,164, 5, 54,131,144, 23, 24,219,235,130,129,231,192,198,221,192, 9, 42,105, 54,228,215, 45, 11, + 28,178, 25, 49, 20, 3, 37,251,140,202,156,153,238,153, 43,206,238, 67, 67, 90, 59,202, 5,220,139,206,129, 67, 40,158,200,178, + 36, 80,143, 6,110, 83, 45,150, 29, 77,159,237,153,239, 29,157,207, 91,165,115,192, 26,187,166,198, 0,222,171, 50, 64,216,148, +150, 20, 54, 52,189, 70, 10, 80,145,226,222, 6, 32,168,166,177,216,190, 70,147, 19, 75,218,128, 2, 77,199, 31, 73,186,255,106, + 7, 25,230,115,162, 3,241, 65, 1, 42,106,159, 91,231,207, 85, 69,196, 17, 36,129,115,176,187,181,100, 19, 76,237, 94, 52, 10, +162, 9,136, 43, 3,180, 96,231, 80, 9, 8,142,101,129, 37, 17, 20,101,162,145,198,230, 83, 0,106, 21, 14, 3, 51, 85, 60,202, + 70, 84, 84,160, 65,136, 54,162,156,164,135, 53, 18, 97, 44, 74,208,132, 3,141, 57,143,216,243,172,138,235,105,180,187,150,228, +128, 69, 60, 14, 17,161, 22, 80, 21,162,179,207,137, 58,119,159, 99, 17,160,116,200,210, 61,149,242,181,249,222, 75,225,212, 57, +145,185, 77, 64, 90, 80, 84,230, 28, 3,230, 86,245,136,199, 83, 1,155,156, 48,148,138,195, 54, 94,199,121, 12,199,128, 67, 65, +149,218,214,232, 88, 2,122,123,254, 66,144, 52,143, 91,108,243, 3,130, 11,136,166, 59,226,142,178,198,249, 34, 62,139,249,170, +139, 49,172,133, 91,226,128,177,243, 44, 47, 47,227, 70, 99,234,160,204, 66, 77,168,107, 66,140, 52, 33,164,232,160,112,145, 68, +161,138,237, 66, 33,173, 71, 40,154,135,178,164, 69, 7,105,189, 36,177, 40, 27,115, 0,164, 13,187,156, 69,245, 98,139,185,189, + 63,135, 23,237, 49, 12,204,180, 59,249,204, 10,136,218,205, 17,177,133, 95,108, 48,119,222,178, 35,180,171,154,152,135,216,104, +158,116, 58, 7, 16,222,188, 37,181,133,111,232, 34, 34, 46,121, 50, 2,113, 45,224,107,187, 41, 98,199,197,131,248, 98,184,196, + 52,140,252,102, 24, 61, 1, 54,127, 29,114,209,219,209,195,219,112,251,182, 48,254,212, 12, 38, 13,181,171, 24, 8,108,114,145, + 37,192,139,208,152, 71,229, 21,212, 67, 84, 37,218,125,112, 34, 56,169,168,189,226, 66, 36,154,119,136, 43, 34,118, 27,220, 62, + 33, 10,209,158, 79,200,215,234,238, 58,136,219,255,157,177, 31,230, 32,229,209, 21, 53,226,237, 25, 32,221,164,202, 32,221, 29, + 36, 13, 74,113,198, 20,196, 4, 74,190, 93,196, 28, 34, 49,129,138, 70,212,238,119,142,212, 18, 56, 59,134, 30, 26, 34, 46, 64, +140,218,122,230,184, 52,144, 99, 72, 3, 93,204, 9,112,146,198,128,139, 9, 48, 6,164,232,125,115,173,156,113, 40,176,233,249, +103,194, 83,129,173,123, 96,252, 20, 88,186, 12,220,102,208,195, 48,253, 16,172,127, 18,166,147,132, 16, 58, 3,183, 12,126, 25, + 6,203, 32,203, 54,173,166,246, 76,183,193,210, 54,216,117, 59,195,229, 1,123,102,235,204,150, 29,179, 0,235,117,100, 18, 32, + 24,120,103, 70, 37,196, 4,244, 33, 58, 52, 51, 19, 58,207,152, 68,187,137, 78,230,129, 61, 47,232, 85,147,174,221,107,154, 7, +193,165,215, 52, 81, 24, 59,101, 57,194,204,117,142, 80,158,163,217,113,136, 54,126, 70,249,158, 21,127,247, 46,157,235,106,132, +181, 90,187, 69,199, 94, 27,237, 57,143,108,236,212,161, 3,193, 28,169, 4,151, 22,171, 1, 9,216,110, 13, 65, 13, 0, 0, 32, + 0, 73, 68, 65, 84, 43, 1,167,233,122,102,115, 32, 93, 70,235,105,177,109,138,107,141,210,177, 20, 57,174,174,200, 44, 83,199, +174, 5,123,223,212, 0, 44, 59, 0,211,194,241,240,154, 64,116, 84, 56,149,100,167, 66,161,145, 14,112, 92,187, 6, 40, 51,133, + 41,202, 8, 88, 17, 88, 66, 88,151, 20,141,182,247, 83,187, 8, 50, 44, 68,148, 33, 3,140,118,247,186,124,206,121,157, 89, 18, +216, 36,146,152, 16,133,117, 77, 78,151, 20, 14, 94,158,203, 30,152,153, 51, 84, 91, 52, 95, 58, 59, 67, 18, 83, 20,237,158,172, + 27,224,136, 8, 67,187,155,181,157, 55,118, 95,182,122, 71,133,178, 30,148, 96, 75,195, 58,112, 40, 10, 19,251,124,204, 89,186, +131,116,110,209,220,177,236,148,169, 64, 84,105, 29, 85, 81,101,217,214,250,166, 24,135,195, 5, 86, 35,154,147,225, 84,113,162, +157,147,105, 78,206,196, 57, 26, 18, 43, 25, 11, 71, 42,127,102, 11,108, 5, 22, 57, 41,162,236,133,144, 75,237,115, 97,158, 17, +114,204,163,185,204,133, 49,105, 77,246, 34, 44, 9,140, 69, 88, 5, 38,230, 60,165, 64, 85, 17, 39,104, 84, 84, 59, 64,159,139, +139,165,163, 12,242,216,142, 22, 68, 69,186,193, 41,234,138,160,136,121,224, 45, 93, 74,157,103, 50,165,192, 78, 15, 12,125,133, + 27,140,136, 49, 82, 57, 7,126, 68, 13, 56,141, 72,240, 52,245, 12,140,149,201, 8, 94, 73, 62, 82, 11, 6, 29,233, 35, 70, 23, + 43, 98, 19, 37, 17, 3,233, 14, 10, 34, 41,226, 75,236,123,114, 55,196, 37,170,206, 25, 37,159,192, 74, 18,230,171, 38,208, 54, +207, 36,104, 76,224,134,107,207, 33, 15,108,143,162, 6,246, 94, 44,142,183,155, 46,133,135,227,236,116, 84,211, 93, 21, 39,184, +168,105, 80, 8,204, 52, 34,234,104, 66, 36, 0,163, 33, 12,124,132,224,136,107,147,196,159,102, 36,109,151,181, 50,162,163,139, +236, 6, 59, 96,211,139, 33,126, 14,185,248,227,112,235, 38,170,189,107,108,254,194, 42,131, 81,205,166,225,144, 97, 52,170,187, +136, 82, 43,187, 61,181, 72,235,237, 2,212, 26, 91,146, 77,132, 20,198,133,136,132, 8, 81,169,156, 35,198,216, 69,228, 2, 33, + 96, 76, 5,109,116,158, 28,161,244, 88, 93,177,224,198,121,222,179, 29,233,145, 69, 0,119, 93, 40,217, 78, 2,181,129, 14, 18, +204, 55, 21,240,226, 16,151,134,123, 57,216, 69, 36, 57, 18,193,174,221, 39, 6,166,202, 3, 95,192,121, 65, 85,237,245,142, 58, + 68, 99,110,186,153, 87,217, 98,130, 64,133, 48, 18,216,236,148, 93,119,204,216,122,217, 14,120,233, 16,182,157, 13,163,231,192, +248, 9,224, 79, 79, 80, 57,187, 17, 86,255, 9, 38,251,147,167, 16,107,155, 33,219,192, 85, 9,220,197,205, 47, 1,126, 59,140, +118,192,150,219,169,182, 13,217,186, 62, 97,125,160, 76,106, 97,221,168,245,236, 96, 69,163,171,243, 68,110,136,115, 52, 71,122, +157,125, 19,211,152, 47, 41,188, 28,107,199,152, 22,100,209, 14, 0, 7,230,236, 4,187, 23,227, 10,124, 20,154,168,212,230,236, +249, 60,225,205,225,117,146, 35,186,110,133,205,167, 51, 85,152,198,152,156, 34,205, 35, 90,168, 68, 25,155,227,148, 1,211,134, + 19, 83,133, 42,106, 98, 69,128,245,144,206,125, 11,176,226,146,147,144,253,200,188, 64,184, 12, 90, 54, 7, 51,112,197,133, 5, +183,164, 90, 27, 59,151, 96,224,144, 23,249, 90,231, 29,130,146,201,201, 79,172, 46,162,223, 80,240,235, 82,208,175,195,246, 51, + 58,208, 9,230, 44, 52,154,128,125, 51, 48,201, 81,150,205,211, 90,139,221,163,180, 59,215, 88,210,176,246,252,189, 43,159,107, + 74,245,173, 24,224,175,197, 68,121,207,232, 28, 35,236,220, 59, 96,207,169, 53,153, 75,163, 5, 59,199, 13, 99,133,198, 22, 36, +169,118, 84,120, 14,128, 26, 77,115, 52, 81,253, 48,176, 52,101,142,246, 55, 20, 14, 42,236,183,239, 7, 70,245,214, 10,107,182, +126,108,146,148,198,153,229, 96, 3,193,139,182,142, 57, 34, 4,115,192, 42,160, 54,103,104,163, 24, 59,161, 24,123,129, 60,231, + 93,139, 25, 67,115,110,107,113,212, 46, 57,255, 65, 59,167,168,100,245, 88, 96,163, 50,205, 94,178, 41, 81,230,157,228, 98,105, + 76, 1, 71, 1,254, 37, 53, 95, 89,170,119, 44, 48,114, 9,208, 55, 16,162,116,243,116, 36,137,101,216, 0, 38,182,238,106,166, +183,219,220, 87,183,112,230,111, 27,148, 24, 26, 52,198,196, 78,101, 86, 70,239,194,184,183,209, 57, 28, 13,240,101, 46, 56, 19, + 28,181, 0,205,140,161,171, 24, 12, 61,222,251,196, 88,169, 50,211,136,162,196,186, 78, 44,182, 57,103, 85,233,253,228,153,145, +105,114,140,134,202, 51,121,145,118,117, 54,163,180,205,121,100, 34, 91,230, 40, 93,231,186,139,203, 78, 68, 75,247,138,180,224, +157,239,153,119,201, 99,116, 46,141,154,104, 81,130, 20,185,123,215,185, 53,237,194,155, 40,119,135,151,148, 43, 25,186, 20,128, + 55,196,228,113,169, 34,150,219,198, 59,130, 42,172,213, 72,227, 33,206,204, 61, 21,208,169, 1, 92,181,176,180, 12, 97,112, 38, +172,252, 32,156,253,147,112,217, 94,228,200, 78,182,220,182,193,174,245, 25,119,110,246, 12,156,183, 72, 56, 45,236,138, 18, 37, +233, 6, 90,180, 39, 22,212, 81,108,239, 81,212,128,134,142,122,137, 26,237, 94,217, 42, 18, 99,231, 44,104,231,222, 75,155, 51, +207, 83, 41,182,209,226, 92, 4,142,182,212,144, 55,250, 62, 77,144,208, 29,215,242, 51, 30, 73,192, 28, 19, 29,158, 39,140, 72, +196, 57, 71,140, 57,221,145,216, 15,103, 90, 6,181, 8,195, 41, 12,109, 96,121,213, 54,234,143, 33, 13,184, 38,216, 34, 39, 93, +228, 53,176,232,222,161,233, 25, 57,216,132,178,235, 64,205,182, 51,151,113, 63,189, 27,118,157, 15,195, 23,193,232, 49, 41, 45, +130, 66,216, 11,147, 15,192,198, 29, 48, 91, 55, 26, 32,130,140,192,173, 44,196, 95, 5, 76,184, 61,176,244, 66,216,118, 13,114, +254, 1,248,176,167,158, 42,235, 33, 69,176,190,160,100, 23,193,169, 90,136, 68,195, 28,252, 24,195, 17, 22, 83, 95, 50, 15,126, +246,127, 48, 71, 43, 42, 52, 17,182, 84, 48, 26,192,122, 16,134,209,232,109, 3,247, 68,177, 11, 99, 20,231,211, 34,225, 84,209, +144,162, 58, 53,154,115, 32, 66, 20,157, 75,129, 12, 93,202,247, 86,162,212, 77, 90,156,113, 41,189,160, 49, 13,175, 97,118,134, + 73, 57,244, 32,176, 25,161,118,202,186,118,115,173,140,144,114,110, 94,138, 84,196,188, 80,131, 57,178, 59,211,146,181,148, 26, +129,238, 94,138,116,121,241, 18,220,109,136, 49, 43, 86,195,234, 40,121,241,146, 61, 41,211, 63, 27, 36,176, 93, 49, 29,193,192, + 34,225,104,128,144, 29,156,166,252,204, 5,112, 8, 22, 89,139,165, 31, 42, 27,188,171, 6,200, 13, 41, 82,206,251, 69, 7,186, +207,106, 36, 81,251,217,185, 79,243, 34, 57,174, 10, 76,236,164,167,118, 44,117,194,192, 64,191,182,200,186,142,210,134, 27, 3, + 18,115, 81, 17, 9,154,158,207, 17, 21, 99, 39, 36,233, 8, 52,209,223, 57, 39,159, 89,145,153,129, 50, 45,251,145,214,172,136, +165, 61,165, 99, 22, 70,118, 94,119,198,196, 66, 76, 99, 58, 31, 41,243,225,118, 13, 30, 24, 69,165,114, 90,168,123, 82, 36, 60, +192, 37,214,110, 65,103,145,103,167, 44, 12,155, 57, 64, 47,242,233,177,136,106, 89, 0,118, 41,194,178, 88,230,211, 69, 88,118, +233,107, 34,194, 70, 76,201,196,161,116,250,162, 37,129, 70, 18,243,219,136,107,169,109, 45,128,217, 21,224,235, 77, 67, 22,112, +104,108,210, 4,106,255,106, 17,249,162,150,233, 40,233,245,204, 76,148,227, 87,236,238,141,157,103,105, 52,102, 88, 13,113,206, +211, 8,224, 60,206, 57, 54,204,201,156,134,136,196,208, 6, 79,149,138, 16,164,136,136, 45, 47, 35, 5,240, 58,243,192,112,174, +163, 8, 52, 3,124,167,224,113, 20, 33,170, 57, 7,206,120, 9,231,100, 30,132, 72,130, 58, 41,126, 70,210,255,193, 0, 67,131, +154,152, 78, 11,106, 66, 58, 82, 68, 93,235,116,180,185, 70,141,168, 1, 86,144, 72, 37,201, 49,169, 13, 4,189, 40, 3, 39,184, + 10,154,153,192,145, 26,234,204, 47, 23,183, 93, 39, 73, 48, 55, 71,172,218, 84, 26, 61, 2,182,252,103,228,226,255,130, 78,214, + 24,125,118, 43,103,127,124, 31,113, 58,101, 99,105, 41,129,156, 68, 26, 81, 84,197,162,180,124,220, 72,204, 98, 52, 11,107, 6, +106,116, 46,193,174,209,181,217,174,214,191,139, 54, 69, 92,151, 51,239, 22, 54, 37,250,124, 9,177, 29,125, 34,106,193,183,107, + 35,237,110,216,107, 55,185,164,244, 16, 93, 98, 63, 92,196,101, 70, 64, 58,141, 67, 90,121, 35, 85,166,225, 93, 90,234,188,166, + 72, 61,143,139, 44, 2, 10,222,232,197,144,120,225, 0,196, 6,154, 16, 91, 33,101, 6,246,161,131,177,139,109,158,184, 18,216, + 58, 13,137,214,124,213, 30, 56,237,124,168, 94, 12,227,199,219,114,166,105,233,156,124, 0, 86, 63, 6,211, 35, 48,155, 66,181, +100, 87, 51, 52, 90, 34, 64, 92, 77,116,124, 27, 15, 54,105,217, 24,158, 13,205, 89,200,198,117,212, 7,103,172, 15, 6,132,152, + 62,187,141,220,196, 0,154,121,103,182,133,241, 76,101,186,196,106,136,104,151,234, 42, 28, 23, 41,132, 69,229,236,110,138, 8, +119,102,145,213, 54,159,206, 97,170, 66,200, 14,144, 9,246, 6, 62, 69, 64, 98, 81,149,152,246, 4, 77,116,162, 15, 74,229, 82, +158, 48, 90,142, 56, 83,178,170,202,134,194, 68,133,169, 42, 49,182,119,177, 91,128, 67, 58,215,195, 49,229,246, 71, 22,173, 55, + 81,152,233,130,192,205,156,198, 16, 19,179,163,134,168,177, 88,104, 23,183, 91, 12,133,170,169,196,251,170, 20,145, 37,101, 69, + 33, 0,234,156,167, 65, 17, 61, 75, 41,220, 42,192,193, 27, 75,161,210, 1, 88,206, 79,175,106,146,171,140,109, 20, 53,210, 69, +202, 72,231,172, 21,153,162,185, 8,176,164,142, 21,101, 2,166, 49,154, 95,180, 35, 73,112, 54, 44, 34,199, 60,135,242,241,134, +162,140, 16,214,201, 57,110, 12, 92,211,154, 53,176,235,173,109,213,115, 6,242, 21,176,100, 26, 12, 85,101, 29,216, 31,147,232, + 77, 16,166,118,157, 65,231, 29,160,148, 11, 23,102, 40,107, 70,195, 15,115,158,190,125,114,243,201, 60, 65, 88, 35,165, 20,102, +106, 84,188, 46,228,139,181,123,182, 65,149,129, 42, 3, 7, 42,182,186, 27, 62, 8,142, 72,180,244,107, 10,176, 6, 44, 56,112, + 69,144,182, 64, 70,205,253,174, 20,144,198, 34,186,239,158, 77, 55,174,150, 36,105, 70,214, 17,166,154, 65, 89, 25, 26,230, 69, + 96,146,157,157, 28,181,170,131, 66, 87,228, 76, 48, 30,165,116, 36,164,197, 52, 39,166,131,144,133,188,254, 81, 88, 8, 22,116, + 2,165, 19,169, 54, 70, 86, 6, 21,219, 55,111,193, 47, 45, 35, 49,226, 92, 69,101,236, 73,211,164,232,220, 13, 42,240,130,134, +180, 78,251,148,134,210,206,187, 40, 78,166, 20, 76,181,143,184, 64,116,165, 3, 89,147,156,117, 17,164,204,107,175,165, 77, 24, +228, 92,141, 44,136, 36,180,163,126,213,117,209,162, 40, 78, 92, 7,250,154, 40,226,246,115,181,115, 62,202, 69,214,145,162, 71, +212, 49,112,129, 42,118,169,139, 74, 28,222, 69,124, 37, 52,235, 2,119,212,232,116,104, 82, 8,223,221,122, 61,156, 68,114,140, +138, 24,192,150, 6, 25,166, 72,113,235,171,145, 71,252, 56,250,244, 49,155, 14,110,229, 97,183, 31,226,118, 55, 97,178, 52, 78, + 2,194,168,166, 81,144,118,145,104, 31, 97, 76, 30,151,198,144, 68, 37,196,116, 63,188, 51, 47, 85,146,226,186,205,155,107,118, +121, 83,116,163, 14, 79, 82, 83,133, 16,230,133,114,153,154,207,207,211,199,130, 54, 77, 30,168, 6,185, 75, 46, 93, 76,116,135, +229,122, 93,142,214, 53, 61, 87, 87, 16,201,106,142,155, 51, 47,179, 18,197,187, 52, 57,242, 34,171,249,177, 42, 68, 23, 83,148, +158,159,131,239, 34,222,156, 87,243,146, 34,197,170, 74, 81,208,146,135,205,107,202,224, 41,219,224,162,211, 65,254, 53, 12, 31, +105,207,164, 78,255, 55,119,192,250,251, 97, 99, 63, 76,102, 80, 15, 83,200,175, 83,144,237, 73, 32, 23, 39, 48,219, 7,203,107, +197, 50,221,101,191,241, 91, 96,155, 75,169, 3,215,229, 79, 75,138,215, 89, 14,188,157,176, 85,138,230, 93,236,198,241, 44, 22, + 30, 77,232,132,161,170,138,120,215, 58,102, 90,140,253,210, 6,133,194, 91, 20,150, 28, 84, 33,249,156,117,166, 95, 37,127, 22, + 45,128,102, 2,168,105,186, 8,119,104, 90,136, 38, 38,149,190,179, 8,112, 18,104, 41,208, 28, 81, 54,154, 41, 96,139, 2, 21, +106, 99,182,166,116,170,251, 37,201, 57,108,155,243,210, 69, 69, 51,151,216, 4, 47,194,212,216, 3, 89, 88,104, 83,174,177,212, +138,148,162,161,206,221,170,142, 34,237,212, 66, 88,151,165,158,194,188,142, 70, 23, 22,198,202,126, 25,237,134, 74,235, 96,195, +196,158,229,184,112,172,114,164,185,178, 16,197,151,145, 96, 22, 17,102, 5,254,192,128, 54, 85,218, 36, 17,172, 20,224,239, 74, +138,121,225,153,143, 12,108, 2,202, 84,165,213,204, 84,139, 14, 80, 91, 21,160,140,115,228,111, 58,162, 0,172,199, 68,181, 79, + 45,114, 11, 40, 7, 45,106, 63,150, 34,124,102,207,119, 36,137,245, 41,215,106,135, 82,107,202,197,231,156,255,196, 28,133, 70, +165,173,120,136, 11,122,146,188,198,100,209, 95,140, 80, 57, 65,165, 67, 88, 21, 65, 53, 69,236,165,115, 88, 21,168,151, 83,135, +193,158, 81,208,121, 0, 47,211, 51,190, 76, 9,105,231,100,182,207,173, 8,150,167, 69,165,205,208, 38, 77,134,180,172,112,143, + 8,149, 19,164, 74,235,106,204,194,108, 5,231, 92,155,214,117, 6,252,222,156,150, 38,139, 13, 77,128, 20,109,157,206, 58,140, +120, 23, 2, 75,138,212,169, 51,109,135, 90,197, 81, 98, 72, 42, 95,225,171, 4,228,226, 43,188, 23,106, 28,135,102, 83, 38,235, +135, 25,185, 1,163,225,144,102, 56,166,137, 19,203,173,155,250,221, 75,151,211,142, 54, 49, 59, 79, 35,166, 73,236, 76,177,190, + 16,165,119, 96,161,173,158,186, 19,188,217, 68,201, 37,109, 11,131,218,201,252,136,203,185, 97, 17,109,193,189,144, 64, 24,173, +221, 81, 31,106,220,157, 47,156, 3,113, 9,236,209,208,130, 68,109, 74, 77, 39, 32, 46,178,105,217,177,115,139, 32,107, 2,235, + 1,153, 68,139,204, 93,151, 1,211,181,132,168,238,140,163, 80,183,211, 68,237,142,191, 18,118,255, 40,124,205, 47,226,116, 51, +155,255,188, 98,240,197,253, 28,116, 19,142, 44, 47,209,136,152, 74,191,243,247,197, 70,153, 11,130,196,216, 10,117,208,164, 30, + 21,205, 17,109,102, 72,192,123, 73,164, 85, 8, 45,161, 32, 57,215,174,225,174,138,244, 54,162, 52,117,181, 82, 76,192,142, 33, +192,165,170, 0, 23,211,100,203,185,119,103, 30, 31,150, 46,145,214,205, 11,243,229, 45, 98,142,151, 79, 66,170,236, 97, 71, 59, +126,180,114, 30,138,212,138,179,103, 23,165, 91,252,242,128,247, 70,193,143, 92, 2,184,165, 38, 48, 82,143,123,248, 10, 34, 35, +240, 59,192,143, 76, 85,227,147,111, 61,253, 24, 76, 14, 66,152, 66,157, 22, 12,209, 8,113,154,158, 97, 16, 83,190, 71, 8, 7, + 97,176, 1, 44,207,187,250,238, 52,228, 49,203,200,255, 62,140,175,187,136, 56,171,183,157, 81, 18,222, 60,167,218,137,229, 55, +211,133, 36,226,178,211,118,168,206,235,121, 37, 59, 98,133, 18, 82,140, 5,169,116,158,118,171,108, 5,170, 99,114,124, 6, 46, +221, 23, 9,105,241,214,152,233, 83,109, 35,120,236, 51, 51,107, 48, 52,237,133,138, 50, 11,105,177,143, 64, 29,147, 58,125, 96, + 11,119,166, 63,115,148, 91, 23,165,113, 85, 76, 63, 79,141,229, 26, 91,117,201,160, 85,253, 91,212,104, 74,247,129, 69, 56, 81, +211,179,115, 72, 82,145, 23,202,111, 45,227,192, 5,102,178,140,182,178, 35,225,139,212, 96,118,104,114,154, 34, 22,116,108,233, + 60,100,189, 72, 25, 9, 38,109, 77, 87,106,213, 42,221, 77,104, 55, 44,114,246, 13,221,245, 45,205,187,126, 45,152,123, 3,253, +145,192,216, 68,100,171, 6,100, 94, 74,250, 87,231,104,228, 88,204,155,202, 4,110, 41, 45, 96, 37,135,210,229, 99, 7,197,121, +137,221, 95, 44, 50, 95,178, 99, 76, 45, 58,207, 57,238,124,239, 14,107,202,237, 75, 1,214,186,144, 50,105, 10, 13, 65, 64, 24, + 74,186,142,105, 78, 63, 88, 30,191, 54, 6,161, 49,182, 39, 75,235, 18, 80,207, 59, 3,177,248, 33,144,242,239,121,253,136,115, +225,170,182, 65, 89,171, 89, 40,216,150, 12,196, 57,229, 23,115,153, 99,145,146, 41,211,174,229,161,245,104, 37,109, 54, 70, 99, + 72,250,175,202, 74,250,130,233, 12, 2, 88,181, 77, 2,105,135, 80, 59, 95,212,235,165, 40,124, 32,157, 38,196,105, 2,127,111, +215,227, 92,170,150,193,214, 2, 87,232, 4, 92,113,127,180, 43, 16,179, 74, 17,135, 56,151,212,252,170,169, 44, 56, 42, 65,148, + 67,117,205,198,129,253, 44,143,134,108, 26, 47,195,112,196,106,211,176,177,177,198,146, 10, 75,227, 33, 50, 28,227,196,179, 46, + 66, 51,155,161, 49, 82, 85,222,163, 69, 60, 46, 5,229, 85, 10,230, 22,201, 37, 89, 16, 73, 81, 68,233,106, 94, 96,101, 81,156, +162,230,141, 40,206,120, 66, 39,157,194,175, 84,213,231,168,222,187,124,209,230, 40,152, 71,227,219, 76,180,182,245,134,185,224, +171,242, 41,194,117, 46, 57, 0, 34, 48,240, 14,135,209,197, 70,157, 74,136,172, 29, 22,198, 81,208, 89,128,141,136,232,106, 17, +238, 55,160, 53,232, 45, 32, 59, 44, 98,159, 46,144, 65,211, 20,177,143,159,137,236,110,208,203,127, 25, 25,140, 25,191,125, 7, +167,125,254, 32,195,141, 9,245,112,204,186, 13, 72, 23, 35,161, 74,209,183,134, 60, 1,186,154, 31,135,164, 18,184,185, 28,190, + 24,239,160, 29, 93,239, 58, 30, 80, 26,157,207,207,148,160, 89,148,200,205,179,189, 46,157,128,221,120,137, 93,153, 89,118, 10, +156, 83,163, 64,179,126, 34, 73,191,115,121,161,216,162, 22,189,121,186, 81,231, 40, 39,141,185,254,218,142,151,129, 74,141,190, + 82, 24,104,164,170,186,219,237, 36, 45,114,198,244, 51, 20,101,105, 18,169, 70, 35,228,172,101, 88, 94,129,225,206,228,133,228, + 24,175,249, 34,108,252, 11, 52, 19,168, 29,218,116,206, 41,177, 78, 58, 9, 89, 7,153, 89, 8,179, 6,113, 13,220,210,188,204, + 70,119, 32,103, 47,227, 70, 73,100,169, 46, 57, 53, 90, 0,135,203,207, 37,231,117, 53, 69,198,141,198,148, 59, 21,136, 49,141, +251,236,228,102, 70,170,117, 56, 77,172, 22,138,249, 83,121, 73,202,122,186, 82, 50, 33,249,147,177, 0,118, 33,229, 50,215,173, +196,174,142, 41,194,174, 45, 15,239, 10,138,117, 10, 12, 93,226,156,115,137, 87, 44,114,255,121,190, 13, 11, 49, 74,206,141,175, + 91, 73, 76, 6,142,153,192,154,166,235,205,181,213,162,243,226,166, 17, 93,165,194, 44, 11,232,114,132,146,197,120, 34,212,170, +237,226, 13, 66, 83, 36,166,100, 65,219, 35, 71,139,190,115,228, 70,238,113, 32,115, 85, 1,101,224,144, 34, 94,105,131,129, 12, +182,205, 66, 89,149, 73, 96,169, 92,138,222, 91, 7, 40,215, 44, 27,184, 74,177, 80,187, 34,159, 61, 22, 97,127, 84,142, 20,218, +128, 97,113,237,163,226,190,180, 14,183, 22, 12,135, 57, 3,149, 69,253, 81, 18,101, 47, 69,105,168, 24, 77,159,105,228, 92,143, +191, 17,211,251,243,156,159,216,243,219, 80,230,202,101, 41, 34,225,122, 65,160,134,166,103,156,203,170,178,168, 48, 26,160,215, +154, 0, 62,208,105, 59, 40,198, 80,180,126, 3,178,208,131, 34,139,172,155, 24,147,246,166, 88,171,219,212, 76, 33, 20,244,139, + 37,176,116, 41,188,172, 59,169,181, 19, 28,230,178,202, 50,192, 88,172,101,207,247,174,177,241, 59,144,200, 88,133,202, 22,203, +152,233,242,150, 11, 79,192, 29,140, 89, 16,231, 58,221,150,253,189, 50,119, 56, 87, 93,164,190, 46, 21, 65, 26,211,165, 68,123, +182,137,101, 78,142,174,118, 2,225, 18, 71, 11, 38, 47, 90, 9,118, 16, 79,144,136,134, 72,136,129,213,201, 6,235,211, 13, 14, +173,173, 83, 13,135,248,170, 98, 92, 85,248,106, 64,140,145, 81,140,140, 70, 35, 54,166, 27,192, 52, 57,140,177,200,145,137,116, + 37,102,217,207, 19, 91,233,133, 46, 47,158, 20,160, 9,173,212,114,188, 71,243,142,200,234,110,171, 85, 79,107, 72,202,153,106, + 22,157,123, 3,106, 21, 84,211,136,205, 84, 71, 37, 86,156,159, 75,157,180,149,186, 91, 46, 63,226,189,239,234, 26, 69, 76, 77, + 31, 77,237,152, 38,229,104, 40,104,132,145, 75,147,123, 54,205, 34, 35,208,105, 68,214, 3,196, 3, 54,229, 77,247,170, 13,196, +125,224,110, 5, 57,183,144, 76,149,196,225, 20,100, 12, 75, 95,143,236,174,225,105,111,132,173, 99,170,183,239, 97,219,245,119, +194,234, 6,245,120, 76,172,160, 9, 66,136, 41,199,158,242,134, 93,238, 42,149,237, 5,139,186,164,168, 95, 82,188, 26,109,237, +181, 40, 65, 75,130, 56,113, 57,158,215,246, 9,120,107,108, 50, 95,255,201,188,236,199,128, 39, 77,134, 46,223,158, 91, 30,100, + 92,234, 74,131,140, 47,111,153, 1, 37,122,103,244,123, 90,176,221,130,184,165, 89,200, 33, 55,161,203,253,182, 3,191,144, 59, +139,229,144, 43,159, 0,105,105, 26, 25,132, 10,247, 85, 59,145, 39,109,135,173,103,193,224, 92,139, 83, 2,196, 47,193,218,251, + 97,122, 16,226, 12,157, 6,152,249,212,100, 38, 24,113,169, 13,200,106, 2,120, 87, 37, 10,126,180, 31,220, 22,107,117,146,117, + 20, 35, 56,109, 51, 50,116,248, 89, 96,176,228, 83, 62,215, 82, 12,106,233,181, 12,146, 77,209, 92,166,182,200, 53,196,110,193, +235,228,175, 11, 10, 93, 19,146,182,213, 2,246,152, 71,149, 48,200,148,182,129,123, 29,140, 30,142,176,201,209,214,160, 79,162, + 50,177, 8,125,166, 41,151,157,129,211, 39, 85, 70, 74, 76,196,142, 2,246,101,196,233,210,177, 71,185, 54,220,193, 52,216,115, +119,169,241,205, 84,161,246,233,239, 75, 10, 27, 34, 73,183,145,243,255,190,203, 57,123,132,113, 33, 10, 27, 26,128,110,100,149, +127, 33,136, 26,216, 98,233,173, 84, 44,150, 81, 56, 29, 56,233, 49,213,193,243,130, 56,183,176,160,231,232, 19,101,142,154,207, +141,109,198, 93,102,132, 13,237, 42, 0,102, 2, 99, 77,209,112, 44,152,199,137, 69,188, 67,129,205, 38,174,243, 69, 9,225,200, + 30,245, 17, 3,155, 97,209, 92,102, 0, 44, 91, 83,172, 18, 72,157, 57, 70,195, 5,128,115, 6, 4,193,214,184,144,157, 63, 77, +140,193, 38,103,206,135,116, 32, 21,115, 74, 72,231, 25, 5,218,230, 68,157,227,228,143,114, 55,131,233, 22, 66,225, 4,228,231, +218, 20, 77,124, 90,165,186,106, 91, 65,222,222,247, 5,133,247, 93,250, 41,228,242, 43,113, 45,111,224, 45,135,237, 76,111, 80, + 54,152,169,164,211, 86,148,140, 99,118, 20, 43, 19, 88,230,117,170,233, 42,123,231,203, 59,237,222, 52,116,172,115, 80,101, 18, + 3, 85, 72,248,149, 75,248, 52,139,229, 12,208,165,168, 0,234,202,109, 19,197, 46, 22,140,138,233,163, 68, 18,147,234,226, 0, + 37,208,208, 20,138, 4, 77,213, 66,222, 19, 98, 76,245,177,229, 56,176, 26,222, 84, 85, 19, 83,245,152, 56,188, 56,130, 79,245, +190,222,198, 88,211,212, 12, 52,178,105,105, 39,245,210,152, 3, 7, 15,224,166, 19, 54,111,218,140, 46,175, 16, 66,131,134, 72, + 52,231,175, 16, 30,104, 91, 50,225,164,204, 99,148,253,109,116, 94,244, 38,119,109,225,224,140,194, 72,199, 43, 84,239, 86, 19, +168,153,198,207, 3, 65,170, 68,225, 34,214, 85,174,163,113,165,168,111, 79,145,173, 22,170,193, 20,245,121,103, 74,197, 8, 90, +229,154, 90, 97,224,146,168,104,105, 32,196, 58, 82,185, 20, 41,229,142,104, 51, 95, 17, 39, 83,170,181,149, 36,176,210,198, 70, +245,204,142,183,150, 58,148, 13,119, 89,141,243, 17,136,251,193,237,182, 41, 92, 39, 10, 88, 70, 48,126, 46,236,220,130, 92,246, +107,232,150, 35,248,183,157,198,142,143, 30,196, 31,152,242,249, 65,197,161,145, 16,131,213,199,230,188,118,214, 35,228,112,218, +123,187, 79,161,229,145,162, 81, 85, 41,125,222,117,123, 75, 13,156,124,155,131,213,216, 32,174, 3,100, 22,196, 26,221, 19, 10, +214,225, 47, 87, 42,116, 93,224,212,101,181,123, 26,196,149,151,142,177, 23,235,134, 18,115,159,129,104,147, 80,230, 22, 88,236, + 28,106, 27,195,209,190,111, 98,202,145, 59, 19,200,229, 6, 37,222, 74,132, 6,214, 32,104, 73, 96,101, 18, 25,174, 58,252, 37, +219,144, 23,238,130, 51,207,129,193,183, 1, 15,179,176,242,150,212, 53,110,245, 75,208,172,195,108, 2,117,101,209,184,107,117, + 1,105,182,248,244, 60,101, 9,102, 95,132,233,118,112,219,193, 13, 58, 24,145, 1,108, 94,198,109,245, 12,246, 5,134,155, 96, +214, 24,253,151,187,139, 24,120,139, 69,208,161, 33, 9,205,172, 40, 65, 85,231,230, 72,219,123, 33,211,167, 5,245,230,139,116, + 68,101,236,209,216,244, 8,141, 74, 91, 23, 95,219, 61,170,130, 81,234,182,152, 55,157, 94, 49, 57,192, 69, 90,171,113, 73, 28, + 57, 49, 10,119,224,210,189,111, 29,116, 59,207,154, 84,218, 83,209, 41,228,107, 59,159,117, 77,140,192, 88,146, 96,175,209,212, +200, 38,218,245, 7, 59,118,165, 93, 62, 52, 47,196, 19,186,198, 44, 25, 28,114,115,150,236, 96,148,206,160,106,234,187, 16,138, +104, 47, 71,196,113, 81,201, 94,140,233,160, 41,245,147,197,159,161,204,173, 23,236,131,155,203,195,167,241, 42,170,173,211, 95, +219,178, 50,147, 78, 92,229,205, 1,153, 88,249,215, 33,133, 85, 96,139,192, 78,103, 0,107,192,220, 81,212,243,181, 50, 43, 46, +141,229,181,216,229,126, 75, 86, 34, 20, 76,129,180, 37, 87, 41,173,226,138,206,129,222,114,164, 89, 33, 94,118,167, 91,182,244, +194, 42, 73,249,238,109, 85, 26,219,177, 6, 40,107,154,158,137, 90, 57,242,144,178, 97, 76,210, 71,228, 58,116,191, 72, 19, 23, +234,246,174, 10,161, 77,178,182,209,182, 71,231,196,132, 37, 21,238, 77,203, 80,229,124, 58,169, 75,168,183, 52,105, 62, 78,217, + 25, 81,100,222, 17,213,194, 17, 10,208,150,201, 6,201, 93, 58, 11,177,158, 20,142,146, 72, 18, 75, 22,247, 58, 68,101,166,129, +202, 41,195,170, 66,156, 7, 39, 22, 51, 73,219,212, 6,115,152,213, 20,237,218,130,189,173,193,177,171,123,247, 86,105,146,115, +236,177, 76,109,169, 50, 16,135,120, 71,144,144,142, 87, 8,172,114,119,208, 44,182, 77,125, 88, 92,170, 48,178,106,165, 28,235, +213, 49,114, 96,245, 48,205,250, 42, 97, 58, 65, 84,169, 15, 31, 66, 87,143, 88,218,156, 36,166,115,237, 35,234,162, 7,209, 46, + 78,111, 35,110,233, 34,119, 41,101,189, 38,150,202,171, 84,110, 32,130, 22,224,159,219,238,229, 34,127,203, 33, 56, 39, 56,151, + 98,147,172, 42,118,210, 29, 63, 55, 52, 17,237,142,167, 42,109, 45, 96, 9, 86,137, 42, 49, 1,142, 79, 20, 75,101,229,113, 46, + 42,226,133,145, 79,142,192, 76, 3,218, 40, 99, 7, 58,137,169, 48,180,153, 38,186,150,104,229,109, 27,105,101,157,125, 22,220, +185, 48,184, 40,249,230, 58,129,230, 35,224, 47, 73,234,120, 53,137,143, 27,193,210,229, 32,155,144, 71,190, 1,182,125, 30, 62, +184,157,109,239,158, 48,248,232, 17,110,154,212,236,223, 50,192,161,204, 98,164,206, 15,213, 91, 94,166,209,244, 96,136,105, 80, + 72, 87, 11,233,178, 42,221,165,156,177,203,250,216,162, 69,231,124,221,250, 66,196,147,251, 0, 19,239,162,118,159, 43,173, 48, +167,206,137,195, 59, 77, 30,182,189,181, 66,105, 52,206, 45,206,226,230, 83,244,181,130,183,104, 54,104,162,137,163,137,179, 70, + 30, 42,151, 38,132, 51,111, 61,216,108, 21, 15, 3,167, 44, 57, 88,170, 35,163,137,163,122,204, 22,220,203,182,193,249,103,194, +224, 74,224, 18,251,212, 47,194,198, 91,224,240,199, 82,135,150,112,208,138,142,165, 11,151,188,128, 27, 90,211,157,218, 34,246, + 38,157,216,228,147, 48, 56, 3,134,155,128, 21, 3,245, 37, 24,109, 66,206, 24, 81,237,157,225, 53, 38, 1,140, 38,218, 51, 88, +198,162,141,204, 67,162,190,179,239, 80,138, 32,157,148,229,156, 93,169,150, 95,232, 15,224,114,231, 54, 39,140,124,215, 95,128, +144, 88,141,118, 33, 13,169, 70,124, 40,194, 52,198,182,181,108,249,153,101, 30, 49,218,138,156, 85,200, 49, 88, 78,223,106,231, +115, 75,134, 72,114,186,188, 1,112,180, 38, 63, 81, 82,117,194, 6,137,118,223,229, 96, 91,149,110,225,204,198, 82,147,117, 44, + 22,113,229,226,165,202, 58,146,121,133,169, 40, 78,211,130,159,137,139, 78,180, 54,175,105,118,243, 18,213,246, 94,229,181, 73, + 23,114,147, 20, 45, 53,187,158,111,243, 29,185,114,133, 78, 85,170,232,164, 43, 95, 27, 22, 93,209,196,238, 65,101, 17,252,154, + 74, 91,235, 62, 48,103,106,221,190, 14, 42,108, 86,216, 33,176,213,132,131,185, 21,108, 46,115, 92,145,228, 0, 76, 76, 41, 94, +149,138,108,187, 15,117,241,204, 42,211,254,168,206, 63, 75, 45, 20,251, 19, 77, 99, 43,106,138,110, 51,115,176,106,192,236,138, +161,239,117, 94, 96,231,108, 61, 31,146,244, 42,179,104,105, 6, 45, 1, 60,165, 71,186,246,185,185, 99,219,188, 32, 78,138,231, +157,157, 36,103,141,132, 68,230,149,240,173,248, 83, 82,137,170,138,164,158, 6, 42,109,251,240,204,110, 13,138,138,131,178,215, + 65, 60, 74,207,129,129,165,234, 26,233, 28,214,185, 54,171,218,117,155, 83,233, 82, 64,177,240, 84,166, 49, 18,155,134,202,167, +117, 79,173,189, 50,209,225,188, 3, 26, 66, 12, 38, 60, 75, 35,207, 75,234, 34, 39, 86, 98, 93, 57, 97,224, 28,149, 56,106, 9, + 56, 13,105,188,183,159,157,114,228, 18, 2,131,193, 0,231, 61, 33, 4, 66, 12, 72, 91,254,166,115, 42,249,220,208, 45, 5,123, + 62, 21, 63,155,224, 58, 0,245,108,210, 9,197,157,233, 27, 66,176, 57,145,220,197, 74,117, 62,151,145, 85,230, 74, 7,206,210, +130,168,116, 53,236, 57, 19,111,139,159, 20, 57, 17,213, 12,206,157,104,206,185,228,125, 56,111,255,163,133, 48, 43, 90,111,249, +121, 69,171,107,203,234,204,163, 12,214,169,204, 46,220, 57,105,197,113, 73, 20,230, 82, 71, 35, 7,203,190, 19,214,205, 80,134, +214,120,164, 65,169, 53,189, 14, 95,161,177, 78, 97, 73, 51,161,109,250,167,117, 2,239, 16, 97,118, 8,252, 7,192,239, 78, 17, +158,236,129,240, 73,208, 59,193,127, 37,200,206, 20,159,104, 99, 17,251,147,193,239,130,193,239, 35,187,222, 15,143, 13,108,122, +215, 54, 46,252,189,131,184,253, 51,142,236, 28,160, 78,152, 54,166,230,205,194, 35,187, 95,161,200,191,122,159, 35,239, 68,203, + 26,166,162, 69,223,108,114,207,251, 28,229,120, 91, 51, 11,245,181,148,110,236, 92,121,219,124,219, 81, 17,143,115,145, 74, 99, +187, 56,100,189,123,202,163, 75,145,234, 0,141, 89,108,162,233,123, 91,220,156, 75,183, 78,213,165, 22,150, 46, 80, 85,150,231, + 5,124,236, 90, 2, 84, 30,198, 78,216,228,149, 77, 77, 96,188,230,168, 46,221,140,123,217,102,184,224, 76, 88,190, 10,120,172, +141,137, 59, 96,253,191,194,129, 15,145,187,123,232,172, 73,180,187, 77,146,212,109,101, 4,110,156,150, 83,157,153, 91, 31,146, +218,108,114, 0,170,191, 79,207,200, 95,144,116, 17, 84, 73,206,190,107, 96,148, 89, 74, 99,228, 14, 88, 3, 81, 26, 99, 45, 98, + 80, 26,235, 52, 55, 47,202,145, 98,220,206, 51, 36,217,183, 29, 59, 65,188,166,146, 57,151,169,201,121, 26, 86, 13, 68,172, 2, + 48, 49, 29, 62, 69,235, 51, 21,243,230,173,165,232, 81,196,167,149,149,104, 57,237,212,195,169,185,205,124, 62, 52,152, 40, 42, +183, 53,117, 22,125, 46,217,128, 8, 22,225,109,196, 4, 4,155,156,112, 36,106,218,179,160, 21, 3,130,119,106, 98,193, 68, 93, + 86, 5,149,155,243,164, 90, 54,118, 41, 96,184, 76, 17,137,204, 83,182,190, 80, 83,119,244,176,180,139, 96,197, 93, 36, 38,201, + 25,208, 78,153, 55,199, 88, 45, 28, 63, 11,241,196, 0,126, 40, 93, 84,216,180,101,134,106, 45,157,187,250,238,117,133,181, 0, +123,173,223, 60,153, 77,177, 24,103,139,192, 14,235, 16,152,115,219,173,232,107, 17, 24,237, 57,141,236, 58,214,179,118,161,232, +212,151, 89,158, 65,161,151, 25,200, 93,234, 55,230, 58,174,229, 28,126, 83, 8,232,218, 64, 41,166,116,201, 90, 25,189,218,184, +194,156,176, 28,253,134,130,162,143,119,109,128,214, 82,212, 3,235,139,144, 53, 26, 25, 60,171,133,250,108,103, 79,177,145,252, +124,114, 9,150,182,109,169, 85,117,174,221,107,181, 80,178, 86, 21,101,148,190,232,192,153, 91,166,213,185, 74, 66,187,231, 25, +203,118,197, 69, 61, 92,136,145, 72,211,122, 3, 42, 14,231, 60, 33, 8, 33, 6, 92,140,109, 13,187, 43, 74,213, 48,103,102,224, + 28, 3,163,237, 69, 60, 34, 77, 81, 64,175, 93,173, 80,108,112,141, 48, 24, 14,113,131, 1,174,113,168, 75, 81,187,138, 9,123, +115,185,118,218,132, 5,109, 27,168, 57,162,116,209,125, 46,155,155, 99, 96,139,214,196, 49, 70, 42,181, 22,130,222,149,141, 64, +202,198,142, 50, 7,248,206,205, 55, 28,144,210,219,208, 34, 10,148,148,124,243,222,225,157,199,121,105, 85,192, 20,253,114, 83, + 84,216,149,212, 37, 47, 78,186,182,175, 69,157, 99,110,125,154,107,227,197, 34, 29,103,185, 43,113,169,148,102,224,187,235, 73, + 93,235, 60,149,213, 63, 27,105,159,110, 14,145, 32, 30, 93,141, 72,109,138,119,197,208, 98,218,209,183,179,155, 97,116, 59,184, +173,169,225,137,127, 52,132,143, 66,248, 48,248, 71,128,236,162,221,252,133, 33, 12, 31, 14,254, 7, 97,244, 44,216,242,110, 56, +235, 93, 44,159,215,112,225,107,215,248,194,254,154,176, 99,192,164,130, 80,203, 92, 61,111,119, 95, 6,133, 7, 23, 91, 97,160, + 20,202,209,114,186, 68,163, 19, 51,117,216, 57, 97, 58, 39, 51,158,107, 66, 99,157,162, 84,138,188,149,164,218,244,202, 38, 93, + 44, 22,124,172,169,143,134, 46,130,204, 10, 4,181,222,229, 41,130, 76,139,124,229, 18,159,238, 61, 12, 27,207, 82,149,192, 31, + 13,169,217,144,165, 77,150, 92,100, 84, 69, 54,133,200,120, 29,170,115, 87,112,255,118, 59,114,225,165,176,252,221,224, 31, 99, + 25,209,195,176,241, 39,112,231,223,167, 29, 73,214, 6,104, 93, 37, 69, 89, 19, 90, 23, 94,134, 77, 42, 81,195,106,213,115, 83, + 33,167,198,196, 8,108,220, 4,163,207,129, 63,183,203,226,250, 49,178,213, 83,225,169,172,254, 59,228,197, 45, 74,167,232,151, +174,251,153, 22,250,145,156,109,148,130,135,204,185, 64,135,105, 5,124,242,242,107,235, 37,148,231, 66, 44, 74,233,234,144,212, +230,161,145,156,109, 74,254,136,104,171, 84, 15,139,125,168, 10, 65,100,152,235, 51, 45,212,134, 12, 3, 73, 77,144, 92,212, 86, +164, 89, 42,171, 53, 66, 99,105,144,145,135, 81,147, 64,127,205,186,176, 45,249,178,139,152, 24,157,155,158,125,219,109,173,165, + 97,165,141,132,103, 22,149,249, 66, 79, 80,219, 25,122,233, 68, 66,101,254,191,141,168, 23,218,237,150,101,116, 25,196, 93,217, + 11,159,252,124,148, 70, 58, 70,195, 47,168,237,197, 40,248, 80,232, 63,102, 22,137,175,197, 34,197,145,169, 97, 43,225,245, 11, +145,244,204,126,183, 34,176,197,193, 86, 7,187,114,103, 57,157,103, 15, 22,235,172,115,254,119,104,121,250,213, 96, 81,119,209, + 1,186, 44,161,203,116,250,208,198,228, 97,163,146,181, 0,180,220,122,216,119, 29, 28,218,220,117,119,207,148,173, 8, 19, 7, + 7, 98,231,184,102, 96,159,153,224,174, 44, 27, 91,100,134, 68,231,203,197,114, 95, 9,111,218,139,156, 78,105, 59, 22,182, 84, +116, 94, 75,186,115,173,172,204, 88,172, 13,246, 64, 82, 47,132, 88, 56, 7,200,252,198, 47,142, 5, 81,158, 93,127, 85, 86, 48, + 20,226, 79, 93, 16,124,199,133, 40, 62,177,173,202, 58,129, 97,140,224, 93,219,236, 9,107,252,165, 20, 37,106,222,155,248,210, +208, 81, 5,245, 66, 12,190, 91, 3,231, 74,239,148, 89,104, 24,212, 80, 25,176,107,244,196, 24, 76, 68,151, 78,180,109,198, 38, +146, 54, 38,107,215, 20,103,167, 24,139,206,149,101, 40,161, 93,185,168,152, 16,112, 49,239,218,121,192,106, 98, 56,215,129,119, +209, 2, 76,139,182,164, 45,237,104,162, 8,113, 21,174,242,214,109, 44,183, 19,143,150,103,113,115,191,111,213,247,185,182, 90, +156, 85,151, 41,206,249,162, 17, 14,182,139,155,229, 6,179,154,214,169,149, 97,165,186,111,103,194,166, 76, 47, 13,173,215,117, +162,144, 21, 85,215,230,243, 98,180, 36, 98, 19, 19,168,103,129, 85,140, 86,235,188, 53, 21, 78,179,110, 15, 95,192, 89,110, 55, +126, 30,194, 13,224,215, 65,206,164,173,110,213,202,202,175,158, 12,225,177, 48,124, 38, 60,253,151, 25,251,235,121,216,207,110, + 16, 14,215, 76, 54,109,164, 86, 87, 0, 0, 32, 0, 73, 68, 65, 84, 13,208, 40,204,172,172, 13,117, 86, 74, 21, 16,141,120,201, +145,121,209, 47, 64,244,232,125,222,181, 83,190,107,177,106,204,111,242,146,115,222,182,249,139,116,212,190, 3,196,107,218,240, + 38, 59, 14,174, 75,173,136,183, 62,251,182, 0,135, 8,117, 78,158, 23,249,202, 88,212, 58, 59, 67,180, 61, 59, 6,156,254,228, +205,204,110,217,224,246,235, 55,208,232, 80,137,120,107,240, 50,116,202, 74,163,140, 86,149,106,251, 50,238,223,239, 68, 46,126, + 6,172,124, 27,248,179,211, 61,141, 7, 97,227, 47, 96,223, 31,194,190, 25, 28, 89, 70, 39,210,133, 63,217, 59, 30, 89,171, 93, + 89, 74, 83,187,217, 72,165,109,177, 6,181,120, 72,150, 32, 12,160, 57,104,101,140,227,244,188,137,200,138,107, 55,239,112, 8, + 98,247,170,178, 46, 6, 98,224,215,138,154,178, 76, 81,230,119, 8,201,142,144,196, 98,247, 52,159,247, 52,176,232, 35, 42,234, +147,130, 94, 85,137, 77,162, 1,235,188,235, 91, 73,227,105, 18, 80, 13, 13,212,146,198, 65, 90,125, 73, 17, 28,204,139, 85,233, + 20,204, 57, 63,235, 45,146,207,115, 35, 88, 4, 95, 73, 98, 80,106,159, 82, 40,174, 16,126,173, 6, 83, 93, 91,241,126, 46, 11, +171,173,244,105,174, 65,140,129,187, 47, 34, 77,151,233, 92,203,217,143,236, 30, 4, 43,221, 35, 90, 35, 36, 55,191,209, 71,217, + 11, 60,231,156,231,183, 93,234, 26, 40,185, 98, 83,140,170,136,238,181,248,123, 25,132,100,186,119,106,117,222, 89, 0,217,230, +174,139, 50,182,177,149,190,197,185, 8, 53,117,130,219, 36,202, 22,139,208,243, 6, 51,235,154, 90,149, 12,164,235,170, 22, 84, +219,136, 87,205,145,202,180,251,145,152, 54,205, 81, 91, 65,202, 46,121,180,245,240,176,100, 13, 92, 98, 1,218, 27,218, 53,228, +177,154,156, 54, 90,141,197,255,174,232,172, 55, 20,216, 41, 41,107,181,186, 64,251,151, 84,123,174, 47, 47,219, 28,151,243, 61, +235, 41,188, 9,243,252, 28, 91,107,247,172,108, 74, 99,205,110, 6,237, 30, 33,202,216, 54,169,137,226,152,105, 74, 75,206, 49, + 42, 11, 93, 39,243,248, 9,116,142,151, 22,165,144,181,118, 44, 90, 60, 74,137, 91,236,218, 82,165, 29, 66,173,169, 79,118,202, +157, 53, 43, 11, 70, 73,136,235,182,151,105, 53, 25, 62, 9,175,243, 53,121, 47,109,247,208,178,226,168,235,157,146, 38,103,221, + 52,104, 84,134,131, 1, 50, 24,128,247, 52, 26,105,130,109,239, 37, 69,251,115, 75, 53,231, 52,135, 58, 33, 70,215,130,186, 22, +122, 55, 10,167, 46,179, 27,173,242,175,108,229,160,133,104,161,108,174,172,161, 19,191,209,182, 88, 44, 55, 40, 20, 42,239,169, + 6, 3,219,116, 69,219, 19,240, 57,143, 46,105, 55,143,174,239,124, 74,196, 59, 21,156, 79, 91,185,138,184,164, 42, 52,241, 66, +234, 45, 46,157,112, 46,154,208, 76, 18, 5,152, 23,142,129,171,210,131,144,180,229, 95,202,245, 40,131, 65,100, 36,145,213, 25, +168,183, 93,192,170,172,116, 17, 43,129,154, 90,136,107, 84, 45, 13,140,182,194,240, 76,235, 46, 55,235,166,143, 59,195, 92,199, +195, 73, 57, 47, 51,112,103, 89,158, 54,231,113, 43,240, 43,224,159, 0,254,106,248,218, 31, 99,116,240,163,156,251, 11,107,108, + 12,132,125,227, 1, 97,102, 37,110, 14, 42,141, 86,163,191,176,125,170, 83, 19,164, 56,212,182, 49,108,159,141,115,136, 79,187, +215,137,179,146,108,149, 86,240,182,216,162, 80,212, 33, 46, 9, 50, 68,230,235,102, 41,104, 45, 53,192,240, 89,160,232,160, 14, +210, 46,226,174,227, 14,238,210, 21, 52, 90,165,196,146, 8, 59,207, 24,176,233,235,246,176,241,215, 95,164,250, 72,164,118,169, +191,184,143,138,175, 34, 35, 7,163, 41, 84,155,150,144, 23,111, 69, 46,185, 28,150,191, 29,252, 25,166,186,219,128,213,191,133, + 35,127, 4, 7,215,208, 91,151,173,152, 54,116, 53,112, 89,181, 84,169,209,238, 46, 37,134,227,134,129,183,218,243,200, 59,223, + 53, 16, 15,147, 50,199,131,228,132,229,221, 51,170, 28, 81, 88,149,134,164,252,185, 20,125,165,130, 21,193,184,146, 82,141,166, +148, 53, 79, 41,198, 46,130, 25,121,211, 78,132,142,122,174, 85,209,186, 83,209,151,189,229,203,157,208,162,213, 38,138,149,222, +168,237, 45,208, 53, 54, 41, 34, 89,235, 6,169, 11, 27,193,248,162, 31,122,110, 88,130, 36, 86,139,130,117,136,164,241,147,155, +224,212, 69,243,150,105, 76,206,243,192,162,200,188, 11, 90,166, 77,115,143,139, 44,228,202, 98,215,156, 14,240, 2,155, 69,152, +137, 48,139, 16,102, 41, 91,181,236,148,218,218,156, 46,164,191,231, 42,105,124,177, 80, 58,165,213,207, 80, 68,236,177,232,242, + 85, 89,202,168,235,248,215, 1, 90,217,113,174,234,146,110, 93,202,160, 43, 54,201, 11,100, 91,149, 80, 2,217, 72,186,146,181, + 97,225, 80,143,172,246, 56, 59,103,153,101,136,196,174, 63,129,209,232, 19,203,211, 79,138, 8, 59, 2, 35, 73,187,203, 73,219, + 66, 54, 57, 93, 91, 92,102,210, 18,104, 30,116,112,208,154, 30,141,173,252,176, 46,168,247,134, 46,135, 31,179, 0,205,156,184, + 45,214,195, 35, 26, 72,104, 17,249,181, 75,254,209, 90, 2, 46, 52,173,202, 14,195,176, 45,111,236,214,137,220,242, 55,167, 66, + 93, 78, 45,154,192,174,220, 68, 39,231,216,115, 91, 91, 45,158,213,162,163,154,230,136,180,192,159, 5,154,117,209,130,185,116, + 54,145,249, 84, 69,238,117,223, 54,190,210,174, 26, 37,111, 98, 86, 70,195,101,202, 39, 20, 27,190,232,194,118,177,185,147,100, + 87,226,215, 61, 67, 80,154,216,160,179, 72, 21, 35,126, 52,196,251, 10,156, 35, 74,147, 34,124, 85,156,119,120, 95, 17, 68,168, + 67, 64,235,218, 82,216,243,169,175, 50, 13, 94, 74,213, 43, 76, 81, 45, 90,182,113,237,132,106,226, 92,231, 33, 47,108,186,146, + 85,172,105,115,151, 20, 85,123,231, 16, 95,181,106,245,188, 53,167, 56,151, 64, 61,119, 5,114, 98,226,175, 20,174, 59,231, 24, + 84,149, 9,232, 82,225,191,119,130,183, 99, 58, 17,196,167,200, 31,180,109,220, 34,206,227, 84,241, 18,210,228,210,152, 60, 41, + 81, 70,218, 88,119,180, 6, 95, 69, 42,175, 12, 53,166, 14, 90, 62,166,156,143, 75,139,107,218, 68,229,136,221, 22, 43,210, 25, +140,210, 78, 94,126, 79, 2,104, 61,146,186,148,101,223, 88,150, 82, 52, 79,128,184, 14,220, 4,178, 59,213,182, 35, 41, 55, 47, + 86,224,226,207,129,229,159,130,231,124, 63, 75,255,252, 37, 46,120,199, 42,205,110, 33, 12, 43,166,117,154,236, 81, 99, 90,140, +124,161, 98,199,132,126,178, 56,217,180,235,113,158,127, 31, 45,154, 95,216, 3, 89,138,189,207, 93,238,223, 94, 76,150,178,113, + 77, 37,243, 11,107, 91,106, 29,157,245,162,183,221,152,108,177,206,173, 98, 67,148,118,235, 94,205,251, 21, 19,217,248,226, 12, +255,219,159, 99,237, 11, 83,178, 94,207, 71,197,123,101,105, 0,203,179,200, 64, 60,238,210, 49,242,148, 11, 97,229,155,147,126, + 33,235, 95,103,159,129,181,191,134,201, 26,122,104, 9, 14,154,148, 62,187,255, 3, 91,106, 7,214, 66, 77, 12, 25,227, 97, 8, + 71, 18,113, 2,200,104,106, 66,199, 17,232, 56,109,240,162, 70,216,233, 65,104,214,208, 91,103,201,121,114,138,107,253,248,172, +120,215,162,191,123,177, 64,200,194,150,138, 11, 17,115,219, 89, 47, 40,193, 9, 33,104, 42, 67, 11,133,128, 39,206,111,112,145, +201,135, 58, 80,180,230,237,162,199,178, 43,149, 22, 98,179,118,175,112,233, 22,115,219, 80,217,132,109, 93,139, 90,231, 32, 6, +105,119, 33, 11,182,169, 71, 6, 22,111, 73,201,124, 94, 83, 75, 19,148, 61,217, 61,221,126,208, 89, 37, 92, 21,170,245, 96,224, + 53, 44, 6,227,118,149,255,159,175, 55, 15,182,109,187,202,251,190, 49,230, 92,123,239,115,238,185,247,190, 70, 79,122, 79, 72, +168, 65, 2, 44, 4, 18,141, 19, 11,132, 93,136, 96,226, 34,193, 21, 87,108,210,144, 30, 87, 58, 10, 59,142,157, 96,167, 41, 39, + 16, 92,130, 74,140, 93,216, 36, 85,164, 82, 41, 39,184,202,105, 42, 78,170, 82,128,177, 33,216, 70,142,145, 82, 70, 52, 22,168, + 1,233, 73, 79,175,185,253,105,246,222,107,173, 57, 70,254, 24, 99,204, 57,215, 58,231,137,170,139,164,251,238,187,231,156,189, +247,154,115, 52,223,247,251,240, 13,207,111,240,238,127,250, 20,191,250, 51,151,248,229,151, 71, 12, 94,140,172,179,187,155, 37, +170, 5, 55, 37,180, 11,125,109,125, 91,252,158, 23, 45,117,204,234, 7,173,233, 12, 26, 79, 32, 32, 48, 65, 16,228, 21, 14,150, + 59,202,220, 83,108, 69, 65,176,217,137,150,239,130, 58, 9,114,195,214,128, 76,106,159,155, 8, 66, 98, 5,178, 79, 18, 35, 10, +247, 92,180, 75,108,232,138, 37,165, 26, 55,139,238,243,181, 87,224, 68, 91, 88,244, 9, 89,105,122,207,185,240, 99,160, 95,125, + 0, 41,107, 59, 29, 90, 44, 46,193,196,126, 76,134,140,141, 11, 73,137,174, 91, 8, 87,177,166,180,230, 99,116, 36,183, 89, 67, +121,174, 85,192,166, 93,163, 18,120, 86,168,125,254,250, 53, 72,192,109,242,130,218,215, 19,225,168,119,229,214, 9,203, 81,151, + 19, 30,244,144,154, 27, 26,143,122,182,117, 5, 72, 16, 46, 89, 21,224,212,245,178,237,153, 39,177,210,132, 58,142, 5, 0,204, + 46,188,235,197,200, 88,217, 4,209,225,136,117,158,236,188,223,108,145,242, 0, 30, 54,182, 99, 71,100,105,152,181, 45,229, 1, + 99, 74, 40,211,100,192, 49,135,128,232,226, 51,175,221, 24, 30,200,188,130,185, 48,150, 59, 91,234,212, 62,177, 51,172,249,230, + 61,182,134, 19, 56,101, 83,155,147, 81,232, 82, 74, 32, 50,188, 93,100,168,163,238, 85,172, 99,207, 41, 25, 2, 47, 15, 24,134, + 12, 38,118,242, 27,213,164, 26,114,149,124, 70, 67,242,162,248,241, 19, 2, 41, 78, 38,192, 98,182, 52, 54,178, 23, 95,164,216, +238, 35,145,217, 40,252, 82, 25,152, 76,229,152, 25,213,195,160,126,108,146,195, 30,105,107,177,158,228,131, 72,189,112,107,219, + 73,231,247,187,242, 93,237, 96,255,153, 30,248,205,249, 92,231, 16,118, 86, 23,191, 3,184,251,131,192,159,252,115,184,243,153, + 25,239,248,212, 5,248,141,183,112,127, 59, 96, 62, 26, 69,206, 94, 23, 93, 10,125,180,239,140,109,174,107,111,100, 89,172, 75, + 40,185, 11,192,137, 35,245,208,241,247,132,185, 57, 27,210,106,150,198, 43,128,141,118,188,205, 4,211, 38, 12, 84,236, 98,170, + 23, 6, 67,252,240, 39, 7,240,219, 56, 90, 92,129,201,184, 60, 31,113,249, 91, 19,116, 86, 80, 86,100,143,103,220, 50,176,157, + 20,121, 2,248,214, 6,244,221, 79,129,222,240, 33, 32,191,195,156, 4,162,192,241, 55,128,199, 63, 6, 92,190, 6,125,204,192, + 61, 0,151,179,181,141, 89,141,159, 26,105,170,224,118,178,232, 19, 96, 26,161,135,226,179,208,160,125, 28,172, 56,147, 51,212, + 17, 9,200, 71, 37, 19,176, 87,240,134, 45,104,131,151,193, 19,157,147,176, 98,124,165,178,178, 13,196,211,175, 59,120, 85, 80, + 9, 89,232,138,136,182, 56,215,174,139,212,110,119,169,175,211, 28,173,125,192,137, 26, 47, 92, 59, 44,171,118, 95, 91,169, 57, +252, 42,191,220, 21,236,228, 73,120,232,226, 81,197,219, 51,233,144,170,179,171,254,143, 26,194, 62,237,186, 74,237,180, 52,203, +232, 99,234,118,207, 91, 50, 94,253, 11, 74,120,255, 31, 60,197,233,191,121, 7,219,159,189,170,214, 53,238, 18,227,184,187, 48, +146, 94, 79,227,162,142,140,113, 83, 42, 87, 15,138,209,213,161, 26,123,216,210, 21, 38, 49, 54, 47, 21,108,211,237,163,187,253, +118,118, 91,219, 72,192, 99,233,149,217,129,252,180, 17,230,232,113,203,226,191, 71,110, 55, 82,191,240, 7, 87,197,239,213, 46, +208,193,223,176, 9,237,163, 26, 52,181,216,229, 39,143, 52,141,124,128,212,105, 41,118,190, 34, 56,135,141,242,147,183, 37,167, +158,135, 62,106,103,159,243,226,176,207, 40, 63,243, 21,229, 57,155, 48, 82,174, 73, 63,175, 99, 78,251,157,255,224, 95,239,110, +108, 50,189, 43, 15,145,221, 50, 19, 93, 61,164,198,181, 30,221,180,111,215, 67,179, 16,104,106, 15,209,137, 85, 81,247,204, 4, +211,127,238,192, 72,181, 19,167, 37, 65, 79, 87, 52,123, 44,120, 42,161,159,208, 58,238, 78,126,206,217,100, 84,155,211,136,130, + 43, 98, 55,231, 92, 10,142,211,132,195, 60,161, 76, 99,181,160, 1,203,253,127,191,223,142,226, 71,165,128,230,201,154,221,148, + 81,105, 92,206, 49, 97, 21,156,230, 13,238,156,222,194, 40,130,253,120,196,241,112,133, 50, 78, 62,169,190, 62,137, 85, 27, 88, + 54, 59,219, 98,180,162, 77,125, 30, 98,170,200, 48,143, 87,141,252, 93, 53,101,123,170, 34, 8,179,172, 49, 56,101,100, 78,181, +155,108,188, 94,139, 98,205, 57, 33,109,118,200,195, 96,127,142,185,238, 10,153, 21, 36, 77, 46,166,101,114,236,100,100,114,183, + 15, 93, 82, 49,161, 15,181, 29,196,204,130,193,173, 20, 3,169,119,187,193,231, 85, 83, 54, 66,124, 47,191,241,169,122, 36,146, +240,162,118,180, 83, 81,157, 35, 30, 62,117,106,219,175,249, 69, 64,146, 21, 1,229, 4,200,123,159,213, 60,239,221,224,108,227, +121,218,218,158,253,203,254,109,208,135,127, 2,207,254, 25,194,240,233, 43,108,158,222,226,254,201, 22,147, 88,138,121, 17, 65, +138,220,120,132,117, 40,222,167,226,247,122,248,139,169,225, 52,125, 44,100,183,120, 0,101,196, 20,241, 10,176,219,225, 8,166, +255,163,149,107,129,186, 93, 89, 28,126,169,250,147,217, 94, 67, 16,144, 61,148,193, 25,176,197, 17,183, 85,105, 81, 59, 24, 65, +113,101,188,178, 93,150, 67, 17, 12,131,133, 61, 12,163, 32, 99, 0,127,231, 25,240,190,247, 2,187,239, 48,135,129, 42,112,249, +191, 1, 79,126, 10,120,248, 4,122,121,215,230,140,231, 19, 48,205, 14, 62,247, 10, 98,172,251, 2,159,245,205,192, 60, 67,247, + 98, 39,220,193,143,164, 13, 3,233,224,116,158, 51,160, 92,180,121,169,138,193,105, 78, 18,176,201,224, 50,129,187, 21,211,130, +234,129, 46,165, 80,219, 62, 14,162,203, 0,130,190,227,171,216, 92,109,160,144,213, 5,190, 16,244,116,118, 42,155, 37,120,103, +121,195,154, 35, 50,204, 37, 89,107, 28,104, 12,174,208,145, 54, 81,209,110, 12,207, 97,241,210,118,145, 9,154,165, 38, 58,138, +112, 52, 76,142, 13,141, 75, 44, 84,248,245, 66,247, 14, 56,124,232,115, 80, 7, 97,105,100,145, 66,246,185,164,248,153,255,245, + 28,227, 79,159,227, 69, 8,118,201,192, 76, 2,198,134,212,138, 31, 93,122,164, 99,146,128, 46,103, 59,105,135, 17,213,102,117, +138,215, 54, 16,212,140,101,154,215, 90,115, 48,160,157,117,234,175,217,220,145,200,212,161, 65,147, 11,200,230, 78,123, 42, 29, + 72, 72, 17,161, 71, 46,248,165, 38, 51, 30,200, 45, 73,218, 0, 50,123,255,187,178, 11, 86,135, 14,113,155, 86,106,247,173,167, +140,165, 46,177,237,177,127,223, 33,180,123,150, 45, 29,237, 1, 3, 79, 92,184,122,219,133,199,231,164,139, 80,155, 30,248, 19, +175,195, 22,150, 53,176,247,130,101,132,122,182,122,179, 7,246,250,171, 30, 78,149, 3,236,211,239,186,125,242, 19, 58,129,109, +247,239, 14,174,152,135, 11,155, 79, 42,165,143,112, 80,197,168, 38,150,139,145,249,184,198, 46,175,172,110, 3, 53,138,223, 76, +141, 58, 55,119,197,219,210, 47,212, 79, 40,173,233, 65,209,133,126,131,137,171,223, 92, 59, 38,187,177, 86,212,166, 64,100, 90, +155, 89,108, 68, 30,233, 72,175, 59, 25,168, 5,166,103,147,184, 90,157,138,149, 64,137, 25, 41,155, 23,160, 68,234,155,152,120, +249,108,179, 67,202, 3, 84, 21,135,162, 80,153, 22,200,183,102, 51,180,239,223, 47,111, 90, 82,243,251, 31,154, 86,187,245,168, +112,220,119,206,204,200,236,187,111,207, 89,207,105,112,197,238, 12,242, 2, 32,172,103,214, 88, 15,200,219, 19,228, 97, 99, 94, +117, 17,171, 62, 2, 74,224, 47,114,242, 7, 69,157,186, 67,162,213,187,170,126,177, 23, 53,166,245, 76, 82,247, 53, 2, 69, 73, +126,121,176,237,233, 21,230, 63, 54, 86,175, 29, 16,137,213,194, 77,152,124, 20,171,109, 96,232,227,123, 83,172,133,173,224,137, +237,107,233,204, 21,242, 5, 24, 95, 3,142,143, 77,117, 77, 3,144, 79,129,225, 37, 96,243,110, 19,123,213,180, 55,191, 60,242, + 63, 3,188,227, 17,232, 47,254, 52,238,254, 88,198, 87,254,202, 37,238,239,103,124,241,108,131,139, 77,178,145,148,174, 19,162, + 18,136,220, 55, 46,182,163,141,189,121,140, 58,219,174,181,184,163,192,239, 62,170,102,132,166,204,142, 29, 30, 45, 85,182,253, +199,159,107,209,228,108,113,127,255, 6, 17, 28, 99,100,235,133, 87, 32,130, 99, 95,184,113, 31,103, 17,134,170,243,195, 60, 24, + 60, 51,176,133, 98, 56, 0,252,230, 45,248, 59,159, 5,206,254, 89,128,223, 98,213,198,254,231,129,123, 31, 6, 30,110,161, 47, +223, 54,176,246,254,104, 34,185, 67,177, 83,109,195,141,249,121,226, 55,176, 8,116,242, 69,225, 69, 1,206,221,112,157, 0, 61, +177,211,148,240,196, 94,136,233, 41, 19,224,165,231,171, 12,150,178,128, 88,145,242, 42,124,163,187,175, 67,112, 54,251,115,195, +222,209, 74, 71, 73,161, 46, 59, 65,168, 89,213, 84,174,119,225,235, 78,162, 14,209,220,221, 82, 96,242,142, 5,134,243,134, 61, + 39, 9,181,177, 52, 53, 25,188, 80,243,169, 43,150,118,163, 45, 90,166,120, 14,237,138,103,106,143,254,158,151,174,224,224, 27, +138, 0,234,244, 24,236, 68,174, 89, 9, 39,158,247, 61,193, 41,138,218,152,245,191,182,159, 77,254,192, 54,234, 20, 81,100,106, +251,253, 25,203,144,142,254,181, 41,171, 66, 40,198,253,209, 54,164,232,230,176, 76, 87,171,129, 31, 61,228,100,161,134,239,132, + 79,104,169,101,232,196,169,163, 51,222,115, 55, 42,159, 53,244, 39,132,141,104,197, 11,247, 69, 90,114,187, 84, 38,251,185,199, + 96, 58,132, 86,128,218,196,115,232,206, 86,233,128, 50,240,139,153,187,215,124,116,145, 95, 15, 56,186,235,108,142, 43, 69,229, +196,159,184, 90,254, 42, 58, 94, 93, 70,218,198, 69, 60,120, 98,219, 93,182,221,252,209, 19,221, 84,151,112,153,133,245,208, 95, +196, 43,255,126,230,110, 85, 64, 93,191,223, 79, 78,102, 88,138, 91,134, 37,132, 62,113, 61, 74,248,248,237,245,233,199,226,180, +184,136,123,234,101, 20,159,135,206, 9,145, 58,152, 79,193,114,101,164,253,247, 83,159, 81,178,152, 15,245, 32, 21, 78,224,100, +234,244, 41, 10,148, 88,121,116,141, 45,251,152, 28, 85,241,174,139, 78,125,237,179, 39,220,140, 91, 87,111, 74, 33,132,132, 12, +164,228,162, 59,182,130,250,176, 7,246, 87, 72, 57, 99, 59,108, 32,219,217, 52, 57,101, 94, 17, 20,151,249, 17,139,228,152, 20, + 80,128, 62,193,171,114,225, 27,175,157,153,145, 82, 66, 78,102, 93, 35,230,186, 67, 87, 82,187,128, 69, 64,201,246,157,236,248, +215,180, 25,144,182, 39,200,121,176, 10, 89,102,219, 19,248,195, 81,105,176,158,116, 86,197, 10,209,129, 42,217, 11, 17,112,148, +216, 93,177,248,152, 73, 43, 31, 24,126, 72, 19,139,189,185,190,231,103, 5,242, 64,224, 29, 65, 95, 30,129,105,219, 41, 50,182, +166,138,198, 19,127, 12,142, 62,154, 15,193,149, 63, 30,202,192,124,110, 59,222,241,137,185, 63,105,231, 23,251,203,192,240, 89, + 96,120, 43,176,121, 59, 48, 60,239, 99,124, 15, 10,200,255, 18,240,229,111,133,254,240,127,139,237, 71, 30,226,133,191,126,196, + 83,159, 58,224,181,243, 9,247,239,102, 92,109,178,117,238,218,209, 76,209, 68, 54, 73, 58,251, 18,213,230,220,170,181, 14,161, +197,196,190, 79,181, 27,197, 68,216,126,136, 72, 53, 67, 88,145,227,153,188,218,169, 54, 99,247,234,120,187,107,176, 21,237,233, + 72, 93, 32,200, 54,163,138, 36,139,171,182, 51, 3,155,172, 56, 17, 96,251, 64,144,110,157,128,255,253, 59,192,243, 31, 0,248, +247,218,235,115,252, 40,240,218, 15, 66,191,144,128,151,110, 1,175, 78, 54,114, 31,103,232,249, 84,151,163,116, 39,219,141, 53, +251,109, 73,126, 85,205, 98,180,150,203,217, 10,128,139, 14,202,141,193,103,172,175, 0,121, 0, 78, 63, 1,156,190,217,199,253, +163,189,206,131,171,253, 75, 7,192,232,162, 87,209,141,109,227,105,234, 93, 32,125, 55,223, 79, 61,194, 47, 43,235,157,223,181, +225, 89, 7, 93,238,196, 97,182, 54,234,108,132,221, 94,176,103,124,235, 13,136,218,190,227, 85, 90, 18,218, 34,164, 36, 98,149, +231, 98,147,129,156,196,189,238, 77,181,189,130, 13, 47,190, 15, 38, 67, 62,159, 49,225, 93, 91, 35, 61,126,238,114,198,232,239, +151,168,249,251,137,237, 48,159, 96,228,187,212, 89, 98, 3,122,146,169,187,188,169,167, 36, 82,229, 96,160, 83,119,215,239, 75, +163,203,210,133, 40, 74,209,209,145,125, 13,216, 3,159,137, 60,167, 66,155, 16,107,232,132,192,221,219,129, 43,116,240, 30,109, + 44,117, 82,235,222, 12, 8,146,172, 8,246, 96, 36,203,194, 16,100,111, 72,198,107,121, 12, 81, 88,153,204,118,203,158,168, 23, + 95,211, 39, 60, 83,199,220,231, 94, 0,136,118, 25,238,221,134,120,161,209,225, 42, 6, 34,156,145,105,115,174,168,249,231,165, +251, 28,104,199,133, 39,239,188,181, 75,129, 41, 55,116,185, 11,203,157, 95,138,167,141,179,233,226, 64, 90,132,200,132,248,110, + 82,193, 78,200,160, 74,176,201,192,149, 90,240, 75,113,186,154,212,166,237,250,180, 37,246,231,165,251,140,207,139,123,170, 75, +246,139,238,153,172, 96,141, 2, 42, 43, 28, 40,195,152,181, 88,195,226,205,105,143,157, 21, 98, 71,221,182, 37,125,242, 63,171, + 76,208, 34,142,121,189,174,245,160,245,115,210, 63,131, 53, 54,220,102, 68, 42, 2, 41,214,177,111, 56, 65, 61, 56,106,158,103, + 20,153, 49, 31, 38,228,205, 22,219, 97,107, 63,239, 4,232, 44, 46,193,108, 95,120, 49,126, 15,255,166, 89,201,120, 17,124,223, +103,199,134,162,143,185,243,160, 83,219,129, 51, 86, 51, 47, 38, 91,250, 19,192,121, 64,222,238,144, 55,131,125, 40, 75, 1,100, +246, 7,183,137,223, 64,228,227,100,187,220,137, 77, 49,207,108, 30, 66, 22,174, 84,181,218,223,104, 40,241,125, 20, 77,246,145, +202, 68, 6, 26, 16,123,240, 6, 88,103,192, 16, 28, 68, 48,188,116, 64,126,114, 2, 26,238,248, 13, 58, 0,252,148,177,223,213, +163, 59,245,178, 13,126,244,202, 46,124,221, 1,227,203,246,234,150, 2, 76,159,243,131,126, 0,242, 22, 56, 14, 64,254, 28,144, + 62,106,185,221,249,141, 54,186,207, 79, 1,252, 12,144,190, 21,244,244, 87, 0,223,241,215, 64,223,244, 81,156,254,163,115,188, +245,127, 24,241,244,111, 30,112,255, 86,193,195,167, 7, 92, 73,131, 49,196, 97, 22,196,164,152,160, 80, 93,151,232, 34, 24,131, + 28,239, 26, 7, 63,177, 19,235, 4,117,124, 26, 81,139, 89,165,217, 49,252, 2, 33,191,200,227,214, 96, 47, 42, 70, 89,101, 18, +248,200, 95, 33, 72,108,100,166, 20,104, 95,182,247,104,195,138, 13, 91,215,176,125, 44,200, 60, 32,253, 71,119, 65,239,251, 61, +192,246, 95, 4,210,179,192,252, 24,120,244, 95, 65,239, 29,129,151,223, 4,188, 54, 2,247,142,208,227,108,254,118, 47,254,128, + 4, 28, 5,148, 5,216,165, 38, 4, 40,197, 78,178,189, 71,154, 61,118,144,121, 2,112, 96, 96, 18,232,209,210,241,112,122, 31, + 24,239, 1,167,129, 4, 46,192,156,128,109, 2,205, 51,136,172,235, 27,177,236,106,226, 69,147,213, 94,177, 79,161,142,124,229, +196, 22,214,194,115,120,103,253,105,211, 37,136,164,183,101,205,235,253,111,252, 79,159, 96,241,170,203,234,133, 97,189, 24,105, + 13,111, 70,103,219,193,106, 47, 31,207,238, 9, 24,111,123, 46, 99, 36,197,103,238,205, 40, 52,215,142,149,186,125,183,220, 84, +192, 16,225, 14, 17,190,249,185, 13,222,242,238, 1, 31,255,196,136,223,186,156, 23,135, 92,216,220,142,176,231, 48,173,232,135, +189,176,176,247,227, 19, 53,171,228, 90,145,189,176, 63,145, 39,131, 81,103, 81,234, 68, 98, 21,221, 73,109, 7,171, 93,144, 85, +172, 29,135,174,235, 27,125,215, 30,218,128,177,155,116, 72, 71,216,204, 68, 70,211, 99,219, 37, 83,213, 24,152, 48, 18, 82, 64, + 40, 85,161,173, 94, 8,164,238, 82, 61,141,203, 52,112,168, 20,175,151,141,163,117,229, 99,239,187,231,210, 93,202, 2,197, 1, +132,135,254,209,223, 46, 86, 43,218, 32, 61,125, 52,173, 23, 84,115,215,197,110, 98, 50, 67,203,247,191,191,147,194,182,120,226, +187,253, 30,235, 90,250,245,201,162, 51,181,239,245, 74, 4, 59,102,100, 88, 10,224, 93, 40, 46, 65,120, 66,192,209,223,100,233, + 86, 65,252, 58, 83,174, 88, 77,245, 89, 0,189,182, 34, 92, 83,235,209,219, 64,192, 9, 39,204,153,113, 80,215,103, 69, 8,139, + 20, 72, 41,134, 20, 6, 32,204,139,203,152,217,246,224, 51, 39,232,100,202,245, 30,115, 44,175, 35,226,148,192,110, 71,222,168, +168,107,161,172, 16, 44, 34, 32, 21,155, 2, 56, 53,142, 55, 3,198,194,152,143, 71,148,113, 66,222,110,176,217,108,189, 56,157, +236,140, 81, 99,170,132,179,161,238, 35,123,242, 82,148,247,139, 93,187,118,123,105, 31, 81,112, 78, 45,137,173,194, 26,218, 40, + 79, 89,145,192,246,103, 19, 35,101,147,241,179, 20,148,105,118, 48,130,250, 37,220, 14,175, 70, 10,234, 87, 0,236,255, 92,220, +180, 47,104, 39,164,141,236, 75,114,159, 33, 21,187,252, 85, 65, 69,161, 78,242,178, 58, 90, 48, 36,197,113, 82, 60, 24,129,187, + 7,193,201,253, 2,228, 59,221, 41,117,199, 61,204,238, 87, 47,143, 93, 16,183,113, 97,213, 3,239,212, 15,246,159,170,192,241, + 2,120,164, 80,246,233,196, 86, 45,171,114, 24,128,225, 55,129,124, 2,164, 51, 32,191,201,114,193,183,239,183, 78,126,251,131, +192,155, 62, 11,124,251,223, 4,127,211, 47,226,206,207, 61,193,233, 95, 61,226,238, 23,143,184,247,108,194,227, 13, 99, 82, 66, +145, 22, 40,172,218,239, 5, 61, 88, 71,189, 93,151,149,240, 45,172,105,210, 82,189, 50,195, 17,137, 45,134, 51,117, 99,124,237, +132, 58,209, 8,167,254, 50, 17,223, 67,106,105, 65, 47,108,169, 99,153, 26,108,132,201, 84,188, 57, 1,187, 34, 56,217, 3, 89, + 50,210,127,124, 23,244, 45, 31, 0, 54,127, 28,200,239,178,111,244,248, 17,224,252, 37,224,252, 25,224,188, 0,143, 39,232,126, +130,202,232,227, 41, 95,242,110,124, 32, 71,158, 69, 26,163,163, 25,192,113,178, 86,229, 48,155,124,124, 95,108,143,126,167, 24, +166,173, 36,168, 38,208,120,116, 15,251,209,233,129, 78,218,219,154,234,149,198,229, 72, 43,186,162, 88,121,228, 58, 10, 39,204, + 22,140,187,184, 64, 99, 76, 23,175,225,228,251,119,238,133,112,157,112, 38,119,187, 92,237, 68,106,253, 57, 36,180, 68,243,162, +131,111, 68, 68, 37, 24,160, 98, 5,150, 82,191,139, 84, 27,165,118, 23,251, 12, 96,235, 87,226, 83,204,248,125, 31, 60,195, 27, +254,194, 11,120,245,207,126, 1,159,250, 59,179,243,174, 27,226,185, 87, 29,235, 74,152,182, 35,224,133,129,145, 7,224, 31,127, +102,194,199, 30,140, 53,250, 56,246,185, 17,229,155, 86,153, 4,165,195,124,246, 73,112, 88, 81,211,214, 34, 65,209,101,244, 42, +212, 25,220,157, 35, 64,186, 17,113, 19,124,209, 34,231,156,176, 20, 90,201,234,130,232, 33, 42, 49,209, 52, 75,150,239,248,201, + 58,206, 1,166,235, 17, 87, 29,176, 42,164,216, 33,157,124, 58, 80,193, 40,145,201,237,123,242, 1,141,230, 55,118, 98,193,209, + 87, 22,235,238,111,125,185,150,134, 21, 89,188, 94, 83, 23, 85, 29, 84,190,129, 90, 19, 36,212,118,178,218,141,203,201,245, 17, + 73,151,118,193,254,125, 15, 1,219,222,139,166,125,199,250, 23,234, 47,179, 54,133, 58, 70,178, 96, 8, 51,197, 46,161,157, 11, +229, 50,247,206,141,246,179, 73, 87, 12,233, 74,216,169, 93,166, 58,187,250, 63,185, 45, 45, 7,228,104, 85, 8, 36, 0, 39, 76, +216,229,132, 43, 78, 96, 50, 31, 72,124,174, 98,242, 34,218,214,204,228, 5, 68,114, 33, 93, 78, 70, 7, 5,180,114, 18,250,162, +171, 47,172,117,241,153,215, 14, 17,219,141,245,189, 24,157,139,233,189,192,132, 76,140, 97,216, 32,109, 7, 28, 64,152,199, 3, +100,182,142, 93, 55,155, 54,110,137,194, 70,125,149,101, 85,101,199,238,236,128, 38, 1,156,169,149,180,170, 5,137,228,140, 60, + 12,246,207,164,212,200,204, 32,190,241,144,253,211, 27, 73, 54, 9,156, 51, 56, 49,168, 20,136,204, 80, 41, 80, 7,232,179, 42, +152,115,165,197,177,123,131, 99,164,111, 19, 4,139,164,171, 47,150, 10,164,204,181,116, 47, 69, 48,137, 88, 55, 79,254,248,178, +121,134, 38, 81, 20,255,129, 51,219,155,240,104, 86,156, 23,197, 41, 19,228,179,151, 72, 28, 53,237,224,244, 56, 87,189,203, 4, +140,143,128,233,220, 99, 59,189,143,144,217, 41, 55,197, 61,209, 9,250,144,128,203,226, 86, 47, 1,210, 0,108, 4,184,117, 4, + 54, 87,160, 91,175, 1, 39,191, 3,156,126, 12, 56,249, 8,112,250, 71,129,221,215, 2,249,107,140, 39,255,220,191, 0,252,177, +255, 14,249, 3,191,140,167,127,232, 10,183, 62,122,196,131,167, 20,175,158, 38, 92,177,145,205,180,248, 69,236,243,161,226, 43, +127,144,127,201, 24,203,166,198,191, 14,241,202,228,116,179,129, 66,217,171,222,173, 53,219,143, 22, 44, 4, 24, 97,245,176,192, + 24, 66,164, 32,155, 99, 91,235, 1,149, 56, 33,195, 94, 95, 26, 8, 36,100,126, 76, 98, 12, 40,216, 22, 32, 29, 18,210,119,237, + 64, 31,250, 32,176,253, 1, 32,189,221,118,220,227, 39,129,199,127, 21,250, 88,129,171, 1,184, 56, 64,175, 70,232, 60,154, 80, + 37,164,215,147,135,203,108, 59,226, 78, 96, 14,103, 7,148, 31,102, 99,121,206,165,209, 40,164, 3,214, 87, 14,190, 99, 44, 40, + 25, 41,240,105, 6, 31, 7, 80, 73, 72,251,185, 93, 2,106, 21, 60,121, 81,107, 35, 59,191,156,184, 49,224,129,101,152,206,181, +145,181, 46, 53, 41,178,218,189,133,240,148, 58,185, 49,173, 56,225,241, 32, 14,238,102,156,252,247,178,239,249, 69,218, 51,203, +170,182,250,208, 22,214, 3,237, 44, 88,158, 6,118,139, 8,207,159, 18, 18, 4, 95,248, 51, 95,196, 71,255,193, 30,133, 21,236, +227,126,137, 14,182,142, 78,237,178, 72, 30, 25, 26, 0,143, 7,170,248,200, 43, 19, 62, 63,154, 62,102,227, 99,213,190,211,207, +206, 20,239, 23,129,125,209,180,238,114,210, 74,115, 16, 59,113,193, 82,231, 16,228,183,212,133,187, 20,119, 41,172,199,160, 10, + 93, 30,178, 29, 42, 91,169, 53, 19,145, 11,111, 54, 48,138, 0,100, 36,143,232,132, 11,179,226, 16,159,213, 71,168,106,196,244, +172, 97,205,210, 90,115, 22,109,182, 81, 90, 41,200,185, 35,233,237, 60,253,237,194,247, 47,195,202,170, 90, 47,225,213, 37,222, + 10,126, 59, 63,139, 39,191,197,180, 35, 57,211, 32,146,210,160,171, 41, 19,150,176,149,158, 37,191,166,226, 21,135,247,204, 30, +120, 67, 14,224, 25,130, 82,184,176, 72,155,197, 47,166, 29,213, 89, 64,138,137, 25,163, 2,231, 80, 15,227, 2,230,110, 79, 21, +133,100,233, 26,144, 21,173,182, 70,232, 82,151, 46,154,233,186,206, 85, 59, 24, 82,160,203,137,184,174,155,227,253,158, 92, 38, + 71,157,118,172,196, 63, 39,152,176,155,236,206,113, 38,118, 43, 98,110, 0, 65,233, 13, 66, 77,237, 94,237,228, 43,106, 35, 88, +218,132, 32, 30, 90, 34, 32,243, 14, 39,187, 45,142, 4,200, 52, 65, 75,193,144, 7,232,206,182,195, 82,196,159,123,110,121, 7, +113, 96,145,106,173,240, 35, 48,190, 39,186, 41, 28,147, 55,100,195,215, 21, 35,104,176,251,208,137, 25,196, 9, 57, 15, 64, 82, + 87,109,251,229,222,147,234,136, 77,225, 94, 49,131, 92,177,177,213, 35, 79,214, 1,234,108,150, 32,134,123,160, 41, 24,244,228, +251,245,134, 80,181,221,165, 56,145,139,192, 62,119, 19,241,205,131, 10,114,178,136,201,215, 14, 86, 60,104, 82,232,111, 78,192, +120,101,101, 30, 50,192,103, 64,122, 26, 40, 7,187,212,203, 30,152, 30, 57,100,102,107, 74,118,157, 60,233,131, 91,194, 91,114, +162,196, 49,146, 77, 74, 4, 34, 3, 57, 65,135,236, 92,201, 9,244,220, 63, 2,158,251, 12, 80,254, 40,112,251,187,205, 19,143, +175, 4,248,135,128,119,254, 50,232, 39,254, 10, 54,255,211,103,241,220, 79, 29,112, 50, 77,120,229,169, 1, 23,196,152,185,133, +185, 80, 63, 10, 15,166,187,239,175,147,154,248,222, 4, 90,140, 82, 74, 99, 53, 39, 31,189,138,221,105, 34,203, 11, 41, 18,245, +170, 8, 63,217,133, 62, 73, 49, 37,178, 74, 23,180, 97, 43,152,224, 70,167, 68,160,217, 71,172,172,200, 52, 99, 43, 64, 86, 70, +122, 62,129,191,231,221,192,233,127, 0,208, 91, 92,180,246, 10,240,248, 47, 0,247, 94, 4, 30, 63,227,212,140, 2, 29, 71,211, + 78, 68,168,135,167,149,144,114,123, 42,134, 8,188, 38,139, 86,219, 23,127,237, 11,112,144,142, 21,170, 30, 31,235,129,225,105, +103,235, 16, 20, 63,213, 19,240,116, 2, 61, 86,240,101, 6,243, 92,245, 28,236,187, 81,113, 5,114,176,159,227,196, 9, 60,230, +216,133, 93, 4,226,180,160,209,225,174,169,175,169, 89,152,250,188,106,213,165,102, 53,210,192,164,235,145,139,119, 35, 73,218, +133, 24,137,108,203,195, 89,187, 3,180,253,190, 84,184,135, 66, 50,240,138, 42,190,248,145, 61,238,237, 5, 83, 82,108, 32,158, + 40,104,170,100, 66, 88,149, 26, 47, 94, 59,223,242,164,138, 7, 99,241,245, 65, 88,225,186,159, 69, 91,161, 67,157, 82,189,199, +127,234,170,147, 90,239,204,141, 11,222,132, 78, 11,237,174, 71, 78,198,229, 92,148, 42,199, 29,221,142,188, 6,165,116,214,205, + 38,226,178,247,121, 88,121,182, 75, 8,183,186, 78,171,238,125,197,138,166, 66,234, 10,125,109,130, 55, 52,164,109,255,222,231, +110,108, 28,246, 53, 80,243, 90,199, 24,251, 82, 2,220,210, 8,108,201,223,199, 64,217, 82,119,233, 6, 24,103, 19,100, 58, 23, +215, 77,213, 57,160,173, 83,247,115,190,172, 71,195,218,108,204,158,132,189,152,156, 96, 53,161,137,220,245,192, 30, 23,103, 36, +204,126,193,111,220,140, 51,122,212,237,232,231,117,116,224,234, 32,170, 72, 65, 99,109,226, 54,234, 71,146, 55,234, 67, 91,193, + 86,145,181,126,233, 6,207,127,234, 86, 4,189,120,143, 18, 67,136, 49,139, 66,146,175,146,161,102,211, 37,245,213,101,139, 30, + 55, 0,145, 9, 7,136,109, 28, 95, 68,204,159, 46,101,241,157,209, 77,147,165,149, 45,176, 29, 31, 38,174,219,228, 1, 24, 6, +204,211, 12,153,103,168,171,222,145, 18,138, 40,104, 30,145,242,128,147,237, 14, 37, 15, 40,101,178, 36,205,221, 45, 28, 41,161, +140, 71,228,196,160,156, 77,184, 10,255, 97,250, 47,198, 62, 99,165,152,237,251, 1,192, 41, 33, 15, 22, 89, 39, 50, 87,191, 28, +197,222,155,204,255,205,137, 45,205,102, 16, 96,158, 33,197, 54, 62, 84,188, 91,135,237, 54,197,103,137,196,201,253,228,210, 20, +125,222,101, 19,168,146,212, 64, 4, 77,230,103, 7, 19, 56,251, 94,190,113,243,236, 34,240,138, 84,139,225, 56,171,193,221,187, +254, 39,147,226, 98, 84,220, 25, 20,178, 97,148,207, 95, 33,239,127,221, 70,226,128, 73, 86,248, 13,128,190, 2, 76,143,237,114, +150,131,117,228,124,102, 23,112,192, 75, 72,218,163,234, 19, 5,236,103,191,156, 86,165,116, 34, 83,110,111, 19,244,139,103,192, + 91, 47, 64,111,255,239, 1,122, 8,220,250, 94, 32, 63, 7,240, 45,128,190, 29, 56,251, 58,208,247,253,215, 72, 95,243,243,184, +243,159,141,216, 62,152,241,224,142,224,225,134,112, 84,170,137, 92, 49, 46,227, 16, 84,105, 39,162,153,151,202,146,193, 71, 92, + 21, 70,227, 39, 91,136, 66,226, 19, 41, 62,128,168,158,209, 4,140,163,160,136, 89,155, 2,153, 26,127,145,138, 5,233, 36, 38, + 36,175, 16,152, 20, 3, 41, 54, 89,145,103,182, 66,240,219,111, 3,207,255,187,230, 10,208, 1, 56,252, 58,240,232,135,160,175, +252, 14,240,210,109,123, 29, 47,246,144,151, 14,144,199, 19, 52,140,202,170,203,116, 20,245,211,119,203,253,242,209,118,233, 87, + 5,216,139,165, 23, 41, 64,194,109, 30,216, 51, 64,137,219,220, 62, 13,192,150, 64, 91, 6,157, 16,240,200, 34, 35,169,227,235, + 71, 81, 73, 36, 94, 44, 82, 45, 62,133, 0, 46,253,104, 48,240,174,173,133,162,200, 84,184, 97, 31,220,119,165,133,250,188,114, + 63,176, 57,108,113,221,191, 35,254,169,163,118, 64, 14, 68, 40,172, 77, 83,161, 84,187, 83,238,118,156,169, 59, 4,199, 89, 48, +122, 81,183,205,246,231,132,218,216,151,161,181, 91,231,149, 15, 62,193,106, 90,246,213, 78,212, 79,226, 57,226,169, 59,196,122, +191,248,188,210, 35,160,219, 7, 43,150,151, 77,191, 46, 96,213,133, 91,148,234,240, 0, 0, 32, 0, 73, 68, 65, 84, 31,153,171, +160,137, 22,250,132,232,152,230, 8, 25,234, 68,129, 61, 9, 49, 44,128,201,171,217,158, 63,111,151,191,165,207,165, 46,128, 90, +220,222, 55,118, 94,106,214,182, 99, 15,250, 92,162,165,127,126, 61,186, 14, 24, 80,234, 70,203, 59,255,217,206,213, 4,109,141, +139,160,109,229,163,215, 3, 61,178,182, 92, 2,114, 90, 94,228,220,119, 91,187,133, 58,188,116,195, 46,233, 68,108,125, 71, 43, +120,253,255, 91, 43,210,129, 38,230,155,123, 39,129, 54,215,132, 86, 44,107, 87, 32,213,167,172,217, 10,171,127,124, 45,144, 83, +186,214,165,175, 59,223,254,178, 79,139, 41,143,143,228,217,194, 65, 4, 97,131, 22,156, 16, 35,167,140,189, 42,138, 76, 94,116, +115,253,160, 55,122,139, 57,169,192,108, 22,213, 18,197,255,117,225,227, 53,135,202,235, 88, 43,225, 1, 90,156,135,246,249,242, +149, 52, 68,193,217, 34, 85, 45,161, 84,176,201, 25,154,179,253, 60,121,192,201,102, 3, 85,193,164,132,253,113,223,212,239,210, +129,100,184,243,123,163,235,226, 65, 14,148, 73, 9, 36,197,147, 40,154,104,160,134,191,248,172,196,160, 49, 25,154, 0,153, 39, +232, 52,161,232, 17,154,146, 81,227,180, 89,112, 36, 9, 56, 9, 4,201,210,215,220,234, 66, 29,175,176,248,131, 69,170, 16,110, + 94, 63,234,248,124, 97, 47, 10,111,225,236,220,236,224,117, 15,217, 42,239,131, 0,156,252,128,216, 50,244,162, 0,247,190, 8, + 60, 51,187,101,109,107,160, 25, 69,227,135,207, 7, 79,109, 59,119,198,228,109,179, 96,233, 33,228,191,230,101,175,234, 21,241, +244,143,150,203, 11, 2,232,130,129, 29, 3,151, 9,120,116, 2,125,124, 0,126,207,223, 0,189,241, 51,192,217,159, 0,134,119, + 24, 36,133,223, 4, 12,127, 30,244, 45, 95, 5,252,228, 79, 97,247,103, 47,240,198,151,102,236,238, 20,220,219, 38, 28, 8, 40, +243,210,165, 96, 9,104,188,176,255,176, 15,226,114, 28,230,188, 76, 7, 51,235,224,242, 1, 10,208, 16, 59, 83, 64, 38, 64,102, +241, 0,132,110, 84,111,177, 56,182, 99,100, 32,177,212,170, 62,145, 98, 96, 27,191, 51, 18,240,108, 6,222,247, 14, 96,251, 94, +123,220,198,223, 1,126,231, 95,129,126,122, 2,246,207, 1,219, 45,128, 9,250,185, 3,228,254,222,166, 64, 91,110, 65,237,125, +203, 23,144,239, 80,229,205,197,160, 52,163,119,233,197, 59,245, 32,251, 30,139,143,239,197,166, 43,228,156, 52,190,101,171,150, +156,157,194,145,129,204,245, 66,239,205, 52, 33, 46,148, 30, 16,210,227,231,147,125, 89,237, 60,193,232,186,247,222,242,214,187, + 8, 4, 43,223,115,167,158,143,253, 98, 86, 11, 92, 49, 7,130, 46, 4, 78,150, 87, 99,250,149,112, 95,134,178, 93,253,210, 45, +165,161, 55,163,181, 81, 81, 92,138, 59, 65, 68, 43,100, 67, 96,227, 79,118, 62,118,189,216,123,114, 94,191,203, 21,173, 65, 26, +220,113,201, 55, 88,166, 0, 78,139,198,139, 58,116, 15, 86,199,177, 94, 83, 12, 23,159,142,104, 71,244, 91,231,104,211,194, 66, +214, 52, 62, 49, 82, 7,173, 70,237,126,193,136,175, 46,106,209,210,141, 82,161,186,140,129,173,107,132,182,142,208,149,152,146, + 87,204,135, 78,146,116,237, 64, 79, 93,238,124,164,177, 21, 31, 81, 71,120,205, 41, 20,183,253,243, 48, 5, 32,199,183, 81,243, + 10,180, 19, 93,238,142, 34,169,205, 68,115, 12, 43, 82, 65, 13,169,189, 24,101,251, 65, 44, 43,161,165,126,137, 75,125,125,161, +235,106, 45, 16, 59,119, 46,173,158, 94, 90, 20,151,214,217,254,127,151,174,164, 75,189,149, 51,180, 94,175,243,189,197,251, 51, +117,133, 78, 95,128, 36, 88,211, 41, 68, 85, 60, 73,106,211, 69, 73, 12, 45,115, 13, 70,169,207,106,112,209, 35, 66,220, 87,194, +179,216,106,111,137,214,165,165, 72,149,174,179, 37,214,203, 3, 17, 69,153, 38,228,141,218, 72,221,197, 20, 5, 5,165, 20,164, +153, 64,121, 3,100,155,182,202, 60,130, 83, 54, 16,216, 52, 34,113,130,228,140,195,126,143,195,229,185,133,105,181, 13, 76,111, + 89,105,221,121,123,184,200,127, 32,179, 17,113,189,208, 19,200, 43,151, 33, 0, 12, 82, 32, 58,131, 99,172,206, 12, 42, 30, 16, +163, 5,202,106, 98,178, 24,135,184, 15, 75,165, 88,133,162,178,176,183, 85, 43,128, 16,180, 20, 15,183, 79,190,119, 12,232,138, +214, 75, 93,138, 66,216, 20,199,179, 42, 54,170,102,103, 80,224, 40, 6, 56, 32, 47, 7,101, 3,232,213, 0,253,236,167, 65,239, +126, 4,224,118, 67, 50,200,149,209,199,202, 8,204,151,192,116,207,163, 62, 47, 0,253,114, 71,197,138,225, 71, 7,110,237, 64, +148,223,179, 64,167,210, 78,126, 88,178, 21, 10, 3,251, 25,196, 19,240, 56, 3,143, 79,161, 95,243, 43,160, 47,255, 83,192,237, +239, 3,182,127, 0, 72,119,157, 96,247,189,160,175,122, 30,250, 87,126, 4,233,135,174,112,231,227, 71, 12, 34,120,176, 83,156, + 15,102, 69, 34, 37, 83,251, 43, 32, 65, 74,243, 90,155,179, 64,103, 79,184,242,198,214, 25, 60,237,225,236,198,248,204, 12,113, +144, 2,147, 32,185, 85, 70,168, 29,118, 34,189,216,203, 58,242,228,226, 26, 37, 32,179, 98, 67,138,129,216,130,125, 52,129,222, +117, 10,126,203, 31,180,176,155,178, 7, 30,254,151,208,127,188, 7,238,125, 25,240, 6, 31, 80,221, 63, 64, 62,123, 5,221,143, + 16,182, 27,135, 6,251,188, 17,183,153, 45, 81, 76, 60,178,203,148,139,253, 58, 22, 96, 20,232, 36, 70,148, 3, 64, 51,217,133, + 63,139,181,193, 19,128,105, 50,159, 58,109,129,244,156,121,214, 6, 1, 78, 0, 26, 60, 57, 80,101,161, 95, 13,209, 79,100, 84, +179,243, 14,138, 24,135,154, 85, 65,137, 48,206,122,227, 1,174,235,173,165,243,224, 75, 47,156,235,109,138, 93, 80, 75, 20, 81, +212,117,204, 49,112, 24,188,165,154,117, 53,218,235,148,223, 68,215, 3, 78,230, 58,248,112,133,118,236, 12,125, 44,220, 46, 68, + 47,109,146,231,179,119, 93,207, 28,157,181,182, 80,145, 96,181,247,227,234,170, 58,167,235, 63, 43, 58,210,157,160, 21,169,113, +121,246,226, 53,185, 14,249, 91,136,146,184,147,101,149, 21, 88,169, 31,157,231, 85, 97,162,171,108,119,238,222,177,132,150, 43, + 94,180,233, 31, 56,236,177,253,165,175, 75,121, 24,173,144,194, 33,234, 26,186, 21, 66, 4, 3,109,124,248, 52,249, 5,127,230, + 29,250, 25,128, 51,127,255,142,218,166, 16, 19, 34, 60,198,143, 27,180,176,156,106, 81,163,102, 11, 3, 53,253, 3,117, 94,252, +121, 81, 72,182, 43, 42,246,204,210,165,178, 21, 93, 94,196,114,205,131,221,245, 52,218, 38,125,210, 77, 51,214,228,114,245,196, +179, 62,222,149, 52, 46,116,189,214,168,243,202,167,142, 85, 40,153,116,108,133, 76,141,237, 15, 23,184,153,147,202,126, 70,113, +120,135,166,140,189, 10,202, 60,219,116, 33, 37,204,254,190, 16,147,173,146, 0, 48, 25,182,124, 38,134,200,100,174, 6,106,226, +214,158,170,184,198,237,106,231,115,215, 14,205, 13, 85, 31,185, 23, 80, 26,144,136, 33, 57,153, 99, 75, 11,166, 2,224,120,192, + 70, 5,105,216, 96, 82,193, 56, 30,204, 77, 35, 70,232,204,195, 6,137, 19,182,155, 77,219,169,115, 61,176,233,154,215,214, 64, +243, 62, 86, 55,181, 84,181,193, 69,224,138, 93,242,212,160, 39, 62, 27, 86, 42,149, 4, 69,185, 11,170, 86,181, 68, 55, 78, 72, +193,138,247,203, 92, 59,245,138,129, 15,108,103, 47,253,195,162, 82,231,158,245,107,121,153,166,110, 3,155, 3, 19,206, 97,225, + 50, 16,198, 56, 43,166, 2,191,136, 60, 77, 40, 15,208,223,126, 13,244,173, 47, 1,155,231,125,215,234, 53,180,122,223, 37,151, +192,213, 4, 61, 20,208,217, 43,192, 89, 1,134, 55,199,163,100,221,245,137, 95, 14,137,237, 73, 59,250,210,243, 40, 45,210,182, +192,236, 88,179, 53,250, 64, 1,253, 86, 2, 30,156, 65,223,115, 31,120,215,143,130,158,253, 57,224,244,251,129,225,157, 0, 15, + 0,190, 3,244,194, 51,160, 31,249, 79,129,255,230, 33, 78, 63, 34, 24,142,123,236,146,224,113,102,204, 81, 99, 83,120, 54, 61, +180, 69, 21, 50,181,195, 45,187,126,143,104, 57, 26, 69, 87,188,133,255,159,147,137,165, 36, 89, 7, 88, 5,116,140,133,119, 37, +113,140, 64,141, 33,192, 76, 78,242, 19,208,176, 1,113, 2,109, 19,248,253, 47, 0,111,248, 22, 59,178, 14,191, 12,124,241,227, +192,195,103, 13,125, 37, 51,240,242, 12,249,212, 99,200,147,189,173,101, 60,198, 75,149,237,179, 67,190, 23, 96, 79,210, 56, 73, +174,129,240,214,102, 47,214,137, 79, 98, 30,117, 87,198,171, 8,104, 44, 13, 17,118, 36,155,186,200,185,105, 33,120,103,199,226, +142,129,147, 12, 26,134,101,228,176,118, 93, 54, 80, 81,190, 91,183,145, 49,181,112, 19, 89, 41,100,200,145,161,177, 87,207,104, +151,120,221,219,173,227, 33,125, 15,162, 98,175,191,114,235,126, 8,141, 98,151, 82,187,160,145, 76,143,169,190, 79,174,239,103, +231,243,142, 9, 65,137,238,147, 90,215,143,106,103,212, 26,158, 18,161, 39, 53, 6, 51, 34,108,163,211, 45,214,249, 0, 90, 71, +126, 85,157, 28,196, 61,106, 7,119,191,179,213,238, 20,174,217,224,157,231, 62,190,247,121, 61,205,236, 33, 60,157,238, 64,226, +251,236, 70,174,172,205,224,220,239,238,235,184, 95,219,115, 64, 43, 53,124,234, 58,109,234,126,134, 56,172, 99,243,148,180, 93, +134,212,173, 88,218,110, 88, 23,197, 84,124,173,141,255,125, 83,247,251,161,130,151,149,223,122, 14,154, 29,217,134,105, 77, 30, +148,142,234, 22, 16,107, 14, 34, 32,181, 96, 23,238,160,213, 82,109,144,122,173, 99,174, 13, 30,209, 66, 23,113,205, 91,127, 77, + 96,119,253,159, 75,245,137,199,179,177, 44,120,150,221, 62, 45,154,200,155,106,191,254, 25,187,169, 19,110,133, 27, 97, 36,197, + 73,133, 41, 89,134, 9, 59, 30,156,138,235,192,216,216,139,133, 25,101, 26, 49,139, 32,147,171,206,115,134, 50, 99, 42, 5, 92, +138,221,119,137, 64,100,165, 70, 93,239,213,103, 9, 43, 13,128,118, 63, 87, 23, 53,215,137, 30,201,167,228,115,153, 49, 29, 15, +200,158, 76,202,238,141, 87, 78, 80,102,140,243,140, 34, 5,105,158, 77,112, 78,108, 22,230,204, 21, 19, 13, 15, 57,203,232, 16, +177, 11, 95, 39,173,153,203,218,240,152,104, 18,255, 42,178, 67, 75, 92, 35,239,152,217, 59,104,142,191,197,133, 7, 20, 10,121, + 47, 18, 44,230,211,195,125, 85,186, 8,184,174,234,241,175, 17,226, 5, 18, 1, 58,175,122,248,220, 65, 14,203, 80, 27,143,216, +197,110,254,105,187,248, 5,123,117,248,129, 51,214, 11, 51,202,150,161,191, 53, 2,231,191, 4, 60,251,181,150,141, 78,228,227, +117, 31,189,207, 7,232, 21, 1,143, 1,189,100, 80,185, 15,220,153,157, 74,150,205,155,126,114,176,203,102, 59, 55,115,236,209, +245,190,165,235,214, 67,133, 50, 2,152, 14,192,158,129,203, 25,116,127, 11,124, 94,172,107,127,219, 15, 0,119,255, 29, 96,247, + 33,179,216,165,127, 2,120,234, 47,129,255,212,159, 6,253,181,251,224, 95, 24,240,236,241, 2, 67, 41,120,156,146, 5, 56, 84, +212,185, 86,145,119,168, 49, 19,181,216,208,165,224, 69,151,229,156,127,143, 73, 60,204,164,120, 33, 18, 15,153,120, 32, 8, 89, + 4,161,104, 27, 80, 68,225,144,161,224,221, 0, 30, 50,104, 47,224,175,221, 2,239,255, 16,176,123,155, 37,167, 61,248, 9,232, + 23, 21,216,238,236,111,125, 52, 67, 62,123,137,242,202, 17, 50,205,174,139, 48, 5,189,169,182,115,149,225, 83,180,167, 91,246, + 16,237,226,221,183,120,151, 94,172, 83,159,172,112, 34,153,129,139,193, 63, 95,108,100,140,177, 0,122,191, 49,176,248,204,200, +116,187,198,188, 12, 17,210, 84,109,126,228,105,108,126,128,179,177,236,139, 18,148,237,175,172,130, 67,255,156,195,167, 77,220, +173, 45,146,179,191,225, 34,186,250,103,227,223,139,132, 43,183,117,198,229,115, 45,192,164,235,154, 74,168,116,213,234,158, 96, + 89, 67,201,133, 92,209, 37,234, 34,196, 98,173,214, 13,187, 28, 51, 48,148, 62,110, 52, 80,181, 13,168, 94,237, 63,180,170,245, +176,204,171, 22,186, 14,221,161, 53,237,173,126,121,186, 6,241,192, 74, 60,183, 24,109,118,182, 64, 90, 29,165,225,222, 17,159, + 52,244,157,182,116,171, 69,172, 88,235,164,109, 28,222, 2,123, 26,245,172,248,235, 90, 22,133,136,253,128, 57, 66,171,220,125, + 64,221,197,222,143,220, 77,100, 70,181,120,161, 14, 41, 60,250,190, 94, 61,242,183, 0, 56,248,229, 58,118,212,189,202, 84,138, + 49,183,195, 95,158,234, 84,232,201,153, 20,199,176, 1,162,165,145,149, 27, 58,109,237,214, 69,253,235, 5,186, 33, 44,101,245, + 62,210, 13,124,245, 5, 9,113,133,122,229, 53,195, 0,221,103,120,169,145, 91,237,166, 91,236,240, 77,133, 69,241, 38,117, 14, + 42, 29, 25,172, 44, 19, 99,224,108,239, 13,145, 37,164,145,193,101,138,223, 5, 33, 12, 79, 76,216, 12,131,199,199,218,250, 52, + 56, 17, 66,134,119,133,136, 7, 38,117,174, 10, 98,183, 90, 99, 5,166, 69,213,173, 45,220, 6,241,108,139, 69,179,218,186, 88, + 77,124, 39,218, 77, 21,128, 82, 20,162, 35,118, 68,216,158,156, 66,136, 48,205, 35,166,105,198, 60, 30,237,240, 73,169,237,212, +171,200,164, 83,186, 47, 72, 97, 17,207, 74, 93,200, 11, 5,217, 45,132, 33,161,108, 12,133,178,120,242,140,214, 72, 81, 21,139, + 8,101, 54, 54,124, 74,185, 70,141,154,202,158,171,240,139,216,170,149,102,174, 66,151, 59,174,208,185,248,126, 4, 32, 45,158, +177,142,234, 39,156, 84,205,202, 38, 90, 5, 56,179,239, 66,138, 63,229,156,128, 9,138,137, 1,253, 93, 64, 63,253,113,208,221, +207,187,119, 58, 74,123, 87, 87,149,163, 33,165,174, 12,219,164, 2,144, 94, 0,119, 94, 4,248, 57,128, 78, 64,187, 43,232,110, +242, 16,237,220,186,246,163,137,247, 80,252, 45,157,165, 43,181, 21, 50,205,160,195, 12, 58,206,160,243, 1,244,210, 41,244, 61, + 87,160,175,251, 81,224, 77,127, 31, 56,249,126, 32,125, 25,192, 95, 13,220,249, 49,208,247,254,135,192, 83, 79,192, 63,115, 23, +119,206,207,177,153, 38, 60, 32,198,101,183,227, 21,105,220,113, 67,235, 19, 56,149,133,127,154,208,129, 25,116,185,231,171,226, + 37,233, 56, 6,221,135, 49,188,153, 22,213, 73,200,201, 14,250,172,130,156, 9,124, 58,128,246, 9,124, 10,208, 31,126, 55,232, +249,239,177, 77,235,254,231,128,151, 62, 5, 92,221,178, 47,118,255, 8,125,188,135,220, 59, 66,198, 9, 74,226, 43,152, 80, 75, +118, 27, 87, 98,208,134,173,112, 58,165,166,206,185,154,235,232, 29,147,216, 26,103,246,196,187, 89,129,139, 2,154,197,190,222, +158,160, 71, 6, 77,151,174, 36,212,198,211,221, 36,208,192,181,253,150,212, 29,198,206, 52, 39,136,211,225,200, 87, 75,142, 46, +136,206, 36,244, 39,126, 99, 30, 21, 72,217, 45,102, 98,240,159, 24,115,135, 95, 55, 87,145, 92,179, 19, 13, 93,240,138,250,215, +168,209, 11,245,242, 51, 22,117,236,140,197,117, 16,209,246, 43,135, 51,166,165,174,113,103, 73,234,121,214,138,118,112,215, 98, + 70,187,213, 87,127, 72,135, 31,219, 9, 93, 27,168,213, 87,126, 64,204, 46, 38,139,144,148,210,217,167,180, 3,183, 96,213,153, +221, 52,150,167,107,102,171, 78,248,212,109,187,214,141,200, 66,105,172, 13,101, 32, 55,136,188,168,175, 87, 86,170,251,212, 77, + 50,218,101,164,238,185,167,174, 30,210, 10, 24,210,110,146, 25,241,197, 65,204, 76,126, 97, 30,187, 75, 46, 20,249, 19,150,185, +238,203, 85,131, 46, 0, 56,232, 46,247, 40, 66, 70,191, 20, 7, 50,100,172,120, 12,240,163,206,243, 31, 49,189,220, 1,129,168, + 31, 25,251,231,202,178,217,245,154, 56,239,245,132,106,215,183,219,184, 1,140,186,116,101, 80, 21, 42,182,152,214,235,255,166, + 94, 95, 99,241,106,194,213,125, 51, 92, 11,102,194, 94, 20, 3,171,195,207, 12,206,161, 72,208,164,216,176, 81, 80, 15,176, 56, + 85,168, 34,229,100,246,235,148,170,195, 59, 51,163, 48,219,120,156,201,154,153, 50,251,122, 46,132,116,104, 73,167, 55,124,207, +235, 19, 55,190,249, 90,172,171, 57,147,200,145,233, 38, 8,247,180, 54,166, 10,100, 19,215, 73,148,253, 21, 52, 37, 76,211,132, +121,158,236,123,131, 77,246, 50, 86, 99,166,122,185, 6,201,205, 71, 88, 28,163,118, 52, 1, 81, 29,108, 57,169, 45, 81, 83, 48, + 88, 68, 67, 83,164,104,153,187,248, 86, 63, 12,105, 65, 40,240, 44,106,235,134, 56, 25,129,142, 52, 50,164,217, 47,150,138,218, +240,139,124,185, 80, 9,197,170,192,192, 15,147, 43, 76, 69, 4, 5,130, 50,199, 14, 52, 4, 48, 30, 54,145,129, 91, 23, 10,254, +123,175,128,190,234, 23,129, 59,111,111, 57,220,234,137,198,243, 4,140,108,179, 48,135, 89,107, 33,227,142,157,221, 7,210,214, + 46,243, 91, 4,220, 98,235,190,175,162,210,114,112,138,175, 7,234, 55,155,162,108, 86, 40,102,232, 56,131,198, 17,180,223,128, + 95,219, 64, 63,191, 5,190,233,239,130,222,253,219,174,142,255, 0,128,119, 2,183,127, 28,244, 93,127, 26,188,125, 0,250,249, +187, 56,185,119,137,231,174,246,216, 64,113,158,147, 77, 40,188,155,216,100, 96, 67,197,222, 15,181, 29,209,226, 41,147,118,240, +193,243,119,152, 29,237,233,127, 79, 79,125,168,200,222,142, 60, 53,184, 61, 49,147, 32, 11,192,155, 12, 26, 18,120, 18,208,191, +250,229,160,175,254, 97,179,144, 29, 62, 15,156,255,117,232, 33,219,160,176,204,208,139, 35,228,229, 3,100, 63, 26,114,177, 75, + 61, 81, 85,208,224,175, 27, 17,184,144,237,216, 79, 96, 52, 57,130,141,218,227, 50, 63, 20,232, 97,130, 30,213,254, 46,144, 5, +209,236, 39, 27,207,159,101, 63,193,213,198,239, 50,218, 62, 93, 11,144,196, 2,250, 78,179,127,210,123,241,168,223,251,174,125, + 84, 53,145, 98,248,127,165,227,164,167, 80, 90, 51,131,148,113,247,132,112, 85, 4,227,108,233,133,161, 70,150,213, 97,217,139, +104, 66,237,108, 69,167,213,149, 57, 89, 45, 24,187,194,226,234,123,235,238,219,206, 81,113,125,241, 76,137,160, 73, 77, 3,170, +173, 59, 87, 63,144, 42, 57,204,219,163,121,117, 57,114, 47, 10,211, 54,221, 73,222, 25, 7,232,131, 60,115, 29, 76,166, 83,244, +203,125, 34, 50,146, 92,119, 41,177, 46,155,132,178,154, 34, 93, 3,193,248, 68,162,223,165,167,149,117,172, 23,168,201,234, 53, +150,149,152,171,223, 11, 75, 55,254,214,206,134,168,238, 43,143,113,122,179,240,217,235,223,127,189, 16,244,197, 20, 4, 98,201, +151, 27,102, 20, 85, 76, 46,170,154,171,213,177, 37,218, 77,190, 21,106,161, 59, 84,139, 12,215,194, 86, 52,113,207,240,143,215, + 40,182, 83,123,109,252,117,192,142,162,128, 27, 61,118,236,111, 10,109, 72,216, 27,227,118, 36,174,166, 18,134,122,232, 76, 11, + 51,145, 27,212,105,175, 55,146,215, 27, 13,104,215,231,234,109,205, 69, 43, 80, 11,181,159,150,218,223, 88, 73,131, 66,184, 41, +167,162, 95,207, 20,143,152,102,181,228,207,156, 24,153, 50,100, 48, 43,219,196, 70, 1, 36, 40, 68, 76,129, 62,164,140, 33,103, + 36,206, 85,171, 52,112, 2, 13, 4, 21,103,194, 3, 75,155, 75,157, 30, 52,188,172,122,209,173,215, 94,147,206,218, 73,237,103, + 21, 81,232, 60, 99,216,236,176,221,109,160,100,186,166,226,150,185, 82,138,163,150, 11, 74,153,129, 34, 86,124,108, 54,200, 57, +163, 20,179,151, 75, 41, 72,239, 56,187,245,231,205,137, 70,117, 55,196,157,242,175,250,255,124,255,192,201, 43,153,110,251, 18, + 72, 77, 78,185,118,116,129, 20,141,249,161,237,204, 75,133,202,176, 87, 73, 86,253,219,238,151,201,202,134, 72,208, 76,253,104, + 40,152,229,180, 34, 45,244, 10, 20,127, 10, 9, 10,214, 82, 59,166, 45, 19, 78, 72,107,215, 31,154,169,129, 20, 39, 25,216, 56, + 54,118, 11, 65,126, 66,224,247, 93, 1,207,124,192,112,175,243,203,192,116, 1, 76,175, 2,151,247, 45, 45,108,111,150, 41,131, + 56,251, 9,153, 21,196,197,151,203,206, 82, 29, 21, 56, 40,104, 22,131,167,140,106,221,122,168,148,180,193,156,181,204,174,204, + 86,232, 52, 3,165, 64,231, 25,116,159, 64,159,219, 1,251, 75, 96,243, 17, 80,250, 37, 35, 80,211,123,129,221,119,129,222,254, + 27,160, 23, 94, 3, 94, 59, 65,158, 18,118,165, 96,152,102, 72, 34,136, 71,160, 14,201,134, 6,213,254,163, 30,134,163,205,191, + 92, 71,128,172,245, 53, 44, 74,152,103,187,220, 69,220, 85,224, 0, 14,142,145, 36, 41,134,164,216,102,181,120,205,164, 24, 50, +131, 79, 18,210, 4,240, 63,117, 6,250, 67,127, 17,216,125, 53,112,252, 93,224,201,143, 2,247, 63, 9,220, 59,181,225,225,213, + 12,125,233, 10,229,222, 1,114, 28,109,100, 94,167, 61, 54,102,167,236,191, 6,251,197,183, 55,192,243, 27,224,118,182, 19,239, + 73, 49, 11,225,161, 0, 87, 5, 58, 10,244, 24, 68, 30,107, 73,185, 48,232, 77, 3,112, 39,219,172,242,153, 2,186,157,129,211, +111,177,144,157,195,111,128, 30,126, 6, 56,156, 24,205,238, 11,151,152, 15, 5, 83,166,214,193,114, 23, 18,231,194,180, 18, 20, + 47, 87,165, 39,127,110,114, 98,156,164,140,247,126,215, 29,188,245,159,187,141, 71, 31, 59,226,226, 74,124,240,160,215,198,152, + 90, 47, 56, 90,248,216,193,109,175, 13,191, 96,226,114, 37,130,237,248,194,230, 67,171, 95,171, 86,138, 92,244, 19,115,206,220, + 92,158,246, 76, 58,148, 36,209,138,128,213,119,233,188,162,153,117, 24, 85, 1, 33,251, 25,188,241,205, 72, 36,142,197,207,153, +253, 87, 20, 62,220,229, 77, 36, 90, 94,146,253,127,207,221, 21, 64,171,253,116,164,128, 13,180, 92, 3,193, 71,220,189,141,236, + 38, 97, 23,110,224,117, 99,177, 79,191,190, 39,174,105,100, 43,213,117, 47,220,170,222,119,120,129,151,216, 38, 24, 43, 27, 95, +241,127, 65,170, 45,140,170,238,162,116,151,156,184,240,173, 39,182, 97,133,211,149,181,109, 14,246, 94,156,144,109,157,142, 17, +216, 76,109, 69,100,188,125,187,224,238,144, 21, 2, 7, 0,247, 69, 13, 9,221,105, 28,150,190, 44,194,186, 63, 88,119,229,181, + 9,164,213, 31, 12,234,168, 79,249, 18, 59,220,103, 61,115,167,133, 35,183,141,220,233,102,123, 27,174,173, 57,184,114, 10,110, + 13, 3,118,219, 29,178,231,161, 19, 51,132,185,146, 9, 55,156,144, 83, 70, 98, 83,199,199, 36, 33,249,142,125,195, 12,164,100, + 97, 42,243,220, 61,164,180,200,230, 96,231,173, 16,249,167,187, 54,164, 55,121, 7,154,126,161, 20,197, 56, 30, 49,143, 71, 72, + 49, 30,200, 52, 77,152,198, 17,243, 52,162,204,118, 47, 4,149, 42, 86, 2,182,202, 78,190,102,208,198,208,168, 25,200, 76,139, + 14,133,152,151,239, 69, 39, 26,130, 54,219,155,104, 71,213,169,135,178,172,126,152,104, 15,156,181, 93,216,159, 86,109, 56, 74, +182, 17, 60, 57,149,137,164, 83,222, 71,118,181,167,190,233,194, 95,133,154,233,220,122,121, 96, 46,138, 35, 3,147,135, 54, 20, +175, 60,149,236,111, 27,103,197, 46,153,176,174,108, 8,250, 8,208, 79,188, 4,122,251,167,129,147,247,251, 9, 58,219,142,189, +192, 78,244,131, 24,130,116, 22,160,116, 25,184,207, 2,116, 58, 88,168,195, 45,182, 29,237, 9, 3, 83, 2,237,109,239,171,179, +223, 2,220,117,234,226,221, 41,164,234,242,136, 10,104, 44,208, 97, 6,149, 1,252,247, 78, 64,159, 28,160, 95,113, 15,248,138, +255, 17,244,182,159, 1,206,254, 36,176,251, 17,224, 27,255,103,208,151,253, 95,192,255, 1,228, 79,220,198,217,189, 43, 12,151, +123,156, 51, 99,220,248,107,210, 89,121,224, 9,111,186, 48, 96,248, 1, 86, 20,196,166,114, 62,198,154, 34,198,129,254,239, 15, +138, 38, 8,226,214,201,108, 54,192, 80, 8,148, 19, 72, 18,232,180,128, 62,244,109,192,201,123,128,249, 8, 28, 63, 6, 92,124, + 2,122,145,129,121, 0, 46,103,232, 75, 23,144,151,246,144,171, 9, 58, 22,155,178,132,128, 41, 62, 92,153,107, 41, 78,204,192, +169,191,174,228,114,224, 41,110, 88, 65,173, 84, 42,145, 67,161, 76, 86,137,239, 61,206,144,220, 31,118,188, 0,202, 19, 96,120, +155,177,231,115,178, 44,159,129,145,134, 45,118,105,194, 33,219, 65, 83, 68, 33,174,193,235,247,195,125, 22,121, 53,173,251, 66, +121,115, 66, 72, 73,113,239, 23, 14,184, 58,159, 49, 36, 3,129, 68, 23,167, 43, 79, 53, 86, 66, 58,248,164,172,248,197, 85,168, + 29,148,138,198,145,175,103, 52, 55,132,175, 58,175,160, 72,159, 85,238,145,172, 3, 97,154, 27,148,166, 66,132, 40, 58,205,134, + 18, 61,160,137,193,208,133, 0,245,240,150, 16,166,205,106,129, 33, 59, 47,200, 51, 3, 91,167,222,157, 1,216,129,112,128,173, + 48,194,167,109, 96, 36,127,250,107,254,128,217, 87,117,181, 84, 79, 93,253, 94, 86, 52,182,109,175,114,167,101, 23,216,194, 75, +150,105, 99, 61, 18,168,116, 23, 97,174,240,160,213,168,191,147, 18,111, 29,226,164, 95,162, 48, 96,191,136, 73, 45, 91, 97,195, + 9,156, 50,174,202,140, 89,154, 8, 78,160, 53, 38, 52,190,207,138, 71,213,165, 34, 29, 30,142,148,180, 17, 97,162,209, 46,184, +206, 89, 23,175,202, 6,178,245, 8,135, 54, 64, 35,205,203,206,210,141,203,125, 39, 0, 47, 43,225,190, 40, 14,210, 94,163,202, +171,232,214, 37,129, 52, 94,160,249,190,132,237,109,209,105,247,184, 91,186,121, 71,175,164, 43,239, 55,117, 97, 74, 54,145,125, + 61, 39, 69,109,166,201,137,134,100,225, 99,179,154, 67,104,203, 38,232, 53, 43, 42,129, 57,161,116,154, 39,230, 54, 78,175,250, + 22,226, 54,117, 86, 1, 51, 53,189,139,116, 19, 51,234, 19, 24,216, 38,202,224,197, 74, 65, 8, 85, 59,130,138,234, 21,136,144, +113, 87,166,169, 85,231, 85, 41,207,157,254,198,218,106, 17, 1,198, 17,188,129,117,236,228, 36,189,107,204,247,106,103,235, 62, +160,126,217,135,106, 29, 30, 59, 9, 87,149, 67,109,127,206, 76,203,203,187,251,230,217, 31,216, 22,186, 82, 64,147, 56,185, 51, + 85, 85,113, 10,200,135,219,212, 82,133, 94, 80,141, 7,213,240, 84,137,161, 58,137,185, 82,137, 52, 14, 30, 17, 76, 80, 92, 78, +132,219,108,161, 34, 86,123,152,114,103,138, 29, 22,187,200, 65,197, 42,225, 79, 78,160, 15,254, 42,176,123,175,117,235,228, 60, +173, 34,246,135,131, 65, 94,212, 58, 68,214,170, 10, 86, 37,208,105,178,147,237,118,182,142,126, 78,160, 67,134, 78,198,129, 86, + 4, 90,212,231,110, 3, 87,181,125, 20, 42, 26,154, 65, 85,208, 36,208,113, 2,141, 3,248,181, 29,232,227, 59,232,215,221, 3, +125,243,127, 1, 60,251, 3, 64,250,215, 65,111,253, 86,224, 95,251, 73,224,111,255, 42,210, 47,158, 98,247,128, 49, 60,217, 99, + 47,130,227, 96,241, 1,145, 36, 43,165, 75, 3, 35,172, 6, 95, 2, 8, 97,238, 18,197, 18,128, 13,123,230,179, 46,211,157, 2, +131, 57, 40,144,102, 5,239, 50,104,147,192, 71, 1,255,145, 51,224,249,127,163,121,249,203, 99, 15,189,219,218,229,250,240,128, +242,187, 7,148, 39, 35,100,154,141, 88,150, 90,129,201, 66, 70,234,181,120, 63,251,223, 39,108,221,246, 46, 53,236,214,104,163, + 23, 45,190, 27, 46, 46,146,235, 25, 51, 83, 49, 61, 68,118, 61,195,165,152,176, 49, 61, 5,240, 41,144, 78,129, 84,128,179, 4, +204, 9,124,220,225,116, 16,204,116,196,145,197,196,159,165,143,254,164,154, 66,215,123, 90, 99,215, 39, 16, 92,237, 11,126,245, +111,158,227,106, 82, 36,167, 43,182,245, 75,187,196,231,213,164, 50,252,228,197, 1, 34, 83,183, 39,148,186,255,165,202, 23, 40, + 62, 63, 86, 23, 6, 17,181,162,109,147,154,254, 84, 73,235, 46, 62,101, 23, 64,106,195, 63,151, 88,187, 69, 86, 0, 19, 82,209, +186,118, 72, 29,161,171,142,174,185, 6, 0,250,190,207,138,210,201,121,222, 17,141,218, 51, 18,102,105, 52, 62,138, 61,161,147, + 49,138,218, 52, 43,185,202, 57, 46,169,238, 14,115,183,141,214, 11,253,196, 11,203,212, 37,187, 69, 36,170,174,224, 35, 88,129, +109,176,126, 93, 97,231,130,118, 66, 52,238,148,219,235,221,109, 15,188,145,222,254,213, 93, 82,197,207,164, 13, 10, 78, 57, 65, +152,113,161, 82, 51,234, 75,183, 31,159,110,240,136, 23,175, 28, 7, 86,231, 4,144,231,149, 47, 39, 16,218,209,221,114, 39,112, +102, 31,181, 55,127,122,179, 25, 26,144,209, 78,128,199, 0, 30,137, 73,134,142,226, 93,179, 94,119, 31,132, 72,186,237,218, 59, +181, 34,186,203,170,187,140, 9, 55, 49,208,123,141, 2, 93,179,197,209,235,208,227,168, 83,239,115,111,181, 93,173,115, 66,188, +150,136,161, 41,225,137, 40,112, 56, 32, 19,176, 29, 54, 22, 38,227,223,179, 20, 19, 33, 13, 62, 81, 41,228,235, 55,215,205,100, +183,191, 77, 90,204, 82,189,246,138,177,137,122,149,100,241,154,217,100,165, 37,192, 47,168,157,220,135, 20,217, 8, 46,132,172, +125, 97,208,239,229, 21, 46, 28,134, 39, 2,186, 78, 71,199,209,176,205,105,176,159,169,230,109,243,242,133, 11,197, 85,140, 17, +226,247,168, 42,184,165,137,234, 20,144, 50, 27,255,189,203,152,165, 34,141,103,221,115,121,136, 22, 35, 66,173,227,122,123,242, +205, 58, 71, 32,157,125,239, 45,245,210,163, 0,237,163,117,161, 65,116,214,142,191, 12, 21,211, 59,169,226, 48, 3,187,141,117, +251, 90, 45, 63,161, 52,140,142,206,171,172, 47, 42,240,228, 69,224,153,209,201,113,212, 44,110,117, 58,160,214,177, 7,237,172, +104, 69,117,105,180, 41,183, 1, 28,179,141,235,111, 3, 60, 22,136, 8,116, 95, 34, 53,160,181, 86, 9,158,181,168,245,235,232, +172, 85, 78,194, 51,108,255, 60, 23,240, 52,129, 63,178,129, 30, 11,232,219,254, 18,240,134, 13, 64,127, 0,120,230,199, 65,223, +253,211,192,237,159, 66,250,153, 29,240,244,128,147,151, 47,145, 14,214,113,206,153,106, 81, 67, 43,236, 71, 5,173, 36, 50,120, + 30, 90, 46,111, 13,236, 33,243,216, 75,119, 88,102,242,241, 62, 41, 82,102,208,105, 6, 31, 51,248, 61, 71,224, 67,223, 15,228, +175, 52,111,255,229,255, 9,156,255, 44,244, 0,211, 37,220, 63, 66, 62,117, 9,121,184, 71, 57,142,152,146, 39,207, 45,173,225, +118, 33, 39,139, 67, 5, 49,104,151,128, 51,239,220,143,197,230,225,174,114,199, 44, 38, 72, 60,106,139,117, 10, 68, 64, 81,224, + 56,251,114, 26,192, 3, 1,142, 71,160, 60, 2,232,237, 22,178,147, 29, 74,243, 85, 39,192,191,245,118,240,167,239, 99,251,159, +124,194,243,227,169,142, 78, 85,177, 82, 88, 59, 50, 65,188,147,245,207,156,206,197,222,189,100,212,172, 34, 29, 54,181,239,164, + 56,232,111,232,236, 58, 85, 14,103,124,117,242,194, 90,116,201, 49,247,131,185, 56, 76, 38,147,197,154,194,191,159, 57, 14,186, +108, 53,203,132,182,122, 73, 41, 46, 62,203,147,214, 16, 68,170,237, 27, 55,162,216,184, 82,126,138,105, 12,145,241,220,181,165, +198,193, 57,244,113,209,141, 93, 52,105,246, 17,173,248,165,155,188,179,179,177, 61,213, 75, 43,220,134,228, 65, 41,113,225,103, +159, 2,206,157, 24, 45, 70,171,201,187,205, 74,110,163,200,124,167, 69, 31, 94,133,190,218, 18, 15,165,187,170,116,161,252,182, +175, 61,119,226, 58,116,196,186,155,118,201,165,147, 69, 69, 63, 45,218,164,205,177,203, 47,162,216,161, 96, 67,140, 45, 19,198, +210,237,238,129,197,174,188,215, 13,100, 10, 20,113, 23,204, 66,228,193, 40,246,153, 60,174,246,236, 92, 73, 27,214,165, 87, 21, +187,251,244,137, 76,220,184,245,253,254, 61, 0,143,197,222,215,176, 72,233, 10,125,218,226,111,123,156,146, 94,123, 69,214, 94, +236,165, 5,143, 32, 43, 69, 36,117, 83,162, 40, 24,230,110, 31,157,110,208, 65,244, 19,174, 30, 97,219,131,106, 42, 85,142, 13, + 9, 59, 22,243,229, 18, 49,212,183,112, 19,137,157,119, 78, 44, 45, 12,104, 17, 91, 31,167,132, 6,149, 51,252,185,138, 63,211, + 74, 38,248,166,150, 92,170, 20,205,218,242, 98, 7, 39,168,175,152,209, 9, 97,117, 33,216, 20, 40,241,170,168,161,102,253,236, + 65,107, 61,140, 34,138, 18,181,142, 93,147, 70,167, 78,139,252,103, 68,230,108,163,228,181,157, 29, 4,162, 2, 71,204, 88,231, +169, 49, 14, 47,208,194, 43,197,163, 46,146,226,137,227,239,215,142,182,228, 46, 79,223,183,131,217,133,121, 12, 85, 6,102, 15, +159, 23, 75, 94, 35, 54,123, 0, 81,251,112,136, 95,142, 42, 98,112,155,216, 59,168, 98, 6,225,232, 19,243, 74,165,242,177,102, +137, 20, 41, 34, 80,178, 75, 77,207, 1,189,184, 15,210, 3,144,159,182,116,181,254, 21,157,252, 66,159, 66, 53, 86,154,148, 56, + 24,156,119,178,117,235, 79, 39, 83,225,137, 2, 99, 6, 29, 4,196,147, 21, 16,197, 31,138,136,101,202,214,150, 69, 54,175,138, +212,215,173, 76, 0,207,130,114, 44,208, 91, 5,186,153,145, 62,126, 6,189, 53, 1,191,255, 39, 65,249,205,192,240, 53,192,233, +247,129,190,253,105, 40,127, 24,233,111,109,129,183,222,193,246, 11, 15,129,125,193,145, 24, 19, 45, 33, 9,220, 89,127,168,243, + 9,101,138,247,169,117, 17,234, 36,147,250, 96,137, 54, 81, 24, 0,222, 37, 32, 37,240,197, 30,244, 47,191, 7,184,251,199,128, +249, 33,112,254, 55,128,139, 95, 2,174, 30, 0,151, 59,224,209, 12,125,105,143,114,239, 10,229,106,196, 68,132,105,110,121, 66, +236, 12,159, 96,233, 19,179, 49,232,111, 39,224, 78, 2,110,123, 59, 95,196, 39, 33, 98, 58,132,105,134, 28,102,219,119, 85, 75, + 12,129,166,226,197,140, 27,122, 54, 0, 94, 81,232,227,115,208,151,125, 30,192, 55,154,123, 33,121, 5,240,252,206,190,137, 95, + 59,183,207, 91,118, 4,172,239,252,168,223, 49,118,227,207,208,153,132, 91,192, 14, 92, 66,210, 54, 38,212,174,139,169,123,113, +189,174, 38,170, 99, 58, 24,208,134, 92,187, 17,164,184, 56,164,181,223, 62,101,199,245,106,119,169,244,107,130,232,102,195,137, +226, 58,129, 8,129, 89, 36,177, 69,225, 70,118, 49,195, 47, 68,113,200, 76, 47,156,210,213,161, 10, 63,160,143, 65,112, 80, 11, +195,200,220, 44, 86,210,237,140,103,255,251,185,139, 17,206,104,148,154, 68,140,172, 10, 33,131, 70, 73,116,159,164,139,196,178, +133,137,163,107,197,121,117, 25,243, 77, 10,124, 93, 93, 77,206,218, 31,195, 3,238,132,188,224, 75,197,198, 71, 23, 69, 30, 85, +164,104,115, 1,117,150, 69,119,227, 36, 54,158,254, 38,153, 13, 50,148,241,218,169,182, 5,205,126,154,213,116, 63, 3,181,131, + 62,121, 69, 56,249,170, 98,175, 77, 80,135,174, 91, 23,255,172,156,116,175, 83,234,126, 29, 84,241,138, 90,150,249,236,159,239, +242, 37, 72,114,180,250,255, 92, 87, 64, 90,145,187, 75, 32, 12, 93,227, 42,210, 13, 4, 57,138, 41,172, 51, 25, 88, 90, 48,205, +154, 98,136,133,112,146,170, 51, 69,187, 9, 75,205, 68,247,206,160,248,116,119, 67, 6,160,217, 36,127,117, 37,238, 2, 53,108, +249,236, 78,174,148,157, 24,105,234,243,136,150,102,192, 8,110,241, 13,106,203,136, 18,110, 31, 62,237,155, 94,152, 98,158, 97, +147, 96,136,214,134, 86,107, 84, 48, 45, 8, 5,181,163,119, 97,185,174, 38, 16,132,229, 33, 84, 73,170,101, 70, 14,127, 57,199, + 24,165,219,129,215, 15, 72,120,196,131,105,236,151, 57, 85,108,171,137,229,200, 2,210,155,194, 39,150,248, 98,241,167, 97,205, + 73,220,213,189,106, 2,182,228,251, 67, 21, 63,196,216, 92,125,154,146,231,167,219, 97,164, 14,174, 97,136,135,191, 16,138, 6, + 73,141, 42,234,140,176, 4, 83, 76,210,236, 18, 61,157, 74,252,110,158,196,246,200, 56,245,147,236,225,104, 52,185,205,155,129, +237,155,129,139, 19, 16, 43,180, 26, 90, 75,179,168, 93,145, 43,180, 99,166,234, 18,210, 51, 54, 21,252, 27,146,123,168, 7,208, + 85, 1,149, 12, 61,204, 45, 98,169,151, 41,160, 59, 41, 82,167,255, 35, 7,232,140, 5,170, 71,232,169, 2,233, 18,252,177, 83, +208, 83,247,129,175,255, 49,128,254,156,193,106,182,127, 24,244,251,175,160,227,143, 35,253,194, 14,120,219, 83,216,188,120, 1, +156,143,192,174,225,211,235, 67,230,151, 53,137, 85,172,236, 7,188,118,163, 51,168,235, 17,164, 13, 23,200,249, 58, 25, 64, 26, + 8, 56, 77,224,251, 10,250, 32, 3, 95,254,239, 89,197,180,255,187,192,254, 87,128,195, 5,244, 49,123,164,234, 8,185,191,135, + 92,142,214,104,231,214,237,176, 15, 48, 34,104,134,114,140, 90, 13, 96,131, 59,185, 37, 98, 60,113,182,193,100, 23,187,204,102, + 99, 67, 20,110,226,104, 7,245,145,213,222, 85, 93, 91, 0,123, 2, 46,142,246, 30, 3, 54,126,247, 21, 16,254,223,199,192, 95, +254, 60,228,165, 39, 24,183,179,219,219,155, 88, 16,171,195,113,132,253,189,235,240,145, 69,103,161,122,109,229,184,228, 23, 70, +255, 0, 0, 32, 0, 73, 68, 65, 84,210, 28, 53,188,174, 31,198,228, 2,178,226,133,142,189,230, 14,165,209,230,129, 71,231,135, +166, 4, 80,105, 94,247,232, 32,147,182, 61,229, 28,180,176, 32, 14,122, 92,113,158, 61, 63,158, 9,217,255,174, 65, 98,251, 65, +152,252, 48, 18,215, 85,136,175, 14, 68,151,235,129,120,125, 6,247, 69, 31, 0,100, 31, 53,199,222,177,231,160,199, 81, 48,107, + 20, 29,230,168, 40,220,104,135,117,127,219, 11,166,186,101,108,251,175,122,163,176,109,209,119,174,186, 59,186,246,158,208, 2, + 64,147,212,125,251, 78,118, 75, 4,236,153,141,119,209, 29,208,241, 51,196,212,177, 21,129, 90, 31,117, 19, 85,218,243,181,117, +197,251, 33, 50, 4, 86,176, 81,238,148,253, 67, 39, 28,142, 93,252, 12,155,202,140,221,239, 45, 94,255,174, 74,233,245, 15, 17, +166,243, 68,129,123,170,216,135, 26,223, 63,163,250, 58, 54, 53, 90,119,228, 43, 47,217,235,241,216, 35,224, 72, 87,234,131,182, +250, 37, 95,195,104,189,180,248, 6,193,223,250,217,161,170, 47,137,142, 61,168,111, 29,220,217,255,160, 72, 8,112, 25, 74,102, + 81, 99,255, 84,132, 29, 59, 98, 45,227,162, 79,196, 78, 61,181,215,121,158,205,118,150,114,118,203,108,105,239,189,195, 96,140, +131, 86, 58, 27,101,148, 58,220, 10, 29,234,167, 26, 95,130, 60, 25, 84,108,238, 45, 98, 90,227,150, 65,214,120,139,118, 43, 48, +181, 34,176, 62,240,203, 49, 75, 83, 55, 50, 47, 9, 75,236, 8,215, 16, 77, 84,146, 88,236,193, 61,110,149, 72, 91,167, 47,221, +222,163, 26,168,169,250, 37,169,250,209,109, 52,204,148,192,100,161,239,148, 76, 17, 15, 9,207,180,174, 34,248, 26, 25,169,207, +170, 69,103,221,241,115, 31, 91,238, 42,156, 48,245,147,217,220,230, 42,178, 74,192,227,189,237,129,177, 3, 54, 47, 0,155,167, +236,132, 67, 19, 66, 97,114,218, 72,113, 83,143,120,185, 28, 49,105, 57, 3,167, 25,184,179,113, 44, 20,128,125, 2, 29,179, 41, +226,103,105,158, 27, 88,187,107,232,248,118, 4, 41,122, 97,150,161,111,249, 80,204, 51,239,115,242,244,247, 79,161,233,211,160, +175,253,207,129,179, 31, 0,182,239, 3, 78,190, 7,244, 29,167, 80,124, 24,233, 23, 6,224, 45,183,176,249, 60,192, 87, 35,166, +220,235, 8,204,134, 36, 21,233,168, 93, 74, 19, 53,208, 3,199,235,140,154,154, 22, 67,137, 4, 69,218, 24, 14,152,166, 25,244, +237,111, 5,242, 55, 2,227,139,192,213,175, 3,101, 52,100,235, 67, 6, 30, 78,208,251, 7,200,131, 3,230,253,140, 9,240,238, +171,225, 76,107, 81,182,105,196, 54,218, 50,232,204, 69,114, 57, 59,231,125,110,239, 65,180, 78,208, 74, 44,212,248,240,219,220, + 23,122, 33,160,113, 2,182, 27,203, 38, 56,122,229, 16,175,127, 41, 64,154, 1, 18,232,217,140,233,214,132,227,209, 68,114,234, +124,115,197, 82,253, 61,105,111,172,209,107,192,137,133,249,121, 65,205, 90, 30,157,212, 61,124,210,205, 24,109,108,109,159,175, +112, 46,148,234, 71,215,182,183,243,216,202, 48, 29, 7,121,203, 3,139, 45, 97,206,215, 86, 97,227,108, 59,118,170,149,212,160, +190,223,238,242,190,217,119,212,129, 9, 21, 34, 47,114,122,149,247, 50,168,102,205,110, 23,109,160,163,222, 11,158,252,210, 22, +183,232,137,175, 32,102,255,253,224,207,199, 8,223,128, 86,228,151,152,214,157,125, 43,212, 59,122, 93,255,234,170, 46,198,227, + 1,128, 41,175,115,129,101,183,106,134, 90,127,232,214, 81,170,234, 4, 55, 67, 77, 79, 98,235,149,126, 28,221, 94,143,126, 88, +221, 10, 60,248, 56,253,212,191,255,201, 73, 81,125,144, 79,138, 98, 32,240,172, 85,248,101,133,210, 92, 37,198,126, 33,119,219, + 59, 10,173, 6, 26,195, 96,246, 63,187, 7,240, 80,129, 71,218,255,189,215, 89,239,132,215,191,224, 95,239,207,172,135,241,180, + 50,183,105,231,247,167,170,181,160,234,143, 15,189, 17,223,112,153,247,205,102,234,247,240,125,113,135, 6,250,169,236, 20,159, + 42, 82, 88,118, 65, 22, 96,196, 98, 16, 26, 0, 27, 7,208,204,197,226,189,133,138,219,160,129, 73, 4,179,122,196,170, 79,145, +173, 91,215, 58,245,181,123, 55, 1,172, 16,245,130,129,185,174,107,105,245,106, 69,209,135,222,214, 74, 84,109,214, 93,181,224, + 32,169, 30, 55,188, 68,254, 80,247,185, 38, 32,216,239, 90, 35, 79,227, 33,173,118, 3,114, 74, 82, 8,229, 86,102,156,228, 25, +174,232,222, 68, 20, 11,207,224,148,186, 93, 45,183,144, 16,138, 78,159, 91, 64,188,143, 22, 73, 45, 93, 75,217, 98,228, 56,101, + 59,164,217,105, 63,153,189,244, 22, 55,233,115, 87,241,105,203, 94,215,235, 21,228,236, 42,217, 56,100, 40,246,122,234, 90,171, +248, 36,109, 9,250,234, 37, 80,206,253, 82,120, 14,216,189, 27,216,254,127,192,110,182, 11, 59,212, 92, 97,107, 67,129,102,155, + 72,224,145,119,252,187, 64, 59,145,249,163,239, 20,224, 50,217, 5,181, 79,166,138,244,184, 88, 83,110,251, 46,254, 40, 77,197, + 92, 71, 46,237, 48,228,108, 16,159,116, 57, 3,229, 18,152,128,244,183, 78,160,227, 75,160,247,127, 24,184,243, 39,128,221, 7, +129,147,127, 30,244, 29, 27,104,249, 97,164,255,103, 11,188,229, 20,244, 26,128,199,118, 61,149,193,119,205,125, 37, 77, 77,196, + 13,182,175,197,196, 38,126,202, 90,197, 85, 82, 98,114,227, 93,227,134, 65,143, 1,122,129,128,183,189,207,110,187,253,111, 2, +211,139,208,195, 99,224, 66,172,179,190,152,161, 15, 14, 40,231, 35, 38, 17, 28, 19, 87,142,188, 82,168, 76,131, 80,152,252,251, +240,185,236, 54,128, 51, 98,251,241,209,198, 44,122,112,214,251,140,234,115, 15, 33,165,198, 84,104,240, 41,206,229, 12,236, 12, +198,105,159,177, 55,250,233, 62,185,248,209,170, 92,161, 25,101,158,172,242,166,138,241,175,106,221,224, 88,151,197, 1,214,230, +241, 13,230, 97, 2,190, 27,189, 81, 55,128, 51, 8,180,216,199,153, 24,145,205,123, 76, 75, 13,109,196,103, 82,143, 94,101,191, + 68, 74, 99,100,115, 87, 38,146,155,189, 19, 90, 87,102,202,117, 66, 97, 31, 13,250,205, 82,164,185, 34,184,227,120, 7,195, 98, + 16,131,147,192, 71,211,165,235, 24,215, 7,126,245,197, 67, 59,150,120,235,178,226,128, 86,106, 69,122, 4,174,204,157,143, 89, +253, 57,239, 3,137, 34,140,101,115, 67,142,125, 37,238,173, 73,115,218, 46,236,254,222,231, 78,212, 23, 93,114,252, 57,162,150, + 95,111,235, 10, 83, 26, 23,166, 26,121,203, 93,199, 40, 55, 20, 55,138,158, 30, 71,216,185, 82,241,138,129, 25,140,209, 95,127, +170,226, 65,155,112,136,119,246, 45, 85,147,106,145, 39,157,215,190, 63,161,171,162, 62, 34, 80,253,159, 93,194,114,218,195,142, +217, 7, 8, 9,214,162,205,155,193, 50,116,173,111,199,151,180,151,181,255,161, 11, 61, 73,205,102, 15, 61,148, 59,107, 4,215, +227, 94,105,229, 56, 33, 90,105, 33,186,162, 58,194, 91, 90,120,146,214, 0,170, 40, 52, 98,180, 45,201, 62, 37,165,204,254, 76, + 16,198, 34,152,167, 17, 74, 84, 1, 63, 80,159, 56,167,100,141,166,154,151, 92, 35,124,140, 93,127, 70,221, 78,202, 71,108, 53, +208,139,121,241, 26,104, 47,213, 15, 26, 97, 21, 19,117,233,134,212, 86, 69, 11,240,167, 58, 88,170,211,166,229,240, 46,199, 87, + 73,213,103,167,254,159,173, 51,177,228,170,230, 79,175, 94,244,240,165,219,156, 3,234,163, 13, 94,236, 8,219,135, 85,212,246, + 39, 49,214,215, 58,191,243, 31, 68, 92, 62, 11,216,168, 35,101, 19,220,185,255, 79,184,249,187,235,115,170,237, 0, 66,135, 17, +228, 10,152, 33,204,162, 30, 17, 75,208, 98, 30,107,174, 74, 99, 69,137, 52,181, 93, 6, 94, 62,130,246,159, 5,110,253,147,150, +159,190,251, 10,224,244, 14,112,242,170,207,133,219,108, 95, 75, 76, 33,164,138, 37,232, 53,106,151,250,157,108,145, 65,183,217, +124,238,167, 9, 56, 20, 80, 33,232,145,150, 80,106,114,245,207,212,118,117, 90,137,101,214,165, 20,239,188, 84, 10,112,225,162, +187,164, 72,191,116, 10,197, 67,208,215,255,101,227,153, 15,223, 0,108,190, 19,244,161,223,134,158,255,239,224, 95,219, 0, 47, + 40,114, 1,112, 57, 90, 44, 45, 58,225,106, 66, 85,200, 27,205, 34, 16,190,246,189,133,186,184, 72, 4, 62,152,243, 32,101,247, + 15,159, 43,232,143,156, 0,219,119, 1,135, 87,129,253, 47, 2,135,207, 0, 15, 20,184,175,192,197, 4,125,124, 68,121,120, 68, +185,156,113,100,178,176,130,154, 2,232, 81,150,108, 54,147,214, 78,145, 81,222,110, 51, 48, 12,118,195,158,187, 64, 78, 44,200, + 69,103,255, 85,252, 1,146,149, 1,124,240, 35,100, 15,187,216, 15,197, 57,160,113,242, 91,149,173, 83,105, 34, 59, 47,182, 52, + 19,102, 49,247,128,176, 29,144,202,192, 60, 95,199, 37,172,113,169,212,237,176, 67,173, 91,104,181,119,212,235,104,179,122, 96, +121,117,144, 83, 51, 89,244, 24,214,216, 59, 6, 52, 8,157, 64,201,146,216, 90,119, 25,206, 5, 74,181, 46, 94,170,144,137,161, + 89,236,115,233, 44, 5,245,228,185, 74,189,227,118,123,115, 38,112, 49, 81,224, 20, 24, 82, 93,130, 88, 24,138,169,187,176, 43, + 69, 43,114, 26,170, 56,110, 89, 32,233, 13,157, 31,176,236,202,121,213,189, 17,154, 7, 92,213,133, 75,234,144, 36,146,250, 81, +136,203, 55,225, 6,198,187, 23, 65, 76, 75,202, 98,241,169, 76,234,136,126,161,141,141,215,165, 72, 28,200, 13,163,219,176,180, +198, 32, 79,186, 84,183, 39, 38,220,242, 29,242, 35,109,221,218,164,150,133,174, 62, 37, 8, 81, 96,181,175, 81,123,189,162,219, +157,189, 64, 80, 16, 70, 63, 91, 83,119, 21,132, 93,242,216,197,160,214, 60,249,174,104, 91, 20,138,175,211,161,235, 13, 94,127, +220,208,233,211,181, 97,187, 94,143, 26, 14,212,184,234,245,231,103, 69,252,187,105,100, 93,187,122, 63,147,215, 95, 87,187, 48, + 45, 84,189,137, 88,130,104,232, 82, 72,234,180, 3,228,224, 53,191, 92,179,163, 98,197,157, 95, 44,230,111, 87,103, 6,216,103, + 89, 22, 47, 70,124,190,169,118,156,188,180,223,233, 53,174,174,255,252, 22,235,170,244,250,133, 82,235,202,169, 90,161, 67,107, + 65,213,170,232, 24,215,228,151,120,186,198,120,215,106,172,143,202, 32,229,228, 99,135, 14, 66,227,112,139,154,214, 85,230,110, + 71,175,149,248, 73, 53,161,200,235, 53,181, 3,147,108, 25,224, 86,161, 25, 50,155, 23, 39,229,236,140,173,226,233, 98,102,123, + 9, 4,106,132, 99, 48,181, 55,172,127,225,194,234,102,135,154, 98, 96,211, 0,212, 45,128,218, 3, 95,216,158, 92, 58, 77,192, +200,208,251,191, 9,122,174, 0,186, 1,134, 23,140, 91,126,251,229, 70,114,153,220, 62, 87,164, 58,248, 56,249, 71,236,156,128, +151,124,129,149,217,189, 35,100,161, 33, 91, 6,109,200,172,110,147, 88,106, 27,100,233,163,153, 1, 34,113,162, 30,170,152, 39, +224, 12,147, 43, 90,139, 0,155,253,209,194, 86,102, 65,250,133, 91,208,227, 35,208, 55,252, 48,112,247,219, 0,254, 67, 64,254, + 46,208,135,126, 21,184,255, 34,248,213, 13,228,169, 17,188, 7,134,163,162,108, 60,132, 34,160, 38,131, 5,210,105,169,128,106, +228, 29, 97,251,149, 59, 28,239, 77, 56,124, 97, 90,104, 2,205,172, 64,254,186,101,224,221,103, 64,121, 14,152, 62, 9, 28, 62, + 1,125,181, 0, 15, 8,120, 92,160,143, 39,200,171, 87, 40, 15,143,166, 51,164,198,170,103,136, 11,198,188, 0, 36, 11,113,161, + 68,224, 76,118,161,223,102, 32,139,181, 26, 71,231,188,239,197, 46,115, 9,230,123,105, 40, 94,238,144,199,148,236,247,231, 98, + 28,121, 36,128,199, 46, 89, 36,162,115, 93, 13,229,102,107,114, 70,168,248,231, 99,227,197,246, 88, 86,251,207, 21, 91, 35, 45, + 84,209,173,189,144,110,151, 86, 15,172,132,101,128,117, 20,210, 97, 91,235, 97, 76,113, 33,178,143,154, 67, 13,223,157,128, 86, + 7,233,226, 84, 84,223,191, 65,154, 46,130,250,175,231,207,143,106,194, 20, 11,224, 4,179,180,117,231, 0,119, 17,166,129, 27, + 29,224,184,104, 44,233,120,212, 93,192,189, 99, 32, 14,244, 41, 70,240,145, 59, 79,215, 47,134,168,245,103, 89,238, 80,231,238, +114, 56,106,203, 7,143, 93,115,133,163,116, 59,199,212,177, 0, 66,246,146,180,159,128,180, 81,119,175,157,239, 83,191,234,100, + 35,132,166,161, 27,242, 3,211,234, 73,170,230,101,238, 24,230,179, 3,127,224,227,114,192,206, 74, 86,197,142,128, 19, 53,113, +225, 72,228,197,128,113,235, 51, 20,165,203,160, 47,129, 10, 69,248,182, 9, 59,163,122,184,189, 45,240,195, 84,115, 51,162,144, +236,127,159,171, 96,177,195,151,214,158,183,157,249,170, 95,202,106,246,165,187,116, 93,119,248,215, 19, 90, 42, 91, 93,181,125, +237,228, 94,110, 93,105, 38,234, 46, 61, 46,103,194,194,129,181, 96, 5, 4,218, 92,122, 24, 81,151,200, 39,237, 25, 13,103, 74, +157, 70,145,193,209,214, 69,138,101,142, 21, 16, 89, 50, 41,177,180,221,183, 83, 47,137,150,133,235,178,217,108,254,121,186, 9, +162,235,119, 48, 92, 92, 87, 95,199,170,121,107,163,122,187,234,186, 72,111,255, 90, 57,178,203,147, 87,167,138,181,120,199,241, +156,107,178, 91,221,230,184, 80,142, 9,156,125,156, 94,189,184,113, 97,248, 91, 85, 12,255, 74,145, 58,133,142,235, 30, 94,246, +154,194, 6,191, 44, 45, 83,136,216, 70, 30, 80,177,177, 7, 90,162, 91, 36,224,196, 36, 96,157,207, 87,247,138, 94,161, 14,209, + 53,177,118,234, 68,135, 98,136, 34,179,128,230, 12,124,246,147,192,187, 30, 0,252,188,197,160,238,190, 26,116,251,163,208, 77, +105, 39,175,103,202,235,104,136, 81,241,253,138,238,253,199,126,149, 13,233,116, 55,217,105,114,151,129,243, 12,202, 51,148, 11, +104,199,160,131, 93,236,117, 27, 68,189,242, 81, 59,179,107,219,213, 73,176,198, 61, 88,101,115, 60, 2, 15, 11,100,156,145,127, +254, 22,240,202, 30,120,255,255, 13,122,203, 63,180, 81,252,237,111, 6, 62,248,179,160,255,229, 33,210,110, 7,188, 65,128,135, + 19,184, 20,168,159, 60, 82,108, 2, 80, 52, 68, 87,118,136, 83, 1,240, 96,194,197,171, 51,246,179,214, 92,241, 29,155, 6,128, + 78, 9,116,197,160,223,123, 10,122,211,115, 64,153,129,227,223,129,190,118, 1,124, 97, 11, 60, 60, 2,143, 39,219,163,191,188, +199,248,100,196, 33, 51,142,165,211,123, 6,175, 94,235, 56,192,192,235,202,160, 77, 2,221,202,198,123, 87, 24,231,125,223,161, + 97, 39,133, 30, 20,178,159,161, 71,159, 92, 12,238,107, 47, 0,111, 24,180,181,255,110,144,108,182, 89, 38,147,125,190,212,175, +153,228, 33,204, 27, 24,193,142, 24, 12, 27,201, 77,197, 95, 11,183,252,181,209, 52,215, 49,109, 85,179,251,134,136, 74, 11, 71, +146, 14,206, 17, 54,152,224,110,107, 99, 57,213,200,207,184,208,213,112,244,214, 33,122, 93, 34,253,254,218, 5, 70, 77, 60,230, +138,245,210, 35, 99,125,231, 22, 30,250,200,206, 22, 93,100,141,199, 62, 47,226, 63,213,191, 86, 78,230, 79, 19,135, 66,145,235, + 40,138,134,168, 79,107,177, 82,191,218, 42,121,142,125, 42, 35,157, 91,101, 88,236,223,181,139,221, 92,238, 96, 85,232, 90,135, + 24,245,200,216,133,213,100,162,150, 72,215,253, 26,252, 57, 65,135,130,221,186,143, 62, 0, 71,225, 34,152, 98,255,172, 75,197, +117, 79,145,107, 99,234,200, 97,111,183, 75, 80,242,138, 87, 77,228,137,145,165, 27, 19,251,233, 85, 35,107, 99,228,127,215,139, +151,135, 98,255,174,185, 4, 4, 7,109,154,218, 40,238,234, 20,175,131,199, 8,140, 96, 93,188, 5,210, 5, 8,199,125,237, 74, +216,185, 56,175, 26,129,253, 80, 9, 20,114,209,155,179,210,251,223,227, 27, 58,243,215,219,127,119,181,227,226, 47,109, 84, 66, + 93, 68,223, 74,115,100,131,169, 81,230,250, 32, 35,189, 1,108,163,171,194,154,233,186, 48,175, 77,103,216,255,191, 96,170,249, + 36, 49,225,113,142,191, 68, 81,214,126, 26,209, 2, 42, 38,236,206, 41,119,107,170, 46,106, 55,180, 72,221,228, 64, 87,118,221, +197, 40,189,183,151,241, 42,238,208,149,114,150,235, 66, 45, 33, 49,214, 73,125, 94,124,104, 53,226,133,163,107,240,186, 62,102, + 18, 21, 71,151, 22,194, 54, 50,100, 44,115,243, 47,182,214,203,109,106, 84, 95, 48,174, 23,184,184,247,189, 75,237,241,194, 2, +157,168,164,150, 86, 53,196, 55,217,158,149, 77, 20,164,197,222,148, 89, 5,204,169,218,178,156, 33,212, 69,225,105,221,141,204, + 98, 37,123,124,128,171, 29, 95, 60,221, 74, 92,128,117,107, 7,252,206, 19,224,240, 41,224,244,121,251, 40,108,222, 9,108,111, + 1,219,243,142,105, 79,208,217,119,227, 14,233, 22,144,169,182, 47,103,208,189, 88,160, 13,192,217,198,160, 41,103, 0,206, 25, +116, 72,141, 55,234,185,145, 90, 74,135,124,212, 5, 70, 84,187,241, 81,104,162, 10,128, 34,100, 98,191,177, 96, 83,174, 0,153, +145,254,193, 41,232,119,183,192,251, 30, 2,239,249, 89,208,155,222, 14,122,231,155,161,223, 86,192,127,251, 2,120, 14,192,238, + 0,121, 56, 65,142,179, 63,165,234,182,111,155, 98,176, 40,230, 4, 28,175, 20,227,163,201,124,181,126,184,108, 7,155, 36,164, +228,134,196,153, 65,239,223, 0,195, 91,140,210,118,249,162, 9,227,206,103,224,201,136,242,218, 30,229,229, 61,166,251, 19,206, +137,219,223,165, 38,118,138,181,115,188,221,217,127, 88, 74, 0,221, 74,192, 29,159,118,204, 98, 43,135,163,216,216,125,180,238, + 92,199,201,225, 64,102, 95, 35, 1, 56,101,228,103,119,224,119,238, 32,159, 57,122, 96,183,199,178,130, 12, 64, 51,189,232,175, +240, 96,183,102, 78, 86,245,109,168,222,212,226, 39, 68,114,175, 88, 47,142, 99,191,128,235, 33,195, 90,179,234,235, 46,122, 33, + 62,181, 98, 41,245, 9, 93,171,118,128,169,169,176, 77, 32,166,216,116, 11,217,234, 20,224,128,129,116,118, 50,191,108,213, 11, + 66,113, 74, 96, 5,135,112,219,163, 22,174,102,145,197,197,198, 93, 33, 18, 10,238, 56, 3,184,179, 10, 38,210, 5,155, 93, 52, + 18, 26,215, 97,154,141, 2,201,193,148, 32,120, 16, 20, 85,186, 28,186, 61, 42,117,211,128,198,255,198, 53, 31,111,188, 30, 7, + 7, 32, 69,178, 30,119, 99,107,243,122,219,139,181,131,226,148, 2,186,226,151,152, 56,173,175, 19,106,114, 71,123,211,174, 91, + 95,159,143,189,129, 37,206,179,236,197, 86,129, 11, 10,125, 18,161,218, 60,239,189, 55, 41,200,113, 3, 1,119,200, 20,241, 79, +212, 10, 70, 37,198, 36,197, 24,224,110,173,227, 53, 14, 53,192, 92,176,142, 63,107,155, 90,246,249,242,179,127,135,183, 59,245, + 59,200,215,121,205, 86,191, 24,171, 7,140,136, 86, 30,248,215, 27,201,223,212,177,215,224, 22,255,220, 44, 46,249, 40, 45, 92, + 83, 37,184,249,235,172,217,238,139,187,131,156,113,177, 2, 56,209, 10, 14,132, 78,115, 33, 90, 0, 98,204,165,120,231,205, 85, + 67, 22, 5,170,168,184, 12,220,222, 67,213, 98, 54, 53,181,116,198, 33, 39, 28, 60,128, 69,231,210,105,211,204,115, 30,214,237, + 94, 23,181, 12,198,105, 33,105,186,250,112,171,234, 2, 8, 23, 86,239, 5, 67,160,183,215,118,226,136,220, 95,222, 11, 43, 69, +215,181,171,239,108,134,196, 93,229,205, 72,217, 46,116, 18,133, 56,101,103, 65,161,163,190, 3,247, 23,183,120, 71, 47, 22, 29, + 70, 29,216,161, 97, 8,189, 43,170,163,127,243,252,177,179, 41,153, 18,204,212,102, 3,168,172,108, 59, 67, 54,145, 2,117,187, +196,120,136,106,101, 44,132,145, 21, 3, 45, 71, 65, 10, 96, 2, 97, 26, 5,219, 39, 51,244, 41, 0, 47, 23,208,131,127, 8,156, +125,192, 46,221,252, 20,112,114, 23, 56,125,140,106,226, 71,228,216,250,104,100, 38, 43, 42, 84,173, 8,185,240,241,244,206, 23, +163, 27, 0,119, 1, 92,100,208,149, 9,188,120, 16, 72, 41, 54,242,214,235,130,105,149,182, 63,237, 33, 21,161,143, 40,158,168, + 53,123, 58,214,246,201, 1,121, 63, 33, 29,182,200, 15, 79, 64, 47, 19,244,247,125, 1,244,182,167, 65,223,240, 12,244,188,128, +127, 67, 65, 59,167,123,157, 43,228,114, 70, 81, 96,156, 20,199, 66, 11,143,173, 56,228, 98,164, 38,100,225,122, 88, 2,184, 2, +248, 93,183,128,183,109, 1,121, 6,192,185,155,104,147,229,207,191, 58,162,124,113,143,233,254, 1, 79, 70, 96,239,194,162,210, +209, 85, 19, 55,114,176,166, 21,248,154,201, 4,114,196,192,147, 17, 56,159, 0,177,203, 92,198,217, 58,245, 89,128, 99,177,131, + 83,140,194,151,158,201,224, 63,254, 38,224,168,160, 79,222, 51,237,195, 35, 1,222,154,128,111,217, 1,211, 30,184,250,152,249, +233,161,150,124,115,178, 74,238,112,227,108,124,126, 39, 68,148,102, 75,150,170, 33, 72, 21,226,228, 69,133,218,207, 34,101,181, +251,149,128,213,248,123,156,154,102, 65,168,159,136, 53, 23, 71, 4,118,204,107,100, 42, 26, 99, 54,249, 8, 54,190, 7, 13, 27, + 39,119,151, 15,147,137, 28,181, 41,164,251, 28,241,224,138,135,144,172,196,254,152, 21, 92,150, 59, 76,210,166, 56, 7,217, 0, +100, 46, 77,137, 22, 48, 29,234, 24,227,234, 99,228, 44,237,178,184,150,138,230,226, 51,146, 54,129, 8, 82, 94,205, 15,143, 38, + 65,123, 14,185,214, 21,197, 16,138,245,216,128, 57,249,112, 19,170,246, 14, 66, 51,119, 84,182, 62, 87,189, 58, 79,168,105, 40, +215, 23,133, 84, 94,128,221,164, 19, 8, 91,106, 66, 56, 37,211, 25, 69,220,110,184, 8, 82, 45,128,216,255, 14,155,184,100, 54, +254,250,222, 33, 81,129,150,157,203,140, 89,230, 58,246, 79,157,238,172,208,178, 43,182,129,147,107, 10, 58,249, 88,238,126,182, +187,254,135,207,197,146,221,116,101,125,147,158, 97,161,171,120, 94,220,156,163,190,206, 26,232,221, 16,116,237,146,239,189,236, + 88,169,185,151,127, 22,171, 34,224,154,181, 78,227,190,106,109, 49,215,176,161,229, 61, 0, 38, 23,126, 39,204,170,152, 74, 65, + 82,173,233, 66,169, 91, 55, 36, 15,226,153,165, 56,103,189,205, 23, 44,122, 85,145, 83, 66, 73, 25,101, 46,109,246, 17, 14,176, +133, 37,184, 41, 41,235,190,189,254,115,170,218,153,126, 53, 87,109,145, 62,247, 87, 18, 44,205,200,254,222, 74,139, 62, 87,102, +243,169, 83,181,174, 81, 21,140,244,187,194,196,140,156,216,187, 8, 70,206, 25,156,147,121,104,231,217, 41, 87, 33, 46,241, 81, +187, 56,218,115, 81,165,249, 7, 93,164,230,206,114,141,175,236, 55, 12, 90,191, 31,138, 25, 98,177,165, 95, 8,221,108, 20,202, + 0,101, 16, 44,197,134, 96, 33, 46, 66, 12,114, 97, 76,237, 44, 84,160,106,160,254, 18,177,137,157, 30,138,184,137, 72,110, 93, + 58,121,108,206,208, 23,127, 13,244,214,189,213,200,124, 98,214,182,211,207,181, 36, 20, 54,130,144, 42, 42,250,149,130,245,152, + 93, 29,127, 14,208,203, 62,235,123,118,107,229,246,211,217,196,114,158, 1,142, 98, 99, 29,157,157, 15,223,193, 9,122,152, 70, +139,150,109, 67,145,232,231,139,211,190, 70, 34,108, 39,193,246,201, 30,122,156,145, 14,179,135,116,100,208,219,206, 64, 31,184, + 11, 61, 8,232, 11, 64,122,214, 22,142,186, 47, 40,123,207,114, 22, 64,192, 21, 0,163, 2,140,213,163,109, 16, 12, 48, 76,104, +152, 0, 62, 2,252,245, 59,208, 16,201,107, 23,118, 67,157, 37, 96,231, 76,247,243, 25,135,163,224, 64, 9,135, 82, 3,235,236, +107,144,219,154,130,192, 43,106, 23,123, 60,184, 91,216,132, 67, 11,112, 25,204,125,177, 14,116, 20, 72,237,216,255,127,198,222, + 45,214,186, 44,187,239,250,141, 49,231, 90,123,159,115,190,239,171, 75,119,117,117,181,187,221,118,219,177, 29,108, 18, 59,177, +157,155, 29,146, 16, 64, 40, 79, 33, 68, 81,128,135, 4,164, 16, 9,129,120, 8,239, 65, 32, 16,215, 7,224, 33, 40,188,192, 19, + 10, 2, 9, 41, 70, 74, 32,196, 36, 16,133, 64, 18, 39,142,113,220,238,118,187,219, 93,221,213,117,253,110,231,156,189,215,154, +115, 14, 30,198,152,107,205,125,170, 58,144,168,228,170,254, 46,103, 95,214, 90, 99,142, 49,254,255,223,191,109,118, 48, 81,113, + 83,241, 87,239,176,191,125, 71,187, 45,126, 45, 93, 37,248,210,236,175,237, 27, 2,245,180, 47,182,147,238,214,136,117,168,176, + 38, 81,119,119,160,133, 12,234,104, 19,208,100,100,243, 3, 16,205, 46, 70,110,250, 32, 80, 37,169,132,170,222,208, 7, 39, 97, +189,160, 45,246,233,152,109,154,193,126,198,209, 7, 15,212, 20, 98, 45,237,215,160,250, 24, 86, 59, 76,100, 56, 8, 20,113,112, +203, 50, 82,204,228,210, 55,222,163,100, 83,116,212,246,160, 93,147,173,127,240, 14,217, 2,232, 39,189, 57, 48,127,166,148,113, + 4, 31, 98,188, 50, 48,222,215, 22, 98,213, 33, 93,172,201,206,208,238,191, 38,131, 24,118, 76, 69,235, 5,186, 79,249,242, 48, + 57,232,221,120,119,188,108,170,246,193,130,215,226,160, 86, 54, 62,254, 94,236,107, 28,244,237, 98,159,126,105, 53, 45,131, 54, + 64, 90, 80,136, 17,159, 6,244,160, 22, 81,154,212,109,220,190,154,119, 83,115,208, 51,251, 99,115, 59, 88, 8, 28,195,215,239, + 78,164,180, 1, 76, 74, 93,247,156,140, 88,125, 20,219, 73,110, 53,254,220, 14,247,186, 68,180, 90,199,246,138,175, 89,102,133, +167,230,124,130, 58,236,228,245, 1, 32,233,130, 14,103,151, 99,239, 81, 32,122, 81,184,135,206, 83,185,204,101, 31,133,114, 31, +215,212,127,130,189,250, 19,211,225, 46,251,125, 29,212,152,194,190,126,234,255,187,108, 33, 50, 26,250, 7, 15, 24,219,109,134, +157, 70,232,127, 71,109, 70,109,213,181, 97,145, 23, 66, 36,128,214, 90,161, 86, 14, 57, 83,115,166, 46,203,160, 84,237,141,222, + 30,191,219, 68, 55,163,229, 37, 88,134, 45, 36,201, 66,173, 63,102, 65,192,238, 65,255,216,126, 62,180, 44,194,110, 87,218, 26, +173,126, 52, 72,114,121, 10,245,184,186, 68,206,126,230,201, 41,145,167,217,111,242, 90,247, 93,222,166,164,216,227, 88, 85,186, +221,109, 15,214, 27, 71, 86, 4,172,166, 35, 94,251,254,184,159,198, 71,101,171, 10,113,106,175, 36, 75, 30,105, 24,163,246,166, +234,224,148,174,174,143,211, 47, 10,137, 11, 79,216, 32,104,150, 93, 0, 56, 4,157,136,193, 57, 65,185,171,232,243, 21,121,116, +128,175,188, 11, 63,249, 54, 76, 63, 4,233, 10,242,247,192,205, 47,186,133, 11, 13,143,164,186, 95, 90,109,112, 74,198, 72, 41, + 27,122,231,186, 3, 14,103,127, 10, 61, 14,255,250,107, 13, 57, 53,184,173,232, 57,209,104, 97,135,169, 99,102,142,255,109, 50, +140,220,251,248,125,195, 58,198,124,163,249, 94,113, 85, 71, 32, 22,140,235,187, 51, 83, 49,248, 7, 74, 58, 42,150, 64,190,231, + 6,126,215, 19,248, 95, 27,170,110, 33,108, 31,158,177,231,141,146,166,136,165,245,207,116, 83, 76,203, 62, 82, 22,133,137, 40, + 52, 77, 32,207,240,197, 43, 44,221, 32,245, 29, 40,223,118,208, 75, 82, 47,172, 55,254,225, 23, 81,135, 56, 52,134, 14,172,143, +133,119,247,182, 89,196,156, 87, 65,102, 69, 30, 37,111, 3,215,230,187,244, 90,177,197,104,119, 43,237,222,211,236,108,173,251, + 67, 49,108,113,235,251,247,216,127,191, 4, 60, 61,161,175, 95,195,143,100,228,149, 43,176,199,208,190, 1,211,167, 65,174, 92, + 52, 39, 2,231, 21, 78,234, 35,253,184,198, 71, 79,121,227,242,115,232,187,241,238,215,215,161,155,126,136,193,244,149,153,109, +194,183, 54,140,194, 68, 46, 28, 63, 91,244,166,138,175, 39,242, 32,255, 61, 74,247, 32, 59,161,173,231, 37,148, 16,122,109,106, +225,100,212,234, 93, 91, 11,141, 73, 7,185,172,178,147,238, 76,119,110,120,181, 93, 65, 91, 6,156,170, 60,200, 50,207,178,191, +207,113,199,175,195,238,216,134,226,144,128, 41, 41,214, 4, 93,140, 22, 81,176, 23, 29,157,141,107,132,253, 64,128,108,209, 10, +241,235,126, 40,185, 22,119,142,106,240,203,117, 40,238,189,240,204,161, 79,245,113,188, 31,232,235,112, 95,149, 65, 81, 95,135, +169, 65, 31,183,143, 92,117,196,134, 60,123,255,188, 78,241,185,245,201,100,137,239,193, 26, 28,213, 2,147,171, 17,107,219,182, +238,235, 62, 14, 12,115,136,138, 25, 28, 8, 34,112,101,198, 25,227, 44, 29,203,236,182,133,148,140,220,124, 12,156, 98, 28,255, +188, 99, 98, 7,240,237, 39, 97, 85, 71, 69,249, 20,248,216, 3,240,170,248,159,127,106,254,119,209,184, 16,104,217, 39,116,216, +246, 96, 74,242, 73, 49,171,227,218,169, 31, 42,251,225, 32,125,146, 16,220, 46, 27,202, 11,246,195,240, 35, 26,123,124, 44,193, +126,239,153,236,109, 16,152,118, 91,143, 88,136,102,187,112, 78, 28,217, 44, 67,168, 82, 11,187,154,201,110, 23,221,142,114, 54, +116,202,219,228,162, 81, 91, 37,155,215,200, 53,197, 51,163, 61,220,255, 71,231,190, 5,178,216,158, 99, 60, 28, 93, 68,190,139, +129,208, 62,225,127, 29,214,107, 61, 81,179,119, 4,210,105,160,200,104,235,136, 81,158,122,234, 75,202, 19, 42, 48,165,228,169, + 52,165, 96,181,184,234, 54,167, 61,166,117, 16,248,104,223,187, 15, 86,158,189, 11,217, 25,243,180,134, 73, 10,200,130,207,227, +198,174,158,190,235,232,179,159,152, 8,152,164, 77, 49, 44,177, 92, 76,129, 13,109,214, 80,177,205,111,232,210,199, 97,227,101, +182,185,118, 91,220,173,146,252,102, 95, 13,150, 38,172,107, 99,250,112,197, 94, 57,194, 55,238,145, 15,255, 38,188,245, 35, 80, +103, 56,252, 38,228,201, 95,193,166, 53,210,195, 4, 73, 13, 59,143, 75, 40,245,180, 51, 51,172,130,205, 70,187, 19,244,125,129, +195,226, 10,179, 43,133, 87,147,251,214, 75, 70,175, 93,189, 45,197,144, 82, 47, 18,212, 90, 40,224,123,129,237,227,223,106,178, + 41,117,187,181,105,141, 12,224,170,208, 84, 48, 21,110,150,130,124,248, 18,249, 37, 65,143,134, 77,138,188, 57, 99, 63,253, 4, +254, 90, 69,175, 27,114,179, 48,127,180,146,172,208,204, 85,195,155,176,164,139,103,162,203,153,155,243,222,147,250,232, 61,253, +200, 12,175,205, 72,170,176,126, 21,158, 47,216,123, 13,238, 23, 56,175,113, 98,110,152,122,145,217, 60,170,109, 31, 51,183, 7, +196, 53,233,208,161, 89,124,159,158, 92, 65,207,157,139,227,218,253, 74,187, 43, 78,118, 90, 43,245,108,145,179,220,173, 66, 70, + 43,149, 85,141,212, 38,242,205, 1,126,230, 0, 63, 32,112,252, 45,206,231,124,244,127,186, 93,177,171,219,106,241,133,230,210, +176,151,149,182,238,126,217, 58, 88, 62, 91,218,187,207, 52,176,199,183,180, 51,251,132, 16,146, 17, 12,209,117, 4, 35,254, 49, +108,139, 93, 68,170, 98,155,105, 98,138,207, 93,163,221,153,227,254,220,167,113, 29,149,233,226, 79,171, 67, 16, 96, 12, 56,212, + 70,110,183, 95,186,107, 40,171,187,205,205,234,142,141,221,114,161,183, 7,169,108, 29,222,106,195,238,115, 0, 97, 72, 29,112, +208,114, 25, 69, 74, 20,222, 47,228,196, 15,253,233,215, 56,253,218,202,207,255, 79, 47, 88,180,110,185,240, 34,187, 55,125,204, +207,110, 31, 43, 25,141, 73,125, 35,115,140, 29,250, 33, 58,246,195,224, 61, 47,195, 33, 97, 14,183, 76,141,233,192,194,254, 93, +241, 9,133, 47,109, 5,209,182,247, 62,160,187,221, 34,187,117,233, 62,182,173,155, 23,168,139,224,124, 20,223,209,164, 30, 88, +211, 11,155,110, 19,130,110,255,237,105,135, 26,118, 56, 84, 67, 87,208,168,230, 35,252,132,112,147,179,143,119, 91,221, 2,160, + 22,115,241,219,102, 53, 30, 62,187,244, 64, 96,120,148,125,125,145,250,103, 38,240,174, 25, 95,110,178,225,127,215,161, 32,247, +107,185,125, 12,129, 40,223, 85,241,254,208, 87,126, 97,249,250, 46, 52,191,209,197,253,208,223,223,203,192,212,143, 46, 50,122, +210,173, 27,187, 46,184,240, 12, 53,173, 79,138, 26,144, 74,101, 74, 74,155, 18,101,141, 48,175,176,172, 89,232,197, 58,201,109, +139, 56,189, 96, 68, 64,173,149, 82, 11,146, 60,103,189,172,235, 62,102,231, 50,215,100,131,196,116,191,185,236,159,128,141, 29, +248, 54, 95,177,253,122,219,141, 72,241,190,122,188, 97,219,185, 21,131, 48, 47, 51, 60,152, 70,116, 93, 74,137,249,112,140,204, +102,239,212,235,178,108,180,174,113, 28,214,187,100, 21,245,135,141,237,227, 57, 29,200,114,189,208,111,167, 50,147,176,132,196, +120, 36, 58,119,207,136,238,127,191, 99, 62, 83,192,107, 90, 51, 68, 42,154, 52,190,196,120, 88,137,239,213,173, 4,127,217,243, + 75,221, 46, 23,199,202,142, 63, 85,118, 85,124,231,199,247, 81,218, 25,225,100,141,171,219, 51,172, 87, 32, 87,216,215,254, 26, +242,214, 31,243, 39,223,244, 37,120,244, 58, 60,249, 22,124, 71,246,150, 77,234,222,210,230,234, 92,247,136,254,172, 40, 58, 23, +228, 37,200,119, 98, 4,252,153,131,255,223, 79,185,239, 90,106, 67,215,176,117, 88,130,243,128,100,221, 66,225,194,198, 22, 94, +245, 58,140, 10,155,237,161,136,219,174, 51, 32, 33, 96,112, 90,224, 91,183,228,100,232,141, 96,250, 8, 62,115,132, 31,187, 70, +254,247,149,244,202,204,244,209,137, 71,207, 43, 77,109,139,214,236, 87, 69,177,184,217,197,200, 41, 56,222,193,193,151,159,188, +114,170,222,169,120,200,202,211, 21, 62, 90,225,105,161,125,176,210,158,158,169,167,194, 34,187,224, 40,244,128, 27,112, 38,201, +131,174, 44, 43, 50,137,115,222,175,162,226,220, 45,112, 46,212, 82,105,167, 74, 91,156,202,103,167,230, 73, 69,253,230,173,248, +159,157, 4,121,169,164,215, 15,200,207, 94, 33,191, 45,193,107,223, 15,135,159, 5,251,187,240,248, 10, 30,253, 33, 79, 59, 97, +129,245, 12,207,103, 56,249,123,105,193,106,110,131,235, 35,133,229,176,213, 88, 89,109,247,207, 78,112,179,225,193,218,134, 29, +120,191,207, 90,252, 55,131,208,173,197,110,116,251, 59,163,160, 31,196, 41,136,185, 19,228, 34, 67,189,239,254,182, 60,244,200, + 56, 0,241, 49,188,121,241,213,176,207,140, 99,250,115,172,138,114, 40,249,123, 71,166, 49,146,181, 40,248,173,249,195,114,137, +247,144,135,177,234, 22,192,216,125,230,106, 14,111,106, 59,161,178, 92, 76,232, 4, 45,198,231,127,112,230, 83,127,234,179,124, +231,223,125, 59, 44,100,186, 17, 40,221,158,231,175,127,244,208, 39,118,133,123,127,228,215, 10,171, 6,139, 61, 62,199, 28,121, +240,121,155, 20, 94, 10,255,186,176, 49,197,251, 28,133,124,187,132,218, 6,145,217,131, 76,249, 49,161, 79, 60,181,176,170,231, + 74,180,177,131,141, 66,127, 6,212,132,169, 55, 58,106, 78,245,139,233, 94,137,213,200, 58, 0,121,196,218,246,185, 46, 64,221, +158,183,190,210,172,145, 24, 54,171, 70,132,109,227,208,140,123,115,189, 64,137, 9, 0,230,107,178,113, 85,209, 15, 61,115, 92, + 87, 19,194, 1,227,213, 16,170,126, 20,135,236,105,216,239, 86,219,225, 64, 29, 73,108, 3,195,236, 99,180,188, 79,240,168, 63, +220,185,203, 39, 2,107,228,193,129, 96,224, 52, 6,169, 84,135, 73,212, 40,251, 22,121,200, 55,176, 75,229,189,236, 1, 65, 18, +153,227,158,175,145, 72, 8, 53,188,109,210,247,225,253, 61,181, 29,242, 42,195,200,193,164,139, 63, 43,173, 22, 44,133, 83, 70, +118,135,217,199,135, 23, 97, 27, 31,222,153,116,177,182,141,244,184, 75,101,193,197,103,170, 67,117, 31, 79,204,162,177,234, 22, +154, 53,239,212,181, 83,225,162, 70, 77, 41, 49, 29, 15,190, 55, 87,197, 90,161, 45,107,100, 53,142,175,115,143,147, 75,227,130, +127,179, 39,200, 38,102,209, 62,254,136, 27,184,191, 72, 29, 80, 12,210,153,238, 12, 62, 19, 11, 96,140, 73, 88,218,162,179,219, +104,114,187,186, 64, 52,147,181,120,102,238,134, 55, 77,180,230, 9, 57,157,102,183,239, 88, 90,252,247,136,118,244,132,170,114, +106,200,179, 21,125,243, 6,254,254,219,200, 79,124, 21, 14, 63, 10,211,235,112,253,121,120,229,155,142, 43,213,206,236, 12,238, +120, 53,247,160, 7, 75,222,215, 48, 70, 43, 6,147,145,146, 56,152,230, 74,225,149, 12,175,206,126, 92,191,173,200,148,144, 67, + 69,170, 98, 75, 95,137,184, 0,168,218, 3,161, 92,221,213,193, 45,212,146, 59,220,223,127, 61,137,231, 97, 91, 92, 12,122,119, +130,183,141,233, 23, 50,146,179, 43,137,126,248, 10,222, 61,145,254,110,193,222,186,230, 81,121, 9,247,198,253, 72,136,136,182, +167, 4, 24, 38,107, 24, 17, 42,104,155,224,211, 71,191,251,159, 23,231,203,191, 40,240,188, 97, 79,207,180,119,238,168,239,156, + 57,173, 94, 76, 74,187, 84, 92,111,240, 37,219, 39, 47,106,230,142,138,163, 34, 61, 24,103,109,240, 34,138,248, 82,177,123,215, + 61, 88,169,212,210,252, 80, 19,123,232, 52, 59,121, 80, 94, 10,249,250,128,254,204, 53,242, 59, 21, 94,255, 18, 28,127, 7, 60, +250, 97,104,191,232, 18,254,252,134,115, 72, 85, 93, 0, 0, 32, 0, 73, 68, 65, 84,223,250,245, 4,167, 2, 47, 38,184, 95,105, +247,171,103,168,199, 94,183, 67,153, 44, 68,130, 45, 78,220, 73,205, 31,218,195,216,118,203,188,139, 40,223, 60, 20, 17,141, 81, + 92, 69, 46,246,145, 41,212,236,155,142, 37, 30,188,199,188, 25, 19,252, 48, 5,148,102, 14, 58,209,216, 1,246,131,127,219,145, +171, 23, 65, 50,253,220,105,126,224,233,211,191,201,220,221,176, 70, 92,234, 20, 42,226,142, 65, 61,197,132, 70,101,232,214, 69, + 54, 55, 74,221,198,235,182, 17, 26, 77, 46, 19,198,198, 17,235, 57, 11,191,248,246,153,175,252,142, 47,243,206,169, 81,242,160, +180,111,123, 23,165, 54,132,214,236,228,219,173, 67, 86,204,187,210,104, 2, 90,136, 46,171,250,123,201, 15, 8,115, 41,246,215, +141,198, 57, 26,146,212,181, 41, 24, 41,104,149,107, 32,114,203, 16, 94,147,135, 17,189, 61, 40, 64, 61,188,165, 13, 10,103, 17, + 15, 70,233,175, 97, 17, 35, 53, 97,214, 93, 44,136, 53,154,213, 77, 85,191,142, 97, 44, 18,223,175,217,214,165, 75,240,188,187, +206, 66, 27,220,168,176,138,146,178,178,214,198,201,154, 31,228, 6,157, 71,126,160,148,159, 6, 58,222, 97,136,170,189, 53,191, + 55,207,248, 65, 69,255, 81,133,119,176,120,201,102,177,147, 61,206,214,246,231,127, 26, 86, 40,233, 19,236,111, 23, 42,240,255, +207,162,127,169,253,224, 31,137,175, 29,138,228, 32,156, 67,253,117,106,107,241,217, 23,212, 52, 82, 22, 53, 38,101,117, 72, 82, +220,201,115, 26,240, 24,179, 65,148,230, 32,127,102, 81, 74,210,143, 71,250,142, 25, 5, 49,126, 55,227, 1, 65,199,235, 27, 49, +173,186, 32, 1, 92,188, 87,217, 18, 4,205, 46,231, 28, 35,243,130, 62, 13, 84,118,110,123, 18, 97, 58, 30,200,121,114,243,253, +186,210,150,101, 51,196,143,126,112,137,211,189,198,194, 80, 6, 99,188,196,155, 87,235,102,122,219, 82,216,186,165, 67,182,227, +190,108,226, 56,137, 83,148, 14,129, 48, 18, 66, 55,105,145,187,206, 78, 31,186,200,207, 85,104,154,209,182,110, 97, 36,116,113, + 68, 43,174,218, 86,139, 8,203,222, 17,201, 54, 89,232,236,229, 5, 88,170,146,111,213, 49, 8,223, 17,236,237,255, 14,249,193, +223, 28, 32,154,239, 67, 30,255,173,128, 85, 93,178, 41, 77,125,207,220,106, 48,225,107,116, 32,217,104,201,124, 92,253, 29, 65, +166,228,119,217,227, 12,175, 39,120, 49, 35,165,185,111,124,109,200, 65,161, 42,170,141,244, 80,144,189,183, 12, 91, 81,111, 35, + 55,112,120, 0,166,234,163,185,151, 49, 98,189,185, 59,163, 95,123, 65, 62, 38, 56, 26,252,224, 53,252,212,171,240,110, 33,189, +231, 21,247,250,237, 91,210,226,147,232,206,121,111,125, 12,220, 15, 70,102,112,111,232,167, 50,242,102,134,251,213, 69,108,239, +173,240,108,197, 94, 20,234,123,247,180,119,110, 57, 61,175,188,192,155,248, 90,247,211,127,239, 96, 71, 94,245, 22, 5, 60, 43, +122,157,145, 39, 49,143,190,109,112, 50,218,185, 98,119,149,182, 84, 90,105,180,210,188,139,139,167,134, 22, 33, 29, 18,106, 9, +101, 34,253,236, 19,228,167,129, 79,125, 1,110,254, 41,184,250, 41, 79,222, 75, 97, 97,179,219,120, 1,247,216,121,133,187, 35, +237,174,210,238, 43, 69,246,232,210,222,221,173,163, 88, 77, 26, 71, 21,166,201, 11,156, 68, 18,108, 22,219,114,177, 51,123,199, + 36,195,200,119, 79,180,178,205,186,214, 39,104, 89,118,254,205,228,146, 17,166, 8, 20,233,157,185,198,153,186, 14,237,144,137, +109,215,159, 14,254,172,120,246, 92,104, 1,164,237,153,240, 50, 20,209,222,149,118,139,149,170,176,110,129, 49,251, 3,210,226, +243,104,195, 92, 52, 17,168,229, 46, 26, 77, 46,220,235, 35,102, 17,227,221, 72,204, 35,251,103, 35,173,131, 82,246, 70,160,155, +226,114,116,251, 15, 65, 58,189,251,190,183, 61,142,225, 44,126,125,245,177,249, 33, 10,215,213, 54, 94,222,119,179, 59,244,134, + 77, 23,116,148,189,211, 61, 5, 22, 56, 43,204,205, 29, 37, 13, 15,214,185,136, 92, 21,219,184, 1,237,129, 13,171, 14, 44,250, +210,237,117,157, 5,208, 44, 4, 90,126, 72,234,180,178, 46,158,244, 8,137, 78, 48,219,249, 29, 19,178,137,239, 92,160,232,211, +200, 87, 85,169,147,240,172, 26,169,213, 13,125,173, 92, 38, 2,110,126,123, 51,238,205, 11, 92,143,201,205,230,177, 10,175,170, +112,107, 54,232, 34, 46, 15,102, 15,197,108,124, 2,150,119,196,192,238,184,100,249,255, 5,173,185, 40,238,221, 49,241, 96,124, +255,241, 0,158,125,226, 85,135,189,143,134,199,123,211, 3,217,160, 12,176,248,118,154, 55,180,118, 33,110,145,139,156,248,174, +117, 32,116, 76, 94,136,117, 83,181, 39,129,156, 50, 69, 19,180,117,143,151, 29, 87,205, 92, 38, 59, 94, 88, 56,101,176,183,198, +184,199, 62, 86,172, 71, 55,201, 78, 46, 20,233, 41,111,251,100, 55,239,187,239,230,113,134,135,153,124,188, 34,231, 68, 59,159, +105,181, 92,188, 16,177, 75,190,110, 47,212,105,195, 70,201,198,235,238,170,248,144, 21,122, 40,252,118,234,105, 23, 56, 6, 98, +143,216, 57,242,253, 82, 81,188,107,115, 50, 80,195, 84, 54, 46, 61,244, 3,133, 51,120, 83,200,117, 37,130, 96,104, 1,212, 81, + 37,137, 71,178,118, 84,167,199,123,122,130,156, 13,240,189, 42,194,170,202,189,192,225,233, 9,125,166,112,117,196,254,254,223, + 65,190,248, 27, 32,111,130,188, 10, 87, 25,142,134,204,186,181, 82, 22,119,178,117,175, 82, 11, 90, 92,143,131, 43,134, 93, 11, +237,110, 33,189,167,112, 35,158,226,118,152, 28, 6,115,154,144,165,160,167,134, 29,156, 97, 46, 39,127, 95,170,251,133,121, 73, + 80,218, 31, 10,151,227,155,253, 33,223,173,240, 32, 72, 49,210,135,247,240,171, 66,190,137,133,223,247, 63,130,223,243, 24,249, +249, 70,154, 3, 10,242,173, 91,244, 92, 57,171, 68,142, 65, 15,249,136,194, 30, 64, 54,253,109, 87, 48, 37,120,247, 4,239, 23, +248,176, 98, 79, 23,234, 71, 39,202, 59,119,156,158, 87,158, 54,120, 81, 61, 63,186,180, 61,193,204,199, 97,187, 74,215,245,141, +222,137,104, 86,228, 70, 93,165, 46, 2,119,133,118,183, 14, 54,182,234,187,245, 98,155, 42, 61, 37,225,240,138, 34,166,232, 71, +202,244,123,158,192,239, 86,120,227, 51,112,243, 71,225,250,183, 67,122,205,203,133,253, 26, 76,143,156, 31, 64,117, 8,205,189, + 23, 40, 91, 10,182,182, 13,194, 65,108, 87, 84,108, 27,231,117,240,220, 85,246,215,188,244, 2, 43,206,197,239,132, 51, 77,254, + 17,155, 93,210,209,210, 0,183,238,153, 5,157, 1, 49,169,187,235,166, 96,170,107,222, 59, 44, 27, 70,244, 77,217,196, 62, 22, +124,239,162,157, 26,108,172,131, 72, 85,185,132,126,116,216, 76, 71, 63,183,225,129, 57,169,123,115,171,117, 47,249, 46,166,235, + 22,170,132, 68,199,214,194,110, 25,159, 73,243,137,142, 4, 70, 53,133,210,184, 63, 88,167,176, 71,166, 16, 76,246, 14, 63,133, +114, 59,162,145, 28,207,178,141, 93,119, 17, 37,114, 41,202,187,141, 67,120,239, 58,167,240,105, 47,195,196, 96, 18, 23,118,246, +248,212,145,145,158,250,225, 50, 10,246, 42, 67, 42,156,176,129, 99,232,124,252, 14,113,161, 99, 97, 47, 11,155, 92,252,251, 62, + 34,214,136, 92,213,176, 95,245,103, 99,194,152,172, 81,194, 93,178, 91,233,236, 99,214,174,106, 70,193, 56, 53, 97, 73,209, 85, + 55, 99,166,241, 24,223,217, 44, 42, 44, 45,128, 42, 67,183,105,155,109,215, 63, 47, 98, 10,213, 15, 79,136,235, 14, 94, 65,120, + 79,132,151,151,219,243,139,240,145,203, 49,187,241,113, 42,249, 88, 47, 2, 64,246, 9, 44,130, 11, 42,229, 39, 40,222,101,236, + 94, 47,244, 12,131,148, 99,176,226, 61, 44,244, 91,126,187,236,113,214,163,134,204, 34,196,203,137, 2,186,231, 55,116,146, 92, + 36, 22, 73,136, 29, 77,221,181,142,133, 91,203,246,231,109,202, 57, 26,206,117,211, 76,140,209,213,221,171, 79, 28, 6,250, 74, +120, 44,174, 54, 40,227, 62, 17,191, 59,172,102, 68, 46,167, 39,163,184, 47,239, 66, 55, 15, 96,153,175,174, 56,222, 60, 66, 13, +214, 82, 49, 89, 54, 30, 50, 54,224, 96,199,209,206,112, 44,219, 22,251,125,116, 46, 50,124,113, 93, 16, 23, 31,148, 10,153,206, +185, 13,220,234,166,126,207,155,100, 6,243,215,230, 22,161, 72,136,139, 14,187, 43,130, 84,117, 51,247,183,148,227, 20, 94, 7, + 64,155,143,239, 69,133, 89,125, 84,149, 69, 93,104, 21,187, 61, 83,165,102,199,100,158,109, 97, 61, 11,249, 37,216,103, 30,193, + 55,159, 97, 31,252, 37,228,181, 63, 14,114,240,167,114,210,253,248, 61, 68, 36,153,183, 75,126,114,138,163,188, 53,193,146,250, +136,183, 1,207,238, 73,239,167, 24,193, 11, 60,158,224,117, 67,238,162,168,227,105, 65, 84, 69,215,186,141, 41,229, 99, 8, 82, +219, 18,201,218, 5,220,146, 13,133,216,247,160,247,236,170,183,199,239,222, 33,191,148, 72,143,131,212,246,249, 43,248,241,138, +252,125,200,159,143, 86,229,131, 59,218,125,243,142, 43,126,198, 5, 73,234, 4,242,165,217, 91,164,119, 87,120,231, 76,187, 47, +212, 15, 78,212,247,238,185,127, 86,121, 86,133,167,213,184, 47,134, 85,185, 16,196,169,218,118, 0,236, 74,105,237,236,247, 89, +209, 87, 39,127, 10,159, 10, 60,107,216, 18, 97, 63,231,138,157, 42,165, 52,106,140,196,105, 62, 10,151, 44,200,251,144, 62,117, +133,252,222, 25,222,184,134,171, 63, 0, 55, 63, 13, 50,131, 62,130,122, 15,167, 95,129,116, 19,173,223, 45,172, 95,246, 15,232, + 84,225, 84,169,181, 5, 19,168,167,145,237,174,140,254,136,243, 61,185,109, 58,146, 37, 62,235,154,246,128,162, 67,238,122,221, + 93, 24,168, 92, 38,177,233,224, 62,201, 2,179, 26, 7,132, 89, 93,144,168,182,187, 53, 82,188, 38,213,157, 61,190, 67, 90,188, +160, 53, 31,161,237,116,190, 40,138, 73,135, 84,174, 7, 10,101, 29,198, 94,169,249,123,104,197,167, 52,105,219, 37,126,188,235, +235,157, 84, 27, 12, 59,221, 51,124,165, 78,194,234,118,157, 37, 14, 9,217,130,129,207,158,220,216,215, 14,125,228, 93, 59,107, +162, 55, 78,245,242, 64,178, 29, 12,163,219,236, 31,231,201,188, 51, 31, 5, 98, 41, 62,156, 49,109,210, 6,165,180, 70,150, 68, +199,176,118,238,144,176, 49,161,252,121, 40,193,178, 24,124,245, 50, 88, 12,235,224, 20,105, 3,176,166,110, 10,106,247, 72,247, +200,212,214, 53, 68,253, 61,119,101,181,217, 37,183,195,220,239,222,197,188, 69,140,181,117, 26,158, 95, 23,199,232,252, 23, 81, +214,156, 57,181,198, 82, 43, 45,136,151,122,129,184,253, 56, 91,125, 9,173, 78, 18,225,177, 24,207,251, 65,244, 1, 31,227,227, +133,134,125,138,123,241,252,145,193,138, 43,219,161,201, 46,214,225,114, 33,132,227, 19,121,242,118, 17,169, 59,162,130, 31,172, +214, 47,166,182,163, 83, 52,199,180,100,200,117,219,242,206,205,122,236,170,215,170,108,221, 85,149,176, 0,203,140, 2,242,237, +136, 35,234, 17,225, 49, 73,158, 82, 34,205, 19,165, 44,113, 61, 63,160, 42,110,127, 71, 28,114,205,134,116,188,161,155, 55,185, +108,205,226, 90,223,119, 15,163,221, 80,246, 67, 65,219,185, 34, 89, 6, 27,219,124, 60,114,245,248, 21,242,225,192,249,131,247, + 40,167,123, 31, 51,200,195, 14,209, 30,124,248, 59, 61,106,159, 96,200, 0,222, 31,113,173,251,254, 93,163, 43,239,161, 43,158, +165,221, 16,139,164,155, 36, 23, 9, 52, 26, 65, 49, 27, 86,182, 43, 50,107,137,240,145, 20, 10, 97,143,198,147,240,195,170,169, +147,207,180,109,235,130, 89, 93,156, 86, 55, 98,195,228, 96,142,174,140,159,175, 89, 21,230, 23, 2,247,130,220, 63,193,126,225, +231,145,159,253,253,160,175, 70,250, 78, 60, 77,102,245,153,221, 54, 19,143, 95, 43,182, 17,177,164, 25, 90, 26,173,234,230,151, +209, 15,207,200,147,104,229,110, 50,188, 38,240,114, 66, 78, 21,213, 70,171,174,136,215,185,146,150, 30, 77,250,144,216, 53,192, +106,236, 65, 0,134,109, 3,146,109,223,182,169, 66,139,241,248, 91, 47,145,127,144,208, 39, 17,105,250,155,174,225,100,200,215, + 32,127,111,131, 12,243,219,183,222, 13,203,112, 93,137, 63, 61,229,160,232, 15, 93,193,211, 5,222, 59, 83,223, 61, 83,159,157, +168, 79, 23,238,111, 43,207, 26, 60, 43,198,237,234, 15,229, 58,100,124,107,116, 68,132, 31,125,180, 81,106, 22,228, 38, 33,143, +226,105,185, 86,236, 28, 59,244,147,239,212,203,218, 28, 26, 18,226,161, 41,246, 38,246,162,162,118, 36,253,190,107,248,172,192, +213,143,195,227, 63, 18,237,193, 11,224,173, 40,224,207,224,250, 71,233,137,232,180,251,120,106,155,179,228, 67, 36,103, 38, 23, + 29, 79,191,137, 59, 73,174,131, 80, 38,221, 69,244,214,132,163, 42,143, 94,203,220,222, 22,238, 79, 49, 94,237,154,152, 1, 82, +211, 49,159, 83,116,234, 7,109, 28,146,112,200,198,193,134, 34,221, 25,240, 93,203,208,115,160, 85, 28,112, 19,123,129,181,237, +248,224,169,238, 59,238, 62,157,234, 32,156,180,209,235,252,201, 82, 91, 15,156, 9, 10, 93, 27,138, 94, 20, 12,135,203,216, 86, +252, 54, 46,184,236,140,241,237, 59, 84,245, 12,136,197, 56,100,119, 49,220, 53, 99,109,126, 8,107,181,243,187, 45, 16,175,187, + 53,172, 61,120,176, 79,230, 22,188, 49,253, 76,147,131,110,182,247, 38,123,102,121, 25,196,109, 26,157,105,223,163,223,196,247, +181, 12,200,229,126, 48, 40, 15, 15,196,241,123,231, 88, 33,230,152,108, 60, 84,201,111,106,247, 11, 38,254, 30,122,196,246,222, +124,196,111, 3, 6,116,140,123,232,222,248, 62, 66,110, 23,196,181, 29,155,112, 68,220,166, 55, 92,151, 77, 60,179,126,109,198, + 65,132, 43, 77, 44, 41,113, 42,133, 86,203,118,253,245,255,215, 39, 25, 45, 80, 26,121,179, 5, 10,111, 8,220,137,240, 65,172, + 61,234,128,223,181, 7, 48,154,109,170,208,131,187,100,111,252, 54,193,219, 39,140,222,117, 80,183,203, 3,240,144, 12,204,253, +139, 38,197,134, 12, 4,216, 84,250, 99,226,218,229, 78,122,239,126, 45,116, 27,253,154, 32, 56, 39, 93,159,165, 61,153, 16,113, +155, 90,132,176,116,228,107, 74,137, 98, 30,250,226, 35,123,191,198,179, 42, 73,149,148,148, 60,205,212,116,218,109,108,181,125, +204,137,223,177,234,150, 98, 12,212,227,202,217,195,159, 44,104,130, 66,231,226,219,197,228, 99,163,181,246,207,224, 1,109, 47, +111, 31,164, 8, 87,175, 60,225,240,232, 17,119,239,190,203,249,233, 71,126,114, 57,206,190,119,174,109, 43,232, 23,123,141, 22, + 30,242,180,199,220,165, 17, 26, 32,125,252,210, 87,253,178,117,253,180,126,243, 15, 75,255, 48,238, 75,210,125,236, 30,106,211, + 36,138, 78, 93, 26,235, 93,188,106,192,108,226, 68,154,114, 70,146, 4, 75,221, 89,213, 41, 37,180, 70,152, 97, 50, 82,242, 81, + 19,154,144, 57, 83, 83, 70, 34,124, 70, 85,209, 57, 33,182, 82,234, 74, 57, 41,250, 66,145,207,222, 96, 95,121, 15,251,241,191, +130, 92,255, 65,152, 31,131,125,228,130,172, 28,147,131,214, 47,246,186,157,194,182,116,159,184, 33, 82, 11,161, 87, 18,218, 82, +208,119,206,254, 69,125, 17,143, 22,253, 28,176, 22,228,157,134,166,134,205, 9, 43,149, 92, 42,107,227, 19,191, 3,121,168, 54, + 29,191,225,158,191, 45,193,139, 55,243, 60, 19,133,116, 46,200,215,111,153, 63, 61, 35,175,101, 47,236, 63,114, 5,181, 32, 7, + 23,231,180,251,194,244,238,125, 32, 47,135,179,243,169, 34,143,102,239,242,191,118, 79,123,127,165,190,127,166, 60, 63,113,186, +107, 60, 67,120,182, 56,166,125, 41, 59, 79,154, 65,255,240, 48,141, 84, 35,220, 67,115, 70, 31,101, 15,112, 49,188, 75,127,233, +222, 92,107,141,118,170,148, 98,172, 58, 28,109, 36,114, 5,238,148,252,133,107,248, 97,156,254,119,243, 47,248, 33,108,253, 57, +200, 63, 1,182,192,179, 63, 31,145, 91,223, 27,109, 85,129,250,190,119,233,173, 97,165,243,176, 47, 52,184,254, 80,172, 46,108, +209,208, 27,180,120,210,206,201, 5, 81,147,249,195,241,205, 63,242, 58,135,127,252,154,119,254,163,111,177,158,171,119, 97,109, + 87,185,247,142, 61,199, 67,112, 22, 99, 82,227,144, 60, 25,246,208,131, 94,218, 37, 58, 53,137, 96, 57,206,147, 53,214, 46, 45, +196,144,177,166, 41, 65,146, 43, 33,172,147, 0,140, 39, 49, 86,241,137, 86, 23,191,101,213, 96,102,216,214, 33, 62, 20, 55,141, + 15,194, 44,123,183, 39,109,119,143,244, 7,177,178,231,185,191,218, 18, 63,250,251,175,121,252, 86,230,151,255,226, 75,168,149, +151,129,140,197, 42, 41,251, 52,128, 56,108,168,143, 5,250,237,189,117, 44, 45,124,233,133,125,167,223, 6,192, 79, 29, 56, 20, + 58,168,221,115,220, 11,157,228,150,187,147,128,125, 35,216,133,141, 43,182,137,213,212, 46, 9,115, 58, 48, 5,186,127,127,212, +243,104,216,172,250,129, 98,215,136,236,133,162, 35,114,243, 54, 29,240, 61,137,217, 64,223, 28,145,189,177,107, 87,118, 16,209, +136, 14, 85,196, 85,234,236,233,207,253,190, 55, 51,180, 25, 7, 77, 72, 78,156, 85,184,175,149, 18, 66,231,142,165,173, 49,144, +219, 33, 74,254, 30,102,224,179, 98,220,197,116,207, 98,218, 32, 23,134, 43, 63,108, 62,124,175,250, 93, 68,108,198,101, 70,250, + 5,156,230,193,234, 34,141, 43, 12,217,247,206,227,248, 93, 47,208,203,253, 51,116,155, 47,210,182, 67,131,154, 11, 89,221,158, + 45,204,121, 98, 78,153,148, 53,108,133,198,221,186,114, 94,150, 40,236,141, 82, 93,232,168, 41,109, 7, 8,149,152, 42,167,180, +117,206,190, 89,210,168, 97,137, 41,103,214, 52, 97, 1,181, 25, 11,178,116,135, 86, 63,204, 4,241,172,239,195,183,137, 68,172, +140,233,124,130,152, 76,143,228,169, 77,159,208, 63,144, 90,183,160,165,102, 70,206,170,136, 53,166,121,230,250,149,215,169,203, +202,249,217, 71,187, 24,160,214, 77, 36, 48, 18, 9, 58, 36,134,192,178,118,159,142, 14,251, 14,137,238, 96, 19, 27,168, 70,135, + 32, 91, 40,132, 14,251,133,125,180,153, 3, 54,177,211,230,146,166, 0, 51, 40,170, 57, 10,167,111, 83,147,122,102,168, 89,133, +214, 85,240,182,229, 75,251,168, 36, 88, 96,234, 10,244, 60, 37,208,188,133,209, 88,155,252,131,233,106,131,249,136,233, 53,205, + 42,237, 30,100,173,112,186,194,222,254, 91,200, 15,253, 62,120,242, 57,184,249, 0,158, 38,223,171,231,184,251,171,245,133,233, + 86, 0, 91, 0, 16, 90,216, 82,178, 85, 90, 21,184, 95,247,143,245, 70,225,179,147,231,174,191,113, 64,150,134,182,138,181,236, + 40,217, 83, 35, 75,243,157,223, 56, 14, 26, 10, 4, 23, 65, 15,195,141,110,123,158,112, 75, 65,194, 74,110,105,202, 47, 78,164, + 47,191, 32,191, 49,195,147, 9,222,186,130, 31,186,129, 89,144, 73,200,167, 66,123, 94, 40, 47, 22,202,188,255, 32, 59, 27,250, +195, 19,162, 9,251,176,210, 94,172,212,211,194,122,106,188,140,100,212,251, 2,167, 98, 30, 91,218, 46, 79,243, 26, 0, 5,123, + 16,252,160, 13, 15,185,121, 53,121,146,201,185,193,139,117,207, 73, 95, 10,237,220, 92,224, 19, 95,149,171,151, 45,212,248, 25, +249,169, 4,159, 1,174,255, 0, 28,126, 4,150,255, 27,110,255, 2,188,242,187,225,252, 53,248,234,207,193,147,207,134,210,172, +184, 56, 96,253, 0,206, 96,119,254,148,148, 42,164,201, 79,237,162, 66, 43,254,218,214,236,135,157,164, 61,242,120,239,192, 83, +246,209,242, 49, 11,105, 53,206,127,249, 41,229,220,200, 17,105,219,185,235,157,212, 54, 73,223, 97,155,239,209,213,199,245,199, +208, 44,108,216,220, 58, 78,191,100, 19,150,238, 88,207,248,255, 25, 82,141,123,173,117, 27, 82,240,243,155, 23,211,221,222, 37, +177, 87,180,109, 55, 44,234, 66,198,109, 79,152,118,235, 97,211, 30, 80, 35,219,100,173,127,111,235,192,138, 63, 35, 28,129,207, +136,240,227, 63,113,228,213, 63,251, 22,207,255,139, 15,184, 93,140, 41, 11, 95,122, 34, 92, 63, 86,190,252,109,227,229,185, 49, +137,120,134,184,244,195,254,195, 88, 89,118,201, 86,127, 13, 3,167,189, 63,204,100, 24,185, 78, 33,142,139,212, 94,150,232, 94, +206,192,157,193,213,131, 29,120,177, 29,130,212,199,237,149, 49, 54,245, 1, 36, 37,186,197,142,142,237, 57, 64,109, 3,246,216, +133, 90,191,178,107,141, 82,128, 95, 68, 19,102,141,181,219,218,108,199,213,122,190,189,109,175,227, 48,192,136, 42,198,179,102, +172,102,220,136,112, 80,223,245,223,197,251,235,175,249,100, 70,181, 66,149,152,233,164,140,137, 58,106,182,218, 86,208,235, 48, + 46,239,253,244,106, 14,181,121, 75,224,237, 33,108,187, 12,123,155,135,246,181,110,137,188,212,180, 95, 98, 95,237, 1,135,221, + 30,144, 9,101,224,216,203,240,186,218,131, 70,230,227, 94,120, 25,208,170,241, 89,199,207,154, 68,152,231, 25, 81,229,160,202, + 33,254,189,198, 84, 35, 11, 60, 57, 30,184, 21,225,188, 44, 1,156,106,172,197,208, 86,201,154, 72, 57, 83,171, 11, 60, 53,128, +103, 42,194, 60, 77,204,121,242,102, 34,108,224,170,234,161, 47,146,144,109, 39, 31,112, 53,213,203,168,191, 56,208,111, 66,185, +168,185,200, 16, 23, 59, 0,115,250, 73, 92, 58,251,165,167, 46, 90,187,248,172,115, 47, 16,211,213, 53, 34,202,249,195,247,177, + 86, 73, 49,234,182,230, 1, 20,219,152,183,141,187, 45,187,136,147,235,129, 15, 50,228,225, 89,219,173, 58, 59, 80,120,143, 94, + 53,177, 75, 11, 69,196,112,138,166, 16, 4,197, 62, 49,101, 68,213,243,129,251, 95,106,178,143,101, 84,125, 92, 29,159,152,166, +228, 16, 22,171,219,233,162,219, 45,242,148, 73,243,140,106, 34,139,255,156, 86,154,103,229,138,208,242, 68, 17,104,234, 65,142, +182, 86,236,121, 65, 30, 77,216, 47, 60,133, 47,254, 26, 60,250, 61,240,195,255, 0,222, 87,164, 30,144,171,130,220, 23,135,208, +212,225, 65,180,141,193,219, 32,234, 48,244, 84,177,164,148, 21,210,210, 72, 61,180,228, 83,192, 27, 9,214,140,190,172,216,109, +197, 84,105, 42,228,192, 80,246, 24,198,214, 62, 94,212,251, 15,113, 79,187,109,206,195,174,158, 95,171, 63,128,170,193, 11,132, + 9, 99,122,247, 30,253,198, 75,244,205, 9, 30, 39,228,213, 35,246, 5, 71,215,166,231, 71,242,119,206, 76,183, 11,231, 26, 98, + 30,241, 39, 72,250,173, 71, 79, 73, 59, 87,108, 41,212,219,194, 73,125,197,126,110, 91, 58, 42,181,250,131, 43,119,110,252,176, + 23,221, 31,226, 94,236,179,129, 94, 37,164,199,172, 62, 55,236, 46,118,233,203, 74,123, 89, 57,135, 29, 30,237, 15, 84,191, 57, +245,165,146,127,246, 10,249, 25,131,199, 95,132,155,127, 30,218,115,120,250,231,160, 28,225,230,125,248,234,191,135,253,124, 67, +254,153, 21,202,119,160,188,112,107,226,122,139,156, 58,223,160,145,102,229, 40,153,169, 56,194, 94,196, 56,215,202, 20,136,226, +121,240,214,247,110, 37,197,237, 80, 90,229,163,255,229, 67,172, 64,206,198, 77, 51,206,145, 69,211, 98,164, 62, 77,151,178,140, + 94,208,181,119,101,113, 16,242,137,211, 80,180, 58,119,160,236, 11, 68, 17,217, 3,157,194,251,170,125,160, 21,254,121,146,175, + 42,188,232,105,164,159, 93,238,253,146,169,131,117,194,179,219, 6, 38,168, 12, 55,104, 31,101,143, 93,171, 13,251,232,163, 40, +143,111, 18,203, 2,191,242, 47,125,131, 95,255,230, 25,142, 62,193,120,114,149, 88,171,112,223,217,255,227,142, 48,152,237,231, + 17,244,210, 71,188,136, 71,101,110, 9,145,251,186,198, 6,176, 84, 30,186,245, 14,140, 89,227, 78, 60, 15,196,191,137, 97,234, +240, 32,103,162,171,215, 11,151,118,186,135, 10,237, 49,100, 68,113, 29,196,210, 99, 79,195,106,184, 69,208,198,250, 43,111,207, + 71,161,104,102,105,133, 37,210, 38,235, 64,181,235, 5, 61,110,181,120, 95, 18, 44, 13, 47,250, 39, 51,142,182, 79, 78, 12,184, + 55,225,212,191,187, 77,136, 90,157,133, 46, 66,211, 41,172, 9,118, 49,254, 39, 2,175,122,242, 92,197,157, 3,111, 0,223, 30, +150,214, 77,118, 17, 95,226,227, 80, 25,249, 46,126,245,241, 23,210, 72,103,124, 16,190,178,233,133,162,144,183,225,226,146,143, +129,110,236,162,248,251, 33,207,127, 80,238,135,224,128, 24,204,170, 78,126,179,176,154, 86,219,234, 11, 8,215,243,140,136,176, +156,207, 62,245,141,212,202,181, 57,248, 71,123, 81,166, 23,244,204, 52,249, 1, 33,135,114, 85,194,182,184, 29, 56,181,139, 73, +251,159, 29, 35, 89, 7,173,205, 40, 69, 84, 15,241,233,246,241,109, 58, 34, 26,153, 12,109,111,134,154,131,202,198,252,217,200, +108,240, 14,238,112, 56, 96,101,101,185,125,177,239, 55, 25, 58,146,202,150,235,189, 73, 13, 98,124,176,157, 73,173,133, 77,104, + 80,207,137, 12, 40,200, 22, 2,162,174, 53,220, 97, 15,253, 43, 75,236,130, 58,149,180,219,232,196, 51,220,181,245, 55, 57, 90, + 23, 64,152,104,211,238,239, 52, 81, 87,104, 71,106,154,166,196,156,148, 89, 3, 76,146,149,164, 25,116,242,177,208,212, 3, 89, + 10,181, 54, 86,171, 84,170,127,192,171, 97, 47,110,189,139,126, 87,176,111,253, 60,242,165,127, 21,249,210,247, 97, 31,126, 29, +249,135, 9, 93,103,236, 84,145,114,142,194,240,192,110, 55,140,157, 22,224, 80, 27,237, 92,208,212,124,207,249,222, 9,189, 81, + 56, 28,225, 58,160, 52, 47,162,248, 83,177, 50,161, 47, 27, 89, 93, 36, 19, 43,159, 13, 50,163,253, 59,130,216,199,199, 13,210, + 6, 97, 83,183,204,244,221, 82,133,231,147,112,188,175,164,175,220, 50,127,238, 8,111,100, 56, 36,228,181, 71,190,199,126, 94, + 73,111, 29,152,158,159,152, 63, 44,156,230,254,176, 85,228, 11, 51,118, 42,216,203, 70,123, 89,176,106, 59, 71,187, 26,107,101, + 75, 99, 75,195, 67,106, 76,127,178,237, 70, 15, 22,127, 18,244, 73,114,232, 12,158,116,215,238, 35,137,237,222, 71,239,139, 25, + 75,235,211,159,184,129,138,248, 65,244, 79,190, 1,159,250,157, 48,255, 49,152,222,128,167,127, 30,158,253, 58,188,242,187,224, +254, 47,194,127,242, 11,112,243, 4,251,104, 69,222,248, 8,202, 45,200, 17,150,123, 88, 61,156, 72, 87, 33,201,196,141, 78,164, +183,142, 44,182,242,193,251,103, 82,114, 30,180, 6,216,163,167, 74, 69,102, 7, 53, 84,214,102,198,169,143,188, 67, 89,125,115, +244,110,189, 87, 9,213,125,188,154,197,187,216,237,144,208, 15, 79,246,128,110,221,175,169, 18,197,221,100,115,121,244, 15, 56, +137,119,236,210,161, 50, 33, 0,235, 93,134,163,228,216,216,195, 45,130, 43,208,228, 15,175, 22,105,137,114,233,155,149,102,212, +136,218,181,145,229, 30, 34,186,202, 14, 46,153, 50,124, 88,225,221, 95, 57,113, 90, 43,105,246,142,250, 84,141,191,247,237,133, +115,219,229, 40,213, 46,109, 98,163,112,175, 7,232,200,199,210,186,100,139, 18,221,195,235,108, 75,173,235,136,217, 50,226,119, +101,136,106, 53, 47, 88,155, 56, 45,174,191,177, 19,111,118,121, 96,233,130,177, 54, 92,191, 57, 38, 22,123, 96,138,127,118,182, + 89, 80,213, 15, 14, 97, 31,107, 6,247,213,173,173, 41, 92, 57,146, 18, 82,108, 83,213,111, 49,209, 92, 54,117,155,252,164,147, +253,226,247, 85,235,148, 63,225,206,224, 30,219,112,191,102, 59, 68, 42,137, 33, 45,214,152,120,150, 71,193, 40,165,239,219,133, + 81,164,222, 51,233, 39,241, 80,201,219,176, 65, 54, 60, 59,160,223,184,163,120,242,187,121,204,211,102, 69,148, 77,227, 49,254, +190,244, 64,180, 55,198,139,242, 0, 79, 60,166, 26,118,123,180,245, 70, 9,221, 82, 14,251, 10,163,103, 53,168,250,180,130,208, + 55,229, 16, 91,247,224, 50, 21, 31,205,183, 90,169,107, 27, 54,224, 30,222,226,186, 1, 69,163, 27, 79,154,226, 30,236,209,227, +138, 53,219,130,135,182, 87,168,186,217,207,122, 82,219,229,218,177,141,121,115,113, 16,145,224, 54,196,113, 53,103,255,253,181, +110,212, 57, 19,243, 70,180,121,103, 48,240,107, 28, 41, 45, 2,109, 93, 56, 61,251, 0, 43, 5, 85,137,209, 96, 87,221,202,102, +146,183,118,233,127, 28, 61,130,221,226,214,195, 26,122,164,107, 31,207,247, 81,225, 22,231, 55, 96,253, 44,126,221, 85,237,213, +197,114,216, 46,204,107, 30,120,226,187,246,200,217,238,118,163, 96, 90, 39,149, 45,173,216, 68,156, 20,166, 57, 0, 19, 19,135, + 57,197, 14,113, 9, 42, 93,242, 49,137, 37,207,124, 43, 11, 22,178,228,138,112,110,194, 25, 35,151,123,148, 10,247, 7,228,201, + 12, 95,254, 50,124,113,133, 87,254, 36,252,214,255, 24,202, 61,250, 75, 51,118, 88,177,121,193,206, 50,140, 78,108,195,229,142, +118,156,130,145,207,197,217,245, 87,130,188, 80,228,189, 16,206, 29, 20, 30, 77,240, 61, 13, 89,103,244, 93,207,162,183, 86,153, +111, 87,150,136,195,237,157,146,251, 51,219, 38,212,234, 57,222,163,136,194,194, 74,214,113,175, 29, 17,128,192, 85, 54, 14, 31, +156,200,255,240, 5,250,169, 25,187, 81,100,158,145,215,174,177, 79,175,232,103,102,210,251, 71, 14,207,111, 61, 59,120, 49,166, + 89,145,207, 29,225, 89,241, 36,182,115,219,198,145, 37, 52, 34,173,123,148, 35,183,219, 70,229,170, 93,166, 56,117,149,178, 94, + 41,242, 56,195, 44,216,125,133,151, 5, 91,188,123,110,119,133,117, 53, 78,230, 83,128, 20, 15, 29, 5,228, 30,210,111,203,240, +250, 15,193,213,159,130,252, 38, 44, 95,133,167,255, 35, 76,103,120,235, 26,254,231,191, 12,255,143, 32,127, 80,177, 91,243, 42, + 91, 79,174, 40, 91, 94,192,115, 65,238,253, 53,206,249,136,254,137,183,224,247,126, 31,249,231,126,149, 23,255,237,219, 76, 89, +209,115,221, 73,120, 3,247,157, 1,188,210,177,174,125,132,234,144, 65,225,224, 27,159, 56, 4,244,220, 1,127,192, 75, 44,239, +172,140,236,244, 93, 81,188,249,247,211, 94,137,100, 82,180,122,213,238,124,233,150,118,149,188, 5, 27,190,197, 31,105,170,123, +209,139,184, 97,205,137,154,179,119, 46,141,141,165,173, 13,215,125,152, 7, 47,245,112, 26,217, 73,200,126, 24,141, 80,154, 20, + 29, 82, 1,150,210, 40,197,255, 93,147,113,182,240,171,211, 3, 51,188,163, 95, 30,200,169, 55, 88,201,246, 44,113, 62,121, 25, + 14,197, 91, 7, 46,186,177, 48, 54, 1,227,144, 52, 82, 7,245, 80,142,239,105,142, 29,193, 26,180,189,218, 97, 44,225,135,110, + 1, 25, 42,109, 31, 77,143, 68,180, 78,163, 76,182, 91,236, 26, 66,141,168, 77, 53,227, 96,141,151,205,239,111,217, 52, 69,193, +127,143,235, 33, 85, 95, 1,170,184,128,215, 90, 76,162,182,130,238, 33, 45, 54,132,109,141, 14,174, 26,123,250, 37, 38, 14,218, +140, 59,220,123,190, 6,222,181, 4,227,126,233, 62,104,219,227,173,175, 5, 30,137, 32, 41,145,179,178,182, 18, 78,137,221, 27, +159, 7,183,213,163,248,236,239,245,242,128,110,195, 52,164,141,106,182, 40,224, 50,136, 73, 63,201,186,246, 73, 88,217, 49,126, +102, 51,100, 14,146,246,190,251,135, 75,102, 65,138,233, 71, 26,232,124,125,159, 62,231,204,164,153,166,123,250,103,214, 20,159, +181,120, 97,196,255,183,148, 18,117, 29,243, 24, 36, 4,143, 14, 12,114, 30,195, 52,172, 29,188,232,175,165,112, 62,159,246,125, + 85, 47,214,162, 81,216, 99, 50, 50,178,225,187, 63,222,218,112,205,219,230,145, 23, 77,144,252,184,105, 53,186,234,176,202, 89, + 4,202,108,235,240, 97, 39,149,189,219, 19,150, 23,207, 99,148,199, 94,140, 67, 41,222, 51, 75,164,237, 84,254,109, 7,208,125, +176,155, 2, 54,132,115,106, 23, 35,117, 25,114,217,181, 95, 5, 18,103,238,142,146,181,253,103,123,235,211,144, 41,145,196,247, +254, 82,107,188,158,136,124, 29,148, 22,162,126,186,202,105,194, 52,251,216, 35, 79,126, 58,107,141, 84, 11,185,174,126, 27,204, +215, 30,202, 37, 13,105, 37, 50,217,129,150,168, 65,189,195,217, 42,104,105,204,210, 72, 77,105,119,134,188, 34,200,251, 43,220, +253, 29,120,245,159, 67, 62,253, 39,176, 31,251,243,240, 62,200,203, 9, 57, 77,200,121, 55,151,105,218, 71,167,125,159,170, 3, +232, 99, 90, 26,118,172,212, 86,144,143, 22,210, 87,194, 59,254,217, 25, 94,157,224,243,134,174,206, 59, 55,105,112, 94,209,123, +219, 44, 80,163,250,180,200,101,190, 51,219,110,210, 46, 58,157,190, 59, 92,155,239,161,159,171,112, 93,141,249,155,247,204, 95, +191,131, 79, 37,184,190,135,199,215,200,167, 39,236,245,153,252,217, 35,237, 69,225,234,195,123,202,210,200, 79, 38,228,149, 9, +222,190,195,110, 27,173,122, 44,100,107,194,186, 70, 65, 11,121,109,103,138,247, 19,170, 93,156, 84,101,219,181, 37,112,224,204, +167, 34,211,252,133, 97,119, 94,208,157, 34, 87,125,180, 95,221,186, 52, 53,227,216,161, 51,162,200, 19,131,114, 15,122,140, 27, +224, 8,239,124, 7,126,236, 7,224,244, 62,252,185,167,158,208,118, 29, 0,236, 52,197, 7,120, 11,235,135, 91, 59,167,139,194, +143, 92,195,111,255, 52,188,253, 33,203, 95,253,144, 90, 27, 89,140, 26, 64,149,238, 21, 31,133, 89, 58,236, 10,219, 39,196, 83, + 54,131, 41,137,199,174, 86,187, 12,158,216, 86, 41, 35, 53, 97,223, 25,106,216,245, 46,158,136, 37,148,180,178,175,195, 52, 78, +114, 54, 27,156,186,141, 75, 40, 37, 30,180,213, 88, 66,237, 62,205,217,173, 59,165,110,215, 77,149,232,127,196,187,153,146,161, +157,135,196, 52, 25, 14, 24, 23, 22, 57,219,216,244, 75, 8, 58, 20, 99,137,174,186,198,137, 39,165,192,108,118, 69,222,158, 31, +187,117,163,235,134,247,188, 28,195,187,168,183, 3,129,188,251,221, 35, 72,109, 19,234,245,168,212, 78,238,115,112,203, 30,109, +171,120,150,248,135, 13, 14,209,181, 31, 4,110, 68,184, 18,227,118, 16,198,173,157,138, 57,116,229,105, 56,110,173,131, 23,165, +231,157, 79,248, 65, 70,104, 84,243,226, 57,245,149, 99,196,177,182, 45, 53,206,187, 63,107,142,136,110, 56,236,167,109,233,116, +131, 15,124, 83,209,239,249,225,125,219,183,154, 31, 86,150, 88, 1,172,155, 32,206,226, 85,235, 6, 46,170, 13, 42, 53, 98,105, +133, 67,154,168,102, 44,173,114, 54,219,120,248, 50, 28,108,110,100,136, 30, 30, 58,244, 98,151,161, 56,123,167, 61,136, 0, 31, +104, 24, 46, 16,174, 99, 71,223,181, 41, 67, 34,226, 30,246,181, 23,253, 61,238,119,228,188, 15, 52,205,254,247,105, 98,202, 19, + 57, 79,126,152,214, 60,208,233,108, 43,252,253, 26, 81,140,115, 74,225,168,104, 33,232,213,193,162,183,199,170,246,105,192,106, +141,211,233,158,245,174, 81, 75,217,236, 20, 93, 8, 71, 76, 4, 58, 79,196,185, 18, 3,191,101,176, 1, 42,130,230, 20,161, 84, +234,148, 76,139, 3,159, 57,120,173, 9,180, 18,201,113, 99,131, 20,112, 39, 33,117,248,204,238,237, 16,217,115,162, 53, 4, 1, +163, 54, 81, 31, 36,202,136,250, 30, 67, 30,230, 59, 52, 11,172,171, 93, 38,191,117, 53,109,236, 6,205,218, 54, 42,212,129,190, +211, 3, 11,114,139,145, 7,169,115,122,182, 81,155,198, 29,111,146, 34,130, 53, 78, 63, 41,185, 48,196,124,207, 46, 20,178, 52, + 38, 51,180,174, 8,179,183, 76,156,125,239, 81, 28,142,223, 90,115,111,123, 92,158, 42,226, 44,248,166, 28,214,226, 9, 97,103, + 64, 50,246,141,191,130,124,250, 15,195,213, 63,129,188,249,247,176,239,255,235,232, 59, 19,237,148,144, 91,193,206, 27,135,242, +130,122,100,131,250,187,198,193, 43,175, 21,206, 66,109, 62,122,209,183,197,213, 60,175, 31,225,205,217, 47,162,197,125,198,118, + 87,152, 94,156, 72, 27,242,112, 87,188, 39,221,253,188, 29, 70, 48, 2, 50, 30,142,178, 44,150,135,103,133,231, 9,142,207, 22, +244,107,119,228,207,206,216,107, 25,153, 19,188,126, 3,159, 62, 33,119, 7,242, 93,113, 63,231,243, 19,250, 36,111,214, 54, 43, + 45, 28,124,110, 89, 90,205, 40,205, 73,118,173,231,139,219,254, 96,218, 78,171,186,143,231, 82,115,224, 74,122, 37, 33,143, 34, + 7,247,105,120,211,173,209,150, 70, 57, 25,103,224, 92,124, 63, 76, 26, 85,245, 2,223, 94,160, 78,238, 71,151, 5, 94,252, 60, + 60, 21, 56, 37,236,143,255,111,176, 20,228, 39,175,176,215, 20, 94, 83,208, 79, 7, 45,232,153,179,241,107,168,211, 14, 10,185, +210,254,203,175,176,252,157, 91,158, 47,103,150,107,176, 83, 40,214,181,143,184, 98, 74, 16, 32,163, 1, 70,181,237, 43, 85,118, + 97,153,246,144, 8,193,221, 34,179,250,205, 95,119, 22,170,204,138,148,134, 84,223,233,181, 16, 22,166,126, 3,173, 33,122, 20, +193,170, 57,164,103,245, 20, 22, 75, 46,197, 54,240,140,121,226,231,212,128,230,152,177, 6,149,108,186,154, 96, 62, 80,207,197, +247,129,214,227,131,157, 31, 42,109,191, 88, 53,117, 49,142,108,157,122,178, 93, 4, 11,161, 79,159, 0, 0, 32, 0, 73, 68, 65, + 84,218,119,254,181,107, 86,226, 33,185,118,190, 69,127, 24, 70, 65,219,125,207,187, 53,213,198,209,178,237, 22, 88, 27,188,185, +186,141,194,101, 19, 65,141,224,151,141,182, 21,146, 3, 29, 20,213,182, 29,190,132, 89,225,101,137, 0,167, 16,207,245,115,222, + 85,124, 4, 79,217,227, 90,123,166,250,238,248,191, 92, 7, 48,216,166, 68,140, 99,168,198,155,249, 88,157,234,197, 65, 3,195, +186, 39, 91,249,148,102, 78,217, 57,240,107,217, 26,164, 17, 62, 83,227,103,106, 76, 74,138,236,170,253, 14,254,177, 56, 20, 45, +113,160, 40,246, 48,153,173, 33,161,207, 40,192, 18, 14,130, 85, 96,150,198,181, 42,105,154, 41,235,194,210,124,234,214,115,225, +123,209, 62,196,189, 90, 6,145, 96,150, 62,129, 12, 48,143, 13,140,128,161,208,202, 39,224, 93,199,181,203,244,224,247, 43,151, +180, 68,100,183,113, 93, 10,233,252, 59, 77, 26,246,179,152, 20, 95,105,230,230,120,224,120, 56,122,224,138,106,236,184, 97, 41, + 37,226,191,247,134, 32,247,196,197,136, 22,111,117,136, 81, 29,174,196,205, 18, 88, 27,118, 62,179,134,101,176,139, 88, 69,117, + 56,148,135, 35, 76, 6, 72,140, 74, 88,221,118,207,177, 4, 66, 86, 83,222,190,251, 62, 29,176, 90,220,205,160,201,233,131,181, + 68, 65,127,160,242, 80, 54, 91,119,102,243,141,239,234,204, 78,153, 75,125,116,228,179, 27, 87,192,142,128,123,145,109, 44,181, +205,228, 6, 70, 49, 22, 96, 14, 46,253,133, 58,140,215, 82, 20,231, 62,218,218,176,136,219,127,183, 24,153,168,143,222,123,146, + 81,107, 27,222, 79,106,245, 17,191,102,127,120,148,213, 95,163, 18, 7, 17,223,129, 38,205, 62,156, 47, 11,102, 5,180, 4,121, +203, 93, 77, 37,212,138,104,194,154, 80,214, 91, 88,207,220, 82,184, 90, 23,174,164, 96, 79, 10,246,228, 6,249,229,223,128, 31, +250, 27,240,232,159,134,249,119,192,155,127, 19, 30,173,200, 71, 17, 95,214, 60,158,207, 58,115, 59,152,220,125, 18,223, 6,238, +171, 86, 67,239, 42,109,242,116, 53,126, 67,209,171,236,187,245, 39,179, 7,175,220, 6, 94,242,118, 98,154,207, 28,151,253, 20, + 45,131, 95,115,156, 83,118, 38, 54, 17, 6,115, 97, 3,209,126, 34,246,145,252,189,192, 93, 53,230,111,223,145,190,126,240, 14, +253, 42, 35, 79,110,144,239,123,140,157, 26,169,197,204,251,215, 43,233, 7,143, 94,205, 22,159,168,180,210, 35, 45, 29,186, 83, +154,251,136,229, 34, 69, 40, 30, 46, 50, 90, 81,188, 64, 77,106,228,172,232, 43,147,199,111, 85,131,219, 16, 41, 90,195,238,220, +210,231,255, 56,178,115,238,118,156,102,200,169, 32,127,248, 77,120,245,223,244, 61,121,249,171,240,115,255, 1,188,249, 58,245, +223,254, 85,202,219,207,209,159,188, 33, 29, 28, 8, 40,175, 92,185,165, 77,143,192,215,225,105,241, 39,188, 25, 77, 10,235, 87, +110, 41,119, 43,119, 90,185,191, 17, 87,175, 75,115, 48, 73,132,218,244,107, 61, 39,182,160,142,141, 3, 80,217,114, 5,246, 52, + 55,223,107, 70, 14,104,252,225,120, 82,174, 97,231, 82, 55, 17,123, 86,129,197,131, 60,190,176,138,199,243, 70,197,115, 55, 73, + 66, 14, 19,124, 54,211, 62, 58, 83,111, 87, 90,169,206,173,239, 37,167,249,131, 34,153,184, 82,247,234,138, 38, 19,117,219,209, +249,225, 33, 73,218, 50,163,201, 96,107, 37,181,134,170, 58, 9,144, 22,211,180, 80, 1, 87,217,166, 19,157,110,231, 69, 32, 94, +165, 92,174, 89,250, 8,191,239,172,107,140,150,183,220, 2, 51, 46,229, 80,182, 69,212, 78, 61,111, 60, 40, 94, 83,172, 57,122, +209, 47, 12, 76,242, 56,155,117, 2,224,180, 41,184,109,235, 78, 83, 20,164,147,121, 33,186, 13, 10, 93,223,177,107, 0,100,166, + 0,218,116,159,255,204, 62,222,183,129,251, 96, 3, 24,234,198,195, 11,185,239,244,185, 64, 92, 39,205, 91, 16, 72,128, 55, 16, +224, 32, 66, 77,153, 22, 99,248,174,110,182,209,150, 58, 20,232, 98, 22, 62,123,219,194, 98,170, 8,103,219,229, 18,123, 65,183, +139, 67, 61, 3,111,190,191,238, 53,124,218, 51,120, 80, 76, 82,106,109, 44, 49,225, 24,133,129, 83,232, 15,214, 97,218,168,155, + 94, 38, 14,182,182,163,143,219,131, 88, 54,249, 46,136,216,198,152, 6,103,152,126,188,128, 63, 60, 8,140,133,212,226,161,146, + 36,113,147, 18, 55,243,236, 58,177, 16, 84,211, 26, 21,165,212, 74, 45,101,215, 44, 52,115, 59,170, 78, 20,145,184, 79,213, 65, + 97,181,238, 19, 79,219,167,103, 77, 60,104,167, 69, 4,249, 38,250, 86, 63,104,123,131,154, 6, 75,119, 76, 83,205,127, 79,132, + 54, 68,234,232,222,209,183,230,225,101,173,131,216, 58, 5,175,119, 63,165, 68,248,145,108,107,157,126,212,208, 24,243,107,206, +100, 25,136,114,253,100, 65,236,201, 68,245,162, 16,168, 61, 32,247,200, 62,154,178,139,184, 68,217,184,184,210,197, 11,129,141, +237, 85, 77,104, 36,113,139,155, 36,221, 72,113,238, 49, 84, 87, 18,183, 26,233,109,186,193, 62, 82,206,254, 6, 54, 75, 79,247, +181, 68,146,145,102,191,149, 90, 69,242, 76,158, 31,147,165,160,231, 91,223,127,154, 33,231,151, 52, 10, 54, 79, 88,154,105,154, +105,214,147,223,192,202,194,114,186, 71,207,119, 52, 86,212, 10,119,245,196,177,173,216,115,131, 55,142, 80,143,240,171,255, 53, +252,150,159, 6,249, 28,204, 71, 56, 84,247,172,207,193, 9, 94,161,101, 48,181,205, 91,216,253,205, 99, 84,111,105,144, 82, 35, +173, 43,245, 62, 30,108,223, 16,228, 21,245, 68,143, 27,133, 47, 28,144, 83, 67,239, 87,242,107, 7,174, 62, 56, 81,240, 98,211, +207, 34,205,188,112,248,158,168,143,180,109, 27,249,111,135,165,100, 27,139, 58, 69,210, 21, 17,184,177,222,173,228,111,158,200, +223,211, 69,115, 10,143, 30,193,231,207,174, 10,111,192,113, 69,191, 24, 33, 46,107,236,251,235,206, 34,239,225, 51,136,219,109, + 50,184,165,176, 93, 10,127,186,208, 45,137,113, 48, 35, 29, 5,121, 45,121,149,252,168,210,206, 22,251, 70, 79, 98, 91, 49, 22, + 83,106, 28, 72,114, 18, 14,147,161,103, 67,222,173,200, 23,127, 4,236, 10,218,207,195, 95,255, 79,177,191, 1,235,250, 17,167, +255,235, 41,233,173, 76,174, 43,201, 14,158,241,158,143,120,127,150,252, 17,252,124,141,236,119,197,158,195,242,116,225, 20, 94, +221,186,218,150,158,149,115,212,188,208,221,244,207, 89, 99,175, 33, 9, 74, 17, 90,218,235,182,141,163,249,108, 72,100,197,155, + 52, 44,123,113, 14, 89, 52, 29, 26,191,241,218,133, 11,120,135, 54,221, 1, 47,147, 32, 83,134,127,229, 83,240,217, 3,250, 31, +126,155, 90,206,209, 33,250,248,142, 16, 75, 9, 74,158, 50,109, 58,210, 52, 99,203,234,121, 8,230, 10,221,174, 34,119, 34, 76, +220, 95, 73, 60,199, 64,149,140, 4, 86,179,186,194, 56, 64, 25, 93, 9,223,237,163, 27,246,181,119,120, 50,186,216,227, 97,148, +148,220,252,190,232, 59, 92,186, 14,166, 23,180,232,224,147, 5,146,182,107, 24,108, 23, 85,150,232, 30,189,122, 72,164,209,185, +224,203,109,142,251,216, 60, 61, 56, 0,116,133,119,138,193,106,142,115,213, 93,180,111,147,200,214,141,246,131,207,129,221, 5, +176,196,159,207,221,246, 54, 8,149,166,112,100,200, 24,211, 73, 35, 91,219, 58,185, 53,158,119, 41,190, 91, 47,166, 57, 24,240, + 53, 58, 94,217,180, 18,140, 89,239, 3,225,173, 4, 95,160,138,196,107,186,156, 37, 92,166,125,217, 22, 37,219,189,215,206, 45, + 40,220, 33,156,106, 29, 92, 58,145, 11, 63, 56, 10,122,241, 61,117,221,204, 96,161,179, 49,196, 75,228, 65,158,123, 80, 31,237, +227, 43, 41, 99,156,184, 94,234,108, 24,179, 46,198,157,251,198, 60,215,141,141, 34,102, 28, 82,226, 38,103, 14,243,129,150,148, +165,181, 93, 81, 30, 7, 38, 66, 24,106,102,155,202,125, 19, 99,143, 8, 86,213, 13, 45,251,177,180,181,139,148,180, 33,252,165, +219, 78,194,107, 43,131, 13, 45,245,218,106,230,254,254,222,221,105,119,174,236,194,195, 86,155,119,153,189,224, 3,181,182, 13, + 3,155, 84,145,148, 99, 50,177,187,170, 36, 80,222, 89, 31,208,124,210, 86, 0,132,172,222, 49,212, 56,161,203,192,187, 87,185, + 68,245,245,140, 88,221, 0, 51,177, 87,136,108,224, 52, 18,132,122,129, 27, 99, 25, 69, 34, 69, 77,162,115,151, 29, 43, 27, 69, + 90,215,197,127,125,158, 64, 83,172, 2,116,179, 26, 32, 62, 98, 17, 19,106,109,176,158,152,144, 24,173, 24,106,133,105, 58,160, +201,123,212,146, 19, 77, 60,197,205, 90,117, 98,217,249,142,118,127,199,178, 44,110,255,201,141,180, 20,238,109,101,181,194,225, +217,138,125,180, 32,159,187,194,126,225, 61,228, 11,255, 3, 60,250,189,254,180,111,241,137,206, 62, 70,103,245, 44,116,170, 92, + 38,235,244,200,189,182,231,138, 87,115,134,115, 58, 25, 53, 36,193,249,107, 33, 26,251,236, 1, 94,205,240,189, 7,210,237,138, +189, 92,201,167,202,241,197,202, 26,184,208, 62,230,222, 34,108, 59,113,108,244,135,198,200,184, 19,208,146,185, 23,121,246,151, +140,102,163, 90,163,189, 56, 99,223, 57, 33,159,155,176, 71,138,228,140,124,230, 53,236,124,134, 50,163,175, 77,200,103, 15,108, + 56, 53, 1,157,140, 52,240, 51, 83,191,184, 2,166,160,241,179,219, 40, 78,138,127, 38, 60, 69, 75, 94,155,224,117,215, 64,240, +188, 97, 47,156,245,110, 75,165, 46,141,181,121,130,149,138,211,205, 14,201,121,222,233,235,149,233, 95,255, 34,124,223,207,192, +242,239,211,254,143, 95,164,252,217,247, 40,175, 43, 79,223, 95,169,175, 43,143,154,145,238,171,183, 40, 93,236,208,112, 47, 66, +249, 22,156, 86,120,114,128,183, 23,206,207, 10,167,218, 56,103,161, 54,227, 92,155, 31, 62,205,109,102, 26,216,210, 22,130,208, +139, 67, 83, 88,201, 44,198,148, 26, 63,202, 74, 8, 23, 75,207, 65,119, 37,189,220, 25,121, 54,183, 52,166,228, 54,190,178, 35, + 35, 21,115, 71, 64,168, 98,233, 43, 42, 9,107,202,181,194,219, 39,248,171,183,180,231, 43, 45, 9,182, 70,215, 26,160,120, 83, + 33, 77, 9,201, 19,150, 39,214,197, 71,143, 85, 50, 83,134,156,101,179,175,105, 41, 20,109,216,234, 7,195, 22, 49,200, 22,113, +198, 34, 50,196,146,238,225, 43,227,126,148, 36,180,234, 83, 9, 85, 33, 37,161, 52,143,133,244, 7, 72,194,164,109, 90,147, 26, +220,130,145,142,168,177,219,223, 16,210, 67,129,157,162, 8,183,182,139,167, 82,138,243, 80,181, 11, 17,203,212,113,190, 67,151, + 55,133,108,133,225,191,143, 93, 91,100,123,179, 98,145, 83, 94,204,187,123, 17, 23, 16, 55,177,109, 95,205,192,228,144,200,152, + 72, 50, 52, 72,157,157, 47,194, 74,115, 61, 70, 74,174,254, 15,118, 68,127, 50, 76,154,104,201,182,233, 99,217,112,179,118,177, +179,174,131,118,102, 51, 50, 68,113,242,169,171,186,216,113,179,208,170,251,210, 99,111,223, 45,164, 85, 52,182, 62,254,190, 59, +224,166,181,182,163,110, 5, 22,179, 77,148, 86,135, 3,145,217,199,107, 94, 79, 48,235,135,137, 29, 56, 35,151,108,118,123,160, +104,223,101,113,251,245,100,151,201,124,219, 36, 64,252,154,106, 65, 42,154,128, 67,158,152,210,228,147, 7,129,108,131,191,123, +195, 17,251,169, 80,209, 13,180, 84, 99,105,211,237,191,147, 40, 45,103, 50,194, 89,148, 90, 86,135,161,141, 19,199, 49,224, 53, + 10,184,201, 16, 39,168,186,143,222,187, 58, 90, 34,123, 52,224, 53,214, 6,213, 77, 76,114,144, 20, 43,176, 26, 71, 47,191,203, + 90, 43,219,129, 88, 73,190, 70, 32, 72,170, 61, 41, 53,154,113,171,149,156,162,235,117, 1,155,108, 2,183,142,235,179, 45,224, +192,250,148, 0, 21,121,128, 83,220,232,234, 67,231,190, 71, 62,105,156,110,250, 27,149, 7,194,162,174,114,223, 79,226,123, 70, +187, 52, 23,179,137, 26, 82, 26,180, 21, 59,199,206,124,158,144, 52,185,135, 93, 4,210, 76,210, 41,252,183, 11,186, 44,100,169, +232,225, 49,114,120, 66,182,194,148, 82, 88,105, 86,150,218, 72,117, 37, 89,193,202,153,118,190,141,194, 85,200, 42,152, 40, 38, +141,214, 10, 43,141,251,214,152, 94,156,225,163,123,228,205, 25,185, 61, 98,191,246,151,145, 31,123, 29, 14,175,192,244,220, 47, +199,236,237,175, 46,126,145, 86,147, 45,219,220,189,199,131,191,179,251,143,155,209, 84,152,107, 35,175,171,239,226,191,149,200, +175, 6,233,237,149,201,211,220,190,112,133,190, 88, 73,231,194,241,180,178,172, 70,233, 93,200,168, 6,102,207,229,182,234, 15, +206, 45, 80,174, 7,188,196,119,187, 11,215,124,236,213,206, 70,123,111, 37,125,112,118,209,220,225, 57,204, 95,128, 79, 63,135, +151,207,145, 31,156,225,115,115, 60, 69,187, 23,180,187, 16,100,251,185, 7,219, 89,233,157,105,172,145,230,149, 98,122,147,122, +146,214, 81, 72,159,202, 14,225, 41,134,189,112, 52,172,105, 11,101,189,133,136,203,233,109,135,100, 92, 41,228,175, 22, 14,191, +249, 9,250,167,255, 48,180,175,194, 55,127,149,243,191,241,117,238,175, 26,207,158, 43,167, 43, 33, 39, 56, 84, 56,158,138,175, + 11,172, 47,250, 15, 96, 79,225,244, 45,120, 23,248,112,165,252,234,137,178, 86,202, 12, 53, 11,247, 47,161,172, 46,193,184,146, + 80, 82,235, 5,253, 56,210,155, 66, 56,180, 4,186,118, 0, 65, 72,140,226, 39,221,169,114,152, 79, 49, 76, 64, 86, 67,151,230, + 26, 6,113,211,186,158,131,152,152, 18,122, 76,129, 72,139,252, 85, 9,156,237,210,176,251, 5,249,159, 10,237,206,168,186,250, +212, 36, 46, 46,205,208, 44,199, 62, 46,147,166, 76, 42,161, 27, 17, 65, 38, 31, 77, 90,144,180,106, 35,198,142,141,166, 33, 30, + 13, 30,128,180,182,175, 55,119,251,202,238,100,217,144, 21, 97,141,154,148,137, 68,163, 97,166,148, 13,228, 62,144,187,123, 48, + 14, 26,116, 50,127,148,229,224,117, 71, 3, 78, 9, 22,108, 70, 73, 52, 50, 70,177,230,163,112,177, 16, 28,183, 45, 54,180,196, +129, 9, 60, 91,125,142,103,203, 93,140,241,175, 4,158,168,112,109,112, 10,246,195, 49, 58,236,243, 70,161,243,251,170,167,152, +117,113,218, 36, 66, 22,183,175,217,208, 53,215,216,199, 79, 2, 47,251,245,109,187,245, 20,122, 42,154, 59,117,178, 8,107,140, + 53,250,190,217,175, 17,165, 90,114,107,110,107,219,238,124, 3,226,244, 2,223,187, 97,187, 84,232, 35,158,223,110, 81,176,251, +110,126, 22,193,242, 52,240,224,123,112,137,108,164,185,190, 43,209,141,208,231, 95,106, 21, 7,207,108, 93,185, 13, 69,157,143, + 91,218,122, 83,214,223,243, 88, 4,229, 65, 72,184, 92, 68,109,126, 18,152,102,215,163,116,252,240,134, 46,111, 45,154, 79,223, +131,123,168,147, 50, 69,195,215, 84, 88, 90,193,106,219,159,137,150,182, 58, 54,133,102,204, 6,209,165, 69,125, 75, 57, 51, 29, +103,238,238,149,243,253,125,104, 67,100, 23, 46,198, 33,175,141, 17,225, 67, 78,137, 6,156,101,231, 39,117, 55,148,110, 78, 13, +209, 20,182,187, 18,127, 69, 36, 24, 70,184, 26,170,174,155,137, 21, 67, 39,212,149, 97, 45,208,231, 39,170, 1, 2,243, 64,151, +125, 95, 34, 3, 31, 62,233, 30, 63,183, 77,238,101,207, 72,239,191,177,251, 4,183, 40, 86,141,168,209, 17, 27,185, 65, 38, 98, +200, 31, 97,241, 27,242, 48, 50,211,117, 80,179, 74, 23,119,152, 43,180, 37,132, 14,130,159, 54,165, 84,172, 45, 52,156,248, 35, + 57, 35,185, 32, 92,193,116,100,150, 35,201, 26,233,248, 10,114, 56,162,173,162,166,225,217,172, 44,171,113, 62,159, 56,148,133, +163,174,200,122, 66,150, 83, 60,235, 51, 18, 74, 19,169,133,110,250, 94, 69, 56,175,149,227,187,103,236,205, 5,121,114, 5,191, +112, 7, 95,252, 75,200,117,198,222,152,145, 95, 59, 35, 77,221,110, 52,123, 24, 75,137, 56,197, 14,251, 96, 80,128, 91,140,207, + 20,217, 92, 1,102,198,116,191, 80, 95, 42,242, 53, 37, 61,202,222, 78, 31, 21, 62, 51,161, 31, 30, 73,207, 86,218,205,196,213, +243, 53,132, 49, 62,102, 29, 17,164, 91,162, 26,251, 73,187, 71,157,174,198, 22,182,209, 85,164,214,101, 17,147, 97,119,158,184, +198,109,133, 87, 23,247, 72, 62,250, 65,236, 83,191, 8,223,223, 60,136,166,196,245,177,198,202, 37,137, 39,202,201,174,221,216, +188,215,116,254,121,140, 89,213,152,213, 56, 38,113, 33,250,213,132,126,102,242, 23,248,180,209, 94, 44,180, 82,105, 75,195,238, + 43,181,238,190,227, 99, 96,126, 15,239, 84,142, 73,200,255,213, 63,235, 67,193,242,235,172,127,230, 55,184, 79,133,219, 55, 39, + 78,109,128,135,116,195,248,105,204,172, 45, 94,212, 95,188, 3,239, 24,237,246, 76, 89, 79, 44,217,184, 59, 9,119, 75,163, 86, +139,117,133, 79,124, 14,129, 25,222, 66, 94, 82, 0, 98,100,127,208,117,156,175,196,238,178,117,184, 76, 40,198,123, 75,219, 25, +205,210, 97, 32,173,185, 54, 36,118, 34, 58, 41,114, 29,106,192,106,187, 90, 60, 78,206,118,223,168, 90,209,121,162,229, 74, 91, +188,123,151, 52,163,150,162, 7,201, 17, 97,170, 78,148,107,177, 3, 76,130,213,234,133, 42, 9,199,199,137,229,108,220,190,104, +126,244,146, 26,221,183,161,213, 15,244,190,207, 86,215,165, 12,166, 98, 25, 14, 43, 18,213, 93,213, 61,191,107,243, 81,163, 63, +227,211, 54,195,109, 67,186, 84,138,110,178,137,143,122, 19,251,222,162,197,206,210,129, 63,141,220, 26,171, 53, 23,211,185, 88, + 36, 28, 29,230, 59,116, 97,219,251, 75,168,209,231, 7, 42,109, 17, 56,102,225, 81,172, 0,102, 92,245, 62,197,234,232,212, 59, +217, 22,118,181, 65, 92, 54, 13,141, 72,143,144,238,135,180, 24,210,109,187,126,217,226, 86,117, 43,106, 5,139,231, 73,242,236, +117,107, 36, 75,219,110,187,196,206,197,215,136, 21,107, 45,120,240,145,106,215,131, 98, 46,118,230,114, 49,206,150,176,114,105, +206,172, 49, 86,151, 86,185, 81, 37, 77,137,186,174,100, 85,102, 77,241,153, 8,117, 72, 49, 83, 27,211,230,108,171, 0, 93,127, + 83,237, 19, 40,123,246,176,235,230, 19, 98, 91, 47,169,114,194, 3, 58,230,229,241,100, 3, 5,117, 91,181, 38,231,172,247, 6, + 70,163, 19, 46,214,208, 90,120, 52, 31,152,231,153, 36,194, 9, 56, 45, 43,247,235,226,171,220,172,204, 6,115,118,194,129, 70, +231,155, 85, 31,184,112,196,153, 13,165,144, 74,229, 56,207,212, 90,105,203,178,249, 86,229, 65, 83,187,129,198,182,131, 81, 26, + 98, 87, 29, 99, 46,195,193,165,131,108,188,187,175,219, 24, 94,100,248,189,234,135,119, 77, 62,234,107,197, 17,217,182, 37,214, +201,230,164,144, 97,125, 64, 10,161, 92, 22,241, 34,187,169,145,247,124,116, 6,128, 67, 15,161,232,153,204, 61,178,112,200,146, +243,223,151,186, 96,192, 6,245,124,139,241,248, 14, 15,216, 24,190, 49,122, 79, 15,144,143,186, 61,191, 26,201, 90,144,233, 52, + 14, 13, 1,178, 49, 67,214,157, 5, 47,226,172,247,252,248, 13,180, 9,106, 5,106,217, 78,143,102,149, 82, 87,218,114,166,214, +133,181,173,174,138,111, 5, 53, 39,217,137, 42, 45,180,164, 82, 87, 18,174, 64, 92, 12,238, 17,242,237,138, 62, 93,177,199, 19, +242,109,195,126,249, 41,242, 91, 95,133, 47, 92, 33,255,240,228, 7,132, 99, 66,107, 65,138, 56, 75,124,176, 58, 49,142,150, 58, + 6, 63,188,193, 77,216,176,136,114,187, 80,179, 32, 95,141, 76,250,239, 61, 56, 31,254,123,103,244,249, 76,186, 47,228,251,202, + 85,171,180, 96,126, 91,172,116, 82,236,238, 37,254,219,162,136,212,193,118,210, 71, 79,253, 6,110,221,184, 43, 6, 7,195, 78, + 5,121,214,176,215, 22,100,126, 10,250,143, 33,175,127, 14,251,220,215,144,227, 17,206, 11, 76, 9,185, 6, 61, 10,243, 29,187, + 48,178,231,144, 91,143,163, 29,252,232,106, 27, 69,237, 42,195, 85,138, 46,253,181,236, 79,148, 23, 94,200,237,212,176, 82, 89, +207,141,115,236,146,115,130,131, 26,215,207,141,235,247, 27,135,191,240, 59,225,181,239,131,250,183,105,255,205,175,115,255,203, +207,185,251,129,196,125,136,245, 54, 81, 38, 3, 46,183,198,206,163,189, 15,229,171,216,183,111,225,214,168,207, 23,214, 83,229, + 14,225,188, 6,253, 45,118,179, 73, 96,158,247,245,212,164, 67, 38,250,228,154,130,108,226, 33, 35,137, 13,130, 68, 4, 68, 28, +212,161, 44, 86,119, 52,103,210, 56,133, 75,132,252, 20,131, 99,114,172,235,117,232, 25, 68,161,149,184,103,186, 90,222,224, 62, +188,197,139, 33,147, 97,211,236, 31,206,148,193, 20, 61,133,143,176, 21,106, 43, 36,102,144,138,152,211,197, 74, 13,161, 79, 60, +137,143,215, 74, 89, 45,242,220, 91, 20,141, 22, 22, 59, 11, 62,133, 23, 46,107, 59,155,194,146,132,227, 98, 39, 40, 90, 18,106, +171,155,109,104, 23,110,218, 6,157,234,249,237,210, 31, 32,205, 59,118,149,202, 18,226, 50, 34,184,166, 90,115,239,127, 51,154, +181,173,251,222,233,109,238, 65,151,104, 40, 52,200, 90, 41, 50,213, 43, 66, 49, 99,138,208,154, 42,158,147,254, 40, 68, 66, 55, + 24,143, 66, 76,123, 14,245,253,125,147,109, 59, 93,163, 43, 94,204,191, 99,141,226,118, 97,233,165,179,225, 29, 38,212,243,229, +109,244, 85,119,220,170, 25, 90, 11,154,178, 71,211, 70, 87,219, 66,112, 88, 91,159,138,250, 29, 91, 91,163,152, 79, 14, 90, 95, + 67, 12,225, 54,109, 40,132, 98, 70, 13, 79,188,150,178,117,181,103,132, 84, 11,211, 52,123, 23, 26, 64, 22,217,152,239, 35, 25, +225,178, 88,239, 98,187,189, 32,136,109, 81, 50,151,177,170, 23,249,114, 50, 28, 57,118, 70,133, 13,107,215, 20, 35,242, 50,116, +187, 35, 17, 80,251,103,170,238,169,239, 19,177,141,170, 22,211,201, 89,132, 73,149,220, 29, 75,235, 66, 41, 43,143, 83,246, 64, + 33, 77,155, 48, 17,221,179, 70, 69, 98,234, 17,171,146, 20,130,183,165, 53, 78,203, 25, 13,203, 97, 75,142, 76,255, 88,186,172, +202,142,243,147,135, 0, 30,217, 14, 9, 61, 21,110, 43,200, 41,111, 68, 77,215,175, 57, 79, 69,165, 33, 41, 15,127,198,175,121, + 11,143,188,196,122,101, 19, 30,251,206,218,127, 95, 88,190,115,146, 94,196, 7,191, 92, 87, 21,142, 24,190, 30,152, 16, 70,122, +177,221,155,238,169, 52,122,153,166,163,151,244, 48,185,176, 53, 92,142, 91,236, 65, 84, 94, 15,150,215,126,160, 48,115,163,125, + 50, 52, 77,152,212,232,110,186,186,216, 80,107,104, 91,209,150, 72,229, 68, 62,223,146,174, 95,113, 59, 79, 4,206, 52,204, 85, +218,205, 48, 10,218,140,165, 24, 42, 43, 55, 52,116,242,113, 72, 46,133, 66,245, 29,162, 85, 68,252,193,178,152,144, 84, 40, 84, +166,151, 11,118,154,125,156,248, 43, 11,246,249, 59,248,204, 4, 95, 58, 34,207, 3, 66,160,201, 17,141,186,147,179,236,129,208, +133, 14,153, 8,167, 67,233,227,204,228, 76,215,249,197, 61,124, 27,242, 98,232, 1,223,175,223,100,228,139, 87,164,143, 86,210, +237,202,213,234,194,154, 83, 20,102,139,170, 58, 69,231, 94,213, 17,231,171,236, 69,174,119, 24,107, 53,230, 0,162,228,201,255, + 33,187, 77,141,219,234, 2,178,115,134,250, 2,202,123, 48,127, 30,121,243, 27, 48,205,158,212,114,173,164,155,153, 41, 47,208, +224,145, 54, 78, 83,140, 10,207, 70, 75, 59,225,169,169,167,169,165,216, 97,206, 73,184, 50, 72,179,122,151,126, 61,249,232,253, +174, 96, 75, 88, 6,106,165,174,230,123, 61, 17,142,201,184,169,112,245, 27, 43,215,255,214,247, 34, 63,245,135,160,254, 93,248, +165,239,176,252,103,223,102,249,158,196,162,176,174,238,147, 79, 41, 20,173,253, 3, 63,168,135,208,144, 97,253,154,255,243, 94, +197, 14,126, 83,148,210, 40,230, 55,125,138,148, 45, 11,237,129,180, 16, 29, 70,173,213, 14, 0,103,183,118,164, 9,210,226,221, +122, 45,126, 17, 79, 73,252, 51,142,162, 30,231, 91,159,148, 76, 61, 20, 41,238,185,158, 66,146, 35,189,239,190, 33,209, 36,200, + 33, 78,104,247,133,214,247,230,243, 68,187,186, 70,152,253,128,107, 32,101,161, 74,133, 86, 60, 92, 34,207, 80,205,173, 55,161, + 83,217,227, 33,149,151,167,198,139,175,159, 41,171,145,115,127, 16,245,123,175,109,185, 1,169, 99, 69,101, 55,151, 98,227,248, + 56, 96, 53,109,223, 53,118, 85,187, 53,118,165,182,238, 34,192,109,108,169,196,129, 59,236,164,205, 11,167, 2, 55, 98,204, 41, +108,178, 81, 80,196, 60,141,108,238,252,252,120,170, 46,209,121, 37, 13, 81,108, 56, 64,102,220, 50,121, 37,198,141, 65,214, 70, + 50, 15, 28,138,109, 89, 60, 23,124,152,115, 14, 54,184, 19,121, 53,148,213,221,183,174, 91, 23, 75,216,169, 82,232,130,146, 40, +215,129, 45,182, 45,122, 90, 6, 94,157, 11,165, 22, 51,164,214, 16, 11,123, 33,209, 13,124,101,219,107,233, 98,186, 66,172,238, + 34,205,178, 62,200,133, 87,131, 41, 5, 25, 48,246,253,165,249,207,152,187,176,170, 85,178,121, 76,117, 63, 20, 16,116, 53,213, +208, 22, 89,123,144,189,185, 79, 5,182, 67,224, 69,124,237,174, 81,223,145,166, 18, 62,243,113, 29, 40,157,155, 18, 94,255,189, + 32, 84,187,204, 87,235, 5, 49,117,141, 85,242,155,171, 95, 82,125,197,210, 35,193, 15, 41,115, 61, 31,152,166,137, 69,132,181, + 84, 82, 51,174,231,153, 73,117, 32,245,133,117, 46,234,193,214,188,118, 33, 95,252,251,100, 80, 83, 98,137,157,186,104, 66,163, + 8,167,160,196,245, 28,143,113,207,190, 43,229,189,187, 74,219, 97, 45,242,220,219, 30,236,226, 3,183, 70,211,208,141,116,209, +185, 78,238,226,194,168, 45,212,199,107, 25,178,212,195,198,217,239, 75, 42, 86,195, 21, 54,101,242,116,240,162, 46,221, 99, 25, + 93,250, 88, 84,115,156, 3,251,169, 96,227,229,110,233, 51, 67,118,174, 61, 0,250,199,131,163,143,242,253,130,244, 11,127, 31, + 89,200,198,148, 47, 33,154,146,160,206, 73, 31,247, 7,227, 84,106, 65,114, 70,167,201, 71,167, 33, 96,240,177,125, 35,203,180, + 37, 89,229,186,144,150, 19, 58, 77, 33,250,240,130,190,134,247, 55, 77, 71, 82,169,148,213, 56, 47,149, 99,134,156, 39,214,101, +197, 20,180, 86, 39,204,217, 46, 5,170,166, 20,171,126, 48,123,185, 96,167,234, 47,248,195,130,188, 91,224,179, 71,248,129, 43, +244,155, 39,236,219,133,118,181,146,238, 61,220, 99, 29, 68, 37,109, 96, 70,111,105,193, 67,144, 70, 1,172, 68, 26,215,189,113, +144,123,184,111,228,217,208,171, 87,225, 21,133,215, 51,250,197, 35,233,101,161, 45,149,235,211, 26,116,171, 62,234,222, 39, 41, + 83,160, 93, 79, 65,249,202,189,195,244,160, 58,146,121, 50,216,156,118, 50,154,157, 27,246,172, 33,183, 6,207, 43, 60,186, 7, +249, 22,200, 91,240,228,245, 8, 66, 89,163,147, 20,178,206,232, 79, 28,121,242,141, 59,206, 31, 22, 22, 51, 7,158,196,107,104, +178,239,232,102, 53, 30,101,229, 38,195,181, 24,249,241,132,190, 53,123,165,127, 81,220,227, 31, 48,161, 13, 35, 43,238,150, 56, + 34,220,124, 99,229,234,159,252, 20,250,167,254, 69,168, 95,129,167,191,193,250,175,125,149,245,181,198,250, 88, 40, 75,140, 89, +213, 34,159, 28,242, 44,232, 49, 35,175, 39,143,185, 77, 25,234,219,216,203, 2,183,130, 61, 50,135,251,100,183,202,117,228,173, +245,135, 11, 46, 96,156,122,104, 81,236, 24, 58,201,184,143,157, 36, 41, 51, 70,142,208,140,102, 30,216,162,215, 26,137,107, 70, +214,240,143, 7,171, 65, 82,140,190, 38,233,150,129, 56,208,164, 93,169, 98, 65,144, 58,227, 91,229, 99,114, 61,246, 60,251, 53, + 88, 22,228,182,248,228,100, 58, 96,156,225,254, 76, 59, 36, 40, 46, 18,213,161, 19, 18,141, 71,238, 82,188,152,171,112,152, 92, +136,216, 12,114,147,144,234, 4, 9, 43, 86, 60,151, 15, 95,183,224,136, 64,233,194, 67,149,205,122,227,173,243, 8, 81,209, 45, +106,150, 80,206,203, 64, 50,171,190,163,218, 82,186,174, 98, 61,116, 29, 98,189,206,166, 80,243, 85,207, 78,147,219,131, 89, 52, +108,115, 41, 32, 87,130,241, 72,140,163,134,157, 13,120, 36,198, 85,242,209,252, 83,217, 61,237,247, 1,156,186, 53, 47,236,247, +225, 99,239,212,198, 98, 18, 49,165, 18, 65, 41,225,194,136,231, 91,147, 68, 82,229, 17,112, 85,205, 25,236,209,173,237,132,224, + 40,120, 98, 44,120,104,136, 84, 65,226, 73,219, 6,149,187,197,201,167, 99,181,183, 92,141, 78, 66, 27, 60,222,143, 82,226,234, +112,160, 73,226,108,141,218, 92,135, 82,204,208,214,200,234,150,224, 28, 66,197,132,175, 19,155,213,173, 67, 77,193, 23,175,173, +109,220,117, 25,236,102, 15, 49,176,250,192,189,173, 97,173,234,148, 61, 25,208,182, 91,212,234, 32,163,223,119,242,151, 60,127, + 17,225,144,156,213,222, 15, 7,205,204, 41,125,182,103, 6,136,193,181, 40,143,230, 3,215,199,153, 98,110, 11, 43,117,197,172, +113, 94,171,167,204,137, 79,129,114, 82, 74,206,254, 51,154, 81,117,159, 73,244,235,184,198,122, 55,139,135,191,156,154, 91,203, +146, 42,150,220,121, 69, 78, 46,196,142, 52,209,206, 16,222,210,215,182, 32, 50,221, 14,161, 61,144,193,194,217,225,159, 19, 33, +248,219,237,141, 93, 4, 87,171,255, 76,119, 65, 52,184, 8,180, 29,184, 39,157,114,152,103,242, 97,118, 74,160, 88, 88, 87,122, +250,146, 74,248, 95,141, 36,251,120, 96,191,184, 2,201, 23, 71, 53, 13,244,100,139,236,114,122,135, 30,194,168,141,248,164, 67, + 18,141,236,169, 64,187, 27,113, 23,120, 73, 87,253,234,238, 99, 86, 12, 41, 11, 36, 69, 15, 71, 36,103, 39,206,181,182,137,175, + 84,253, 20, 53,165,196,148, 5,105,103,100,173, 52,157, 41,129,237,236, 76,102, 13, 63, 87,170, 43,181, 44,156, 16,174,167, 22, +239,185,251, 4,125,132,216,237, 62,221, 67, 89, 68,169,119, 13,121, 94, 92,149,254,116, 69,190,181,192, 77, 48,203,191,255, 26, +121,122,130, 37, 35,199, 66, 90, 27, 97,123,220,160, 16, 18,113,134,102,251,158,189,217, 16, 9, 41,134, 85,113,255,239,217,200, + 47, 78,208, 26,249, 58,161, 63,250,200,237, 87,111, 29,200, 31,172,216,217, 35, 67,231,165, 58, 73,106,208, 70, 72, 4,136, 28, + 38, 31, 91,175,129,146, 76,120,129,186, 74,177, 3,236, 93,123, 63,168, 95,137, 63,245,238, 11,188,200,216,203,132, 76,207,189, + 21,205,175,130,156, 65,110,247,157,204,191,252, 26,250,227,143, 56,252, 59,223, 68,191,245,130, 44, 70,202,205, 87, 32, 98, 17, +239, 27,254,226, 4,215,185,241, 24, 99, 62, 78,164,207,207,240,218,236, 77,221, 51,224,189,234,106,163,190, 14,154,225,170,130, +170, 49,127,171, 49,191,117,133,254,231,127, 20,236, 67, 40, 95,165,254,153, 95,163,220,159, 56,125,175,112, 90, 59, 10,221, 59, +144,131,250,168, 54, 29, 18,250, 74, 70,222,200, 94,212,173,193,253, 61, 60, 51,120,182,208,158, 47,212,151,197, 21,237,177,255, +206,225, 97,238,158,230,156,136,247,165,200, 33,102,165,159,196,186,188,241, 56,225,180, 24,118, 10,171,207,148,134,104,225,160, +100,217,126, 51,115,136, 49,252, 41,204,248,115, 66, 87,131,165, 33, 57,193,245,140,149,105,131,247, 52,245, 17, 29,107,129,219, + 6,215,205, 11,181,202,255, 75,215,187,198,218,150,101,247, 93,191, 49,230, 92,107,239,125,206,185,239,186,245,174,174,174,114, + 87,187, 95,238,216,198,118, 28, 36, 68, 94, 8, 41, 33, 65, 68, 40, 49, 8,137, 15, 17,144, 8,129,136,248, 18, 66, 4,124, 32, + 10,124,228, 67,132, 0, 5, 41, 34, 18,137, 18, 18, 57, 74, 8, 81,162, 32,199,177, 99, 76,251, 17,219,221,233,118, 63,171,186, +222,117,235,190,206, 99,239,189,214,154,115,240, 97,140,185,214, 58,213,198, 82,169,219,213,247,158,199,222,123,205, 57, 30,255, +255,239,143,217,132, 92, 29, 66,104,174,238,161, 47, 70, 74,134, 78, 26,100,171,224, 11, 4,154,204, 45,116,186, 36,194,133,237, +180,145,227, 28,227,108, 51, 19, 93,215, 99,223, 48, 36,123, 70, 68, 93, 44, 98, 81, 16,215, 54, 41,105,207,127,112,251,179,250, +207,165,113, 96,167,168,228, 45, 70,224,187, 16,176, 53, 36,114, 31, 45,253, 28,247,218, 20,228,213, 24,196,187,251,109, 53, 54, + 24,155,152,225,102, 51,127, 47,155, 67,193, 55, 28,108,146,143,201,235,136,175,106, 90,202, 92,187,200, 87,148,179, 41, 38, 19, + 37,136,110, 53,110, 39, 93,197,225, 74,179,147, 69,150,249,221, 84,216, 35, 12,243, 9,167,179,127,123, 46, 98, 48,174,106, 97, + 50,119,113,136, 38,191,116,155,128,173,117,210,234, 40,235, 36, 53, 16,178,161,188,143,247,225, 68,133, 27,253, 22, 82,102, 31, + 10,247,100, 70,175, 9, 83,165,212, 8,171,210, 37, 58,203,163, 3, 92, 40,214, 4,120, 77,185,174,162,113, 54,213, 89, 39,114, +141, 24,247,137,139,220, 86, 24,216, 18,107, 27,189, 6,230, 89,121,188,171,204,208, 33, 93,197,250,182,198,177, 71, 56, 73,137, + 77,191,225, 40,194, 52, 77,115,119, 95,205,102, 17,117, 1, 78, 68,184,185,221,176,219,245, 20,131,171, 50,113,113, 56, 80,198, + 66,210,134, 28,110, 59,231, 74, 53,245, 53, 13,194,104, 21, 43, 50,147, 78, 97,137, 52,157, 67, 90, 36, 99,253,134, 50,142, 62, + 49,233, 58, 76,149,161, 20,108, 58,206,238,134,182, 14,152, 87,198, 49,189,105, 59,255,164,134,106,142,149,156,107,138,106,153, +144, 41,244, 69,184,189,206,112,215, 86,109,191,115, 78,212,113,188,238,156, 90, 79,211, 53,185, 29,188,235,125,239,110,134, 78, + 35,185,209,110,146, 88,252, 48, 13,251,186,188, 41,105, 22,207,173, 2, 88,108, 81,175, 54,118,132, 10,171,172,216, 54,198, 95, +109, 90,196,171,108, 23, 4,233,108, 99, 19,107,187,188, 37, 36, 97,238, 98,194,139,167, 81,226,217,112,240,175,189, 57,129,148, + 17, 70,143,112, 77, 41,236, 41, 70,103, 5,173, 6, 82,220,246, 33, 27,175, 74,169,241,245, 12,246, 7,216, 95,160, 86, 48, 77, + 28, 20,100,156, 56,209, 26,118, 17, 39, 48,165,198,171,196,211,142, 42, 49,206, 54, 72, 79,134, 24,147, 42,245, 27, 71,244,165, +141, 43,213, 63,181, 65,223,222, 98, 99,161,142, 19,249, 48,146, 71, 99,140,162,168,169,207,215,226,145, 89,197, 26, 7, 76,198, +119,144,213,252, 98,207, 90,217, 61, 60,194,215, 47,232,118,130,124,118, 7, 39, 9,121,109, 67, 26, 38,236, 56,209, 31, 11, 35, + 49,102, 15, 98,157,197,195,211,169,199, 52, 86, 60, 16,166,226,108,155, 77,110, 41,110,174, 36,146,236,163,127,233,241,194, 33, +197, 50,113, 12,227,116,154, 32,221,129,238, 4,248,216, 47,127,128, 95, 61,192, 47, 92,113,124,115,160,244,126, 66,246,147,143, +242,187,184,212, 53,116, 19,189,192, 89,129, 93,175,164,155, 29,122,167, 71, 78, 51,100,144, 27, 9,249,209, 45,250, 0,236,109, +239, 76, 21, 79, 53,211,143, 42,221,101,162,251,235, 63, 1,105, 15,229,155,212,255,249,251, 28,126,233, 49, 23,175, 43, 23, 71, + 31,167,150, 54,161,104,187,251, 4,218,169, 83,240,158,237,252, 84,183, 61,118, 81,224,195, 3,245,205, 3,211, 59,123,142, 79, + 39,246,189, 95, 66,225, 6, 35,169,197, 78, 47,190,102,167,232,205,206, 33, 49,182, 36,136, 72, 9, 91,209,228,221,187, 24, 88, +175,115, 39, 47,185,241,130, 99, 15,110,235,232, 92, 9, 79,120,109,202, 32,215,139,140,130,222,190, 9, 63,114, 11, 6,165,126, +235, 10, 27, 14, 78, 80,196,224,120, 5,135, 1,203,201,139,220,228, 11,111,187, 26, 40, 67,133,109,239,232,200, 18, 62, 58,131, +100, 19,211,116,221,127,155,128,105,138, 52,198,134,100,166, 6, 79,123, 57,112,167,249, 32, 95,248,218, 9, 15,238,105,235, 54, + 31, 41,250,225, 45, 17, 67,170,248, 33,183, 22,221,106,251,194,169, 93,226,204, 77, 67, 75, 60,219, 38,143,178, 77, 10,155,176, +137,165, 86, 8,151, 74,103,117,158, 62, 72,117,161,220,214, 99, 3,226,185,181,217,249,215,244, 13, 38, 53,104,150,139,157,237, + 18,175,165, 26,188,133, 85, 62, 56,234,249, 16,230,179, 15,199,235,134,160,175, 29,178, 85,220,254,155, 76, 24,129, 93, 82,238, + 3, 15, 98,234,209, 37, 15,185, 26,163,123,254,100,146,217,100,149, 99,153,232, 85, 81, 73,116, 98,177,178, 75, 76,181,206,235, +201,169,250,153, 80, 26,247, 82,124, 34,209, 73, 98, 82,229,106, 26, 25,166,137,222,224,164,235,208,156, 29, 37,145, 36,194,184, +116,241,130,199, 51,178,209, 68, 73,142, 10, 46,120, 1,208, 70,176,134,206,226,214,235, 29, 98,109, 50,102,111,220, 86,184,227, + 58, 47,102,214,177,202,205, 41, 16,103,122,156, 73,149,235,107,215,132,115,218,181,239,184, 52,152,166, 17,177, 58,143,248, 83, + 43,136,128, 83, 21,238,108, 54,156,156,156,112,196,216, 15, 19,231,227,145, 50,142, 97,135, 91,241, 87, 26, 15,164,184,214, 67, + 83,132,126,155,145, 34, 12, 5, 19,114, 78, 46,198,171,222,201,214,184,179,186,156,200, 57,163, 57,177,159, 38,234,126,152,195, +142, 70, 98, 12, 82, 0, 0, 32, 0, 73, 68, 65, 84,100, 61,177,142,238, 60,229, 20,223, 35, 68,109,154,130, 0, 89,252, 66, 87, +161,142, 81,148,118,201, 87, 33, 17, 6,227, 90, 52,241,206, 39,172,214, 51,223, 97, 94,109, 11,218,117,104,234,144,228, 36, 61, +139, 17,143,249, 61, 26,129, 12,113,161,187,197,173,141, 82,108,222,165,251, 47,111,115, 50,206,236,213, 8,218, 92, 90,177,198, +175,133, 74,173,197,117,171,218,205,137, 89, 30,163,144, 84,220,163, 45,159, 64,206,174,162, 25,197, 19, 38,252,191,143, 7,191, +156,251, 29, 41,119,179,192, 45,165, 52, 71,238,121, 84, 93, 98, 40, 19,133, 35,208, 35,177,208,116, 64,254, 68, 46,197, 83,209, +106, 97,154, 38, 46,199,209,173, 75, 86,232,196, 40,105,237,173,176, 25, 5, 89, 13,166, 82,232,175, 10,182, 29,253, 34,255,184, + 98,223, 72,200, 23,207,252, 20,121,227, 12,189, 24,168,135, 14,221, 78, 1, 62,241,241,102,147, 20,213,232,210,235, 10, 29,219, +130, 23,166,128, 79,148,160, 17, 13,225,191,188,245,209, 21,124, 85,232, 78, 4,249,212, 9, 60,211,161,251, 13,250,100,162,187, + 42,236,246, 19, 99,136,230,202,234, 61, 81,241,105, 65, 19,109,137,192, 73,246,142,170,101,147,159,116,208, 63,151, 73,187, 4, +123,195,158, 76, 88, 82,100,175,112, 72, 80, 50,108,134, 88,153,220, 3,253, 62,236, 70,143,140,253,213,115,234,229,196,208, 85, +232, 96,115,244, 2, 33,137,103,133,111,213, 65, 33, 93,251,172,117, 74,186,223,147, 94,219, 33, 63,116,226,254,244,139, 10,187, +138,222,239, 96, 55, 81,190,191, 28,190,250,212,208,183, 10,253, 95,124, 13, 94,126, 17,134,223,134,175,124,204,241, 47,189,199, +229, 11,194, 83,131, 97, 50,134, 41, 54,124,137,217,146,101,120,112,137,220,202,112,214, 33,155,228,183,255,177,194,199, 3,245, +225,192,244,112,100,175,206, 21, 47,171, 24,211, 28,192,152, 90,133,205, 70, 72, 55,178,239,223, 6,107, 33,210,126,116,180,185, +105,245, 86,207,250,152, 67,237,146, 87,104,166,158,112,150, 13,180, 32, 99,228,131,155, 3,101,100, 20,164, 38,140, 66,213, 4, +121,139,228, 45,242,133,219,240,233, 29,124,237, 17,114, 12,242,119, 49, 24,143,179, 87, 78,108, 5, 81,221, 79,110,253,236, 58, +167, 87,237, 27,133,202,144,105,154, 45,140,204,211, 52,127,230, 58, 13, 57,148, 22,116,114,177, 85,242,164, 24,223, 97,202, 90, +229, 28,227,230, 16,177, 57,110, 88, 22, 16, 77,219,237,199, 65,221, 5,230, 54,205,200,100,175,152, 70,241,237,180, 0, 82,204, + 99,109, 81,122, 42,167,169,210,155,119, 57, 89,133,190,198,184, 51,198,201,106,190, 71,239,108, 97, 34, 52,199, 9, 26,137,120, +106, 43, 86,108, 3, 37, 41, 83,177, 25,161, 60, 69,177, 50,196, 20,111,190,104, 37,113, 72,137,130,172,228,164, 50, 59,128,150, +151,161,169,194, 23, 38,185,161,220,204,194,157, 82,157,172, 40,145,135,209, 32, 56,226,239,117,155,110,182,250,106, 50,159, 86, +172, 87,154, 35, 30,229,123, 52,207, 80, 47, 33, 22,172, 43,127,122, 1,134, 90,217, 79, 19,157, 21, 54,185, 39,165,124,221, 78, + 53,131,197, 90,231, 93, 99, 21, 36,228,148,221,243, 95, 67, 46, 87, 22,176, 87, 35,141, 54, 16,139,217,114, 46,175, 19,211,248, + 4,179,192, 86, 75,121,227, 19, 57,186,171,228,187,101,223,238,121,231,169,203,238,131, 95,173, 87, 45,206,221,214,160,108, 85, +185,209,247,244,253,142,139,105,226,106,154,152,202,228,116,183,150,146,214,242,215, 87,191,179,198, 24,159, 82,189,240, 22, 13, +202,160,206,113,164, 54, 67,149,108,229, 76,114, 96,205, 4,179,230, 67, 86, 48, 47,211,180,248,243,163,186, 45,181,132, 30, 34, + 45,235,138, 0,218,248, 42, 73,208,212,161, 93,231,133,218, 52,185, 69, 47,231,248,125,149, 58,121, 46, 59,215, 0, 84,113,161, +119,157,107, 13, 34,166,181, 80,103,222, 74,150,192, 87, 58,136, 36,199, 51, 16,192,144,160, 57,181,156, 88, 89, 91, 22,164,117, +210,139,162,213,154, 78, 82,100,137,212, 91,147,122,140, 25,153,233, 85,185, 95,228,206, 24,110,227,169, 37,115,220, 43,240, 69, +149,223, 10, 16, 49, 96, 60,186,122,180,219, 32,217,129, 50, 93, 74, 33,126, 80, 38,212,195, 7, 74,129,114, 9,226, 57,185,146, +178,123,177, 49, 87,130, 6,129,173,214,137, 90, 43,135,201, 15,146, 19,117,161, 84,153,194, 75, 58,115,152,226,124, 16,168,211, +132,158, 39,108,116, 89,182,253, 11, 69, 62,123,234,106,181,187, 9,121,225, 4,189, 26,169,251,145,124, 53,145,165, 48,182,137, + 67,120,114,219,254,219,194,233,178,142, 34,156, 9, 82, 85,226,242, 53,108,130, 59,239, 94,162, 95, 85,242, 89,130,231, 54,200, +243, 27,210,147,138, 93, 76,228,177,176, 25, 11, 99, 8, 52, 90, 70,114,139,222,148,128,151,109, 49,118, 59, 65,122, 33, 63,246, +110,160, 59, 83,244, 70, 66, 78, 19, 92,196,110,247,178,192, 69,129,167, 19,118, 43, 33,155, 61,228,167,192, 13,255, 66,201, 96, +107,112, 35,118, 67,131,119, 76, 57,138,177, 28,126,245, 19, 96,115,166,200,221,140,156, 40, 88, 38,223,233,209, 31, 62,129,231, + 59,159,109, 94, 84,236,219, 71,234,135, 71,170, 76, 62,134,142, 0, 21,222, 44,244,191,247, 30,250,199,222,128,195,155,240,232, +192,240,103,222, 97,184, 47,140,119, 18,245,202, 69,143,174, 19,104,192,155, 80,218, 91, 66,183, 29,242, 92, 7, 55, 60, 97,201, + 46, 39, 24, 10,118, 94,195, 15,236,227, 17, 53, 15,186,105, 62,254, 17, 97,168,222, 1,230,248, 25, 37,132, 17, 94,176, 46,237, +174,133,220, 94,178, 46, 97, 14,130,143, 67,170, 11, 39, 92,121,175, 81,164, 86, 82,205,232,233, 22,254,216, 11,254, 26,252,181, + 39, 72, 45,216,118, 3,247, 51,182,221,195,215,174,176, 55, 71,108,179, 65,108, 32, 93, 14, 62,109, 32,251,154,104,147,225, 94, +239, 54, 68, 5,170,162, 71, 79, 94,180,134,163,148, 58, 91, 28,115,245, 75,168,117, 76, 62,154,140, 67,170,113,133, 67,189,222, +114,213,211, 42, 6, 85, 34,202, 19,107, 44, 31,187,198,165,104,149,112,167,174,153,192, 92,132, 54,177, 32,217,124, 12, 95, 60, + 57,204,140, 94,161,163,178,203,198,137, 25,189, 88,232,100, 42,105,178, 57, 18,182,171,204,154, 4, 77,126,137,203,182,141,249, +252, 61, 52,109, 56,218,216, 21, 92, 78,112, 48,198,193, 24,173, 54, 66, 39, 67,248,212, 75, 60,103, 87, 6, 7, 83,174, 52, 81, + 77,200,237, 54, 88, 97, 79,155,248,169,185,127,170,197, 68, 35,132,114,168,114,196,232, 49,238,102,227,114,132, 75, 81,178, 86, +166,178,116, 90,110,255,108, 81,164,110, 87,115, 81, 86, 9,237,146,206,112,152,169,165,167,205,177,157, 45,242,211, 47,222, 81, +148, 82, 38,183,239,229,206, 99, 65,215,128, 48, 91, 58,234, 34, 11,156,162, 70,115,213,139, 96, 17,100, 66, 89,244, 85,173, 67, + 87,105,132,137, 5, 94, 51,195,195, 68, 87,138,246,197,143,110, 43,118,189,179, 11,236,218,212,246,147,220,246,134, 85,157,170, +133,240,122,217,119,183,180,201, 12,108, 83,162,203,153,162,153,115, 43,236,199, 1,105,226,202,217, 42,108,139, 18,223, 22, 4, +250,218,251,222, 52, 26,196, 5, 43,171,253,125,219,217,183, 66,189,121,196,169, 49,117,233,250, 85,120,139,251,230,153, 3, 86, +154,138, 95,230,132, 57, 23,171,118, 94, 96,148,202, 38, 37, 58,221,206,130,200,105, 28, 40,165,248,179, 92, 11,168,250,125, 84, +166,216,213,199, 94, 62,185, 18,223,125,227,205, 38, 61, 49,141, 35,101,114, 81,172,133,181,114,166, 33,229, 80, 69,206, 56,213, +230,121, 14,165,110, 83,232,206,113,111, 49, 64,153,247, 42, 81,249,172, 7, 76,178,234,216,219,161,226, 74,209, 22,137, 56,167, +179,207,204,248,197,202,182, 88, 30, 48,255, 59,218, 2,235,235,228,221,138,129,110,149,156, 55,164,228, 7,246, 84, 43,227, 56, + 96,157, 7,223,215,241,136,217, 49,126,164, 62, 58, 27,255, 32,187, 98,126, 36, 89, 13, 5,100, 88, 96,170,209,213, 66,166, 50, +181,204,160,216,145,212, 16,205,236,199,194,166,236, 73, 99,134, 83,168,211, 17,249,246, 21,242,229, 19,120,111,132,151, 54,232, +199, 61,118,121, 68,247,137,124,152, 72,161,130,100, 78,253, 89,108, 42,165, 46,108,225,107, 49, 58,141,126, 36,158, 46,149, 71, + 35,189,123,133,124, 51,147, 78, 4, 78, 59,244, 83, 27,242,121,161,150,194,201, 71,133,146,124, 95,105,173, 0, 97, 41,168, 54, +163,113,114, 91, 73, 47,119,176,201,232,217, 72,125, 80,208, 93,242, 67, 82, 4,185, 25,149,107, 50,120, 92,145,179, 2,119,138, + 19, 54, 78, 30, 67,221,185,120,107, 10,185,240,165,161, 7, 71, 24, 38,169,140, 42, 36, 42, 39, 25, 78,179,120,177,112,183, 39, + 61,223, 33,197,105, 7,114,175,131, 27, 25,134,248, 4, 13, 30,179,106, 67,161,166,226,118,207, 78,168,111, 87,186,215,110,208, +253,165,207,195,241, 28, 46, 6,234,127,248, 38,165, 76,112,187, 35, 87, 69, 58, 63,168,164, 84,180,214,153,148,183,153,140,116, + 75,209, 23, 58,120,182,119, 66, 95,173,126,154, 31, 10,236,253,123, 73, 31, 58, 53,112,236,108, 13,113,147,152,211,208,162, 72, +234, 70,159, 44,117, 40,253,105,162, 30, 42,146,234,117, 74, 86,246,238, 55, 50, 61,253, 54,220,184,216, 65,102,242, 12, 72,238, +161,219,193,139,183,224,245, 23,224,159, 63, 66,166,228, 10,248,103, 43,246,170, 97, 39,138,188,237,251, 53, 59, 76,144,139,175, + 60,162,210, 21, 83,172, 83, 56, 53,184,161,112,186,243, 61,252,211, 3,105, 16,236, 32, 14,223, 48,168,154, 72,181,132, 47,220, +174, 81, 31,101,197, 19,104, 71,159,202,146,106,214,148,224, 22,241,157,115, 50,151, 44, 97, 46,237, 83,157,212, 45, 99,205,250, +213,148,218,199,226, 57, 7, 41, 45, 7,110,159, 96, 23,174,134,173,193,137, 86,250, 90,232,173,178,105,221,109, 76, 20,146,170, + 11, 14,183,201,157, 0,219, 16, 27,206, 4, 35,159, 81,203,177, 98, 79, 39,120, 50, 49, 94, 85,142, 67,229, 88,224, 74, 96,180, + 37,139,189, 21,211,163,193, 30,229, 42,176,169, 73,213, 83, 45,219,142,117,150,123, 89,136,192,154, 45,207, 60,101, 77,117, 53, +176, 55,143, 16, 16,225,166, 8,119,181, 50, 33, 84, 81, 58,113,212,113,138,253,249, 36, 30, 34,229,144,150,130, 21,167,185,169, + 36, 84,109, 41, 78, 85,209, 90,231,233,145,138,239,132,107, 49,122, 21,186,228, 23,107,142,152, 81, 85,117,133,124,248,224,137, + 51, 83, 26,146,148, 21,136,170, 17,228,204, 47,253,172,194, 72,195, 34, 54, 94,191,175, 63, 77,212,145,215, 86,127, 64, 74,194, +117,211,219,181, 0,151,181,224,100, 33,136, 6,124, 74,163, 96,152, 39,150,203,184,191,157,133,105, 30,205, 43,170,221,236,245, + 31,135, 8, 55,177, 69,127,211,172,105,242,131,230,179,101,119,222,194,127, 44,144,171, 45,241,115,149,133, 94,106,101, 42,197, + 31,225, 6,146,105, 59,253,190, 99, 76,202,116, 28,194,206,162, 75, 60, 50, 66,210, 24,191,207,150,209, 64,218,154, 83, 30,114, +151, 57,212,202,120,181,103, 26, 71,191, 7,106,197,198, 33,166,193, 29,101, 26, 34, 90, 85, 80,241,221,185, 38,127,111,253, 18, + 77,212, 50, 57,199,190, 70,151, 94,252,147,153, 9,155, 73, 10,149,184,136, 43,127,173,145,191, 84, 2,189, 26,151,130,206,193, +216,177,167,105,241,172,109, 76, 35,243, 88,121,237, 57, 71,150, 74,183,141,161,116,133, 14,154,185,207, 51,140, 98,153,240,203, +106,151,183,142, 90,148, 50,130, 36,180, 78,174,168,239,182, 76,213,152, 38,183, 2,204,222,222, 90, 60, 98, 85, 20,155, 92,241, + 36,145,189,158, 39,131, 50, 33, 86, 73, 41,194, 1,202,196, 97,172, 94,120, 40,228, 18,225,133, 77, 19,148, 18,135, 82, 41,166, +212,108,236, 14,131,167, 21,221, 76,212,175, 94,145,222,216,121,107,122, 41,200, 43, 59,228, 98, 64, 46, 71,186, 99,242, 7, 91, +130,240, 22,192,142,186, 60, 67,115, 23, 33, 1, 25,145,186,160, 37, 90, 19,116,149,133,221,213,132,126,231, 10, 57, 83,244,135, + 21,110,103,228,141, 45,121, 63, 98,151,133,211,203, 17,203, 45,213, 43,124,234,201, 19,164, 54, 9,244,153, 14,189,215,185,215, +103,183, 65,243,136, 13,206,112,145,157, 34,219,132, 29, 98,199,123,172,240,164,132,167,100, 3,117,128,242,158,127,160,115,246, +101,228,105, 70,255,232, 13,182,191,126,201,254, 55, 39, 14, 81,180,157,221, 16,210,203, 61,122,163, 35,221,238,144,187, 91,111, +137, 30, 84,164,207, 1,106,136,209,223,227, 56,140,183,113,201,236, 5,222,129, 60,109,232,255,242,103,137,136, 37,234,127,249, + 38,211,119,174,232, 62,123, 66,255,217,158,124, 20,158,126,247, 10,100,244, 11, 55,246,158, 59,131,126,147, 72,119, 55,232,203, + 61,220,237, 97, 11,118, 89,124, 63,241,120,164, 62, 25,176, 99,133,228,233, 98, 0,150,161,143,145,171, 69, 17, 46, 57,176,161, + 8,118, 5,247,222,232,217,124, 97,199,254,231,159, 80,167, 64,228,138, 63, 43,154, 19,100,245,142, 61,133,176,235,170,169,177, +212,211,224,250,140,229, 30,235, 51,246,209,132,252,247,223,130,243, 17,187,161,216,231,123,184,215,193,243, 59,120,167, 82, 47, + 46,224,252,232,109,180,134,242,177,165,170, 5, 85,197,206,179,155,254,115,245, 64,163,222,176,152, 6,200, 20,203, 98,117,165, +151,172, 58, 45,141,164, 53,109, 34,190, 40,100,218,122, 72, 89, 58,217, 18, 49,158, 35,194,168,161,208,229,122, 28,172, 70,151, +172,226, 23,250,184, 2, 91,101, 93,254, 96, 39,198, 38, 9,155,208, 62,156, 88,229, 84, 10, 39,165,210, 71, 66,216, 76,224,234, + 19,178, 75, 62,225,185,145,144, 27,177,210,216, 5,252,189, 55,108, 50,120,107,194,222, 29,168, 79, 38,134, 67,225,105, 49, 46, +204, 47,243,171,234,255, 84, 96, 23,215,180,138,112, 18, 15,245, 52, 45,250,161,106, 50,243, 52, 52,110, 11,155, 67,170, 36,138, +238,184,238,213,173, 81,173, 64,119, 21,188,139,207,182, 34,220, 87,184, 50, 99,164,250,235, 28, 13,129, 91,148,108,190,100, 85, +132, 73,112, 76,179,249,233,155,227,210, 81, 81,191,228,235,146,227,222,137, 3,107, 54, 97, 71,107,194, 38, 51,119, 36, 76,248, +160,107, 95, 10,105, 26,233,187, 46, 84,248,118, 77,212,217, 4,104,196,165,110,113,224, 78, 97,205,146,153,201, 31,246, 61,145, +134,110,153,187,241,202, 15, 78, 99,249,129,156,116,215, 95, 88,216,185, 18,171,188, 1, 91,220, 24, 51, 78,103, 21, 22,211,183, +194, 73, 96,180,137,132, 50, 74,165,150, 50,143,217,181,202,170, 63,151,235, 13,101,184,186,108, 21,243, 75, 8,149, 83,245, 34, +162,125, 30,108,165,254,207, 81, 80,185,112,145, 69,204, 29,147,156, 34, 19, 86,167, 57,132,172,169,215, 83,140,197, 91,164,146, +198,228, 36,171,159, 7, 19,194,112, 28, 92,128,215, 30,154,176,155,146,242,226,227,207,157,127,254,115, 10,248, 90, 66,179,199, +131, 79,199, 1,155, 70,127,207, 91, 80, 68,220,179,158,114, 24,135,145, 69, 58,140, 71, 58, 58,105, 74, 98, 12,175, 43,171,219, + 92,193, 53, 81, 93,243,237,198, 11, 53, 67,246, 35, 86,206,116, 5,176, 97,149, 4,183, 6,246,155,255, 12, 57,118,100,109, 60, +178,192, 8,108,222,193,164, 32, 90,165,248,185, 5,163,150, 49, 2, 69, 90, 32,125, 69,166,227, 76, 88,210, 90,150,111,222, 76, +217, 5, 7,203,120, 2, 68, 76,218,108,222,221,141, 82,103, 21, 62, 1, 32, 27,195, 83, 97,146,232,204,144, 58,209,245,160, 99, + 65,143, 19,232,145,250,115, 79,208, 63,116, 23,158, 94,193, 89,135, 62,183,193,158,140,164, 99,161,191, 58, 50,168,112,108,187, +205,182,227,250,132,143,125,102, 82,196,135,176,173, 8,179,186,170,248, 28,208, 15,247,240, 53,200, 55, 21,253,244, 9,114,191, + 35,253,240, 14,187, 42,216, 59,149,147,171, 9, 73,194, 73, 32,162,114,245, 67, 32,223, 75,190,183, 22,133,167,174,182,150,109, +116,136, 17,106, 36, 2,210,139,251,122,106,129,190,243,150,166, 4, 98,178, 14,222,161,159, 36,152, 20,126, 87, 15, 63,117, 74, +250,202,185, 71,135, 70,151, 55, 94, 26,185,130, 62,147,145,179,141,163, 73,159, 3, 78, 59, 55,127,111,212, 47,219,247, 15,158, + 15,222,131,157,155, 7, 56, 95, 26,242, 64,216,252,229,215,224,246, 22,142, 21,251,251,239, 51,252,210, 83,242,167,119,228,127, +231, 89,248, 55, 63,207,238,255,250, 22,219,111,126,207, 39, 18, 82,233, 58,255,157,183, 34,116, 55, 18,233,165, 13,188,184, 69, +110, 6,159,255,220,253,239, 60, 41,216,197,132,237,189,186, 50, 53,196,148, 62, 53, 97,186, 95,244,150,108, 86,246, 14,230, 25, +227,251,247, 6,134,119,221,144,222,249, 0, 8,233,196, 81,175,125,246,223, 83, 98, 60, 60, 40,212, 30, 54,209, 41,245, 57,212, +226,142,166,179,113,240, 23,252,133,140,125,241, 20, 94,238,225,214, 41, 60, 29,224,205, 71,240,120,239, 0,154,182,147, 55,139, +156,231,234,221,251,113,114,150,192,137,139, 41,204, 12,142,145,112, 87, 66, 45, 63, 57, 39,160, 61,116,205,102,152,231, 85, 87, +179,246, 48, 91,217, 36, 69,112, 73,105, 25,218, 50, 71,107,106,203,176, 15,241,171,204,193, 28, 1, 80, 10, 65,237,166,105,112, + 48,138, 46, 0,155, 77,130,157, 85,122, 42, 39,165,112,130,171,221, 19,226, 36,189,118,153,223,202,200,115, 25,158, 81,228, 86, +176, 88,123,223,254, 48, 26,246,208,224,205, 1,190, 53, 80, 62, 24,184, 58, 20, 30, 2, 79,170, 3, 87, 46,205, 56,196, 20,126, +108,207, 89, 82,182, 34, 76,193,165, 79,209, 29, 78,215,206,167,166, 16,111,231,154,204, 59,230, 54, 50, 47, 1, 58, 73, 22,218, + 11,149, 25, 12, 83,112,209,220,137,192, 93, 17,246, 38,179,232,109,161, 44, 74,232,150,150,166,129,152, 18,106,173,212, 44, 36, +171,228,232,146, 81, 91, 49,213,101,209, 14,181, 38,167, 77, 18, 67,200, 38,225, 24,200, 41,209,137, 50, 97,241,191,217,181, 0, + 46, 2, 62, 67,235, 68,213,139,207,162,182,226,187, 47, 9,154,105,165, 22,175,181, 46, 17, 50,171, 81,177,201,239, 20,204,210, +104,106,139,162,254, 90,216, 78,243,115,179,172, 33,179, 38, 36,137,163,130,131,148, 39, 34,140,165, 46, 23,250, 39,114,217,215, +223, 91, 90,134,192,234,207, 53, 71,189, 6,136, 72,107,197,212,139,154,186, 74,224,211,176,158,205,162,184,249,103, 12, 17,109, +151,168, 99, 13,101,241,114,169,207,150,182, 6,163,176,133, 89,128,122, 46,130, 85,135,164,213,185,120, 82,180,235,145,174,167, +212, 66,210, 76, 74, 46,128,149,118, 17,168,227,131,203,225,128, 77, 83, 36,254, 69,113,223,118,238, 34,100,139,209, 80,169, 1, +123, 41, 94, 37,117,234, 30,186,214,105,119, 73,219, 86,197,243,150,227,135,112, 16,240,212,244,114, 94, 17,181,238, 91, 29, 9, +219,120,186,106, 62,146,101,221,109,135,247,212,253,196,238,159,108,255,158, 21, 85, 46,107, 27,217,217, 50,234,176, 16, 64, 37, +165, 76, 19,101,216, 35,221, 54,118,105,163,239,213, 52,207, 98, 0,207,151, 14, 73,159,116, 80, 70,176,137, 46, 57, 40,191,148, + 33, 0, 12, 54,231, 82, 79,213,149,174,197,188, 97, 45, 53,188,221,201, 75,210, 99,245, 81, 99, 46, 21, 61,140,176,203,216,135, +123,248,104,128,151,119,240,141, 61,114,239, 4,125,118, 4, 70,186,177,208, 29, 10,189, 44, 34,157, 57,189, 96,101, 29, 97,242, +110,103,253,137,173, 97,169, 27, 90, 65, 96,194,157,119,246,200,111,248, 30, 92,158,221, 32,207,246,228,207,237, 96, 52,228,163, + 61, 93,173,206, 11, 6,236, 10,100, 43,164,103, 59,127,253,223, 45,243, 2, 95,182,138,188,164,158, 66,119,238,193, 0,114, 51, + 33,183,179, 99,182, 0,246, 96,147,249,133,165,119, 96,247,216, 97,231,207,103,248,205, 11,120,255, 67,202, 55,247, 88, 54,202, + 16, 98,164, 17,234,247, 39, 84, 38,236,108, 64,110,119,200,235, 59,248,236,206, 47,160,168,224,108,244,184, 79, 94,234,144,239, + 87,228,201, 4, 95, 55,242,127,246, 2,124,241, 25, 56, 31,176,255,247,125, 14,127,225, 29,236,126, 70,191,176,133, 63,248, 18, + 92, 12,140,255,231, 3,135,148,244, 48,142,142,144, 61, 21,232, 79, 18,122,127,135,126,106, 7,119, 59, 56,203,161, 10,244,177, +187, 61, 29,177,125, 13, 48,132, 5,170,209, 72, 49, 47, 86,133,148,205, 21,170,157, 98,147,177,153,194,223,186,119, 21,117,218, + 40,218,139, 23, 69,189,248,244,161,207, 72,151, 80, 50,169,116,158,180,119, 67, 60,119, 62,197,129, 90, 28, 17, 41,150,144,103, +182,240,194, 6,123,101, 11,247, 54,200, 78,252,178,254,214, 83,120,116,128,174, 66,111,212, 41,194,129,178, 32, 83,197,246,174, +106, 55, 4,174, 6,159,202, 84,111,209,172, 84, 10,149,105,117,101, 91,169,254, 92,233,178, 63,151, 25,146,210, 84,110, 97, 95, +139,145,186, 7,100,248,243,137,185,247,190, 68,102, 58,218,226, 87,151,231,181, 29,120,173,123,203,210,164,169, 65,229, 83, 99, +107,213, 49,191,165,114,106,198, 46, 59, 96, 68, 52,185,149,111,151,144,251, 29,242, 74,134, 79,101,184,105,193,123,141, 31,234, + 80,225,253,130,253,214,128,125,123,160, 60, 30,185,220, 23, 30,152,241,200,101, 15,222,149,135, 61,173, 90,195, 89,235,162, 82, + 14,193,207, 80,195, 42, 23,254, 97, 11,220,177,152,143,176,107, 16,189, 90, 22,252,250,154, 26,173,101,168, 11, 59,243, 61,186, + 69,248, 77,193,139,111, 5, 54, 42,156, 90, 98, 84, 95, 3, 24, 45,252, 69, 81,173,140,101, 90, 40,154, 40, 69,234,188,211,157, + 68,230,102,166, 9,227, 82, 28,140,170, 50,251,157,139,234,188,251,183, 88,137,102,220, 14,151, 2, 57, 58, 89,120,223,109,105, +167, 91,138, 96, 13, 40, 75,155, 26,116,113,177,215,182,150,156,247,226,178,140,185,227, 18,171,149,165,163,255, 68, 94,186,173, + 98, 91, 85,210, 2, 35, 90, 69, 66,219,130,123,156, 47,233, 36,206,112,183,184,192, 75,208, 1, 69, 18,147,249, 51,107,115,144, +205,226,180, 90, 3, 90,180, 17,215,104,201,127,139,219,164, 89,183, 85, 21,117, 91, 87, 56, 11,162,128,137,104,111,230,100,205, + 40,120, 99,223,239,171,204, 20, 32, 52,115,125,215,204,221,158,131, 16,102, 65,120,139,220, 85, 73,241,247,253, 65,209,200,155, +149,216,151, 23,195,207, 94, 85, 82,246,188, 6, 11,253, 67,173,149, 50,140,254, 53,115,166, 78, 83, 76, 75,234, 42, 44,206,200, + 37, 46,117, 68, 80,243,110, 54,169, 99, 23,243, 60, 54,243, 11,221,218, 14,124,101, 79,149, 85,133,104, 44, 17,138, 18, 35,245, +198,166,109,221,118, 35, 25,249, 7,210, 47,174,142,240,255, 6,251, 90,114,176,125,103, 40,194, 53,164, 77, 64,108, 28, 2,144, +146, 98,184,117,195,198,176,187,229,157,255, 18,101,136, 49,142,181,156, 69,183,190,168, 91, 21,132, 9, 43,230,223, 59, 65,169, + 66, 77,254,230, 54,226,218,241, 8, 23, 19,212, 28,168, 73,129, 13, 5,180,167,152,143,210, 71,107, 49,140, 2,163,239, 60,235, +207, 63, 70,255,232,125,120, 33,195,247, 38,228,217, 13, 92,140,232,105, 97, 51, 78,140,147, 19,182,138,254, 78,214, 54, 79, 13, + 74,182,140, 68,155, 99, 96,148,101, 28,106, 49,210,186,245,214, 21,178, 17,210, 79, 10,114,179,131,151,183,228,131,191,150, 42, + 19,245, 48,145,206,139,191,127,247, 50,122, 47,183, 40, 35,183,145,245,130,220, 76,110, 97,219, 23,175,254, 46,194,163,156,197, +133, 88, 27, 89, 90, 54, 49,176, 27, 94,249,109,222,133, 47,108,225,231,207,169,239,236, 49,171,116,251,194,174, 86,183,180,103, +153, 81, 78,114, 55, 68, 37, 99,208,134,212,145,168, 54, 24, 92, 21,167,167,221, 21,120,166, 67,126,126, 32,253,225, 59,232,191, +253, 18,156, 31,224,131,115,246,127,238,109,134,155, 5,238,119,116,119, 13,249,197,119, 25,254,214, 19, 46, 63,184, 32,109, 11, +194, 68,234,220,171,156, 59, 37,221,234, 72, 47,237,224,197, 30,185,157, 32,157,225, 6,166, 10, 15, 39,236,131,129,122,238,241, +105, 18, 99,123,201,130,156,168,163,151, 53, 98,116,147,179,252, 91,214,164,181, 92, 0,109,234,246, 60, 79,128,164, 79, 72,159, +145, 41,163,251, 30, 94, 61,133, 63,246, 34,188,187, 71,254,206,199,112, 3, 76,139,219, 92,110,119,200,167,122,120,105, 3,253, + 14,145,201,129, 67, 71,224,235, 23,240,230, 1, 58, 67,212, 99,104,209, 58,167,251, 89, 68,131, 89, 54, 56, 19,108, 76, 48, 77, +126, 48, 23, 11, 91,153,215, 47, 85,108, 6, 19, 73, 89, 2,132,214, 86, 47, 13, 17,150, 7, 82, 44,161, 29, 50, 45, 98,170,150, +161, 93,139,135,228,156,152,115,251,109,171, 60, 25, 61, 0,166,206, 17,155, 66, 63,119, 97,174, 84,223,137,145,205,232,171,179, + 3, 54, 93,116,227, 57, 33, 93, 70,111, 37,127, 61,190,160,240, 98,242,105,205,104,208, 69,139,189, 7,222,169,216,175, 12,216, + 55, 14,148, 71, 3, 87, 67,225, 67,131,119,128, 39,109, 63, 85,151,226,184,160, 51, 57,172,161,146, 83, 76, 26,146,194,161,250, +101,222,197, 78,250, 72,140, 22,211, 10,230, 47,173,107,111,140,109,157,247,182, 38,194, 33, 10, 6,204,216, 97,215,252,236, 41, +254,220, 86, 92, 59,128,250, 62,127,170, 54,251,151, 83, 8,122, 45, 4,113,109,171,146,107, 33, 39, 79,252,234,197,129, 53, 14, +147,177,136,183, 14,122,158,180,203,221,226,156, 93, 64, 21,235,168,227, 74, 93,159,210, 43, 38, 72,200,186, 66, 48, 89, 98,202, +210,194, 78,174, 57,155,214,209,168,179,170,126,161,211,124,210,174,167, 43, 40, 77,155,114,204, 65, 72,107,117,252,108,199, 18, +122, 77,104, 86,166,226, 42,114,157,131,116, 52,222,146, 37, 76, 71, 87,169,159,203, 42,168,217,209,100,165,196, 95, 46,255,164, + 66, 78, 77,156, 39, 51, 32,166,173,152,234, 42, 31, 65, 85,231,157,185, 89, 89,105,171,124,215,158,115,246, 53, 76, 78, 46,112, + 4,186,156, 33,103,198,105,140, 70,215, 39, 45,174, 78,111,154, 4,185,246, 90,182, 76,248, 50, 28, 61,199, 93,148,113,156, 24, +142,199, 57, 82,188,148,137, 58, 77,115,218,165, 77,211, 53, 4,241,172,141,227, 90, 12,170, 63,208, 27,117, 95,179,243,129,151, +168, 71, 89,237, 97, 18,130, 78,227, 42,169, 42,198, 42, 43,187, 86, 90,193,253,155,114,147,153,145, 28,197,195, 60,138, 55, 71, +178, 18, 59,164,248,160,165,213,135, 69,172, 85,212, 45,102, 85, 65,210, 66, 60, 42, 5,134, 3,104, 70,180,199,202, 56,239,210, +125,102,228,227,114,145,142,206, 38,170,133,130, 49, 9, 41, 11,221, 84, 93, 4,167, 78, 64, 61, 31,220, 34,117, 12, 28,212,105, + 32, 79, 83,112,187,173,122, 14,251,100,133, 50, 85, 63,172, 81,172,102,100, 28,177,175, 60, 65,126,223, 61,120, 90,145,143, 38, +244,185, 45, 28, 70,186,195, 64,127, 89, 24, 5, 6,177,136,226, 92,176,139,141,192, 85,108,141,218,181,107,174, 16,137,240,140, +243, 44,164,253,196,205,111, 95,193,153,146,126,228,204,197, 96,111,156,144,206, 18,242,222,145,250, 80,169, 54, 33,157,160,207, +119,232, 46,218,243,187,218,192, 0,200, 29,193,158, 26, 54, 86,232,139,199,119, 62, 42,216, 78,209, 19,129, 59,217,125,105,147, + 57,243,125,243, 49,112, 6, 39, 27,248,148,193,239, 59,129, 95,157,144, 42,236,222,133, 77, 41, 62,182,238,133,244,122, 66,118, +134,108, 99, 15,170, 5, 30, 76, 46,238,186,211,195,126,116, 37,250, 69,241, 66,227, 59, 35,250,165, 83,244,207,188, 22,240,155, +129,225, 79,125,151, 3, 19,251,103, 51,106,198,241, 55, 47,201,191,116, 69, 46, 35,249,212, 11,210, 82,220, 55,218,137,144,182, +153,244,236, 6,121,165,135,103,179, 11,200,234, 9,240,216,223,243,125,133, 98,200, 86,208,211,212,160,176, 62,177, 72, 26, 59, +113,153,217,186,218, 39,183,250,152,239,220, 37,105,116,253,241,217, 74,206,120,214,146,225,216, 35,187,130,188, 54,194,143,157, +195,115,223,133,116,132,159, 25,131,207, 16,211,142,231,182,112,231, 5,247,122, 93, 61,134,203, 91,238, 52,248,245,167,240,207, +158, 98,251, 35,232,136, 93, 14,212, 67,137, 46,186,186, 54, 39, 69,199, 99,134,102, 79, 17,145,179,228, 35,105, 41,200,224,221, +118,138,176,115,139, 92,251,166, 82, 78,234, 97, 38,109, 45,169,107,113, 83, 84,151, 57, 78,101, 7, 24, 5, 80, 38,102,239, 61, +194,253, 62,113,251,191,120, 1,123,103,224,251,255,227,135, 92,198,100,201, 98,237,223,114,197,251,208, 55,228,166,137,233,179, + 79, 55,250, 30,217,101,244, 94, 15, 95,204,240,133, 4,207, 69,202,161,212,224,135, 86,159, 20,125,187, 96,255,244,136,125,109, +207,244,240,200,213, 88,120, 32,240,145, 9, 31, 1, 23, 53, 34,139,195,173,179, 19,137, 61,180,255, 74, 35, 11, 11, 62,205,222, +123, 97, 34,197,142,186,178, 9, 5,124, 11,159,146, 85, 67,226,137,141,203, 69,213,180, 72,109,236,123,136, 21,229, 54, 0, 75, + 67,216, 82,197,218, 42,194,245, 3,110, 91, 21,246, 8, 99,117, 27, 83, 82,165, 79, 57, 40,130, 53,136,143,144,172, 9,223,210, +194, 59,111,209,169,159, 24, 57,167,182,155,101,161,119,206, 58, 8, 51,142,102, 28,235,132, 20,167,203,169,164,121,181,103,171, +150, 76,126, 32,198,117,233,112,203, 44,238,189,238, 53,215, 8,173, 17,179,107, 87,122, 3,149,201, 44, 36,180, 31,184,208, 63, +121, 39,100, 81,247,113, 87,155,119,246,142, 1,150,101,154, 18,255, 62,175,130,115,218,123, 97, 13, 5,187, 66,220,182,213, 68, + 19, 29,118,177,159,174,226,154,153,180,122, 77,231, 46, 93, 3,115, 19,159,247,246,171,173,247,245,170, 74,146,206, 99,189, 53, +251,164, 47,116, 38, 41,231,160, 37, 70,212,238, 10,197, 46,230, 63,199, 84, 74, 4,184,120, 16,203, 20, 83, 20, 19,160, 76,140, +227, 24, 25,240,190,139,182,208,180,216, 60,145, 89,154, 62,105,200, 91, 21,178, 56, 46, 42,118, 72,254,224,122, 85, 36,116,129, + 1,107,223, 56,233,122, 81,226,187, 52,139, 93, 55,186, 84, 91,179, 9, 49,142,202, 82, 87,190, 62,245,175, 19,134,156, 85,252, +234,178,151,107,187,140,217, 98,186, 66, 8,154, 53,177, 74,162,180, 89, 98,163,182, 80,145,209,117,185,218,157, 69,252, 96,137, +241, 96, 19,165, 20,146, 9, 88, 70, 74,241, 3, 81,179, 79, 9,178, 3,186, 46, 38,184, 60,194, 16,120, 87, 34, 55,187,148, 74, +205, 62,166, 76,211,132,100, 65, 45,251, 79,168, 17,124, 79,124, 8, 78, 18,242,120,132,183, 14,240,198, 41,236, 7,228,208, 35, +183, 55,164,171,194,118,184,100, 28, 35,121, 41, 86, 12,195, 39,196,162,182,210,117, 92, 11,193, 41, 94,120,136,194,161, 24, 23, + 42,116,151, 19,187,111, 92,162,183, 19,242,185, 27,112, 43, 47, 36,190,206, 17,169,220, 84,116,167,126, 2, 25,126, 73, 39,247, +255,114, 20,236,162, 80,175,138,135,169,236,131,154,181, 55,120, 65,225,182,194,141,222,253,235,143, 65,110, 63,129,211,201,119, + 17, 93,129,159, 56, 67,198,129,244,124,239,135,224,113,164,252,220, 30,123,234, 35,254,250,107, 3,233,142,192,191,183,131, 91, + 27,151,241,183, 10,169,138, 91,231, 30, 86,248,229, 9,121,189, 71,255,252, 15,121,145,182, 63, 50,253,119,223,167,158, 15,232, +179, 14, 34, 58, 28, 11,114, 89, 56, 21, 33,159,248,129, 89,139,239,238,169,130, 72, 66,251,140,222,222,192,253, 62,148,252,119, +160, 30,177, 97,242, 11, 29, 67,238, 37,100,215,147,164, 58,154,182, 4,152, 72,213,209,173, 57, 4, 90,157,193, 86,231,100, 36, +114,236, 78, 34,115,211, 16,100, 76,112,165,240, 76, 65,126,252, 17,188,190,131,103,159,135,221,179,144, 94,131, 87,110,194, 75, +226, 43, 31, 20,210,109,232,182,192,235,192, 57,116,191, 0,242,219,240,181, 75,236, 23, 31, 98, 79, 15, 14,154,153, 70, 31,167, + 31, 29, 79, 60, 8, 30, 26, 83,150,241, 56, 21, 78,122,216,245,161,141,184,153,224, 10,244, 98,241, 13,231,100,243, 7,202,204, +199,240,141, 30,183,160, 58, 27,167,223,230, 56,213, 28,155,130,174, 50,143,170, 37, 40,182,218, 65,253,198,145,253, 47, 94, 32, + 98,108,179, 69, 30,144, 79,153, 54,209,145,247,169,229, 96,119,190,150, 56,235,144, 91, 61, 60, 47,240,147, 25, 94, 79,240,140, + 11,131,168,145, 59, 80,213, 89, 2,239, 21,248,133, 9,251,197, 11,166,247,143, 92,150,145,135, 10, 31, 36,225,178,192, 57,112, + 48,135, 52,109,114, 98,241,228, 64,103, 70,149, 58,139,180, 90,163,160,225, 5, 79, 49,145,155, 16,182, 73,185, 97,198,121,129, + 99,156,109,218, 46,238,192,128, 74,220, 96, 75, 40,211, 50, 46, 54, 17,174,226, 24,220, 90,116,221, 24,135,213,110, 55,137,178, +177, 58,167,107, 77, 85, 40,181,210, 25,244,169, 35,145, 16,117,239,191, 52, 43,214, 60, 74,110,103,175,206,158,118, 93, 34,133, + 98, 77,233, 14, 13,247,205,123, 87,111,230,103,216,222, 42,135,113,164,175,149,148, 59,191,104,155, 66,190,214,200,247, 94,243, + 69,150,139,176,196,101,154,227, 83, 82,100,249,243,218, 32, 52,178,104, 50,218,103, 41, 53,129,218, 15,156,225, 92,211,112,180, + 75, 57,171, 99,145,215,145,174, 26, 49,188,104,186,126,161,207,220,249, 69,155,213, 46,245,209,150, 48,157, 6, 65, 75,226, 2, +214,164,201, 95, 75,241,187,166,214,128, 77, 69,154,226,188,158,136,117, 64,109,130,230, 90,103, 98, 65,109, 43, 4, 3, 77, 77, +189, 31, 64,169,107, 97, 43, 14, 60, 86,105,160, 30,157,253,242, 57,103, 95,103, 69,242, 98,181,234, 15,118,131, 36,197,207, 48, +103,167,183,132,182, 85,174,187,243,175,116,145, 7, 70, 68,107,214,121,100, 83,231, 11,189, 23,101,163,158,122, 83,130,152, 51, + 43,220,237, 19,113,115, 49, 70,159, 13,242,178,140, 71, 90,153,223,242,179,197,156,147,156, 98,245,208,198, 5, 18, 33, 5,109, + 7, 65, 41,136, 26, 41,118, 42,106,139, 26,114, 78,251, 74, 14,151,241,113,186,147,165, 44,128,194, 58, 1, 92, 65,248,214,117, + 93,177,213, 58, 51, 35, 85,253, 82,150, 90, 24, 74, 97, 42,198, 85, 17, 46,139, 50,212, 26,249,238, 54,103, 24, 23,188,130,172, + 5, 76, 43,185, 22, 82,246,194,101, 38,200,180, 56,205,155,201,105, 89,191,113,142, 60,211,193,231,110, 34,191,252, 8, 57,235, +144,155, 29,221,126,195,174, 28, 40, 89, 60,252,195, 66,184,220,198, 99,178, 90, 51,217, 50,106, 42,109,236,212, 64, 16, 49,149, +212, 4,250,232,136,254,198, 37,249, 76,209, 23, 78,188,114,188,179,245,255,236,131, 83,127, 47,185, 56, 78,162,109,153, 12,158, +184, 40,205,198,138,125, 20,194,177, 27, 17, 32,241,116,130,115,139,181, 66,124,240,158, 52,139,230,165,171, 53, 15, 6, 83,165, +190, 85,177,243, 2,159,205, 78,178,217, 28,224,188, 96,239, 87,100,111,212,103, 50,105,112,224, 11,131,192,125,239,130,165, 86, +172, 40,156, 11,242, 76,143,254,231,175,248, 7,230, 98,162,254,215,239, 97, 95,185, 32,255, 27,167,200, 55,143,216,187, 3,185, + 51,250, 36,244,183, 28, 96, 99,183, 4,125, 28, 32,150, 62,161,154, 72, 93,143,188,188,113, 81,222,230, 6,200, 45,168,223,241, +125,236,211, 40, 92, 38,127, 16,109, 12,133,122, 23, 98, 80,151, 21, 35,103,217,167, 11,237, 56,186, 12, 43,154,198, 85,217, 59, + 71, 94, 70,129, 50,192,231, 31,192, 31,184, 13, 47,252,105,232,254, 45,224,121,207,108,151, 46, 88,232, 65,228,171, 71,144, 3, +212,115,159,111,151,103,225,240,119,177,175,125,140,253,147,131,179,211,111,185, 19,129,171, 52, 23,118, 58, 86,210, 80, 29,130, + 17,248,210,166, 93,188,186, 18, 54,135,202,217,101,229,244, 78,135,158,184, 66, 87,198,176,128,154,204,147, 6, 49,135, 96, 88, +117,139, 25,230,132, 71,196,150,223,127, 21,201, 75,195, 22, 71,167, 94, 42,140,201,184,184, 26,185,250, 43, 31,120, 80,207,198, +216, 82,201,117,233,210,211, 54, 35, 39, 49, 5, 49, 69, 78, 50,242,106, 7, 95, 20,248,172,192,203,138,156,158, 65,218,250, 37, + 94, 47,161,142,238, 14,120, 48,193, 47,143,216, 63,186,160,188,189,231,184, 31,120,164,240,113, 39, 60,173,254, 18,141,209,193, +245, 41, 99,125,239,170,226,232, 70, 59,170, 79, 26,155,247, 56,246,235, 45,206,115, 11,140,234,191,191,171, 93,156, 5,113, 43, + 25,143, 45,128, 49, 22,135,102,195,123,198,218, 79, 67, 16,103,230, 22, 91, 68,231,177,243,227,226, 86,216, 83,140, 46, 41,163, +233, 34,100,138,127,250, 56,124,173, 10,135,201, 41,233, 83,224, 98, 27,125,111, 18, 97, 50,119,156, 44,216,209,153,160, 30,124, +124,185, 70,101,211,101,250, 76, 49,153,181, 34,237, 76,174, 86,153,226,159, 84,151,203,166, 52,113,240, 58, 88,132,101,154,193, + 58,109, 79,150,181,131,205,222,121,167,233, 89,114,166, 6, 53, 76,127,162,215,246,236,242,131, 46,179,153,125,146,219,159,181, + 31,156,225,155,224,175,197,234,252,159, 0,147, 70,213,134,169,213, 0, 0, 32, 0, 73, 68, 65, 84,219,243,216, 94,230,232,156, +229,117, 81, 34,189, 45, 37, 71,169,182,163,186,169,145, 87, 29, 58,161,189,160,121,193,215,197,155,217,181, 21,115,173,205, 29, +226,186,136, 38,244,158,181, 91,179, 15, 62,220, 9,145,116,216, 88, 46, 42,194, 38,103,106,238, 56, 76, 19,101,127, 21, 94,247, +186,160, 17, 26, 44,103, 70,168,235, 98, 9,211,104, 64, 98, 37, 33,171,220,149,156,212, 33, 48,126, 57,250,222,162,235, 28,126, +239, 31, 88, 91,184,239,114,253, 47, 55,193, 1,107, 5,109,187,212, 91,118,114, 68,166,170,168,219,227,176, 89, 37, 43,241, 48, +172,195,219,136,110, 61,215,226,187, 48,117,170,211,252, 1, 66,230,136,171, 42,110, 87,107,244,187,166,184,165, 86,106, 25, 16, +237,253,227,159, 82, 68,109, 78, 48, 77,232,102,231,220,209, 38,224,195, 56, 86,115, 6,116,129, 94, 42, 53,169, 11, 22, 98,196, +227, 85,177,131, 98,199,234,232, 83,195,133, 15,218,210,214,170,127,218,228, 52,193,105,194,246,193,227,254,229,167,200,191,122, + 7, 62,127,130,124,101, 66,238, 22,228, 80,216, 49, 81, 47, 29,242, 81,164, 37,131,213,107, 84, 62, 20,234,180, 8, 75, 52, 38, +224, 98,254,193, 98, 21, 0, 1,130,188,179,103,251,255, 64,254,145,138,222,223, 64,206,200,105, 12,244, 6,115, 92,233,189, 4, + 27, 23, 78,241,113,136,128,202,228, 2,200, 27,234,218,131, 59,138, 22,151,194,219,183, 71,228, 94,204,181,178,250,133,124,225, +151, 34,125,137,156,242, 9,180, 80,127,241, 10,121,148,144,151, 51,114, 38,212,201, 24, 62,172,164,141, 32, 54,192,207, 61, 65, +106,135,220,223,248,248, 59, 11,156, 40,242,108,143,252,161, 14,249,201, 59,112,214,123, 58,220,111, 60, 69,191, 62,160,255,238, + 61,236,203, 25,185,115,197,201,223, 59,199,198,130,126,170, 67, 94,223,192,171, 9,123,175, 80, 59,245, 58,110,147,157, 82,119, +127, 7, 47,103,184,221, 65,126, 45,218,218,163,119,233, 79,221,162,103,143,152,215, 47,162, 32, 39,177,227,109,227,244, 11,131, +239, 71, 20,236, 16, 64,147,123, 61,220,203,112,191,131,103, 50, 60,179,129,179, 11,184, 11,188,242, 71,224,230,159, 3,121, 41, + 14, 35, 69, 2, 40,106,172, 96,216,186,195,108,239,119,230,240, 45,184,250,111,224, 43,223,130,191,123, 3,121,207,224, 86, 20, +158,210,193,198, 47, 92,219, 86,247,224, 95, 78,116, 67,101, 26, 3, 90, 34,194,216, 30, 53, 19,198,201,168, 79, 99,196,218,132, +129,173, 74, 28,205, 63,224, 18, 2, 86,107,201, 26,159, 56, 72, 87, 49,202,243,129, 30, 0,163,126,170,148, 99,245,120,119, 51, +172,103,129, 13,149,184,244,118, 29,122,218, 33,157, 11, 6,229,134,194, 27, 10, 63, 90,225,211,138,220, 62,133,254, 14,216, 45, + 40, 91,183, 23,118, 31,131,156, 99, 15, 43,252,194,128,253,131, 75,234,119,174, 24, 14, 3,231, 98,124,156,133, 39,184,244,162, + 70, 55,147, 82, 34,145, 24,147,131,166,106,241,255, 49, 5,204, 42,169, 81,138, 70, 81, 94, 87, 23,137,132,146, 60,176,201, 6, + 99, 21, 87,234,139,113, 10, 92,218,178, 59,157,130,209,191,140,225,101,161,101, 70,130,155, 2, 67,169, 12,101,138,125,185,175, + 47, 83,114, 16, 22, 34,228, 16, 3,154,248,104,189, 72,165,168,139,245, 26, 60,101,136, 8,205,150,206,134, 46, 23,185,172,246, +199,204, 96,153, 6,178, 90,198,204,178, 18,167, 21, 26, 94,215, 71,225, 89,252,220,172,113,190, 90,112,171,173, 69, 89,207,231, + 78,203,244, 88,160, 50, 33, 77, 91,130, 71, 90,228,174, 45,194, 48,239, 30,211, 53,122,220,245,224, 89, 89,208,200, 43,104,143, +173, 26,198,182,178,224,154, 59,106, 65,202,216, 74,104, 87,131, 23, 48,179, 81,218, 20, 64,150, 11, 93,147,219,192, 26,114,213, + 77, 3, 41,138,159,152,254, 94, 83,175,199,253,210, 22,247,171, 95,100,206, 82,151,181,189,122,121,110, 26,174, 28,187, 94,185, + 52, 16,205,172,197,104,147, 24, 77,216, 56, 56,132,172,148,120, 31, 63, 25,128,187, 48,219,219,152,189, 70, 6,132,181, 98, 39, +214, 1,104, 34,167, 80, 26, 54, 79,122,206,201, 89,183, 86,188,203,142, 28,227, 6,167,111, 54, 54,154,146,180, 77,156,117, 5, + 21,142, 56, 57,135, 22, 52,128,194,194,149, 95,239,240,172,182,177,150,205, 74,195, 20, 44,232,218, 80,123, 44, 94,238, 22,205, +218,144,126,181, 86, 23,195,232,226,221, 53, 83,204, 70,175,108,251, 46,194,232,189,197, 80,138, 31,218,147, 43, 35,154, 69, 35, +169,144, 10, 76, 84,127,248,114,199,200, 68,157,196,163, 91,101, 17, 15,149,234, 85,254,134,234, 36,188, 36,238, 5,158,189, 24, +201, 91, 26,137, 95,228,195, 43,236, 31, 22,228, 95,123, 6,249,124, 69,127,163,192,179,133, 42,198, 73,189, 66,174,202,156,226, +116, 40, 62, 13,152,234,242,192,174,247, 67, 83, 89,141,252,108, 53,162, 7,158, 4, 30,243,254,247, 92, 48,216,253, 46,224,150, +231,243,202,253,236, 63,188, 6, 5,110,140, 11,253,227,137,250,212,187, 72,233, 4,189,149, 32, 11,178, 83,244, 52, 56,233,147, +186,244,255,129,193,157,120, 17, 46,195, 51,125,244,139,222,142, 21,158, 23,236,215, 39,236,235, 35,122,123,139, 60,231,201, 40, +195,165, 79, 59, 78,223, 26,217, 94, 8,246,156, 33, 87, 6,255,124, 66,222, 29,208, 55, 78,144,207,236,224,133,157,139,239,206, + 71,120,114,240,116,184, 63,255, 60,156, 10, 98,133,252,147, 91,244,133, 51,236,241,136,156, 41,220, 21,236,124, 96,250,222, 17, +206,139,207,137,239,246, 72,233,225,197, 14, 94, 76, 72,247, 50,112, 31,236, 55,176,195,209,131, 98,246,147, 95,108, 55, 64,246, + 41,172, 13,130,140,234,209, 96, 59,117,144,203, 11, 9, 94, 2,121,190, 67,238,168, 71,217,157, 37,231, 50,119, 29,108, 59, 36, +159,123, 64,204,201,223,132,252, 67, 96, 7,252,155,156,198,144,112,189, 59, 92,119, 60, 27,255,185,116, 15,246, 25,236, 70, 15, +191,255, 33,236,207,145,247, 11,242,254, 1,222, 29,176,144,114,219, 20,123,201, 65,177, 81,200, 17,220,225, 68, 59,239,226, 40, +201, 57, 12, 71,247,111,201,109,215, 66, 72, 17, 56,138,171,199,219, 65, 81, 2, 19, 55,185,223,203,142,129, 2,157,220,179, 63, + 35, 86,187,198,202,117,103, 12, 83, 37,111, 42,233,106,162, 55, 9, 33,159,139, 8,165,203,200, 89,143,222,200,200,221, 14, 94, +168,240, 70, 69, 62, 83, 93, 63,176,187, 7,250, 50,216, 11,174,199,168,151,160, 79, 97,251,109,216,127,136,253,218, 8,255,251, +129,250, 91, 79, 25, 46,143, 60, 81,120,148,224, 41,202,165,197,206, 92,124,245,102,125,162,144, 24,131, 6, 88,235, 98, 11,173, +225,199,238, 90,160, 71,235,192,102, 11,149,119,229, 86, 23, 36, 74,141,189,120,138, 67, 63, 71,215,213,198,224,211, 42,199,187, + 1,119, 8,251,108,173,149,169, 86, 74, 83,177,171, 50,168,114,133, 43,220,219, 4, 51,209,130, 95,252, 60, 57, 11, 86,198, 85, +236,171, 75,228, 82, 28,195,177,210,226, 74, 91, 90,187,239, 83,151,152,207, 54,181,107,151, 89, 35,200,217, 28, 44,162,115,126, +117, 70,217,197,200,119,140,179,217, 21,252, 49,250,173, 17,101,208,162,117, 87,163,110,107,251,234, 21, 77,206, 47, 70,153,109, +192,173,246,107, 54, 64, 51, 89,165,170,203,130, 9,151,117,244,248, 66,140, 55, 18, 41,186,254,250,137, 26, 83, 35,164,234, 90, +108,227,156, 75, 34,171, 8, 95,153, 47,230, 44, 74,151,148, 28,107,218, 98,117,190,115,154,160,173,113,248, 87,154,181,184,124, +101,101, 17,188, 62, 89,208, 54, 94,215, 8,253,194,174, 79,176,195,182,214,146,229,148,235,174, 16,107,247,104,236,162,199, 82, +152,198, 1,155,202,220,184, 54,123,159, 3,215, 22,225,223,124,130,212, 58,175,162,175,197,165,167, 72,226,203,186,228, 9,103, +241,127,145,196, 51,151,211,156, 90, 35,159, 24,191,200,146,161, 28,168, 88,105,114,248,168, 74, 93,108,192,188,155,202, 45,155, +121,189, 7,170,126,216,183,230,123, 86,165, 54,250, 25,209, 93, 7, 66,176,174, 94, 12, 52, 33,165, 98, 26,138,219, 98, 75,254, + 37, 62,147, 76, 12,152, 36, 76,195,122, 87,195, 2,100, 78,164,107,193, 49,105,138,208,135, 24,111, 53, 59, 72,171, 82,221,169, +224,113,130,181,217,122, 66, 76,100, 54,162, 83,136,240, 84,252, 66,200,213, 41,105, 10,182,137, 41,193,175, 63,129,187, 32, 63, +253, 44,114, 57, 34,223, 50,228,190,223,255, 39, 15,174,176,125,153,157, 1,173,198,169, 43, 38,192,114,193, 7, 56, 33, 14,150, +186,202,103,239, 12,158, 36, 72, 86,185,247,206, 21,114, 75,201,159,109, 28,222,236,106,226,171,234, 62,237,161,192, 59, 19,246, +177,143,248,228, 52,222,183,187, 29,114, 43,102, 92,247,123, 7,125, 28, 35, 21,227,213,173, 47, 86, 63,246, 17, 54, 59,247,228, +217,195, 1,182, 21,238,184, 80,171,124, 52,192,183, 5,253,169, 45,233, 86,162,255,120,226, 88, 52,154,229,130,156,184, 69, 73, + 48,236,171, 71,234, 87, 38,244,207,158,249, 7,241,209,232, 85,214, 51, 27,248,153, 31, 3,158,194,111,127,215,147,200, 78, 39, +244,139, 91,224, 20,123,162,240,193, 17,251,213, 3,188,239, 2, 59,189,211,145,158,239,224,229,206,119,180,155,231,192,222,136, +177,238, 3, 56,132,223,233, 2,120,108,200,211, 16,152, 61,215,195,171,217,157, 10,207,116,176,235,130, 5, 29, 50,234,193,124, + 18, 49, 21,255,221,199, 2,169, 64,189,194,110,191,139,124,225,207, 2,207,192,248,115,241,193,253,162, 91, 41, 63,153,147,136, + 93,199,206, 49,184,114,176,255, 79,144, 47, 30,224, 71, 0,221,196, 31, 63,135,242, 17, 82,222,134,171,127, 1, 79, 63,134,143, +223,135, 15, 62,194,158, 94,194,135, 35,246,142, 33, 79, 42,156,251,186,138,223, 43,240,211, 55,224,191,189,192,222, 44, 88,144, +241,216,182,168,173,234,130,140, 62,140,219,146,252,193, 63, 77, 46, 97,235,182,110, 49,212,248, 20,214,240,113,182,104, 54, 19, +191,244,179, 91, 30, 73,113,161,107, 8, 11, 95,234,144, 47, 41,188,106,240, 66, 65,110, 3, 55,110, 67,255, 58,232,143, 1, 47, +248,243, 57,137,175,199, 54,191, 9,245,171,240,214,199,216, 95, 27,176,255,251,130,233,225,129, 39, 76, 60,232,132,199, 8,251, +234,186,145, 42,226,199,126,206, 78,167,171, 44,155,218, 18,211,123, 91, 68,165,251,144,217,108, 88,118,211, 54, 71,207,198,152, + 27,239,134, 55,205,162, 21,193, 39, 21,241, 12,114, 81,247, 19,199,122,171,145,228,166,150, 32, 97, 48,213, 41, 18, 29,189, 88, +232, 82,162,170, 35, 71, 47,195, 37,152,163,113,232,162, 70, 42, 65,121, 20,132,211,152, 0, 28, 35,209,205,226, 28, 25,165,197, + 39,219, 34,101, 51, 16,169,215, 46, 29, 89,141,143,107,236,227,230,169,158, 56,146,184,134,251, 32,167,224,170,151, 50, 55, 86, +172,144,172,149, 5, 22,182, 14,209, 54,187,174,110, 23,214,105, 44,114,237,251,137, 74, 32,135,109,190, 64,215, 95,207,184, 62, +150,149,185, 75,142, 56,217, 38, 20, 91, 53,140,245,255,199, 40, 39,235, 78, 89,184,246,253,100,134, 38,249,138, 36,205,190,126, +153,199,243,105,245,107,148, 64,233, 74, 48, 22, 26, 66,215,102, 77,153,223, 45,147,212, 89,135, 50, 77, 5, 49,111, 2,105, 4, +185, 90,175,249,247, 85, 82,120,221,203, 60, 97,105,130,231,169, 26,195,112,164, 14, 67,228, 51,172,108,119,117, 73, 73,186,206, +240, 95, 23, 25, 50,223, 25, 77,151,160,170,228, 20, 21,109, 78,121,190,208, 83,140,143,242,250,235,124, 2, 93,170, 18,152,201, +150,139,220,162,234, 0,173, 83,112,221,151, 61,131, 4,100,161, 37, 55, 49, 91,178,196,141,255, 45,123,221,150,168,214,212, 0, +251,177,255,209, 24,125,153,102,175,174,109,106,132, 93,175, 44,219,104,205,138,243,179, 11,212, 58, 33, 37,249,215, 8,238,165, +213, 35, 73,179, 71, 75,214, 37, 80, 48,135,221, 36, 69,151,162,171,143, 81, 99,209,143,204, 25, 54,222,236,104,117,130, 86, 96, +114, 57,137, 8,183, 41, 72, 49, 49,190,177, 51,193,126,238, 9,250,220, 22,249,242, 61,116, 4,190,103,216, 29,255,218,167, 31, + 95, 81,169,243, 95,173, 6, 71, 91, 72, 8,117,165, 26, 45,174,247,155, 43,225,118,230,246,234,213,231,195, 14,242,193,184,243, +157, 75,228, 76, 73,175,135,134, 55,103,207, 90,109, 85,193, 14, 23,139, 73,134,251,234, 93,232,211, 58, 47,231,164,198,222,248, +134,122, 65,240,194,214,255,238,253,226,127,110, 35, 62, 38,255,230,232,251,241, 91, 61,250,233, 13,245, 43, 3,246,173, 9, 94, + 49,228,249,158,221,135,149,109,137, 4,184, 27, 14,102, 17,245, 5,173,124,191, 32, 63,115, 11,238,237,224,209,224, 47,228, 78, +225,254, 77,191,112, 14,111,195,221,143,225, 62,208,191, 8,249,167, 64, 7,100,247,107,216,163,131, 35,108, 79,157, 89,159, 62, +117,130,124,238, 4, 62,147,144,155, 55,193, 94, 3,185, 15,246, 43, 46,190,186, 48,120, 88, 96, 20,228, 51, 91,120,181,247, 2, +224,102, 92,226, 67,117,113,214,249,224, 58,130,171, 10, 23, 99, 24,159,109,102,237, 26, 9,217, 11,156, 61, 66,254,196,151,160, +255, 9,168, 63, 11,233, 11,144,190, 12,114,242, 59, 34, 50,103, 57, 79,189,128,242, 16,198,223,134,195,223,131,171,127, 14,199, +209,197,115,253,103, 97,247,123,225,236, 71, 97,247,101,191,120,111, 43,188,216, 76, 90, 83,132,114,142, 72,189, 4,123, 4,245, + 41,232, 99, 72, 39,192,247,225,175,254, 77,228,195,115,228,234, 42,242,110, 55,144,183,254,143,246,208,159, 46,237, 86, 29,192, + 46,144,178,135,195, 17,251,184,194, 91,192,219, 21, 62, 44, 62, 1, 25,218, 92, 53,136,116,187,166,234, 44,112, 91,224,229, 10, +159, 6, 94, 50,184, 9,108, 79,160,127, 30,242,151, 32,255, 75,144,158,245, 3,170, 28, 96, 58, 64,247, 4,228, 31,195,197,215, +176,127,120,133,253,111, 71,234,187, 87,236,199,129, 7, 73,248, 72,213, 35, 80, 43, 92, 85,191, 40, 69,124,207,108,205, 63,111, +174, 63, 73, 11, 31,116, 57, 20,227,130, 24, 34,213,173,111,209,152,178, 64,176, 8, 81, 83, 22,245, 51, 72, 22,232,158,219,139, + 82,116,114,161,201,145,121,152,232,234,246, 72, 87,163, 46,212,183, 44,206, 16,159, 86, 97, 77,197, 96, 66,231,232,217, 13,149, +141,250,247, 26, 2, 41,187, 77,126,214,106, 93,198,219,134, 56, 27, 28, 23,135,174, 47, 66,189,182,111,150,217, 10,219, 34,117, + 77,100, 86,180,139,174, 24,255, 77,241,175,138,153,135,141,232,202,119,110, 51, 8, 37, 56,246,232,204, 50, 95, 39,167,219, 39, +138,213, 70, 98, 99,181,151, 22, 89, 26,191, 38,140,187, 14,139, 93,161,101,101, 9,225, 86, 22, 21,251,156,238, 38,215, 87, 65, +178, 90, 69, 40, 77,200,184, 32,237,106, 60, 33,217,152,117, 3,105,206,118, 95,170,139,102,243, 43,198,108, 53,107, 99,255,164, +193, 77, 88,133,206,172,147,210,220,250,173, 43, 55, 82, 3,245, 84, 74,248, 73,125, 61, 29, 94,126,147,153,217,223,190,196,100, +238, 59,111,169,165, 86, 27,159,192, 63, 87, 42, 21, 82,154,153,249,213, 86, 32,231,185, 88, 10,215,152, 36, 84, 59, 82,238,200, + 77,114,191,217,116, 51,198, 85,165,144,195, 24,191,238,173, 53,164,234,201,236, 26,237, 77,108, 5,143,152, 6,239,244,105,227, + 31, 89,249, 4, 67,121,186, 94,213,173,108, 34,178,178,112, 37, 93,254,255,118,105,163,130,229,140,165,236, 47,112, 90,152,187, + 85,193,138, 82,169, 81, 93,199,200,172, 20,180, 20,114, 25,155,219,208,253,188,125,118,241, 95,169,136, 84,103, 98, 87,247,239, + 26,197, 61,164,210,242,205,109,245,102,187, 38,170, 82, 41, 90,177, 24, 36, 36, 85,116,171, 72,191,202, 80,149, 4, 79, 35,246, +242,134,131, 91,234, 95,255,128,244,167, 55,240,163,119,208, 82,169,111,181, 7,195,184,241,193,149, 19,138,146,240, 52,128,253, +199,218, 42, 73,155, 31,222,107,235,150,102, 27,143,232,207, 18,202,232,143, 54,160, 15, 43,183,127,235, 10,233,149,244, 25, 7, +123,112,171,135, 33, 67, 55,120, 44,232, 24, 48,143, 83,117, 64,203, 11,241,130,190, 95,225,142,194,153,250, 30,250,253, 10, 87, +151,158,166,118, 43,193,115,157, 75,174,159,139,247,243,209,209, 11,141, 47,111, 73,223, 60,192,169,162, 47,111,225, 83, 91,228, + 75, 3,250, 96,130,183, 39,159,146,220, 72,216,133, 98,239, 86,244, 79,222, 67,126,207,125,248,248, 16,193, 27, 46,160,226,248, + 1, 12, 95,117,255,216,157, 87, 64,254, 21,168, 63,237,225, 60,245,171,254, 75, 63, 28,224, 82,208, 91,189, 19,242,126,104, 7, +175,109,145,123, 10,242, 58,232, 75, 80, 63,242,203,115,127,132,205, 9,242,211, 59,184,165,176, 81, 31,191, 30, 10,156, 79,177, +103, 31,253,253,122, 28,246,186, 67,157,105,115,140,192,133, 33, 31, 2,151, 21,235, 14,200, 95,248, 44, 60,247, 23,221,179,159, +255, 4,232, 41,252, 14,204,233, 69,109,246, 1,140,127, 23,246,255, 0,198, 39, 48,156, 71,215, 93,225, 34,123, 80,206,243,223, + 71,238,252, 54,240, 71,224,236,247, 67,122,198, 71,245, 54, 45,125,133,244, 46,245,210, 91,192, 43,145, 51,202, 34, 3, 59,253, +227,240,218, 99, 15,167, 47, 87, 32,167, 32,103,113, 27,111, 99, 74, 16, 26, 3,187,128,241,187,112,245, 79,192,126, 5,185,253, + 33,232, 30,187, 1,188, 26,168,222, 42, 78,204,219,154, 35,210,110, 87,184, 49,132,158, 98,227, 63, 79,222,130, 62, 11,221,231, + 33,255, 36,228, 79,129,222, 92,174,128,186, 7,219,131,126, 13,166,191, 15,223,120,143,250, 63, 13,216,175,236, 25,247, 7,158, + 36,227, 65, 47, 60, 9,242,155, 43,251,149,174,239,226,130,115,124,117, 13, 33, 81,105,112, 72, 42, 57,185, 87,120,196, 60, 19, + 30,155,213,238,132, 0, 46,199,136, 59, 1, 91, 49, 54, 89, 49,201, 8,137,177,194,113,154,188,171,195,249,252, 85, 28, 0, 34, +171, 11, 67,227,119,153, 98,154,151,196,133,116, 26,170,237, 38,188,202, 77, 88, 43,115,204, 3, 5, 97, 31,159,135,147, 0,210, +244, 38, 12, 6, 23, 49, 2, 63,137, 61,237,133,153,239,214,155,165,107,181,127, 94,152,237,204, 29,246, 58,137,172, 89,162,106, +227,124,132,205,184,138,255, 35, 86,233,196, 39,119,226,109,233,210,237,175,244, 19,237, 27,213,149, 51, 98,181,225, 93, 21, 14, +173,249,209,217,253, 35,200, 53, 1,154,172,110,210,165, 52,168,215, 60,109, 77,112, 55, 95,160,216, 15, 20, 0,242,137, 11, 86, +227,194,111, 34,226,220, 20,244,234,197,154,139,184,151, 75, 93, 34,160,169,214, 74,169,133, 49, 84,255, 98,139,255, 35,169,144, + 82, 14,225, 40,139,142, 34,252,235,165,150, 80,200,175,130,107, 12, 82, 78,244,125, 79,206,137,220,229,121,229, 43,179, 71, 63, + 18,240,172,204, 83, 93,141,232,230,165,131, 15,100,111,245, 59,183,189, 95, 13, 85, 44,154, 22,188,112,107,188,204,167, 49, 41, + 39,210,166, 67, 82, 34,119, 73,217,110, 55,164, 44,104,141,144, 2, 77,193, 62, 46,238,243,156,133,109,204, 41,105, 26,242,177, +132,146,146, 6, 78,182,196,108,191, 71,202, 20, 99,148,136, 97, 76, 33,112,168,203,104,217, 52,154,194, 57,175, 60,186,119,149, + 57,242,117, 22,125, 88,165,162, 88, 74, 30, 7, 90, 42,166, 1,125,152, 21,131,193, 39,142,159,173,138,161,117,242,157,240, 84, +124, 23,170, 2,195,209, 63,132,147, 87,103,201, 10,181, 76, 14,206, 39, 4, 73, 76, 51,206, 17, 98, 77, 16,227,255,212,185,210, +190,134, 40,252, 84,253, 16,113,144,117, 14,127,173,192, 73,113,218,222,100, 46, 6,163, 96,111, 23,202, 95,125,139,244, 31,125, + 26,126,252,182,215,165,239,184, 30, 64,171,113,147, 3,245,178, 56, 38, 60,158,140,163, 57,244,100, 8, 94, 12,182,140,227, 89, + 9, 70,172, 5, 27, 84, 79,135,122,144, 32,127, 60,114,243,235, 87,200, 46,161,157, 58,158,245,102,130,220, 59, 36, 96, 95,151, +123,231,194,124, 87,252, 98,246,221,185,138,119,170, 35,126,233,215,138,189,125, 68,190, 93, 96,151,176,231, 21,121,238, 12, 94, + 59, 69, 94,216, 33, 31, 94, 82,119,134,254,112,128,180,207,122, 36,101,244,217, 4, 47, 11, 60, 59, 34, 79, 38,108, 35,112,150, +208,223,183, 67, 94, 63,131, 15, 47,189, 27,124, 55,148,246, 55, 30,194,243,103,208,253, 97,144,223, 13,124, 17,236,204, 47, 33, +121, 31,236, 39,160,252, 83,236,106,132,219, 29,122, 59,195,203, 27,244,213, 13, 60, 43,208,191, 12,188, 28, 47,222,175,129,222, + 68,238,124, 10,158,185, 2,121, 2,199, 11,236,145, 7,126,240,120,132,199,145, 68,247,168, 96,231, 5, 27, 70,191,239,142, 14, +225,225,129, 33, 15, 42,178, 73,200,231, 78,144, 63,117, 23,249,242,151,224,238,127, 12,233,243, 33,115,109,186,234,244,137, 75, +125, 0,123, 27, 14,255, 11,246,224,103,145,183, 46,176,243, 14,116, 7, 99, 7, 79, 51, 60, 10, 54,124,238,224, 92,177,215,223, + 70,244,103,125, 68,189,251, 61,208,189, 24, 23,115, 23, 66,138, 97, 37,112,107,160, 17, 93, 57,150, 51,240, 44,200,243,110, 89, + 92, 59,155,109,117,160,178,241,175,219, 63, 3,233, 21,232,222,128,252,243,176,123, 31,185,255, 16,198, 67, 44,158, 99,234,180, + 81,159,244,156,108,160,251, 12,240, 98,168,213, 95,134,242, 10,200,203,160,119,125, 36, 51,127,191,201, 39, 19,211,155, 96, 63, + 11,143,190,130,253, 31, 23,216,223,152, 40, 15,247, 92,216,196,195, 14, 30,198,168,125, 40, 62,178,164,235, 24, 45, 5,203,220, +102, 72, 14, 56,154,182,159,247,137,158,185, 46,201,123,188, 17,193,202, 34, 78, 34,216, 27,189, 72, 64,165, 92, 96, 39,157, 82, +138, 48, 77,222,169,149, 22,153,105,203, 94,121,238, 32,163,211,213,224,209,180, 81,115, 86, 31,181,175, 59,191,166, 25, 90, 70, +217,203,158,212, 48,246,209,185,159, 86,225, 44,106,102,173,198,211,234,112,171,141,192, 72,101, 95, 38, 95,157, 70, 97,161,145, +220,134,234,236, 61,111,180,178, 58,239,210, 35, 33, 44, 84,244, 22,194,230, 28, 76,247, 49, 2, 38,100,222, 93,203,156,188, 6, +215,115,222,235,138, 84,246, 59,148,167,222,169, 26,115, 26, 89,224,219,174, 21, 27, 63,168,119,151, 31,184,218,215, 93,119,138, +174, 91, 44,118,212, 65, 17, 77,235,192, 47,145, 85, 42,104,176,225,213,129, 53,224,107,160,100,174,253, 42, 2, 67, 41,243, 26, +163, 90,101,170,230,233,103, 13,218, 19,129, 46,235, 88,221, 38,134,115,213,187,119,239, 99, 45,158,132, 86,150, 53,105,179,144, + 9, 66, 29, 38,255, 89,250,126, 22,139,207,138, 1, 51,166, 90, 3,209,235, 36, 58, 82,192,162, 98,100,127,125,125, 93,231,160, +165,106,174,242,119,242, 93, 76,195, 67,227, 85,103, 65, 96,135,118, 27,239,246,173,146,187,205,134,254,244,148,178,223, 71, 46, +121,144,114,146, 5, 38,176,128,133,241, 93, 90,101,225,123,105, 69,209, 46,121,188,101,236,149, 60,141,166,206,170,120,153, 63, + 13,178,132,146,204,232,189,182,149,247,175, 55,103,236,202, 2, 87,153,213,134,104, 88, 39,194, 35,217,186,104,153, 69,246, 49, +222,119,155,193,236, 25, 47, 21,177,209, 45, 0,154,124, 12, 59,140,200,166,247, 85,253,228,157,122, 91,213,251, 7,172,186,146, +151, 69, 89, 58, 91, 51, 42,115,158,252,228,161, 80,254,160,116,145,165, 91, 88, 80,129, 13,234, 62,198,133,127,154, 97,119,196, + 30, 12,148,191,242,125,210,159,124, 21,249,242,109,127,131,222,241, 7, 33, 77,198, 45,142,110,185, 10, 53, 76, 73,144,171, 43, +201, 11,203, 36,116,109,121,107,123,174, 41, 42, 90, 45,190, 58,126,154, 97,251,224,136,124,219,119,153, 42, 2,175,158,192,173, +236, 0,238,227,232,139,190,193,224, 81,248, 36,139,186, 17,121, 8,206,251, 78,225, 86,196,124, 62,184,164,126,247,128,189, 83, +176,193,208, 47, 63, 65,126,215, 25, 60,187, 69, 94,217, 34,210, 35, 39, 9,123,127,132, 62, 33,231, 81,157, 28, 60,130,212,196, +176, 11,144,159, 56, 67,158,219,192,219, 71, 31,251,107,130, 77,129,231, 30,194,107, 2,249,223, 7,253, 67,113, 73,156, 70,226, +205, 30,228, 6,148,247, 97, 56,247, 46,227,115,157, 19,232, 94,232, 29, 92,114,186,133,250,252,210, 53,111,126, 36, 12,168,223, +133,241,125,184, 24,177, 71, 5, 30,140,240,104,194, 30,150,185, 91,175, 87,158, 71,108, 79, 11,246,110,133,135, 46, 50,212,151, +183,232,159,185,131,254,158,123,240,236, 43,208,189,228, 29,175,253, 44,156,255, 53,236,209,119,224,193, 19,120,174, 67,238,220, +133,252, 47,131,117,254, 61,247,191,130,189,243, 93,248,202, 21,252,218,142,122, 56,117,225,223,109, 3, 29,176,209,176,115, 63, +108,117,167,112,209,193,101,194,222,120, 23,121,254,111,192,254,159,193,230,115,190,151,238,223,128,252, 42,200,205, 21,181, 67, + 86,216,207,166,174, 28,227, 63,235,234, 2,255,228,241,188, 62,120, 51,164,231,225,228, 95,135,237,143, 67,121, 23,166, 15,192, + 46,221,126, 71,129,116, 3,250,155,144,111,129,190, 30,109, 60,160, 23,110, 88,239,108,245, 61,197,255, 94,189,132,250, 8,134, +127, 12,195,223,134,223,122, 23,251, 31, 10,245,171, 7, 46,167,129,135, 25, 62,238,148,167,213,152, 38, 95, 44,164,212, 65,191, +137,156,104, 67, 73,145, 65,109,115,112,133,103, 96,183,209, 54, 84,153, 72,116, 75,102,130, 45, 29,223,132,123,193,253, 92,203, + 88,206, 76, 98,140,165, 64,241,115,167,152,139, 93,205,165,212,243,206,213, 59, 50,157,169,159,197,100,241, 91, 95, 19,166, 53, +255,155,205, 35,210,165,131,149,107, 29,107,109, 10,247, 8, 92, 57,195,216, 70, 20,235,185, 9,131, 85, 54,110, 8, 9,136,158, +231,127,155,120,113, 50, 75,254, 86,137, 99,115,119,221,190,191,249,122,212,240, 66,129,153, 53,183,232,232,155, 64,120,134,150, +204,187,217,213,213,109,215, 69,100,215, 18,207, 2,168, 51, 39,191,253, 78, 68, 57, 91,186,235, 31,252, 63,157, 99,188,117,102, +194,235, 66,128,139,247,177,217,249,186, 70, 45, 85, 13, 81,100,241, 34, 45, 2, 88,142,213, 47,190,110,140,194,103,170, 46,162, +140, 66,166,129,208, 84,160, 15,122, 27,179, 7,220,155, 59, 13,150,190, 52,143,122,116,244,165, 86,191, 7,139, 93,195,225, 46, + 58, 21,159, 25,149, 90,152,166, 9, 82,231,151,171,248, 4,123,178, 74, 45,109,164,238, 77,240, 8, 28,143, 7,108,104,201,108, + 54, 23,157,182,210,172,181,119,172,154,161,165,248, 68,188,115,224,154, 76,174,230,215,148,253,125, 8, 1, 93,238, 54, 27, 44, + 5,253, 70, 12, 73,222,202, 99,101,246, 45, 90,178,101, 31,216, 36,215,226, 41, 84, 57, 41, 93, 45,241,176, 69,151,172, 75,162, + 13, 51,153, 41, 70, 54,213, 13,251,213, 42,165,122,199, 43,193,137,111,185,191, 13,229,170,115,122, 20,148,172, 94,225, 76,213, + 19,197,114, 63,143,113,102,128, 65,168,243,173, 44,161, 36,169, 20,218, 64,174, 69, 12, 82, 6, 24, 58,196,170, 11,250, 40,241, +168,232,252,115,107, 27,225,229, 32,137,133,245,133, 85, 53,222, 62,189,131,193,201,100,110,153,168, 5,114,242, 39,250,104,238, +225,110,138,197,211, 4,167,138, 29, 6,236, 27,231,240,191,190, 69,250, 15, 94,133, 47,223, 65, 53, 83,223,242,215, 39, 99,220, + 26, 15,243,244, 66,134,120,102, 90,246,115, 89, 18,172,109,245, 51,213,120, 16,199, 58, 3,254, 56, 23, 56, 25, 13,253,254, 1, +106, 66, 78, 5,185,147,224,238, 14, 78,178, 43,137,174,226, 50,191, 29,202,110, 12,246,129, 26,203, 9,187, 28,124,215,220, 9, +246,193,145,250,205, 3,118, 82,160,135,250,235, 71,248,165, 11,120,117,131,124,170, 71, 94, 76, 46, 54,123, 53, 35, 99, 14, 48, +139,193,183, 6,255,248, 92, 84,228,139, 59,228, 78,143,189,115,112,213,249, 85, 0,244,127,248, 9,188,120, 3,186,255, 10,244, + 15,196,229,213, 55,229, 72,140,161, 5,234, 55,225,248, 0,166, 12,187,206, 35, 92,159,243,177, 62,242, 67, 32, 47, 68, 33,240, + 0,244, 28,236, 91,112,120, 12, 31, 11,124, 84,144,183, 7,236,193,232,124,117, 49,234,177, 96, 15, 11,246,222,136,125, 80,144, +154,208,251, 27,210,127,122, 11,249,221,183,144, 23,206, 96,211, 65,237,224,240, 33,188,247, 13,234,191,120, 76,253,123,143,225, +235, 7,236,194,227, 31,229,134, 34,247, 19,188,252,143,252,198,233, 5,222, 83,236, 42, 83,199, 12,249,128,157, 30, 97,175, 46, +210,155,119,236,161,112,189,236,208,203,130, 78, 29, 92,244,216,167, 15,240,252, 55,145,179, 55, 97,123, 6,221,125,216,126, 22, +250, 31,135,252,162,119,251,146, 22, 3,147, 18, 35,246, 28,169, 39,233,250,168,243, 19, 6,163,235,189, 87, 1,217,122,209,144, + 94, 9, 32,122,157,243,207, 67,232, 50,227, 64,150, 80,130,109, 40, 77, 74,196, 80,118,241, 30, 29,160,188, 5,227, 95,198, 62, +252, 37,248,219, 7,236,111, 21,134, 15,175,120, 40,149,247, 54,194, 5,190, 55, 79,197, 87,128, 57,119,254,137,175,149, 74,245, + 67, 78,149, 12, 76,146,168, 9, 36,249,250,172,214,226,218, 61, 96, 44, 70,169,147,159, 33,101, 57,152, 27, 68,101, 68,153,178, +146, 52, 81,106, 97, 63, 20,178,154, 83,202, 88,180, 58, 37,197,247,142, 67, 88,100,189, 31,118,213,123,173,182, 34,139,249, 37, +209,246,231,134,163, 92, 91,145,221,118,193,237,252,171, 43,155, 96,169,198, 85, 32,101,219,197,126,150,224,188, 58,163,253, 68, +132,162,198, 80, 74, 48,230,109, 57,161, 86, 2,185, 53,239,189,174,222,235,201,184,166,188,110,231,236, 18,111, 18,201,141, 97, +251, 42,164,217,143,125, 93, 15,178,254, 94,204, 28,122,137, 11,253,218,118,221,214,187,112, 91,177,165,116, 14,198,177,133,112, +194,122,190,180, 14,252,106, 59,232,182,183, 78, 73,188,128,171, 54,171,196, 91,240,203,156, 64, 41,202, 70,124, 21, 82, 98,231, +172,234,175,121, 10,167, 66,109, 34,233,153, 96,186, 56, 17,210,252, 57,119,200, 88,177,226,220,251, 32,184,105,117,138,100, 69, +174,241,243,125, 58, 82,188,161, 11,171,113, 78,186,228, 13,168, 80, 75,241,152,232, 40,102, 38, 51,142,227,192, 52, 28,195, 54, + 29, 13,225, 28,147, 27, 39,255, 39, 8,125,213, 28,104,162, 34,142, 86,206,105,150,213,207,179, 32, 19,114,234,187,200, 19,169, +164,156,200,187, 29, 89,171, 39,142,197, 40,220,125,141,214,138, 81, 87,170, 39,175,158,196,204,125,153, 45, 47, 61, 40, 51,201, +150, 48, 24,109, 96, 26,243,164,205,106, 94,133,205, 9, 64,178,108, 97,196, 22,122,146, 52, 17, 70, 82,239,190,109,194,180,247, +170,170, 76, 88,118,248, 76,173, 37, 42,191, 28, 63, 92,248, 85, 17,196, 38,116,170,164,188,161,150,228,219,185, 58, 33,195, 33, +126,166, 18, 74, 75, 91, 60,245,197,189,242,189, 24, 35, 30,191,170, 1,115,104,108,235,130, 6,204, 33,128, 28,147, 57,210, 54, +235,210, 53,197, 7,147,205, 18, 12, 44,119, 50,246,209, 1,186, 66,253,234, 83,228,175,191,131,254,204,203,240,165, 51,164, 55, +210,119,124,172,223, 85,184,245,241, 62,188,220, 54,251, 98,143,133,120,205,155, 55,125,113, 37,180,236, 97, 86, 89,209, 37,214, +181,253, 97, 66,222,219, 35, 91, 37,223, 8, 97,216,189,141,175, 11,186, 50,123, 51,103,101,222,105,130,171,201, 67, 67, 30, 77, +240, 65,133, 23, 5,158, 73, 62, 69,120, 58, 96,155, 8, 54,153,128,223,218, 99,223,240, 16,115, 41,226, 17,174,127,248, 22,250, + 83, 55,177,179, 30,126, 8,120,119, 68, 63,123,138,221,234,176,119,246,254,195,137,250,222,246,228,145,219,158,182,127,213,199, +237,178,249,132,218,181,149,239,125, 92,234, 7,144, 91, 72,151,224,134, 32,103, 29,228, 31,243, 17,112, 25,192,190,231,151,249, +244,158, 71,118,189, 43,240,193, 4, 31,141,240,209, 64,189, 56, 82,135, 9,158, 26,246,176, 32,143,196, 73,103,127,252, 14,250, + 7,239,192, 43,103, 17, 13,171,176, 63, 96,111, 62,161,254,220, 35,166,127,112,206,240,189, 43, 31,205,111,160,222, 16,210,173, +140,116,160,147,160, 31,128,188, 55,198,231, 80,188, 88,233,253,194,177,106,240, 36, 56,248,125, 94, 70, 46, 18, 62,249,174, 96, +214, 97,181,146,174, 12,206,123,248,190, 96,119, 39,184,255, 8,185,253, 24, 78,222,130,237,255, 71,215,187,198,106,150,165,119, +125,191,103,173,181,247,251,158,107, 85, 87, 85,223,123, 60, 61,211,227, 25, 27, 15, 54, 54, 54, 25,108, 19, 18, 8, 96, 72, 72, + 36,164, 68, 10,136, 64, 72, 66, 4, 81, 34,132, 20, 69,185, 8, 72, 20, 62, 68,202, 7, 4, 9, 81, 66, 20, 43, 16, 66, 32, 22, +118,226, 27, 96, 99, 25, 12,182, 99,123,152,177,103, 60,198,115,233,238,153,158,190, 85,117,215,237,156,243, 94,246, 94,107, 61, +249,240, 60,107,239,253,158,106,143,212, 83,125,169, 58,239,109,191,123, 61,151,255,255,247,255,167,198,177,143, 71,254,217, 39, +187,200,194, 17,116,223, 0,171,143, 67,255, 50,200, 51,254, 62,118, 79,190,143,135,136,145, 73,132, 55,237,112, 14,212,182, 58, + 83, 63, 36, 47, 96,156,145, 37, 37,193, 14,244, 0,229, 17,228,127, 4, 87,255, 3,250,185,183,224,251,133,250,217, 29, 87,187, + 61,111, 39,184, 27,133, 93,101,186, 89,210,245,118,176, 86,181,239,184,107, 72,178, 66, 40,194,190,157, 53, 49,152,255, 62,118, + 12, 49, 81,115, 65, 60, 53,176, 58,241, 45, 37,247, 87,187,216, 72, 5,134,152,216, 81,185,145, 71, 11, 73,241,123, 78,144, 64, +212, 72,145, 72, 13,230, 99,206,181,113,115,195,180,175, 69,196, 89, 25, 62, 49,208, 22,254,195,148, 92,214,102, 34,205,219,220, + 68,196,180,113,177,204, 59, 80, 21,161,136,129,143,182,110,213,203,190,103, 63, 10, 80,106,160, 70, 56,166, 80, 84,184, 82,235, +238,135,146, 73,181, 90, 40, 85,179,202, 45,242,193, 85,235,181,132,243, 25,119, 59,128,117,139,112, 96,227, 10,158,237, 33, 64, +174,101,242,187, 79,179,133, 73, 11, 53,215,128,211, 21, 83, 23, 2,188, 57, 32,122, 78,145, 91,136,217,104,215,255,181, 57, 81, +219,133, 91,148, 77, 99,220, 91,214,188,197,208, 86,106,153, 31,184,221,161,218,121,146, 4, 82, 72,102,167, 84,139,180,174, 30, + 29, 94,125,223, 45, 11,101,252,196,196,247,207,177, 86, 27,203,207, 72,218,121,252, 78, 99,178,187,109, 17,130,219,254, 22,200, +238,182, 82, 14, 30,214,228,164, 63,137,209,138, 24, 85,198,156, 41,206, 60, 9,193,222,183,113, 24,166,206, 90, 26,120, 71,220, +103,169,243,185, 87,235, 92, 2, 77,218, 10,159,136, 55,212,104, 75,162, 19,183,153,167, 20,162,251,201,133,110,125, 76, 58,127, + 10,125,252,158, 37,132, 77, 21,154, 93, 60, 69,213, 32,247,206, 49, 22,172,170,201, 30, 48,144, 68, 38, 25, 78, 20, 27, 41, 77, + 52,184, 22, 54,239, 29,250, 20, 67, 55,117,189, 45, 36, 99,190,232, 68,162, 39,189,225,162, 3,235,216,170, 68,163, 22,101,143, +203, 43,217,246,141,169,237, 70, 34,168,101,221,106,181,200,173, 82, 11, 50, 14, 19, 30, 48,120,240,223,228,131, 81,243,176,167, +166,184,196,200,119,169,216, 7,152, 61, 91, 89,167, 11,192, 84,150,163,170, 5, 15, 56,204, 67, 58,177, 55,160, 89,128,206, 60, +160,251,162, 88,172,232,237,104,163,248,113,132,115,165,126,246, 33,114, 43, 33,127,224,121,228,155, 3,122, 20, 9,175, 61,166, + 70,161,139,112,243,254,142,180, 41,246,146, 4,210,104,249,208, 82, 32,143, 30, 13,233, 23, 89, 55, 97,120,125,189, 81,108,146, +158,139,146,163,165,132,213,109, 70, 95,219, 25, 39,252, 36,153,189, 41, 70,179,108, 61, 54,245,185,118,174,224,127,223,148,153, + 12, 35,250, 86, 49, 53,250, 43, 61,242,114,100,252,185,145,253,202,154,215,110,173,196, 34, 68, 41,176, 55, 77, 20,119, 43,221, +223, 28,173,113,252,228, 77,187, 48,111,218,161,207,221, 45,250,230, 8,199,150, 44, 71,205,240,209, 12, 71,255, 29,200,183, 58, +250,119,176,207,244, 16, 94,105, 59,218,242, 89,180, 70,228, 41, 87,243,223, 9, 54,158,150, 15,217,243,149, 43,208, 79,195,238, + 17,220, 15,240,134,192,251, 5, 86,142, 34,123, 48,194, 87,246,232,123,133,240, 76, 79,248,246,155,132, 63,120, 3,190,225, 24, + 78, 58,227, 38,108, 50,250,234,125,202, 79, 61,102,251, 19, 23,108,223,216, 49,230, 74, 57,129,122, 35, 80,142,226,212, 94,180, + 36,193,216, 43,253,202,109,153,110,125,145,216, 12,197,109,125, 35, 22,170,178,203,182, 7,246, 60,111, 55,247,130,100,235,252, + 70, 37,142, 5,185,136,112, 47,193, 59, 9,189, 17,224,198, 8,231, 91, 75,200,235,189, 24,238,177, 9, 75, 60,182,128,157,237, +171,176,126, 1,142,126, 51,164,151,125,133,225, 59,116,130,137,227, 24,141,104, 87,223,135,242,190,141,218,117, 99, 7,115, 88, +249,190,253, 24,194,218,121,178, 30, 15,155,206,205,107,206,173, 5,152, 83,236, 73,168,152, 48,113, 74, 85,137,214, 0, 0, 32, + 0, 73, 68, 65, 84,255, 87,224,238, 15,162, 63, 94,224,239, 66,126,251,138,251,101,228,173, 20,184, 47, 86,203, 37,223, 99,203, + 58, 81,107,245,137,154,211, 18, 3, 19, 78,115,234, 68, 69,201,165, 80,139, 97,128, 99,234, 88,117, 29,165, 51,226,158,142,197, +239, 45, 75,232, 71, 35,110, 85,114,182, 14,232, 40, 9,151,213,240,168,125,138,116, 4,114,181,100, 44,114,177,251,158, 52,111, +182, 44, 60, 83,122,144,113,113,120,128,169,219,152,102,107,152, 58, 42,183, 97,101,157, 11,104, 16, 20,236, 64, 47,254,218, 10, +138, 22,163,222,117,162, 28,185, 55,189,212,202,137, 59, 43, 55, 24,190,182,104,177,166, 35,122, 55, 39,184, 56,184, 30, 98, 16, +166,243,120,182, 16, 79,180, 79,153,253,252,209, 3, 71,144,121,172,172, 79, 56,201,213,139, 7,153,136,104, 77,207,163,194, 36, + 72,148,197,129, 57,163,191,229, 96,148, 47,173, 3,151,131,176, 56, 86,190,255,180, 18,209,116, 14,162, 70,229,211, 16,208,106, +199,249, 88,125,130, 35, 54,105, 73,193,198,209,197,155, 59, 69,167, 91,122,112, 87,150, 65,118,132, 82,148,170,217,227, 74,109, +157, 83, 23, 30,251, 24,230,233,195,236, 81,183,247,182,162,158,170,120, 61, 44,126, 30,197, 55,143,251, 80,172,216, 92,117,189, +189, 39, 46,156,110, 51,146,146,139, 33,199,181, 78,227,123,185,174, 89,240,107, 36,132, 89, 77, 62,137, 38, 39,218,221, 44,206, +108, 92, 2,149, 64, 18, 2,165, 22, 82,234, 73, 71, 39, 86, 97, 20,219, 7, 52, 75,198, 36, 16, 75,238,131,243, 71, 31,106, 37, +151,106, 95,206, 0,189,170, 69,183,166, 72,138,129, 72, 37, 77, 81,117,118,200, 83, 26,186,199,199, 31, 85, 80,169, 7,246, 6, + 22, 99,251, 16,131,141,181,101, 65, 83,242,192, 2,243,157,207,240, 3,145, 4,201, 14,175, 32,214,205,139, 58, 75, 89,138, 69, +236,169,229,231, 74, 35, 37,249,222, 81,171,113, 90,197,171,254,214,238, 6, 26,186, 85,102,107,129,255,251, 34,144,213,170,238, + 92,171, 97, 71,219,217, 83,176, 36,152,149,192, 90,109,167, 92,197,169,161, 9, 61, 90,155, 82, 62, 6,234,231,175, 8,183,223, + 67,126,251,179,200, 55, 10,172,133,208, 39,106, 23,136, 41,112,254,222,134,112, 89, 8, 98, 58, 50,196,148,190,120,218, 19,190, +163, 11,139,207,187, 49, 67, 86, 73, 89, 91,104,144, 77,164, 99,165,190,157, 9,221,222, 14,156, 19, 23, 95, 93,101,120, 35, 83, + 31,100,184,169,246,156, 95,207,104, 15,242, 82, 7, 55, 61,164,250,162, 32,223,210,193, 63,177,178,134,181, 48, 22, 24, 81,116, +132, 97,180, 26,166,127, 70, 56,189,200,132, 97,132,215, 55,222,198, 4,184,187,131,207,239,209,207,108,145,151, 87,200, 31,234, +224,198, 5,220,252, 70, 8,191,207,133,101, 23, 30,152,221, 63, 97,160,161, 60,128,242,203,166,224,191,221, 35, 47,172,224,104, + 15,229,194, 70,237,225, 4,198, 95,134,203, 7,112,127, 13, 15,170,105, 2,190,239,134,165,189,253,133,119,224,125, 37,124,252, +140,240,199,215,240,219,111,194,233,202,238,156,187,130,188,254,144,242, 11,143, 25,126,248, 49, 23,191,190,225,241, 88,184, 60, + 18,120, 42, 26,115, 96,122, 30,158, 17, 36, 86, 75, 38, 79,233, 43,105, 17, 23,172, 86,124, 33,115,210, 96, 8,205, 54,165, 7, + 52, 59, 79,191,176,235, 48,248, 1,181, 85, 66,169,200,182, 32,219, 12, 15, 83, 75, 91,178,241,248, 26,243,149, 31,251, 53,118, +126,137,220,186,128,211,135,144, 31,195,254, 49,172,191, 12,253, 43,144,110, 59,216,224,161, 29,188,245,109,216,191, 14,195,149, + 21, 80,165, 90, 17, 21,125,164, 31,130, 29,252,169,154, 5, 46,125, 7,196,223, 14,188,232, 93,122,235, 77,131, 21, 0, 53,155, + 91, 97,251,231,208, 47,255, 26,252, 47,137,250,207, 6,118,155, 29,119, 69,121, 43, 5,182, 14,110, 10,222, 1, 73,144,137,119, +221, 20,237, 97,233, 97,246, 27,107, 84,166,213,158,162,228, 98,223,200,174, 91,147, 98,178, 14,186,139,140,197,110,216,115, 55, +198,140,244,172,160,157,176, 74,129,203, 12, 67, 16,207, 22, 42,104, 41,118,159, 11, 62,221,155,212,226, 30,117,231,145,210,165, +161, 57,107, 59,216,120, 98,140, 76,163, 90,186,104,104, 82,166, 47, 50, 38,101,193, 59,173, 14, 25,217,250, 72,254, 72,140,151, +191, 14, 66,142,129,162,133,163, 86,247, 85, 27,221,182, 26,176,121,210,203,116,208,201, 19,163,240,209,133,126, 77,133, 95,151, +178, 7,108,109, 17,167,164,206,234,246, 57, 57,184, 31,107,187, 39, 30, 80,222,174, 67, 89,230, 61,120,153, 10, 3,109,137,198, + 51,244,101,209,109, 90,113,209, 80,187, 38, 96, 28,171, 33,191, 87, 33,206, 60,246,162, 20,205,182,223,246,142,186,199, 8,125, +218, 37,114, 81, 74,105,170,242, 38,101,170, 19,191, 99,116, 22,190, 44,232,112,243,218, 82,166,102, 50,132,198,100,145,137, 9, + 82,139,250,132,134,195,132,185,197, 27, 49,233,190,252,156,171, 77,251, 17,170,139, 38, 93,192,232,212,211,234,170,120,209, 37, +172,134,131,194, 76, 61,210,220,180, 96,179,181,112, 38,177,232,129,252, 80,196,192,113,164,142, 84, 74, 53,177, 91, 58,178, 23, + 50,152,226, 85,101, 6,243,182,157, 19,110, 21, 72,162,236, 75, 97,168, 58,171, 69,181, 13,108, 44,135, 56, 33,116,174, 84,149, +160, 68,204,207, 93, 99, 68,181,152, 48, 78,116,254,248,165,153,233,195,252, 3, 29, 97, 40,117, 54,237, 91,122,145,250,248,202, + 51,112,213, 58,184, 32,160,161, 35,116,130,196, 4,219,209, 46,198, 82, 76,252, 86,153, 47,220,106,129,217,177,165,165,120, 5, +179,220, 76, 77,158, 88, 89, 38,243,224,254,119,183,222, 86,200, 85, 24, 58,229,120, 83,224,225, 96,202,241,170,176,117,224,244, + 38,152, 61,234,212, 99,154,206,162, 77, 69,215,193, 82,193, 66,128, 47, 95,161,199,247,144,239,184, 13,175,156, 88,252,231,113, + 64, 58,187,193,156,197, 13,242, 56, 19, 86, 74, 26,109, 98,157, 60, 77,110, 26,251,133,153,177,191, 10,112,220, 41, 55,215,202, + 81,132,116,105,231,165,244,126, 34, 93,101,120,144, 12,163,229,222,122,189, 40,212,207, 95,152,232,233,165, 96,122,171, 71, 66, + 88, 87,219,147,191, 89,224,173, 17,190,183,163,255,151,142, 24,254,241, 21,229, 68,173,176,241,102,180, 4, 19,233,140,254,133, + 36, 96, 9, 57, 95,119,170,208,195, 10,247, 50,225, 60, 34, 87,152,234,252,197, 29,172,254,109, 59,213,202, 23, 77, 12, 23,158, +126,242,206,161, 3,148,207,192,238,158,237,127, 95, 88,217, 11,213, 8, 97, 15,241, 10,242,231,224,254, 59,240,110,178,105,200, +163, 0, 31,235,224,108, 5, 63,251, 0,126,239, 25,252,214, 99,228,153,181,137,162,134, 17,222,126,140,126,105, 67,249,193, 7, +236,126,101,195,230,114,100,119, 36, 92,222, 20,182,125,100, 91,124,127,154,231, 27, 84, 18,166,152,226,137,236,167,138, 22,153, + 50,170,139,123,138, 37, 96, 59,209, 22, 58,238,142, 15,233,197, 60,251,218,162,255,100,214,187, 69,108,210,164,106,218,129,157, + 65,111,100, 31,204,205,177,242,234,160, 11, 38,120,116, 71,129,222, 23,184,115,129,220,217,194,241, 21,228, 75, 67,176,246,183, + 77,224, 23, 86,110,146,117, 5,102, 13, 86,133, 21, 19,196, 50,110,237, 48,151,199,208, 93, 65,255,109,208,255, 81, 72,223,228, +163,252,236,217,176,109, 68,176, 54,117,251,246,111,193,213,255,140,254,202, 5,250,191,246,228, 47, 92,113, 57,236,120,167, 19, +238,138,161, 80,131, 19,219,136, 66, 9, 54,109, 91, 78,189, 90, 79,104,105, 85,243,184,177, 70,163,217,185,127,196,187, 60, 37, +103,115,162, 83,125,101, 23,163,133,201,184, 56,137,226, 55,201, 40, 12, 17,118,158, 75, 20, 5,246,165,146, 61,212, 37,250,148, +209, 10,119, 3, 91,101,135, 67,136,139,242,170,159, 22, 65,155, 19,230, 80, 86,118, 16, 12, 93, 77,149, 62,161,181, 91,239,171, + 79, 26,189,213, 79,223,236, 43,135, 73, 92,230, 81,173, 33, 38,118, 82, 9,197, 82, 29,119, 49,204, 96,148,133,194,125,210,249, + 44,159,153,204,121,240,178,160,235,181,195,182, 0, 99,173, 6,215,241,108,113,173,213,195, 89,194,194,230,182, 56,208,101,238, + 84,151, 56,107,117, 17,113, 59,100, 2,115, 86, 19,141, 90, 26,194, 92, 32,248,123,213,137, 16, 67, 7, 98, 41,101,117,114, 50, +217,189,219,168,109, 50, 29,230, 77,209, 17, 67, 36, 36,139,220, 46,101, 36,123,220, 96, 97,206,197,152,217, 42,115, 17,177, 76, +116, 91, 12, 16,102,222,160,206, 58,173,234,202,116, 14, 96, 56, 75,246,237,181,207,223,213,244,234,128,159,125, 25, 97, 15, 37, +231,197,246,171,253, 76,153,200,112,184,141,186,217,235,218,148, 69,155,208, 27, 19,220,233,129, 95,126, 94,219,197,224,147,171, +126,141,166,142,164, 81, 8,235, 35,200, 35,227, 48, 16,171, 93,140,237, 34,175,137, 57,227, 72,132, 40, 86, 81,218, 95, 21,245, + 69,110,179,156, 24,147,194,126, 95, 23,102, 36, 99,154,198, 79, 17, 77,130, 76, 86, 3, 27, 35, 53,219,129, 52,177,137,127, 25, +164,206, 22, 10, 7,220,122, 0,140,237, 30, 76, 85,232,240,131, 97, 11,169, 35,134, 8,171, 19,180,236,208,113,239, 39,141,137, +216,196, 43, 91, 25, 71,155, 48,250, 14,172,224, 55, 53, 15, 42, 40,234, 57,242, 90, 33, 55,251,136,241,173, 91,193,209, 38,236, + 99, 85,219,177,239, 43,225,190, 9,202,164,183, 19, 95, 7,117,143,113, 65, 30,244,126,242, 97,255,253, 78,135,164, 0,217, 88, +236,188,182, 69,211, 67,228,219,206,225, 27, 78, 44,171,251, 36, 16,142, 34,117, 21, 56,150, 13,225,241,224, 56, 69,187,120,227, +202,198,240,227,130, 60,215, 46,186, 20,149,152,160,223, 64,119,212,209,255,235, 55, 8, 47,244,118,243, 59,139,118, 24, 94,218, + 88, 93,111, 39, 27, 79,127, 45, 82,191,188,131, 13,134,121, 61, 14,232,133,227, 72,215,130,190, 54, 32,191, 10,225,251,206, 88, +127,110,224,242,225,136,158, 47,214,178,193,242,182, 79, 43,172,190,115,101,213,241, 47,109,225,249,158,240,189, 39, 70,127, 59, + 57, 50,159, 94,142,240,209, 4, 31,138, 16,191, 27,234, 93,168, 95,128,248,123, 22,160,244,197,222,183,188, 11,229, 47, 89, 55, +123,243,204,184,244,187,140,116,157, 29, 64,229,211,112,111, 15, 95, 19,120,119,240,215,182,182, 47,207,166,192,119,220, 48, 15, +145,102,184,220, 81,191,116, 65,249,233, 11,234, 47, 94,146,223,221,145, 99,229,209,177,176,187, 25, 24, 68,184,242,201,195, 80, +204, 23, 26,213,166,220, 41, 64,109, 43,241, 57, 57, 98, 50, 59, 20,153,101,100,141,179, 48,223,213,125, 2,213, 5, 66, 10, 83, +178,147,116,174, 45, 73, 62,229,161,117, 98, 21,173, 35,146,221,198,153, 61,124, 70,220, 75,219,196, 19,163,152,234,108,140, 48, + 88,200,142, 60,243, 46,156,108, 32,191, 8,101, 15,249, 2,186,231,236,175,244, 52,196, 79,192,234, 33,212, 71,246,222, 14, 95, + 51,135, 64,200,112,252,109,112,252,199,160,255,164,143,227,247,254, 87, 27,108,250,162,109,124, 13,182,255, 13,188,247,243,232, + 63, 9,232,143,118,148,215, 46,184, 40,123,222, 88, 5, 30,170,189,245,125,152,245,122,134,134, 46, 19,205,172,248,158,145,197, +120,183,101,190,183,155,103,136, 66, 41,198,116, 87,135, 52,170, 91,130, 36, 89,100,161, 20, 83, 40, 87,169,132, 24,109,160, 0, +164, 24,169, 57,179,203, 5, 77,214,249,151, 42,140, 81,233,146, 16, 75,160, 83,179, 83, 21,204,250,213, 40,113, 38,176, 2,117, + 86,122,110,222,101,157,221, 60,237,239, 99,179,133,133,198,135,119,174,249, 53,117,184, 89,231,116,154, 36,204,191, 26,140,166, +115,175,123,115,201, 70,255,121,235,162,142, 76,144,169,104,172, 94, 24, 45, 0,163,115,113,225, 75,198, 41,174, 85,219, 64, 89, + 60,205,172, 82,106,165, 80, 73, 26,233, 66, 36,164,206,114,187,151, 34, 45,213,107,135,215,225,252, 76,125,226,217, 94,179,133, +104,133,131, 88, 85, 59,152,151,172,120, 91,103,166, 96,247,220, 65,149, 82,203,100,251,154, 44,130,238,163,143,194, 98,223,111, +151,253,144, 51,185,152, 14, 66,155,142, 97,217, 68, 59, 14,182, 86,253, 64,137,232, 18,207,222,220, 90,234, 69,217,100,169,114, +241,153, 4, 62,200, 6,176,240,217, 7,155, 4, 59, 58, 56, 52, 70,123,153, 19,237,138,206, 63, 91,181,186, 61,110,241,100,106, +225, 9,173, 98, 59,252, 91,209,218, 8,142,106,194,108,243,133, 71, 86,125,207,106,125,196,160,149, 36, 33, 17,251, 35, 40,197, + 98,248,114, 54, 24, 75,106, 21,135, 78, 72, 84, 99, 92, 84,178, 4, 50, 62, 54,147, 73,103,106,157,179,139, 75,134,170,236, 67, +160, 23,103,238,186,113, 51,136,139,206, 38,168,131,206,201,107,237,255,155,130,180, 46,144,133,218,152,242,234, 54,181,234,123, + 20,245, 16, 7,161, 14, 35,116,123, 88, 37, 40,163,249,218, 67, 7,169,186, 7, 93, 9,193,199,103,121, 36,116,238,128, 12, 30, +203, 68,157, 5, 20,170, 84, 9,147, 82, 20,148, 80,149,197,196,196,118, 30,213, 88,202, 89,109,204, 19, 47, 71, 11,113,121,170, +243,145,110,181,187,116, 20,116, 55, 90, 73,142, 98, 51,113,151,132, 6,231,150,135, 2, 95,186,180,113,207,111,190, 1,207,244, + 72, 58, 71, 86, 1, 89, 9,146,132,163,183,149,244, 96, 36,105,229,162, 51,208,153,168, 29,236,197, 89, 50,102, 43,174,108, 71, +187, 95, 31, 21, 88,253,137,155,132,223,122, 3,222,202,232,107, 91,234,107,174, 50,201,198,110,151,151, 87,112,179, 35,254,171, +103,240, 51, 80,191,180,131,175,102,116,173,240,114,111,202,238,231, 18,114, 21,169,159,222,193, 42,209,255,190, 35, 86, 63, 80, +216,239, 21, 93, 51,141, 74,143, 3,156,127, 44, 34, 79, 7,248,197,193,172,110,191,255, 12,118, 22,201, 74, 16,228,102,178,209, +255,109,133,243,155, 16, 62,100, 93,120,184, 9,225,169, 39,187,244,122, 1,187, 63, 13, 15,190,108,190,232, 22, 26, 81,253, 96, + 31,130, 57, 10,190,224, 5, 73, 4, 62,126, 4,223,116, 2, 55, 79, 92,184, 56,194,171, 87,212,127,252,144,252, 19, 23,148,247, +246, 20, 10,122, 44, 12,207, 89, 23,180, 27,224,170, 8, 67, 54, 81, 98, 46, 77, 79,161,211,152, 76,174,145,226, 68,231,239,221, +193,223,135, 89, 43,201, 98, 52, 27,212, 86, 81,210, 71,226, 81, 34,220,233,168,247,178, 21,168,209, 44,161,166, 65, 83,116,112, +193,165,135,233, 72,115,123,104,157,226, 81, 29,131,232, 24, 66, 87,217,150,132,230,136, 60,243, 24, 78, 71,123,237,106, 28, 51, + 83, 71, 61,111, 35,249,240,146, 11,220,178,145,233, 16,251, 44,186,151,252,240,222, 64,189, 15,225,212, 14,113,241, 3,189,238, + 97,255,147,112,249, 23,209, 87,239,194,223,233,208, 95,175,148, 71, 27,246,101,207, 59,125,224,113, 49, 81, 90, 87,175,225,114, +181,137,184, 28,208, 82, 57,200,179,182,173,196, 98,188,216, 68,117,141, 75, 46,193, 18,186,130,143, 73,115,165, 76,119,199, 98, +252, 12, 17, 74, 8, 83, 20,166,196,142, 81,173, 64, 75,177,253,206, 74, 47,144,162, 48,146,168, 90, 25,198,226,147,130,106,102, +219, 73,143, 36,104,148,137,120,214,196, 82,234, 2, 91, 59,204,108,175,153,105,163,247, 67,251,211,212, 37,234,236, 5,111,112, +175,176,112, 39,142, 13,156, 35, 70,136, 11,170,142,180,181,217,136,184,112,175,168,146,107,246,149,103, 90,246,155,214, 43,235, +204,254, 40,205,119,221, 60,245,142, 63,181, 32, 23, 83, 2,152,191, 59, 80, 67,128,146,231, 0,173, 32, 7, 81,179,211, 89,182, +152,248, 79, 13,133,180,199,156,191, 43,213,133,216, 77,119, 21, 38, 40, 76,164,138,237,207,171,251,193, 39,128, 14,115, 74,153, + 46,166, 16, 19,112,198, 47,154,170,117, 18, 43,206,135,185, 28, 60, 47,185, 22, 19, 87, 93,144,221,180, 3,246,124,226, 12, 25, +107, 98, 72,173,211,107, 21,157, 3, 89, 38,157,153,179,118, 67, 48,103, 69,234,122, 98, 50,129,156,113,209,195,204,207,247, 21, +128,230,106,159, 69,206, 72,201,147,126, 99,186, 40, 22,232,220,131, 59, 77,173,132, 24, 38, 66,107,173, 94,120,186,142, 64,244, +152,152, 18,117,216,147, 82, 3,184,172, 86,200,214, 56,198,213,241,129,181, 56,131, 41, 4,106,173, 36, 42, 42,129, 18, 18,140, +197,184,234,178,172, 13,235,116,200, 23,183,122, 13, 26, 72,216,126,221,186,203, 74, 10,209, 88,187, 62, 22,210,108, 35,159,118, +129,183, 40,195, 57,185,196,165, 26,165,221, 49, 77,113,152,125, 60, 46,126,217,170,102, 24,118,232,234, 24, 66, 79, 25,242,132, + 45, 52,171,157, 3,105,220,207, 30,125, 7, 84,149,201,167,217, 10, 13, 27,171, 23,215,222, 69,255,146,251,151, 99,106,206,108, + 95,167,193,178,145,199, 4, 93,173,132,199,158, 6, 20, 65,119,131,141,184,143, 76,157,104, 82,122,236,228,243, 73,166, 4, 80, + 87,236, 75,172,240,203,143,208,199, 35,242,157,231, 70,112,147, 35,100, 5, 97,149, 44, 73,236,141, 13, 79,221,223,147,174, 70, + 86, 21,182,193,190,240,187, 98,194,190, 16,117, 2,101,108, 54, 74, 60, 75,132, 23,123,248,218,158,242,115, 27,234,171, 91,234, +222,118, 80,225,220,158, 83,120,184, 34,252,166, 99, 56, 10,132,223,113,138,124,234, 4,253,245, 45,250, 83, 87,232,175, 15,240, +116,178, 3,231, 27, 87,132,123, 10, 63,159,145,127,173,231,248,183,174, 24,126, 97,203,110, 29,136, 1,214, 43,225,164,171,232, +166,194, 47,110,145,231,142,144,239, 89,193,195, 66,109,201,110, 27, 69,198,140, 60, 4,121, 74, 29,170,178,247, 89,245,167,230, + 15,125,146,219,142,144,255, 11,244,205,159, 65,127,254, 41,216, 95,193, 75, 9,249,200,218, 90,192,161, 82, 63,243, 24,253,145, + 75,228,155, 59,228,119,156,193, 51,189, 21, 13,162,240,254, 99,120,235,138,250,163, 15, 25,254,209, 35,198,253,200,120,164,212, + 27,198,197, 47, 62, 97,106, 19, 15,116,206,176,143,190, 82,104, 73, 84, 50,225,141,231, 52,168, 70,172,122, 18, 11, 59, 31,232, + 77, 15, 39, 56,211, 32, 89,101,159,190,235,196, 24, 0, 63,125,105, 75,248,149,218, 3,150,122,200,239,144, 15,192,128,204,200, +197, 89,208, 94, 22, 23,233, 94,209,171,132,172, 55,144,238, 67, 93,249, 29,246,129, 29,210,113,109, 22,184,240, 28,112,195, 85, +244,209,160, 2,229,211, 80,223,128,240,113, 8, 31,118,209, 98,111, 7,123,125, 7,182,127, 17,222,255, 41,248,172,194,223,238, + 41,239, 12, 84,221, 83,135,145,247, 84,120, 80, 12,204, 20, 38,244,154, 78, 55,218,162, 51,155,187,202,161,227,174, 69,151, 4, + 87, 92,151, 3,221,190,225, 84,107,181,158,180,180,213, 71,227, 40,199, 64,223,117,212,216,145,165, 30,120,248, 99, 16, 84,122, +118, 73,145,154,161, 20, 6,133, 53, 66,167,176,209,226, 26,154,138,113, 41, 27, 62,180,250,152,211,198,199,227,242, 0,209,150, +222,216,196,124,206,218,104,236,240, 41,172,190,241, 54, 60, 75,162, 69,167, 10, 7, 8,214, 54,114,173, 30,117, 59,205, 45,170, + 31,136,106, 26,158, 70, 36,203,126, 31, 99,234,148,195,100,223,106,241,172, 58, 1,117,234,244, 24,149,153, 86,215, 16,185, 85, +109, 20, 47,238,215,174, 33, 24,154, 82, 14,125,246,211, 52, 64,229,112,188,189,236,128,213, 58,178,160, 97, 66,133, 79,238, 40, +153, 81,174,109, 74, 81,180, 26, 55, 96,194,204,206,241,163,117,242,207,207,128,247,150,174,215,212,231,162, 79, 82, 24,194, 18, +157, 35,215, 88,246,117,246,228, 91,164,184, 77, 52, 74, 91, 85,120,192,205, 65, 17, 26, 22,253,125, 43,102,166,244,210, 72,234, +123,186,174,119, 49,184, 18, 98, 71, 70,168,227,222, 14, 95,127, 14, 99,173,228, 60, 82,134,189,185,184, 66,242,247,184,248, 22, +120,214,115, 89,140, 74,123,205, 97,242,185,183,198,146, 20,209,156, 41,165,178,221, 94,145, 67, 96, 63, 12,164, 20, 59,111,241, +213,186,219,106,177,163,141,117,156,146, 1, 28, 98,176, 14, 66, 99, 68,170,197,217,213, 54,162,152, 30, 37,216, 27, 28,231, 10, +174,138,121, 32,155, 80,200,130, 94, 44,231,188,186,221, 65,163, 3,245, 75,157, 50,117, 39,133,102,157,191, 64,211, 93,209,237, + 46, 89,231,184,213,218, 72, 45,227,136,110, 47,225,252, 54,116, 61,100,131,229,215, 92,201, 49,146,212,137, 83, 65, 39,157,187, +150, 58,101,210,106,177,113, 75,117,197,163, 42,196, 46,162,163,117, 51, 86, 95,206,233,110,197, 59,175,236, 35,251,146,188,170, +186, 28,124,122,227,126,255, 65,141,202,214, 88,179,155,106,255,174,130, 30, 69,219,191,203, 96, 35,172, 46, 33, 95,188, 68,223, + 31,144,239,189, 1,183,122,171,218,215,230, 51,231, 40, 17,222,220,112,254,254,150,245, 85,102,179,169, 36,179,148, 51,250, 55, +180, 97, 52,143, 69,233, 95, 76, 48, 8,250,238, 72,189, 59, 80,182,153,242,104,160,236, 43,188, 5, 41, 6,210, 88,208,167, 42, + 18, 58,164,235,144,103, 34,225,251,158, 34,124,104,133,254,245, 7,232,207,239,145, 99, 75,253,138,223,217, 67,237,209, 87, 71, +194, 55,175,184,241, 78,134,119, 10,199, 47,219,106,100,247, 0,106, 81,228,161,114,186, 26,205, 74,182,142, 86,133,237, 44,204, + 69, 87,126,210,237, 18, 50,220,133,245,175, 64,252,148, 29, 46, 7, 55,138, 45,228,255, 26,238,253,159,240,206, 29, 8, 17,253, +226, 6,126, 13,228,247, 43,188,176, 66,223, 25,224, 65, 65,254,189,115,228,165, 35,187,216,135, 17,253,220, 35,244, 11, 27,244, +231,183,232,227,129,124, 57,176, 61, 86,118,119,132, 18, 13, 35, 28, 93,184,217,186,197, 36,126, 67, 13, 66,245, 21, 75,194,166, +219,105,113,107, 8,213,133,155, 81,231,200,202,131, 96,137,197, 89,219, 20,242, 78, 86,164, 11, 72,242, 17,234,231,183, 6, 24, +106, 15, 62,122,135,144,117, 78, 71,235, 13,156, 68,100,202, 61,111, 48, 37,250, 86, 40, 70, 88,123,194,220, 58,192, 13,129,155, +138,156, 84, 72,199,190, 15, 31, 93,252,182,130,248, 60,196,143,184,138, 29,251,247,186,247,101,254,235,160,239, 64,248, 46, 8, + 47,248,201,220,217, 62,189,252,125,120,240, 23,224,213,247,224, 31, 28,161, 63, 87, 40,247, 47,201, 12, 16,225, 74, 42, 27, 17, +122,175,100, 10,106,156,139, 50,231, 23,132,133,204,110,178,194,251,141, 50, 46,118,181,130,121,131,181,250,132,162,141,140, 29, +253, 42,205, 99,238,225, 43, 72, 36, 83,205,226, 26, 93,240, 80,237,251,152,213, 52, 29,251, 34, 28, 33,244, 65, 24, 71, 43,202, + 59,143,131, 78, 10,217,105,150,118,178,130,134,234,158,103,123,156,224, 66, 39, 60,189, 18, 9,212, 58, 31, 32, 19,208,117,154, +234,232,188,187,157,176,172, 58,105,121,116, 17,200, 52, 1,165, 60,123,155,150,139,238,247,196,222,239,153,123,135,158, 36,148, + 85, 8, 38, 82, 93, 36,142,225, 65, 38,202, 50, 3,124, 81, 28, 9, 7, 33, 46,147, 31,218,237,149,145, 22,121,141,211,206,230, + 63, 39, 58,239,150,155,186,125, 74, 86,211,217, 15, 97,112, 26, 83,124,183, 69, 90,157, 86, 17, 76, 35,166,230,181,111,106,248, +166, 15,154, 18,206,196, 83, 60, 23, 95, 48,245,184,213,170,242,129, 96, 27, 89,144,255,166,195,119, 9,196,241,209,188, 44, 2, +105, 74, 45,102, 9,212,185,234,156,106, 50,239,236, 9,130,106, 88, 92,180,243,234, 97,154, 34, 85, 53, 42,107, 12,204,177, 34, + 58,177,218,171, 86,234, 56,160,197, 10,181,144,226, 20, 26,163,186,180,142,250,160,192,195,196, 66,180,230,187,122,113, 28, 36, + 26,136,199, 63,151,113,204,236, 31, 61,162,106, 37,133,245, 17, 73, 34, 82, 50,101, 40, 86, 37,165, 96,254,237,104, 4, 31,138, +120, 60,106, 68, 37, 34, 82, 92,153,222,217, 94,203, 69, 64, 97,162,192, 57,213, 73,109,247, 93, 5,118, 85, 8, 42,244,209, 76, + 28, 34,145,168,193, 4, 2,190,139, 41,193, 71,253, 50,239,154,236, 12,143, 19,127, 94, 91, 23,189,192, 57,106,219,211,212,130, +146,209, 97,131, 12, 71,196,245,154,186,223, 88,112, 72,187,216,171, 17,228,168,205, 63, 25, 27, 56,221,110, 28,174, 19, 8, 14, +147,146,166,156, 12, 2, 53, 17, 53, 19,220,151, 27,131,117,233, 19, 39,190,141,140, 4,106,118,191,161,231,212,139,131,119, 44, + 30, 15, 24, 10,186,115, 11,156, 67,189,216,153,168, 79,131,143, 97,223, 82,244,199,222, 71,190,247, 28, 62,180,182,223,179, 62, + 37,156,119,200,121, 71,120,167, 35,222,221,177,186,187,101,253,190,169,100,183, 29,228, 44,148,193,178,175,207,179, 18,146,193, + 31,180,250,234, 98, 13,108,148, 77,134,161,135,117,174,156,189,177,183,130,225,134, 34,231,106,153,231,177, 67, 62,245, 52,116, +145,252,191,221, 71, 63, 55, 32, 47, 20,248,214, 53, 60,219, 35,143, 20,121, 92, 8,223,220,115,246,238,142,205,219,202, 24,141, + 91, 0,214, 8,174,223, 43,196, 95,218,192, 55,120,138,155,122,235,219,251,183,248,235,247,225,165, 45,220,124,121,113,160,183, +255,189, 11,143,126, 47,250,107,175,195,163, 59,104,238,225,217,130,252,174, 53, 60, 2,189, 28,225, 45,247,125,127,247, 49,218, + 43,245,253, 45,124,246,146,250, 75, 87,212,207, 95, 81,114, 65,215,166,252,223, 63, 5, 67,177,195,188, 22, 79, 5,140,246,249, + 44,181,220,173, 99, 10,206, 16,138,101,246,212, 78,117,165,216,181, 30,220,130,213,156, 78, 97,177, 71,159,226, 62,197,214,212, +161, 11,200, 73, 64, 86,173,184, 83,202,206, 15,160,233, 64,159,184,200,118,129, 37,207,183, 79,214,221,131, 32,235,232,225, 8, + 1,142,146, 77,125, 78, 35, 28, 3, 55, 4, 57, 83, 56, 21, 88, 29,217, 11, 79,183,236,195,232,111,154,205,173,255,152,113,218, + 57,245, 7,219, 45,138,168,106,214,192,248,145,197,171,233, 64,239,195,240, 87,224,241,223,129, 71, 61,124,246, 57,248,177,251, +148,225,130,139, 50,146, 83,165, 11,194, 85,181, 55,232,200,183, 79,251,114, 56, 60, 96,138, 71,101,130,184,168, 23,230,178, 56, + 56,166,184, 73, 13,196, 24, 45,118,213, 3, 84,130, 31,246, 34,129, 46, 68,136,137,189,239, 50,181,206, 4, 58,123, 45,205,141, + 34,148, 97,100, 19,224,184, 15,172,251,142, 34,133,172,133,149, 42,125,234,216,102, 83,194,219, 87,221,233,147,174,249,105, 54, +174, 66, 99,168,227,205, 4, 51,231,162,221,228, 61,134, 90,117, 30, 5,215, 41, 52,196, 44,104, 85,213, 59, 67, 31, 84, 47, 98, + 83,179,119,167,145,246, 62, 68,178, 39, 97,118, 46, 18, 30,171, 34,165,208,123,183, 57,122,217,179,220,173, 87, 14, 19,185,194, +193,129,207, 4,227, 82, 14, 61,218,226,186, 77,117, 59,224,148,131,206,161,248, 76, 88,118,146,203,213,138, 29,215,185, 90,166, + 69, 84, 87,170, 95,147, 23,182,169,193,116,152, 45, 60,255, 45,144, 85,150,113,109,141,132,215, 20,234, 11, 1, 31, 83, 97, 40, +147,198,225,218,208,108,154,194, 46, 48,250, 11,144,216, 34,179, 67, 23,133,166, 78,193,163,243,195,180,157,182,200,140, 43,111, +239,163,235, 27,198, 90, 25,114, 70,179,175, 49, 66, 56, 76,152,243,224, 32, 98, 68,115, 49,161,234,193,194, 64,124, 13,189,120, +237,237,222, 83,235, 36,142,211,206,184, 22,101,204, 30, 61,174,164,213,241, 9,186,189, 66,179, 7, 10, 6,191,168,170,219, 78, +166, 91,147,221,217, 74,173,232, 88, 38,104, 12, 33, 32,181, 26,115, 69,131,193, 94,124, 76,144,164, 41, 59,133, 93, 49, 59,217, +105, 80, 86,238,225, 84,196,246, 15, 98, 34,138,152,140, 24,167, 11,196,160, 86,183, 72,136, 39,224, 76, 41,102,117, 38, 55,233, +194,154, 80,179, 65,102, 54, 87,132,227, 99,143, 83,181, 74,168, 22,179, 60,164,201, 59, 99,193, 6, 85,198,137,241,107,182, 59, +199,220, 98, 17,136, 97,204, 62, 94, 51,156,100, 40, 77,188, 3, 71, 94,117, 71,247,139, 51,248, 23,187,200,196,218, 22, 92, 97, + 37, 9, 57, 78,230, 55,219,169,101,176, 55, 37,180, 10,172, 34,122,229,169, 88,158,217,203,152,209, 31,122, 96, 35,229, 79, 30, + 91,152, 74,232,224,230, 41,225, 78,143,124,245, 10,237, 18,221,217,192,201,253,145,171,135, 35,195, 94, 73, 43,161,127,161, 35, + 92, 65, 60,239, 77,160,246,110,153,124, 67,233,169,192,106, 95,216, 1, 67,103,112,139,248,245, 61, 50,122, 91,121,222, 89, 2, +218, 94,224, 83,183, 9,111, 12,232, 63,124,136, 94,140,212, 55, 6,194, 55,245,240,114, 7, 87, 2,151,145,213, 11, 9,121,144, + 25, 70,216,111,236, 61,232,147,216,254,114,155, 33, 20,180, 75,150,226,117,100,221,147,254,210,125,228,119,141,112,231, 71, 64, + 62,230, 95,231, 2, 92, 65,253, 73,120,244,159, 81,255,222, 61,244, 87,206,224,163, 32, 71, 14,188, 81,191,229, 5,177,160,132, +168,232,151,175,208,127,190, 67, 63,125, 69,253,250,158,172,149,253, 49,228, 83,161,246,126, 30,148, 25, 96, 17,188,190,136, 1, +186, 84,173, 35, 84,123,235,139,206,169,171,147,216,181, 66, 8, 11,210,161,219, 7,251,100,162, 80,170,219,214,220,131, 27,162, +185, 52,162,143,140,195, 81, 64,250, 72, 88,205,211, 44, 13, 62,150,109,126, 46, 89, 94,151,157,237,221, 99, 64, 66,180,239, 97, +114,241,215, 73,103,234,247,211, 8,103,201,186,242, 27,138,156, 0,235, 35, 72,103,166, 77,144, 51,243,153,167, 59,144,158,131, +245,135, 76, 5, 79, 0,125,108,246, 54, 81, 59,248, 57, 95, 20, 83, 14,162,105, 98,184,225,215, 96,243,231,224,237, 47,192,120, + 11, 62,249, 73,120,248, 14,250, 63,189,205,101, 44,188,151, 44,161,172, 43,202,174,161,226,125,147,144, 69,200, 69, 15,184, 55, +115, 7,211, 50, 31,116,194,216,212, 41, 0, 67,124, 59, 14, 65,170, 89,191, 8,196,100, 83,195,210,226,152,221,121,209, 2, 87, +138,183, 87,181,180, 67, 66,167, 81,116,136,145, 81,148, 44,182,211,237, 98,162,184, 37, 53,185, 79, 61, 54,215, 2, 66,141,201, + 83,207,124, 52, 91,171,169,224,253,167,230,101, 60,137, 28,118,235, 65,130,143,185,231, 40,147, 38, 62,171,126, 48,239,171,122, + 6,187,122, 34,152, 28,168,218,167,219,131,107,101,178, 90,119,110, 93, 95,157,126, 22, 46, 98,230,218, 39,200, 98,245,211,108, +175,109, 47,222, 92, 7, 34, 76, 74,247, 54, 54,168, 54, 82, 93,104,159,154,208, 78,184,182,158,158, 15,201,133,146,159,105, 74, +128, 35,198, 93,189,238,135,110, 8,243, 61, 92, 39,106,155,167,116,186,247,218,104,110,243,251, 49, 5,186,136,240, 27,129,103, +101,202, 65,208, 3,235,153,180,201,192,162,112,106,235, 52,245, 85, 7, 77, 27,225,110,149,133,202,117, 46,104,244, 80, 92,215, +188,255, 33, 70, 27,187,187,123,160,164, 72, 25, 51,227, 56, 82,115,182,255, 86, 50, 99,206,118,128, 79, 79,172,165,144,150,249, +249, 74,120, 34,158,182, 58, 69, 44,196,100, 76, 17,181,213,120,208,138, 44,180, 0, 37,103,219,169,215, 16, 32,143, 84, 7,181, +104, 72,211,158,202,200, 69, 62,250, 86,235, 94,165, 24, 11, 87, 9, 14,173,113,177,128,122,118,172,218,191,139, 2,201,131, 5, +134, 10,151,106, 30,203, 49, 11,103,181,114,220, 85, 58, 23,178,168, 86, 98, 52,251, 66,116,158,123, 45,150,201,158, 21, 36,216, + 7, 92,171,179,158,235, 60,158, 16,175,226,202, 34,115, 92, 90, 84,217,110,103,245,158, 68, 6,132, 84, 44,220, 64,156,158, 38, + 30,213, 18,180,237,173,156,192, 68, 0, 49,117,126,168,115,110,124,213, 66,209, 98,227,247,160,116, 10,171,160,164,150,149, 92, + 43,177,120,142,118,182,238, 42,164, 0,103, 9, 89,247,200, 89, 79,184,213,219, 73,242,200, 15,216,206,191,182, 33, 66, 18,164, +207, 86, 16, 36,133, 99,144,236,111,200, 23,247,246,154,190,249,196,232,105,157,125,192,210, 41,242,237,103,240,172, 16,254,242, +187,156,111,182,212,111,239,144,111,137,112, 30,208,183, 33,156,247,200,211, 43, 27,251,190, 57, 34,111, 14,240,116,199,209, 83, + 80,238,154, 85,102, 92, 65,218, 42,221,151,118,132, 43,129,103, 87, 30,107, 84,225,228,148,240, 61,167,148, 31,127,159,225, 94, +102, 4,250,183, 6, 86,159,236,145,111, 95,193,135, 35,220, 57,162,191,165,244,247, 10, 71,239,142, 48, 40,225, 56, 33, 47,184, + 5, 43, 86,194,169,199, 27,254,244, 30,254,233, 37,225, 63,137,200,239,249, 25,139,232,212,183,160,252,143,112,241,195,176,191, +132, 55, 31, 81, 95, 59, 66,223,191,141,202, 0, 95,221,216,238, 57, 26, 61,150,155, 25,221, 43,250,245,130,126,102,143,190,177, + 7, 45,232, 80, 24,110, 91,248,205, 85, 17, 6,231,166,148,169,203, 54, 81, 37,165,241,188,253, 35,192, 10,186, 58, 90, 45,213, + 71, 87,189, 86,216, 50, 31,214, 49,120,135,239, 81,183, 93,139,237,141, 11,158, 67,243,173, 7, 63,216,215, 17, 57,142, 72, 10, +150,111, 30,197,161, 29, 77, 5, 38, 83, 28,174, 4,239,196,171,255,254, 46,152, 83,226,168,141,215,163,225,112,111, 36, 11,230, +185, 89,145,227,206,186,112,185,227,201,109,167, 86,248,201,202,118,231, 97,109, 95,152,253,219,144,191,104,246,191,238,196,120, +239,241,195, 24,132, 64,175,233, 1,142,237, 34,222,254, 67,184,252,139,112,247, 61,248,251,103,240,106,129,151,127, 21,126,242, + 33,251,163,145,141, 10,161,216,186,103,159, 29, 81,188,192,133, 73,157, 53, 64,149, 3,151, 25,193, 15,152, 16, 26, 81,140,105, +181,213, 66,149,113, 59,109,139, 16,213, 24,168, 14,165,114,123,243,116,191,202, 42,140,213,116, 52,105, 33,178,147, 48,231,190, +103,132, 1,101,237,196,185,145, 96,156, 1,129,148, 28, 93, 45, 70,147,179, 78, 35,206,168,212,169,251,151,233,218, 97, 81,140, +232,162,167, 93, 56,162,167,169, 99, 11,129,106, 74,119, 93,140,127,171,205,250, 29, 84,237, 13, 99, 75,100, 19, 35,206, 53, 38, +134, 53, 40,149,229, 64, 90,150,121, 26, 11,205, 66, 83,113,215,101, 51,218, 16,178,110, 49,107,216, 85,213, 37, 36,102,142, 85, + 21,117,209,180,204, 14,165, 89,229,160,211, 6,246, 58,102,118, 58, 99,219,136, 58,196, 41, 30,183,141,155,117, 10,192,209, 73, +151, 34,110, 13,107,153,241,217,223, 12,113,168,153,203, 0,103, 24, 16, 51,235,126,122,253,122,189,250,144, 39,116, 27,211,140, +125,249,201,181,169,192,245,156,214,169,188, 10,215, 52, 4, 78,114, 11,134, 33,111,159, 75, 46,133, 60,142,144, 51, 37, 6,242, + 80,125,170, 45,211, 25, 37, 49,249,103,173, 31,152,204,176, 84,232,171,182, 41,114,227,196, 87,234,110,231,127,222,194,102,106, +206,214, 96,151,171, 43, 34, 80,134,189, 85,167,109, 23, 24, 45,103,120,168,130, 72, 66,130, 82, 69,209,209,222,224, 16,150, 11, +177, 64,168, 38,143, 75, 33,210, 7,165,147, 74,114, 17,218, 14, 97, 32, 80, 37,240,184,140,140,217,110,106,103,189,154,162, 47, + 87,131, 86, 77,193, 8,139, 16,248, 86, 14, 21,157, 2, 21,108,121,163,147, 14,198,200, 64, 50,121, 12,147,102,235,216, 71, 69, + 71, 47, 86,154,154,180,120,209,182,234, 8, 65, 72, 37,179,119, 37, 97,237, 92, 27,226, 31,125,169,133, 36, 74, 23,231,125, 79, + 42,150, 96,154, 4, 86,162, 28, 85,123,157, 93, 7,233,104,109,157,184, 84, 24,253,210,139, 17,233, 59,194,113,135,220, 94,193, +211, 61,220,116, 96,198, 17,112,190,114, 82,140,211, 74,210, 76,194,146,222,239,130, 21, 83, 39,143,126,154,172, 86,112,162,112, + 30,108, 79,159, 43,124,105, 15,223,120, 78,248,195,183, 8, 73,169,191,112, 65,249,185, 29,114, 59, 33,191,169,135, 59, 61,236, + 32,172,123,232, 71,116, 45,196, 79, 68,206,227, 72,125, 63, 83, 51,232,168,112,165,132,103, 10, 60,151,204,219, 93, 48,218, 92, + 16,234,174, 50,174, 97, 60,134,237, 80,233,126,105,207,234, 11, 35,171, 23, 35,225,153, 72, 40, 86, 69,134,103, 18,108, 10,114, + 81,208, 87, 43,250,213, 10,239, 85,194, 43, 91,120,170,135, 31,187, 36,252, 91, 71,200, 31,251, 69, 8, 47, 3,159,135,171, 63, + 3,175,125, 22,174,214,112,117,130,126,253,182, 17,212, 62, 86,224,215,246,102,200, 47,198,170,215, 17,244,211, 25,125, 59, 79, + 86, 16,206, 93,224, 56, 42, 57, 43, 67,129,161, 10,251,106, 10,246,216,108,103,136,173,161,219,247,182, 65, 95, 80,198, 97,206, +166,206,121, 70, 34,247,190,102,235,130,155, 59,163, 76,171,236,118,208, 55, 2, 99,240,206, 60, 85,136, 71,226,233,120,177, 45, +235,231, 4,176,150, 12,213,130, 45,130,229,204,227, 35,122,186, 56, 31,230,199,190, 39, 63,241,148,189,227, 0,103, 1, 57, 77, + 54, 90, 15, 47, 66,184,227, 29,119, 48,235,153, 14,160, 15, 77, 20,167, 91,211, 38,232, 8,113,231,123,248,223, 6,225,121,195, +234, 82,175, 29,232,103, 70,151,219,252, 8, 92,254, 85,120,253, 33,252,196, 26,253,149, 29,188,183,163,252,220, 72, 62, 42,108, +162, 82,139, 77, 48,182,197, 14,244,206,117, 90,131,241,115, 60, 35,188,137,102, 27, 22,148, 73,196, 5,134,156, 22,119, 17,132, + 96,123,100,170,131,155,238,211,161, 0, 0, 32, 0, 73, 68, 65, 84, 64,162,141, 83, 99, 20, 74, 13,211, 1, 32,110,239, 82, 31, + 25,183, 3, 52,250, 77, 62,133,214, 65, 51,219,145,252, 16, 41, 85, 61,167, 69,201,181, 48,168,208, 5, 33,117, 29,195, 62,219, +222, 59,248,190,179,206, 24,214,134,146, 86,149,169,145, 99,146,191,233, 34,203,125,217,214,233,148, 92, 86, 23, 89,218, 58, 69, +212,203, 19, 19,226,218,124,251,202,193,161,215,242,219,155,128,108, 57, 25, 72,162,140, 42, 19,244,165, 49,224,218,204,165, 89, +196,240,206,183,137,249,106,117, 13,194,188, 61,246,131, 59, 76, 66,191,233, 39, 42,215,152,103, 76,107,137,235,147,238,230, 4, +104,192,176,105,182,208,136,156,122,216,250,198,107,195,231, 40, 1,124, 29, 43, 83,244,173, 16,157, 35,175,147,150, 74, 38,106, + 30,215,222,247, 67,233,187, 30, 88,197,130, 44,156, 17,238, 94,208, 3,164,203, 82,137, 62,199,243,204,187,125, 47,112, 66, 32, +197, 8, 41,146,139,149,162, 20, 15,134,114, 7, 65, 85,165, 14,123, 7, 75, 89, 19, 27, 16, 72,105, 70,251,202,147,150,185, 58, +137,242,100,222,253, 23, 75, 20,109,137,164, 90,236,139,214,108,115,150,149, 48,108, 8, 88, 43,175, 97, 49,191,143,193,176,162, + 68,232, 19,253, 88, 24,181, 46,170, 47,231, 39, 43, 22,192, 42,133, 24,132, 30,101,133,135, 37, 68,171, 94, 70, 21,207, 50,182, + 96,149, 29,133, 71, 85,144, 26, 56,150, 66,172,206,203,245,177,199, 18,141, 23,189, 34,158,173,158,179, 88, 78,252,102, 91,180, +117, 0, 58, 5,179,212,113, 68, 58, 87,212,215, 98, 69,135,180,189,164, 95,196,238,151,213,226,226,151,209,146,233,218, 27, 29, +155,213,164, 42, 41, 84,122, 79,216, 89,229,194,170, 22,142,214,145,208,175,144, 62, 34, 39,157, 47, 18,131,135,198, 8,114, 35, + 34, 31,238,145,143,218, 14,154,147, 14, 57,238, 97, 45, 77,160,234,207, 35, 88,132,101,219, 1, 54, 16, 72, 12,254,247,213,246, +154,102,206,132,205,222,198,175,201,199,252,247, 7,120, 54,193,119, 61, 11, 99,134, 47,220, 71, 63,159, 77,124,119,183,160,191, +186, 71,190,123,109, 29,224, 71,143,136,157, 93, 12,102, 87,235,136, 31,170,200,251, 25,222,203,132,167, 35,242, 45,107,116, 23, +224, 67,182, 38,208, 55, 46,237,231, 70,227, 55, 23, 49,152,199,246,168, 18,179, 34, 95,206,244, 95,177,241,115,106, 14, 89,129, + 85,179,125,136,216, 77,246, 11, 35,250,222, 64,248,115, 79, 33,127,252,103,129,167,129, 31,128, 87,255, 43,248,220, 37,244, 47, + 66,159, 44,251,124,191, 71,190,190, 71,191,184,135,127,190, 67,206, 61,254,187,171,232,215,246,148, 77, 38,244, 98,182,185,211, + 96,231,216,227, 98,167,117,117,173,217,168,236,139,117,116, 37,205,234,172,208, 34, 2,188, 30, 24,124,250,211,196,114, 45, 94, +184,237,197, 59,177,115, 80,130,144,130,176,118,125, 90,195, 93, 6,207,155, 9,170,196,206, 22, 86,210, 7,130,195,133, 32,248, + 90, 71, 17, 49,163,123, 8, 29,114,228,122,149,147,104,127,127, 28,237, 16, 95,118,230,235,100,191,246,254, 36, 82,132, 35,207, +109,145,115,144,167, 45, 43,157, 0,122,215, 44,104,229, 93, 35,236,141,123,179,158, 9, 70, 29,234,206, 29, 88,243, 10,116,159, +130,240,177,165,100,205,111, 92, 39,230,131,188,252,126,184,250,187,232,219, 27,248,241, 21,245, 51,151,212,171, 29,101, 28, 25, +206, 96, 95,117,234,204, 7,204,194,154,125,234,209,182,180, 3,230,187,214,121, 51, 63,127,125,151, 93, 73, 85, 71,116, 54,157, +210,116,131,177, 34, 92, 22,126,104,177, 79,133,224, 98, 50, 79,121,100, 49, 30,174, 46, 20,109,123,226,168,129, 18,116,138, 11, +221,187,106,189, 96,130,224, 65,173,169, 72, 65,144,148,108, 69, 71,240,192, 24,235,142,100, 33,222, 42, 7,254,109,249, 13,204, +207,135, 29,151, 52,250, 91, 59,168,219,222,240, 3,216,233, 19,203,125,250,213, 10,145,166, 4, 87, 79,245,106,247, 67, 93,184, +113,116,214,185, 79, 63,190,177, 63,196,225, 44,142,120,153, 49,165, 28,250,184,229,122,152, 75, 19,184, 29, 72,238,158, 92, 87, +135,246,126,136,175,168,130,184,206,170,229,189,215,137,229,160, 7, 73,237,135, 23, 68, 59,135,163, 55,117, 65,227, 68, 26,204, + 45, 65,109, 49,234,111, 34, 23, 93, 76, 10,130, 3, 44, 89, 20, 36, 83, 16, 77, 43, 54,124, 69, 98,133,210,252,103,117, 17, 46, +131, 28, 34,129,151,239, 82, 16,211, 10,196,190,183,207, 40, 23,186, 46, 77,175,173,113,254,107,201, 76, 80, 22, 92,135,147,108, +106, 81,115, 93, 88,216,150, 27,141,230,168,104,246, 88,243,168, 87, 85,231, 51,148,195, 93,192,226,127,169,147, 64,221,109, 64, +173, 43, 13, 25, 74,159,108, 20, 93, 70,250,213, 26, 77, 9,169,153, 16,162,209,217, 16,247,202,154,242,155,104, 57,234, 17,179, +137,105,157, 43,194,170,129, 82,125,119, 62, 85,169,194, 88, 3, 23,163,237,195,142,129, 35,153, 25,241, 56, 74, 82, 83,176,189, +243,193, 84,199, 15, 99, 17, 23,154, 96,143, 97,206, 77,243, 62, 86, 8, 20,116, 8, 83,158,123,208,106, 86, 22, 77,118, 65,228, +108,157,145,152,167,187,226,226, 19, 45, 19, 23, 56,106,229, 40, 20, 86, 10,235, 82, 89, 69,219,159,166, 8,225,244, 24,185,177, +134,216, 25,187,247,118,130, 91, 43,228, 27, 18,242, 98,111,232,170,179,118,247,247, 86,193, 99, 35,101,111,109,160,142, 62,163, + 44,121,142,241,139, 97,170,215, 37,233, 34,218, 40, 79,156, 95,146,251,145,239,123, 23,255, 77,231, 70, 21,123,123, 3,111,109, +225,205,108,135,202, 55,174,224,202,231,199,167, 9,158, 62, 65, 62, 60,192, 93,179,152, 73, 86,244, 42, 19,200, 6,250,120,144, +237,241, 54, 88, 90,217,203,138,110, 7,216,102,120, 46, 18,110, 37,194,189,236,196, 44, 33, 38,140,227,223,195, 46, 40, 65,133, +152,161, 31,132, 94,160,123, 54, 18,110,122, 96,203,187,138,190, 85,144,191,252, 2,242, 7,126,220, 78,232,242,167,208,191,253, + 15,224,255,222, 35,127,248, 25,243,233, 63, 30,224,113, 65, 94, 29, 96,159,145, 80, 96, 45,240,187,142,209,143, 71,234, 95,123, +200,120, 53, 50,220, 48, 50,213,209,101, 33,186, 60, 93,179, 82,163,227,234,221,250, 63,125, 41, 42,132,100,116,178,236,133, 99, +241,183,122,159,231, 47,241,164,187,137,134,120, 21,119, 32, 70, 21,250, 40, 28,175,236,233,180, 80,165,246,179, 37, 6,130, 31, +188, 33, 69, 36,137,117,219, 94,156,137,128, 28, 91, 55, 46, 55,146, 21,151,167, 6, 23, 98, 21,225,212, 59,240,174,253, 21,109, +197,210,166, 55,147, 95,205,219,207,173, 64,122, 12,241,210, 57,237, 21,202, 6,198, 1, 46, 10,186, 43, 48,216, 40, 65,206,139, +105,226, 66,129,227,151,224,228,143, 64,252,168,247,112,121,113, 99, 56, 50, 46,252,229,247,195,197, 15,160, 95,223,195, 47,246, +232,215, 55,148,205,150,188, 29,216,139,133,177,236,178,125,246, 89,241,112, 33, 59, 72,246, 62,161,204, 24,191,161,168,255, 55, +209, 39, 18,185,166,219,165, 26,164, 35, 53,160,138, 50,167,162,249,216,181, 28,160, 85,156,161, 63,221,106,101, 78,134,244,174, + 94,170, 78,129, 32, 18, 70, 68, 83, 91,128, 50, 38,181,131, 34,152,226,187, 58,164,101,138, 34, 85,223,161, 59, 66,118,138, 95, +246,155,108,156,116,219, 50,251,167,221,115,190, 28,115,139, 28, 18,161,102,240,204,108, 93,178,135, 91,236,170, 23, 10,242,210, +188,205,181, 58, 55, 67,158,136, 56,106,244, 66,157,212,232, 44, 14, 54,239,240, 68,166,209,122,235,206,181,221,111,166,177,183, + 28,216,191,116,138,138, 17, 22,121,130,139,254,188, 77,170,101, 33, 5,145, 73, 48, 58,133,221, 72,176,176,156,101, 62, 56,122, +173, 45, 93,140,205, 49,113,157,106, 91,193,120,129,224, 13,133, 77,108,245,144,238,230,159,203,162,138, 57, 40, 20,230,195, 92, + 28, 85,235,100, 59, 42, 37,143,211, 7,166, 7, 66,192,112,232,115,215,229, 13,194, 95,103, 8,164,174, 7,223,161, 7, 47,168, + 74,173,148,113,116,189,128, 80,243, 56, 75,241, 91,113,209,220, 99, 13, 25,187,136,232, 93, 86, 19,203,231,222, 86, 41,234,186, +138, 22, 44, 52, 27, 24,212, 53,215,170,212,253, 30,138,146, 66, 64, 83, 48, 14,139, 42,132, 72, 8, 43, 56,185, 67,208,187,148, + 97, 55, 17,126,218,147,193,169,111, 33,136, 21, 5,142,127,173, 46,182,219, 18,201,152,133, 77, 69,193, 51, 96,107, 8, 12, 88, + 20, 98, 27,254,172,181,177,151,153, 42,203,118,187, 13,139,100, 28,255, 4, 91,160,141, 61,213,106,119,226,226,234,210,128, 16, +194, 72, 80, 3,200,180,162, 67, 74, 38,104,165, 75,133,168,149,160,149, 30,165,196,202,152,149,162,129,132,178, 14,149,163, 92, +184, 81, 43,171,163, 72, 56, 90, 33,171,222,158, 93,151,144,167, 79,145,231, 86,240,145,136, 60,223,153,159,252, 52,218, 77,184, + 6, 59, 41, 46, 10, 20,219, 47, 51,142,222,145, 59,250,176,168,117,151,142, 18,108, 74, 33,233,252, 74,236, 20,237,189, 67,139, + 98, 45,144, 20, 7,214,248, 88,190, 84,228,169,149,253,243, 59, 87,240,206,222,126,239,135, 87,182,211,127,127,128,247, 28, 9, +250,176,194, 29, 65,110,223,132,103, 51, 60,222,193, 38, 35,123, 69,182,197,114,213, 95, 24,225,178,160, 27,144, 91,105, 98, 2, +176,182,195, 33,124,228,152,254,245, 29,117,173, 28,221, 14,236, 71,243,193,135,106,231,146, 65, 67,149,254,165,142,240,241,206, +146,222,110,116,240,154,194, 29, 69,254,210, 43,240, 45,255, 57,232,143,194,246,111, 80,255,252,235,232,255,181,129,111, 91, 17, +175, 54,176,141,112,175,216, 57,115,166, 22,179,121,187,131,239,232,225,118, 15,175,218,245,151, 49,166, 79,241,208,176,147, 17, + 75,106,219, 11,236,117,194,184, 30,119,106, 43, 81, 13,104,181, 3, 61, 70,157, 10,204,232,137,128, 34,243,232, 52, 6, 19,109, +166, 22, 95,235,149,230,186,192,185, 40,199,119, 58,195,156, 62,214,217, 99, 29,133,176,142,200, 42, 90, 23,208,251,232,220,173, + 86,178,142,214,177,159, 5,179,246,157, 68, 43,178,250, 8,235,222,244,104, 93,178, 41,131, 0,213,145,105,237,203, 61,248,139, +205, 62, 77,106,157, 83,103,215, 9, 97, 99,187,250,171, 10, 15, 76,204, 46,131,133, 59,112, 11,184, 37,176, 90,195,233,199,224, +236, 79,248, 30,125, 92, 28,232, 13,249, 90, 96,247,163,112,245, 35,232,215,118,240,211, 61,188,177,163,198, 17, 58,235,242,118, + 98, 5, 83,187, 65, 55,193,126,112,223,145,122,209, 81, 23, 55, 74, 93, 8,182,162, 46, 51,162,231,214, 68,157,160,156, 75, 75, +205, 50,252,175,136,154,112,183,221,216,196,108,162, 45, 61, 45, 80, 41,132,201,113, 33,109,108, 93,161,235, 44,172, 74, 67, 52, +139,153,119,139,121,180,123, 88, 23,152, 20,214,131,206, 1,166,170, 24,178, 84,237,177,169,213,247,236, 54, 14,142,186, 84, 96, +205, 42,106, 89,208,219,100, 1,213,154,125, 92, 58, 17,213,230,103, 59,171,210,235, 98,124,111, 41,117,117, 26, 87, 47, 69,155, +186, 80, 67,183, 20,184,122, 45,204,101,182, 5, 55,220, 45,147,186,187,237,208, 91,228,168, 54, 36,236, 2, 12,212,120,231, 13, + 62, 19,100,217, 88,201,148,228, 46, 44,214, 0, 45, 42,155, 5, 77, 79,196,155, 52,109,154, 96,158,192,166,201,226, 39,202,100, +116, 59,140,133,115, 54, 65,144,249,196,174,203,179, 91,159,156, 30, 28,132, 18, 78, 5,100,157,130,116,170,187,158,224, 16,121, +123,192,232,127, 98,172, 63,251,243, 83, 8,132,174, 51,110, 66,173,134, 38,111,171, 17,143, 90, 53,135,129, 57, 9, 38, 5,125, + 8,166, 87, 27,243, 34, 58, 87, 63,176,235, 22, 79,113, 19,241,235,183, 44,102, 37, 97,177, 0,210,185, 34, 75,101,183, 53, 37, + 93,176,202, 72, 17,142, 17,164, 10, 49, 38,234,249, 29, 88,223, 66, 30,223,179,145,168,195, 9,230, 74,211,252,157,161, 88,104, + 72, 12, 66, 45,202, 88,237,195, 25, 67, 48,223,115,181,185,127,104, 87, 92, 8,212, 40,176, 11, 92,234,124,137,172,211, 92,245, + 81,236,201, 70, 53, 76,167, 20,187, 33, 87, 22, 42,197,210,206,121,177, 17, 85, 81, 74,178,157, 81, 95, 42, 81,140,200,148, 68, + 45,155,151,202, 42, 64,143,141,222, 67,201,160,153, 85, 54, 59,217,145, 22, 11, 84,168, 74,191, 74,132, 91, 29,114,163, 71, 82, + 15, 39, 17,121,182, 67, 94, 57,134,151,143,204,129,181, 42, 54,219,221, 87,120,188,135,203,106, 92,245,109,129,139,108, 54,181, +156,189, 43, 87,216, 87,116, 91,231, 32,153, 93, 99, 84,187, 2,218, 85, 88,178,138,102,119, 91,187, 80,106,237,203,221,163,100, + 11,195,155, 9,110,119, 22,141,250,181, 43, 27,193,159, 4,184,217,193,170, 71, 86, 1,125,216,193,173,193,238,196,185,218,172, + 52,121,238,117,178,139, 66,212,161,220, 69, 32, 71,116, 95,236,181,108,178,165,184,157,118,246,252, 70,144,223,125,131,244,197, + 29,199,239,239,204,191,175,176,206,208,157, 11,221,179,129, 48, 6,228, 78,130,127,249,200,112,165, 95,169,240, 83, 25,126,199, + 57,252,201,239, 50,228,104,249,235,112,239, 11,212,127,255, 77,244,215,182,240, 50, 68, 6,248,210, 6,237,162, 93,156,125, 64, +143, 3,178, 86,244,178, 32, 95, 85, 88,101,228, 41, 69,190,169,163,191, 28,185, 26,149,156,218,238, 91,145,143,175,144,231, 43, +241, 51, 91,130,216,217,153,196,182, 20,217, 45, 98,181,218,205, 47, 10,238, 88, 16, 63,244,103,146,161, 49, 7,230, 6,171,238, +148,190,194,250, 36,210, 63,211, 17,158,237,168, 91, 8,217, 87, 51,209,132,109,114,154, 76, 12,231,159,149, 28,119,118,232, 30, +123, 8,203, 81,176,131,187,247, 78,188,217,213,130,216,225, 94, 60, 82,175, 41,206, 6,181,195, 60, 55, 72,183,211,255,170,139, + 58,214, 30,109, 53,184,152,242,145,194, 99, 95,252,223,173,246,223,110, 40,156,101, 56, 57,133,227, 79,192,249, 31,181,212, 54, +221, 93,215, 71,219,120,126,124, 29,174,254, 95,120,255, 1,252,114, 7, 95,217, 81,134, 1, 93, 87,116, 45,112, 97, 69, 78,240, + 46, 90,101,166,189, 37, 21,130,216,193, 63,137,249,195,242, 97,230,206,218,172,164, 11,131,182, 51,172,115,209, 9, 97,170,158, + 15, 95,107,157,178,194, 67,240,124, 6,223, 47, 74,245,238, 85,172, 25,168,254,178, 63,242,220,138,155,159, 92,241,198,103,246, +188,127, 81,124,124, 94, 45, 79,187, 40,187, 90,217,150,204,154,202,202,173,113, 85,210,180,188,157, 4,103,190,174,211, 18,230, +116,178,234, 25,220,254,138,150,203, 11, 75, 74, 20, 70,173,243, 14, 30,174,165,148, 57, 37,206,111,238, 85,231, 48, 16,220,206, + 86, 23,157,189,253,252, 25, 56,210,196, 98,211,143, 13,139,181,228,181, 49,246,172, 70,247,240, 22, 85,191,127, 51, 1,190, 84, +100, 10, 25, 65,231,144,154, 73,211,196,161,157,140, 15, 96, 32, 5, 93, 28,172,142, 5,151,224, 42,246,197,107,251,128, 13,197, +204,117,208,182,226, 14,211,163,197,246,222, 46, 55, 28, 65, 8,213,223,121,109, 2,105,157,131,104,132, 5,253, 78, 38,139,234, +245,157,143,106,153,247,208,215,153, 81,139, 85, 67,235,138,175, 63,251,136, 16, 83,111,231, 88,206,166,217,137,174,218, 47,254, +179,131, 57,169, 90,246,188,101,164, 87, 23, 11, 54,204,235,172, 73, 16, 62,112,181,110,254,248,166,220,215,107, 80,170,195,122, + 6, 69, 73,101,220, 59, 30, 85, 38,123,129,136,197,126,118, 93, 79, 89,157, 0, 3, 50, 92, 17,114,153,222,184,192,124, 17, 88, + 32,130,195, 26, 84, 60,179,216, 20,242, 69,172, 51,149, 24,145,148,208,253,206,170,174, 90, 93,228, 96, 4,151,189,127,217, 85, +108, 20, 31,124, 44,215,234,152,160,173,153, 85, 31, 66,250, 56,175, 6, 68, 44,114,177,182, 84, 31,111, 78, 35,133,236, 48,145, +136, 16,170, 29,242,157, 84, 2,137,144, 51,253,104,214,141, 85,115,237,118,145,176,138, 70,111, 59, 75,240, 82,143, 60,219,219, + 65,254, 97,239,176,130,139,211,246, 5, 30, 20,184,220, 91, 39,124,127, 64, 31,143,240, 40,163,155,193, 14,111,247, 71,105,167, + 70,225,219,120,183,229,162, 29,180,162, 67, 70, 51, 19,164, 67,146,141, 9, 37,185,128,185,239,144, 51, 59, 4, 36, 5,228,212, +199,253,247,147,253,172,205, 8,131, 88,112,204,152, 77,140,118,106,138,107,238,172,236,141, 73,192,123, 25, 61,222,120,124,152, +115,199, 31, 87, 19, 63, 14, 94,132, 60,168,232, 87, 6,155,196,124, 34,195,183,158,218, 52, 64, 45,247, 35,252,233,167, 9,119, +119,144, 11,233, 34, 35, 59,243,129, 51, 2, 23,216,110,127,155, 44, 72,229,103, 51,172, 87,240,239,124,204, 38, 14,227, 79,195, +151,222,166,254,145,175,145, 47,183,140, 31, 9,232,169,176, 74, 74,247,246, 30,142, 34, 37, 6,203,108,223,248,205,110, 47,200, +168,132,167, 34,218, 7,116, 29, 73,207, 70,214,111,101,198, 98, 89, 39,245, 82,137,239, 90,148,107,240, 14,156,208,232, 85, 83, +138,131,237,205,247, 54,110,236,188, 99, 8,213,173,152,174,242,149, 98,213,112, 21,144,226,129, 9, 79,247,132,143,174, 9,119, + 86, 48,184, 32,250,134, 21, 31,156, 70,228, 36,218,161,125,106,212, 61,214,193, 42,220,206,219, 65,137, 11,127,204,194, 0, 91, + 21,246, 2,143, 71,247, 45,101,251,231,173,211,104,246, 83,204,148,147,113, 34,122, 22,108,218,190,242,169,208,101,133,187,217, + 96, 70,191,239,150,237,226,127,240,158,221,237,142, 11,114,187,194,241,211,112,246,125,144, 62,234,168,216,114,237,174,177,182, +117,200,246, 39, 96,243, 58,250,149, 14,190, 92,168,251,129,186,217,163,151,197, 44, 53,189, 16,139,103,160, 79, 70,173, 69, 42, +152,207, 97, 61,120,109,178,159, 54, 66,156,223,211,236,209,235, 44, 52, 86,171,212, 61, 60,201,186,154, 32,209, 59, 42,166,177, +178,137,113,173,101, 44,141,196,166, 50,229, 81,139,194,153, 4, 94,248,109, 43,226, 55,119,232, 47,108,169, 46, 86,106,229, 68, +187,125,238,213, 92, 46,189,219, 19,107, 40, 38,236,155,218,225,105, 14,237, 29,126, 59,216,235, 2, 58,194,129, 72,172,163,237, +234,231, 68,180, 57,192,211,254, 62,105,153,192,176, 7,242, 46,209,153,142,183,232,136,131,101,172, 30,218,168,218,125,238,186, +183, 95, 15,201,124,237, 94, 89,166,108,113,157,189,206,174, 69,170, 75,222,122,235,254,245, 73, 96,203, 12, 99,145,107,112,242, +107,105,103,115, 30,209,244,249, 76, 96, 63,230, 64,149,214,113, 87,153, 1, 54,210, 68, 84,117, 97, 61, 91, 38,238,137, 89,161, +171, 51,152, 13,161, 59,139,196,102, 8,217, 60, 46,175, 11, 7,128,180, 66,209,181, 4,242,100,190,206, 44, 76,107, 54, 73,105, +161, 57,126, 22,121,210, 92, 76, 29,161, 75, 94, 12, 85, 66,234, 38, 91, 95,235,210, 45,140,102,142,169,211,170, 72,169,208,165, + 73,201,190,124,252, 15, 68,203, 79,168, 99,215,140,232,194, 74, 34, 79,212,140,150, 49, 79,169,179,136,204,195, 15,146, 8,146, + 51,244,107, 98,201,144,214, 54, 50,240, 10,211,198,200,214,117, 55,178,154,165,176,153, 63,189,168,101,215,142, 84, 74, 53, 22, + 58, 37, 32,235, 21, 49,196,105, 52, 31, 22,251,188,172,129,193, 22, 41, 20, 81,207,107,159, 63,160, 56,141,232,132,218, 62,244, + 92,168,152, 53, 76, 39,133,169,221,148,109, 66,109, 55,207,147,104,142,177,158, 74, 71, 97, 85, 42,235,146,233, 99, 34,158,175, +144, 35, 11,253,178,120, 98,223,195, 63,171,200,119,174,225,195, 39,200,173, 35, 59,112,107,133,109,133,171, 61, 60, 84,120,111, +128, 7, 3,250,238,136,222,219,163,155,209, 14,243,161, 88,190,115,219, 93,165,134,215, 86,234, 88, 93,128,232, 23,187, 24,164, + 97,142,185,117,251, 20, 3, 49, 57, 77,168, 31, 8, 15, 77,124, 37,235, 64,216, 36,194,174,131, 55, 92, 46,140,237, 79,229, 44, + 34,251, 8,143, 21,185, 25,204,107,126,171,179,195,231, 81,134, 55,119,112,158,224, 70, 68, 78,131,117,225, 87, 25,222,202,112, + 97,156,113,233, 42,242,162,160, 23,138,222, 43,200, 91, 35,220, 62,130, 27, 29,242,160,162,253, 10,158,143,208, 41,242,104,132, + 7,131,141,250, 69,145, 91,197,172, 86, 23,192,223,218,194,247,158,194,127,249,113, 56,238, 97,115, 23,254,201,219,212,255,248, + 53,134, 52,178,125, 37, 48, 6,161,238, 97,119,161, 60, 69,241,179, 79,169, 95,119,245,218,157,136,222,138,132,211,128,174,133, +186, 41,232, 69, 57,232, 38,170,147, 5,211,253,138,110,108,215,223,149,198,233, 23, 66,178,200, 96,201,134, 61,175, 98,201,119, + 33,137,229,198, 71,103, 49, 4, 69,114, 32,156,118,200,211,137,250,110, 65, 99, 48,161,227, 75,107,228,233,206, 30,244,210,119, +220, 61,232,177,143, 3,130, 75,224,167,229, 98,103,191, 14, 98, 73,104,185,204,244,149,236,183,153,226,135,198,142,217,144,156, + 77,241,169, 69,172, 83,223, 57,223, 64, 43,114,218, 27,163,224, 76,140,236,151, 58,120,184,133,175,239,109,101,209, 9,188,185, +135,247,178, 5, 2,220, 8,246,121,156, 29,193,241,119,194,234,183,248,215,126,184,118,219, 88, 89,209,177,255, 60,236,126, 24, +189,183,135, 47,247,232,227, 29,249,222,150,178, 25, 28,126, 99, 45, 89,170, 48,202,194,251,221, 82, 11, 91,184,201, 2,202,165, + 11,130,220,146,197,221,178,210, 61,203,102, 49,142,158,168, 62, 62, 22,159,187,219,232,247, 26, 79, 8, 37,121,234, 99,113, 84, +165,136,109, 45, 54, 65,249,220,143, 95,176,251, 97,101, 47,141,141,109,227,236,136, 80,156, 64,215, 55,221,105, 16,142,164,161, + 67, 27,169,114,150,172,181,196,177, 6,108,105,217,202,193, 59,223, 50,185,188,197, 34,158,157, 35,149,181,129, 58,101, 49,250, + 85,146, 67, 69, 6,223, 11,183,177,118,110,141,138,204, 80,155,165, 27,235,176, 27, 91,132,253, 77, 52,186,121,188, 20, 16,167, +109, 46,138,132,198,253,152,148,224,117, 10,194, 20, 39,149, 29,100,177, 47,133,126,186, 32,104,126, 0,146, 85, 69,174, 53,239, +166,149,146,197,206,160, 97,113,163,139,218,170,151, 1, 9,139,145,150,134, 79, 43,115,241,193, 34,213,112,210,112,205,212,148, + 39, 78,194, 57,132, 38,120, 12, 44, 79, 8,251, 84,117, 1, 10,250,141,242, 89,218, 53,117,125, 57,223, 86, 17, 66,236,187,137, + 4, 23,155, 71, 93,157, 76,151,179,221,163, 92,143,129,204,133,141,189,223,209, 14,254,246,124, 15, 88, 57, 11,106,229,114,151, +222,214, 84, 58,123,250,209, 15, 24,216, 7, 33,229,106,136, 81, 45, 74,215, 7, 82, 76, 4, 81, 36,117,196,184, 66,227, 26, 73, +167,212,106, 67,176, 78, 93,109,170, 25,145,206,144,120,248,151,172, 24, 41,174,198,196,128, 65, 39, 2,197,224, 32, 68,194,144, +160,139,118, 64, 59,109,173, 46, 88,202,170,106, 80, 53,236,198,209,252,223,193,239, 14, 73, 60,159,183, 26,174, 47, 16,209, 80, +217,143,197, 94,100,246,225, 94, 47,136, 22,118, 57,179, 18, 56, 78,194, 73,138,172,168, 28,111, 11,125, 8,196, 27, 61,242,244, + 9,242, 66,111, 2,226,126, 68,184,132,167,247,200, 43, 43,184,243, 50,156,220, 52, 37,240,110,111,251,241,135,213,242,192,223, + 26,208,119,246,232,251, 25,221,236,169,155, 17,174, 70,234,174, 80,107, 33,123, 61, 95, 69,169, 81,144,193,191, 40,193,242,207, + 75,145, 86, 23, 77,228,172,226, 49,182, 13,157,153, 4,194, 8, 49, 40,105, 83,232,163, 18,163,146, 58, 33, 62, 20, 66,181,238, + 36, 28, 91,150,189,238,132,112, 20, 9, 47,174,144,211,106,104,185,149, 32,187, 8,131,162,143, 70,216, 23,164, 56,121,250,162, +192, 90,209, 62,194,105, 64, 7, 65, 71,179, 44,134,181,117,152, 82,176, 63,247,222,206,166, 22,231,107,232, 7,248,106,133, 51, +144,149,131,116,246, 3,218, 85,228,158,194, 15,111,224,215, 51,252,201,231,224,207,124,163, 93,113,239, 95,192,223,120,157,242, + 87,223,102,123, 86,216, 61, 39,236,131, 82,243,172, 31,169, 10, 49, 87, 52,249,170,119, 91,225, 45, 11,196,209,231, 19,117,175, +104, 22,100, 87, 25,223,203,108, 42,142, 23,182,115, 83,179, 39,149,157, 68,194, 0, 97,167, 48,186, 53,243,164, 67,142, 18, 58, + 66,237, 5, 61,241, 74,223,149,232,146, 32,196,222,246,222, 47,246,240,220,138,240,176,192,205,104, 83,143,243,100,171,139, 77, +134,219,106,207, 81,152, 91,129, 81,237,191,143,222, 31,141,217, 66,101,176,184, 84, 70,172, 3,223,249, 33,159,220,215,165,213, +146,234, 66,227, 75, 87,215, 99,248,216,105,133,209,231,238,244, 6,153, 89, 97, 34,187,130, 21, 98,175, 22,227, 29, 72,129, 13, +240,247, 30,216,168,255, 70,132,155, 5,238, 20, 88,191, 0,235,239, 54,255,250, 20,153,186, 16,198, 73,130,241, 85,184,250,239, +209,247,222,132,207,173,168, 95,186, 34,127,233,130,113,200,140,209, 1, 49,101,182,232,118,209,110,160,163,251,169, 7,153, 91, +211,202, 33,242,244,131,136, 40,181,109,224,220,139, 29, 43,139,108,182, 54,182,159,163, 50,147, 52,142,185,186,154,218,111,184, +157,117,199, 77, 17, 95,220,158,245,184,100,187, 79,232, 60, 5,168, 40, 35,202,190, 40,161,113, 47, 48,186, 32, 49,248,110, 94, +167,149,158,248,159,159, 32, 40,211,227,232,204,255,215,249,144,111, 62,237,226, 19,196,212,148,232,139,110, 81,197, 64, 44,201, +195, 88, 28, 9, 62, 29,226, 97, 41, 34,116,229,116, 89, 88,225,174,183,117,203,230, 92,171, 78,157,112, 27,179,183, 69,177, 30, +236,241,117,145,186,118,168,112, 23,102, 11,222, 97,116,209,172,111,138,174,164,215,133, 72,238, 48,241, 76, 14, 70,216, 19, 64, +133, 58,101,120,180, 71,175,174,113,152, 64, 79,190, 86,109,227,109, 9,205,214, 53,139,246,170, 43,166,150,225, 46, 70,146,170, +211,115, 84, 89, 18,224, 90,142,192,108,169, 19,253,128,116, 6,209, 67,181,192, 53, 82,157, 46, 44,110, 41,153, 56,186, 17,249, + 66, 76,102,171, 22,168,227,136, 22,215, 65,212,178,152, 50,184,222,160,235, 92, 18, 86, 93,171,113,232,226,230,137,207,101, 46, + 52,108,244, 94, 15,162,111, 15, 28, 11,126, 1,165, 90, 43, 59,131,252,210, 75, 79, 82,165,171, 35, 93,215, 19,211,218,190,171, +187,135,176,223,210, 21, 83,152, 27, 39,221,198,239, 41, 26,116,165,115,161,204, 94,139,147,210, 58,243,211, 73,165,247,175,122, +148,129,152, 86,212, 16,209, 82,166,106, 75,252,159,115,197,253,168,179, 32, 69,131,144,130,135,176,160, 88,238,201,108,107, 16, +194,172, 84, 22,151, 79,104,177,253, 92,133, 16, 42,235, 16,184, 81, 51,235, 42,164,243, 21,242,194, 25,242,202, 41,242,225, 0, +207,111,145, 27, 27,100,157,225,244, 14, 60,245,135, 32,126,151,205,117,203, 15,161,151, 95,133,215, 42,188,150,209,175,110,225, +253,129,122, 49, 82,119,131,249, 17,135, 66, 29, 70,114,174,100, 17, 70, 85, 70,103, 94,215, 98, 35,223,214,200,105,181,213,233, +232,107,244, 54, 85,240,168,102,178,152,158, 78,147,107,226, 26, 45, 84, 44,153, 53, 22,136, 89,137, 87, 74, 79,161,235,160,219, +184,216, 37, 4,180,239,224, 1,132, 75,181,113,253,168,232,101,134,119, 70, 83,182,223, 72,118, 51,236, 93, 3,240,254, 0,167, + 61,188,208,217,225,241, 32,160, 95, 46,232,221, 1,217,251,158,255,182,160,249,210,202,238,151, 78, 44, 87, 61, 87,203,247, 88, + 5, 56,173,200,235, 5,126,122, 15,255,223, 22,206,122,248,177,239,129, 79, 60, 13,219,119,225,157,135,240,231, 95, 99,248,199, +247,217, 62, 15,155, 51, 75, 64,171,213,181, 3,206, 60,144,216, 70,123,158, 80,118,132,141,148,239, 86,116,175,240,116,231,232, +211, 66,206,238, 63,246,223, 94, 70,195,222, 18, 2,114,158,108, 20,174, 1,185, 2, 25, 20,110,246,240,145, 53,114, 18, 9, 93, +107, 67,220, 54,214,153,151,156,211,222,185,233,213, 86, 5, 31, 63,118, 5,122,180, 67,249,129,143,173,163, 34, 67,245,192, 51, +117,237,132,162,123,191,137, 94, 96, 69,208,191, 48, 88,164,108,135, 31,248,106, 93,254,214,171, 16,162,117,219,219,206, 84,234, + 53, 33,197,219,139,216,153, 31,253,142,147,227,250, 96,202,189, 62, 34, 87, 5, 94, 31,225, 81,181,247,232, 65, 99,131, 87,251, + 61,157, 88,193,245,210, 0, 55,111,194,201,239,134,254,227,126,103, 41,179,185, 76, 86,246,103,246,191, 12,155,255, 22,238,189, + 10,191,208, 81,126,228, 49,227,155, 23,140,146, 25,250, 48,121,156,227, 33, 97,133, 62, 78, 43,195,233, 95, 47,119,232,203,236, +107, 28,158,210,254, 23, 15, 90,205,235,120, 81,143, 92,117, 6,123, 4,122,105,192,151, 89,108, 84, 93, 96, 22,220,165, 82, 68, +167,169, 65, 20, 83,223,151,228,221,147,119,168, 90, 33, 68, 63,132,253,126,178, 87, 8,165,176, 90,220,219, 83,180, 90,204,183, + 97,126,168, 86,115, 50, 48,243, 14,116, 49, 73, 92,246,170, 77,168, 89,188,121, 17,213, 5,144,198, 68,127, 9,241,235, 95, 23, + 99,105,251,190, 79,197,145,206, 86,171,249,140, 20,174,199,122, 31,168,225, 85,167, 67, 34,120, 19,164, 85, 39, 49,149, 48, 79, + 5, 88, 4,180,132, 5, 56, 39,200,108, 15, 92, 6,185,206,217,107, 79,214, 24,237,185,196,133,214, 96,145,240,242, 1, 61,177, +206, 37,129, 44,130, 96,154,102, 56,204,222,255, 6, 9,159, 34, 95,117, 54,238, 5,105,118,189,176, 88, 35, 60,177,246,159, 67, +109,244,240, 61,147,131,229,129, 78,123,235,105, 2,225,142,165, 22,170,210, 73, 32,244,189, 79,134,235,148,154,214, 68,113,154, +203, 4,138,145,133, 28, 82, 29,190, 19, 66,116, 33,168, 78, 83,168, 67, 73,158, 28,136, 13, 38,226,100,176,231,178, 32,230,114, + 61, 13,182,189,158, 20,125,238, 63,168,144,115, 33,239,246,116,235, 68,212, 64, 24,246,112, 60, 32,247,223, 36,212,140,132, 58, + 89,188,149, 74,162,176, 86, 33,105,153,112,138,150,164,102, 28,204, 20,196,141,241,150,126, 36, 8, 26, 19,132, 68, 13, 13,198, + 81,208, 96, 92,120, 10, 84, 15,187, 15, 94,225,110, 75,165,171, 74,239,222, 71, 81, 27,243,131,141,241,115, 41, 86, 45, 17, 12, +227, 89,139,165,203,185, 10,127, 45,112,179, 84,206, 82, 15,207,172,145, 79,156, 34,159,236,145,143, 14,200,237, 45,172,143, 97, +253, 59,161,251, 30,232,127, 27,132,103,161,108, 97,248,155,232, 59,255, 16,126,174,194,167, 51,245, 98, 75,221,143, 6,179,201, + 35,117,167,104,168,148, 82,173, 81, 11, 66,198,179,142,139,255,234,254,249, 36,190,135,108,122, 52,191,246,134, 10,181,202,228, + 40,104,118,158, 60,216,205,101,240,155,131,136,105,167, 58,177,149,104,136,112, 20,133,149, 42, 43,133,163,160, 68, 41, 72, 53, +197,179,158, 20,244,204, 10, 3, 94,223,161,247, 71, 99,221,223, 74,112,220, 77,221, 5, 67,133,221, 96,144,153,231, 59, 27,223, +247, 5,238, 68,228,237, 1,189,168,112, 92,209,251, 21,253,244, 99,100,183,183,131, 47, 10,250,214,158, 48, 84, 59, 48, 69,144, +109,132,255,232, 89,248, 15,255, 77, 88,127, 28,234,143,194,107,239,195,127,240, 37,118,239, 94,177,125, 89, 24, 79,204,113, 85, + 23,128,138, 62, 90, 82, 46,216,181, 99, 69,142,141,159, 21,172,123,206,106,218,133,125, 37,191, 58,178, 27,205, 15,142,219,139, +210, 70, 45,158,246,230, 10,238,244,246,235,145, 69,219,202,168,230,233,126,190,131, 91,106,246,174,228,115,227, 32, 51, 13,101, + 53,218,254, 63, 62, 99, 97,233,187, 75,123,162, 23, 21, 94,191,178, 2,104, 83, 97,168,232,174,160,219, 98,255,156, 21,221,121, + 39, 55, 8,220,221, 33,127,106,141,124,235,191, 11,235, 63, 52, 7,169,232, 61,224, 43, 80,190, 0,229, 61,208, 43,168, 27,243, +147,215,141, 85, 38, 57,216, 56, 60, 90,102,171,210, 65,233,124,108,175,200,155, 91,248,213,157, 49, 15,126,247, 45,248,226, 3, +120, 99,107,223,171, 36,246, 70,222, 22,248,196, 22, 94, 88,195,201,247,192,250,123,124,183, 52,206,135, 57, 21,202, 61,216,253, + 24,108,255,119,244,205, 7,232,255, 35,148,127,244,128,252, 96,203,238, 8,118, 41, 48, 44, 52, 57,141, 63, 16,253, 0,232,252, + 62, 51, 78, 22,214,153, 22,215,249,239, 25,125,239, 91, 29, 27,123,144,204, 22,150,221,251,162,111,108,128, 23,204, 46,155,130, +229, 69,104,139,171,245,181,156,184,141, 78,131, 77,185,130, 90,132,106,243,118,143, 10,251, 50,135, 50,129,216, 58,133,176, 80, +221,155,112, 50, 3,235, 96,163,241, 82,237, 16, 25,125,159, 27,131, 21,222,197,195, 56,100, 98,110,133, 5,252,253,154, 57,253, + 32,215,124,145,212,230, 97, 46,237, 30,221, 47,198,200, 73, 22, 30,246,230,197,174, 58,143,215, 15,211,203, 15,142,197,101,235, +214,186,253,220, 20,241,234,169,115, 50, 75, 21,101,241,185,134,131,194, 96,113, 8, 45,215, 37,139,193,112,253,141,230,214,204, + 84,185, 72, 53, 76,110,235,196,157, 12,215, 44,111,185, 33,106,213,227, 94,130,120,238,185, 23, 72, 65, 38,248, 78, 27,181, 7, + 76,196, 90,189, 18,140, 62,201,136, 11, 86,190, 4, 99,132,148,122,200,132, 87,157,139, 26,189,166,116, 95,190,155,141,250,231, +172,226,201, 41,208, 20,232, 1, 72, 93,239,104, 86, 59,180, 99, 76,190,110, 80,202,176,119,216,197, 98,247, 68, 43,186, 23, 25, + 32,238, 60, 88, 36,198, 60, 9,189,145, 57,215,100,161,244,152, 16,138,242, 65, 48, 4, 47,120, 82, 41,149, 40,202, 81, 17,143, +223,195,130, 60,134,129,176,238, 96,191, 37, 94,220,155,200, 67, 73, 76, 29,220, 41, 28,147, 73, 19, 53, 74,141,241, 92,133, 81, +161,200, 72, 12,105, 26, 11,165, 10,149,140, 14, 3, 28, 37, 59,124, 68,145,236, 59,228, 34,179, 2, 83, 32,212, 58,125, 0, 89, + 45,215, 56,149, 58, 67, 31, 52, 19, 67,180, 70,106,172, 68,242, 84, 37, 15, 62, 79, 56, 11,240, 66, 45,156,173,123,248,232, 41, +225,149, 53,242, 91, 64, 94,217,192,217, 57,116,255, 10,172,254, 32,164,143,248, 30, 52, 66,185, 11,251,191,134,190,254, 67,240, + 35, 17,253, 98,166,236,246,134,209,221, 13,212,161, 76,192,155,138,218, 33, 29,230,220,237,234,135,181, 78, 98, 20,133, 69,192, + 92,109,187,161,214,157,235,225, 40,173,197,248, 14,238,145,110, 97, 2, 69, 13,230,209,196, 16, 67,133, 85,134,163,106,137,154, +199, 40,221,163,193, 46,220,167, 2,172, 50,245,205, 75,184,178,116,183,112, 35, 33, 47,174, 12, 45,106,112,108,123,240,187,163, + 61,169, 23,214,112,123,109, 10,250, 59, 3,188,176, 69,182, 5,237, 11,220,219,193, 63,219, 82,127,230,190,237,128,111, 37,179, +225, 17, 8,191,121,109,177,156,127,246, 89,248,238,223,105, 63,123,252, 65,248,217,215,225, 63,253, 42,101,183, 97,248,136,144, +147, 50,248, 67, 5,177,142,169,247, 72,121,170,157,107, 65, 43,146,155, 13, 7,100,109,209,168,147,129,229,189,202,240,168,162, + 29, 30, 12,100,124,241,245, 51, 29,242,145, 99,228,229, 19,228,217, 53,242,204, 10,158, 2, 78,119,230, 78,232, 5,122,133,238, + 41, 72,207, 24,180, 69,143,156, 82, 19, 33,158, 66,119, 11,228, 55, 1, 47, 0,127, 7,134, 95,178, 9,199,167,175, 96, 63,192, +219, 35,188, 61,152, 23,121,168,168,157, 42,104, 39, 22,165,122, 63, 34,175,109, 8,127, 54, 34,159,250, 1,224, 21, 7, 10,173, + 32,172, 64, 62, 14,252,139,243, 11,214,193, 72,111,186,113,133,225, 99,144,199,246,247,245, 17,148, 47, 35,250,171,176, 11,232, +189, 17,253,252, 35,228,115, 27,187, 70, 63,220,193,151, 31,193,175,236, 32, 6,244, 52,152,150,225, 86,133, 15,239,144, 91, 79, +193,233,167,224,244,223,128,244,226,162,103, 22, 40, 15, 97,248, 89,216,253, 31,240,232,255,167,235, 93,131,109,203,174,251,174, +223,152,115,174,181,247,121,221,103,119,223,238, 86,235,237,150,228,182,172,216,178, 99, 89,118, 98, 59,113, 98,226, 56,113, 66, +133, 24, 19, 82, 36, 69, 2, 5, 36, 80, 20, 85, 64, 97, 10,202, 64,133, 47, 64, 65, 21, 36, 85,144,144,132, 36, 80, 9,224,138, +147, 24,236, 56,196,137,223,145, 45, 63,164, 88, 45,181, 30, 45,169, 91,253,186,239,199, 57,103,239,189,214,156,115,240, 97,140, +185,214,218,231,182, 63,180,125,213,125,239, 57,231,238,189,246, 28,115,140,241,255,255,254, 47,161,159,174,212,191, 93,109,220, + 46,133,237,229,192,166, 24,151,188,137,218,162, 90,231,219,162, 80, 87,113, 46,192, 93,180,188,244, 77,245, 14,205,211, 10,117, + 70, 60, 77,241, 28,121, 49,122, 37,136,173,223, 90,231,219,160, 1, 77, 71, 88,108,200,154,170,249,206,163, 71,144, 70,102,221, + 97,174, 70, 81,107,157,100,205,190,247,247,201, 69,198,200,130,101, 54,151, 91,132,102, 93,236,159, 5, 6, 21,182, 62,110, 15, +226,145,164,193, 32, 53,181,234,148, 30, 23, 69, 38,209,153,161, 87, 93,240, 37,139, 84,177,139,225,187, 50,235, 0,194, 98, 50, + 61,179,206,231,223, 29, 91,167,190, 76, 19,107,197, 91,116,143,233, 23, 91, 21, 98, 0, 0, 32, 0, 73, 68, 65, 84,190,196,195, +182, 60,131,122,129,136,166,203,142,118, 65,167,211, 54,106,214,165, 57,109,169,187,210, 69,239,186, 47,190,171,250,152,248,122, +175,227,213,169, 43,222,247,232,135,197, 42,162, 57, 7,194,197,191, 79,144,125,207,252,133,184,227,226,127,151, 37,217,174,168, + 62,230,126, 3,125, 12, 28, 35,139,164,188,139,194,184, 9, 56,113,113,234,162, 30, 76, 38,102,217,238, 83, 34,244, 43,203,134, + 87, 37, 46,128, 48,181,100,223,165,235,212,133,207,193, 44, 76, 40,217,101,118,250,194,133,246,182, 23, 37,109, 95,195, 3, 99, +168,245,241, 49,196, 66,111,208,236,135,137,146,233,162,129, 68, 14, 99, 79, 9,129, 97, 55, 80,210,142,116,114, 29, 57,191, 75, + 28, 55,150, 39, 60, 20, 83,101, 75, 32,105,225,160,190, 29, 61,201,104,114,165, 84, 6,231,170,183, 14, 53,146,169, 99,128, 52, + 66,114,239,104, 48,251, 28,238, 15,157, 2,239, 27,160,193,189,150,141, 24,215,169, 34,193,197, 2,213,148,235,113,113,112, 0, +116,162,156, 8, 60, 83, 50, 55, 18,196, 27, 7,200,251, 58,228, 91, 10,242, 65, 96,253, 65,232,254, 37, 56,248, 78,136,151, 13, +161, 57,126, 14,182, 63, 5,143,254, 17,250,153, 91,240, 83, 61,229,141,145, 58,238,168,187, 1,221,101,178, 26,139,190,248,144, +161,104,139,237,243,125,184,131, 56, 20,223,247, 90,108, 51, 33, 76,205,151,233,167,176,241, 94,219, 45, 54,108,101, 45,251,118, +200,106,182,126,107, 42,219,135,195, 79,142, 33, 67, 78,166, 91,208, 29, 12, 17, 14,138,114, 92, 6,226, 77,168,159, 24,225, 53, +181, 92,241, 15, 28,154, 5,174, 98, 10,247, 36, 45, 81, 1,185,181, 65, 95,181,220,119,121,246,208,105,120,246,131,232,249, 0, +255,228, 33,229,179, 91,134,123,153, 92, 13,179,123,184,141,132,143,172,209, 91,138,254,250,136,252,240, 9,188,255, 18, 60,122, +209,252,239,127,247, 77,248, 95,111,194,149, 29,229,105, 35,124, 85,103, 60,196,101,182,177,143,222, 87, 71,129,238,122, 52,152, + 78,176, 14,133, 65,205,210,135,160, 81,172, 48,103,241,113,172, 83,254,182,176, 74, 17,121,223, 17,242,190, 99,228,125,135,200, +179, 7,112,253, 12, 57,201,208,191, 7,194,135, 65, 62, 12,188, 27,228,138,207,245,197,230,180,205,171, 29,139, 23,214, 10,124, + 26,118,191, 97, 54,193, 31,127, 8, 95,222,194, 7,162, 81,236,238,143,212,228,118,152, 13,200, 70,144,115,236,226, 68, 38,252, + 87, 87,145,223,251,163,192, 19, 80, 63, 15,245, 31,128, 60, 3,250,141, 16,158, 3,185,106, 33, 43,178, 54, 11, 25,199,246,115, +200,214, 72,112, 13, 88, 16,111, 1, 95,129,123, 27,244,197, 17,253,212, 41,124,121,103,135,201, 73,130, 79, 84,123,208, 14, 4, +158,234,224,201, 12,207, 13,198,247, 63,124, 15,172,191, 7, 14,190, 7,186,119,187,255, 92, 65, 31,217,238,124,247,183,224,244, + 23,208,151, 7,248,105,161,124, 98, 36,223, 63,103, 88, 43,103, 49,176, 41, 86,228,218, 4,169,157, 53, 69,188, 59,119, 87,221, +232,207, 98,244,206,124, 43, 76, 99,226,226,191,191,214,185, 75,106, 26,246,169,168,142, 83,182,144, 77,232, 90,240,138, 39,230, + 5,148, 88,253,247, 47,246,173,117,218,117, 47,247,185,222,161,183, 17, 64, 16,170, 36,250,232,246,200,226,231,135, 40,181, 56, +223,162, 61,133,238, 1,223,170, 19, 17, 3,172,170,146, 92,218,208,192, 54,161, 46,213,209,179,216, 47,180,127,225, 44,250,134, + 47,157,124,217, 62,126, 15, 11, 62,123,245, 51, 68, 22,180, 23,161, 5, 0, 49, 9,250,130,171,189, 77, 4, 38,123, 19, 0,157, + 66, 89, 22,197,118, 9,167,209,102,134,147,233,156,105,187,249,160,251, 72,218,134,113,189, 56, 88,175, 23,108, 86,243,152,126, +191,207, 13, 11,200,186,250,109, 33, 92, 48, 77, 46,227,201,219,152,190,178, 39, 32,152, 11,174,200,111, 19,217, 50, 55,192,181, + 49,225,223,142,108,215, 58,166,197, 94, 95,228,241,145,251,108, 89,147,233,245,108,118,235, 37,204, 69, 98, 48, 59,116,191,114, +151,140,131,182,186,206,129, 67,234,176,153,165,192,110,201,149, 55, 45, 66,104, 81,169,191,221,168,131, 69,138,249,146,208,164, + 50,185,165,116, 41,242,211,249, 66,215,114, 4,140, 77,150, 11, 42,145, 85, 8,172,164, 50,212,145, 48, 22,186,206,226, 29,227, +253,123,132, 98, 10,238,164, 74,172,133,181, 64, 39,117, 98, 98, 91, 28, 29,148,234,177,119,181,206, 64, 24, 12,187, 90,105,182, +128, 2,187, 45, 34, 43,247, 74,218, 7,183,214, 72,168,131,139,137,171, 79,230,189, 27, 10, 45, 34, 47, 24,170,214,199, 88, 65, +237,103, 82, 15,189,140, 56,219,131,194,181,237,142, 75, 73,137, 79, 29, 35,239, 89,195,183,123, 16, 88,247,173, 16,127, 8, 86, + 31, 50,145, 80,254, 28,108,255, 50,220,254, 57,244,229, 13,252, 90, 68, 95,138,148, 71, 91,106, 25,208, 49, 83,182,153, 34,134, +188,108,190,212,218,232, 76, 52,170, 29,251,170,236,210, 62,104, 23,198, 86,109,183, 62,237, 34,237, 80, 40, 89,167,215,114,185, +159,242,201,171, 37,149,250,175, 59,139,228,118,175,163, 11,149,212, 50, 60, 34, 74,248,242,142,113, 7,241, 84, 57,122,125, 71, +220, 40, 74, 66,174, 41,196,100,222,189,147, 14,206, 6,120,121,139,126,173,194,173, 1,190, 97, 68,179,192, 39,207,209,223,122, + 4,111,109, 25, 67,102,123, 41, 80,174, 26, 48, 93, 70, 69, 15,125, 31,126, 41,194, 15, 93,129, 23,142,225,214, 41,220,189, 7, +175,141,240, 19,247,224,201,140, 30,214,153, 66,185, 80,245,234, 34, 75, 33,136,208, 63,159,144, 99,129,251, 62, 38,172, 13, 16, +238,135,250,177,195,218, 79, 18,221, 93, 69, 94, 29,140,152,119, 57, 66, 72,200,213, 53,242,145, 19,228,106, 7, 79,222, 70,142, + 46, 65,252,211, 16,255, 32,196,119,128, 28, 46,108,101,186, 56,102,182,214, 21,203, 93, 7,237,108, 32,255, 56,124,254, 45,248, + 63,182,148, 23, 79,169, 97,132, 95, 80, 27,185,111,173,128,235,185,105, 57,194,229, 68,120, 97,141,252,190, 43,200,199, 62,132, +188,247, 47,122, 56, 74,129,244, 46, 40, 87, 29, 77,247,140,113, 93, 37, 61,158, 48, 37,173, 44, 30,248,255,255, 44,236,126, 20, + 94,188,137,254,114,164,254,243,141, 1,155,142,237, 57,169, 67,181,232,226, 85, 68,159,142,240,174,140,188,171,192,229,231,160, +255, 56, 28,124, 28,210,243,126, 89,141, 80, 55, 54,125,218,254, 18,236,126, 12,189,245, 10,252, 42,232,255,171,228, 91,231,212, + 58,176, 61, 80, 30, 97,242,128, 93,101, 82,216,198, 6, 81,145,137,141,100,201,235,237, 96,246, 11,103,146,121, 39, 27, 29, 13, + 91,242,190,250, 71,226,140,239,149, 11,157,108, 83,167,155,199, 87,246, 98, 38, 39, 37,245,212, 37,202,156,112,229,197,116,130, +160,120,174,249, 56, 81,191,204,213,208, 43,156, 47,236, 96, 34, 1,209,185,175, 13,213,109, 78, 46,124,212, 54, 98,111, 2, 51, +157, 47, 1,193,187,238,185, 24,153, 40, 46, 54,179,195,124,125, 33,182, 68,182,229, 16,251, 66, 71, 47,147,168,176, 78, 10,243, +206, 19,234,170,202,133,210,184,152,234,121, 1, 42, 94,124,157,158,239,103, 83,157, 18,199,150, 99,241,165,214,161, 94,228,178, +188,205, 36,119,249,221,101, 31,163,126,161, 67,159, 27,221, 37, 61, 79,246, 44, 15,115, 65,111, 23,131, 40,226, 92, 2,153,255, +124,203, 3,240,236,120, 93, 88,241,166, 39, 66,218, 4, 73,166,221,114,101,145, 95, 47,238, 98,242,103,106,185, 10,145, 6,156, + 10, 50,171,235,125,188,174, 11, 76,175,182,149,129, 79, 20, 82,138,132,152,236,189, 84, 69, 82,178, 66, 91, 43,185, 20, 75, 95, +163,238,241,230,247,200,121, 33, 80, 67,160,148,108,161, 47, 19, 23,192, 52, 22, 42, 51,251,128, 69,158,193,164,198,208,178,135, +136, 23,185,128, 21, 92, 68,224, 38, 36, 52, 14, 10,161, 84,214,100, 86,154, 81, 57,129,221,134,114,250, 8,137, 38,213,142, 8, +157, 40, 93, 44,244,197, 30,223, 34, 66, 8, 38, 56, 41, 85,208, 26,201,213, 68,106,181,152, 77, 41,104,157,124,126,218,104, 49, + 91, 65,250,222, 14, 71,140,252, 37,163,119,164,181,129,115,117,142,189, 68, 40,154,247, 62, 72, 45,172, 33,214, 74,162,114, 88, + 11, 87, 74,225, 40, 64, 58,234,145, 43,107,228, 15,172,224,119,101,228,137, 75,208,125, 63,196,239,134,110,132,221,223,129,237, + 47,192,253,151,208,207,111,224,147, 9,125,185,167,158,141,212, 60,160,117,152, 72, 65, 53,217, 77,191,150,166,216,100,102, 24, +203,227,162,140, 61,239, 14,139,192,130,197,248,105,250,196, 92,136, 4, 94, 94, 71,155,186,177,113,140,165,206, 47, 75,251, 80, + 4,119, 9,172,215,118,184,158, 15,240, 96,103, 93,213,245,104,183, 76,182,160,103,138, 94, 18,228, 60,195, 67,108,102,250,176, +192, 65, 52,141,194,203, 5,121, 54,163,215, 59,248, 72,135, 92, 91,195,111, 41,241, 13, 88, 7, 33,171,192,202, 82,136,234,231, +171,169,142,255,253,235,200,147, 7,112,115, 99, 41,114,193,242,188,249,222,158,242,226,128,190, 57, 34, 81, 89,128,114,231,196, + 46,103,169, 4,224,252,165, 76, 95,252,113,182, 58,141, 30, 7, 83,187, 99,241,187,168, 88,113,255,112,164,187,218,193,135,123, +163,205,189, 41,200,251, 15,144, 67,224,224, 85,228,232, 67,208,253, 37,232, 62, 48,167,147,253,182,215,226,100, 72,186, 18,108, +215,156,255, 2,124,238, 37,248,107, 35,229,139,103,148,211,108, 81,184,143, 42, 82,132,112,220, 35, 31, 58, 38,252, 11,151,144, +111,190,140,188,243,253,112,244, 97, 72,223, 9,114,205, 11,248, 8, 53, 67,121,217,119, 39, 79,248,252, 53,188,253,207,162, 25, +228, 30,232, 79,194,238,111,194, 27,175,192,207,117,240,203, 1,221,157,195, 42, 27,227, 32, 6, 36,118,118,187, 91, 5,244, 70, +130,247,239,144,247, 6, 56,254, 14, 56,248,227,208,127, 3,132,195,197,237,241, 12,242, 87,224,252,255,134,243,159, 69,191,250, + 16,126,178,163,190,184,163, 12,231,148,152, 25, 68, 57, 43,182,238, 25, 90, 68,230, 66,223,212,208,205, 77, 76, 93, 44,112,207, + 30, 93,119,167, 36,148, 94,132, 97,121, 25, 93,136,154,132,101,178,214, 92,224,202, 66,225, 27, 38,234,153, 46,210, 18,141,174, +146, 11,148, 32, 70,236,242,206, 10,215,228,168, 23,232,246, 76, 21, 85, 52, 43, 69,139,243, 54,132, 21, 66,205,202, 80,235, 4, +231,147, 11, 99, 78,241, 11, 67,213,249, 66, 17,188,235, 44, 58,255, 90,177,207, 91,179, 35,137, 24,221, 55, 8,220, 45,243,120, + 58,136,208, 97,208,171,176,176,173,114, 65,212,214, 76,230,170, 50,141,211,219,247, 14,139,130,222, 14,241,186,136, 29,217,191, + 28,201,228,162,215, 61, 21,157, 46,211, 81,253,125,219,167,239,201,194,192,215,158,210, 42,179,149,109, 89,136,117, 49, 29,145, +199, 85,130,254,188,204,153,236,149,101, 22,138, 78, 32,161, 25,198, 42, 83,246, 89,149,253,142, 63, 46, 4,145,186,140, 87, 69, +167, 92,245, 54, 53,105, 77, 99, 27,225, 7,177, 73,176,248,229, 46, 68,235,148, 69,162,173, 76,130,236,121,224,165,121,231,221, + 19, 30, 93, 85,175,110,119, 20,135,244,140, 30,214, 18, 83,242,177,123, 65,199,209, 34,127,107,181, 41,227,130,224,143,175,109, +164,235,205,202, 93,234,196,154, 87,239,242,219, 67, 35, 81, 30,163,236, 77,160,154,162, 51,161,175, 77, 40,218, 11, 35,251, 50, +248,164,197,126,176, 65, 18, 53, 23,250, 80,233, 36, 32,169, 39,156, 62, 98,172,149, 34,145, 64,101,229,194,179,180, 8,125, 79, +193, 60,143,187,106, 34, 19, 3,203,204,190,235, 80,203, 20,191, 23, 53,184, 88,166, 16,242, 56,101, 68,119,238,223,212,152,168, +227,232,188,118,127,108,106,157,185, 29,117,113,227, 13, 16,171,221, 84,187, 90,185, 92, 50, 87, 68,232,143,215,200,165, 21,242, + 97,133,239, 79,200, 7,158,128,248, 93, 16,126, 31,240, 0,118,255, 19,188,246, 34,250,250, 25,124, 13,120, 41,162,175,245,212, +243, 76,213,173,169, 23,107,153, 33, 19, 50, 71, 11,234,226, 1,154,212,186,139,235,108, 27,211,237,125,136, 10,110,153,154, 3, +197,216, 67, 62,202,219,166,244,168, 94,184,132, 45,254, 99,235,148, 86, 81,233, 59, 39,200, 10,156,111,109,186,222,101,120, 74, +225,248,133, 3,248,214, 35,194,234, 0,174, 29,216,174,121,147, 93,142, 47,150,189,221, 85,228,219,119,112, 71,225,134,203,161, +142, 42,242,206, 35,248,214,142,244,185, 45,233,179, 35,171,175, 95, 81,127,229,156,241,203, 3,233,195,135,200,191,251,132,133, +141,124,225, 1,124,126, 11,175, 43,124,104, 5,215,122,244,201, 14,125,119,111,236,246,251,195,188, 55,146, 25,122, 33, 69, 41, +209,124,198, 53, 43,185,179,184,211, 85,198,210,231,214, 1,118,126,196,100, 39,183,109,130,217,204,158, 92, 25,237,238,174, 34, +151, 59,131,177,231,183,144, 39,191, 9,214,127, 11,210,117, 27,171,235,153,183,136,235,183,217, 2,250, 13, 66, 15, 64, 30,192, +240, 31,193, 47,255, 58,245,191,129,250,234,150, 58, 22,184,220, 19,223,125, 68,248,174, 35,228,187,174, 32,207, 29,195,225, 26, +186, 99,251,115,163,192,163, 79,160, 55,255, 30,250,217,219,232, 43, 3,225,247, 95, 67,158,255, 51,176,250, 30, 39,227,108,108, +132,194,193,133,154,126, 6,250, 5,216,253,117,184,255, 51,240,210,125,187, 88,254, 86,143,106, 70,201,212,206,189,141,213, 93, +225, 93, 48,160,208, 51, 17, 62,176, 67,222, 25,225,232,123,224,232, 79, 65,255,254, 57,161,205,114, 23, 97,252, 26,156,253,117, +120,248, 75,232,103, 51,250,143,123,244,230, 72,233,183,212,243,204, 80, 42,103,152, 32, 63,123, 62,120,104,123,215, 38, 46, 11, + 30,173, 60, 59,105,102,138,151,103, 15, 73,128,174,170, 91,219,108,224, 47,161, 49,225,103,222,187,138,238, 57,157,130,234,162, + 27,217,183,116,165,230,237, 13, 80, 26,160,164, 84,235,148,177,241,125, 13, 22,136, 81,151,118,173, 90,173,243,118,161,211, 80, +237,188, 90,251,104, 91, 20,206,202,156,115,158, 23, 99,255, 6,250, 16, 92,221,175,115,136, 72,155, 7,182,103, 39, 47,125,199, +218,252,237,226,150, 54, 59, 20,218,190,183, 42,123, 69, 78, 23,175, 95, 93, 4,175, 84,199,255, 46,127,239, 52, 90,175,139,221, +244, 36,121,171,123,103,200,236, 75,223,135, 2,161, 60,150, 63, 22,216, 23,141,181, 64, 24, 97, 57,109,120,188,147, 23,246,173, + 84,203,189,241,148, 64,216,150,161,178,223,157,207,246,182,139, 73,100,138,134,102, 44,191, 72,133,123,108,233,224,147, 15,217, +215, 45, 41,116, 49, 16, 83,164, 15,137, 24, 19, 33, 70,243,144,203, 68,206,113,226,161, 78,255, 84,173,190,218,173, 19, 43,191, +169,234, 83,215,209,197,142,212,119,196, 16, 38, 33, 94, 74,157, 79, 11,132,243, 97,199,176, 90, 51,148, 66,206, 35,165, 20, 74, + 85,198, 50, 82,198,129,154, 71, 68, 13,139,174,165,236, 65,111,150,186, 9, 9, 50,191,234, 77,192,235,211,134, 41,201,237,237, +116,253,178, 39,201, 68,204, 89,161, 84, 9, 12, 33,178, 11,129, 94, 34, 93,239, 55,233, 97, 75, 8,129, 24, 18, 41, 70,122,170, +225, 86,147,249, 58, 27,222,180, 86, 33,103,101, 91, 96,168, 25,213, 56,177,161,139, 42,181, 75, 70,254, 41,101,242,148,138,102, +187, 28,168, 5,204,135, 46,145, 83, 66,106,153, 70, 19, 97, 82,130,122, 8,135,191,201, 61, 66,168,153, 64,101,157, 43, 87, 75, +229,136, 68,184,118,128,124, 52, 16,126, 0,248,134, 15,192,193, 15,130,126, 39,212, 35, 24,127, 2,125,253,175,193, 47,158,193, + 75, 29, 60, 90,161,231,153,186,115,129, 67, 53,119,185, 58,111,185,169, 33,107, 35,213,213,253,220,228,233, 17, 43,115,236,227, + 18,210,208, 58, 25, 60,158,179,237,215,162, 52,177, 78,179,177,232, 20, 69,168, 11,161, 76,149, 9, 68, 52,141,169,219, 39,196, +223,255,233,235, 14, 21, 78,207,224,108, 52,149,241,115, 1,142,159, 95, 33,223,127,213,138,208, 46, 26,188,100,157,204,239,220, + 24,170,138, 21,196,163,222,198,229,219,130,190,248, 8,253,201,251, 4, 45,200,147, 98, 20,189, 63,127,221,114, 0,126,106,199, +234,251,143,224, 7, 47, 25,124,253,215,239,194, 63, 60,133,251, 5,190,227, 0, 46,245,182, 31, 88, 11,114,163, 55,143,251,205, +209,118,153, 46, 38, 44,101, 74, 32, 53,203, 80, 81,182,126,217,137, 10,114, 37, 32, 43,161, 12,190,115, 56,138, 70,165,234,163, + 41,218,123,215, 6,124,169, 90,168,201,251,128,243,219,200, 7,190, 17, 46,253, 24,232, 3,208,191,231, 84,151,111, 4,158,127, +251,130,222,110, 24,245, 77,184,247,175,162,127,251,139,212,191,210, 91,134,253,247, 95, 35,253,192, 37,194, 7, 46,193,165, 67, + 91,180,138, 39,228, 61, 56, 69, 95,121,131,250, 43, 15,169, 63,123, 74,125,109,139,222, 43, 6,175, 73, 80,255,230, 45,194,135, +126, 4,249,143, 63, 66,120,225, 47, 64,247,188,127,191, 7, 46,130,251, 77,216,254, 19,120,248,179,232,171,111,161,159,170,240, + 27,107,244,245, 14, 98,166,166,115,232, 21,237,188, 53,206,201, 58,140,131,136, 92,234,224,217, 21,242,117, 91,120,199,122, 46, +232,221,123, 93, 31,176,155,180,234,228, 91, 48,252, 61,120,244,139,232,175, 84,244,147, 9,221,141, 20,217,160,247,182,236,182, +112,234, 17,169,109,125, 20,151, 49,162,190,227, 93,238, 68,219,180,178, 4,115, 86, 68,204,157, 23,247,104, 97,179,184,142,104, +248,232,182,136,174,194,222,165, 92,203,133, 69, 41,182, 62,178,253,180, 81, 46, 41,173,147,174, 22,187,233, 23,133, 16,125, 87, +238,116, 57,251, 18,117, 6,212,104,219,237,234, 36, 66,139,106,160,191,222,141, 31, 59,223, 95,123, 42,182,239, 37,117,218, 47, + 71, 95, 5,166,226, 89, 22, 30,241, 89,246,118,195, 86,208,207,213,132,123, 54,222,173,123,148,175,101,231,220, 4,107,114,161, + 73,104, 83,172,246, 26, 38,167,198, 5,229,226,198,122,138,173, 21,239,229,151, 17,168,123,211,238, 58,219,196,248,109, 24,112, +178, 40,242,203, 79, 73, 81,221,179,123,233,126, 9, 95, 76,153,229, 49, 42,218, 98, 8,137, 59, 87,169, 75, 11,123, 99, 83, 52, +107,180,159,109, 77, 9,175, 11,191,127,184,168,190, 95,236,186,155,250,109, 21, 34,253,170,167, 79,189, 77, 38,101, 86,139,103, +247,139, 55,193,246,228,252,241,155,102,148,232,150,226, 64,173,126, 17,107,209,187, 37,163,209,242, 3, 36, 70,183,112,167, 41, +108,104,204,133, 92,202, 76, 11, 76,137, 46, 38, 42, 74, 87,123,198,213, 26,205,227,164,142,207, 11,161,247,180,142, 16, 22,163, +243,233,176,159,169, 63,211, 62,136,189, 36, 57, 31, 29,237,121,218,155,195, 32,165,100, 30,113,201,202, 86, 11,171,160, 22, 4, + 49,236, 40,187,115, 98, 54, 86,112, 18,251,144, 75, 4, 73, 29, 33, 85, 59,228, 20, 80, 27, 85,103,215,239, 84, 45, 83, 96,131, +229,164,103, 98,138,136, 99, 3, 82, 3, 17, 20,179,186,105, 13,140,181, 24, 35, 94,162,129,109, 88,176,139, 77,209,231, 99,124, + 37, 81,233,107,229, 68, 11,199,187, 64,234,214,132,247,118,200,159, 0,249,248,187,225,202,191, 6,225,247, 64,184,102,150,161, +179,191,128,126,225,167,225,199, 59,120, 45, 81,115, 54, 48, 64, 41,104,205,118,192, 4, 75, 77,211,176,175,236,208,197,195,180, + 55, 62,126, 27,143,160, 46, 88,198,161, 50,133,216,180, 67, 44,121,151,170,222, 44,215, 11,176, 34,163,183, 90,210, 93,187, 68, +168,103,186,136,168,177, 77, 60,200, 45,186,205,109,244, 67, 96,200,246,231,159, 70,185,244,142, 30,190,249,192,178,220, 31,130, +156,103,219, 1, 5, 87,191, 71, 93, 40,128,189, 19,222,217, 7, 76,207,171,161, 71,213, 41,104, 47, 13,240, 98,182,246,235, 15, +172,225, 27,162,113,218,255,241,134,242,202,104,241,173, 69,233, 62,179,133, 39, 2,188,223,101,233, 59,224, 41,231,161,223,207, +148,245, 62,199, 89, 27, 9,206,195,128,114, 86,202, 65, 64, 46, 1,119,213,186,232,203,193, 72,110, 87,123, 51,234,171,229, 22, + 79, 57,158,183, 10,242,234, 93,228,187, 34, 92,249,159,173,251,149, 53,240, 61,192,203,192, 7,125, 87,253, 54,142, 90,205, 48, +252, 99,120,240,231,208, 79, 63,128,235,207, 16,254,198, 49,188,243, 18,172,220, 15,189, 27,224,193, 67,244,107,231,212, 95,124, + 64,254,249,115,202,171, 27,242,131,209, 48,200, 43,208,163,136, 62, 3,161, 19, 58, 17,186, 26,136, 95, 1,249,215,127, 3,253, +221, 63,136,252,145,107,200,213,222,214, 29,247, 6,120,237, 12,125, 69,224,206, 1,122,247, 16, 54,138,134,140, 94,221, 77,221, +152,133,183, 40,172, 44, 8, 70,106, 68,142, 59,228,157, 9,190,225, 28,158,186, 12,135, 63, 0, 7,127, 12,210,115,166,164,183, +113,134,245,201,186,131,252, 51,112,231,239,163,191,148,209,127,190, 70,183, 91,202,253,115,202, 27, 27,206,179,114, 38, 98,153, +231, 42,115, 54,119,219, 31,239,229, 99,207, 71,186, 22,235, 80, 69,103,145, 21,227,140, 40, 77, 14,207, 11,139, 2, 86,131, 23, + 38,173, 38,158,243,162, 91,124, 15,149,252, 89,239,253, 86, 43,110, 81,203, 77,205,173,179,245,172,226,220,236,246, 51,121, 72, + 75, 93,164, 55, 6,143, 9,147,170,150,237,238,227, 93, 31,246, 76,135,121,138, 50, 55, 30, 4,106, 10,116, 77, 47, 83,161,102, + 27,116, 31, 68, 37,138,173, 19,243, 20,184, 34,123,126,251, 81,149, 17, 49, 79,126, 19,244, 77, 34,172, 38,172,155, 63,232,177, +101,128,235, 50,249,108,150,198,139, 66,148,234,129, 67, 77, 7,208,188,227,117,178,131, 70,183,208, 22,213,125, 4,220, 82,198, +182,224,179,215, 11,133,120, 41,154,187,168,100,159,123, 8, 93,128,105,228, 49,192,218,227, 10,248,133, 50,223, 45,118,211, 14, +152,118,249,114,174,251, 34, 14, 53, 74, 36,122,114,217, 88,171,101, 9,132, 54, 22,183, 12,245,177, 20,155,160,185,107, 33, 74, +160, 75, 29,169,235, 9, 41, 78,176, 30, 45,121, 47,223, 94, 38,207,119,152, 50,222, 67,176,175,107, 35,121,219,223,103,119,120, +149,106, 23,187, 20,125, 9, 36, 98,235, 28, 21, 6,169, 72, 45,140,170,108,135, 29, 99, 46, 20,167,195, 45,133,138,168, 61,127, +177, 95, 17,186,158, 93, 30,145, 16, 41,195, 72, 45, 6,168,153,128, 57, 23,111, 68, 58,135,181, 40, 51,183, 96,207,202,118,193, +235, 63, 9, 1,171,146,242, 80, 44,236, 32, 12,236, 42,156, 82,169, 49, 81,119,149,176,217, 17,164, 78,232, 84,170,239, 22,197, +195, 41,142,123, 24, 10,186,117,116,107,105,162, 49,117,209, 76,180, 34,165,149,190, 40,169, 55,254,186, 37, 48,153, 37, 68, 85, +169,238, 47, 55,250, 92,103,187,206, 90,136,213,110,223,154, 71,208, 74,196,194, 86, 86, 89,185, 50, 42,171,176, 34, 60,181, 34, +252,145,138,252,192,101,120,250,207, 66,247,135,129,107, 62,255,251, 10, 60,250, 81,244, 51,191, 9,255,160, 71, 95, 55,108,173, + 82,156,244,229, 4,179,184, 8, 83, 17,157,176,179,109,103, 94,203,252,122,199,199,200,217,186, 76,213,155, 62,148,102,127, 94, +140,213,235, 28, 92, 16,124,156, 25, 23, 23,129,230, 16, 16,223,147,247,189, 71,136,186,202,120,229,128,157, 92,140, 69,146,157, +123,146, 92, 28,184, 78,194, 81, 81,174,157, 4,228,235,122, 56, 11,240,178,229,163,211,139, 41,203,215,217,150,237, 71,222,174, +164, 96,150,177, 85,178, 47,184, 29,145, 15,154,255, 90,223,218, 34,247, 71,144, 1, 94, 29,224,155, 86,182, 43,254,177, 45,249, +179, 59, 54,219,204,112,100, 83,154,213,137, 32,247, 11,233,231,206,205, 7,255, 76, 15,135, 22, 16, 35,223,216,211,253, 82, 65, +182, 22,209,186, 87, 90,117,246,145,170, 8,227, 80, 25,190, 4,105, 29,225,122,176,164,184, 75, 78,125, 83,144, 65,224,190,213, +118,182,231, 72,127,142,124,223, 21,120,225,199, 49, 91, 67, 92,124,117,119, 53,224,222,239,229,199,161,110, 96,252, 77, 24,254, + 50,244,151,145,111,123, 7,196, 3,187,205,111,118,232,171,143, 40,191,250,128,242, 51,143,216,125,246,156,241,225,200, 80, 43, +185, 19,198, 99, 65,159, 17, 74,151, 88,202, 63, 66,177,184,217,117,172,172,175, 10,171, 49,194,175, 1,191,118,215, 46, 9,135, + 46, 22, 8,107,155, 58, 60, 33,112,185,160, 93, 65,183,217, 81,109,205,180, 12, 72, 66, 46, 37,194, 81, 71,168,157,141,220, 63, + 50,192,179,239,134,195, 63, 6,253,239, 51,149, 61,163,167,170, 36,187,208,232, 22, 54,127, 7,253,234, 95,132,159, 29,208,155, +135,212, 7,103,148, 55,207, 24,239, 13, 54,110, 23, 97,172,236,199, 97,182,255,221,198,204,139, 73, 80,172, 83, 48,226, 36, 26, + 83,109,177,165,115,164,106, 90, 36,131,181, 32,141,184, 88,253, 37,255,156,100,221,135,173, 20,153, 85,230,109, 93, 88, 23,163, +222,226,251,199,204, 92, 36,140,157, 45,143,133,119, 68, 22,185,234, 64,231,208,142, 34,182,182, 42, 42,148, 96,157, 86, 41,118, + 96,135,208,236,188,179,176, 73,189,226, 14, 84,122, 49, 61, 17,226,198, 89,245, 64, 40,255,187,108,105, 10,119,231, 74, 0,131, +234, 98,251,189,124,230,213, 35, 89,101, 66,207, 46, 3, 61,130, 95,122,218,142,125, 18,215, 79,141,132, 76,231,203, 76,135,243, +124,246,197, 94,126,207,211,188,112, 88,201,219,164,128, 45,235, 73,148, 89, 4,172,178,180,202,201, 50, 47,101,138, 62,213,133, + 61, 45,184,235, 97,210,134,225,129, 59, 58, 19,239,218, 42,184,177,223, 45,125,204, 60,237,181,214,133,216,205,117, 24,205,102, + 40, 17,237,172, 3,143,197,128,101,171,148, 8, 93, 15, 18,200,254,103,155,134, 35,180,191,140,119,105,109,188,173,126, 45,211, +150, 36, 40,197, 38,197, 33,152,102, 44, 38,194, 42, 18,137,211,100, 73, 28, 24, 19, 68,168,181, 48,162,108,119, 59, 74,206,211, +168,158, 16, 93,147,225,147, 94,199, 18,167,212,161, 33,208,197,104,206,142,110, 69,209, 66, 41,133, 90,178, 93,168,115,165,120, +161,159, 58,238, 16,125,151,206, 30,197,144, 32,147,166, 33, 44, 40, 52,138, 76,226,201, 68, 49, 2,206,224,235,187,141, 84,164, + 10, 33, 27, 10, 54, 52,177, 69,117,144,129, 8, 34,217, 89,215,214, 50, 86, 2, 37, 4, 98,200,172,198,106, 33, 42,192,202,183, + 31,198,136,175,200,232, 31, 10, 41,147,194,143, 26,220,152,143, 37,153,213, 64,151,162,141,195,199, 1,212,242,187, 87, 94,127, +142,134,202,241, 86,232, 47, 29, 34,223, 25, 8,127, 50,194,251,191, 23, 14,255, 67,144,119,216,155, 88,111,193,238,239,194,157, +191,129,254,198, 67,248,153, 21,245, 86,246, 27,146,119,232,158,184, 68, 85,164, 10,218,114, 19,202,156,198,212,110,237,203, 29, +121,184,144,142,163,236,135, 45, 44,133,113,234, 31,242,118,104,182,209,121, 10,179,216, 46,182, 81,188,119, 52, 77, 19,214, 69, + 56,232,108, 60, 58,250,215, 57, 58,180,236, 22,173, 48,238,102,110, 74,136,230, 20,184,210, 41,253, 19,189, 21,141, 51, 69, 98, +133,119,121, 46, 55, 61,220, 88, 27,228,100,187, 80, 63,117,142,171,235,128,212, 33,207, 95,182,221,251,237,173,177,196,239,110, +224,214,104, 56,210,223,170,112, 69,144, 94,201, 89, 25,130, 61,112,171, 67,168, 61,232,205,140,124,226, 12,126,175, 88, 49, 46, +192, 90,233,158,207, 28,189, 56, 24,116, 71, 22,169, 73,126, 44,212, 98, 44,237, 20, 33,174, 34, 60,149,224,106, 66,142, 2,156, + 11,122,223, 46,150, 6, 54,218, 32,223,164,240,245, 79,192, 59,127, 4,142,254, 48,112,228,163,129,193, 59,243,222,186,118, 10, +112,105,255, 2, 86,238, 67,249,103,192,255, 5,241, 14,148, 3, 11,177,249,226,215,168, 63,255,128,252,243,143,216,125,109,199, +102, 24,217,246,129,124, 24, 40, 55,160,244,145,170, 22,209,105,171,169, 89, 77, 29,130,144,212,120, 5, 69, 97, 68,201,177,208, + 95, 18, 18,129,208,249, 62,185,203, 72,231, 91,230, 18,141, 36,215, 18, 80,155,223,175,243, 78,179,139,132,117, 36, 28,216,202, + 68, 62, 88,224,153,103,225,210,159,131,240,113,143, 31,202,126,212,247, 86,208,235, 91,112,255, 63, 69,127,227,167,209, 79,159, +192,157, 3,234,171,143,200,175,159,115,186,203, 60, 20,177, 32,184, 58,219, 76,169,179,103, 90,155,142,197,171, 70, 83,129, 19, + 76, 68, 91, 36, 76,151,221, 41,251,154, 11, 4,185, 69,140,104,150, 5,240, 99, 49,197,234, 74,155, 43,168,101,109, 87,101, 25, +135,141,175,165,162,119,217,226, 29,105,235,216, 91, 33,105,187,116,243,146,219,119, 25,140, 45,138, 4, 83,144,219,175,211, 12, +180,114,235, 89,245, 27,122, 85, 65,181, 80,135,106,127,231, 69,251, 89, 34,108,137, 32,193,158, 77,183,175,138, 51, 93, 27,103, + 66, 84,167,184,231, 56, 81,217,116, 47, 55,125,222,161,234,100,169, 43, 83,131,224,182, 50,159, 75, 23,140,245, 81,117,129,133, +209,185, 36, 5,143, 91, 45,203,216,211,133,104,109, 46,184,179,200,172,157,195,203,166, 94,222, 38, 57,109,201,211,152,146,218, +150, 65, 11, 75,113,225,158,147,158, 61, 79,249,146, 31, 63, 71, 27, 47,244, 21,139, 75, 70, 20,153, 28, 69,139,235,220,100,235, + 85,239,156,251, 24, 72,171, 21, 99, 46,172, 17,250,126,133, 6,115, 68,209, 44,142,139,231,175, 46,198,221, 90,152, 46,225,203, + 85, 66, 16, 38, 12,112, 12, 66,138,137,149,246,196, 78,136, 18,168, 18, 76,221, 14, 20, 50, 21, 97, 44,153, 50,142,243, 36,203, +187,126,131,168, 25,217,174, 74,182, 29,189,197, 64, 18, 37, 16,131,173, 61,149,206,214,210,165, 80,171, 82,180,146, 75,166, 44, + 20,244, 85, 21, 29,199,169, 80, 52,128, 79, 99, 22, 72, 11,158,241, 55, 88, 23,102,247, 84,203,104, 35, 0,177, 15,206,161,152, + 0,173, 25,221, 27,106, 85,170, 16,131, 18,163,237, 60,109,214, 84, 97,151,237, 3, 65, 96,157,162,229, 18, 47,136, 62, 59, 23, +118,153,138,221,225,247, 45,161, 76,236,107, 35,193,114,216,181, 82,243,134,113, 51, 18,138,133,204,119, 33, 88, 24, 86, 80, 14, + 55,149,131,146,136,239, 57, 36,252,153,138,252,174,167,225,234,143, 64,252,221,216, 44,244, 28,134, 95,129, 71,255, 29,124,249, + 43,232, 63,235,225, 83, 7,212,179, 29,165,238, 12,155, 58, 65,246, 27, 1,102,225, 89,109, 81,174, 77,225,209, 48,143, 45,136, +128, 69,103, 22,108, 95,152,219,110,204, 79,181,198, 49,174, 11,192, 76,155,168,182, 93,159, 52,253,147, 43,137, 71,247,189,167, +133, 26, 37, 2, 71, 7,150,156,121, 54,216, 23, 57,232,172, 89, 62,117,131,111, 10,182, 38,239, 20, 46,103, 56,186,222, 89,238, +248,198, 69, 63, 87,147,125,147, 46,192,183, 94,131, 43,199,240,202, 29,187, 61,244, 2,125, 54,122, 75,116,108,108,131, 81, 95, + 90,219,254,250,114, 7,183, 18, 60,177, 67,223,218,193,121, 65,174, 42,241, 61,129,227,255,231,140,250, 96,164,174,172,209,143, +107,195,147,242, 32,195,231,183,132,119,173,108,157, 49, 40,250,129,158,131,219,153,237,173,202, 89,191, 63, 10, 20,236,185,143, +206,153, 9,215, 44,137, 77, 82, 64,118, 1,198, 64,184, 19,224, 16,248, 24,240, 29, 31,132,167,254, 51,144,223,225, 87,167, 87, + 97,247, 15,224, 19,127, 5, 62,247, 38,124,236,221,240,142, 63, 12, 39,223, 4,171,239, 53,168, 11, 5,244, 33,148, 95,135,252, +191,193,246, 11,232,131, 13,250, 98, 64,127,106,195,248,243, 15, 25,238,237,216, 69,101, 56, 20,118,215,133,177, 75, 12, 34,174, + 11,241,100, 84, 15, 79,107, 63,255, 44,236,178, 15, 92,244,223,155, 11,108,131,125, 48,147, 40,105,204, 46,168, 10, 72,177, 7, + 37,244, 78, 56,233, 60,237,173, 90, 90,161, 68,131, 84, 72, 31, 9, 99,176,142,253,134,194, 13,129,163, 63,228, 5,253, 10,243, + 83,117,226,192,159, 95, 67,191,244, 39,225, 87, 79,225,245, 39,208, 91,149,242,133,123,108,239,110,121, 20,148,211, 96,132,184, + 80, 61,217, 76,205, 18,170, 50,135,141,236, 73, 55,235, 60, 70,204,158, 73, 52,169,214,253,247,166, 69,119,231,122,251,137, 56, + 87, 2, 72,149,105,132,222, 10,203,116,206,138,135,207, 85,157, 71,249, 14,230,208,133,136, 42, 6,136,181,169,148, 43,227,172, +180,153,172, 90,211,168, 85, 26, 29, 28, 79, 7,243,160,146,226,121,214, 49, 46,186,233,202,206, 5, 51, 90,150,183,117,153, 80, +172, 21,211,130,156, 41,164, 81, 89, 75,157, 88,226,203, 0,166,224, 93,178,250,152, 46,136, 93,242, 26, 25,207,118,196, 46,109, +107,217, 22, 23, 35, 78, 23,211,190,234, 65, 49,117, 26,174,154,130,126, 18,221, 53,237, 64,235,116,167,232, 96,153,243,205,247, +242,213,231,225,121,185, 80,208,151,232,243,165, 30,232, 49,239,186, 46,236,119,111,115, 33,104, 25, 30,123, 49,167,178, 15, 78, +159,158,149,230, 4,241,213,155, 44, 64, 53,210, 28,242,238,150,106,148,247,166,198, 63, 73, 61, 97,157, 16, 2,185, 22,134, 90, + 38, 37, 57, 90,167, 75,128, 46, 0,183, 75,146,253,242,181,144,197, 37,132,134,107,245,207,118, 41,133, 56,137, 38, 35,136, 48, +214,202,152, 51,121, 28,231, 63, 31, 2, 81,194, 4, 16,209, 96,126,174, 64, 71,140,102,187,204,165, 64, 80, 15,126,137,182,106, +206, 6, 79, 91,247, 9, 73,145, 49, 23,198, 82, 24,134,157, 53,157, 2,163,215,167,170,185,233,228,155, 1, 16, 87,140, 78, 60, +151,229,223, 51,137,223, 22,186, 20, 72, 98, 56,214,136, 49,205,197,193,229,198, 85,175,182,127, 9,126, 8,197, 54,139,174,118, +163,144, 72,144, 72, 31,109,100, 98, 67,238,234,160,136, 6,139,176,244,182, 16,133, 80, 33, 68,143, 87,205, 35, 99, 19,210, 53, +202, 82,176,155,217, 90,148,147, 12,199, 69,233,226, 1,225,219, 86,132, 63, 39,240,254, 31,132,245,127, 0,242,164, 47,251,190, + 10,155,255, 1,222,250, 89,244,211, 25, 62,121,136,190, 81,168,155,115,223,159, 87,106,174,179,191,116, 17,125,164,137,249,218, +173,123, 27,242, 89,160,230,173,119,235,166,171,206, 69,122,138,140, 92, 20,171,184,192, 65,206,171,210,197,247,244, 59,132,191, +111,243, 77, 57, 48,141,178,250, 0,235, 35,123, 61, 74,113,140,120, 50,146,220,218, 79,212, 67,224,210, 78, 57,188,158,144, 27, +107, 88,117, 22,237,167, 66, 56, 15,134, 87, 93,117,240,214, 6,238,109,173,152, 95,139, 54, 30,239,122, 8, 79,128, 94,133,248, +121,200, 91,139,251,108,137, 98,193,178,192,245, 48, 82,159,235,145,179, 98,162,176, 35,161,251,174, 67,174,254,211,115,106, 41, +164,147, 54, 94, 16, 56, 16,228, 97,133,215, 70,228,190,137,139,234, 13, 33,188,167,231,202,102,135, 14,202,249,194, 31, 35,126, +152, 30, 6,232, 14,131,161, 60, 75, 64,206, 5,222,244,232,210,111, 63,128,223,127, 3,158,253, 62,144, 63,226,127,248,239,194, +253,255, 29,126,227, 37,248,171,103,240,115, 25,214, 61,172,191, 6, 31,251,139,240,111,119,240,194, 85,208, 39, 13, 87,183,219, +192,221, 51,120, 69,168,255, 60, 82,127,102,160,190,114, 78,201, 3, 15, 66,229,193, 59, 2,181, 11,214,105, 23, 19, 64, 86,103, +212,140,139,160,157,234,177,231,173,164, 38,241,226, 37,179,192,177, 86,203,121,151,232, 59, 95,177,125,115,200,214, 45, 74, 0, +221, 41,178,170,150,197,126,152,144, 28,145,222, 4,129, 82,130,253,129, 62,194,141, 10,239,221,194,209,215, 67,250, 54,239,208, + 23, 9,107,188, 1,183,255, 29,120,241, 19,240,171, 7,232,163, 27,212,219, 91,234,151, 79,217, 62,216,113,191, 19,118, 68,131, + 32, 45, 46,140,193,185,211,206,129,153,149,208,178,192,117, 98,197,223, 36, 50, 66, 23,236,215,203,238, 92, 22, 32, 56, 9, 74, +167,208, 5,101, 20,119,247, 85,123,189,180,204,119, 70,125, 27,241,147, 46,163,183,150,194, 94,181,110,115,237, 44,110, 93, 60, +158,178,176,137, 52,118,154,103,238, 89, 71,174,226, 54, 41, 11,161, 42,163, 53, 48,113,234, 98, 61, 17, 46,137,255, 61,100, 82, +196, 55,145,153,250,185,145, 17,106,132,181, 71,113, 54,162,164,250, 40,221, 86, 9,182,130, 9,173, 59,109,241,167, 50,143,245, +138,143,236,203,210, 98,172,115,215,186,180,247, 7, 47,230, 81,247, 98,233,109, 21, 48,249,206,245,130,162, 93,246, 34, 90,245, +194,170,182, 29,103,225, 2, 51,126, 63,135,116,182,138, 61,150,209,242,219,140,238,213,187,109, 89,196,172,182, 61,179,232,172, + 79, 91, 50,229,219,191,171,186, 79,152,175, 62,253, 8, 8, 41, 69,186,148, 72, 33,178,142,137,163,131, 3, 82,234,184, 95, 10, +219, 51, 27,129,215,150, 29,208, 38, 62,139,215, 69,101,150, 42,234,196,252,247, 61,254,130,250, 30,146,117,233, 49,118,123,183, +158,160, 74,234,146,231,206, 7,116, 28,253, 89, 45,134,169, 85,165,198,197, 7, 72,148, 16, 3,171, 16, 72,253,202,206,136, 80, + 40,181,184,246,161,210,135,136,174, 18,104,165,139, 9,237, 58, 42, 59, 74, 45,134,215, 85, 91,199,245, 93, 79, 77,206, 54, 16, +198, 0, 0, 32, 0, 73, 68, 65, 84, 29,121, 28, 40,195, 48, 17, 87,223, 86,247, 59, 73, 24, 43, 73,125,199,211,169,178, 70, 56, + 10, 16,171,221, 44, 2,115,192,253, 4, 0,104,172,140, 86, 8,147,189, 44, 53, 23,178,103, 9, 38, 7,209,107, 85, 6,212, 16, +167,158,234, 20, 68, 9,197, 68, 16, 49, 59,141,162, 40,154,236,192, 91,185, 40,111, 37,202, 97, 86,142, 11,172, 74, 36, 94, 57, + 32,252, 81, 65,126,232, 50, 60,253, 35, 16,191,207,126, 24,125, 0,219,159,134,135,127, 25,125,249, 13,248,100, 15, 47, 29,162, +219,145,146, 71, 84,109, 17, 93, 27,237, 37,212, 11,128,221,201,231, 96, 66,165, 9,123,102, 35,143, 24,230, 32, 1,149,249, 1, + 23,153,120,136,118, 3,150, 61,198,130,143, 44,231, 47, 23, 88, 48,165, 23,187, 43,113,144,204, 84,232, 23,142, 6,201,144, 78, + 2, 71,201,138, 64, 12,246, 62, 29,172,129,157,210,141,202, 74,132,116,117,133,124,203, 17, 28,186,250,243,106, 50, 31, 93, 39, +166, 72,127,114,101, 66,173, 85,180,157,247,170,194,106, 13,188, 7,248, 93, 32,191,229,239,107,178,255, 22,139,189, 47,181,122, + 14,112, 64, 66,135, 30, 5,216, 6,100, 20,184, 46,132,239, 14,132,135,174,208,219, 85,120,171,218,173,164,157,108,217, 46,132, +225, 77,168,125, 36, 62, 17, 57,188, 93, 24,243,226,254,228, 69,166, 79, 32, 7,222,169,222, 7,110, 3,223,122, 8,127,234, 89, +120,223,101, 72,239,180,181, 74,249,207, 97,247, 26,188,120, 19, 62,149,225,142,239,168,255,141, 30, 62,118, 12,239, 62,178,226, +206, 8, 95, 62,131, 7,119,224,213, 17,190, 34,112,119,109,240,152,113,160,202, 14,189,156, 57,143,112,175, 6, 30,141, 50,167, +146,234,140,181, 44, 45,255,219,253,170, 5,177,176,161,133,191,185, 11,211,144,103,154,232, 88,241,145,169, 3,170,213,138,158, +102, 87, 68, 38,139,210, 13, 41, 17, 14,220,153,112, 20,225,138,192,129,218,251,112, 56, 90, 30,250,181,119,155, 15, 61,220,240, +217, 87, 48, 2,221,248, 99,240,202,127, 13,191,242,144,250,202,147,232, 78,208,219, 27,202,203,167,108,206, 70, 30,174, 2, 91, +181,159,151,216, 58,107, 33, 6,123, 95,203,232, 89,219, 11,223,115,173,112, 33,146,122, 38,144,233,204, 91, 40,173,184,214,249, + 18, 90,171,109, 20, 90, 7,223,123, 67,182,115,119, 67, 90, 98, 66,167,184, 81,220,194, 42,147,127, 26,157,133, 63,182, 79,182, +162,107,176, 43,247, 53,123,145, 84,113, 53,122,176,228, 70,141, 97,206,234,198,184, 10,170,150, 25,190,155, 80,176, 22, 49, 29, + 68,232,163,208, 41,236, 90, 96, 72,211,211,212, 58,185,190, 9, 86, 34, 6, 31,139,118,190,131,159, 39, 27, 86, 52, 82, 16,122, + 95, 73, 13,101,145, 88,119, 65, 81, 43, 45, 6, 86,247,181, 58, 77, 0,183,212, 38, 72,109,107, 14,157,188,219,226, 10,124, 93, + 20, 66, 46,248,199, 3,198,173,175,174,123,216, 3,191,200, 99,246,242,125,182,251,194,163,190, 52, 39,232,219,216,219,150,202, +121,149,253, 92,111,120, 92, 80,215, 8,161,178, 72,190,155, 57, 62,246, 85, 83,128,195,144,136, 93, 71, 8,209,168,163, 34,100, +132, 77, 46, 83,180,172, 77,208,202,130, 90,184,164,234, 53, 87,124,251, 94, 97,159,196, 38,251, 34,197,189, 85, 66,245, 64,153, + 90, 33, 69,114,181,124,143, 97,216,161, 37, 19, 68, 40, 49,162, 57,147,107,133, 60, 58,232, 40, 16, 66, 36,106, 96, 72, 66,201, +163, 93, 50, 67, 32,164,206,197,129,117, 62,248, 67, 34, 11, 12,187, 29,195,176,163,148,108,245, 37,165,201,254, 22, 99, 32,172, +215,148,174,243, 41,115,245, 61,188,101,156, 32,198,128, 89, 86,248, 20,177,236,242, 75, 65, 57, 8,112, 37, 64,231,180,182,233, + 54, 40, 86,144, 68, 22,254, 44, 49,159,153,186,132, 81,213,118, 3,177, 6, 52, 65, 31, 13,138, 94,170,221, 52,211,146,216, 34, + 74,240,204,243,160, 74,151,108,148,124,160,202,186,192, 65,169,172,178,176, 42,129,120,184, 34,188,144,144, 63, 29,145,223,249, +117,112,252, 95, 66,248,128,237, 70,199, 79,193,249, 95, 69,111,125, 6, 62, 23,224,215, 14,225,150, 26,163,189,100, 83,150,213, +249,103,244,128,223,185, 42,199,253,228,169,105, 39,213, 12, 22,113,126, 80,100,162,255,204, 15,112, 88,136, 65,227,226, 80, 87, +157,199,241,141, 47, 66,116,129,141,204, 15, 84,239, 19,128, 84,109, 47,222,110,183, 73,236,223,165, 12,117, 35,196,171,201, 86, +195,143, 42,171, 92,233, 59, 67,229,134,152,144,247, 31, 34, 47,184, 15,253,176,183, 3,241,114,156,130, 87, 88, 39, 43,230,177, +206,109,228, 14, 72,231,208,191,110, 33, 35,250, 34,156,122,242, 87, 91,189,236, 42,228, 98,171,136,195, 54, 47, 13,240,132,162, + 15, 19,104, 68,222,233,121,236,247,138, 49,214,215,213,105,167,193,248,228,207, 39,248,212, 6,185, 7,210,249,216,119,227,163, +250,182,147,173,118, 71,140, 91,144,187, 1,217, 9, 60,119, 0, 63,250, 52,124,211,211,176,234, 45, 96,231,214,167,224,183,238, +194,235, 91,232, 59, 56,237,160, 91,193,135, 4, 62,186, 54,209, 38, 61,188, 54, 88, 34,206, 70,225, 81,128, 39,175,194,199,158, +133,119,221,134,127,244,150,241,209, 79, 21,118, 88,129,221,250,161, 84,103, 4,116, 85, 40, 65, 39,187,162, 52, 66, 32,243,238, + 79,253,240, 69, 46,228, 79, 87, 23, 60,122, 1,200, 75,120,134,216,100,194, 70,236,129,208,173, 8,151, 87,240, 68,180, 15,222, + 51,138, 60, 81,225,104, 13,209,255,233,190, 14,214,191, 23,186, 23, 76,184, 16, 6,168, 95,132,219,127, 22, 94,122, 21, 62,123, + 21,189,115, 3,125,144,169,119,118,228,215, 55,108, 54,133,211, 46,184,226,219,217,213, 58,219, 54,106,133,162,230,106, 9, 65, +137,121,127,215, 24, 22,182,166,101, 38, 1,133, 69, 39,180,176, 97, 57,251,124, 84,251, 62,237,210, 19,221,207, 77,158, 11, 87, +179, 40, 73,115,120,248,202, 74, 23, 59, 84,130,141,101,163,226,249,227, 54,245, 72, 2,169, 88, 49, 44, 65,125,183, 40, 11, 38, +121, 37,151,106, 1, 31, 69,167,156,113, 69, 24, 49,119, 66,136, 54,134, 23,153, 3, 59,130,127, 22,179,170,253,188,117, 46, 60, + 83, 76,168,143, 28,139,218, 14,223, 46,233,230,230,105,231, 64,223,246,250,106,178,149,140,238, 37,130,237, 45, 56, 26,148,103, +223, 43,102, 41,113, 50, 91,202,218,254,116, 54,146,249,120, 93,116,186,112,133, 61,106,165,206, 53, 3,153, 48,174, 75, 17,100, +185, 16,102,178,159, 0, 39,123, 5,253,109,140,160,139,209,251, 98,180,125,161,123,156,196, 92,141,131,180, 92, 53,248,207, 19, +131, 77, 66,131, 43,211,145, 64, 10,129, 36, 1, 77,137, 90, 43, 35,118,110,137, 42, 49, 70,134, 90,232,179,178,234, 87,108, 98, +152, 18,231,116, 47, 79, 46, 60,134,189,155,167, 14, 98,246, 83,153,125,238, 34,139, 14,163,148,233,123, 75, 20,106,169,148, 90, +217,141, 3, 37,231,105, 26, 16, 66, 64, 99,164,150,226,170,121, 99, 40,132, 16, 72, 53,161,170, 12, 46,164,107,187,250,148, 58, +186,104,226,140, 25,152,163,116, 34, 72,191, 34,151, 72, 41,133, 33,143,166, 31, 41, 54, 9,111, 96, 28,141, 9,173, 22, 96, 38, + 93,240,226,159,173,216,151,249, 54,158,174,138,114, 18,133, 46, 41,235, 8, 39, 46, 8, 9,117,126,203,165, 46,246,193,107,191, +242,143, 5,189,107, 25,154, 34, 86,168,179,143,233, 83, 21,186, 20, 73, 43, 99,126,111,115, 53,175,159,199, 42,118,190, 15,238, + 5,214,170, 28,231,202,122,132,131, 26,232, 37, 16, 82,143, 92, 23,228, 27, 2,242, 7, 35,242,209,103,224,218,159,128,240, 3, +182, 35,222,252,127,176,251, 63,225,193,231,208, 87,182,240,210, 26,190, 18,224,254, 72,221, 20,187,153,227,243,190,160,115,241, +110, 50,210, 86,185,235, 66,125,158, 4, 41,113,126,247,187,246,201,240,150,162,180,194,236, 99,245,186,255,228,215, 89, 56, 63, +143,222,252, 97, 78,209,126,236, 62,186,168,173,206,208, 47,201,222,165,122, 71, 79,163, 34, 37, 11, 10, 9, 93, 48,161,207, 81, +176, 14,206,211,138,100,140, 86,208,127,231,101,228, 82,111,127,137, 85,244, 46,208,179, 76,197,196, 22,242, 32,219, 15, 54,120, + 27,114,210, 89, 40,203,213, 71, 16,126,218, 68,226, 15,131,209,107, 54,174, 55,216,121, 83,120, 90,224, 97,177, 46, 42, 84,216, + 96,182,183,195,232,241,171, 98, 94,247,195, 8,231,254,154,175, 34,124,244,216, 78,167, 87, 11,156,237, 8, 7, 2,199,149, 85, +168, 12, 3, 72, 82,250, 32,164, 67,136,103, 32, 55, 5,186, 14,126,228, 25,248,222,119,194,149, 39, 96, 56,133, 55,239,192, 75, + 15,208,159,188, 71,189, 89,144, 39, 35,225,253, 10,215,253, 85, 63, 3,238,136,197,191,173, 51, 60, 29, 97,221,153,247,254, 93, + 21, 62,244, 78, 88,191, 31, 54,183,224, 36,192,189,140,222, 83,179,218, 61,145, 88,191, 81, 57, 42,202, 46,193,214,223,103,149, +121,160,211,194, 56,150,194, 72,145,153,188, 37,111,131,219,156,173, 40, 50, 29,248,161, 5, 46,244,193, 4,112,235, 72,184,214, +195,123,123,120, 78,145, 39, 43, 28,158,192,193, 11,208,127,135,165,197,133, 4, 28, 66,247, 36,200, 17,108,191, 2,103,255, 45, +188,246, 73,248,226, 10,253,210, 13,244, 65, 65,135, 29,245,246,142,242,198,150,237,160,156, 39, 60, 81, 45,184,178, 91,124,252, +183, 24,225, 78,228, 56,155,144,141,126,200,137,182,216, 79,155, 52, 4,157, 57,224,131,238, 39,123,197,198,205, 14,179,224,110, +172,179, 10, 90,196,185, 4, 75,218, 73,181,189, 39, 85, 38,222,185, 15,117, 76,175,224,175, 87, 82,245, 61,190,191,206, 69, 73, + 81, 88, 43, 12, 45,183, 96, 74, 64,210,249,148, 12,243, 56,120, 9,117,232,130, 32, 18, 73, 98,162, 54, 45,213,133,108, 86,156, +181,218,254, 94,125, 26, 48,248,152,123, 17, 75,190, 7, 78,137,173,115,246,170,157,100, 22,197,142,126,174,164, 22,106,179, 16, +135,202,130, 93,174,139,184,209,198,110,151,118, 17,241,135,109,154,130,200, 82, 59, 48,187, 11,154, 20,168,125,175,221, 66, 62, +201,222,158,219,214, 18,210,152,252,162,251, 68, 57,153,145,189,242, 54,204,119,189,160,168,147,133, 80,238, 34, 94,182,157,177, + 23,237,114,181, 9, 9,221,166, 22, 83, 98, 21, 19, 33, 90,134,103,241,142,123,212, 74, 29,243,100,228, 86,170,217, 19, 67, 71, + 46,133,206, 87, 40, 65,228,130, 13, 79, 46, 44, 36,246,163, 90, 13, 44,228, 83,161,133,114, 63,138, 93,180,181, 86, 52,206, 14, +154,234, 2,200,237,144, 25,119,219,233,245, 12,205,187, 30,130,191, 63, 70, 30,181, 21, 83,182, 77,174, 79, 57, 81, 53,242,103, +140,164,152,233,186, 68, 74,137, 24, 35, 41, 70,143,250,141, 38,142, 44,182,111,239, 82,154,160, 58,185, 20, 70,135,216,104, 67, +203, 54, 76,186, 8, 53, 38, 67,220, 6, 91, 95,215, 90, 73, 79,118,214,153,131, 5, 89,181,136,196,138, 78,196, 39, 17,143, 7, +237, 39,207, 8,250,198, 14, 61,205,200,165, 72, 76, 74, 26,117,250, 48, 73,173,196, 92, 57,192, 2, 20, 30,102,101,231,123,167, + 20,224, 48, 42,199, 69,185,146,149,163, 18,233,250, 21,225, 70, 36,188, 67,225,163, 32, 31, 89,193,251,142,224,218,215,193,193, + 15, 64,248, 54,168,199, 70,200, 58,255, 49,216,254, 18,122,235, 20,190,216,193, 87, 78,224, 86,134, 71,163,129,100,234,136, 90, + 48,251,158,164,115,202,199, 85,157, 37,189,109,165, 32,179,135,167,197, 24,180,225, 13,213, 80,183, 68,255,119, 90,237,146, 83, +152, 70, 98,101,202, 36,152,139,249,164,242,144, 57,117, 44,137, 53,204,211,135,194, 11,183,244, 16, 86,201, 14,124,196,210, 49, +143, 18,114,220,217,165,234, 56, 34, 81, 45, 87,252, 78,177, 91,194,183, 31, 19,190,254, 4,158, 58,180,219,209,232, 97,237,197, +105, 52, 99,134,156,209,187, 3,122,223,119,229, 77,104,113, 28, 97,179,130, 77,239, 9, 51, 10,167, 25,182,163,123,232,252,214, + 94, 21,238,143,150, 86,166,254, 23,192, 10,190,108, 60, 11,118,231,151,159, 85,176, 19,229,216,151,198,159,222,217,107,253, 84, +103, 39,206,195, 12, 55,160, 63,173, 92,121, 45, 83,171,144, 18,200, 46,160, 33,194,191,114, 5,249,163, 55,224,169, 19,107,139, +111,223,129, 79,191, 5,191,249,200,186,239, 71,217, 60,240, 7, 6,129,209,151, 3,108, 21,185,158,224,125, 43,120,102, 5,207, + 94,130,171, 55, 96,243, 0,238,158, 27, 32,231,139,111, 66,249, 42,220, 42,118,145, 57,207,200, 58, 65, 81,228,178, 16,179,114, +242,198,192, 78,149, 44, 98,186, 66,239, 88, 90,120,136,122, 39, 95, 23,251,191,165,159, 55, 44,243, 27, 26, 52, 40,216,243, 30, + 81,186, 2, 49, 10, 97, 21,237,159,190, 35,172,122,184, 17,225,131, 35,242,244, 19,134,181,237,191, 17,214, 31,183, 85,131, 68, +159, 5, 87, 40, 3,122,250,223,195,221,191, 15,111, 10,188,114, 21,190, 12,245,230, 14,221,141,212,243,145,114,115,100, 87,148, + 97,229,221,158,206,151,204,230,177, 22,223, 91, 75, 50,171,143, 97,121, 61, 18,116, 82, 77,203, 98, 15,204, 84, 88, 27,241,172, +237,225,219,122, 66,208, 9, 27,187,164, 31,139,143,178,167, 76, 4,167,118, 93,180, 84,103,239,116,163, 71,173, 78, 23, 0, 49, +238, 69, 66,167,240, 22, 29,173, 0, 31, 40,156, 45, 50, 33, 22,227, 68, 19, 88,201, 62,105, 43, 6,131,207, 72, 45,174, 82,103, + 10,143,106,130, 60,173, 70,156, 91,251, 69,163, 20,139, 83, 94,246,167, 45, 53, 75, 85, 41, 11, 69,119,139, 71,142, 11,245,120, +184, 64, 94,147,230,253, 95, 50,232,117, 63,169,188, 17,207,178, 95, 86, 38,143,250, 66,133, 80,153,125,235,178,184, 80,244, 23, + 80,224,117, 65,190, 92,150, 58,245,115,184,121,237,117,154,198,202, 62,199, 93, 23,248,220,197, 20,129, 11, 56,119, 46, 92,106, + 91,162,228,172,146,183,131, 48,138,176, 10,198, 79,183,145,122, 32,186, 85,122,172,202,160,133, 96, 59, 42, 63,167,179,117,239, +126,233,138, 93,111,147,163, 90,140,149, 80,205,138, 70, 8,179,250,114,159,209,249,182,113,102, 42, 51,196, 69,104,197, 54,122, + 7, 47,132,148,246,124,254,187, 97,100,216,237,208,156,125,210, 22,140, 18,234, 59, 87, 21, 72, 33, 16, 82,240,159,175,101,114, +148,105,169,213,106,105, 46,149,161,100, 82,140,116,169,163,235, 58, 43,242, 49,209,133,200, 65,223, 35,190, 78,218,229, 76, 46, +217,156, 78,181,112,190, 57,183,241,127, 54, 5, 76,169,197, 58,244,102, 3,116,197,113,136,145, 68,176,145, 82,187, 21,166,133, +218,116,218,195,184, 88, 67,220, 66,206,253,129,205,157, 29,131, 8, 39, 91,123, 17,123,143, 62,220, 72,129, 80, 57,146, 22,143, + 41,156,169,176,243,204,220,203, 90,185, 49, 84, 46,145, 72,215,214,132,143, 4,228,123, 10,124,211, 17, 60,249, 33, 56,248, 54, +232,126, 39,200,123, 77,229, 91, 43,212,155,176,249, 57, 56,255,135,176,249, 60,250,250, 8, 95, 57,132, 55, 42,220, 25,225,180, + 80,115,158,110, 75,230, 25,115,187,214,162, 64, 91,151, 45,237, 52,152,176,109,210,205,159, 70,209,184, 31, 62, 88,227,158, 2, +180,133, 71, 75,110,170,225,106,129, 55,237, 81,170, 70,135, 17,153,205,185,234, 17,126,225, 32,248,161,111, 99, 10,233, 2,178, +138,200,229,128, 28, 37,228, 48, 88, 7,124, 24,152, 60,124,125,176,127, 78, 43,188,178,179,177,248,123,122,228,119, 92,129,167, + 14,102, 19,189,170,177,220, 31,142,232,121,134, 71,150, 44,199,221, 29,250,208, 59,244, 3,219, 45,201,221,132,108, 42,114,154, +225,216, 47, 63, 15, 43, 58,229, 79,122, 20,154,211, 67,204, 74,102,251,242,240,116,176,238,120, 0,206,133,122,154,209,123,133, +112, 46,200,161,204,185,156,111,100,235,224,175, 38,120,223, 33,220,207,240,230, 22,158,128,248,206, 74,124, 54,194,175, 91,244, +169,252, 91, 79,193,251,175,217,101,228,141, 71,240,218, 22, 62,183,129,219,131,189,222,151, 10,114, 89, 9, 15, 10,250, 85,165, + 62, 97,165, 67,158, 95,193,187, 86,240,196, 26,222,117, 4,215,158,182,240,150,221, 93,139,200,187,189,131,135,213, 30,196, 36, +134,159,125,111, 71,120,103, 64,239, 6,184, 63,160,215, 43,235,161,114,245,110, 49, 74,148,111, 32,202,130, 38, 72,181, 86, 40, +102,243,221,182,238, 41,122,250, 94, 59, 91,146,107, 5,251, 96, 98,177,228, 35,250, 24, 35,241, 48, 18,214,129, 16, 58, 98, 88, + 33, 79,172,224,249, 1,121,250, 89, 56,250, 55,173, 67, 15,151, 32, 28, 65,184,108,223,161, 60,130,205, 63, 68, 31,253,143,112, +231, 54,220,185, 2,183, 34,122,115, 68, 31,110,169, 12,232,249, 64,189, 59, 48,170, 80, 86,182,143,148,234,244, 62,194,228,189, + 14, 18, 45, 37, 49,202, 36, 18, 8, 75,236,113,176, 85, 72, 89,236,120,165,169,185,151,140, 6, 23,136,181,244, 47,169,243, 65, +186, 36,137, 73, 89, 70,140,218,184,127,137, 46, 45,158, 83,222, 20,241,163, 31,127,193, 45,105,154,196,121,219, 13,231, 58,111, + 63, 87,201,198,228,131, 66,149, 48, 33,165,117,193,112,105,251,246, 78,103,188, 52, 50,119,180,109, 12,155,139,175,213,194,156, + 69,176,138, 86,200,238,251, 1, 45, 11, 49,158, 76,252,237,150, 60,201, 20, 55, 90,177, 44,241, 4,108,116, 86,228, 79,212,184, +198,151, 95, 12,190,195,162,195,180,100, 59,159, 36,176,100, 93,232, 94,108,123,123, 93,155,254, 38, 46,196,108,157, 31, 67, 89, +247,169,110,203,108,244,198, 28,176, 49,178,236, 69,127,234,226, 82, 22,189,160, 23, 30,239,202,121,187,252,239, 11,191, 39,197, +104, 5, 47, 68,159, 28,138, 71,149, 54,133,191, 21, 45,245, 15, 89,157,198,167, 30, 78, 35,106,131,199,148,208, 24,168,217, 26, +170, 28, 64, 71,195,121, 7,145, 9,143, 59,229,192, 47, 0, 73,179,185, 79,247, 35, 78,171, 78,202,117, 9,166,175,144, 69,151, +174,170,140,217,212,232, 53,103,150, 15,175,249,220, 61, 43,222, 39, 64, 13,104, 99,211, 53,220,175,238, 60, 5,132,170, 78,157, +244, 53,245,168,149, 84, 70,226,104,157,123,159, 58,250,190,103,213,117,244,169, 35,166,196,110, 28,201,121, 52,183,212,241, 9, + 67, 57,100, 55,236,236,223,229,209, 70,254, 45,149, 78,194,116, 65, 75,237,234, 23, 69, 56,112,245,251, 52,214, 90,160,250, 66, +244,236,232, 90,209,123, 35,111,102, 91,157,214, 77,229,168, 55,177,144,160,236,138,141,200, 82,128,117, 23, 56,140, 29,135, 39, +145,235,231,153,124, 54,112, 37,195,250,228,128,240,194, 33,242,167, 10,124,248, 26,156,252, 48,244,255, 34,132,103, 45,146,178, + 69, 57,149, 83,208,155,176,251, 36,156,253, 12, 12,175,160,183, 10,188,210, 91,231,245, 48, 27, 40,133,130,250, 41,210, 0, 39, +226,170, 13,117, 35,120,227,224,139,170, 47,250,124,116,188, 18,199,144,202,158,170, 69,116,161,153, 92, 46,203, 9, 11,150,121, +107,133, 22,114, 82, 89, 64, 30,130, 76, 93,126,232, 5, 14, 34,116, 66, 88, 71,147,123, 31, 4,228,146,167,166,173, 34, 28, 38, + 59,117,218,213,191,217, 22, 2,112, 82,225, 56, 34, 71, 9,110,172,145,203,107,211,233,158,102, 99, 84,142, 25,125,115, 64,239, +156,193,131, 1,189,183, 67,111,102, 67,252, 13, 10, 71, 32,151, 34,218, 69, 84, 11, 50, 84, 36, 41,194,202, 94,179,131, 41,255, +113,206,212,212, 96,133,112, 19, 9, 59, 63, 17, 91,129,116,165,148,228, 96, 95,127, 61, 23,191,233,228,126, 4,220,170,214, 73, +191,183,183,204,239,195, 17,182,110,190,255,161, 67,248,208, 85,251,190,175,159,195,107,231,232,103,182,240,112,132,203, 10,183, + 54,200,189,140,174,162,125,173, 43, 61,242,237,107,120,225,192,108,120,103,213,104,176,247,119, 38, 8,188,247,101,187,168,245, +201,126,254, 19,191,124,180, 7,114, 21,237,181,122, 40,200,218, 35, 69,182,129,122,216,177,122, 88,185, 52,154,247,126,231, 7, + 71,245, 38, 32, 72,179, 32, 9, 73,103,149,111,231,110,193,117,116,167,130, 88,176,137,233, 72,197,242,150, 87,209,196,112,135, + 29,225,160, 35, 92,238,225,125, 17, 62, 84,144,247, 62, 9,135,255, 50, 28,125, 28,194, 21, 79,113, 11,150,195,190,253,101,244, +225,127, 1,119, 94,133, 91,135,240,224, 58,220, 83,244,246,128,222,222,162,155, 17, 61, 31,209, 71,153, 58,130,244, 74, 10, 50, + 91, 44,125, 38, 62, 33, 79,163,225, 89,162, 39, 38, 78,197,175,122,224, 72, 89,110,168,236,112, 13, 77,228, 41,179,133, 83,147, + 71, 10, 55,206,131,119,160, 41,206, 54,184,166, 43,104, 7, 97, 81,221,203, 75,104, 60,136,165, 80,108,250,189,110,251,138,227, + 12, 33,145, 32,147,170,187,250,101, 42, 53, 98,165,226,201,110, 30,186, 49,173, 14,230, 96,153,214,245, 38,111,111, 67,235,198, + 61,110,181,182,247,119, 18,243, 10,125,180, 59,233,110, 17,135, 28,218, 97, 77, 91,151, 9, 33, 90,103,154, 17,134,106,163,220, +118,110,102,220,221,163, 58,165,136,233, 34,229,177,173, 53,226, 36, 22, 83,127,207, 46, 20,216,182, 91, 95, 22, 85,149, 61,121, +208, 18,126,213,108,123,121, 97, 85,219,243,103, 47,134, 27, 23,131,224,154, 78, 34, 94,132,144,234,190,253,109,143,207,161,109, + 37, 97,207, 60,206, 73,143, 33, 78,138,254, 38, 59,172,165,184,213,111,174,188, 51, 31, 97, 47,228,140,168, 66, 10, 1,233, 18, + 37,207,152,241,162, 74,206, 35, 57,231, 41, 98, 86, 22,160, 16,213,199,111, 30,109,202,210, 94,103, 9,129,228,163,127,183,225, +236, 41, 26,179, 8,195,104,141,162,104,155,212,186,221,109, 10,100,169, 86, 27, 48,126, 75,219,155, 75,140, 19, 52, 41,151, 66, + 41,251,130,203, 82,109,245,147, 67, 37,213,202, 88, 10,197, 45,109,187, 49,211,117,153, 46, 6,142,186,142,176, 62, 96, 40,133, + 49,143, 28,212, 74, 56, 58, 50, 42, 94, 8,164, 24, 72,126, 97, 42, 90, 25, 75,102, 44,133, 84, 29,215,113, 20,204, 7, 29,167, +187,141,206,226, 22,117,145, 92, 18, 56, 47,156,109, 10,111, 84, 24,138,249, 41,111, 4,187, 33, 30, 69,216,121,202, 65, 95, 33, +105, 36,252,240,117,210, 31,186,194,193,159,127,141,114,167, 34,207, 28, 34,127, 48, 33, 63, 88,224, 93,223, 2,235, 31,181,168, + 72,137,134,183,212,211, 57, 65, 75, 31, 65,254, 34,156,254, 18, 12, 95, 67, 31,156,193, 87, 19,220, 46,112,199, 11,186,227, 28, + 77, 30,107,169, 78,226, 45,133,214,133,239,166, 42,146, 23,243,164, 3, 65, 86, 9, 89, 41,212, 56, 49, 92, 85,231, 2, 45,117, + 65,153,155, 76,162,134, 48, 21, 89, 48, 28,179, 71,249,245, 45, 50,212,126, 22,233,196,187,110,111,223,150,191, 62,104, 62, 39, +117,131,182, 7,174, 55,234, 13, 46, 86, 27,125, 30,167, 98, 81,167,207, 88, 48,136,222,223,217,226,119, 87,225,171, 91,234,173, + 45,220,223,160,183,119,214,225, 62, 28,144, 71, 70, 44,146, 8, 60, 10,232,198,216,233,114,201, 95,147,243,130, 30,102,219,177, +119,254,243, 81,231,211,112,180,221, 57,199,157,245, 55, 67,129,135,234,168, 89,191,237,106, 50,165,219,206,215, 3, 62, 27,212, + 67, 65, 86, 98, 93,126,174,112,176,130,167, 59,184,148,173,240,199, 4,215,122, 27,239,223,220,218, 68,225,229,209, 2,117,142, + 20,190, 52,160,159, 26,144, 33,195,211, 61,242, 29,199,200, 55, 31, 33,151, 86,112,210, 91, 17, 7,155,195,238, 92,229,118,234, +235,135, 52,218,195,248,238, 35,184,190,131,211,157,193, 0,206, 2,108, 35,114,167,162, 37, 18, 46,117,112,211, 91,202, 19,229, +104, 59,176, 14,198,240,182,131,200,138,228,232,155,133,157,103,222,139, 23,150, 54, 76, 89,161,244, 85,233, 86,209,114, 17, 82, + 32,116, 29, 97,149,144,147,158,112, 45,193,211, 9,121, 26,219,249, 63,217, 33,151,159,131,254,247,192,250,219, 12,103, 44, 43, +200,111,193,246, 23,225,236,127, 65,239,127, 1,238, 31,193,221,167,225,243, 25, 61,223, 64, 45,212,135, 5,125, 56,162, 37,219, +251,131, 32, 7,166,116,158, 66, 12,235,156,127,149,196,144,171, 76,157,163, 76, 98,181,234, 85, 49,103, 3, 0,181, 1, 93,112, + 97, 93,240,207,117,151,246,193, 2, 37,248,134, 71,102, 85,245,162, 25,158,212,213,170,109, 47,121,129, 73,190,215,185,250,224, +204, 63, 98, 59,223,165,199,101,162, 89, 89, 72,204,196, 34, 11,251,153,197,106, 30,244, 16,166, 40, 21,161,238,171,175, 9,211, +238,187,122,170, 92, 23,196, 35,139,133,224,121, 19, 13, 22,147,253,163,221,139,253,236,121,143, 12,167,251,202,113, 21, 6, 23, +212,141,174,162, 46,139,224,245, 82,155, 70,193, 59,201,176,240,124,233,108,143, 83, 23, 37, 44,139,116, 93, 92,130,150,170,245, +186,192, 49, 46, 11,189, 94, 96,199,183, 21,201, 99,133,120,249,218,214,121,188,177, 92,141, 60,102, 93, 91,224,200,151, 28,247, + 32,145, 24,141,152,150,156,170,150,157,123,144,181, 78,234,251,170, 13,170,226,110, 10,153,121, 0,147,234, 88,102,128, 76,240, + 93,119,232,146,167,126,150, 89,197, 95,242, 4,207,178,137,145, 92, 64,216, 94,208,233,203,227,126,254, 20,162, 21,223,182,122, +154, 64,236,206, 17, 24,182,104,246, 85, 77, 10,251,126,125,103, 17,132, 96,194, 55, 17, 39,198,117,157,237,219, 9,126, 17,197, +179, 2,116,226,202,171, 95,162, 67,136,196, 16,173, 48,167,206,112,183, 49,210,117, 29,171,152,232,251,158, 46,173, 88,165,142, +216,173,204,255,224,235,221, 90, 70,170,119,251,155, 97,112, 17,159, 78, 65, 72,105,141,218,200, 80,148, 88,230,107,115,171, 89, + 77, 93,105,137,116, 5,125, 88,185, 51,216,104,170, 96,100, 51, 85,120,106,109, 34,187, 90,205, 71,125, 16, 64, 98, 15,111, 5, +248, 75,103,112, 51, 18, 63,122, 12, 63,156,225,163,192,181,239,131,245,127, 2,233,134,217,143,244,209,226,241, 77, 80, 31,194, +248, 69,120,244,179,176,123, 29, 78, 31,192,215,146,117,126,247, 42,156, 59, 44,165, 57, 84,163, 76,234, 77, 19,186,217,216, 77, +170,162,217,219, 12,193, 10, 77, 23,144,131, 48, 69, 49, 73, 83,175,101,108, 31, 31,188,144,166,105,113,104,191, 14,243,126,158, +206,137, 52,205,222,119,236, 92,242,132, 1, 93,186,246,245,235,204,142,140,179, 38, 97,154, 59, 14, 10,167, 64, 29,172,139,108, + 59,234,109, 70,207,189,125, 90, 99,132,151, 23, 21, 62, 60, 34, 87, 15,172,155, 61,233, 96,237,233, 63,159, 62, 71,207,183, 48, +142,112,111, 71, 61, 31, 25, 93, 36,152,178, 18,118,209,170, 83,103,218, 43, 80,244,188, 34,187,106,151,154,149,120,156,156, 78, + 28,109,162, 26,128,102,240, 57,244,166,152,114,188,175, 30, 67,233,151,219, 46, 65, 42,246,218,157,154,149, 90,170, 95,104,250, +100, 15,202,170,115,158,185,216, 68,226,238, 8, 47,159,218,123,121, 54,162, 59, 69, 87, 38, 76,226, 65,181,215,246, 59, 14,224, +134, 32,207,246,112,121,101,175,197,198,115,130,235,104,151,144,203,157, 59, 50, 28,162,147,177,231,233, 32, 66,249, 48, 28, 62, +130,131, 55, 97,216,192,209,153, 89,197, 14, 18,114, 22,145,183, 4,222, 97,225, 68,218,239, 8, 93,135,102, 69,118,197,242,192, +179,162,185,144, 11, 12,131, 78,184, 82, 17,179,109,198, 32,116, 17,219,147,175, 35,225,176, 71, 14, 59,194, 73,132,107, 9,121, + 42,192, 51, 1,185, 33,232,241, 10, 57, 56,130,254, 25, 8,207,155,131, 35, 60, 9,165,131,225,117,216,254, 4, 60,250, 27,112, +126, 31,189,119, 0, 55,159, 49,245,254,189, 17,125,101, 75,205,197,133,151,117,142, 2, 12,254,156,103,166,100,196,170,222,113, + 72,153, 96, 8,161, 21, 88,215,130, 84, 79,167,170, 85, 38, 24, 74,113,149,184,101,163,155,223, 60,186, 61, 45,234,140, 49, 54, + 21,174,123,189,235,220, 1,230,133,181,205, 38,252,173, 19,223,111,153, 90, 65,207,162,123,227,218,246,171,213, 98, 39,186, 23, + 28, 66,157, 62, 58, 80,109,173,209,236,110, 90,124,221,208, 44,120,115, 78,183,138, 19,184,196,188,235,179, 61, 53,144,168, 4, +181,149,138,132, 64,168,213, 1, 67,246, 94, 7,173,211,223,105,162,148,181, 24, 21, 23,168,237,234,140,175, 13, 33,208, 7, 33, +187, 80, 76, 22,110, 10,157,186,200,186,232, 30,101, 22,201,181,245,132, 79, 89, 42, 74, 21, 23, 4, 46, 80,188, 75,246,254, 84, +108,125,130,209,172,176,181,217,246,218,126,254,226,220, 92, 46, 48,222,127,187, 28,139,139,127, 76,141,140,214,133,232, 9,104, +113, 26, 61,131, 21, 25,173,118, 17,106, 1, 86,197, 83,198,180,182,149,143,236, 69,133,202,254,255,153, 96, 51, 81,132,174, 51, +203,151,230,178,184, 8,185,245,216,127,240,224,152,217, 9, 20,118, 81,173,191,200, 25,111,207, 88,112, 7, 74, 35, 15, 70,119, +163,168, 24, 13,110, 24,179,141,250,155, 29,198, 29, 36,136,184,248,212, 84,250, 49,218,197,160,234,130, 44,160, 70, 3,237, 82, + 71,231,130, 56, 66,176, 90,153, 71, 7,159,205,170,196,198,160,111, 17,171,187,113,228,108,183,163,158,157, 82, 9,214,125,143, + 35, 73,132,227,131, 67,174, 28,159,112,114,114,153,148, 58,106, 45,108,117,199,237,179, 71,108,206, 78, 45,161, 48, 4,210, 90, +172,168, 71,117,107,145, 46,253,216,182,103,115,160, 14,100,216,237, 42, 55, 71,211, 32,137,216, 25,127,123,180,179,245, 10,202, + 73, 85, 98, 22,250,245, 1,242,220, 9,124,139,192,229,115,248, 3,131,141, 29,175, 61, 15,235,127,207, 20,190,225,200,252,182, +228,230,108,117,117,205, 61, 24, 63, 15,167, 63, 1,231, 95,131,221, 45,244, 86,133, 55,131, 37,130,109, 11, 19,175, 51,129,236, +162,169,213, 61, 77,115,105,142,212,162, 38, 72, 91, 89, 4,159,172, 93,118,223,219, 40,220,138,181, 63,100,217, 17,144,203, 20, +151,126,241,105, 73, 94,168,215, 10, 43, 7,167,116,237,228,115,219,124,148, 61,136, 3, 89,173, 40,102, 71,141, 85, 31, 9,231, +140,110, 20,182, 21, 61,171,112, 58, 26,125,173, 40,210, 41,117, 83,172, 11,149,128, 92,139,200,213, 8, 95, 46,200,155, 91,248, +253,106, 47,219, 87,182,240,142, 14, 93, 21,248, 64,128, 23, 49,198,187, 84,180, 91,120, 72,187,104,157,235,229,100, 33,235, 4, +116,107,205, 33, 35, 54, 79,173,189, 95,124,218,172, 85,145,218,193,218, 46, 15, 42,190,231,124,100, 63,147,198,246,112, 22,223, + 59, 10,210, 11,122,172,237, 84,183,145,249,213, 96, 5,246,161,139,221, 6,239,168, 71, 95,127,132,130, 30,131,246,160,135,192, +224,131,191, 43,157,145, 11,139,162,111,129,188,145,209, 67,208,227, 74, 56,200,246,247, 9, 1,142, 58,184, 22, 76,237, 94,157, +153,149, 4,210,161,125, 65,201,150,105,126,114,217, 2,103,158,123, 19,206,223,128,187, 59,120,135, 34,103,192, 61,144, 27,137, +112,174,232,206,184, 9,241,180,218, 5, 98, 80,250,179,202,193,166,152, 86,193,187, 43, 57, 8, 70,182, 58, 12,200, 73, 15, 79, + 36,228,138,192,147, 1,185,134,175, 26,214,144, 86,208, 61,137,196,119,131, 60, 15,122,205,247,134,175,195,248,105,216,124,198, +166, 80,103, 91, 56, 63,132, 7, 79,195, 77,181, 91,243,217, 72, 61, 29,208, 33, 83,123,157,165,213, 83,232,203,156,148, 88,212, + 34, 74,235,130, 21, 94, 28,129,169, 98,111,113,174, 58, 19,183,188,202,235,194, 31,221,238,157,201, 89,217, 73,204,122,214,184, + 11,237, 66, 16,252,190,171, 23,124,216, 85, 76,116, 43,238,155,202,173,179,214,253, 98,161, 64,168,246,115,197,133,240, 75, 39, + 64,192, 34,193, 74, 27,121,114,177, 7,158,228,172,208, 69, 33, 84,243, 45, 15, 42,211,238,157,118,169,152,130,224,253,107,180, +110, 76, 42,157,204,194, 41,105,176, 29, 55,192, 72,109,107, 11,157, 4, 99, 65, 91,130, 91, 48, 64,150,204, 83,157, 32,176,241, + 73,222, 70,101,242,211,215, 69,186,246,126,124,169,211,223, 60,168,166,238, 13, 2,234, 66, 25,175,123, 94,239,233,124, 94, 0, + 98,170,238,211, 96,150, 2,190, 36,251,214,195, 73, 27,176,176,157, 93,244,159,179,200,132,151,104,215, 26, 17, 33,134, 64, 8, +201,119,228, 70, 88,203, 90, 39,130,168, 76,171, 5,247, 82,235,156, 17,176,140,145, 94, 18,109,116, 1,187,105,118,147, 40, 66, + 23, 12,192,164, 62, 2,175, 19,125,176,145, 16,103,214,185, 44, 5,172,186,152,232, 72,216,251, 59,181, 75, 76, 10, 97,234,166, + 99,138,142,120, 53,250,224, 56,142,118,129,110, 29,188,204,121,236,180,204, 63, 17,138, 8,165, 20,164,100, 31,187, 39,223,109, +219,186, 97,187,219, 48,158,219,232,189,186, 98, 32,231, 66,169,213,190, 71,201,115,170, 94,251, 60, 6, 65, 67,176, 63, 83,178, +217,235,166,232, 85,108, 34,144, 58, 78, 46, 93,226,210,149,171,164,213, 1, 15,199,145,123,183,222, 36,159,157,186, 61, 48,144, +142,188,182,173,130,137, 50,228,194,195,215, 53,197,118, 18,100, 20,242,185,157, 37,135, 97,254, 48, 94,170,202,225, 89,229,100, +157, 8,151,215,200, 65,135,188,119, 5,127, 98, 7,223,185,133,120, 5,134,239,134,244,199, 33,124,179, 23,243, 17,107,235,154, +249, 35, 65, 61,133,242, 50,148,183,172, 67, 63,191, 9,195, 93, 19, 60,189,150,108,135, 94, 93, 5,178,178,226, 40,209, 70,233, +211,211,218,162,150,188, 59,150, 86,144, 87, 94,128,219,239, 95, 57,241,164,243,125,107,242,147,171,225,180, 84,231,147,164,181, + 31,157,125, 13,209, 22,190,209,174,253,206,139,173, 94,192,183,213,186,218,161,218,136,251, 44,195,166,154, 48,168, 42,186,173, +134, 80, 61, 27,209,179, 98,162,143,188,240,208, 39,199,171, 14, 62,230,201,145,112,210, 89,135,253,106, 33,126, 26,120,225, 4, +190,186,129, 87, 54,240,177, 21,188,175, 67, 46,117,232,203, 10, 95,174,196, 7, 74, 24,108, 5,160, 39, 9,174,118,112,185,179, +124,164,131,104,133,190, 93, 88, 54,192,186,216,114,184,154, 34,122,154, 78,104,130, 67, 69,162, 32,199, 17, 61,173,176, 45,246, +117,165,162,155, 2,143,252,232, 73,246,250,132,236,151, 43, 21,184,151,109, 60, 30,125, 18, 81, 5,174, 9, 92,141,176, 41,232, +105,181,191,107,239,239,209,145,243,115,183,192, 93, 15,151,201,190,228, 59, 23,228,161,247, 99, 7,110,219, 59,216,185, 22,225, +220,253,222, 43,180, 7, 57, 28, 64, 62, 5,219, 83, 15,159,191, 14,253, 31, 7, 62, 4,233,111, 67,121, 19,142, 30, 34,249, 33, + 58,238,160, 14, 72, 30,144,172,134, 19, 30,124,106,178, 3,182, 2, 15, 20,206,100,158,111,246,254, 51, 92, 22,155, 76,156, 68, +207, 90, 95, 67, 56,129,244, 52,196,103,160,255,152,197,175,202,145, 65,115,182,191, 0,187,127, 2,103,111,160,167,231,176, 9, +112,218,195,233,161, 77, 40,182, 59, 56,171,212,157,101,155,214, 97, 68,163,175, 97,134,108, 58,130,232,113,241, 91,179,102,101, +156, 23,238,235, 2,173,144,139,237,121,219,199,165,137,182,106, 85, 87,176,235, 36,134,106,141, 82, 66, 77, 56, 85,101, 66,223, +138, 40,161, 92, 40, 28,117, 14, 9,209, 37, 65, 12, 93,116, 91,214, 44, 84,239,240,171,119,196,180,244, 46,159,254,165,186, 36, +165,205,240,147, 42,115,100,153,248,208, 40,133,121,223, 25,171, 19, 26, 69,232, 4,196,247,139, 89,149,161,154, 69, 74, 68,109, + 61, 39, 58, 29,248,161,249,239, 85,201, 85,167, 29,190,234,156,107,142, 83,240,204,210,103, 95,191,138,237,197, 11,179,230,104, +244,206, 93, 93, 77,254,160,194,153,119,214,213,167,134,121,207, 6,215, 84,230,205, 91,191,132,166, 56,224,107, 15,127, 43,123, + 24,141, 37,252,103,233,127, 47,178, 63,117,174,139, 83,117,229,125, 69, 88, 36,121, 77, 5,126,210, 10, 44,246, 46,222, 77, 39, +137, 19, 76, 69,188, 88,205,137,101, 54, 14,207,165,236,101,183,139,187, 8,204,229,160, 11,177,181,139, 50, 69, 22,153,240,243, +127,219,139,131, 21,136, 90, 9,105, 53,143,221, 23,184, 93,212,192, 48, 83,218,156, 78,115,129,125,200,207,226,134,163,170,211, +235, 30, 93, 28,103, 64,152, 52,113, 35,170, 10,195, 56, 80, 70,243,150,167, 24, 32,122,168, 75,169, 83,145,159, 12, 17, 90, 13, + 56, 35,129,172,202,102,187,101, 28, 71,219,151,215, 74,201,153,210, 2, 90,166,105, 64, 68, 67, 52,101,124, 41,211,206,106, 10, +232,145, 96, 62,244, 92, 60,240,204, 39,131, 97,246, 63,140,227,142, 59,183,111,114,251,206, 45,255,254, 22,146,214,210,244, 10, +144,142,124, 85,190,198, 98, 48,151, 47,113,112,177, 66, 12,129,176,238,136, 53,114,242, 76,199, 11,119,183, 60, 58, 43, 72, 85, +214, 69, 57, 14,129,213,122, 77,124,231, 17,242,241, 8,223,188, 67,222,119, 6,215,159,131,250, 39, 33,254, 33, 56,120,202, 31, +235,193,247,230, 46,101,209,222,162, 35,235,151, 96,248, 5,168,107,216,126, 1, 54,119, 96,120, 4,103,143,208,183,162, 29,102, +163, 23,215, 67, 31, 49,186, 61,219, 72, 96,213,119,213,177, 93,171,103,193, 87,114, 84, 93, 31,109,239,126,232,162,169, 3,143, + 56,235, 13,206, 98,113,155,243, 50, 79,229,235, 21, 0, 0, 32, 0, 73, 68, 65, 84,203, 94,120,223,123,231,226,190,166, 96,183, +154, 51,179, 45,144, 49,111,247,121,177, 34,117, 94, 77,196,244,168, 90, 62,249,198,195, 34,212, 14, 96, 69,169, 67,165,110, 43, +117, 44, 12, 62, 34,181,189,162,117,233,186,243,124,241,149, 5,105,116,119, 11,125,180,245, 0, 15, 10,252,211,129,248,117, 43, +248,150,206,162, 81,191,116,110, 80,150,156,225, 3,157,177,219, 63, 23,144, 71,126,251,186,150,224,160,179,163,164, 15,200,245, +149, 41,244,175, 36,228,200, 25, 85,186,152, 58,244, 14, 18,168,254, 54, 5,177, 36, 25, 2,114,160,232,105, 65,135,236, 80,145, +104,251, 93,166,214,201, 46, 31, 21,120, 75,225, 74,130,119,245,240,153, 17,174, 68, 3,197,188,190,133,109,161,158, 85,184,239, + 2,152, 43,209,225, 70,209,110,166, 99,133, 65,108,154,161,158,233, 43, 17,185,226, 33, 40,215, 77,223,193, 23,183,182, 75, 94, +169,173, 64,174,244,232,229, 4, 47,100,164,127, 96,227,253,163, 4,221,155,176,250,113,195, 10,111,158, 2,253, 48,132, 83, 72, + 61, 18,119, 46, 74,116,235,158, 12,136,110,161,110,161, 62, 2, 61,131,225, 28,134,193, 82, 62,196, 95,167,110, 13,105,109, 59, +241,248, 14,144,167,161,123, 15,252,255,116,189,217,179, 37,217,117,222,247, 91,123,239,204,115,238, 84,115, 79,213,232, 9, 3, + 1,130, 0, 65,144, 20,105,138,146,104,153,150, 44, 59,100, 59, 68,234,193,118,132,195, 47,140,144,159,236, 71,251,145, 79,142, +240, 63,224, 7,135, 31,236, 7, 7, 67,180, 77,155, 14,153, 14,112, 16, 1, 73, 4, 45,145, 24, 9,128, 32,134,106,116, 55,170, +199,154,110,213,189,247,156,147,153,123, 47, 63,172,181, 51,247,185,213, 68, 68,161,167,170,123,239, 57, 39, 51,215, 94,107,125, +223,239,235, 94,132,254, 54,196, 43,182,210,200, 23,176,253, 38,108,126, 11,206,191,130,222, 27,225,199, 61,188,219,163,239,140, +232,147,115,116,227, 15,194,232,235, 17,197, 14, 13,131,191,246,161,160,143,252,239,163, 77,160,114,182,113,241, 38, 91,244,231, +164, 74,206,194,152,153, 99, 78, 75,171,100,111, 10,110, 77, 76,139, 77, 44,104,213,101,182,222,252,200, 62,194,147,178,124, 93, + 65,231,196,192,210,242, 26, 92, 48,215,137, 43,149,115, 45, 50, 46,150,194,236, 99,169, 10,213,130, 21,237, 88,143, 6,209,191, +102, 97, 14,176,232,130, 33, 88,167, 98,197,180, 22,198, 92, 20, 13, 66, 87,247,150, 89,231,196, 46,117,113, 82,231,173,190,186, + 10, 63,212,221,183, 46, 61,180, 22,157, 87, 24, 26, 23,181,121, 86,246,250,217,208,164,170, 21, 89, 68,107, 45,238, 86,102, 22, +221,146,191,158,170, 0,209, 99, 68, 67,179, 95, 69,108, 85,168,243, 60, 93,247,226, 90,139,239,221, 91,188,233, 83, 10,244,230, + 51, 8, 18,102,225, 88,231, 27,175,209, 59,226, 82,121, 24,178,172, 43, 77,212, 27,231,144,173,218,157, 70,177, 80, 19,196,210, +199,114,241,247,184, 24,246,180, 22,203, 42,118, 43, 37,207,211,135,118,188,190,100,249,233,124, 48,144, 38, 22,119, 65, 14,155, +183, 61,198, 8, 49, 81,198,237,178,150,104,198,231,178,151,235,254,148,155,126, 6,203,208, 70,175,170, 21, 71, 43,234,102,101, + 19,183,162, 77,192,110, 55,146,199,145,104,121,228, 16, 2, 99, 49, 46,116,125, 79, 98,144, 57, 26,118,114,232, 75, 81,236,112, +227, 7, 98, 9,193,215, 20, 70,146, 83, 89, 88, 10,190, 16, 34,166,158, 41, 38,202,176,243,231, 90, 35,116,172,168, 91,177,206, +188,157,166, 89, 62,140, 52, 89,236,186, 63,206,247,201, 66,186,174, 74, 18, 33,244,193,229,249, 13, 5,194,239,250,176,238,136, + 71, 43,228, 87, 14, 72, 31,239,184,245,223, 63,224,250,110, 7, 71,145,112,146,144,231, 58,248, 88,129, 95,222,193, 39, 35, 92, +125, 21, 14,127, 3, 86,255,192, 30,108, 6, 89,180,228,172,121,167,212,129,118,134,254, 28,190, 12,219,223, 6,249, 12, 76,135, +176,125,207,150,245,195, 35,235, 94, 54, 30, 70,126,226, 82,213,226, 79,172,202,153,172,209, 80, 61,115,202,213,140,122,234,101, +201, 39,141,106,146,214, 85,180, 56,204,149, 43,185, 43,222,170,238,145,119,184,183,201,118,219,140,217, 67,192, 50, 92,140,232, +214,139,206, 70,209,205,132,158, 43, 58,140,148, 33, 91, 33, 31, 10,101,107, 31,116,201, 19, 90, 28,118, 80, 76,116,179,155, 96, + 40, 66, 78, 97, 30, 23,197, 58,234,241, 12,122,141,234,196, 50,219, 51,119,111, 79,196,104,163,167,254,209,150,245, 63,187, 71, +250,175, 95,132, 79,118, 76,255,237,143,217,190,126,129,156, 4,250,111, 6,226,223, 63, 54,133,248,143, 10,220,140,200, 58, 89, +218,115, 15,114,165, 67,158,237, 44,176,229, 40,186,109,193,223,219, 19,247,192, 31, 38, 27, 91,151,206,170,195,129,218, 88,252, + 34,195,217,136, 76, 5,178, 23,223, 67, 31,196, 62, 25, 77, 13,127, 88, 76, 76,247,221, 9, 94,238,224, 87,175,194,149, 43,240, +234,198,138,238,153,117,162,170, 10,157,162,189,239,113, 58, 49,181,102, 31,144,209, 42,140,198,209,234,236,125, 69, 79,139,233, + 32,126, 42,217, 19,234,206, 14, 61,157,224,137,229, 31,235,104,137,110, 60, 24, 9, 93,132,183,182,232,161,141,214,120,121,101, + 7,149,221, 27,208,191, 3,252,164,117,236, 60, 99,226, 76,142, 65, 94,104,198,130,238,250,141,197,100,216,229, 20,226, 27,112, +252,142, 21,120, 70,151,198,247,150, 2, 23, 94,130,240, 41, 43,236,233,196, 21, 95, 63, 0, 30, 65,254,190,141,217,119,119,208, +211,199,112, 55,192, 15, 18,122,231, 9,249,221, 29,229, 34,163, 58,217, 61, 87, 39, 73, 79,236,193, 64, 4,189,240,202,226, 92, + 97, 45,120,225,114,177, 90,182, 75,116,114, 81, 87, 41, 97, 78, 16, 19, 47,158, 45, 57, 69,212, 30,156, 41,176,128, 73,252,236, +150,177, 48,167,122,235,212, 4, 65,109,182,171, 53, 38,119, 70,119, 20,155,240,101,153,221,158,115,145,150, 96, 95,175, 22,192, +212, 60,236, 67,133, 51,121,200, 76,146,101, 88, 54, 5,165, 27,189, 19,159, 67, 50,124,116, 42,246, 26,166,166, 43, 37, 87,132, +234,100,156,244,102,191, 46, 69,205,185,154,189, 11,244,148,182,169, 22, 34,153, 13, 45,246,221,130, 29,112,151,124,234, 50,119, +147, 21,223, 58, 79, 62,154, 66,187,148, 21,117,248, 8,115,116, 39, 51, 20,165,150,161,128,136,206,202,123,113,117,254, 2,183, +209,197, 10,216,216,207,234,231,116,121,223, 61,199,170, 74, 64, 36,217,126, 88,133,108,126, 49,146,139, 36,237,177,238,207, 59, +106, 78,121,240,246, 51,204, 69,189,102,140,215, 46, 87,243, 52,235, 12,236,176,101, 63,133,237,165, 13,188, 98,221,180, 31, 17, +100,137,146, 85,105, 57,245,251,232,185,210,202, 0, 93,192,153, 68,136,221,138, 73, 39,178,157,234,104,178,223,102, 20,109,237, +150, 91, 59,157,162,151,130,102,116,222, 53, 4, 9,214,156,138, 32, 49, 33,209,186,245,130, 48,110,119,228,113,156,201,118, 89, + 76,165,111, 27,215, 52,103,173, 15,227,192, 48, 77, 76,195, 96,247,167,239,195,163,251,239, 13, 85, 92,220, 38, 88,102,166, 64, +153, 39, 36,101, 6,185, 69, 9,208,117,228, 50, 44, 20, 64, 93,130,149,102,199, 66,251,254,233,165, 36, 29,223,245,107,105, 93, + 87,144,214,171, 30,214, 1,233,236,195,149, 38,231,150,226, 10,241,171, 9,185, 17,225,137,194,239,236,224,153,158,248,185, 21, +252, 68,129, 79,140,240,242, 57, 92, 63,128,195, 95,130,213,127, 5,221,103, 33, 28, 47, 35,118,205,151,242,199,221,182,150,255, + 18,118,191, 3,143,255, 21,164,159,130,248, 60,236,190,106,224,148,178,181,113, 99,167,240,108,182, 14,105,151,247,153,131, 49, + 46,225,229,181,237,136,141,197, 76,196,196, 83,161, 52,187,243,228, 79, 28,187, 24,101,240, 39,203, 96,123,122, 61,155, 12,125, + 58,170,237, 84, 47, 28,125,186,153,236,191,159, 91,209,214,193,140,255,101, 44, 54, 78, 25, 51,186, 41, 22,167,151,133, 82,138, +125,152,193, 0, 12, 25,101, 64, 24,178,113,240,139,231,180,215, 83,119,244, 31, 57, 86,107,145, 10,121, 92, 48,157,231, 34,116, + 42, 68, 41,164, 35, 97,247,141,115,174,252,143,119,137, 63,145, 56, 63,221,241,248,186,208, 29,194,225,227,137,195, 63, 62, 39, +252,167, 55,144,163, 3, 24, 2,114,179,135,171, 61,114,128,169, 25,143, 35,164,236, 29,167,195,110, 86, 9,186,107,208, 29,248, +211,117,131,205,192, 19, 28,190,104,209,158,247,190, 7,231,131,219,195,140, 28,167, 33, 27,169,237,208, 64,233, 26, 10,124, 97, + 99,133,249,205, 12, 31, 57,135, 79,249,154,163, 38,135,244, 2,143, 65,199,226,147,145, 98, 95, 79,146, 23, 54,111, 21,119, 85, +255, 96, 85, 66, 94,142,102,155,122,103,164,188,185, 51, 31,254, 88, 40, 27, 53,126, 66,176, 74, 82,142, 34,114, 22,145, 20, 41, +187, 64,124, 48, 34,155, 12, 47,172,225,240, 12,174,127, 29,142,238,129,126, 20,228,154, 77,142,198,239, 65,186,109,133, 89,189, +191, 13, 35,240, 30,240,151,176,121, 11, 30,159,195,195, 11,244,113,237,164,125, 98,112,242, 45,100,245, 69,136, 7,158,231,185, +177,226, 95,118,118, 0,188, 24,225,126,132,183, 3,122,103, 71,254,241,134,252,120,231,240, 8, 55,123,199,138,250,170,211, 34, +187,196,183,155, 76, 9,145, 16, 5,137, 50,251,231, 39, 63,211,214,181,250, 20,116,217, 9, 55, 69, 64, 90,216, 73, 37,160,133, + 96,153, 8,193, 11,162, 23, 22,187,240,194,188,183,150,134, 39,190, 87,218,179,119,171, 42,123, 57,224,115,180,101, 54,107, 88, +108, 54, 87,194,165,224,110, 23, 94,101, 89,178,148, 10, 66, 44, 58,191, 13,201,247,243,147,235, 2, 43, 91, 73,157, 93, 95, 67, +149,150,157,100,125,141,102, 87,171,221,118,169,145,199,106,116, 76,130, 61, 18,202,236, 34,107,147,228,196,105,124, 50,143,229, +103,107,171, 39,241, 85,191,254, 50, 54,213,198, 21, 38, 53, 74, 98, 22, 80, 85,159,189,241,173,100, 14,211,169, 54, 53,109,130, +118,148,194,174, 48, 35,176,130, 67,173, 44, 72,106,233,123,103,137, 97,112,205,127, 21,173,133, 84,223, 20,130, 83,176,212, 43, +122,237,146, 17, 83,169, 75,176, 78, 92,137,179,182, 64,221,173, 80,166, 76, 41,217, 86, 50,254,232, 44,222, 91, 91,137,240,134, +164, 20, 15,145,125, 42, 97,100,158,244,148,102,153, 31,100, 57,236,204,217,240,213,174,167, 74,215,117, 16, 3,121, 24,104, 94, +226, 66,229,187, 28,198,213, 28, 76,219, 67,170,206,185, 37,203, 65, 37,132, 90,128,109, 42,168, 2,227, 48, 50, 57,115,221, 14, + 77, 54, 13, 75, 18,136, 93,162,168,178, 29, 7,118,219, 45,211, 56,248, 68, 33, 56,164,198,167, 26, 33, 46,185, 5,179, 52,192, +131,133,106,170, 95,179,239,215, 82,124,148, 31, 41,174, 27,168, 7, 57,213, 75,200,156, 75,228, 65,116, 95, 55,177,255,123, 29, +181,155, 94,187, 2,135,139,159,154,236,136,212, 2, 28, 41, 92, 87,184, 61,194, 11,163,253,251,159, 83,184,154, 45,120,226,106, + 15,183, 94,129,254,215,129,127, 0,188,228,155,156, 13,232,195,167, 53,149, 51,141, 97, 11,229, 59, 48,254, 30, 60,254, 35,144, +235,176,254, 28, 12, 95,179,110, 94,176,217,243,225, 51,176,218, 32, 87,119, 46,160,187,180, 27,104,149, 23,101,223,250, 66, 14, + 78,150, 19, 27,161, 79, 30, 58, 50,248,150, 43,251, 94, 82,189,229,185, 80,171, 99,231,101, 17,115,109,138, 21,240,157,147,123, +138,218, 63, 79,254, 75,138,141,135,182, 25,157,148, 60,186,191, 89,116,206,103,175,153,236, 99, 17, 46,178,107,229, 26,209,198, +212, 36, 27,213, 56,214, 41, 47, 15,140,186, 51, 59,159,124, 77, 18, 44, 2,247,236, 40,112,250,111, 46,232,255, 28,166, 3, 40, + 43,235,238,166,117, 64,223,157, 76,221,253,111, 93,135,215,109,162, 34,175,174,225, 70,135,244,157, 83,132,138,141,150, 67,129, +120, 19,120,222, 2, 67,226,123,192,199,129,191, 9,252, 79,192,251, 32,207, 66,121,100,135, 42, 73,112,100, 25,164,250,230, 57, +122,103,135,190, 51,160,119,183, 86,164,175, 11,233,113,177, 41,192,127,126, 3, 94, 78,176, 27,173, 64, 31,123,215,114,210,161, +103, 25, 57, 72,232, 65, 54,109, 68,151,108, 4, 24, 93,206, 59, 21,179,156, 92,235,237, 49,217, 7,251,154, 27, 40,167,153,114, +238,113,132, 67, 97,218, 21,166,179, 74,236,202,132, 7,163, 97,118, 49, 85,122,217, 21,210, 90, 9,103,230,245,231, 86,129, 23, +126, 0, 71,239,129,124, 4,228,138,143,199,255, 16, 86,207,195,193, 85, 43,208,225, 28, 46,238,193,143,206,225, 7, 5,222,119, +241,156,170,241, 15,174, 39,228,102,132,213, 14, 13, 79,172,200, 31,122, 21,121,162, 86,156,239,187,177,227,108,160,108, 38,202, +253,145,252,112, 71, 25, 39, 52,249, 41,222, 15,120, 18,218,129,165,144, 11,108, 82,180,226,148, 21, 53, 19,181,123,160,253, 35, +204,150, 73, 62, 15, 38, 75,227, 93,110,144,174,245, 65, 76, 40,104,246,189,110,169, 44,241, 86,101, 46,115, 33, 14,205,190,180, + 90,207,114,110,138,159, 44,133,139,178,140, 58,101,143, 47,190,144,214,170,204,162,212, 29,178, 83,156,167,217, 78,165,140,109, + 87,231, 95, 55,120,129, 28, 93,132,148,115, 67, 72,203, 51, 30,142,146,171,119, 70,200, 18,216,130, 41,152, 61,246, 57, 87, 17, + 96,185,172,200,215,133, 2,199, 50,118,151,153,144,102,133, 71, 85, 61, 7,190,109,152,132,168, 50,239, 61,139, 44,185, 6, 50, +251,243,117,137,231, 37,120,119,181, 47,158, 91, 34, 97,101,222,240, 45, 7, 49, 89, 70,253, 92,202, 38,119, 17, 27, 33, 80,138, + 26, 34,187,242,193,125,100, 44, 8,177, 75, 36, 76, 92, 90, 36,250,180,197,222,159, 49, 23,198,113,154,119,215, 53,142,122,246, +203,123, 71,234,196, 21, 3,190,224,187,102,205,123, 62,120,213,125, 69,187,238,241,217, 22, 44,109,165, 19,138,123,198,241,240, + 44, 73,157,173, 79,234, 68, 87,151,233,199,124,152,209, 38,113,174,201,117,173, 0,162,253,158,221, 38, 35,193,247,232,196,104, +127, 46, 8,211, 84,152,198,113, 17,172, 85,146, 95,176,124,128,237,148,173,152, 15, 91,212, 99,195, 67,140,206, 62,241, 72,154, + 16,230,201,196,158, 88,193,125,248,226,171,144, 90,152, 85,139,175, 41, 10,164,132,196,100,220,246,236,235,205,198, 58,184,231, +146,104,171,184,238,255,181,138, 38, 43,188, 58,201, 63, 62, 52,208,199, 65,177,241,117,180,189, 46, 73,205,170, 36,209, 66, 53, +250,235,144,174, 90, 7,222,189, 2,233,147,208,127,210,198,142,230,145,114,185,243,105, 51, 98,111, 11,122, 89,110,241,242, 14, +148,183, 61, 59,244, 53, 88,255,134, 35,187, 86, 22, 12,178,187, 7,195, 7, 16, 55,126,215, 14,190,176,154,230, 11,203, 78, 33, + 14, 87,209, 12, 97, 7,113, 7,211,102,177,166,141,117,215,173, 70, 22,219,168, 21,166,209,121,238, 59,111, 17,182, 5,182,166, +124, 86,177,147,154, 58,102,175,100,155,213,105, 54,246,185, 37,185,249,184,105, 82,139,116, 45,197,132, 74,201, 82,145,102, 8, + 7, 58,127,249,157, 15, 3,170, 10,119,239,124,162, 54,178, 42, 14, 56, 25,155, 17,104, 22,115,169,109, 70,119,204,245, 78,128, +205,102,207,139,110,121,239, 39,223,201,109, 20,121,182,183, 11,230,160,135,151, 12,167,106, 16,143, 12,225,121,123,175,195, 45, + 63,209,191, 7,121, 13, 97,107,138,236,153, 32,253, 29,215, 63, 76,176,253,115,123,255, 70,183,215,125,245,148,242,187,143, 40, +111,109,209,149, 89,172,166,179,145, 41, 90,206,142,136,176,186, 40,244,255,230,140,144, 3,242,145, 43,118, 13,141,238, 30,184, +218, 35,155,130,238, 38,228, 57, 63,201, 28, 56,201,101,240,207,183,179,193,177,172,124, 14,252,234,202, 46,179, 31,238,224,145, + 82, 30,219, 46,126, 10,133,173, 42, 91,135, 92, 68,135,197,164, 65,233,243,196, 74,139, 77, 17,222, 85,226, 54,219,250, 97,219, +193,174,135,151, 47,144,171, 31,128, 30, 64,255,243,160,223,135, 15,222,128,241,161,173,107,206, 4,126,152,225, 13,224,141, 9, + 29,118,140, 97, 52,246,149, 68,228, 40, 18, 14,147, 29, 74,114, 64,142,147, 5,179,100, 76,224,183, 85, 83,239,110,139, 77,108, +130, 31, 4,187, 50, 83,213,138, 66,118,107,153, 78,205,131, 59,152,130,122,204, 53, 28,198,108, 98,102, 80, 88, 34, 72, 53, 44, +236,239,150,132, 45, 65,141,214,167,152,195,160, 52, 97, 7,158,180, 82,233,120,104,153,147,172,106, 65,183, 97,201,126, 39,201, +164,205,238,216, 30, 52,129, 42,192, 23,155, 38, 96,123,242,132, 37,157, 85,200, 74,100, 9, 45,178, 64,153,197,101, 19,106, 7, +222, 6,140, 84, 57, 7, 11, 49,109,172, 67,255,214,143,229,202,107, 27,165, 7,138, 4, 82,178,123, 40,229,194,228, 95,173, 20, +245,115,188,206,118, 47,230, 14,116,177,141,105,179,159,108,219, 64,109,254, 93,161,233,246,165,142,235,195,204,115,175,231, 39, +209, 50,175, 33,230,174, 43, 84,100,172,238,237,137,235, 88, 57, 58, 0,108,210,133,159,223,226,138,231, 3, 81,171,126,114, 37, +184, 52, 92,240,162, 75,108, 90, 81,161, 72,161, 72, 38,187,136, 48, 35,228, 58, 54,111,242, 89,219,169,204, 2, 83, 12, 51, 67, + 61,180,147,155, 89,192,182,175, 48,111, 55,224,250, 84, 37,104,200,110, 77,247, 25, 80, 98,236,153, 80,166,113,154,129, 65, 69, +100, 86,210,239,101,193,238,215,243,249, 51,179,243, 65, 43,244,132, 16, 29, 21, 28,163,239,211,147,101,151,143, 59, 74,153,154, + 61,191, 29, 48, 74,136,236,198,129,113,187,165,140,163,237,169, 59,159,128,200, 18, 53,104, 59,244, 56,159, 50,102, 17, 98, 67, + 31,172, 2,189,122,125, 76,121,178,248, 86, 85, 68, 38, 36, 70, 66, 12,100,141,115, 50,168, 54,239,226,135, 89, 11, 91,187,158, +162, 75, 65,151,154,167,254,169,104,118,160,238,186,117,204,241,196,112,149,114,197,254, 62, 29,251,174,240,153, 5, 97, 41, 7, + 16,250,198, 0, 51,184, 53,109,247, 33,177, 22,122, 9,241, 83,172, 35, 12, 47, 64,252, 85, 43,226, 26,172,187,143,207, 67, 62, +135,112, 10,241, 45, 8, 63,182,140,239,105,235,187, 77, 7, 64,171, 64,153,188,224,143, 62,234, 28, 96, 28, 77, 88,181, 43, 86, +176, 55,174,160,126, 48,153,213,171,130, 80, 38, 69, 39, 87,152, 79,182, 31, 87,241,130, 93,199, 85,142,119,157,159, 34,163,239, + 56,165,194,251,189,107, 47,197,236, 13,149,249, 62, 85,166,181, 48,168, 48,100,101,240,145, 98, 29, 16,168, 7, 10,180, 17,128, + 41, 56,164, 32,251,122,191, 14, 78,196, 10,248,197,104,231,174,177,179,214, 97,167,246,210,123, 79, 88, 77,209, 30,142,235,171, +145,240,211, 7,139,234,233,102, 63, 11,224,116, 83,144,225, 14, 28,156,128,220,116,130,217, 43,160,223,128,242, 99,200, 55, 96, +250, 52,164,191, 2,254,149, 41,150,206,183,240,208,216,240,250,112, 64,191,244,128,242,127, 61, 2, 70,228, 25, 65,111,249,120, +252,205,128,134,133, 18,166,219,130,126,225, 9,253, 31,110,144,191, 53, 16,126,253, 25, 23,232,169, 41,223,233,145,251,226,150, +163, 26,154, 99,254, 73, 89, 1,169,216,190, 47,129,172, 19,218,129, 60,155,204, 50,248,254, 0, 63, 8,228, 71, 3, 79,164,176, +233,226,194,220,143,190,207, 12, 22,114, 54,105,161,159, 70,242,123,133,114,145,137, 79, 38,194, 7, 35,242,206,132, 12, 7,232, +107,167,200,245, 31, 3, 47,194,225,103,224,246, 49,220,185, 3,111, 2,253, 26,126,229, 16,110,159,192,255,240, 67,242,239, 63, + 97, 76, 19, 37, 23,164,159, 8, 99, 36, 12,147, 39, 38, 5,100,154,224,253, 96,206,138,173, 11,175,178,171,175,179, 35,140,179, +209,247, 36, 9, 97,231, 7,185,236,202, 85, 93,196, 86,129,194,164,193,245, 24,203,142, 88,231,251, 41,204,161, 34, 82, 71,124, + 90, 22, 27, 79, 85,172, 5,157, 71,236, 85,136,150,103,101,142,117,233, 65,133,236,227, 84,109, 18,229,146, 44,201,131,101, 98, +239,241, 98, 80, 22,103, 21,169, 61,188, 82, 22,250,209, 15, 33,107, 97,138, 48, 77,166,159, 72, 85, 64,215,216,148,117, 6,229, +232,135,242,196,235,195, 63, 70, 51,155, 76,121,217,125, 87, 14,212,108,183, 11,113,182,145,137, 22, 66, 85,249,123,209,175,126, +252,122, 88, 86,151,113, 72,131,193, 85, 31,233, 7,127,143,181,237,154,154,154, 50, 71,151,122, 33,152,227,249,170, 12,177, 9, +254,217,235, 85,125,244, 60, 71, 60, 95,202, 37,175,169,110, 53, 35, 35,233,194,134, 9, 21,219,218,172, 82,104, 2, 77,170,184, + 78,102,190,154,197, 4,211,100,155,139, 71,237,105,147,230, 86,230, 96, 31, 63,214,204, 98, 1,247,222,123, 33,203, 78, 80, 11, +206,102, 47, 57,207, 70, 60,253,235,208,177,151,171,210,222,239, 93,142, 53, 69, 11, 41, 38, 74, 76,142,251,206,205,238,200,231, + 39,186,140, 56,171,221,186, 6,210, 46,171, 38, 27,169,231,106,177, 19, 8, 33,121,135,157, 12,246,146, 18,163, 42,187,209,147, + 60, 93, 33, 42,238,118, 42,192,110,183,101,220,237, 16,205,196,202,128,166, 10, 2,125, 49, 50,227,111,109,213,218, 28, 45, 22, + 25, 69,123,204,246, 67, 64, 36,154,123, 96,154, 16,103,214,139, 79, 66, 74,153,154,251,251, 82,102,125, 8,243,195, 97,209, 80, +212,116, 59,177, 41, 77,153,252,128, 95,128,178,130,233, 25,136,215,125, 28,121, 27,250,107,176,242,206, 60, 28,154, 37, 39, 30, +215,244,112,208, 11,104, 73, 62,243, 81, 47, 95,218,230, 95,254,184,131, 29, 10, 72,149, 83, 9,229, 30,148,115,203, 70, 47,239, +194,248, 46,140,239,121,177,158, 42, 93,195, 63,216,201,118,150,249,137,169,138,199, 29, 12, 25, 29,188, 35, 61,247,104,209,199, + 19,220, 87,120,127,132,243,236,156,105,179,146,217,238,215,119,186,217, 69, 91, 46,248,208,170,124, 15, 11,107, 82, 91,212, 82, +108,242,215, 29,185,169,141, 35,100,242,134,118,235,107,249,154,225,172,165,197, 14,235,254,122, 81,108,140, 58, 23, 68,149, 25, +114,178, 27,149,141,219,199, 71,181,174, 93,154,189, 74,246, 73, 0, 59,120,110, 5,171,143,118,139,240, 44, 4, 88,247,166,251, +162, 88,100, 41, 43,152, 30, 66,186, 11,225,115,222,141, 71, 40, 55, 64, 62, 6,211, 21, 59, 88,233, 53,251, 92,182,192, 54,163, +111, 94, 80,190,240,152,242,149, 51, 67,172, 30, 36,251,168, 55, 1, 58, 37,158,153,117, 45, 36, 31, 37,215,125,230,227, 9,249, +127, 78,145,103, 87,200, 63,188,229, 99,133,100,157,198,160,240,100, 50,111,120,244,125,110,125, 98,119, 17, 73,142,159, 13, 1, +121,111, 64,223, 24,224, 16,194, 47,246,164,219, 10, 95,132,131,239,238,200,231,138,118,182,250,216, 70, 65,163,208, 37, 27, 10, + 76, 65,152, 78, 21,221,140,244,253, 68,186, 58, 33, 33,146, 78, 38,235, 70, 59,208,248, 16, 57, 81, 79,152,251, 4,252,228, 21, +120,243,155,246,207,183, 86,240,246, 19,248,218,134,210,153, 21, 82, 39,108,106,147, 60, 29,169, 19,130, 20,239,104,155, 15, 61, + 96, 69, 61,248,228, 40,251, 3, 61,213, 66,228, 15,168,178,128, 4,107,206,124,240,223, 59, 11,171,124, 65, 89,229, 41, 81,150, +188,110,209,118,140, 91, 40,181,124,171,169,198,172,147, 10,203, 38,214,199,207, 26,196, 84,244,190, 71,175, 26,111, 13,150,138, +166, 49, 32,217,192, 33, 14, 91, 94,236, 72,179,127, 37, 32, 1,142,187,196,213,103,122, 14,126,233, 4,121,109,205,240,187, 15, +120,239,251,231,168, 40,147, 83,197,122, 12,101,187,228,138, 87, 63,244,126, 0, 9,245,128, 86,106,176,155, 41,139,251,106,141, +107,159, 44,209,211,198,213,239, 95,239,218,187, 96, 15,247,220, 28,136,132,229,251,212, 40,151,168, 85, 91,235,100, 50,241,110, +119, 38,239,177,167,108, 95,188,226, 50,219,239,180, 1,200,212,113,104, 96, 9,150, 17,247,246,207,193, 46, 46,122,144,230,160, + 49, 43,222,101, 89,153,204,123,246, 37,128,110,182,180, 61,181,193,150, 5, 17,107, 67,148,138,171,149,166,136,102,251,140, 29, + 93, 27,244,175,249, 58, 44, 0,178, 89, 60, 93,178,119,156,181, 33, 41, 79, 63,218,165, 57,189, 92, 70,201,206,129, 56,251,157, + 44,238,255,143,169,243, 85,165,121,185,237,163, 8, 51,108,168,253, 98, 90,202,126,104,187, 67, 92,234, 74,167,106, 21,130, 4, + 35,172,185,143, 60,197, 72, 22, 97,179,219, 82,166,209,223, 99,239,112, 69,152,114,102, 26, 71,114,158,252,125, 14, 75, 16, 76, + 61,132,120,247, 29,176,113, 86, 29, 64,235, 37,204,210,222,132,171,174,120,138, 57, 47, 44,201, 10,202, 48, 17,198, 9,233, 19, +154,162,231,120,232,165, 9,135, 23,124,196,234, 32,245, 58,169, 33, 67,126,152,111,116, 22, 73,223, 47,200,179,167,176,254, 62, +164, 27, 6,126,209,183, 64,111,129, 62, 15,253,203,208,221,114,140,235,129,119,119,218,242, 40,155,113,136,254, 53,233,187,149, + 20, 87,247, 50,247,161,220,133,252, 77,144,143,218,109, 87,222,134,233, 3,200, 15, 44, 70,115,154,108,217, 86, 38,163,135,149, +108, 69,127, 60, 51,123,209, 46, 27,113,109,235, 12,207,237,104, 5,104,147,173,176, 63,200,112,207, 4,109,133,105, 22,247,204, +180,180,236, 35,245, 97,241, 85, 86, 91, 75,173,174,179, 68,166,217, 45, 34, 11,224, 70, 69,140,102, 59, 45, 33,105, 59,183,167, +239,170,218,180, 57,185,207,172,234, 75, 55,102,244,206,190,126, 48,117,159, 55,154,163,130,169,134,167, 9,116,147, 79,166,213, +186,243, 24,204,105,117,178, 18, 78,142,109, 3,162, 90,144,215, 55,232,107, 23,200,141,130, 62,216, 25,180,231, 90, 7, 55, 54, +200,245, 11,232, 63,106,221, 41,175,131,188,228,199,255, 27, 80, 94, 3,254, 22,200,191,128,233,174,185, 15,222, 53,139, 30,159, + 91, 17,126,121,133, 92,241,192,232, 71, 62,126, 27, 51,218, 95, 16, 30, 78,164,149, 63, 69, 79, 4, 89, 11,242, 40, 32,234, 14, +137,179, 12, 39,201, 60, 54,169,131, 81,145,139, 26,143,107,159,195,172,230, 74,106, 19,128, 85,231, 6,221, 17,254,242, 2,253, +241, 68,201, 35,124, 92,232,126,227, 42,105, 55,113,248,207, 55,148,119,204, 34,183,253,160,176, 27,236, 97,190, 58,176,209,215, +147,173,146,163,144,178,178,126, 48,210,203,132, 14, 5, 78,132,120,226,160,145,143, 60, 52,237, 6, 64,255, 34,188, 38,240,206, +183,225, 15,222,133, 31,143,112,162,232, 99,115, 72, 72,175,243,168, 75, 5,100, 40,104,231,139, 80, 48, 92,110, 46, 54, 78,111, + 1,231,131,117,235, 50, 45, 18,112,201,251,137, 91, 97, 14,212,104, 78,254,149, 31, 81,230, 77,158,141,178,117,177,152,205,164, +176, 16,144,121,212, 94,246,133, 69,178, 63, 69, 51,177,152,143, 30,181,198,123,186, 34,189, 65,103,214,192, 20,105,250, 44, 81, +232, 29, 6, 18, 99,228,224, 36,112,244,179,199,132,255,236, 57,152, 70,244,119,238,205, 72, 41,113,111,248, 80, 51,189,221,186, +148,231, 7,145,238,137,156,234,248,170,218,239, 42,120, 36, 52, 60,247, 50, 43,174,212, 44,145,234, 74,255,102,199, 95,209, 18, +161,186, 94,117,153,250, 78, 46,239, 90, 53,124,251, 57, 90, 83,108,220, 28,154, 3,132,204, 36, 55,153,117, 16,212,127,174,152, +215,153,135,198,172, 85, 48, 13, 68,196,229,104,182,219,247,162,222, 98, 95,133, 5, 36, 99, 12,251,101,207,223,242,172,230, 0, +158,218,173,106,237, 89, 27, 90, 30,213,203, 45,151,176,182,178,112,220, 29,117,188, 72,157, 26,227,186, 44,241,181, 13,175,103, +217,221,150,210,214,211, 15, 65,209, 85, 36,238,126,177,111,231, 22,203,250,160,144, 66, 66, 82, 50,111,183,175, 4,130, 23,111, +213,167, 73,120,203, 7, 41,123,125,101, 21, 76,202,101,113, 92,140, 22,189, 27, 35,187,221,142, 60, 14,246,186, 66,244, 21,131, +146,115, 38, 15, 35, 37,231,185, 33, 89, 70, 74, 45,157, 46,248, 72, 63,204, 65, 45, 13, 33,127,111, 68, 94,119,251,165, 89,111, +137,107, 18, 36, 38,198, 14,116, 24,144,169, 16,186, 68,137,145, 50, 57, 33,181,221,197, 87, 56,143, 68,135, 22, 55,181, 76, 23, +123, 31, 85, 40,199,251,217, 22,255, 87,207,145,227,157,141,190,245, 42,228,251,176,125, 23,242,219,144, 95, 53,255,109,218, 24, + 88, 67,142,188,219,246, 25,176, 78,205, 6,236,242,167,236,223, 76, 19,148,251, 80,238,128,254, 24,198,191,130,221,215, 33,189, + 6,221,175,249, 92,170,131,114, 2,229,194,108, 68,101,176, 95,195, 19,152, 30,195,197, 57,122,110,176, 19, 6,177, 59,117,151, + 29, 18,162,139, 98,253, 81,182,228,182,209, 21,234,243,145,223, 59,242,188,112,222,231,211,189,255, 55,202, 62,151,218, 8, 73, +126, 58,149,125,177,125,241,130, 58,142,214, 97,141, 62,249,207,174,216, 76, 77,148,239, 30, 68,162,241,162,218, 84,192, 47,239, +178,236,165, 70,181,232,211,204,140, 57,158, 31,184,163,219, 70, 68,237,236,115, 24,225,133,171, 16,186,128,246,166,146,230,222, +132,254,193, 67, 27,191,175,221,223,125, 52,194,250, 28,142,255, 49,132,255, 0,184,135, 5,147, 43,112,100,135, 56, 62, 9,225, +143, 96,247, 47,225,237, 29,250,230,132,158,142,144, 51,114, 45,161,201,222,107, 57,138,240, 66, 66,146,160,187, 12,159, 58,182, + 11,109,114, 69,223,129, 93, 96, 33, 8,226, 33, 42,156, 21,120, 82,204, 86, 24, 28, 65,123,225,171, 17, 5,217,150,101,163, 83, + 71, 94,100,123,226,158, 36, 27,219,223, 29, 40,111,141,148,239,142,200,183,182,132,159,233,136,191,188, 38, 93, 51,144,196,250, +237,145,252,229, 29,249, 71, 35,225,102, 68,142,133,241,207, 71,206, 86,202, 32, 86, 88,226,164, 28, 61,154, 56,124,125, 3, 35, +196, 11, 69,206, 15,208, 79,108,144,107,119,204,175, 30, 95,132,231, 62, 13,219,111,187,102,163, 67,182, 9,189,231, 63, 79,242, + 61,104,189, 32,134,236,162, 45,153,201,128,182,238,105,242, 75,107,180,105,158,159, 73,148,236,201,129, 13, 89, 45,200,194,113, +183,219,167,241,157,137,122,215,141,237,201,181, 54, 44,106,171,137, 98,187, 58,234, 3,177, 29, 11,178,204,114,151,253,189,204, +137,107,120,231, 94, 84, 81, 49,124,110,110, 84,240,161,238, 29, 27,245,182,170,237,175, 31, 61,158, 24,126,255,148,254,247, 79, + 25, 55,133,115, 50,155,152,201,121, 25,127, 87,146, 92,168, 35,110,191,134,235,121, 35,205, 29,187, 54, 51,238,198,111,239,208, +145, 25,219,234,185,232, 45, 54, 85,230, 87,106,249,232,120,166,123,152, 97, 57,234, 60,114,102, 13,198, 28,190,164,203, 1,170, +138, 4,163, 44, 93,178, 94, 10,101,169,194, 47,101,127, 15, 42,174,158,175,202,232, 24, 28,114,162, 25,134,237, 37,251,218, 2, + 84,175,215, 68, 93,231,213,132, 60,154,228, 52,209,125,181,119, 22,230, 33,244, 76,116,171, 74,232,214, 83,191, 23,224,186,252, +249,232,135,143, 86,114,161,173, 35,220,253,253,226, 7,133,122,192, 42,151,188,225,237,212, 56,248,148,241, 67,255, 87,199,198, + 24,146, 53, 9,164,174,159,125,238,179,240,178, 90, 39, 75,251, 19,237, 23,205,102,232,227,216,227, 37,219, 32, 4, 99,199, 71, +239,208, 67,234,184,152, 38,118,195,206,255,123,116,165, 63, 76, 99, 38, 79,147, 89,245,218, 81,186,163, 25,149,229, 64, 39, 40, + 49, 36, 23, 38, 22, 27,163,123, 66,219, 83,236,155, 70,112,160,174, 93,209,121, 74,101, 59,254,210,117,110,155,132,144, 58,159, + 22, 47,201,125, 79,191,125,242,212,103,104,211,131, 56,139, 55, 18,127, 57,192,195,100, 36,175,103, 39,184,122, 10,199,143,224, +224, 46,172, 86, 80, 14, 96,188, 5,253,107,150,249, 28,175, 67,188,225, 59,241,155, 16, 14,172,200,235,232, 54, 40,125,122,145, + 50, 31,213,162,251,128,158,129, 48, 25,184, 99,248, 54,148, 47, 65,247,139, 54, 5,144,119, 32,223,243, 14,125,107, 94,245,139, + 7,112, 54,160, 15, 4,206,130, 11,221,116,153,111,111,124,116,186,117,239,248,153,117, 98,138,157,250,108, 89,105,150, 33,173, + 65, 47, 85,205, 94,253, 51,165,238,153, 90,138, 83,123, 10, 95, 94,130, 58, 56,174,178, 3,134, 98, 33, 6, 53,179, 58,250,239, +147, 92, 19,156,116, 62, 40,212,241,223, 76,134,218,187,153, 60, 31,166,117,229, 5,219,151, 20,255, 67, 5,232,130, 1, 40,198, + 73, 89, 37,120,233,170, 53,181, 42,193, 72,113,135,193,128, 43,193,176,181,114, 43,193,237, 2,183, 55,200,245,127, 4,241, 63, +180,137,140,161,214,128,231, 64,126,210, 98, 75,229, 15,225,201,111,161,223, 5,222, 75, 40, 35,250,100,180,177,193,219, 59,195, +151, 30, 6,244,165, 14,169,249,233,197,218, 39,217, 22,152,196, 14, 94, 15,118, 6,167,121, 49, 89,248, 74, 12,150,173,254,252, +161, 61,185,118, 59, 15,190, 9,203,211,188,171,106,161, 88, 23,158,120, 96,177, 81,240,158,237,209,231, 6,228,129, 21,206,221, +215,183,236,190,182, 37,246, 66,186,153, 88, 61, 31,233,126,101, 69,252, 76, 71,136, 66, 88,117,132,207, 38,142,223, 63,103,120, +125, 96,119,100,194,179,139, 34,236,128,252,112,226,100,216,160,163,146, 6, 63, 89,191, 40,200, 51, 63,130,131, 71, 16, 62, 10, + 47,191, 6,219, 59,240,104, 34,190,182, 34,142, 35,211,227,178, 56,138, 7, 31,133,201, 37,220,101,237,214, 28,129, 32, 77,122, +148,178, 20,185, 82,100, 86,138, 27, 77,203,174,207,169,237,212,155, 10, 96,177,201,165,137,144, 14,139,176, 43, 96,123,186,210, +230, 74, 75,227,111,181,199, 82, 41, 62,101, 42,204,158,233, 69,250,189, 32, 32, 82, 16,130,219,231, 52,168,119, 17,203, 53, 94, + 83,213,152,148, 11, 10,187,113, 55, 15,239, 74, 80, 74,182, 12,233,185,171, 11,194, 80, 92, 3, 80,133, 70,186, 31,237,186,236, +140,181,153,100, 73, 99,133,178,123, 87,212,138,118,209,203,221,209,172,179,158,173,113, 21,224, 82, 42, 40, 70,150,103,212, 84, +215, 97,106,218, 0, 11, 18, 49, 43, 93,214,253,192, 20, 9,115, 50,232,222,100,178, 13, 21,145, 75,237,171,221,223,147,185, 22, +131,218,232, 85,131, 97,162, 85,231,144, 71,105, 19,212,180,216,202,162, 73, 88,147,102,164,155,116,113, 23,132,134, 48,151,129, +209,117, 18, 53,236,100,105, 76,116,239, 32, 34,173,214,176,174, 5,154, 52,158,224,100,185, 34, 62,238,110,148,232,121, 79,161, +214,248,168,165, 85,228,115,169, 43,151,249, 16, 41,141, 85, 45,197, 14,237, 18,101,202, 75,240,204,124,176, 43, 79,229,187,138, + 95,207, 82, 49,179,205,156, 95,154, 81,124, 10,209, 58,116,207, 45,223,169,178,219,110, 9,197, 24,253, 38, 80, 45,214,161,231, + 66, 46,227, 12,126,177,209,250,194,140, 87,173,153, 31, 46,188, 11,129,130,237,192,161, 32, 33,205, 7,166, 42,116,171, 90,152, +138,127,149,134,253,191, 56, 4,140, 57, 95, 60,178, 59,166,132,166, 14,157,166,230,117,201,226,120,208,188,119, 44,171, 48, 35, +156,248, 87,155,211, 84,190,113,134,188,190, 34,116,201,210,183,142, 48,150,246,141, 17, 78, 54,232,141,135,200,173,187,112,244, + 29, 88,253,190,229,197,166, 99,136,183, 32,222, 54,127,121,255, 11,208,125,204,115,160,139, 89,214,102, 83,114,125,199,179, 9, +241,136,144, 15, 33,118, 32,190,179, 31,191, 14,211, 19, 8, 63, 13,225, 89,232, 78, 13, 25,187, 23, 25, 36,182,251, 13, 78,142, +216,120, 87, 62, 86,210,195,130,104, 85, 87,164,171,150,134, 83,153, 41,141, 18,105,191,160,107, 67,202,210,197,178,211,138, 45, +195,146,163, 49,102, 59, 63,100, 53,171, 90, 5, 97, 36, 22,238,118,237,172,179,159,146,217,123, 72, 85, 31,163,182,168,107, 2, +203,225, 64, 29,237,168,254,128, 65,157,104,235, 12,157,226, 40,250, 87,175,194,209,202, 66, 32, 36, 69, 75,169, 19, 87,153, 95, +233,145,219, 29,242, 82,129, 23,118,200,201,223,135,240,107, 80, 30,248, 46, 93, 13,188, 18, 20,194,187, 80,126, 7,253,224, 91, +240, 77, 69,223, 14,112,115,128, 39, 25,253,192,115,205, 71,243,221,201,218, 22,252,250,246,206, 62,159, 67,247,147,171,154, 78, +225,193,136,190, 49,153, 20,226,123, 35,242,194, 8,207,117,246,125,122,223,245,247, 30,115,118,144,144,110, 64,163, 19,254,206, +213,152,247,167, 88,236,235, 73,231,184,177, 2,215, 2,225,163, 43,148,137, 32,153,124, 58,241, 24, 24,139, 18,223, 25,232,222, + 20, 14,191, 53,112,248,108,224,224,118, 79,248,116,130, 65, 88,253,195, 3,174,252,211,145,199, 23,202, 32, 54, 28,216,185,211, + 81, 54, 19,199,239,110, 97, 5, 41, 43,178, 21,116, 44,200,205,251,112,184,131,195,103,225, 99,183,208,205, 7,132,243, 66,186, +182,166, 60,217,144, 55, 19,154,202,124, 58,171,162, 40,237, 4, 73, 46, 66,211,197, 47, 45,141,119,121,190,182,180, 94,111,179, +242,170,121,142, 45,227,220, 69, 41, 44,203, 44,172, 25,117,214, 69,172,212, 81,255,135,200,150,202, 76,240,210,153,141, 86,217, +234,185,105, 7, 13,109, 26,216,136,113,230, 67,168,157,160,175, 74,231, 75, 57,216, 79,162, 33,217, 0, 0, 32, 0, 73, 68, 65, + 84,232,209, 71,217, 33,219,225,183, 56,103,190,222,122,161,146,219,116, 17,161, 73, 48,224, 76,112, 27,103,221,202, 21, 93,238, +143, 58,208,180, 53,131, 16, 66, 85,117,251,180,173,181,234,105,155,105,206, 82,172,217,223, 58,168,103,116,171,238,171,187, 69, +197,197,131,174,102, 15,166, 21, 40, 33, 16, 84, 44,174,214, 81,156, 33,248,104,188,242,185, 92, 73,254, 97,225, 36, 51,141, 47, + 40, 33, 23,195,127,122, 82,155, 86, 85,119, 21,180, 73, 99, 97,213,229,185,177,247,243,203,135, 9, 10,101, 22, 56,230,166,128, +207, 82, 52, 49, 97,228,130,154,213, 61, 27,157,206, 93,189,238,229,209, 75,163,170,215,218,109,214, 21,101,101,215,107,139,184, +101, 46,130,251,251,117, 26,234,217,190,247, 58,138,144,250,222,126,238,146,151,239, 53,143, 55,195, 94,183, 90,213,236,104, 45, +182,251, 25,233,117,236, 30,131, 69,192,246,221,138, 85,151,152,128,237,102,235,129, 39, 66,145,192,148, 39,242, 56,249, 14, 63, +207,238, 1,145,125,171,180,250,158, 98, 81,177, 27,159,189, 30,154, 69,154,159,209,179,211, 85,150,227,101,104,118,234,186,143, +197,153,245,103,130,225, 97,201,133, 24, 35, 83,113,248,132, 44, 26,171,118,116, 23,100,241,164, 51,243,255,139,119, 15, 66,252, +111,142,195,111,134,179, 1, 30,101,164, 15,240, 83, 29,252,233, 0, 95,221,161,223, 86,244, 91,130,188, 21,224, 97, 48, 95,213, +110,128,199,143, 97,251, 14,240, 38,232,159,193,240,251,144,191,106,136,215,112,213,199,243, 71, 70,230,178, 28,212,230, 82,140, +214,222,208, 65, 88, 67,186, 9,241, 99,150, 46,162,247,188, 91,191,238, 68,179, 39,246, 53, 66, 15,253,100, 56,207, 81,236,215, +224,221,122, 85, 20,111,176,253,248, 69, 54,145, 91,171,110, 81, 83, 33,207,127, 95, 22, 79,226,114,204, 95, 64, 47, 34,139, 90, + 81, 60,233,172,102, 68,143,234,150,178, 57, 43, 90,230, 7, 80,239, 77,101,181, 27, 77,186,255,160,129, 37, 47, 37,122,236,183, +238,199, 25,251,120,107,223, 99, 92, 85,179,171, 74,180,245,227,249, 43,215,224,250, 33, 4,141,132,163,206, 64, 65, 7, 29,241, +164, 67,174,174, 9, 47,175,144, 87, 10,242, 66, 65, 14,255, 14,132,255, 4,244,129, 59, 21,220, 8, 27,254, 2, 46,254, 55, 56, +253, 3,244,141,247,208,255,119, 64,191, 61,161,219, 1,213, 17,221, 12,240, 32, 83, 78, 71,235,144,130, 53,247,146,252,226,125, + 99, 68,191,185,177, 19,207,218, 77,189,131, 91, 9,119,197, 82,196,114, 65,222, 26,225,139, 23,240,141, 11, 31,189, 39,123, 65, +170,232, 27, 91,248, 96, 50, 17,221,177, 24, 69,237,194,131, 34, 38,103,199,111,178,135, 14,128,188,150,224,176, 80,238,140, 76, +217, 68,114,244,130,174,133, 45,194,249, 6,134,251,133,248,195,129, 48, 22,244,134, 50,124,127,228, 98, 43,156, 15,194,217, 96, + 35,217,209,207,123,113, 87,232,118,197, 39,253,138,236, 28, 69, 75, 70,194,185,217, 3,111, 69,120, 50, 33,239, 41,114,108,128, + 1,189,176,107, 74,147,204,133,122,238,126,178,146, 75, 99,113,172,100,169,250,176,208,165,208,104, 83, 97,100,217, 18,205,254, +235,160,203,206, 57,184, 66,123, 63, 36, 59, 92,138,157, 44,243,195,158,189,225,165,236, 35,221, 42,157,165,202,193, 43,189, 37, +120,209,206,193,199,159, 94,252, 43, 31,199,159,254, 86,116,170, 86, 95, 93,189,175, 51, 50,162,222,126, 85,252,151,231,235, 91, + 23, 97, 92,176, 2, 60,186,184, 42,121, 54,123, 5, 97, 69, 49, 58, 87,167, 74, 39, 54,177,218, 53, 1, 50,226, 4,187,106,160, + 48, 83,251,146, 89, 94,191, 79,174,187,211,246, 93,144,202, 37, 23,183,149,182,122,172, 74,212,140,144,186,166,251,109,193, 62, +254,249,248,222,164,130, 73, 44, 9, 44, 16,146,131, 78, 80, 68, 11, 82,178, 27,112,124, 34, 24, 2, 26,163,233, 32,136,116, 49, +178,238, 87, 72,119, 64, 73, 43, 52,246, 16, 19,154,146, 49, 27, 66,104,120,242, 50, 11,188,234, 20, 98,182,177, 53,107, 1,219, +126, 52,106, 8,109,136, 4,149, 25,224, 34,202, 89,225, 80, 89,233,158,192, 54,167,149, 53, 67,205,176,167, 95, 95,198, 5, 81, +246, 73,119, 34, 77,225, 19,220, 47,110, 86,203, 46, 38,194,170, 39, 79,217, 20,225, 90,109,114,186,168,251, 61,129,173,238,199, +231,217,137,234, 62,208,197,197,164, 49,134, 37,194,180,235, 32, 37, 46,118,131,129, 99,196,223,191,105,162, 76, 19,228,137,201, +241,221, 85,177,110,159,223, 66,107, 19, 49,207,122,168,246,180,104,197,180, 74,231,230,215, 55, 7,204,216,215,144, 69,193,176, +151, 74,183,136, 0,154, 57,134,184,200, 79,157,205, 65,205, 34,112, 85, 87, 89, 14, 16, 50,131,115, 76, 32, 87,180,204,147, 20, +179,147, 6,210, 91, 91,225,250,182,112, 24, 54, 28, 94, 7,249,202, 68,121, 99, 67, 25,242,172,166,208,187, 29,242,221, 21,225, +217,222,236, 95,231, 10, 55, 34,242,241, 12, 31,153,224,246, 6,174,255, 49, 92,251, 18, 28,220,132,245,207, 66,252,183,161,251, +121,235,188,195, 85, 87,204, 15, 86,172,227,179,160,143, 93,241,126, 0,241,208,126,143,158, 65,190, 11,242,216,118,154,161, 51, +100,108, 92,217,168, 62,222, 71, 14, 30,161, 7,152, 77,235, 84,108, 71,171, 1,210,100,133, 61,136,133,114, 20,167, 39,209,180, +219,173, 76,248, 67,148,155,243,190,188, 34, 44, 85,109, 60, 90,149,233, 85, 57,235, 99, 67,101,201,130,137,193, 58,143,202,193, +174,162,184,188, 23, 33,185, 88, 50, 82,180, 67,195, 84,149,200,205, 46,191,158,238,196, 9, 84,189, 71, 99, 38, 89,116, 99,207, +118,112, 99, 5, 65,140,223, 46, 87,122,194, 81, 71,184,218, 35, 47, 30,160, 47, 68,120,121, 68,110,158, 64,247, 43, 16,255,174, + 23,243, 17,244, 24,194, 35,224,159,161,239,126, 29,253,215, 59,202,151, 7,244,225,100,148,182, 94,209,164,200,155, 62,157,247, +145,163, 14,130,116,222,113,108, 20,185, 42,104,202,198,126,255,171,201, 34, 69,174,121,162,206, 21,187,195, 53, 66, 94, 43,225, + 72,225, 64,145, 7, 19,242,222,214, 44, 99, 69, 61,192,165,160,255,252, 9,122, 91,144,191,125,136, 60,159,140, 32,248,126,182, + 64,152, 39, 5,253,222,136,158,102, 88, 25,122, 55, 51,145, 58, 97,221, 57, 85, 13,211,222, 73, 48,248,223,233,160,232,166,208, +127,107,203,244, 53,229,113, 22,198, 32,108,179,178,205, 86, 16,214, 2,154,157,153,252, 56,115,172, 91,232, 32, 5, 69,206,122, +120,152,209, 23,129,103, 50,114,114, 0, 63,123, 21,121,172,164,215, 33, 92, 23,194,235,129,233,193,232, 34,115,157, 9,198,140, + 62, 2,109, 14,101,115,189, 13,127,141,255,231,178,222, 72,155,249,106,217, 79,161,122, 58, 50,186,217, 65, 95,234,227, 22,172, +171,236, 5,166,204,160,166,121,228, 26,125,199,237,249,215, 25,207,193,110,236, 89, 25, 31, 87,137,255,113,153,195, 52,108, 50, + 97,193, 24,153,154,208, 85,187,127,157,213,236,168, 46,123, 95,223,160, 85,139,210, 65,128,181,143,124, 75,195, 99,175,204,236, +196, 2, 27,116, 92,196, 28, 51,154,125,151,123,153,180,165,151,252,113,210, 68,158,202,165,128,149, 54,202,116,242,206, 71, 85, +200, 49, 89, 16,199, 52, 34, 20,231,122,123, 58,219, 28, 20, 99, 16,160, 34, 22, 50, 21,252,207,148, 26,252, 65,178, 81,175, 84, +170,155,139, 5,253,161,108,151,134, 15,204, 75, 54,239,123,140, 75,200,135, 24,226, 20, 53,118,134,150,105,254,115,165,105, 72, +234, 97, 35,184,117, 81,155,157,255,236,181,247, 17,246,158,189, 76, 47,137,216,170,186,124,182,249, 86,172,171,159, 1, 89, 94, +123, 45, 76, 79, 73,231,154,108,215,250,255,209,161, 97, 81,160,235,123, 63,252,149,167, 48,105,218,138, 69,133,253, 29,125, 83, +208,101, 94,142, 58, 10,214,177,173,125, 74,132,148,184,152, 38,242, 52, 16,130,101,219, 79,211, 72,241,253,121,174,205, 94,115, +144, 43,141, 27, 97,182,167,248, 61,180,231,138,151, 89,178,106,214,219,138,205,189,164,236, 88, 16,185, 6, 40,162, 10, 45,103, + 44,236,146, 42,103,209,200,230,206, 97,246,184,251, 10,182,177,140, 20,103,240,183,148,199,202,251,151, 24, 72,155, 16,136,209, +166,158,135,119,118,240,189, 13,131, 51, 31,147,192, 90, 11,235,221, 72,218,108, 41,119, 35,101, 99,167,154,116,144,224, 47,146, +137,117, 14, 34,114, 34,240,209, 2,159,126, 23,249,248,255, 13, 47,252, 30, 92, 63,134,245,199,160,251, 71,144,254,166, 97, 56, +195,145, 63,132,214,134,225, 84,247,155,151, 83,147,110,135,107,134,150, 45, 24,228,102,245, 14,108,191,103,243,238,248, 2,244, + 71,200,250,125, 56, 26,208,247,177,214,245,188, 24,217,194,125,172,236,196,200, 98, 23, 66, 41,226,207,171, 96,138,228,232, 99, + 74,105,118, 99,178, 8,142,196, 33,207,101,242,110,174,168, 71, 90,170,227, 29,217, 3,103, 38,207,140,209,232, 23, 77,222, 87, + 35,199, 70,221, 90,253,166, 53,167, 62,151, 75,138,120,239,196,170, 37, 67,188,107, 73, 98,138,233, 46, 40,135, 1, 14, 11, 60, +119, 69, 72, 71, 9, 89,119,132, 3, 67,249,198, 27,107,120,177,135,151, 34,225,118,129,147, 23, 32,253,187, 16, 63,235,140,243, + 96,254,244,248, 87,112,241, 63,163,223,249,128,242,123, 91,242, 55, 47,200,247,119, 22,125,218,155, 6, 82,122,177, 36, 57,127, +250,202, 42,216,123,124,205,212,235, 82, 10,186,197,186,249,152,209,247, 39,228, 98, 66, 62, 62, 33,107,167, 54, 93,241,207, 38, + 42,217, 74, 4, 92, 40,241,125,179,108, 49, 40,252,196, 33, 92, 13,232,170, 48,253,127, 27,248,242, 99,194,171, 29,225,167, 59, + 75, 69, 27, 60,151,253,182, 32, 69, 40,119, 70,202,189, 17,174, 65,217, 8,105,172,126,106,241,248, 96, 37, 37,235,192,183, 69, +121,112, 1,219, 81, 24,124, 92, 56,184, 75, 33,123, 51,158, 60, 2, 30, 32, 63,201, 92,121,115,107,209,171, 87, 11,114,154, 77, + 39, 48,246,232,173, 0, 55, 59,248,187,215,144, 17,194,131, 72,247,217, 14,185,179,101,122, 48,218, 65,103,212,121, 26,222, 42, + 98,247,206,150,165,217, 13,183, 81,151,141, 7,186,236,141,110,132,210,108,141,235, 42, 71, 84,246,145, 30, 66,227, 70,113,239, +251, 37,187,105, 21, 67,201,222, 30,186, 1, 93, 56, 32, 99,102,126,235,228,254,238, 64,167,197,114,196,235, 20, 41,152,162,189, + 0, 57,139,175, 26,172, 8,150, 25,177,202,220,209,236,145, 68,159, 82,123,195, 58, 64,103, 35, 40,138, 42, 67,118,191,185, 23, + 40,117,211, 77,251,222,168,238,167,151,213,226,158, 91,139, 92,245,221, 4, 8, 26, 22, 79,127,147, 10, 38, 31,162,109,194,187, +167, 73, 77, 12, 53, 54,121,221, 73, 76,105, 95, 37, 32,197, 31,190, 65,132, 18, 35, 18, 59, 99,136,171, 71, 57,251, 33,103,244, + 78, 81,220, 75, 95, 60,127, 92, 93, 87, 80,161,244,165, 2, 99,114,178,102,162,212,180, 46, 43,251, 29, 32, 18,153,130,123,188, +103,130,159,237,187,231,241, 56,151,140, 15,218,252,172,212,173,141,173, 15,164, 1, 96,181,160,206, 60, 43,172,151,104,213,125, + 91, 90, 43,144,171,144, 30,109,248, 48,178,160, 90, 29, 81, 43, 10,177, 75, 72,234,200,211,248,148, 35,142,189, 78,223, 39, 6, + 65,230,216, 96,217, 27,100,215, 57, 85,245,142,139,229,152,119, 29,131, 22,198,237,214,176,190, 18,200,101, 32, 79, 19,154, 39, +255, 90,101,175, 99,174,133,214,137, 77,243, 72,190,226, 99, 5, 63,216,214, 48,156,217,211,175,174,196,119,182,124, 21,205,169, + 77,166,171,160,148,102,205,146,203,178, 72, 81,215, 8,132,228,236,120, 64,250,142, 60,142, 38,164, 21, 3,109,233,222, 33,129, + 61,176,141, 89, 15, 45,174, 54,254,147,231, 15,127,179,115,201,237, 16,132,243, 24, 56,147,192,185, 8,103, 8,231, 42,148, 96, + 23,213,249,144, 57, 45,133, 33, 22,138, 20,134, 97, 96, 60, 31,152, 30,111, 41, 31,236,208, 59, 35,124, 5,248, 82, 68,255, 84, +224,173, 1, 57,127, 7,228,139, 32,191, 11,250,117, 43,230,114,203,189,239,189, 23,154,232,197,254, 25,235,236,229, 69, 43,224, +225, 58,196,231,160,123,198,232,118,156, 58,147,251, 10, 28,128,156,236, 96, 93, 22,190,106, 87, 79, 56, 97, 70,248,121, 12,149, + 91,115,150, 43, 81, 90, 26, 66,176, 44,240,250,123,203,180, 48,181, 43,163,125,102, 16,248,205, 16, 5, 82, 20, 58,119,234,229, + 73,103, 82, 86,185,116,209,215, 67,111,244, 8,240,206,215, 33,227,162,105,154,213,173,193, 85,190,177, 89, 61, 31,116,194,202, +199,238,215, 50, 60,251, 92,164,127,110, 69, 56,233, 9, 39, 43,226,173, 53,225,246, 1,124,180,135,143, 9,242, 66, 15,135, 31, + 55,184, 15, 47,219, 45, 47,226,170,174,127,138,190,247,127,192, 31, 63, 36,255,175, 23, 76, 95,127,204,227,237,192,233, 90,121, +146, 96, 80, 37, 4, 11,111, 56,223, 40, 59,207,139,150, 11, 53, 61,198,181, 68,184,209, 67,143,165,181,157, 78,232,131,209,176, +173, 23,217,146,225,178,218, 52,229, 8, 75,169,187,155, 41, 63, 28,209, 15, 50,122,191, 32, 71, 1,249, 72,132, 51, 69,142,109, + 26,160,113,162, 92, 12,236, 94,223,112,246,198,142,139,191,216, 81,222,218, 33, 79, 38,228,186, 16,126, 97,141,124,126, 77,120, +181, 39,124,106, 69,120,177, 51,209, 75, 54,122,220,202,109,248,235, 35, 97,213, 43,195, 4,167, 91, 97, 82, 97,235,197, 96, 48, + 83, 4,131, 86, 2,155, 80,130, 44, 78,135, 8, 97, 80,210, 46, 47,214,133,173,189,118, 75, 35, 1, 78,122,120,121,133,188, 63, + 64, 17,226,115, 29,193,151,160, 53,221,172, 6,243, 8,210, 6, 40, 45, 69,254, 82,138,149, 94,162,115, 20,246,187,241,189,223, +223,196, 35, 7,167,183,153,114, 59, 46,192, 87,185,100, 60,158, 83,187,100,190,208,164,249, 1,130,167,101, 77,197, 56, 19,234, +243,253, 18,116,246, 52,151,185,251,150, 89,147, 82,153,236,197,185,237,243,175, 6,129,106,126,110,153,247,193,210,116,109,201, + 15,197,125,130, 85, 12, 36, 49,215,192,144, 97, 82,221,167, 46, 58,133,113,200, 31,190,210, 74, 1, 58, 31,163,103, 17,247,198, +203, 98, 41,144,250, 90,131,143, 59, 3, 53,149, 57, 86, 8,141,180,130,172,101,149, 48,185, 37,111,116,212,108, 85, 94, 71, 87, + 61,219,180,219, 16,164, 65,162,107,106,220, 83, 92, 20, 77,201, 15, 58,117,159, 95,156, 74,233, 3, 19, 17,186, 40,164, 32, 75, + 4,172,199,228, 22,138, 13,199,213,156, 8,234,175, 33, 5, 33,164,206,198,210,212,247, 95,103,172,108, 16, 89,160, 53,254,179, +170,200,211,158,242,102, 20, 95,199,136,245,181,137, 29,227,150,126, 94, 91,234,159,238, 7,139,104,227,125,170, 30,106, 93, 4, + 73, 22,181,107,201,104, 81, 32,174, 14,252, 64, 56,205,187,116,109, 2, 77,236, 32, 22,136, 30, 1,171, 85, 32,217,220, 52,218, + 72,239,140,235, 30,232, 82,207,122,213, 83, 98, 98,179,221, 32, 37, 67,180, 41,137,141,221, 7, 11,128,210,203,200, 28,153,223, +131,138,221, 53,247, 66,216,211, 47,204, 83, 3,145,189,110,219,244, 6,121,185,113,253,123,180,160,229,197, 37, 33,203,184,195, + 79,216, 85, 64, 87,170, 69, 83,156,248, 55,141, 14,227,105,217,184,230, 93, 15, 18, 45,152, 70, 76, 20, 40, 41,154,219,226,191, +124,246,240, 55,147, 27, 53, 11,194, 64, 96, 7, 70,179,242, 4, 31,137, 48,168, 24, 88, 76,132,173, 8,155,108,182,240,199, 17, +206,162,112, 30,149, 49, 20,114,158, 40,155, 1,121, 48,193,157,130,126,165, 67,190,209,193,102, 68,210, 29, 83, 87,151, 63,176, + 81,187,220,246, 29,188, 35, 95,101,106,150, 93, 14,169, 9,215, 76,148,151,110, 67,255, 12,132, 11,131,105,107,130,238, 0, 57, + 84,228,218, 0, 87, 11, 28, 57,219,187,143,150,246,229,209,122, 18,237, 36, 99,170,156,138, 76,117,193, 69,146, 69,125, 61,184, + 98,183,217,197,213,247, 63,213,164, 40, 23,107, 71, 49, 21,122,113,210, 85,181,140,176,247, 16, 95, 38, 80, 33,154,170,182, 51, + 81,186,237, 17,235,206,181,209,102,204,130,112, 63,163, 28, 4,179,172, 29, 71, 56,217, 40,215,111,116,244, 31, 63, 32,244, 43, +226,141, 3,194,237,181,101,215,127, 60, 32,175, 4,228,218,179,176,250, 60,196,159, 55, 42,160, 76,222,230, 60,130,241,127, 65, +223,254, 38,124,185,144,255,112,195,238,205, 51,238,167,204,253,149,112,166,182,107, 62,203,246, 64, 60,219, 9,143,118,194,102, +244,144,176, 2, 93, 22,194,245,104, 35,118, 1,253, 96,162,220, 29,152, 30, 78, 51, 46, 32,111, 50,242, 36, 19,206,213,114,228, +223,203,148,187, 19,250,129, 89, 15,195,115, 9,249, 72, 71,120,161,179,234,250,110,134,105,160,188,189, 65, 31, 14,156,159, 21, +222,139,118,173,157,110,149,241, 97, 38,252,104, 36,190, 51, 18,158,137,200,107, 7,200,203,107,228,246,138,248, 82, 32,220,140, +196, 40,164, 67,232,110, 5,226,181,128,158, 41,167, 79,224, 34,135,121,165, 49, 78,230,126,156,178,237, 24, 83,172, 39,106,153, +187,178,236,159,163,168, 18, 55,254, 48,149,154, 75, 84,233, 97, 10,215,123,120,190, 71,238, 26, 66, 82,158, 75,200,198,191, 81, +242,192,135,184, 60,232, 68,247,211,169,246,241,150, 11, 35, 91, 26,161, 84,227,128,219, 91,197, 5, 22,123, 86,106,246,241, 33, +232,158,233, 68,218,125,186,196,249,139,213, 68,171,217,102,227, 86,174,162,178, 32,152,235,175, 36,243, 20,161, 52, 83, 37,196, + 19,187,128, 66, 88,246,231,218, 60,238,157,119, 94, 2,205,247,182, 78, 38,122, 88, 75, 77, 74, 78,224,185,240,202, 38, 11,219, + 22,246, 82, 41,113, 52,224,193,150,218, 86,197,167,158,174,140,109, 63, 24,170,149,203,119,229,177, 41,216,234, 93,117,240, 2, + 22,188, 16, 90,199, 83,215, 95, 58, 11,217,212,225, 31, 90,242,114,152,168,138,230, 70,164, 92, 21,202, 82,227, 58,125,250,161, + 49,153,142,160,100,119,228,152, 45,169, 52,184,240,250,115, 76,237, 7, 30, 22, 37,248,172, 76,247, 3, 9, 41,206,251,233, 16, + 59,223,175,218, 26,160,175,190,123,177,178,220,137,165,159,153, 37,177,204,182, 50,221,187,246,164, 25,149,219,243, 81, 69,246, +124,225,101,239,242,213,189,195,128, 60,125, 78,152,133,101,181,232, 74,140, 4,132,212,245,214,165,231,105, 57,232,180,250, 38, +239, 66,103, 94,187,132, 69, 8, 22,132,167, 96,180, 62,114, 79,201, 52, 9,113,213,179, 25, 71,166,221,206, 72,131, 37, 51,229, +201,196,210,165, 44,163,107,221, 79, 61,146, 86,101, 31,130,255,114, 17,170,255, 60, 93, 76,116, 93, 79,136,209, 14, 89, 94,128, +149, 96,160,167,185,235,215,217,103, 95, 49,183,165, 2,206, 40,174, 43, 89,126,158,146,173,139,148,102,255,102,105,123,186,103, + 69,173, 48,160,224,201,112, 82,181, 6, 62, 33, 10, 18,136,255,228,249,227,223, 76,110, 13,153,138,237, 27,183,165, 42, 69,157, +103, 21, 2, 59, 21,206,179, 48, 98,234,234, 18,133, 93, 17,182, 69,217,169, 37,144, 93,136,176, 11,194, 38, 9, 83, 80,162,102, +194, 52, 89,123,116, 39,194, 55, 58,120, 91,225,226, 62,116, 95, 70,226, 23,172,157,139,175,120, 1, 58, 48,196, 23,161,153, 1, +137,137,232,194, 53,203,173,238, 94,128,238, 42,244,147, 37,141,165,222,232, 99,199,130, 92,203,200,245, 1,174,103, 56,193,212, +213,201,192, 6,210,133,229,131, 74, 11,171, 82,130,123, 33, 39,245,128, 23,165,234, 66,234,141,218,121, 49, 78,209,111,190,232, + 65, 15,197, 44, 73,237,184, 61,200, 37,212,165, 44,112,139,152,236,225, 49,233, 62, 37, 74,196, 58,254,228,162,245,181,135,158, + 29, 39, 51, 35, 28, 5, 88, 35, 28, 61,211,179,250,236, 49,225,228,144,240,194, 10,121,173,135, 79, 4,120, 45, 34, 55,175,195, +193,103,172,152,199,143, 2,174, 99,144, 96,106,247,233,183,209, 7,119,225, 59,145,252,197, 51,118,175,159,242, 65, 46,124,224, + 7,180, 41, 91,214,205,206,245,104,231,158, 6, 42,193, 58,136,149,194,250, 40, 18, 95, 94, 17,110,116,246, 30,110, 76, 64,183, +221, 42,143, 51,108, 85,216,170,112, 49,193,230, 65, 97,120, 47, 19,207,149,120, 40,200,237,100,221,245, 47, 31, 32,183, 18,250, +142, 41,158,202,247,183,148,247, 7,166, 63,185, 96,251,112,226,145,103,166, 76,110,118,216, 69,216, 78, 74,185, 59, 18,191,186, + 69,238, 77,179, 93,144, 46, 34,193,198,251, 37, 23,244, 73,161, 60, 42,236, 46,148,179, 81,216,101,153, 95,211, 99,255,107,138, + 86,208,131, 68,255,188,150, 66, 23,196,172,100, 89,108,142,155, 54,101,230,105,115, 86,144, 51, 69, 14,253, 3,189,209,195,205, + 4, 63,154,144,117, 64,142, 2,250, 32,155,171, 33, 25, 54, 54,164,104,145,198,200, 94,199,189,116,244,117,124,185, 60,164, 90, + 77,198,194, 16, 95, 58,220, 24, 27,206,251,188,107, 92,148,187,114, 57,193, 41,132, 26,206,108,191, 55, 93,154,161,138, 93,195, +243,232, 81, 91,162,152,236, 9, 56, 39, 87,186,151, 25,194, 18,108, 53, 85,154,189,174,119,219,203,136, 93, 23, 37, 59,150, 85, +208, 71,235,112,131,207,115,173, 11,134, 11, 21, 70, 31,249,106, 67,155, 75,254,217,132, 70, 16,215, 24, 2,230,131, 77,242,221, +124,141,118,152, 27,116,135,208,172,130,160,151, 86, 14,117,102, 17,252,160, 31, 28, 98, 83,154,221, 63, 78, 81,107,243,205,235, +103, 90, 90, 15,121, 51,117,169,185,221, 26, 92,217,172,217, 4,103,170, 51,102, 87, 47, 77, 27,180, 10,179,106,161,245,221,115, +253,123,149,128,132, 72,137,201,139,126,130,212,161,211, 96, 62,237, 70,253, 62,239,164,133,134,199,111,141,197,222,126,189,249, + 61, 75, 38,183,189, 31, 42, 97,111,135,141, 11, 61,151,117,146, 46, 63,248,229,162,126,185,171, 76, 70,145, 76, 18, 72,171,181, +173,110,178,189, 11,165,148, 61,155, 66,181,172,133,154,128,134,161, 88, 45, 0, 70, 46,145, 76,237,189, 78, 49,178,234, 87,172, + 86, 43,134,162,236,182,155,217, 89,148,167,201,173,205,121,129, 70,181,247, 73,179,187,183, 2,153, 22,145, 99,213, 63, 4,119, + 21,185,242, 93,221, 26, 87,113,177, 18,189, 1,110, 24, 1,141,126,112,161, 9,126,152,164,203,237, 11,179,170, 61,134,246, 6, + 95,152, 38, 78,178, 11,226, 93,121, 12,132, 24,188, 67, 79,243,247, 73,193, 97, 7, 8,236,138,199,130,170,123, 17, 85, 40,158, +220, 54,170, 48, 86, 11,150, 58, 71, 58, 70,198,146, 9,110,247,144, 82,216,169, 18, 35,108, 5,182,162, 28, 78,153, 62,103,186, +243, 29,221,251,145,240,122, 79,248,227,158,240,249, 53,250, 31,223, 67, 62,241,223,193,201,111, 67,255,239, 67,250,101, 27,205, +203,161, 21,114,137,205,192, 78, 32, 30, 89, 97, 15, 47,195,234,151, 12, 85,171, 27,243,181,231, 7, 6,180, 25,127,132,108,238, +194,246, 33,156,239,208,135, 1,222, 11,112, 47, 34,167, 9,121,164, 48,140,200,110,162,236, 2, 58,100, 66, 54,180,168,246,138, +140, 98,224,137,156, 73,106, 83, 10, 89, 7, 27,207, 79,214,201,215,241,162, 20,217, 75,196,154,109, 12,141, 66, 84,154, 28,104, + 84,108, 55,231,191,127,229,250,164,212, 80,244, 87,106, 39,109, 27,183, 7,226,145, 16, 83, 71, 56,234,136,159, 61, 68,174,247, + 22,247,249,140, 88, 86,250,209, 53,136, 47, 65,120,205, 98, 68, 37,154,131, 64, 31,185,100,127, 7,211, 23,209, 39,239,194,247, + 2,229, 95, 63,102,124,253, 9,247, 39,248, 64, 2,231,147,204, 86,161,177,250,168, 39,251,153, 87,126,245, 69, 85, 86, 2,225, + 70, 34,220,234, 9,199,201,146,235,130, 61,233, 71,204,230, 55, 84,125, 73,177, 7,228,245, 91,166,115, 8, 31,237, 8,159, 62, + 48,128,119, 14,232,159,109,209, 15,132,248, 55,122,228, 35, 9,125, 50, 50,141,133,109,191,116,211, 67, 94,114, 93,114, 7,186, + 10,148, 60,113,237,171,103,116, 15, 39,226, 11, 61,178,142,148,123, 19,211,219, 3,211,253,129, 39, 99, 97, 27, 33,135, 96, 63, + 79,134,179,193,214,250,227, 84,117, 47,118, 83,104,130, 62,218, 40,112,187,181,113,123,116,111,233, 78,224,113, 50,146,223,241, +253,137,245,227, 76, 60,152,208, 65, 73,189, 89,160,136, 1,158, 59,128,191, 1,124,245, 2,185, 46,196,155,153,252,227,193,140, + 31,149,233, 62,170, 45,238, 55,153, 32,197,212,250, 90,133,152,142,106, 45, 11,251,189, 37, 60,148,176,175,237, 20,177,183, 80, + 23, 25,200,242,192,111, 81,150, 94,237,212,219,254,121, 72, 16,170, 4, 95,125,255, 44, 85,227,118, 89, 81, 54, 63,108, 66,168, + 63, 87,125,192, 4, 38,191,186,117,198,182, 26,247,191,140,101,166,178, 73, 85,189,207,216, 83,211, 88, 7,159,134, 20,241,174, + 84, 27,229,186,238,143,122,235,215,233, 92,155, 66, 83,208,105,242, 92,234,136, 92,138,199, 28, 8,172, 28,224, 82, 71,245, 49, + 88, 81, 47,126, 24,183,189,166, 54,244,252,133,254, 84, 59,251,209,127,134,224,239, 67,104,172,167,200, 94, 56,157, 77, 4, 2, + 77,167,102, 74,108,153, 70,235,192, 42,221, 46, 5,239,218, 23,171, 88,104, 68, 97,170, 75,135, 44,168,237,239, 3,236, 84,102, +174,123, 8,201, 4,120, 10,196, 14,101,103, 36, 52,255,190, 83, 61,172,168,204, 92,179, 73, 13,101, 28,129,222,223,155,249,240, +243, 33, 12,208,162,151,131, 67,234,103,210,232, 54, 46,195, 81,218,110,215,167, 96,162,190, 6, 21, 33,170,210,245, 43, 8, 17, +245,104, 85, 81,221, 79,117,243,247, 68, 90, 7,130,182,234,144,197,119, 87, 61,229, 97, 46,234, 61, 37, 4,134,205,150, 80, 89, +238,117, 26, 48, 90, 28, 80,144,200, 42, 5, 52,216,103,150, 27, 52,171, 93,226,145,152, 18, 93,215,205,240,155,226,160,163,162, + 22, 82,148, 27, 75,164,173, 21,146,173, 60, 82, 90,186,110,221,223,251,235, 37,191,253,190, 32,209, 68, 86,245,112, 95, 17,225, +162, 32, 41,218,100,106,154,252,144,211, 30, 34,236,160, 17,194, 2, 26, 50, 7, 73,144,121, 31, 51, 2,147,216, 15, 61,185,106, +117, 66,216,249, 15, 49,250,155,222,213, 27,215,119, 73, 18, 29,171, 88,160, 99, 66,180, 48, 40,236,180,112,234, 76,145, 21,112, +156, 39, 14,207, 38,186, 39, 23,164, 63,236,145, 63,235, 9,175,101,228,231,190, 14, 31,251, 6,242, 98,128,171, 7, 22,125,217, +157,216,158, 61,173, 65, 78, 32,253, 12,164,159,131,240,138,237,218,229, 25, 22,163, 76,163, 52, 42,231,214,153, 14,223,132,205, + 23,144,231,190, 7, 47, 61,130, 39, 91,244,161,192,155, 17,222, 78,132,123, 29, 34, 35,154, 50,165,207,115, 50,155,157,170, 27, +245, 71, 7,244, 1, 29, 45,130, 53,228,209,139,185, 86,247, 12,157,143,210,170, 69,106,142, 81,172, 55,108,116, 17,203, 76,176, +242, 29,125,180,140,231,228,251,246, 20,133, 24, 3, 97,109,145,161,225, 56, 17,174,116,200, 65, 66, 62,217,195, 11, 17,174,129, + 92, 89,195,250,186, 79, 56, 94,114,113,161,130,108,236,223,229, 55,161, 60,182,201, 71,249, 62,236,222,128,215, 3,229, 79,207, +152,190,245,152,199, 67,230, 65, 20,158, 56, 13,175,158,188, 39,167,140,197,149,189,236,226,163,200, 94,160,235, 3,225,102,103, +163,247, 20,188,245, 85,202,206, 10,250,136, 21, 78,124,191,121,120, 37,178, 62, 14,132, 11, 67,193,234,195, 9,221,128,126,175, + 32, 93, 36,254,108,135,220,240,216,200, 81,225, 43, 66,159,148,131, 4,103, 59, 22,102,183, 26,129,237, 2, 40,209, 72, 46,215, +222,219,161, 39, 66, 58, 84, 3,226, 93, 4, 56,181,135,245,105, 14, 84,237, 77,241, 88,207,106,149,138, 53, 6, 52, 66,223, 5, + 62,254,249, 67,158,220, 31,249,209, 95,110, 76, 97, 30,173,238,141, 46,234, 26,197, 14, 25, 7,131,114,117, 26,231, 27, 48,173, +163,217, 63, 99,132,151, 14,108,180,240,253, 45,225,213, 53,114, 14,122, 62, 17, 79,108,119,146,207, 38,244,116, 48,225, 97, 49, +152, 75, 81,157, 33, 70,165,232, 2, 86,201,203,228,187, 92, 66, 94, 87, 81,230, 44,116,247,247,134,230,159,159,222, 18,178,191, +255,204,151,214, 0, 82,139,188, 49, 85,181,185,157,172,234,235, 66,156,115,229,242,232,226,174, 50,103,144, 7, 51,138, 85,161, +206, 12, 60,241, 0, 16,196,174,117,223,101,217,110,190,236,231,151, 87,250,153,180, 80,168, 37,200,101, 22,153, 46,176,233, 5, +222,211, 12, 30, 70, 42, 93,216,246,199,187,106, 19, 84, 37,168,204,247,229,194, 90,175, 83,135,101, 4, 92,194,114, 88,216, 91, +159,205,135,243,101, 87, 93,119,217, 58, 79,124,100, 22, 10,106, 76,150, 12, 87, 44, 61,174,166,122,197,152,172, 56,228,130, 78, + 19, 57, 27, 85, 45, 72,211, 61, 42,179, 66, 94, 27,229,191,109,127, 50, 90, 70, 8,201,222,247,225,194, 24, 26,213, 49, 80, 61, +220,190,225,174,247, 80, 13,242, 25,253, 32, 21,155,149, 68,110,196,126,168,208, 14,230,231,228, 57,173,154, 3,105, 20,219, 50, +179, 22,120,170,104,201,156, 82,134,239,253, 87,171, 21,221,106,205,118,156, 90,103,221,194, 96,111, 38, 47,115, 44,235,158, 52, + 68,246,200,199, 53,208, 36, 5, 43,232,146, 18,227, 52, 89, 80,139, 59, 15,114,182,168, 83, 45, 21,237, 92,220, 30,231,137,109, + 68, 7,208,100, 23, 38, 71,250,149, 29, 60, 74,158,252,221, 95,246,230,168, 54,215,110,153, 25,250, 22, 24, 19,144,148,128,201, +244, 13, 69,247,209, 59,210,236,211,139,101, 0, 84,237, 87,169, 86,194,246,186, 11,158, 84,217, 89,250, 32,174, 51, 8, 33, 44, + 59,127,191,182,202,124, 24, 86, 82, 41,206,124, 22,179,162, 84,207,232, 6,191, 17,138, 25,226, 17,153,173, 67, 89,101, 30, 31, + 34,193, 34, 6, 93,241, 90,196,198, 78, 5,227,227,166, 98, 93,255,128,146,131, 48,117, 74, 15, 28,234, 72, 58, 29, 9, 95,139, +200,215,163,239,188, 3,114,248, 24,185,254, 24,110, 1, 30, 28,199, 21,133, 27,191,135,188, 18,224,197, 99,184,246, 73, 56,252, + 47,160,251, 5, 8, 55, 61, 74,212, 91,159,152,140,122,215,189, 6,135,255,158,117,241,227, 29,216,253, 57,178,251, 50,188,250, + 6,122,111, 11,175, 71,228,135, 9,121,208, 17,114,221,215,248,227, 47,251, 77, 85,178, 49,201,139,129,110, 74,202,104, 74,168, +102, 98, 81,210,228, 98,136,201,118,105,165,152, 98,188,120,236, 34,201,131, 56, 74,158,115,168,235,222, 60, 6,155, 14,196, 40, +150,240,117, 20, 9,171,100, 83,129,227,132, 92,239,144, 43,201,222,135,219,192, 51, 43,164, 63, 49, 93,129,124,196,243,207, 87, +214,163,148,187,192, 99,136,159, 48,178,223,244, 61, 43,246,211,219,160,223, 69,223, 41,232,183,183, 76,223, 57,229,236,108,228, + 81, 18,182, 59,131,132,100,160, 83, 27,135, 74,103,157, 75,242, 61,126,240,189,126, 63, 9,241, 70, 34,220, 92, 33,199,209, 42, +227, 35, 12,135, 90, 44, 59, 62,142, 16,163, 5,118,172, 18,200, 88, 56,255,192,104,190,221,157,204,234, 71,153,120, 18,137,215, + 58,226,231,123, 68, 35, 92, 24, 30, 75, 78, 18,161,143,232, 38,179, 58, 22, 11,133,217,249, 65,210,249, 0,243, 3, 47, 26,110, +246,218,155, 59,228, 68,136, 47,117,164, 85,135,110, 38,142,222, 29,216, 1, 15,139, 5,234,132, 58, 13, 9,206,206,247, 14, 34, +250, 40,229,237, 31,108, 57, 63,205, 11,145,214, 7,159,163,175,206,147, 56,172, 16,115, 31, 92, 57,157, 64, 46,144,215,133,212, +249,174,164, 83,248,216,177, 9,234,238,239,144, 79, 31,192,191,184,128,151,123,248,123,107,194,151,158,160,239, 41,218,179, 71, +242, 82,109,243,178, 23, 52,106,171,232,110,133,150,179,142,206, 71,247, 84, 45, 6,218,128,167,116,217,151,151,253,209, 40, 13, +103, 93,171,184,206,164,213,196,138, 37, 45, 77, 50,161, 87,181,146,173,123, 33, 66, 16,207,146,207,130,134,122,221,123,239, 60, + 93, 66, 87, 6, 33, 21,153, 83,199, 74,168, 28,124,157, 11, 73,165,112,133, 69, 85,199, 20,162, 63, 0, 77,249, 94,167, 10,179, +189,190,138,192,252, 1, 22,154,201,151,248, 78,186, 23,232,171, 71,155, 5, 30, 80,234,193,192,109, 65,193, 5,114,185,161,174, + 40,206,178,154,173,136, 50, 91, 75,235, 62,179, 30, 90,234, 55,158,115,189,213,173,174, 33,154,255, 60,103, 74,140, 51,105,178, + 79,137, 28, 34, 69, 18, 49, 41, 41,140, 72,182,144, 42,113,127,118, 3,255,195, 66,167,131,231,183, 23, 71,235, 66, 41, 22, 70, + 82, 98, 50,124, 51,173, 51,103,102,141,241, 52,138, 67,246,121, 94, 77, 54,124, 17, 59,130, 21, 95, 7,137, 86,246,187,204, 57, +242,251, 35,118,153, 35, 94,165,237,166,165, 25, 29, 35,115,146, 89, 23, 18,221,234,208,237,142, 77,158,176, 54, 0, 46,183, 84, + 46, 98, 60,217,203,173,159,109,201,243,244,199, 33, 51,169, 35,246, 61,147, 42,227, 48, 56, 62, 87,152, 38, 11,135,209,113,156, + 89,219,138,185,148,132, 60, 35,137,139,179,236, 83,234,232,250,149,105, 40,114,158, 39,214,185,174, 7,244, 50,202,169,174,230, + 29, 78, 36,246, 44, 15, 49, 94, 10,121,113, 28,114,104,167, 30,101,241,181,187, 38,160,136,160,121,108, 88,238,246,223, 82, 12, +224, 40,221, 86,115, 80,149,157,170, 75, 6, 0, 64,146,104, 29,206,232,136,193,209, 97,109,163, 95, 0, 81, 5, 25, 50, 18, 35, +147, 8,145,192, 40,236,219, 10, 84,232, 66, 32,198, 64, 25, 97,146,108, 54,175, 92,201,105, 54,194,202, 82, 49,167, 86,228, 87, + 65, 89,147, 9,100,207, 76,142,200, 20,145, 15, 4,238, 86,207,133,239,192, 83, 32, 28, 7,228,246, 22,126,241, 43,200,231,190, + 14,207,223,132,107,159,129,245,175, 88,190,123,188, 5,242,156,121,223,137, 6,192, 73,135,144, 94,130,131,191, 13,229, 55,224, +234, 29,228,198,111,193,179,127,130,126,236, 49,188, 5,220, 79, 48, 90, 91, 32, 71,190,199, 28, 50,108,221, 86,245, 16,232, 51, + 97,116, 10, 29,101,137, 79, 84, 39, 61,121, 48, 12, 59, 79,130,171,109,161, 47, 35,235, 72, 91, 86,130,116, 98,160,152,181, 64, + 31,145, 99,219,201,154, 95, 45, 26,227,252, 42,214,149, 31,175,224,224,182,197,213,202,243, 70,128, 67,141, 8,151,239, 25,176, + 71, 51,164, 23, 32,188, 4,195, 31, 66,233,205, 22,168,223, 67, 31, 94,192,119, 38,242, 55,207, 24, 78,119, 60, 10,194,227,209, +120,221,197, 39,178, 93,178, 61, 62,190,239, 79, 1,214,201, 16,180, 43,224, 64,132,120,163, 39, 92, 79, 8,209, 0, 63, 15, 21, +206,204,207, 28, 4, 86,201,234, 91,181,118, 14, 19, 60, 25,237,198, 93, 71,229,170, 22,142, 21,226,173, 14,185,217, 35,215, 87, +240,126, 49, 10,224,113, 38, 30, 7,219, 24,172, 23, 1, 98,110,146,188,166, 98, 41,108,165,152, 31,189,127,152, 57,121,125, 68, +186, 64,120,161,163,123,237, 0, 57, 83,202,163, 76,174,215,244,100, 7,168,164, 21,175, 45, 51,212, 37, 79,133,247,223,207,172, + 68,109, 44,234,237, 88,197,243, 22,199,163, 86, 21,214,217, 36, 4, 81,174,156, 22,132, 45,225, 71,102, 65, 33, 4,248,104, 66, + 62,125, 8, 95, 43,112, 18,225, 51, 5,190,191, 67,255, 56, 51,125,111,135, 70,157,103,157,243, 16, 72,246,163,122,171, 2, 61, +243, 52,144,104, 22,212,150, 57,102,126,121, 92, 4,246, 58, 2,109,177, 96,123,187, 60,239, 40,213, 24,241,245,125,144,182,147, + 47,251,129, 40,245,235,148,217, 43,223, 88,211,138,223,224,186, 48,142, 23,113, 94, 65,220,148,162, 46,246,145, 58,234,246,231, +114,186, 52, 69,168, 73,107, 50, 22, 52, 6, 98, 74,243, 8,201, 24, 13, 54, 73,180, 28,246, 68,233, 35,162,153, 48, 88,216, 83, +156, 11,251, 82, 24,163, 79, 91,234,208, 88,125, 95, 30,103,135, 65,217,243, 93, 47,226, 68,239, 86,181,217,183, 59,217,177,168, + 65,133,148, 50, 43,215, 43, 60, 68, 53, 83, 52, 52,194,155,138,180, 30, 17, 85, 70,205,140, 26, 40,253,218,154,131, 90, 44, 66, + 50,142, 61, 54,202, 13,165, 64,153,102,120,149,250, 78,151, 82, 76, 92,133,144,243, 56,115,171,107, 49, 85, 45,179,112,109,137, +240,253, 16,112,183,180, 81, 91,203,161, 37,212,174,189,233,152,107,120,141, 92, 78, 93,155,197,143,186, 76, 44,184,188,159,183, +247, 34,137,176, 90,175, 33, 36,166,113,240, 34, 84,201,119, 31, 22, 21,199,156, 64, 86,156,146,182,183,175,175,163,119,137, 6, +154, 89,245, 72,136, 76,195,206, 56,234, 33,144,199,113,206, 46,159,111,234,122, 76,168, 7,179,146,253, 62, 40, 86,208, 87, 43, + 99,221,187,221,176,134,203, 80,218, 57,216,211, 60,118,117, 37,105,113,230,124, 8, 1,141,117, 54,226,138,247, 57, 1,168,198, + 77,215,207,201,225, 82, 98,235, 86,149,110, 78, 13, 69,148, 24, 3, 49,245, 75,178, 91,158,236,240,221,120,247,139,195,105,172, + 55,205,164, 18, 3, 90, 44,127,184, 4,231, 66,123,199, 30, 84,152,234, 3,207,223,172, 89,150, 95,253,142,193,253,195,106,230, +123,213, 72,206, 16,181, 48,170,141,221,234,232, 33, 20,171,145,235, 40, 28,196,192, 65, 40, 28, 38,165, 67, 89,171,113,169,196, +247, 32, 98, 71, 63, 0, 0, 32, 0, 73, 68, 65, 84, 17,117,175, 20, 74, 33,102,135, 55,156, 9,225, 78, 71,248, 97,135,252,239, + 32,215,238,193, 39,255, 8,174,255, 17, 92, 87,228,165, 14, 94,125, 14,110,190, 12,135,191,102, 60,249,240,188, 39,203, 37, 43, +250,235, 27,208,127, 10, 14,223, 66,174,253,115,184,253, 39, 70,199, 27,183,118,165,118, 9,210,202,115, 84,207,208,211, 45,188, +157,225,110, 68, 30,138,241,206,119,178,204,115,235,174,114,106, 18, 89,166,198,198, 80, 47,254,149, 35, 82, 87,174,204, 63, 12, +232,145,121,252,103,100,234,177,255,245,176, 67,250,171,166, 43, 72, 31,177, 86,189,170,166,202,133,237,203,203,153,179,246, 11, +132, 91,144, 62, 7,195,159, 65,126, 8,225, 19,160,175, 27, 55,255,174, 82,190,127,206,244,254, 5,103, 5, 78, 85,216, 78, 14, +228,243, 44,156, 50, 25,181,183,143,152,142, 96,182,111, 20,214, 2,171,103, 18,225, 51,107,228,181, 53, 28,116,200,189,193,230, +162, 43, 8,189,176,246,177,237,144,173,144,154, 37, 9,114, 46,230, 86, 84,216, 37, 56,212, 98, 63,242, 22, 19,153, 29,216, 75, +144,126, 36,220,236,137, 63,222, 65,150,217,164, 48,168,165,104,209, 32, 74, 69,160, 36,216, 5, 88,223,155,144,195, 68,124,182, + 71, 62,218,145, 56,224,248,219, 27,244,126, 38, 39, 99, 19, 73,150,153,165, 31,171, 23, 56, 7, 36, 40,125, 92,198,170, 18, 27, + 78,193,222, 67, 38, 88,142,119,130,243,108,239,205,201,249,132,156, 14,116,119,109, 77,194, 42,193, 43, 7,240,147, 71,240, 87, + 23,240,153, 3,244,206,192,248,229,115,244, 89, 95, 10, 95, 84, 28,234, 50, 95,107,159,105,161, 17, 90,181,236, 2,105,188,192, + 21, 0, 39,205,181,101,197,210,193, 7,109,182,118, 19,108,210,166, 98,105, 51, 10,176,125,161,167,105, 53, 86,162, 82,187,214, +218,217, 21, 32, 22,202,232,232,229,169, 32,197, 12,239,218, 20,115,145,253, 20,183, 42, 37, 11,165, 85, 52,219,142, 56, 54,114, +106,117,133,251,232,130,184,145, 70, 37, 23, 18,218,217,115,104,202,117,135, 47, 22, 66, 69, 68, 53,144,198, 45,157,102, 43,206, +237,250,162,174, 14,230, 17,123, 29,191,107,131, 44,185,148,149,217,172,205,140,200,230,227, 85, 89, 2, 30,231, 2, 92,173,112, +158,250, 50,205,225, 76, 58,251,254, 53, 38, 86, 34,196, 82, 24, 52, 27,217, 12, 5, 57,176, 46, 50, 79, 11,107,189,235,136, 39, + 55,172,176,108,206,208,237,214, 70, 37,117,205, 16, 2,185,136,251,219,179, 9,122,163,146, 99,164,196, 30,213, 97, 1,185, 52, +188,250, 57, 6,185,233,206, 67, 93, 21, 72,141,212, 21,211, 73,201,178,126,144,214,245,123, 41, 76,165, 85,201,163,234,201,128, +245,144, 80,199,204, 54, 34,238,251, 53,177, 91, 49,148, 50, 35, 89, 89,230, 29, 79, 37, 97, 70, 26,186,159,234, 30,133, 77, 36, +122,138, 25,196, 24, 89,117,189,121,210,243, 68,158, 76, 56, 51,150, 98,144,153,108,212,184,122, 3,205,234,125,167,200, 21,191, +206, 82, 8,196,212,249, 26, 89,153,138,241,224, 43,205,173,213,121, 32,173,192,209,199,102,213,146,230, 10, 87,165,248, 33,112, + 57,220,168, 51,244,115,201, 75,160, 83,187, 94, 40,217, 5,133, 29, 37,218,164, 64,167,201, 2,105, 58, 83,185,171,136, 9,121, + 93,143,176,172, 44,202,162,182, 47,153, 84,219,145, 82,187,147, 58,114,172,185,196, 13, 13, 77, 84,233, 28,196,210, 38, 56, 91, +174,236,228,162,136,142,162,194, 46,143, 78, 71,178,145, 88, 93,215,173,130, 61,168,143,114,225, 56, 10,185,192, 65, 20,203,164, +214,224,249,193,101, 62, 92,168, 70,186,169,176, 26, 71, 82, 20,244, 8,242,129, 18,186, 68, 24, 58,228,251, 7,232, 7, 35,229, +189, 29, 12, 59,194,141, 55,144,159,120, 11,254,222,159, 34, 63,125, 2,207,127, 12,142,127, 21,186,207, 67,120,198,232, 42, 56, +158,246,248,215,225,224, 63,130,233,212,109,114,163,101,198,167,107,134,166, 45,143,144,107, 95,134,231,190, 4,159,120, 7,125, +114, 97,168,220,236, 94,215,154,141, 93,124,247, 49, 86,168,127,244, 89, 96, 66,164, 44,102,216,222, 21,115, 49, 65, 95,153,152, + 62,251, 77,226,193, 26, 29,228, 53,156, 95, 88,235,187,254,121, 3,243,200, 19,251, 57,203,153, 85, 69,221,185,186,125, 13,233, + 19, 48,189, 5,155, 63,131,254,103,140, 28,167,239,161,247, 7,248,238,150,233,238,134,237, 38,243, 40, 8,231, 91, 35,184,106, +150, 25,215,185, 43, 86,208,241,169, 88,196, 14, 95, 69, 3,199,100,116, 27,144, 28, 23, 21,146, 5,131,219,235,247,220,249,177, + 30, 18, 10,156, 15,176, 43, 38,152,236, 93,188, 84,218,124,130,173,167,211, 4,177,223,112,210, 19,158,235,232, 86, 22, 77,216, + 39,179,131,159, 95, 24, 20,169,243,183, 45, 68,123,240, 15, 25, 70, 31,155,234, 54,163,143, 50,225,181, 21,241, 39, 15,144,152, + 56,249,230, 25,250, 96, 66, 69, 56,171,249,129,137,153, 10,168, 98,187,222,232,226,166, 32, 6,174, 9, 77,220,165, 52, 33,154, +248, 41,216,241, 61,164, 65, 9, 15, 7, 83,182,175, 34,114, 16,209,131,128,124,100, 13,175,172,225,157, 29,242,239, 28, 33,255, +167,117,145,210, 21, 52,137, 39, 3,250,251, 80, 22,122,153, 40,104, 84,226, 36, 51,142,184,137,181,110, 73,198, 76,126, 15,149, +204,252,222,207,221, 64,190, 36,120, 43,151, 30,142,181,197,217,115,244, 52, 44, 87, 31,242,206, 45, 91, 21,131,105, 65,166,134, +214,230, 28,118, 90, 86,184,239,168,231, 26, 25, 92,164,231, 95, 39,214,209,119, 12, 30, 65,106, 45,179, 56, 9,174,184, 35,187, +119, 12,236,136,233, 91, 68,237,223, 79, 49,146,177, 73, 82, 41,217,210,217, 98, 32,249,153,169,111,152,239, 89, 13, 54, 82, 26, +149,246,194,221,119,193,158,191, 93,213,111,220,202,197,130, 86,220,169, 94, 2,221, 44, 19,143,250,185,197,176, 64,129,212, 21, +227, 69, 11,108,207,209, 16,221, 59, 29, 73,177,179,243,126,183,140,128,139, 19,234,138, 39,126,201, 48, 80, 54,103,196,245, 49, +101,117,108, 87,219,230,204, 94,175,216, 94,213,114,183, 11,185, 12, 22, 40,162,246,122,136, 61, 26, 59,131, 65,185, 70,160,204, +130,185,198,126,230,175, 53, 87,178, 89, 61,122,105, 67, 9,110, 69,152,232, 94, 0,139, 74,104,116,255,141, 66, 59, 52,113,170, +179,141, 77,232,186, 21,253,122,141, 6,241, 36, 52, 43,166,218,232, 42,158,202,110,173, 2,185, 82,156,179, 94,173,151,139,253, +174, 82,227,186, 85,111, 7, 66, 15,132, 81, 17,198,113, 36,103, 87,220,214,105,211,124,168,113,237,212, 12, 45,183,180,180,144, +162,127, 46, 94,208,125,154, 48, 67,119,116, 57, 16,171, 79,110,184,196,114,159,189,246,132,185, 27, 23,191,230, 67,116,144, 80, + 30, 80,151,154,154, 78,193, 52,105, 85,252,166, 51,227, 2, 98,234,172, 75, 15, 97, 33, 52, 58, 50, 87, 36, 88,106,158,235, 79, + 74,206,115, 4,113,138, 30, 72,145, 51,108,199,194,182,216, 8,222,186, 0,102,225, 72,168,105, 79, 30,176, 16, 93,249, 74,201, +110, 17,139, 20,133,190, 79, 4,141,140, 27,101, 44,153,186, 41,170, 34,141,169, 40, 35,197, 70,169, 2, 57, 8,121,178,209,255, + 81, 18,186,100, 98, 49,123,130,217, 60, 55, 28, 69, 79, 78, 10, 14,157, 73,246, 32, 61, 12,112, 8,220, 78,200,185,119,207, 41, +217,213,249,197,130,126, 97, 7, 71, 95,135,231,191, 14,159, 16,228,213, 53, 28, 31,195,122,237,124,215, 99,232, 79,160,191, 5, +233, 21,232, 62, 9,221, 21, 72, 87, 92,129,255,140,141,238,251,191, 3,235, 31, 35, 55,223,128,252, 30,228, 45,232,128,144, 23, + 34,158, 15, 79, 69,182, 32,131,181,160,165,238,114,234, 5, 22,102,106, 20, 83, 54,156,237,198, 44,127, 70,103,115, 21,221,238, +255,167,235,221, 98,109,203,210,251,174,223, 55,198,152,115,174,125, 57,183, 58,117,239,174,238,118,119,187,219, 54, 77,219,177, +163, 36, 68,113, 68, 98, 19,130,148, 60, 32, 2,146,133,184, 8, 9,161, 32, 33, 4, 88, 8,241,128,242,196, 59, 32,241,130, 16, +138, 20,204, 67, 0, 33, 8, 82, 2,137,130,131, 37,156,142,113,140,237,166,239,238, 91, 85,117,117,213,185,238,203, 90,107,206, + 57,198,248,120,248,190, 49,231, 92,187,154,150,142,186,251,212,169,179,247, 94,107,174, 49,190,203,255,255,251, 63,129,233, 57, +242,199,127,213,125,230, 31, 88,193, 81,247,118,153,215,131,119,233,201, 58,249,154, 97,255,119, 64, 46,173,107,215,111,194,248, + 2,222,171,148,111, 31,200, 63, 62,242,162, 40, 47,179,112,200, 22, 61, 31,150,247, 84,137,222, 5, 73,176, 6,188,197, 77,118, + 64, 39,129,240, 48, 33,103,193,100,228, 31, 29,169,223, 58,146,255,104,100,254,225,204,109,132,253, 12, 71,159,196,198, 8, 23, +189,185, 13,115,241, 31, 93,160, 70, 89, 94, 2,223,245,216, 31,246,223, 11,143,122,239, 22, 12,114,115, 57,192,163, 12, 79, 71, +219,171,231,128,233, 0, 20,138,243, 88,135, 51,232,174, 11,241, 73, 33,124, 2,228,245,158,240,165, 68, 55, 85,238,253,254,158, +114,157, 41,157, 29, 52,199, 54, 80,217,238,178, 67, 19, 96,233, 50, 14, 94, 60,205, 34,167,227, 62,255, 76, 28,139, 23, 25,199, + 74,120, 49, 33,103,137,244, 94,132, 20,236, 98,127,109,176,215,233, 50,144,254,108, 37,255,239, 47,145,215, 65,250,106, 76,251, +122, 26,118, 17, 60,189,164,206,246, 58,116,237,194,150, 19, 11,237,210, 41,213,226,216,129, 40, 72,169,166,253,208, 59, 84,186, +147,237,103,221,228, 88,175, 56,217, 69,248, 67,155,105,111, 71, 2,178, 97,210,235,250,251,106,221,135,212,181, 67, 89,214,168, + 42,196,160,107,124,176,174, 48, 23,113,113, 34,149,197, 57,162,110,194,182,241,173,137, 69, 37, 84,134,100,218,157,118, 14,217, +247,215, 56,105,118,184,205,213,206,133,164, 74,212, 74,143, 46,106,245,217, 59,254,122,167,171,172,170, 76,181,122,238, 66,203, +115,223,164,223,169, 46, 74,253,229,215, 18, 20,104,175, 65,110,161, 42,186,138, 93,219,235, 88,253, 66, 47, 77,139,147,109,222, + 89,163, 59,136, 82,180,166,167, 6,170,199,126,134,197,238,230, 96,153,170,228,253, 53,189, 42, 12,231, 72, 76, 72,215,163,135, + 91,170,102,170, 68,123, 33, 99, 34, 12,103,232, 60,219, 8, 57, 23,168, 19, 53, 68,155,108,108,138, 23,105, 35, 32,116,137,147, +173, 63, 65,149,221,152, 0,193,233, 72,210,246,205, 13, 72,163,235,101, 27, 54, 41,150,237,217, 10, 75, 58,158,137,183,162, 4, + 98, 55,208, 13, 3, 33, 38,198,108,157,180,120,193,161,101, 21,152, 44,206, 13,109,223,115, 88, 38, 46, 13,214,228, 8,248, 5, +150,100,130,182, 30, 77,137,105,154,236,117,148,192, 92, 50,101,158,109,181, 81,170,137,235, 54, 72, 92,221, 96, 12,131, 64,138, +137,152, 58, 23,214,153, 96,174,117,219, 39,101,221,118,159,237,235,172, 32,186,174,118, 54, 41,109, 34, 66,149,232,145,223,234, +137,130,174, 92, 79, 59,106, 42,246,231, 66, 36,196,224, 4,193, 74,205,198, 55, 8, 49, 34, 77,125,175, 74,206,197, 39, 1,246, +169, 12,209,179, 0,156,149, 95,171, 17,231,162, 8, 97, 56, 35,229,106,118, 13,149, 96, 35,200, 90,233,124,127,165, 45,234, 83, +214, 56, 68,169,129,144,172,210,108, 63, 96,108, 10,207, 32,132,110,176,221,210, 56,115,116,196, 93, 16,243,180,207, 42, 36,205, + 4,133,189,143, 88, 74,182, 70,247,178, 6,204,114, 44,156, 11,244,157,165,129,233,101, 66, 30,236,208, 65, 32,216,155, 36,231, +189,167,130,121,213, 60,184,118,255, 38, 91, 39,125,168,214,142, 22,224,105, 71,252, 97, 64,190,209,161,159, 15,240,240,104, 54, +184,177, 66,254, 49, 92,249, 73,253, 90, 68, 62,135,137,158,222,122, 19,206,238, 91,196,172,244,118,129,206, 71, 63,248, 58, 59, + 85,195,153,135,208,236,124,190,117,180,246,102,206,232,126,143,236,175,205,236, 45,193, 47,113,151, 85, 87, 59,121,116, 95,236, +251,172, 30, 86,210,139, 5,154, 68,129,239, 30,224, 79,191, 10,151,127, 2,230, 31,122,190,124,177, 40,218, 58,217,197, 46,172, + 17,184,227, 87, 96,124, 9,247,126, 17,184, 5,253, 33,250,116, 66,191,115,164,124,112,224,230, 86,121,166,129,253,108,251,192, +236,135,217,208, 0, 38, 98, 62, 97,153,221,250,218, 0, 59, 10, 41, 6,194,227,132, 60,238,236, 95,120, 94,169,207, 50,249,233, +204, 62, 87, 94,102,235,204, 75, 59, 25,252, 71,142,254,247, 84,255,224, 22, 86,196, 46, 55,126,250, 62, 22,184,181,165,183, 60, + 48,111,168, 76, 21,233, 97,232,225, 85, 87,188, 30,102,181,177,163, 23, 31, 45, 87, 62, 6, 19,228, 61,248,250,145,112, 30,137, + 15, 58,228,149, 68,248,249, 11,186,163,114,255,171,123,242,177, 90,224,139,152,210, 63,248,158,119, 59,102, 95,156, 10,178, 73, +145, 58,101,128, 44,159,235, 42,112,244,196,188,238, 54, 19,158, 79,200, 46, 18,207, 45,242, 86,135,132,188,115,134,254,224, 22, +126,225,156,240,245, 35,245,199,123, 99,220, 15, 66, 56,110, 14,214,176,233,216,189,232, 24,156, 19, 51, 42, 39,225, 33,213,221, + 37,217,104,199,164,168,222,137,182,236,128, 37,208,215,179, 11,182,180, 16, 87,177, 47,191,181,166,173, 84,255, 92,171,132, 83, +139,146,239, 70,181,165, 82,149,214,197,213, 69, 64, 37,226,148, 65, 93, 39,145, 49,232, 18,164,104, 77,191, 44,219,235,224,234, +229,172,186, 6,164, 86, 59,107, 26,118, 53,169, 57, 66, 6, 10, 41, 4,195, 52,251,159,151,176, 58, 75, 16,232,180,218,216,221, + 69,113,147,218,133, 94,100,221, 41, 27,190,214,252,245,145,192,188, 88,197, 86,204,109, 92,176,170,237, 82,210,147, 12,243,232, +254,117, 9, 86,148,196, 77, 39,187, 4,162,196,132,226,226,184, 82,125,132,236, 1, 37,197, 59, 64,173, 72,181,208,141, 26, 58, + 66,151,176,102,219,160, 35, 18,173, 59,173,227,222,153, 26,137, 20, 19, 12, 3,117, 60, 90,199,158, 11, 85,102, 36,117,132,212, +129,118,212,108,151,154, 53, 5,137, 24, 59,223,233,250,165, 18, 76,175,100, 5, 85, 65,213, 46,233, 37,145, 82,215,212,175,234, + 43,207,181, 99,151, 37, 12,163,234,221,100,239,187,197,129,141,222,219, 56, 59,165,142, 16,123, 38,167,185,209, 24, 7, 14, 96, +161, 5,205,184, 18,156, 37,166,212, 39, 23, 65,238,176, 28,154,155, 34,210,197,142,216,245,182,247, 46, 54,162,202,192, 60,205, + 94,228,172,147,132,186,201, 34,208,205, 52, 46,132,104,254,249,152,236, 57, 41,229, 14, 5,174,126, 92,144, 80, 55,188,252, 13, + 97, 78, 54, 43,131,208,188,234,162, 11,114, 57, 0,187,126, 48, 97,121,173,116,201, 96, 49, 99, 45, 28,166,145, 50,142, 14,189, +113,198, 65,215, 45, 69, 74,174,166,226,215, 90,156, 56,106,161, 47,185, 20,242,116, 68,170, 18, 37,216,212, 34, 37, 82,242, 61, + 66,212,194,121, 4,145,196,160,133,169,216, 11, 33, 46, 46,201, 62,126,145, 32, 20, 73, 84,169, 11, 53,202,192,133,182,223,203, +125,100,154, 10,211, 92,104, 5, 67,169, 48, 23, 37, 72,229, 92,108,135,129, 7,173,133, 98,190,236,131, 79,117, 45,197, 72,184, +168, 74, 31,148,184, 87,139,184, 44,222,229, 14,246,193,209, 32, 75, 26,132,238,149,250, 66,169,199, 64,157, 50, 76,147,137,104, + 34,132, 93, 68,207,123,226,107,129,240,112,103,221,252,177,218, 92,247, 38, 83, 63,152,209, 39, 5,190, 94,145,223,141,200,195, + 61,132,175,195,179,201, 78,188, 93,180,121,103,136,200, 89, 7, 15, 2,124, 50,193,219,157,159, 46, 56,197, 78,225, 70,224, 71, + 25,158, 9,122, 13, 60, 10,240,122, 92, 85,155, 13, 85,151,196, 4, 98,183,110,200,153, 10, 92,249,102,224,137,130,142,200,151, +126, 5,202, 45,148, 23,158, 45,127,176, 75, 93,111,253,239,115, 1, 96,253, 8,230,119,161,123,211,126, 79,191,142,222,188,128, +239,102,234, 31,237,153, 94, 78, 60, 15,112, 61, 25,100,166, 20,139,189,204,108,172, 81, 69,204,218,222,146,182, 16, 82, 80, 6, +133,238,126, 36,188,218, 27, 1, 39, 11,245, 42, 83,158,204,228,219,204,173, 26, 87,125,159,173, 88,104,147, 91, 41,107,199,219, + 59, 75, 97,241,102,103, 63, 69,167,138,244,209,170,226,164,200,189, 72,188,215,209,189,200,164,170,140,213, 44, 96,187, 4, 53, + 8,251,227, 74, 85, 44,197, 10,193,171,201,182, 21,114,149,121,248,213, 3,114, 63, 18,126,225, 18,121, 99, 32,126, 25,250, 27, +229,225,119,247,212,162, 92, 1, 7, 17, 39,202,157,100,165, 16, 88,106, 68, 31,175,174, 76,240,120, 39, 0, 72, 93,188,116, 84, +232, 50,214,173,239, 2,210, 7,194, 16,224,222, 17, 62,115,137,124, 98,135,190,156, 8,127,225, 62,241,191,158, 96,151,221,116, +111,185,228,155,245,243,230,114, 48,109,195,208, 40,133,171,190,103, 25,249, 90, 97,161, 39,252,244, 59,167,237,154, 64,184,137, + 29, 19, 86, 20,106, 46, 91,229,173,189,206,167, 35,119, 57, 9,150, 17,223,187,139, 10,162, 1, 77, 66,210,178,184, 38, 40,117, +241,131, 47, 26, 32,100, 9, 41,218, 42,203,181,165,134, 45,113,158,235, 48,183, 20,124, 82, 35, 72,138, 4, 85, 82, 45,118, 54, + 86, 83, 35,119, 18,108,100, 25,212,249, 9,149, 36,202,173,130,207,206, 78,134,185,230, 97,111,113,183,186, 92,202,141, 11, 81, +165, 69, 28,183, 97,133, 46,187,249,246, 60, 71,239,202,113,151, 95,216,108, 44,172,153, 73, 62,114, 45, 70, 21,243, 73, 87, 43, + 32, 45, 90,180, 50,249,206,190, 11, 21,173, 35,185, 36,159,134,219,154, 51, 68,199, 91,215,130,206, 35,117,151,168, 2, 93,215, +219, 69, 55,103,114, 41,134, 14,157, 70, 66,204,132,212,147,186,193, 5,124,246,208,212, 50,251,207,100, 78,129, 20, 2, 85, 12, + 35,172,165, 16, 81,119, 40,201, 42, 6,245, 11,253,132, 98,232,107, 8,245,243, 95, 54,197,207,106,199,112, 17, 97, 35,244,133, + 72, 12, 61,161,235,144,216, 83,180,146, 75, 89,162, 99, 43,117, 51,122,111,104,216,182,191,174,104, 72, 75, 17,215, 16,179,150, + 79, 94, 23, 56, 76,138,137,212,119, 16,133, 60,102, 11,101, 17,131,204,148,121,242,142,185,110,188,255,107,112,202,154,198,102, +190,242, 16,147,209, 36,107,246,148, 56,255,190,234, 70,212,162,219,156,144, 85, 28,217,170,254,224,250,129,182,222,169,181, 16, + 98, 34,164, 14, 81,216,197,200,253,251,247,144,110, 96,154, 38, 74,173,204,170,148, 60, 49,231, 66,153, 51, 81,108, 45, 91,169, +148,108, 1, 62, 49,217,106, 32,249,190,188,106, 37, 16,208, 16,188,179,159, 77,232, 60,236, 8, 93, 34, 87,101, 60, 28, 72,103, +154, 73, 49,114,214, 65, 41,202, 49, 22,139, 24, 45,190,191,114, 49,213, 81,125, 21, 90,149,218, 71,178, 4, 68,103, 84,133, 33, + 24, 26, 83,231,130, 20, 72,233,140, 24,111, 57, 23,245, 61, 88,165, 6, 56, 19,229,204, 61,185, 81,108,212,154,130,125,160, 26, +184,100,170,166,156,190, 81, 97,168,112, 62, 41,195, 97,166, 83, 37, 14,160, 15, 88,103,161,213,104, 28,122, 93,201, 7,101, 76, + 1, 21, 37,244,129, 46,122,108, 67, 12,118, 74,158,187, 89,118,244, 98, 32, 84,106, 84,116, 7,245, 21, 19, 2,113, 25, 76,189, +254, 12,244,104,102, 15,153,252, 65,232, 33, 12,138,148, 64,232,147, 77,191,251, 96,151,249, 92,225,170,160, 79,170,157,198,103, + 98, 13,254,212,153,167,171,110, 20,197,183, 10,151,222,114, 30,109, 70,173, 30,251, 41, 47,129,111,140,240,239,189, 1,195,167, + 97,255,129, 95,230, 51,212,209, 60,248, 76, 38,209, 15,175, 64,184, 7,183,191, 9,211, 75,184,252, 83,160, 63, 66,231, 31,194, + 7, 25,253,214,145,242,254,129,155, 12, 47,171, 48,218,121,195, 84,151, 4,223,165, 19, 45,155, 14,181,177,162,135, 0,103, 10, +241,161,199,142,122,252,153, 62, 49,206,251,177, 8,147,192,232,253, 77, 81,187,172, 60,216,207,238,136, 96,250,207,157,172,246, + 40,252,245,180,150, 41,192,224, 2,204, 7, 61,225,237,129, 97,154,185,189,205,220,102, 27,195, 86, 3,198, 49, 58, 16,170,115, +156,255,236, 31,176,235, 0, 93, 23,232,159,102,228,247,142,244,247, 58,228, 11,103,200, 39,122,210, 47, 94, 48, 28, 42, 15,222, + 59,154,128, 73, 12, 65,154,235,218, 1,167, 53, 55,229,164, 51,113, 30,132,141, 88,239, 28,116,234, 59,246, 3,144, 70,219,175, +203, 16,237, 87, 23,209,157, 32,239, 60, 66,138,160,159,129,240,103,238, 81,127,235, 37,242, 72, 33, 7,100,170, 54,170,222,100, +137,107, 93, 55, 53, 49,194,176,137, 24, 61, 73,103,243,248,209, 37,116,124,129, 92,164,211, 97,106, 27,157,120,229, 18,217,116, +246, 85, 79, 76,110,178,165,172, 53,122,218,242,255,195,186, 50,113,129, 85,148,202,224, 48, 21,203,241, 86, 36, 52,120,145,120, + 84,100,195,160,174,214, 31,226, 70,168,231, 54,170, 22, 13, 26,124, 50,100,182,159, 0, 69, 73,126, 25,196, 54, 2,199, 58,224, +157, 27,187, 67,206,156, 73,165,136,145,232, 50,171,216,173,141,198,131, 26,146,182,222, 65,165,136, 95,236, 81, 54, 89,230,178, +138,234,216,224, 99,131,172,100,191,197,219,173, 44,172,247,186,132, 90,215,165,219, 87,169,174, 36,151, 69,127,144,117,229, 62, + 12, 1, 83,103,235,186, 94,137,213, 61,212,162, 84,157, 45, 42, 54, 68, 66,133, 97,119, 78, 77,133,227, 60, 34,206, 50,215,106, + 88,238,160,213, 0, 40, 33, 57,134, 86, 23,236,109,140,105, 65,222, 74, 8, 22,108, 85, 11,193,195,119,216,234, 10,228, 84,192, +185,237,146,131,216,243, 19,116, 77, 12, 83, 9,171,114, 94,162,237,133,131, 5,181,132,216,249,229,104, 41,117, 21,239,130,203, +230, 66,119,253, 84, 91,234,139,248,216, 61,207, 70, 77,107, 19, 51, 87, 99,218,235, 31,232, 59,183,176, 21, 37,231,188, 52, 35, +243, 60,129,110, 80,171, 34,190,191, 95,217,235,226, 46,171, 16,147,217,237, 98,240, 46,120,237,191, 91,110,124,115, 18,168,224, +168,241,184,136,219,194,170,100,217,192,130,236, 12, 61,239,122,206,207, 47, 8, 41,129, 42,187,174,163,219,237,184,158, 38, 14, + 57, 51,205, 19,243, 60, 51,231, 12, 57, 47, 59,247,230,188,176, 58,185, 56, 16, 52,210,133, 72, 28,118, 75, 94,122, 6,234, 52, + 50,132, 72,127,126,142,246, 3,251,227,145,227,237, 21,121, 28, 73,247,165,144,212, 62, 60,115,176, 17,121, 86,165, 68, 33, 19, + 32,218,135,245,166, 40, 47,139, 85,249,147,135,193,207,193,132, 42, 69, 33, 82,173, 59,158, 71,226,249,125, 46,206,118,212, 82, +108,151, 50, 91,135,126,233,190,245,234, 56,189,132, 44, 73, 71,147,218,225, 16, 16,166, 42,116,106,168,212, 89, 34,247, 66, 34, + 74,161,237,255,169,213, 46,230, 93,183,158,178,157, 11, 18,212, 41, 67,168, 69, 23,166, 72,184,223, 17, 30,196,133,239,222,210, +180, 24,128,135, 54,230,210, 92,208, 23, 51,229, 69, 70,231,106,115,192, 24, 8, 93, 48,241,252, 25,232, 99,129, 71, 98,176,154, + 25,184, 26,209,155,138,126, 56,163, 71,181,244,178,123, 29,225, 97,176, 19,111, 44,200, 21,107,200,112,241, 54,175,141, 37,230, + 66,125,153,209,209,124, 97,225, 3, 37,124, 54,194,151,127, 30,142, 87,144,111,188, 18, 24,237, 82,215,217, 78,189,152,160,251, +164,117,241,227,247,253,146,239, 97,254, 14,124,116,128,111, 78,148,111, 31, 56,222,204,188,116,225,218,177,192, 92,215, 28,226, + 70,245,138,209,212,189,169,241,230,253,215,160,102, 45,147,203,132, 92,118,118, 88,238,161, 94, 21,242, 77,101, 18, 49, 72,203, + 98,225, 20, 74, 59, 36,106,165, 74, 32,121, 16, 78, 39,246,126,196,212, 22,246,109, 73, 29, 44,156, 39,221,192, 43,129,240,169, + 68,124, 47,210,213, 98,121, 3,115,195, 30,194,121, 7,215, 94,148,132,141, 45, 44,136,112, 19,220,180,240,193,145,240,187,145, +116,158,144,119,122,228,157,129,244,229,202,110, 84, 30,124, 52,217,197, 30,173,174,219,118,201,203, 1, 16,100,109,153,101,131, +254,188,147, 42,169, 62,205, 40,246,206,144,110, 10,242, 98, 38,116,126,176,221, 75,232,195, 91,228,254, 99, 36, 62,133, 95,189, + 71,252,135,123,184, 81,116, 23,168, 59, 69,167, 53, 41,203,101,249, 39,221,118, 23, 45,246,119,210,211, 38, 58,108,114,202, 79, +149,250,121, 99,199, 88, 11,145,213, 66,237,226, 52,221, 50, 26, 87,119, 6,213,231,218,245, 39, 68,101,121,196,231, 22,185,186, + 11, 91, 37,248,218,217,108, 7, 82,186,217, 0, 44,246,101,133, 16, 43, 90, 44,221,173,253,153,234, 0,148, 66, 64, 84, 8,222, +253,203,182,252, 16, 67, 54, 95,116,173,211,183, 68,171,189,174, 98,220, 37,161,178,145,224,196,214,137, 56,136, 40,159,136,251, +172,139, 23, 2,157, 88, 26, 99, 27,217,139,174,221,185,178, 30, 57,181,217,183, 60, 72, 67, 92,100,105, 1, 45,234,239, 64,117, +120,146, 80,125,212,189, 20, 50, 21,102,207,119, 24,188,151,208,101,108,219,178,100, 3, 90, 10,146, 71,164, 63, 71,131, 9,185, +134,152, 80, 44, 99, 67, 84,140,150, 86,138, 65, 82,202,228,108,245,176,174, 41,162, 77, 88,230,227,100, 26,202,152,252, 11, 5, + 19,234,233,102, 97,125, 34, 12,213, 77, 0,143,108,162, 86, 29,162, 83, 27, 48,200,226, 97, 67, 76,254,111, 6,231,145, 71,143, +252,245,253,184, 83, 56, 75, 46,182, 38,104,232,217, 86, 96,106,181,233, 71, 23,169,217, 60,251, 18,172, 35,181,101,122, 93, 24, + 18, 11, 28, 38, 6,202, 56,217, 62,217, 71,209,117,206, 62,206,175,190, 82, 98,237,250,217, 16,232, 98, 48,113, 92,140,214, 89, +107,221, 68,208,110,199,244,226, 48,173,136,196,184, 38, 24,214,109,145,184,134, 35,197, 20, 57, 31,118,220,191,184, 36,118,157, + 23, 60,129, 26, 19,207, 14, 7,174,110,110, 25,199,163,237,156,155,215, 60, 69, 74,173, 76,227,209,206,200,216, 17,186,110, 89, + 83,132,109,108,107,203, 90,207,217,113,187,145, 57, 4, 14, 55, 87, 76,251,189, 71, 3, 67,186,223, 53, 69,189,146,188, 18,110, + 69,126,145, 98,163,143, 40,156,163,220, 19,225, 16,148,105, 80,142, 53,112, 28,179,225, 11, 43,196,208, 89, 10, 79, 85,130, 22, +186, 24,152,242, 68, 71,129,104,147,229,179, 8,179,151,127, 70,251, 82,180, 90,230,118,231,251,176,200, 42,242, 40,130, 9, 6, + 58,251, 97,232,234, 26, 47,185,235,224, 44, 89,121,191, 87, 66,174,244,101,178,197, 94,159,144, 92,145,162, 72, 19, 47, 61, 76, +182,187,174,117, 25,167, 72,239,158,210, 51,129,235,136, 30,142, 86, 8, 4, 1,177, 7, 43, 92,118,200,131,132,184,221, 76,231, +140,238, 21,189, 42,232,211,140, 30,124,192,248, 48, 32,143, 58,120, 45,192, 78,208,235, 10,123,108,196,124,230,153,239,197,243, + 86,247,118,250,105, 1, 61,216, 56, 74,178,192,139, 10,191,254, 25,224, 21,152, 95,216, 37, 46, 25,242,232, 72,220, 98,187,252, +248,134,141,218,143,255, 0,174, 95,192, 43,159, 3, 62,128,155, 23,240,157, 76,253,218,158,249,201,129,171,201,226,230, 75,105, + 89,189,235, 5,149,252, 12,239, 69, 40, 98,187,208,222,119,233, 22,247, 42,196, 62, 16, 94,237, 44, 66, 21,165,190,156,169,207, +179,141,143,196,189,227,109,116,186, 81,117,215, 24, 76,112, 23, 86,213,122,140,178,162, 31, 27, 98, 80, 34,240, 22,232, 75,228, +124,132, 55, 7,226,227,145,243,155,153,123,179,114,136, 54,181,153,171, 29,130,247, 59,184,153, 87,207, 58,213,104,115, 41,155, +122,127, 80, 37,254,224,136,252, 65, 36,222,143,200,163,142,240,133, 51,186, 91,133,223,171,232,203,153, 26,101, 73,200,107,187, +224,185,248, 7,243, 20,125,110,135,153,108,206, 21, 93,183,137,234, 2,153, 89, 77,233, 31,174, 39,194,185,165, 36,201,187, 9, + 94, 13, 6,238,223,125, 26, 57,255, 22,225, 95,187, 64,255,179,153,250, 86, 68,118,192,148,215,233, 94,105, 4, 41, 7,187, 84, + 27, 15,246,193, 62, 31,249,206,126, 93,151,148, 85,189, 99,241,221, 64, 49, 62,166,132,210, 69,214,108,219, 32,239, 40,117, 19, + 68,180, 32,189, 78,151,136, 90, 87,201, 80, 69,233,162, 9,190,212, 69, 69,232, 10,173, 89,194, 86,188,208,219, 2, 62,107, 86, +162, 47, 37,117,113,180,123,113,224, 23,140, 84,231,108, 55,160,138, 4, 39,194,217,175, 42, 74, 46,149, 94, 76,244, 54, 85, 56, +186,154,123,141, 10,117, 15,185,251,182,163,197, 4,120,126,185,189,247,139, 82,190,178, 56, 84,194,230, 53, 43, 62, 89,138,209, + 62,186,115, 11,180,145,200,236, 29,170,111,209, 9, 81, 72, 90,209,160, 11,100,170,250,131, 19,212, 60,246, 85, 54,238,172, 70, + 55, 12,230,163,111,113,187,165, 90, 16, 77, 46,222, 13, 78, 19,210, 13,132, 52,160, 33, 33, 90,232, 98, 36,207,147,123,155, 35, +210, 37,136,113, 21,135, 57,114, 48, 68, 43,254,141,123, 94,124, 29, 82,150, 56, 88,139,122,209, 37, 73,254, 84, 52, 39, 27,217, +219,122, 29,158,228,159, 72, 32,132,100,217, 26,186, 78,117,212,187,254,208,246,248, 40, 85,220, 10,233,223, 71, 27, 59, 45, 95, +165,130,116,209,237,224,237,235,234, 29,235,122,219,215, 71,250,174,183, 88,213,108,194,182,138,146,231,121,121,129,151,213,142, +171, 71, 23,200, 17, 45, 8, 37, 46,232,218,186, 86,142,171,213,110, 99, 53, 51,117,122, 92, 86, 0,237,239,194,119,254, 45,252, + 37, 70, 11,148, 73,169,115, 52, 65, 38,134,200, 49, 20,174,110,111,217,223,222,216,174,223,197,116, 33,218,251, 54,151,108,241, +179,197, 61,243,213, 86, 25,169, 23,162,116,166,154,175,149, 60,207,238, 54,146, 37, 66,247,118, 28, 25, 15, 7,234, 60, 45,254, +123, 17, 33, 37,130, 31, 88,149,168,106,202,203, 32,203, 62,170,248,135,182, 79, 66,170, 74, 95,172, 58, 63, 14, 61,251, 25, 38, +175,234,164, 15,104, 13,110,150, 55,196, 30,243, 68, 9, 22, 43, 56,136, 24,215,188,147,101, 47, 89, 16,106, 88, 67, 19,162,239, +180, 58,169, 12,213, 71, 99,231, 59, 87,147, 58,147, 60,138,181,101, 93,242, 79,106, 65,206, 35,177, 8,122,125, 52, 97,138, 70, +179,149, 5, 65, 30, 13,200, 59, 59,163, 36, 29, 42, 39,124, 66, 13, 32,197,254,206,203, 72,144, 1,121, 92,151,110, 77,186,128, +188, 18,145,251,166, 24,172, 31, 77,232,203,217, 46,245,209,253,244,247, 13, 38, 99, 94, 61, 27,171,215,131,192,222, 81,160,169, + 34, 93,112,159,142,127,114,179,218,218, 96,116, 27, 66, 47,240, 3, 69,126,177,135,207,254, 52,220,222,154, 32,142, 12,249, 96, +106,251,166, 64, 11,103,144,222,132,227,223,133,247,191,141, 78, 3,242,166,192,248,125,244,195,138,254, 96, 36,191,119,228,112, + 83,121,137,112,204,106,233,105,173, 32, 95, 1, 91,110,171, 88, 3, 28,108,108,105, 68,185,190, 64,119, 47, 33,175, 59, 22,246, + 80,225, 89, 70,111,138,121,209, 89,248, 8, 11,155,193,215, 66, 86, 20,248,230, 67,219,133,152, 86, 48, 13, 17,211, 42,196,100, +150, 60,122,216, 61,133,183,247,132,215, 7,250, 39, 19, 23, 47, 38, 6,177,172,243,105, 90,239, 36,113, 75,101,213, 53, 26,119, + 44,112, 59,155,103,190, 27, 11,241,155, 71, 43,198,254, 88,128,139,142,248,115,103,112, 44,156,125,109, 79,190,202, 75, 67,107, + 59,107,219,207, 22,189, 75,223, 58, 85,169,109,108,204,171,213,204,245,126, 33, 8,221, 94,137, 47,102,106, 23,145, 15, 39,228, +135, 17,125,253, 71,200,163, 63, 7,220, 71,126,249,155,132,223,219, 19,254,254, 1, 62, 19,169,103, 21,142,198,147,214, 98, 93, + 69,187,208, 93, 19, 68,236,132,110,182,139, 46,111, 78,184,186,193, 85,126,124,153,126,138,120, 93, 67, 90,196,135, 69, 13,253, +186,118,164,139,159,189, 52,199,154,218,229,220,198,222,245, 4,143,109,105, 85, 94,128,176, 92,168,235, 14,191, 29,124,213,213, +127, 90, 65,114, 93,121, 3,181, 41,134,117,179,247,182,231, 36, 44,186,123, 89, 28, 26, 22, 27,106,127,235,132, 85,147, 41, 42, +193, 71,145,121, 93,214, 47,108,238, 6, 78,105,100,192, 90, 79,147,222,178,158,178,219, 41, 75, 40,157,123,230,253,242, 85,187, +139,138, 4,183,149,217,235,150,212,222,119, 75,108,172, 20,255,203, 27,222,216,194, 61,236, 66, 79,205,109,232,120,233, 40,167, +233,114,213, 15,105, 91, 35,136,115,218, 65, 74, 38, 78, 19, 33, 14, 22, 33,234, 62,237, 24, 34,101, 26, 77, 56,215, 50,161,187, +100,168,235, 90,150,213,135,230, 66,205,121,157,203,108, 39, 6,109,236, 46, 97, 9, 2,218, 22,181,117,219,183,183,128, 23,115, +178, 59,127, 60, 25, 53, 79, 45, 97,143,208,138, 49, 35,170, 25, 73,206, 59,104, 79, 39,115, 37,182,147,221,116,241,129, 75,244, + 46,116,154, 86, 37,253,162,184,247,207, 93, 85,179,120,117, 29, 69,132,113,154, 55, 23,185, 46, 28, 21, 90,240,139,132,211,120, + 94, 23,175, 53,251,152,169,221,117, 25,255, 47,118,181,229, 51, 97, 85,158, 46, 1, 48,155, 88, 88, 17,251,123,220,206, 29, 61, + 41, 47, 5, 11,175,169, 34,140,121,102,158,247, 76,165, 80,202,140,180, 4, 54,199,230,206,165, 80,219,186, 96,153,154, 52, 40, + 78,165,228,138,138,141, 38,139,255, 76,120, 12,108,174,133,105, 26,169,211, 4,181, 18,150,131,213, 83, 68,195,152,208, 82, 9, + 85,156, 0,101,214, 48, 5,106,168,134,134,213,134,206,244, 39,176, 20,186,243,196,174,235, 72,197, 46, 69,213, 76,150, 64,191, +235, 41, 65,232,181,208, 7, 27,105, 73, 48, 42,153, 0,169,197, 57,122,151,158, 55,163,224, 22,127, 73,123, 44,165, 67,134, 51, +228,184, 55,156, 98, 3,169, 15,131,221, 28,209, 80,172, 60, 8, 72,202,118, 84,185,162, 72,187,136,220,235, 9, 63,117,102,135, +220, 17,187,236,131,213,232,198, 20, 87,191,157, 76, 40, 38,175,247,107,254,250,253, 96, 93,126, 48, 23,173,126, 48,219,197, 92, + 4, 46, 20,238,153,141, 79,162,237, 14,234,161, 34,135,201, 70,246, 23, 62, 65, 8,174,108, 45, 98,130,132,169,174,126,170, 32, +118,217,139,129, 1,228,165, 34,255,210, 39,160, 94, 66,190,246, 55,224, 96,151,123,157,124,197,144, 44,165,174,124, 27, 62,250, + 38,250,141, 10, 95,126, 8,241, 37,250,209, 1,222,203,212,247, 70,202,237,200, 53,112,157,197, 59, 82,179,108,205,254, 97, 73, + 11,210,209,209,153,193,208,153, 45, 98,118, 0,118, 9,226,163,142,240,176, 55, 95,227,237, 76,125, 81,168, 83,101, 18, 28,130, +209, 44,246, 74,104, 0, 48,223, 13, 23, 63,231, 67,241, 76,122,245,203,189,108, 88,167,109,236, 39, 15, 32, 62,128,183,174, 8, + 63,125, 78,120, 58,114,126,152,185,172,202, 53,194,209,239, 40,241, 75,167,147,213, 91,219,169,173, 21,142, 5, 98,134,151, 9, +210,205,140,124,125, 79,255, 56, 34, 95, 56,131, 87,122,226,207, 92,210, 29,149,139,111,236,157,144,104,113,194,234,167,191,108, +156,183, 69, 87, 15,121,106, 69, 73,219,173, 53,225, 88,219,195,183,172,118,132,116, 91,144,243,153, 48,116,200,147, 10,207,110, +225,149,167,208,253, 37,232,190, 68,248, 55,254,123,194,223,251, 67,244,208, 33, 59, 19,205,233,180,138,204,234,221, 64,151, 2, + 93,244, 47,146, 27, 43,109, 67, 50,228, 99,121, 26,126, 80,182, 36,173,211, 63,113,194,232, 14, 62,185, 89,212,240,101, 3,249, + 88,185,227, 84, 57, 77, 29,116, 1,220, 26,116,177,218,156,138,114,199, 15,109, 63, 84,208,181,103,207, 91, 49,150,174,175,163, + 58,162, 54,251, 20,161,101,116, 71,183,154, 37, 87,191,183,159, 67,151,236,241,246,122,212, 13, 15, 94, 22,101,123,243, 24,207, +155,188,239,178,185,180, 54,132,224,213,246,180,233, 92,149,150,196,229,197,100, 41, 36,196,158, 11,132, 81, 5,157, 43,147,159, +145, 89,197,206, 80, 17, 7,244,216,103,174, 84, 22,164,234,150, 77,166,136,229,107, 96,128, 29,109,197,112, 43,218,188, 35, 52, +165,183, 18, 36,179,243,177,244, 56,207, 11,194, 52, 72,132,190, 51, 65, 97,206,238, 44,240,229,200, 38, 66, 85,182,188, 8,217, +128, 98,238,132, 4,109, 83,208, 44,209, 48, 44,144,154,144,210, 26, 68,228, 59,242,160, 38, 96,140,169,179,221,184, 8,115, 41, +140,243, 76,158, 70,247,214,215, 69,240,216, 62,104, 33, 8,244,189, 23, 31,171, 40,205, 10,206,234, 3,115, 75, 86,236,251,158, +216,155,154,126,154,102, 71,242,138, 49, 11,220,163,170, 57,175, 29, 64, 91, 47,137,119,220,206,124, 15, 33, 46, 48, 24,221,236, +224,106,243,150,139,239,252, 84, 54,150, 59,143, 60,197,252,153,109, 36,110, 26, 8, 97, 8,194,217,238,140, 28, 34, 55,227,200, + 52, 30,172,216,241,203, 95,162,189,118, 5,152,243,236,142, 5, 93, 53,184, 27,203, 96, 69,125,165,146,109, 4, 47, 6, 38,210, +220, 50,225,179,157,213,169,115,241,236, 54,171, 93, 73,242,231, 3,242, 52,192,147,100,203,198,138,161,245,230, 76, 61, 40, 53, +154, 82,122,210,150,188, 38,148, 98,172,217,185, 63,163,140, 7,179, 64,212, 66,223, 71, 66, 85,152, 71,170,147,150,196,167,219, +182,254,142,116, 81,136,234, 24,217,224,187,176, 16,172, 63,143,220, 0, 0, 32, 0, 73, 68, 65, 84,152, 84, 56,150, 74,214, 74, + 23,236,247,228,124, 71,236,122,226,237, 11, 95,222,218, 44, 76,187, 1, 57, 23, 68, 39,123,241,207, 34, 50, 84, 56,219,217, 15, + 54, 43, 66, 36,188,209, 35,175,245,254, 41,206,112, 17,209,210, 33,227,228,251,233, 22,150,110,249,166,114,105,114,109,149, 98, + 41, 56,179, 80,111,205,132, 93,159,101,171,234,206,253, 22, 60,100,116,159,151,169, 6,135,138, 78,106, 10,167,206, 25,208, 55, +138,220, 55,101, 44,147,117,238, 4, 65,179, 34,179, 34, 15, 2, 97,223,193, 31, 78,132,159,233,225,157,119,224,230,104, 35,137, + 90,237, 50, 47,163, 83,227, 58, 11,184, 9, 17,174,127, 31,253,110,133,235,132, 60, 78,176,127, 1, 31,205,232,251, 19,245,106, +102,174,166,143,200, 77,168, 83,237,210, 78,219, 76,233,134, 14,246, 66, 63,138, 29, 84,125,128, 65,148,212, 7,194, 27,157, 97, + 79, 85,109,250,127, 85, 40,199, 74,222,120, 51, 83,180,131, 42,103,150, 72, 89,201,141,254,102, 21,232, 92, 44, 44, 38,119,172, +105, 88, 85, 86,153,154, 36,208, 55,145,139, 39,232,167, 50,241,123, 59,250,167, 51, 23,243, 72, 95,109,106,112, 88,224, 78,171, +162,167, 29,216, 30, 69,204, 88,132,235, 0, 59,148,238,233, 68,248,131, 61,221, 89, 7,159, 78,240, 86, 71,204,231,244,183, 10, +239, 29,144,169,176, 15,107, 8,143, 21,175,174,120,175, 27,160,217, 73, 96,138,156,164, 81,137,223, 26, 85, 97,138,208,205, 74, +188, 45,212,243,140,220,102,228, 22,208,143,140,125,208,125, 30,222,122,139,240,107,255, 62,250,223,222,194,207, 38, 35,180, 29, + 42, 57,183,253,235,170,118,223, 66, 93, 6,177,209,252,220,146,189,234,157,192,150,192,194,180, 61,193,190,254, 36,252,166,167, + 46,182,220,162,182,207, 44, 62, 54, 21,223,109,223,197, 97,110,215, 18,150,165, 46, 75,236,235, 6,127,115, 2,159, 49, 58,164, + 15,119,253,114, 54,122,156,250,200, 93, 28,122,181,118,236,139,210, 88,194,162, 36, 95,173,242,118,168,246,254,231,230,170, 76, + 85, 40,190, 19,173,122, 39,232,165,178,229,161, 46, 5, 69,217,118,160, 77,216, 25,214, 11,173,180,247, 58,250,238, 72,155,207, +219,173, 94,193,236,113,147,194, 88, 42,217, 3,176,114,179,104, 57,146,205,239, 36, 99, 53,180, 68, 52,245,239, 95,130, 11,197, +132, 89,124,188, 95,219,254,222, 5,167,209, 51, 49,170,249,154,205, 52,148,172,187, 78, 25,205,213,163, 93, 87,177, 89, 8,137, + 48,116,238,106,169,126, 49,182, 66, 84,209,208,118,197,193,131, 86,100,249,122, 43, 70,214,254,121, 11, 27, 65,130, 79,250, 92, +208,165, 74,205,117,141,153, 77,182, 87,143, 41,217, 36, 13,152, 75, 49,165,247, 52,218, 69, 94,171,231,139, 87,247,129,251,192, +172,235,237,253,119, 81,100,187,216,150,139,212,239,231, 46,245, 12,195, 14, 66,100, 30,109, 74, 33,209, 21,231,117,182,239,211, +211, 53, 55, 50, 96,179,197,185,125, 13, 49, 13, 0, 14, 14,211,141, 57,109, 83,197, 45,222,214,214,241,171,200,114,226,180,255, + 21,163, 1, 96, 68, 96,151, 18,195,238,140, 41, 4,174,111,175,169,243, 76,148, 96, 40, 96, 47, 17,171, 4, 74,201,228,226,190, +114, 79,124,195, 67, 93, 8,193,190,108, 12, 27, 82,156,117,231,179, 86,166,155,107,202,120, 68,106,117, 77, 64,178,245, 71, 12, + 14, 4,210,101,133,150,194,127,244, 6,204,123,216,223,160, 31,102,248,221, 11,248, 63, 59,120,119, 34,228,137,110, 63, 26,138, + 50, 86,166, 16,184, 21,203, 74,215,121,166, 74, 71, 14,137, 58,103,186, 24,169,177, 67,166,105,121,177,178, 38,227, 94, 43,164, + 82, 9,169, 50, 96,251,167, 40, 32, 73, 40, 33, 80,106, 37,182,180,162,222, 71, 79, 53,210,237, 6,250,121,164,203,217,121,186, + 9,238,157,193,189,206, 72,100,231,103, 72,159, 45,212, 96, 82,120,212, 59,201,202, 78, 99,217, 5,179,139,197,100,251,119,173, +182, 5, 75, 59,100, 31,144,161,160, 23,238,113, 74, 88, 18,219,117,134,155, 74,185,202,112,116,142,187,248, 40,221,253,148,122, + 44,102,163,107,106,197,132, 93,246,131,239, 18,198, 66,185,205, 72,141,132,183, 58,240, 8, 82, 28,154, 98,164, 23, 59, 96,195, + 89,130,144,145,127,253, 19, 80,238,155, 56, 78,171,217,215,202,108,197, 7, 45, 93,229, 77,235,183,175,247,240, 61, 53,107,221, +160,232,143,103,248, 81, 70,127, 52, 81,110,103,227,186,155,110,143, 17,155,190,132,118, 99,232,234,201, 78, 54,245, 50,123, 79, +187,220, 3,116, 5,186,243, 72,120,173,131,157,183,201, 79,103,234,209,187,202, 96, 69, 75,112, 27,210,178,131,212,187,233, 86, +126,104,139, 43,225,179,154,160,112,242,253,139, 84, 83,246,235,193,120,253,225, 53,120,188, 39,188,181, 35,188,123,228,252,122, +226,126, 54, 93,225, 81, 78,119,180,114, 71,188, 86,212,132,123, 83,128,171, 32,116,185, 18, 62,152, 8, 95,187, 37,158, 9,188, +181, 67,222,222,145,126,193,235,130, 15,143,200, 33,115, 76, 54,205,136, 97,221,142,212,176, 65,183,202,102,191,168, 39, 13,204, +199, 46,188, 18,160,238, 51,117, 95,136,185,192, 62, 65,126,110,175,123,247, 26,200,125,194, 95,249,139,232,255,250, 55,209, 23, +230, 91,215, 98, 22,206,188,181,216,137,251,165, 27,229,207,217,250,169, 42, 83,222,172, 49,218,250,187,222,233,142, 27, 99,122, + 51,126, 80, 62, 14,147,183, 67, 95, 92, 21,191,134,175,148,176,109,242,117, 81,114,181,215, 60, 87,159,232,213,109,215,189,190, +102, 77, 45,215,184, 4,205, 51, 95, 89,215,122, 45, 52,165, 46,157,241, 93,125,128, 3,173, 48,166, 58,190,167, 77, 94,232, 76, +165, 50,185, 60,165, 16, 9,162,116,161, 82,171,186, 15,126, 19, 12,162,235,183,216,194,129,182,239, 99,227, 19, 76, 77,112,231, + 35,210,165,106, 68,137,181, 34,161,105, 6,132, 89,132,169,218,247,209,178,230, 23,207,122, 93, 71,181, 13,151,159, 17,170, 8, +157, 88,160, 80,221,168,186,181,182,181,139, 3,108,157,120,102,117,141, 17,206, 12,230, 99,223,108, 37, 64,234,145,100, 80,147, +128, 43,184, 53,155, 39,218, 71,229, 75, 64,149,119,151,161,133, 1,249,104,186,170,175, 53, 54,249,231, 77, 24,183, 92,236,222, + 0, 68, 49,176, 77, 3,142, 5,223, 51, 75,176,241, 51, 33, 81,197,246,197, 69, 33,231,153, 60, 79, 80,243,130, 48, 93,119, 56, +130,148,130,164,100,148, 60,103,128,200, 73,218, 81, 88, 70,241, 73, 2,195,176, 35, 14, 61,199, 92,200,121, 38, 4,219,215,235, + 60,155,142, 43, 37,234, 56,218, 62, 60,218,121, 41, 77,119,224, 48,155,232,239,107,169, 45, 29, 45,218,179,181, 88, 26,101,137, +222, 93, 32, 5,219,108,244,118,161, 7,103,178, 32, 12, 41, 17,186,142,155,156, 57, 28, 15,224,104, 87,137,209, 83,250, 10, 37, + 59, 30,214,167, 17, 18,215,231, 90,189,112,176,232,214,206,128, 67,110, 91, 45,185, 50,229,137, 50,142,148,146,237, 30, 86,161, +150, 66,150, 98,144, 51, 57, 77,198, 11, 64,226,193,111, 26, 56,165,190,135,188,249,159,195,103,254, 30,252,177, 9,190, 61, 32, + 95,191, 64,190,115, 78,250,104,102,120, 54,115,185, 31,185,159, 11,207,146,114,211, 23, 74,151,208,216,145,210,206, 59, 22,179, + 99,148, 90,201,146, 40,209, 84, 90, 85,102, 38, 81, 58,181,125,131,198,134,218, 19, 68, 51,177, 88,114, 91,223,153, 40, 33, 6, + 65, 14, 19,253,229, 64, 87, 38,122,177, 86, 95, 46,206,145,221,206, 60,206, 82,140,253,156, 3,114,123, 64, 59,123, 72, 92,253, +101, 7, 74,209,149,136, 82,163,237,159,230, 10, 41,161, 15, 6, 27, 29, 93,143,232, 7,123,235,186,167,140,142,149,122,171,246, + 6, 84, 19,204,145, 2,225,194, 2, 39,202,213,108, 7,211,130, 35,179, 17,101, 80,108,122,208, 69,187,244, 71,251, 59,234,211, +137,240,102, 66, 30, 69,120,233,115,192,217, 31,215,234, 30,248,127,177,131,207,188, 3,123,167,211,213,217, 58,116, 29,157,177, +217, 65,234,161,255, 50,148,223,131,169, 32,207, 20,254,244,206,138,150,167, 51,250,124,164,220,204,228, 99,177, 45,129,159, 73, + 73, 76,140, 83,155,224, 40,216,222, 50,134,213,122,214,162, 31,131,119,234,157, 96,138,247,123,201, 94,131,171, 66,125, 62, 83, +246,133, 41,251, 78,178,200,178,119, 92, 15, 79, 59, 72, 75,221,144, 30,117,211, 77,183, 25,237,114,177, 31,237,245, 45,183, 16, +118,160, 15,225,242, 3,120, 59, 19,238,247,244,221,145,243, 99,161,235, 44, 55,160,212,230,180,216, 40,184,155,237,164, 29,218, + 5,142, 1,110,147, 48,236, 11,225,253, 3,242,176, 39,156, 39,120,144,144,207, 12,116,163,243,170, 63,130, 48, 22, 38,191,216, +131,216,248,183,137,232, 66, 16, 82, 16, 75,223,219,142,141,221,222,180, 37, 69,182, 93,106, 41, 16,143,217,224, 71, 55,189, 65, +129,242, 55,129, 47, 26,180,232,209, 63, 71,248,245,255,131,250,215,158, 89,246, 80, 88,193, 45, 86,114,110,152,156,117,213,175, +137,191, 95,125, 88,117,202,101,227,183, 95, 92, 85,156, 70,188,173,223,183, 95,116,133,213, 67,231,174,208,149, 60, 23,169,193, + 10,211,192,202,133, 95, 44, 65,155,113,100,105,169,101,117,189,247, 91, 33, 39,185,145,181, 60,168,198,119,226,213, 47,219,186, + 20,129,250, 19,139,164,101,197, 32,178, 8,238,106, 27,138,251,251, 61, 58,230,193, 87,245, 4,132,206, 59,183,105, 73,118, 51, + 78,122,254,216,110,245,227, 49,181,230,217, 14,248, 18,111,243, 26, 42, 9, 93,236,123,206,141,244,208,159,122, 2,161, 41,205, + 23, 93, 54,187,224, 38,249,242, 53,100, 64, 93, 3,176,186, 40, 52, 8, 73, 2,153, 96, 17,160,178, 38,159,213,106,211, 75,235, +194,237, 97,201,190,126,144, 54, 98, 14, 98,163, 48, 23, 88,202,202, 39,181,188,245, 90,214, 78, 83,130,167, 72,174,130, 79,196, +199,224, 33, 46,113,170,108,166, 53, 65, 44,102,184,233,180, 36,246,246, 62,214, 21, 41,216,210,246,170, 4,230,121, 98,158, 39, +239,208,213, 3, 82,140,254,103, 49,163, 38, 20,211,152,124,175,172, 39,122,149,101, 22,231, 98,206,174, 55, 50,157,198,200,124, + 56,218,186,184,235,200,174,254,151,198, 2,152,103,223,119,219, 97, 22,155,171, 69, 65,106, 65,186,206, 59,251, 66, 12, 22,149, + 90,169, 86, 68,181,168, 87,239,108,108, 66, 32, 43,163,221, 9,112, 54,149,240, 85, 67, 8,212, 24,217, 79, 35,101,158, 22, 33, +158,196,232,133, 77,166,228,201, 5,114,155, 41, 37,235, 24,201,196,127,137,110, 24,144,126,160,148,194,148, 39,230,105, 50,207, +125,201,110,163,147,211,216,228, 45,143,162, 37, 44,250, 89,156,136, 59,224, 30,240, 42,196,255, 18, 30,252, 16,249,242,223,129, +159,251,159,225,159,121, 23, 94,222,194, 7, 17,249,127, 7,194, 87, 47,121,229,247,247, 60,248,241,145,219,219,145,167,103,145, +151,231,231,148,148, 12, 8,147,122,251,248,141, 35,104,101,154, 45, 90, 48, 71, 53,152,134, 31, 21, 83,181, 75, 37, 69, 19, 42, +149,224, 10,108,236,197,175, 83,165, 83, 69,135, 1,158, 31,153, 52, 64, 55, 64,183, 67, 94,102,226,152, 9,181, 32,146, 9,211, +104,240,146,115, 80,153,225, 92,144, 55,122, 52, 5, 36, 76, 54,206,232,173, 75,151,108,187,118, 8,232,141,162, 31,102,234,187, + 35,243,213, 76, 61,102, 51,253, 91, 0, 51,210,131, 68, 27, 77, 74,173,212,234, 7,154,143,181,151, 64, 7, 31, 71,114,163,132, + 2,225,205,206,148,242, 25,234,143,103,202,251, 19, 97,215, 17,191, 28, 76,129,127,163,200,220, 66, 97, 34,188, 3,242, 39,223, +128,124,223,118,233,181,218,101, 87, 71,155, 99,203,224, 51,187, 47, 65,255, 69, 56,252,109,120, 89,224,162,131, 55, 7,184,154, +145, 39, 25,125,154,169,215,153, 50, 25, 29,174, 41,124, 61,209,150,226,137,123, 65, 44,246,213,138,126, 37,185, 48, 46, 5,207, + 77, 23,232, 37, 16, 31,154, 53, 11, 5,189,206,212,103,133,114,240, 4, 52, 87,164,235,162, 8,150, 53,132,196, 59, 62,241,139, + 60,250,101,210, 58,249, 50, 41, 58, 42, 50,123,142,183, 96,220,253,250, 4,226,219, 72,255, 0,125,109, 36,188,217, 19,223,235, + 56,223, 23, 46, 10, 28, 61,121, 77, 54,130,182, 46, 8, 26,117,201, 1, 87,177,130, 99,246, 3,255, 44, 40,233,101, 37,124,255, + 64,191, 19,248,210, 37,114,127,128,207, 7,186,217, 23,184,207,143,132,177, 18,211,218,177, 53,203, 92,240,177, 91, 12, 45, 45, +107,205,239,145,141,141,187, 93,172,110, 85,166, 30, 42,229,118, 38,125, 56,160, 31, 78,200,197,223,130,248, 73, 24,190, 0,115, +143,124,233, 83,200,163, 23,232,143, 39,100,103, 54, 45,241, 48,165,150,134,189, 44,125,151,221,116,181,194, 75,238,112,244,117, +147,154,229,157, 82,235, 60,150,162, 64, 86,187, 14,117, 19,238, 34,156,192,105,116,177,116,121,184,146, 3, 74,244,174,225,169, +229, 90,215,182,115, 85,138, 46, 81,110,158,251,108,239,111,192,226, 52,139,174,113,146,170,119,109,115,178, 57,175, 90,191,212, +246, 3, 77,205,111,234,229,193,247, 19,147, 23,121,109, 39,154,125,218, 96, 25,236,235,197, 89,221,251, 92, 89, 95, 63,217,236, +206,219, 89, 89, 8, 11,114,247, 36,217, 66, 21,159,220, 26,132,178,138,235, 82,170,191, 30,234,154, 32, 49, 16, 77,169,203, 8, + 62,122,204,111,241, 28,139,224,133,109,241,244, 74, 75, 59, 50, 91,110,168,153,144,231, 37, 30, 88,154,189, 82,140,117, 63, 78, + 6, 26,145,104,239, 9, 33, 17,130, 41,167,181, 89,190,100,179, 8, 49, 68, 29,177,235, 61, 93,175,248,206,216,157, 56,110, 71, + 19, 54,158,205,102, 33,107,115,142,170, 11,217,206, 46,110,123, 40,151,240, 16,116, 29,107,187,232,121,158,102,230,105,180,251, +192,199,237, 91,241,157,180,226, 36, 37,202,220,192, 49,110, 21, 91,132,188,222,240,133, 64,215,117,244,253, 64,232, 59,142, 57, +147,231,217,186,218, 16,208, 89,109,245,219,245, 6,228,241,137,174,249,245,173,144,180, 26,182, 24,122,188,165,190,121, 65,169, +234,152,229,166,149, 73,209, 4,123, 13, 34,227, 1, 80, 1, 83,221,199,174,183, 2, 10, 37,249,250, 98,156,103,131,192, 56,120, + 71, 60,198,120,158,103,242, 60, 90,227,184, 20,169, 97,227,172, 49, 28,108,140,137,216, 15,182,130,158, 38,166,227,129,121, 58, +218, 26, 65,218,132, 76, 78, 48,208,252, 68,190,196,106,255, 76,242,225,159,128,123, 95,128,238,179, 16,223, 66,229, 13, 8,191, + 4,225, 87,161, 87,228,193, 15,224, 19,127, 11,190,244,219,112,245, 28,253,214, 5,241,127, 59,231,254, 63,158, 57,127,145,120, + 92, 18, 55, 73,216,239, 6,198,190,163, 28,143,148, 58, 19,242,100,111,172,216, 88,201, 66, 20,140,232,149, 69,136, 18,173,163, +204,133, 73,205, 82, 39,126, 1,132,169,112,126,121,193,144,206,209,253, 51, 36, 14,132,112, 15, 61, 84,166, 81,169, 7,165, 79, +129,238,246, 64, 55, 30, 56, 79, 66, 26, 18, 81,133, 24, 10,225,195, 9,162,169,214,229,237,138,124,242, 12, 46,146, 29,120,199, +138, 94, 85,202,211, 76,253,254,129,195,213,145, 43, 9,148,110, 71,234, 33, 81,232, 37, 19, 45, 93,216,171, 88, 91,136, 73, 10, +132,251, 3,220, 90,199,154, 58,150, 28, 99,201,106,182,180,217,214, 10,225, 81,103,252,231,171, 66,254,222,209,168,125,159, 31, + 8,175,184, 12,252,104, 45,177,124,241, 12,238,189, 99, 70,114, 81, 23,197, 29, 13, 50,163,254,161, 79, 3, 12,127, 6,234,143, +225,240, 3,248,102,129, 79, 14,166,254,127,126,139,190,152,168, 55,153,114,156, 25,139,217, 6,219,126, 46,184,192, 40,109, 46, +159,118,113, 5,223,163,167, 32,116,161,218,255, 86, 8,187,128,220,235,221,107,175,150,122,118,147,201, 69, 77, 36,215,118,161, +106, 32,148,176,209, 87, 45,143, 92,109, 51, 18,161, 95, 38,106, 62, 82,174, 78,213,205, 25,210,193, 14,154,239,127, 3, 62,247, + 16,194, 99,184,124,134,188,209, 17,239,119,156,189, 24, 57,175,112, 83, 76,108, 52, 97,187,212,182,251,236,116, 69, 73, 46,121, + 37, 30, 29,124, 91, 97,151, 11,241,106, 38,127,127, 34, 61,152,224, 51,150, 29,192, 23,206,237, 98,255,142,194,139,153,144,179, +141,118, 13,118,215,226,182,236,188, 9, 38,248, 59,129,114,132,245,210,148,205, 69, 81, 34,212, 92,168, 87, 51,250,116, 66,190, +113,134, 94,124, 15,145,255, 10,230, 95,131,240, 0,250, 55, 8,127,225, 12,254,139, 35,241,211,174,206, 86,221,216,202,238,254, +167, 46, 4, 58,145, 21,152,115,162, 92, 63, 13,173,244,234, 62,178,196,180, 4,124,236,104,130, 39,238,140,188, 33,248, 72,189, + 46,138,246, 86, 64,157,100,160,123, 14,145, 44,186, 10, 79,227,162,154, 86,164,157, 93,101, 5,116,108, 25,246, 77,172, 28,219, +107,187,116, 67, 27,241, 88, 19,118,105,245,194, 74, 23, 11,230,174,237,211,117,189,208, 75, 53,198,211,194,199,103, 85, 44,175, +119,214, 38,176, 69, 88, 44,137, 34,107, 87, 42, 85, 23,186,156,184,111, 60,122,161,155,213, 92, 22, 89,149, 94, 42, 29,149,178, +241, 60,154,157,183,122,168,203, 10,180,105, 1,142,109, 29, 82,138,241, 52,250, 70,137, 43,153, 90,178, 91,248,100, 17, 4, 6, +177, 46, 80, 67,103,202,123,218, 14, 54,227,158, 37, 98, 10,148, 26, 29, 61, 26, 60, 25, 44,184,157, 78,168, 46, 98,147, 16,109, +207, 92,178,237,212, 67, 92,133, 95, 98,221,191, 46,194,200, 86,166,132,197, 43,174, 34,148,146,109,132, 92,117, 5, 85, 5, 79, + 15,115, 79,250, 60,102,166,241,136,214, 76, 45,142,111,221, 20,107, 11,197, 48,117,246,207,180, 56,211,221,139, 61,223, 53,203, + 18,150,147,232, 58, 19,199, 21, 96, 26,237,146, 76,187,222, 38, 76,213, 34, 83,107,223,145,247,123,175, 75,130, 79, 3, 32, 23, + 11,205,137,193, 20,249,101, 89,139,232, 34, 26, 53, 58,173, 39,241,165,232,238, 12,221, 20,178,129, 46, 70, 82, 99,177,187,112, +173, 8, 20, 87,223,199, 16,189,216, 10,228,134,117,157, 39, 23, 17,234,146, 64,103,231, 70, 88, 66, 39, 36,216, 10, 96, 42,133, +121,191,247,232,216,188,234, 26,126,146, 53,117, 51,210,210, 45, 85,114, 19,178,147,202, 47,127,141,240,137,175, 33, 95, 72,240, +115, 17,249,147, 3,188,125,142, 62,122, 0,221,231, 64,126, 5,228, 95,129,240, 87,225,236,219,200,227,191, 1,159,251, 26,250, +143,119,196,175, 92,112,249,245,204,249,115, 24,199,204,129, 61,199, 62,112,211,247, 4,157,157,225, 43, 12, 82, 25,164, 46,123, +233, 54, 82,202,197,132, 38,227,146, 71,108,135, 73, 42, 74,188,247, 10, 90, 59,142, 53, 18, 46, 31, 34, 50, 80,247, 7, 38,141, +148,144, 97,156, 97,154,185, 8,194, 69, 12,156,107,165, 11,137, 46, 36,250,155, 66,156, 15,196,151,145, 48, 59, 13,227, 97, 71, +221, 11,220, 84,244, 22,244,166,146, 75,101,127,185,227, 56, 43,181,206, 70, 22, 14,137,210, 91,186, 90,157, 51,177,181, 36,206, +108, 15, 40,177,183, 17,229, 33, 55, 88,139, 34, 73,136, 41,160, 89,225, 96,173, 93,120,188,131,203,153,242,193, 76,249,246,193, +108, 97,159, 30, 8,111, 12,240, 40, 34,143, 35,188,246, 10, 76,131,117,171, 57,175, 4, 57,205, 6,148, 9,201,194,102,244, 5, + 28,255, 71,120,118,133,126, 15,228, 47,247, 86, 8, 60,155,225,186, 82,246,153, 50,155, 10,187,141,146,183,108,243, 70, 66,146, + 85,139, 98, 58,160, 69, 32, 23,216, 73,101,168, 74,188,236,144, 55,147,157,188, 71, 69, 95, 22,244,214,172,108,217, 51,215,205, +230,100,251,216,237, 90, 71,188,149,213,184, 9, 24,241,139,183,110,119,189, 69,208, 89,145,238, 96, 99,214,255,103, 68, 30,125, + 23, 94,255, 60,114,126,134,190, 62, 19, 94, 31,232, 62, 24,185, 87,102,110,146,121,214, 75,216, 72,149, 55,177,144, 33,108,146, +192,144,101, 58, 48, 2,105,159, 9, 47, 39,226,247,142,112, 25,144, 55, 35,188, 50, 32, 63,171,164, 12,212, 35, 50, 9, 33, 87, + 56, 22, 66,217,140,182,195,186, 58,168,245, 52, 79, 90, 54,169, 86, 49,174,246,190, 82,149,112, 51, 17,158, 38,210,144,224,172, + 67,245, 91,200,107,255, 3,236,126, 13,244,179,132, 95,253, 3,226, 95,191,161,222,204,164, 11,239, 52,239, 36, 54, 75, 93, 69, + 60,218,118,232,213, 61,206,149,141,222,117,211,180,111,130, 48, 52,152, 7,120,233,218,117,133,206,212, 37,166,204, 21,222,146, +144,133,179,238,107,113, 49,210, 97,109,136, 54, 87,168,171,235,120,162, 4,230,160,230,131,174,167,249,237, 45, 49,107,123, 16, + 45, 7,229, 86,125,200, 42, 54, 92, 47,223,150,203,237, 62,240, 22,190,225,226,170,162,106,251, 96,214,189,252,228, 54,199,186, +233,245,215,194, 69, 61,160,101,197,213,202, 29,174,190,110,230,242,226, 33, 63, 17, 39, 24,218,199,192, 72,132, 33,218, 69, 31, + 33, 87, 11, 46,169,139, 48, 78, 79,173, 97,178,249,187,219,168, 61,117, 72,215, 33, 82,137,197,199,171, 45,254, 86,172,120,137, +254, 1,205, 93, 79,137,253,226,102, 56,177,164,210,242,187,157,104, 23,182,209,167, 38,158, 82, 49, 30,124,168,230, 52,145,212, +249,106, 33, 44, 19, 23, 33,248,106, 32, 26,132, 69, 51, 90,149, 89, 29, 37, 44, 45,215,188, 44, 83, 24, 17,199,102,167,184,136, + 2,231, 82,152,199,131, 39,232, 21,143,148,245,120,215, 38, 8, 83,247,163,151, 12,185, 88,183,141,241, 58, 44,148, 68,151, 91, + 74, 82, 36,245,157,197,142,118,137,113, 46,204,243, 76,151, 34,221,112,198,205,225, 96, 13,202,176,227, 56,155, 32, 47,248,133, +169, 33, 88, 65, 83,138, 17, 16, 99, 90, 43,254,150,190, 38, 44,151,110,155, 24, 46, 84,101,145, 69,195, 16,188,176,153,107,117, +251,157, 21,197,154,243,210,157, 35,230, 92,152, 91,192, 78,105,197,207, 50, 66, 91,246,221, 49, 69,170,123,207, 75, 41,148,105, + 50,198, 64,206,139,117, 72,183, 46,146, 45, 77,242,206,133,126, 2,196,218, 8, 85,227,191,124,214,253,181,253,135,194,248,213, + 74,254, 7, 21,253,155,153,240, 55, 70,248,219, 55,132, 63,252, 33,114,241, 91,112,254,191, 64,255,155,144,246,144,190, 12,231, + 63,134,199, 19,250,250, 61,244,205, 14,121,116, 78,247,226,150,179,195,200,133,118,236, 36,209,213, 66,212, 66, 39,149,115,102, +118,193, 60,155, 65,203,134,102,101, 97, 14, 83,179,198,248, 8,169,203,149,203,159,254, 34,212,217,146,125, 30, 63,164, 30,142, + 86,105,157, 13,132,156,153, 15,183,140,227,136, 6,167,210, 53,188,101, 12,212, 46, 49,135,200, 52,103,226,205, 12, 47, 50,250, +222, 4, 79, 38,180, 56,209, 36,155,177, 37,136, 61,104, 34,221,134,117,239,248,131, 46,185,183, 50, 34, 73,168, 53,112,123,176, + 74,173,195, 86,224, 22,174, 97, 84,169, 24,132,112,110,190,110,125,225, 73, 64,175,245, 11, 20,142, 99, 69, 62, 40,132, 93,135, +124,170,135,159,234,225,222, 39,236,123, 41,142,130,229, 22,230,201, 91,178, 1,226, 61,232, 94,129,233, 43,176,255, 54,124,173, +194,187,138,252,211,247,225,102, 66,127, 56,162, 31, 29, 41, 31,140,204,135,204,193,116,122,107, 46,247, 86,179,233,159,253,216, +118,232,126, 25,117,209,224, 45,231, 65, 57,139,145,254,237, 29,241,139,231,200,121, 66, 95,102,202,119,143,204, 79, 38, 14, 69, + 57, 98,107,252,169,220, 25,221,222,137,122,144,150,209,236, 54,144, 62,153,150,240, 60, 5,210,235, 59,194, 39,118,240, 40, 25, + 79,127, 62,194,255,125, 3,243, 1,249,236, 3,255, 91, 70,228,186,160, 79, 11,220,102, 70,207, 10,216,122,226,171,255, 44,166, + 94, 54, 1, 75, 39,226,187,240,166,236, 55, 58, 97, 44,237,176, 14,112, 30,225,178,243,220,122, 65, 70,204, 86,216,155,205, 43, +228, 6,131,193, 5, 49, 43, 30,180,110, 70,244,219, 32,152,200,218,125, 74,109, 35,122,227, 97, 75,142,182, 63,120,244, 17,114, +246, 24,194, 47,192,229,119,144,219,103,212,223, 25,225,210,109, 93, 91,173,192,146,131,173,167,203,198,205, 88, 88,183,222,121, + 95,178,159,144,230,116,165,214,217,153,180, 22, 59,117, 19,195, 41,193,118,128,181, 49,184,197,133, 91,126, 25,182, 65,115,101, + 13, 61,137, 81, 72, 98,182,163,166,230,109, 49,160,178,137, 42, 69,215,174,120,171, 75,216, 90,234,195,102, 52,111,227,124,241, +233,145, 65,144,186,205,115, 27,197, 40,112,163,174,107,129,236, 19,161,217, 11,170,178, 93, 79,248,247,211,254, 93,145,141,247, +184,129, 30, 37, 80, 52, 80,176, 14, 76,252,189, 77, 98,151, 58, 2,163, 10,179, 36, 52, 6,186, 32,164,100,244,187, 73,132,217, +247,180,219, 52,210,224,207,101,117,192,141,138,160,169,183, 15, 92,158,144, 50, 47,214, 46,189,251,249, 12, 54,206,183,149,165, +141,132, 99,240,113,121,136,214,141, 46, 22, 62, 89, 46,166,208, 28, 9, 62, 46,175, 62,122,246,212, 30,227,178,123,110, 56, 30, +186, 18, 83, 90,226, 98, 45,143,219,186,236,198, 39, 81, 86, 32, 74, 16, 83,124,135,212,209, 13, 59, 19,124,149, 74,174,153,121, +154,108,234, 80, 11, 90,102, 47,222,101,233,140, 5, 75,208, 84,112,251,154, 11, 41,131, 56, 47,189,158, 68, 1,119,253,192,217, +249, 5,221,238,140, 18, 2,227,241,136,214,194,249,238, 12,217, 13, 76,135, 91, 82,236, 24, 67,224,240,242, 5,226,188,117,137, +201,138, 16,143, 33,141,169, 35, 72,112, 77,199,170,111, 88, 29, 45, 94,244, 5, 7,210,176, 22, 46,203, 51,169, 77, 20,111,212, + 73,205,133,228, 54, 67, 21,152,181, 26,228,199,247,223,141, 9,176,157, 60,181,247, 86, 99,103,240,174,105, 34,143, 71,243,154, + 55,229,255,102,213,117,114,161,235, 54, 34,152,143, 29,186,119, 49, 61,233,183, 6, 56,219, 9,247, 68, 56, 87,184, 95, 42,151, +165,114,249,213,137,139,223,135,179,223,136,116, 15,247,132, 47,190, 64,254,249,111,193, 63,117,137,190,254, 0,118,103,200,107, + 9, 36,161,111, 2, 63,117, 6,239, 38,194,243,129,203, 31, 84,206,191,119,203,195,227,200, 94, 51,210,139,117, 60,162, 76,174, +200,156,189, 27,152, 49, 33,123,219, 97, 76,185, 48,164,142,238,141, 55, 56,252,224, 93,194,163,199, 48, 41,229, 56,154, 29, 32, +194,116, 56,144,143, 35, 85,101,209,157, 69,169,198, 53,158,179,193, 45, 98, 71, 25,206,152,242,204,238, 56,123,164,104, 50, 97, + 79,136,104, 12, 72, 10,236,114, 37,234,145,177, 31,152,217,185, 15,117, 66,234,178,168,179,195,172,219, 81, 66,101, 63, 39,142, +115,230,181,243,202,227,168,220, 28,108,151, 30,147, 32, 67,103,252,204,226,169, 89,123, 65,111, 33, 60,238,209,108, 62,119, 57, +239,221, 79, 89,145,123,151, 80,122,219,161,151, 17,244,165, 93,232, 57, 26,167,149,100, 49,176,249,143, 96,255, 61,248, 64,209, +111, 84,228,103,122, 83,243,127,255, 22, 14,230,117,174, 83,179, 70,173,193, 31, 91,212,105,220,220, 12,193,243,128,163,119,183, + 73,236, 82,239, 9,164,203, 68,124,189, 67,238,123, 95,116,101,182,171,130,154, 42,218,187, 88,217, 88,133,164,169,106,239, 76, +142,151, 29,102,216,252,163,246,185,137,234, 56,173, 3,204,217, 2,109,190, 53,195, 47,188, 15,175,188,137,220,127,129,190,221, + 19,223, 28, 24,158, 31,121,176,207,236, 59,155, 18,136, 31,148,113,233,252,214,226, 97,123,169,169,243,126,246, 64,154, 11,114, + 59, 35, 31, 77,164,206, 9, 57,175, 38,139,107,205,144,138, 82,158,143,112, 95, 16,157,145, 81, 41,162,139,122, 95, 93,121, 29, +116,229,180,155,237,104,211, 1,183, 51, 32,249,126,125, 46,148,219, 9,185,138,200,251, 59,120,179,192,131,223,129,244,167, 64, +254, 34,225,215,222, 35,253, 79,123,234,245, 76,119,223,161, 76,242, 19, 6,108, 46, 36,106, 29,116,101,195, 1,192,213,250,126, +249, 55, 74,158,129, 92, 92,237,189,128, 20,149, 26,124, 87, 88,183,170,112, 19,148,181, 75,166,182, 49,165, 10, 53,250,101,173, + 43,132,164, 74, 96,212, 66,170, 78,199,114, 33, 27,155, 68,182,197,239, 45, 56,146, 84,204,230,234, 26, 20, 81, 61, 25,187, 23, +239,234,140,151, 96, 34,164, 78, 3,209, 81,176,101, 97, 8,152,186, 93,151,140,116,219,135,151,230, 79,119,108,109, 92,214, 76, + 62,210,110,194,185, 77,119,223, 64, 63, 85,221,254,185, 28,246,234,194, 57, 43, 48,134, 40, 36, 17,131,237,108,172,121, 57, 8, +115,118, 87,135,199,249, 53,237, 88,243, 90, 55,200, 22, 24,214, 53, 22, 43,113, 74,104,234,110, 89, 96, 52,219, 40,207,162, 30, + 80, 82,143, 36, 31, 31,175, 33, 59,117, 17, 2,106,195,183, 53,209, 74, 16,148, 98,221,164,154,187, 65,156,160, 38,226,192,148, +100,227,248, 42, 88,183,216,246,242,186,146, 7, 91,118,250,106,177,180,142, 62, 4, 33,246,118,161,231,121, 54,149,187, 11,214, + 74,173,214,113,150,246, 76,110,166, 51, 41,217, 51,208, 58,248, 38,156,172, 80, 75,221,100, 24,120, 86,122, 63,208,167, 14, 73, +157,137,198,242, 76, 31, 2,221,217, 25,251,105, 34, 84,165,238, 18,135,171, 43,116,158,221,226,101,163,247,226,246,185,246,255, +115,219, 69,202,221,181,150,158, 88,213, 84,117, 97,111, 44,102,183,170, 14, 65,138,190,158,114,210,161, 7,184, 76, 37, 91, 2, + 93, 93, 71,100, 75,158,253, 70,241, 47, 98,207, 83, 29,143, 20, 95,185,232,182,112,186,139,118,102,227,187,228, 14,228, 81,185, +195,169, 56, 61,120, 83, 44, 48,162, 28,189, 34,254,192,197, 29, 23, 59,191,228,115,229,222,126,228,193,111, 31,185,248,191, 2, +187,179, 91,226, 63,121, 69,248, 87, 47,209,159,127,132,190,253, 8,189, 22,244,252, 1,124,186,194,225, 0, 63,170,132,223,191, +224,242,155,133,139,143,110,169,115, 65, 43,204, 81,152, 98, 37, 39,187,140, 83, 88,105, 82,165,218,161, 54,228, 66,119,255, 33, +250,240, 85,228, 71, 31, 65,223, 51,125,244, 1,211,113, 68, 83, 64,111,111, 40,135, 3, 69, 10,125, 39, 11,215,153, 12,218, 57, + 7,184, 66,208, 74, 37, 48,165,142, 46, 5,130,206, 22,231, 55, 77,208,117, 4, 49,251, 0,131,144,242,140,212,217, 24,248, 65, + 8,201, 44,104,246,154,187,192,166,228, 13,157, 42, 48,206,194,197,195,200,131, 7, 21,125,110,126, 80,233, 65,118,129,250, 36, + 55,101,154,165,126,160,200,121,103,241,160, 95,216,193,167, 6,248,116,132,238, 1,228, 9,116, 2,110,236, 98,159,226,218,170, +197, 11,208, 27, 24,223,135, 15, 3,188,155,225,122,134, 63,123,110,139,223, 27,171,104, 52,219,127,215,182,235,194,201, 86, 27, +117,116, 59,144, 9,206,170, 22, 76, 36,215, 58, 18, 49,144, 75,188,236,144,183, 7,203, 0,205,106, 57,239,179, 90,166,140,195, + 90, 90, 12, 98,139, 37,213,159,176, 6,222,142,249, 83,104, 93,172,156,206, 61,125, 88,174,207,179,217, 41,223, 8,240,213,151, +200,159,125, 8,195, 61,228,205, 76,248,116, 38,125, 52,114,241,254,158,251, 69,153, 35, 28,252,176,109,227,193,184,233,226,156, +254,184,156, 79,179,147, 41,227, 12,247,174, 51, 97,152,145,120, 36,246, 64,119,110, 62,252,183,123,194, 92,224, 91,192,149,141, +165, 19,153, 48, 87, 27,189,183,213,169,172,151,168,110, 88,236,225, 78,135, 29,218, 94,238, 88, 41,177, 16,110, 38, 98,223,193, +203, 8,211, 19,184, 60, 64,252, 37,120,237, 93,210,191,243, 27,148,255,244, 37,220,247, 11,174, 29, 40,245,227, 94,115,101, 19, +213, 26, 54, 99,185, 59, 5,213, 66, 79, 91,118,134,235, 31,169,158, 95,223,130, 75,140,127,190,170,115,219, 78,113,251,245, 84, + 54,142,204,106,201,138,133, 74, 9,234,240,186,181,227,180, 2, 65, 23, 56, 80,113,116,235, 18,146,177,249,118,215,128,185, 53, +159, 58,168,144,168,116, 42, 30,184,178, 22,111,217,157,144,213, 23, 44, 45, 36,165,104, 93, 5,125, 75,161,105,190,223,206,122, + 93, 8,155,120, 96,214,215, 36,251,246, 60,139,172, 61,115,144, 37,173, 48,110, 10,168, 45,160,101,150,192, 92, 12, 89,171, 75, + 97,228, 5,141,174, 5, 85,241, 76,132,198,170,239, 93, 64, 55, 59, 98,185, 77, 3, 82,155, 54,182,159,177,218,249,181, 20,230, +213, 11,178,205,164,115, 29,157, 55,117,189, 91,228, 84, 23,193,106,187, 80,196,149,243,165, 22,164, 40, 26, 13, 26, 97, 99,239, +108,175, 89,140,132,254,204, 41,147,141, 33, 80, 55,163,228,149, 65,158,115,161, 78,147,137,205, 74, 65,107, 70,107, 94,126,120, + 89, 86,126,178,140,172,107,201,235,110,185, 61, 3,165,249,215,213,221, 80, 66, 55,244,116, 67, 79,232,122, 99,164, 56,188,102, +119,118, 14,169, 99,186,185, 97, 2,198,171, 43,234,254,150,232, 22, 54,109,130,187, 86,117, 71,187,224,107, 45,238, 99,151, 83, + 8,132, 63, 8,182,174, 96, 41,108,218,132, 65,181,161,138,163, 23,101,149, 24, 3, 41, 36,106,136,140,243, 68,157,166,229, 25, + 22,183,204, 89,162,154, 46,145,186, 16, 60, 62, 53, 59, 89,111,187,255,145, 77, 65,115,183,230,144, 19,202,229,233, 34,125,251, + 27,119, 46,245,229, 60,168,202,232,202, 61,193,194, 51,130,171,189,207, 6,225,114,128,135,192,195,121,230,149,127, 52,242,224, + 31, 93,113,246,234, 71,196,191,124, 15,249, 23, 30,162,159,120,149, 58, 93, 34,207, 4,186, 35,188, 38,240, 37, 65,190, 54, 16, +159, 76,240,188, 16,159, 22,250,253,209,162, 88, 35, 28,130, 46,163,137,189,167,145,134,185,112,241,230, 91,196,183,223, 34,124, +243, 27, 76,251, 43,242,225,214, 0,145, 37, 65,153,232,165, 48,196,232,251, 54, 99,196,103, 31,177,198,206, 71,102,170, 46, 9, +154,137,146, 44,231,125,178,139, 93,231, 76,149,142, 16,171,137, 72,250,129, 64,161,159, 50,193,217,146,218, 8, 82,234,202, 46, +177,216,187, 33, 21,230, 16,153,107,101,190, 86,250,207,158,195, 91, 21,253,238,232, 73, 62,254, 33,235,212, 40,117,209,238,235, +120,191, 35,124, 98,128, 79, 15,240,185, 8,143, 31, 64, 57,179, 11, 93,247,118,161, 31,227,102,110, 58,152, 72,110,254,177, 49, +225,175, 20,125, 81,204,102,246,120,128,235,108, 59,122, 15,138,209, 90,151,131,190,113,204,131,172,137, 83,178, 29,233,184, 80, + 40, 96, 35,212, 20,161, 43, 74,220, 5,194,195, 14,121,165,183,155,248, 88, 96,175, 14,185,112,138,220,194,102,112, 25,148,119, + 95, 4, 54, 1, 28, 91,164,232,230, 87, 48, 37,180,164, 22, 79,230, 63,235, 71, 35,220, 22, 27,139,127, 43,195,103,158,192, 59, + 15,225,209, 25,124,166, 16,223, 63, 50, 60, 27,185, 63, 23, 14, 81,150,241,106, 59,200,219,238,115, 89, 45,202, 50,113,180,130, +113,118,189,225, 65,137,215, 51,165, 19,228,195, 64, 56,143,232, 39,119,200,101,132,119,206, 44,207,253, 91,178,100,239,176, 47, +200, 92,220,225,192, 73, 94,178,174,247,235, 58, 46,151,205, 47,127,108,116,172,232,141,194,195,106, 19,152,154, 65,158,194,217, +151,161,254, 21,228, 47,125,155,244,215,255, 46,122,101, 67,153,234, 80,149,117,220,177,225,122,182,139,120,115,161, 47,227,185, + 13,120, 69, 55, 93,109, 3,188, 44,235, 24,117, 95,180, 24, 28,165, 40,139,128,201,192, 72,156,176,217,173,128, 51, 27,149,248, +173, 88, 75,182, 93,186,108, 46,105,101,193,247, 54, 66, 86,241,174,127,205,178,118, 0,204, 9,235, 67, 87, 65,231,146, 2,135, +227, 85,133,206, 79,176,124, 23, 44,227,211,190,153, 53, 35, 94,253, 32, 79,209,236, 74, 73,103,162, 26, 21,179, 46, 29,145,219, +209,252,224,182,112,150,184,120,234, 67,114,123,170, 86, 43, 50,216, 68,148,182,233, 66, 16,230, 90,201, 89,151, 66,172, 52,180, +238, 86, 61,239, 26, 33,245,175, 23,177, 78, 87,100, 9,220, 90, 4,136, 45,237,172, 81,242,138, 43,246,163,239,132,107, 53,207, +186,116, 61,226,209,165,102, 63,247,224,147, 48, 19,139,159,167,218,168,124,237,162,171, 4,103, 93, 20,140, 49, 94,107,241,239, +177, 58,210, 54,152, 71, 58, 88,160, 14, 34, 68, 85, 66,138,150,194,167, 94,168,182,238,126,158, 44, 69,206, 41,113, 11, 0, 39, +156,100,148, 46,187,250,234,133, 67,216,232, 38,212,178,219, 78,170,214,152, 18,221,176, 35,117, 61, 53, 4, 3,205,228,153, 33, + 68, 98, 63, 48,205, 19,135,105,226,120,115, 13,121,118,187, 93, 58,185,148,109, 58,225, 96,154,210,186,225,186,168,247, 37,108, +180, 61,173, 24,212,149,150,160,117,213,149, 7,127, 13, 75, 53, 96, 90,215, 37,164,235, 56, 78, 35,121, 28, 87,241,223,146,167, +238, 54,193,150,173,128, 90,103, 94,243,162,188, 23,130,231,173,215,117, 92,223,166, 73,155,144,169, 53,198,248,244, 30,215,143, + 67, 39, 78, 6, 17, 41,109, 42,231,217, 31,204,134, 79,188,174,150,149, 29, 49, 42,220,135, 17,206,147,112,255, 65,228,126, 85, + 30,223, 76,188,246,223, 60,225,222,111,188, 96,248,165, 15,137,255,246, 99,244,243,143,209,113, 7, 79,177,236,206,135,192,190, +179,125,242,183, 43,241,187,137,248,209, 76,186,206,116,204,164, 14,134,100,129, 49,215,147, 85,164,203,244,181, 98, 0, 0, 32, + 0, 73, 68, 65, 84,221, 91,159, 66, 47,206, 8,199, 3,245,230, 6,166,145, 46,218, 40,174,148, 9,237,130,251,150,237, 69, 42, + 85,201,193,188,238, 45,218, 48,182,189, 97, 45, 6,190, 33,160,169, 51,250,212,156,209,227, 30,173, 29, 49, 38,228,124,135,116, +103,200, 48, 33, 58,195, 14,100, 84,194,172, 54,202,154,109, 87, 18, 99, 36, 45,104,213, 64, 29, 43,245,163,137,244,197,115,248, + 66,103,129, 49,147,121, 49,101, 23,144,179,232, 17,145,129,240,184,135, 47,236,224, 51, 1, 30,222, 71,242, 67,247,104, 31,160, +236, 77, 88,208,102,140,187, 8,221, 25,240, 18,158,237,225,185, 67,113,114,134,199, 14,210,121,182, 55,207,113,239, 31,182,186, + 17, 88, 56, 98, 57,212, 38, 86, 82, 79,254,114,199,156,179,220, 98, 83,190, 11,244, 81, 9,151, 29,225,149, 14,206, 19, 34, 17, + 61,204,166, 6, 44,186, 68,104, 86, 86, 16,159,186, 25,119, 85, 96,234,169, 2, 94,252, 18,111,251, 66, 85, 36, 53, 35,124,179, +207, 8, 60, 47,232, 84,108,219,219, 5,244, 43, 55,200,235,231,112,150,144, 55,123,194, 39, 7,226, 7, 59, 46, 14, 7, 30, 70, +251, 89, 14,229, 84, 49,205,102,239,218,158,231,226,109, 65,244,125,252, 65,148,120, 93,216,133, 25, 25, 2,242,131,128,116, 1, + 13, 3,114,153,224,173,128, 28,109,167,169, 85,208, 50, 81, 35,164, 99, 69, 68, 23,156,107, 83,162, 7, 61, 45, 94,100, 99,153, +146,165,110,177,125,171, 30, 43,210,124, 86, 18,128, 29,132,183,225,254,127, 72,252, 79,190, 74,253,171,239,161,175, 36, 82, 46, +228, 77, 90,239,137, 0,109,243, 1,174, 62,147, 94,185,212,171, 80,238, 46, 99,189,234, 41, 76,166,229,129, 47, 23,157,202,202, +240,223, 72,110,164,173, 30,164,218,122,197, 47,180, 54,246,157,138,109,155, 90, 87, 94, 79, 46,120,150, 11,234, 36,137,109,251, +117, 54,151,123,251,217,162, 40, 73, 34, 41, 8,103,174,135, 24, 91, 16, 75, 83, 80,187, 45,203,124,229,120,220,168,189,240,177, +229, 88,251,110,175, 86, 7,191,232,194,123,114,194,152, 31,254,238,193,110,145,157, 65,117,137, 88,109,148,185,185,108,132,120, + 98,201,121,177,174,170,230,186, 76, 16, 62, 62, 12, 93, 11, 45, 89,180, 44,202,250,223, 45,163, 61, 34, 39,130,168, 22,205,147, +130,123,196,171,225, 65,187,126, 48,238,186, 90, 38, 0, 21, 3,193,164,206, 58,229, 5,103,106, 23,112, 21, 89, 38, 73,170,149, + 16,162,189, 30, 57, 47, 42,137, 16,251, 37,171,214,196,114,193,149,238,213, 88,243, 46,136, 83, 87, 62,169, 43,197,107,198,172, +100, 43,191,109,117, 18,184,202,212,178, 13,202, 70, 48, 18,214,204,242, 69,216,160, 30,220, 3, 49,117,116, 93, 71,140, 29,115, +206,140,199,189,189, 39, 67,207, 62,103,110,166, 35,199,219, 27,152, 39, 83,241, 75,216,116,186,174, 42, 23,243,159,183, 9,192, +214,215, 45,178,126, 77,221,120,245,101, 11,171,212,117,196,185, 29,137,247, 18,136,195, 25,183,243,196,180, 63,152,237, 44, 24, + 91, 69,116,179, 14,241, 47, 84,188,152,105,251,253,187,134,180, 86, 70,180,194,118,219, 16,233, 6,207, 44,119,133,239,250,241, +177,251,246, 31,165, 45,180, 63,249,131,159, 48,142,241,190, 42, 99,181, 81,204, 40,112, 85,225, 50, 40, 87, 98, 77,213,179,157, +240,254, 46,240,106,174,188,241,219,215, 60,252,135,183,236,126,246, 35,194,191,251, 10,250, 79, 60, 66,231, 30, 25, 20,198,108, + 63,240, 27,192,207, 36,248,163,137,240,189, 76,255,195, 91,226,205,204, 89, 52,132,232,189,122,164, 92,222, 99,250,229, 63,199, +252, 59, 95, 33, 93, 61,103, 56, 94,147, 58, 83, 53,206,215, 47, 12, 20,224,166,127, 98,132, 26,208,154,153, 8,236,220,130, 98, + 9, 72, 66, 23,253,192, 18,181,109, 91, 85,144,132,244,157,189, 33, 37, 35,121,134,121, 68,206,207,145,139, 29,114,110,164, 38, + 66,133, 51,123, 48,120,105, 59,240, 42, 25, 81,203, 36, 14, 82,145,206,148,238,245,187, 71,226, 39,123,120, 61,193,179, 98,243, +255,115, 65,206, 4, 25,133,240,102, 7,159, 31,224,179, 10,143, 30, 35,229,129, 75,155,179, 41,232,114,134,209, 88,244,210,230, +225, 65,225,197, 21, 60, 81, 27,185,239, 13,151, 38, 63,229,113,179,123,239,210,123, 95, 61,232,122, 52, 54,180, 98,108,241,152, + 85, 12,149, 47, 6,159,105,162,174,222, 89, 1,157,168, 1, 21,118, 9,121,212, 35,131,169, 82,153, 42,117, 86,223,177,110,210, +165,124,252,203,169, 99,229,228,177,148,141,237,169, 46, 23,222, 50,103,116,147,187, 93, 24, 92,249,148,225,201, 68,124, 39,194, + 77,134,175,189,132, 47, 63,130,123, 59,228,115, 23,164,247,103,234,237,204,189,167, 51, 57,185, 39,189,174, 43,134,200, 10, 7, +217,126, 56, 74, 49,226, 95, 85, 24,197, 66,137,186,171, 66, 56,203, 72,154, 73,239,187,223, 47, 6,184, 76,240,233,193,120, 67, +163,207,118,247, 80,123, 33,206,149,160,117, 25,197,159,168, 82,125, 92, 25,101,221,221,138, 99, 70,165,237,168,199,138, 76,213, + 15,202, 25,164,115, 60,238,167,145, 63,254, 31, 16, 63,255,235,212,143, 42,241,190,109,109, 26,180, 71, 78, 62,176,178, 77,162, + 89, 49,240,122, 39, 49, 85,148, 90,228,206,101,190,190, 81, 85,215,239, 89,116, 51, 6, 87,167,191, 21, 69,213,118,190, 82,170, + 67, 85,252, 0,114,229,244,236,119,107,239,172,242, 82,218, 37, 87,239, 36,181,157,130,113, 22, 86,245,230,123,107,127, 38,160, +110, 35,139,182, 63,245,189,209, 92,170,247, 89, 43,240, 68,169, 75,108,108,195,100,138, 8,146, 58,251,251,231,201,104, 94, 11, + 68,199,113,199,106,254, 95,203,151,143,144, 44, 32,100,137,245,118,245,190,162, 75, 44,106, 70,236, 89, 19,235,247,230,172,158, + 38,185, 94,216,139,179,195,159,122, 65,108,237,224,162,188,212,166, 73, 27, 18,105,245,106,180,122,241, 19,218, 5,179,196,156, + 43,177, 51, 58, 89,172,166, 22,111,217,233,235,196,194, 59,209,208,161,204, 54, 93,104,138,248, 90,137, 81, 60,254, 51, 82,138, + 79,111,234, 76,157, 45,166, 83, 99,178,179,174,174, 43,146,170,101, 93, 3,105, 37, 87,179,251, 45, 91,161,176,226, 12,197,253, +218,134,103,149,117, 4, 45,193, 56,229, 37, 47,153, 9, 77,160, 38,158,179,222,232,109,213, 63, 80, 49, 90, 86,122,151,122, 52, + 4,142,211,200, 60, 78,116, 49,114,156,102,170,142,204,165, 90, 14,200, 38,167,160,226,201,115, 18,189, 67,175,148,121, 51, 1, + 16, 57,249,124,156,208,146, 56, 53, 98,180, 3,212,125, 1, 92,132,196,197,227, 87,217, 31, 15, 72,169, 28, 85, 57,222,222, 82, +243,140,104, 37,134,206,233,122, 86, 52, 45, 22, 54,177, 98,166, 93,232,167,133,158,219,183, 55, 72,220, 19,231, 90,189,155, 15, +240,255,131,124,190,171, 33, 90,118,234,232, 66, 55,109,217,205, 90, 12,222, 49, 55, 21,175,239,138, 50,240,172, 10,103,230, 12, +227,182, 24,224,227, 42, 10, 79, 31, 8, 15,179,242,214,215,111,121,244,111,237,217,125,225, 25,225,215, 95,181,192,145,177,179, +127,225, 76,224,126, 15,143, 19,250,217, 10,223, 72,196, 63, 56, 16, 95,140,116,185, 48,236, 97,254,103,127,133,253,171, 63, 69, +247,238,127,199,120,251,220,236, 81,221,142,241,214, 4, 17,196,176, 16, 70, 69,226, 18, 13, 86,131, 82, 36, 27, 80, 37,177, 40, + 65,205,167,109,150, 17,201, 74, 96,166,106, 64,163, 47, 63,107, 37,104, 33,220, 92, 67, 25,145,116, 9,151, 61, 18,138, 9,184, + 10,132,123,138,206,150, 84, 22,102,165, 75,217,160, 42,179,209,230, 68, 2,250, 34, 35,169, 67, 94, 9, 80, 18, 18, 5,233,212, +212,213,159,218,193, 79, 43,188,250, 73,136,127, 30,246, 95,241, 18,254, 0,249,104,108,211, 92,215, 37,109, 47, 48,223,194,147, + 25,110, 51,154,189,109, 24, 20,222, 26,236, 38, 27,125,124,114, 8,182,146,199,224, 13, 97, 35,218, 90, 58,131, 54,250,246,189, + 37, 77,221,219,242,211, 85,108,236,120,225, 44,249, 62,216, 5,244, 66,215, 56,171,237, 72,125,211,157,182, 29, 89,240, 72,239, + 19,123,155,172,162,147,182, 83,151, 22,133, 21,163,141,193,178,249,224,245,210, 98,104,121, 50, 17,223, 24,208, 63, 56, 32,159, + 56,131,199, 59,120,125,135,124,254,130,244, 60, 51, 28,111,184,184, 46,228, 4,199,236, 95,183,174, 10,226,213,206, 41, 39, 43, +135,182, 27,206, 81, 56, 86, 8, 47,230, 37,208, 34,118, 1,237, 2,116, 88,204,236, 59, 3, 50, 85,226,204, 2,179,183,173,140, + 16,167,122,130,112,219, 6, 66, 44, 62, 84,185,139,199,242, 27,250, 38,192,116,132,249,187,190,210,217, 25,147,224,236, 87, 9, +255,241,231, 9,255,230, 55, 9,247,226,226, 36,111,251,241, 69,108,168,171, 53,113,113,133,149,143,119,136,181,174, 48, 69,253, + 56, 29,246,132, 14,215,250,155, 18, 54, 75,112,191, 50,150, 8, 81,173, 70, 39, 67, 86, 4,170, 11,214,174,171,114,230,227,243, +181,251, 98,131,221,244,142,184, 17,225,238,132,209,156,128, 94,196,189,214, 53, 35, 21,178, 68,102, 17,230, 54,194, 21,181,188, +245,205,208,150,182,139,181, 54,157, 26, 34,101,158, 44,104, 74,252, 66,151,176,137,243,148,165,192,140, 41, 57, 65,175,174, 32, +169,186, 6,216, 22,167, 11, 21,247,154, 87,133,172,213,186,255,205, 68, 42, 46,121,240,186, 92, 94,117,171,106,247, 41, 89, 23, + 87,113,162,108,100, 90,237, 98, 95,157, 12,178, 64,130,226,112,238,157, 96, 98,206,133,233,112, 67, 9,137, 34,137, 34,222,169, + 58, 36,166, 96,220,143,144, 44,133, 76, 61, 53,172, 8, 11,115,124,206, 51,250,255,209,245,118,177,182,101,217,125,215,111,140, + 57,215, 90,123,159,143,251, 85,117,235,163,171,219, 93,238,110,219,109,119, 28, 39,178, 19,199, 73, 72, 8,249, 80,148, 32,100, +132, 64,188, 16,161,136, 8,158, 64,138,120, 0, 5,162, 86,224,129, 7,144, 16,136, 7, 4, 15, 72, 8, 33,148, 40, 65, 74,136, + 66,136,132, 29, 59,182,227,182,211,137,237, 78,140,251,195,238,118, 87,119, 87,215,199,173,251,113,206,222,123,173, 57,231,224, + 97,140,185,214,190,183,170, 31,142,238,173, 91, 71,103,159,189,246, 90,115,206, 49,198,255,255,251,215,226, 7,151, 96,160,139, + 26, 58,100, 68, 60,136, 74, 35,124,165,135,209,208, 43,205,200, 73,167,149,104, 15,199, 28, 89, 18, 41,197,231, 16,170,251,178, +204, 33,138,123, 30, 99,138,177,118,111, 94, 84,135,169, 38,242, 56,145,198, 49,226, 75,103,196, 26, 85,178,231,137,164, 68,237, +162,180, 56, 2,174,121, 68, 13, 52,249, 90, 79,192,125,214,145,128,157, 89, 75,122, 39,202, 54,253,196,122,152, 91,215, 12,191, +110,123, 17, 94,185,127,143,116,125,205, 92, 27,207, 88,184,125,250,100, 37,189,233,121,141,220,147,221, 66,211, 80, 75,161,126, +196,134,126, 78, 76, 20,145, 23,192, 75, 47, 90,216, 94,168,149, 94,216,221,237, 67,186,247,168,212,135, 14,236,232, 2,156,234, + 21,249, 51,123, 17, 71, 23, 92,232,102,220,138,144, 35,211,250,164, 48, 55,227,166, 10,207,146,240,232,174,240,114,133, 87,191, +122,195,131,255,224,192,248,185, 71,200, 95,121, 25, 62,117,215,191,249,113, 2, 93, 28,167, 58, 9, 92, 42,124,125, 68,191,254, + 20, 30,188, 9,127,242, 47,178,251,250,111,162,239,189,199,188, 28, 25, 46, 39,110, 91,225,180, 84, 52,249,147, 87,173,173,228, +172, 38, 41, 78,249,130,234,192,160,238, 45, 23, 1, 29, 98, 51,204, 18,152,191, 16,100, 52,219,136, 85,234, 22, 16,217, 73, 36, + 87, 29,253,163,218,141, 78,170, 43,234,161, 44,167,134,188, 7,195,179, 19,106, 66, 27, 96, 89,140, 60, 20,164, 39,153, 61,170, +200,107, 3,242,178, 15,251,164,138,171,200, 63, 1,188,114, 1,187,191, 16, 60,247, 91,151, 72,183, 19,204, 21, 59,133, 40, 32, + 16,183,104,130,175, 62,243,168,211, 78, 93,155, 4,185,140,235,117,138,118,211,164,216, 77,243,254,160, 60, 47, 80,123, 78,117, +190,218,171,156, 72,165,230,212,173, 20,155,122, 78,130,238, 7,244, 58,123,181,170,130,157,188, 27, 96,139, 11,101,200,241,126, +100,155,136,173,155,121,220, 55, 61,224, 78,206,110,196,243,198, 67, 10, 26,135, 12,177, 8, 15,217, 75,190, 39,160, 15, 18,245, + 4,237,189,130,236, 18,122, 55,218,240,127,106,132,187, 35,242,201, 61,233,131,133,241, 84,185, 58,221,120,199, 38,195,161, 42, +170,182, 37,107,197,254,153,251, 24,226,133, 57,127,109, 1,243, 59, 25,211,211,133,146,207, 84,193, 73,145,151, 51,220, 25,176, + 55, 65,231,216, 61, 31,187, 79,208,250, 14,219,236,204,188,199, 11, 97, 16, 81,150,117,254,106,239, 59,151,234, 57,178,239, 27, + 60,252, 53,104,239, 64,186, 10,213,218, 53,242,123,255, 93,244,211,255, 25,242, 54,164,139,173,197,223,171,232, 62,207, 62,119, +185, 61, 39, 88, 78,120,117, 30,149,120, 61, 39,192,173,161, 21, 27,161,202,100, 75,109,107,141,115,133,222, 58, 82, 89, 49,177, +205, 43,139, 22,115,120, 83, 89, 19,243, 14, 65,118,155,158,179,167,157,221, 3, 38,129, 37,149, 51, 31, 93, 59,179,231,185, 70, + 32,197, 76,151,168,173,231, 86, 60,181, 77, 51, 53, 57, 10,202,196,217,238,218,122, 69, 84,163, 77,105, 48,140,200,180,119,123, + 86,109, 30, 46,164,225,249, 24,188, 85,211, 74,115,114, 28, 48,134, 61,236, 60,231,198,197,109,182,126,188, 37,198, 67,173, 54, +170,184,135,191,213,237,222,110,173, 51, 18, 92,112, 90,250, 26, 26,182,185, 30, 89,148, 4,246,131,249, 89,189,109, 35,136,117, +131,215,205, 1,144, 2, 72, 50,152,161,251,107,116,218, 83,159, 61,102, 62,222,114,210,129,197, 18, 85, 26,164, 70,149,228,126, +119, 4, 77,153,166, 25,202,226,226,219,228, 85,120, 69,168, 75,161,116, 65, 91, 93, 34,213, 76, 67, 57, 47, 27, 75, 66,125, 51, + 84,201,161, 78,143,123,190, 89, 79,110, 90,103,245,213,106,220,107,254, 89,166, 52,160, 57,252,215,243, 49, 54,212,231, 21,134, + 98,207, 71,152,114, 54, 62, 19, 17,242, 48,145,199, 9,178, 50,207, 11,182,204, 1,183,113, 72,112,109,205,223, 95,216,229,120, +206,186, 41, 43,202,214, 58, 96, 34, 54,117,211, 51, 4,232,139, 21,202,202, 17, 8, 47,130,120,152, 88,183,216,157, 16,242,241, +136, 13,153,195,211,199,212,211, 41, 52, 4,172,209,172, 61, 81, 46,165,193,181, 21,181,248,200, 33,174,177,189,208, 38, 63,255, + 85, 92,164,215,214, 81,206,139,169,136, 47,110,232,219, 4,254, 35,143, 10,190,230,150, 26,148, 46,188, 80,233,175, 58,116,235, +107, 84,232,141,115,230,180, 81,205,103, 75,214, 28, 97, 94,154,255,219,209,224, 86,225,131, 43,229,165, 6,175,127,233, 9,247, +254,194, 45,249,143,221, 69,254,227, 87,224, 99, 23,240,193, 8,143, 60, 71,220, 38,224,165, 4,156,104,175,127, 6,218, 7,164, +250,187, 12,237,134, 97, 20,198, 1,242,237, 1, 83, 35,153, 80, 37, 78,202, 6, 86, 23, 52, 85,100, 26,208,164,238,131,151,140, +100, 67, 99,246, 42, 23,206, 93,183, 15,234,154, 53, 44, 65, 17, 90,123,183, 99, 80,177, 6, 69,174, 51,146,129,203,134,212, 29, + 28,103,207,139, 31, 20,203,194, 48, 87,228,253,133,121,134, 97,167, 94,121, 46, 5,118,226, 74,241, 15, 10,114, 63,123, 91,234, + 22,184,151,224,161, 57,177, 79, 94, 66,150,191, 19,106,119,131,122,139, 45,226,171, 98,204,160,109, 55, 34, 79,102,236,231,159, +193, 93,129,135,193,135,159,129, 59, 25,246, 9,222, 15,144,255, 78,182, 15,168,190, 72,205,242,177, 67,183, 55,201, 25,214, 86, +113,244,101, 82, 23, 23,234, 40,232, 69, 70,238,142, 1, 23,151,213, 42,103,181, 33,203, 38, 0, 17,233, 41, 85,178,230, 67, 59, +251,252,172,210, 56,243,114,247,155, 82,165,111, 50,201,211, 73, 58,110,235,212, 96, 39,232,189, 1,110,149,246,205,133,246,157, + 5, 25, 19, 82, 11,124,233, 25,252,216, 53, 60,156,224, 83, 59,210,227,202,176, 24, 87,223, 57,120, 43, 54,193, 28, 49,176,233, + 5, 59,223,249, 6,115, 46, 66, 49, 7,255,145, 15, 13, 25,139,115,204, 39, 69,190,157,176, 4,242,242,132,220, 25,177, 79, 53, + 15,194, 41,128,204,180,217, 51,142,173,182, 15,141, 27, 76,195,159, 25,188,239, 85,178,221, 95,183, 26, 60,169,240,158,194,241, + 29, 56,125, 17,242, 39,232, 3, 47,166, 63,140,254,107,215,232,127,253,152,124, 87, 73,173,177,156,209, 98, 95,172,186,251,230, +210,133,144, 17,183,189,158,242,245, 92,127,164,231,221,132, 16, 26, 38, 11, 14,188,173, 94,103,107,219, 74, 82,123,245,216,147, +219,218,182, 2,184,134,163,174,227,199, 67,176, 38, 70, 83,199,167,246, 10,207,124, 35,236, 98, 50,117,133,154,211,210,186,143, +189, 67, 57, 6,223, 20, 82,241,150,110,193, 88,162, 98,172,154,144,148, 73,106,206,170,104, 53, 72,118,189, 37, 53, 96,187, 11, +191, 30,167, 83,108,228, 3, 77, 19, 58,184,106,168, 30, 15,171, 47,186,105,162, 36,159, 19,151,184, 6,169,139, 36,218, 54, 38, +144, 32,185,149, 56,147,181, 51, 48, 79, 63, 44,182, 23,132,154, 53, 64, 75,189,165, 59,132, 93,116, 10,177,199,218, 85, 57, 19, + 65,244,182,123, 83, 33,103, 39, 99,234,197, 30,189,186, 71, 59, 29, 88,230, 19,183,115, 97, 81,165,132,210,187, 83,224, 2,108, + 14,106,232,180,243,207,165, 69, 78,119, 39,214,244,239,139, 86,180, 68,139, 77, 52,193,144, 17,205,254,247, 94,169,170,103,120, +180,226,164,123,205,201,197,104,209,246,182,214,168,165, 3,102,188, 58,214,148, 93, 76,187,148,176,153,186,176,167,133,119,240, +195,176,148,179,229, 74, 97,208,196, 48,238, 72,121,160, 24,204,243, 28,209,165,217,157, 0, 34,148, 82,227,119,248,176,219, 70, +147, 99, 87,171, 61,159, 54,103, 29,123, 43,182,229, 34,124,168, 52,246,103,182,131,102,106,173, 80, 11, 7, 73,220, 62,125,202, + 43,151,151,124,208,140,229,224,244,203, 86,125, 92,184,234, 34,162, 80,108, 89,168,181, 98,165, 70, 39, 64,183,238,152,124,184, +242, 22,209,179,124, 67,215, 31, 61,135,165,144,239,221,114,127,177,245,126,254,255,210,191,122, 55,127, 30, 44,172, 63,178,198, +115,234,121,252,227, 11,189,253,118, 22, 34, 49,135,192,227,196,166,186, 94,162, 82,184, 81,225,118,231, 15,232,248,229, 91,242, +223,185,241,121,226,143, 14,158,168, 54,203,202, 89, 39,123, 28,167,237, 4,145,119, 73,239,127, 29,185, 63,145, 7, 97,119,156, +217,165, 16,115,201,134, 83,145,206, 4,181,202, 96,141,125, 86,174,166,204,176, 27,144, 65,209, 41, 33,151, 9,238, 13,126, 74, + 60,201,122, 44,119,129, 67, 40,213,155, 7,128,203,253, 1,125,121,132, 33, 98,245,118, 78, 51,146,218,252,160,112,145,144,187, +153,116, 87,201,248,130,111,197,189, 43,122, 1, 50,186, 21,206,145,237, 78, 91,145,151, 6,248,152,194,213, 15,128, 93, 32,135, + 95,136, 39,251, 0,243, 18, 43, 98,103,103, 38,184,163,240,179, 79,224,183, 79,216,163, 25,153, 27,188,146, 96, 81,228,245, 9, + 94,157,224,241,226, 23,120, 18,248,214, 66,251,237, 3,229,184, 56,247, 28,161, 54, 13, 21,177, 57, 36, 33, 52,105,201,186, 10, + 93, 72, 89,124,206,103,158,200,150, 31, 76,164, 55,119,200, 43,147,223, 77,223,157,177,111, 30, 41,143,102,202,161,113, 60, 19, + 3,153,109,160,160,222,194,110,182, 41,232, 58,236, 38,169, 48,168, 48, 38, 97, 63, 56,124,102,184, 59,144, 94,223, 35,175,141, +112,223,145,187,124,115,134,251, 2, 23, 81,178, 28, 13, 57,128,220, 17,248,160, 34,175,100,184,183, 11, 16,140,162,181, 33,179, +145,159, 45,171, 24,200,100, 19, 65,157,143, 8, 68,182,104, 77, 61, 19,211,145,194, 46, 85,226,126,200,126,205, 48,144, 81,224, + 50,251, 97,106, 48,228,132,179,234,101, 27,136,174,247,207,224, 35, 5, 73,157, 87, 29,179,116,141,255,238,127, 31, 61,135,154, +203, 4,175, 85,100, 47, 48,253, 4,200,126, 45,239,229,213, 95,194,254,250,239, 98, 57,129,182,231,230,234,231,170, 87,225,249, +127,176,182, 9, 41, 42,231, 62, 86, 57,107,185, 75, 84, 22,182,169,249,215, 74,127, 83,173,251, 89,119,179,166,173,115, 62,219, + 4, 69, 45, 42,229,206,198,239,249,229,213,132,114,230,205,174, 43,245,109,179, 5, 72,120,174, 53,123, 40,134,224, 30,240, 33, + 39,210,144,201, 17,252, 81, 3,114,180, 52,143,173,148, 97,244,192,166,174, 38, 31, 6,218, 48,193,184,195,166,157,255,174,243, +236,213,249,144, 33,143, 94, 49,151,133,118, 58,122, 12,108,242,182, 52,170,222,166, 87, 13,116,104, 91,149,207,117, 77, 2,220, +188,145,174, 77,168,155, 29,171,139, 32,251,225,241,236,222,146,149,134,231,107,233, 46,206,176, 41,124,202,179, 41, 53,152,250, + 93,196,217,131, 67,194, 45,237,133,241,229, 53, 88, 99,153,143, 28,151,202, 44,137,170,153,150, 39, 76,242, 6,118,233,136,218, + 46, 16,196, 60,199,189,139,192,130,119,222,172,110, 48, 35,186, 64, 48,163, 17,225,169,113, 93, 92, 91,236, 48,149,243,239,105, +214,176,226,213,121,181,141,152,166,241,218,152,209, 22,239, 2,108, 29,247,180, 97, 23,217,238, 53,206,245,104,226, 51,255,113, + 24,153, 46, 46,200,227,196,220,140,211,225,198,127,102, 31,249,136,227,151,169,109,165, 43, 34, 91, 85,155, 66, 99,213, 98,166, +221, 3,128,164, 39, 87,225, 86, 51,105,182,126, 96, 61, 86, 85, 67, 96,105,170, 72,171,228,148, 72,195, 68, 85, 23, 20, 30, 69, +121,252,244, 9,229,116,136,238, 69,116, 67, 35,138, 86,196,159,237, 98, 80, 79,135, 24, 81,180, 45, 66,248,133,137, 62, 1, 65, + 18,217, 6,109, 98, 91,128,147,124, 4, 96,230,121,157,187,125, 20,131,102,171,212, 69, 2,135,152, 66,225,217, 96,136,190,170, +198,236,168,179,175,123,229,222,236,188,114,119,101,244,100,112,140,212,139,169, 91,108,212,125,197,199, 65,184, 25,149, 87, 14, + 71, 30,252,247,111, 51,252,223, 55,200, 95,125, 25, 62,117, 15, 25, 34,239,252, 13,133,227,128,236, 27,242,206,251,200,165,186, +180,246,100,228, 60,113,241,184, 50,206, 11, 83,105, 12, 5,230,106, 28,171,119,244,181,129,148,138,230,130,214,140, 12,151,176, +223,251, 65, 97, 39,176, 31,189,229,127, 58, 65,137,184, 65,196, 45, 91, 39, 67,170,231,148,234,117, 70, 46,242, 26,130, 41, 26, + 54,171,253,232, 37,237,212, 72, 53, 99,195,136,126, 48, 81,254,233, 13,203,239, 30,105, 55, 13,189, 82,184,219, 96, 17,172, 8, +146, 11, 60,220,249, 83, 45,226, 41, 40,243, 63,246, 63,205,160,156,176, 99,196,176,246, 82,230, 66, 92,204,240, 79, 14,212,188, +208, 78, 11,250,181,133,244,125,131,255, 30,151,161,124, 43,226,136,182,177,121,117, 72, 7, 36,244,116, 33, 11,245,238, 38, 44, + 82, 54, 24, 77,138, 13,190, 11, 10,117, 76,232, 85,134,171,209,191,225,216,224, 81,165, 30, 10,118, 44, 44, 37, 40, 93,161,185, + 72,201,219,237,125,243, 44,109, 83,153, 55,182,106, 53,197,220, 62,171,127, 20,178,243,205, 83,122,111, 60,121, 70, 59,173,151, +123, 13,189, 74,216, 32,200, 28, 24, 89,105,216, 23,110,144, 63,185, 67,238,239,176, 55, 26,114,218, 51,136,103,212,223,121,231, +128,101, 33, 69,247,230,140, 32,187,158,100,211,115,170,244, 13, 65,218, 4, 90, 49,100,110,180,165,210,142, 5,125,164, 88,255, +165,239,140,200,171,187, 21,228,194,187,190, 33,182, 82,177, 98,235,125,228,130,163,173,156,150,190,211,174,146,235, 16,173, 44, + 13,158,137,219, 17, 31,188, 5,237,125,208, 7,241, 84, 93,193,195,127,157,244,211,191, 74,251, 27,133,244,170,146, 91,101, 89, + 67, 70,236, 57,226, 92, 39, 99, 57,237,139,109,241,235,115,194,118, 54,202,236, 77,169,216,112, 83, 84,236,231, 0,151, 53, 13, +109, 85,116, 7, 31,123, 5,164,123, 62,173,213, 45,204,163,243,225,107,156, 73,157,199,238,180, 51,225,121, 98, 28,161, 52, 95, + 15, 59,221, 87,237,242, 55,114,171, 12, 36,116, 72,216,169,156,217,181,146, 39, 34,214, 22,228,197,130,106,194,198, 17,149, 33, +238,203,160,171, 13, 67,216,155, 20,155,143,216,124,112,190, 4,184,109, 45, 37,183,241,105,194,146, 15,184,235, 25,194, 84,195, + 86,166, 57,109,222,242,224,230, 23,220,226,213,120, 94,200, 45,103,225, 89,221,138,215,100,155,209, 14, 41, 86, 19,243,188,117, + 98,115, 39, 18, 18, 53,230, 44, 93,171, 96,102, 48, 78,180,101,102, 89, 22, 78,167, 19, 75, 53,150,136,231, 21,150,128,199, 68, +117,151, 61,246,212, 84,221, 82, 59,237,189, 13, 94,230, 21, 23,219, 22,239,135,104, 18,134, 97,242,120,217, 62,211,213, 28, 65, + 39,230, 52,184,142,130,213,158,211, 29,235,125, 41, 17, 21, 26,237,102, 17,199,196, 34, 78, 83, 91,102, 95, 20,206,139, 63,219, +196,140,222,138,174,207, 69,225,246,153,114, 82, 37,143, 99,240,213,149, 82,143,107, 87,224, 57, 32, 82,171, 27,237,149, 13,202, +162,113, 88,108,103,140, 56,255,124,210,154, 6,106,210,226, 61,217,218,193, 16,112,119, 65,140, 97,146, 8,105,156,200, 73,253, +154,150,133,211, 60,115,120,252,129,163, 92, 45, 58,110,107,203,223, 15, 11,170, 66,213,196,114,184,197,150,226,225, 76,145, 89, + 96,234,194,234,205,237, 17,249, 8,210, 43,117, 63,144,183,243,230,250, 11,221, 4,251, 8, 64,172,125, 68,213,222,255,146,239, +134,120,163,136,123,211, 23,235, 73, 93,158, 97,125, 48,215,103,153,179, 72, 86,235,139,196,134, 63,190,208,205, 56,154,197,220, +200,219,124,217, 60, 4,225,152,132,155,189,240,116,223,120,245, 43, 79,184,250, 75, 39,228,223,188, 69,254,226, 67,216, 11,150, + 95,162,181, 55,145,227,140, 62,125, 31,153,129, 71,126,242,179,212,144, 1,116, 86,198,164, 92,139,249,102, 46,158, 60,214,250, +195, 85, 64,150,226,182,180, 36,112,121, 9,247, 38,120, 9, 56, 10,242, 94,195,180, 33, 86,177,185,177, 6, 12,223,201,232,195, +201,103,227,163, 64, 83,175,214,198, 16, 9,141, 97, 65, 58,156,224,105,245,104,191, 34,164, 87, 7,236, 73,161, 62,105,180, 15, +140,180,107,222,182,190, 82,236, 8,178, 68,168,185, 42,212,103,200,252, 36,230, 60, 7,236, 20, 23,187, 68,127,111, 23,153,236, +191,248,140,118, 40,216, 93,195,230, 74,125,180,160, 95, 62, 33, 63, 49, 5,173, 46, 46,248, 69, 88,163, 98, 39,147, 41,147,150, +230,155,117,242, 89,104,171,207,159,250, 68,108,173, 84,221, 89, 38,164,164,232, 69,246,121,250,165,130, 41,118, 91,176,219,138, + 29, 42, 45,162, 86,103,219,216,231, 22,221,229,210, 89,235,201, 63,231, 30,233,184,194,110,116, 99,178,187,129, 65,144,203, 12, +187,193,231, 59, 57,195, 55,102,236, 59, 5, 94, 51,236,169,159, 28,229, 42,146,245,212,165, 7,242,126,195,126,227, 9,242,227, +247,224,229,201,237,145, 18,234,232, 95, 51,238,190,127,226,105, 22,199, 13,159,181,172,107,188,251,132,121, 32, 86,131, 23,249, + 55, 45,153, 47,214,115,163, 29, 61,249, 79, 6,133,189,122,231,101, 63,192,107,178,198,123,202, 7,254, 96,180,217,129, 67, 22, +220, 90, 29, 4, 75,194,122,250,105, 94, 25,172,195,109, 11, 22,251,193,224, 3,224,245,247, 97,121, 7,134, 31,136, 82,123,128, +244, 39,208,127,231,147,232,223,248, 50,169, 36, 70,169, 20,188, 2,174,103,208,148,142, 50,213,248, 71,167,198,217,214,146,238, +226,186, 51, 25, 90,138, 10,176, 87,214, 43,199,253, 76,168,100,237, 69, 4,134,156,197,148,250,168,199,108, 99,161,154,232, 74, +217, 90, 35, 54, 61,154,100, 83,238,214,136,173,140,217,185,160,158, 94, 38, 91,183, 71,226,144,144, 74, 65,166, 29,101,151, 54, + 28,109,139,132,177,197,193, 25, 41,103,100,156,124,174, 27,164,196, 86,253,103,212,214,176,229,228,239,107,153,209, 90,124,212, + 52, 12,174,126,111, 46, 14,107,187,168,194, 14,199,141,212, 19, 95,131, 24, 73,140, 83, 28,136, 37,198, 23, 82,206,104,113,241, +231,144,182, 71,176,156,193, 94, 82, 56, 16,186,208,208, 35,131,109,245,172,247, 36,182, 28, 7,155,117, 20, 97,193,104,215,204, + 92, 10,199,121, 94,237, 96, 22,209,188,114,170, 46, 92, 27, 6, 48,113, 92,112,110,212,154,160,229,141, 30, 41,201, 5,113, 73, +145, 97,192,138,195,120,114,242, 77,166,210,199, 46, 78,191,244,106,126,243,153, 91,173, 88, 89, 34,156, 38,173, 51,103, 19,167, +131,246, 19,163,213,182,206,126,252,254,178,231,157, 26, 91,196,208,246,239, 93,183, 32, 78,143,211,148,209, 60,146, 82,162,224, + 8, 85,179,237, 48,233,152,227,182, 34,103,109, 67, 33, 70, 17, 33,235,166,184, 10,117, 53, 61,215, 89, 94,117, 14, 81,161,123, +154,155,119, 34,104,182,134,185,148, 82, 67, 36,232, 98,205, 60,140, 44,165, 4,163,190,108, 58,128,232, 20,104, 10,204,114,107, +212, 50,211, 37,153, 46,148,136, 92, 82,145, 77, 99,176,110,150,186,186, 2, 52,242, 3,186, 50,168,107, 94,158,171,210, 87, 90, +221,247, 20,194,111,240,153, 31,105,198, 44,194, 81,224,113,134, 91,115,194, 92, 50, 97, 15, 92,246, 8,112, 92,159, 53, 27,236, +194,175, 89,207, 5,179,103, 51,248, 19,190,145,239,154, 39,116,213, 80, 60, 46, 10, 55,131,242,236, 14,188,118,156,121,233,127, +253, 46,227, 23, 79,240, 87,239,195,103, 62, 6,111, 63, 68,228, 9,122,231, 6,174,197,171,154, 91,127,168, 41,213, 31,174,136, + 87, 28, 13,106,242, 5,163,103, 42, 39,241,133, 27,245, 42, 74, 70,241, 22,106, 18,184,186,194,246, 9,110,158,249, 83,218, 43, +167,221,136,126,242, 18,185,151, 97,111, 1, 38,136,147, 77,242,157, 64, 84, 48, 43,176, 27,125, 99, 63, 85,152, 13,185, 72,164, + 31,186, 66,190,189,248, 5, 42,225, 11,156,207,230,221, 6,164,201, 67, 90,218,201,167,143,167,234, 23,105,142, 50, 71,195,155, +190, 24,246, 43, 7,236, 42, 34, 11, 23,127, 47,237, 91, 51,233, 88,131,242,214, 96,183,248, 97,229, 80, 92,220, 53, 37,164, 41, + 67,107, 76, 33, 88,111,210, 61,198, 18, 9,121, 33,130, 49, 86,224, 76,198, 21,239, 58,102,184, 55, 34, 23, 41, 84,218,134, 61, + 45,216,220,168, 39,227, 84,124,131, 44,214, 33, 13, 27, 26,182,179,216, 85, 55, 26,203,185, 88,111,101,118, 35,232, 62,163, 83, +134,189,122,200, 9, 96,223,152,177,103, 11, 60,115, 31,172, 51, 93, 5,185, 56, 83,121,142, 5,249,154, 97, 15, 15,200,247, 93, + 97, 15,155, 43,150, 71,101,104, 2,191,246, 24,158,156, 56,170,112, 74, 17, 52, 19, 93,164, 62,232,215,152,187,245, 89,155,134, +229, 71, 82, 44,218,213,104,135,134,228, 70,122, 90, 96, 76,216,197,236, 7,184, 75,133,215,247, 80,253,100,157,222,181,213,223, +218, 78,113, 82,104, 32,201,252,251,163,106, 94, 87,252,236,195, 85, 91, 26,114,106,240, 52,193,233, 6,230, 95,135,253, 31, 96, +195,228,188, 2,175,255,123,164,159,254,207,177,191, 93,176,215, 19,195, 77,165,157, 55,222,206,132,136,171,136,110, 37,198,121, +217,173,104,232, 30,206,221, 43,222, 81, 91,146,231,134,175,191, 99,237,109,204,120,208,215,104,213,168, 76,187, 55,146,236,149, + 86,245,195, 33,205,144, 97,196,134, 17, 41, 5,155,103,154, 44, 97,137,218,184,239,172,249, 3,129,157,109,254,251,228, 30, 37, +107,198,128,178,164,204,148, 35,222, 50,101,234,241,136,150,194, 14, 40,121, 96, 25, 19, 53,170,112,103,206, 87,199,207, 54, 67, +171,145, 90,128, 80,186,157,104,157,181,102,210,144, 2, 40,100,180, 20,190,226,182,101,109,232, 89,130,156,103,214,251,207, 40, +209,245,170, 97, 37,169,145, 51,207, 25,251,191,207,220, 91,219,186, 84,122,150,133,217, 66,107,100, 17, 93,168,146, 24,101, 99, + 58,116,148,174,164,240, 7, 4,206,245, 84, 11,181,132, 42, 31, 89,175,149,147,217,150, 46,247,166,213,130,150,130,230,193,173, +100,170,180,230,207,182,107,135, 22, 52, 42, 63, 77,105,229,246,155,165,109,179,169,109,157,235, 90,115,161, 23,165,110,246,180, +216, 50, 85, 19, 41,185,248,171,118, 79,123, 7,170,164,240,185,247, 36,213,179, 80, 30,139,200, 85, 86,225,165,110,164,187, 24, + 63,164,148,104,146, 56, 85,143, 87, 61, 55,243,187,149,113,123,173,243, 70, 88, 23, 38, 86, 51, 31,135, 18,121,234,113,223,119, +193,162,157,209, 0,147, 8, 57,229, 85, 88,231,143,105,163,205, 14,136,169,173,145,172,177,155,118, 88,158,176,101,241,215, 54, + 91,109,124, 93,123, 64,140, 82,106, 93,156,229,208, 71, 2,129,212,150,102,207,181,115, 36,184, 1,136,110,221,178, 78, 6,236, + 7,225,100,103,176, 41,158, 63, 38,189,208,141,252, 80,158,163, 25,233,191,249,254,221,231,239, 53, 87,172,191, 92,225, 65,133, + 7,102, 92, 38,184, 80,225, 78,242, 49,224,164, 49, 98, 92,163, 58,125,223, 26,116, 75,201,210,179,164,155,110, 3, 89, 45, 36, + 81, 97,148,234,234,227,195, 78,169, 25,166,239, 28, 25,254,254, 9,253,216, 45,242,123,158, 66, 73,232,242, 12, 30, 0, 59,117, + 25, 77,193, 91,229,161,100,180, 64,138,117,110,242, 16, 27,199,148, 96, 18, 37, 93,102,184, 28,225,206, 21,220,191,240,139,113, + 92,188, 21,209,212, 91,165, 55, 62,195,214,143, 95, 32, 63,180,131,169, 70,208, 65,184,247, 53, 16,119, 41, 57, 25,206, 12, 73, +230, 39,187,222, 94,108,234, 89,203,123,133,197, 49,132, 50,102, 84, 20,189,227,170,121, 30, 42, 60,188, 3,166, 72,121, 10, 86, +176, 83,139, 19, 82,172, 8, 67,136, 5,191,122,130, 95,189,193, 94,194, 85,231, 53, 20,241, 71, 72,115, 66,126,226,210,239,148, +233, 26, 46,127, 20,210, 35,228,155, 79,225,155,197,213,252,165,158, 59, 55,214,148, 49,141, 96,145,245,122, 41, 12, 73, 72, 99, + 66,167, 76,126,105, 66,190,111,135,220,223,123,155,243,221,153,246,246,137,250,184, 80,231,194,161,201,170,147,232, 51,199,172, +178, 10, 76,123, 80,130,200, 71,224, 97,197, 89, 57, 87, 10,195,253,145,244,112,135,188, 49,193,203,163, 71,141,253,253, 39,180, +182, 96, 41, 42,166, 28,243,234, 11,221, 86, 73, 83,215, 60, 60, 51,120, 53, 35,119,198,240, 95, 26,114, 61,160,187,132,190,219, +208,147,199,167,106, 98,101, 99,247,170, 48,105,132,144,196,172, 51,169,111,242, 57,185,157, 79, 34, 25,198, 15, 43, 26, 11, 67, +140, 11, 38, 31,140,202, 20,243,242, 57,126,126, 55, 32,219, 6, 14,146,236, 17, 94,114,198,106,151, 20,115,119,146,119, 1,166, +132,188,210,224,226, 8,187,159,132,244,160, 75,205, 64, 95, 67, 62,243, 51,216,223,122, 23, 27, 93,148, 86,187,158,225, 12,247, +138, 88,180, 74,159,167, 81,105,100,216, 39,241, 38,209,144,146,207,162,199, 17,153,118,232, 56, 58, 57,175, 72, 48,217, 59,188, +104,219,140, 87,255, 55, 96, 73, 49,205,129, 3, 13, 46,184, 14,136,186, 40, 72,202, 66,171,254, 44, 89,180, 73,251,205,215,206, +185,214,218, 55,145,104,249,139,147,220, 44, 15,222, 74, 31, 6,210,224, 63, 99,110, 66,209, 76, 30, 6,210, 56,146,134, 1,146, +122, 94,185, 53,134,230, 26,246,214, 60,222, 83, 59,218,181,197,225,165, 89,180,233,149, 60, 13, 30,189, 25,106,209, 78,207,236, +204,244,180, 6,208, 88,176, 6,162,149,219,182,234,176, 91,241, 52,200,207,221, 99, 92,240,160,151, 99,245,231,163,244,103,164, +111, 68,241, 48,166,222,214,143, 13, 63,197, 65,187,173,109,101, 54, 17,106, 30, 48, 29, 56, 45,133, 82,106,244, 61,226,231,134, +192,215,234,102, 43,108,165,120, 91, 58, 70, 16, 12,227, 26,231, 38,113,250,118, 86, 69, 8,218,162,125, 86,154, 81,231, 25, 74, + 4,203, 68,152, 79,247,255,107,140, 74, 58,119,185,123,192,123, 56,208,138,100,109,219,252,166,199,181,174,219,168,200,166, 0, +183,118,134, 3,118,178,158,226,175,145,135,137, 97,218, 65, 26, 56,205,142, 94, 85,137,216,215, 24,145,180, 37, 14, 50,102,207, +153, 77, 36, 14, 4, 73,213, 5,125,145, 12,234,113,195, 62,190,241, 2,191,110, 4,200, 30,222, 18,173,249,218,204, 5,110,173, + 82,154,185, 0,219, 64,114,136,255,138, 19,244,182,153,179,191,166, 14, 99, 56, 23,132, 90,150,104,141,202,115, 41,169, 26,185, +245,253,181, 36, 58, 84,170,186,142,128, 86, 44,109,173,107, 74,155,125,175, 93,251,133,192,151,243,178, 61, 50,222, 72,159,255, + 31, 95,250,124,250,131, 19,249,135, 71,118, 15, 71,238, 92, 38,238, 37,229,193, 34,188, 92,140, 7, 5, 94,170,198, 3,117, 56, +220,117, 18,174,146, 48,169,119,167, 99, 13, 99,140,205,117,212,205,194,148,227,212,175,122, 86,189,245,177,176,249, 60,188,142, +202,112, 88, 24,126,110, 70,143, 7,244, 15,206, 94, 49,138, 7,110,144, 4, 57,186,145, 86,150,176,198,196,160, 71, 85, 24, 84, + 25,212, 24, 21, 38,245,216, 86,189,235,100, 52,219, 93,120, 14,250,225, 0, 99, 67,110,193,170,248,140,195, 20,121, 56,160, 31, + 27,224,218,243,189, 58, 12,119,167, 0, 0, 32, 0, 73, 68, 65, 84,101,182, 51, 5, 71,243,141,195, 12,217,165,181,135, 42,234, + 27,187,244,214, 64,176,141,201, 62,255,215,203,140,220,155,144, 73, 60,183,251, 19, 25,238, 61, 64,150, 91, 40,183, 30, 98,114, +140, 77,189,167,147,236, 20,174, 18,252,236, 51, 63, 53,143,134,157,236, 57,196,171, 62, 85,228, 15, 93, 64, 46,112,241, 3,112, +249,103, 33,127, 3, 62,248, 22,252, 78, 11, 79,100, 64, 36, 94,196,179,190, 88, 53, 43, 12, 89,145, 81, 73, 23, 3,233,149, 9, +190,111,239,191,239,161,193,219, 11,246,238, 76,187,153, 89,142,198,225,172, 74,108,108,237,123, 51,159, 15,202,121, 54, 91,236, +232, 26, 27,127,138, 80,180,253,164,228,251,147,191,214,235, 59, 23,252, 61, 91,224,103,159,210,172,210, 74,195,110,154,111,126, +147,250, 6, 56, 70, 6,123,197,239, 1,113,188,152,188, 26, 4,184,197,231, 0,242, 32,147, 6, 69,159, 9, 90,141,220,162,141, + 74, 95, 60, 58,169, 76, 72,121,187, 6, 41,197, 67, 55,196, 38, 46,172, 68, 46,201,253, 1, 52, 24,241, 13,125, 28, 98,156, 18, + 54,243,178,209,169,104,125, 45, 13,107,228, 62, 26,161,226,118, 52, 25, 4, 25, 82,220, 47, 25,238,128,220,185,133,225, 30, 12, +159, 13,174,172, 1,123, 31,195, 60,250, 71,180, 47, 20,236,194,162,189,187,217,160, 56,163,218,157, 7,231,164,216,116,178, 12, +232,180, 67, 46, 46,225,226, 26,219,141, 14, 39,137,236,131, 84, 22,172,213, 72,213,234,161, 53,103, 18, 67,217,238,109,107, 17, +151,236, 50,113,127,221,181, 34,142,110, 93,173,216,178, 32,121,240,205,189,148, 77, 48,213, 89,218,189, 26, 73,217,121, 14, 81, +145, 19,249,223, 18, 29,160,170,137,162,138,229, 28,112, 41, 79, 14,147,230,182, 33, 48,114,246, 22,190,136, 39,165, 57, 30,217, + 92,200,213,140,214,138,183, 62, 7, 7,131, 72,107, 33,148,143,254, 74,140, 16, 68,206,208,219, 34, 46, 80, 76, 9,211,204,146, + 7,106, 30,176, 60,161,211,222, 81,210,105, 8,134,186,135,165, 44,230, 7,144,115, 98,158,157,105, 74,250,193,118, 58, 3, 98, + 73, 23, 69,245,192,151,102,190,145,152,145,205, 5, 87, 51,153,121, 94, 40, 22, 41,127,178, 89, 53, 27,155, 35,193, 86,125,200, + 70, 46, 84,201,174, 78, 95, 22, 74, 51,202,178, 80,235,178,110, 20,162,222,249, 44,157,146, 25, 66,182,182, 58, 32,218,217,125, + 21, 54,195,158,185,110,117,203,139,183,134, 68, 94,251, 74,148,139, 3,195, 42,100,238,248,214, 86,195, 73, 16, 80,171,179,180, + 41, 17, 33,229,145, 97,154,144, 52,176,148, 5,169, 21, 19, 87,161,151, 90, 86,165,189,217, 25,237, 80,117,205, 91,207, 57,147, +199,232,240,196, 1,167, 31, 94,218, 26,254, 19,202,255,176, 41,186, 88, 54,173,128,156, 46,112,236,188,118,213,228, 33, 58,170, +148,184,191,207,249, 23, 67, 30, 96, 24,144, 82,177,236,160, 29,106,217,210,236,226,224,224,243,254,188, 50, 1,122, 10,161,179, + 4,212,159,147,110,219,171,171,165,229, 67,184,237, 15,129,102, 94, 64,202,158,135, 64,100,251, 95,110,209, 79, 13,240, 35, 10, +159, 28,224,206,132,102,152, 30, 87,198,111, 26,252,118,131,175, 20,236,187,149,250,164, 82, 22,227,184, 52, 14, 2, 55, 98,220, +100,225,169, 9, 79,163, 61,191, 84, 56, 70,225, 90, 59,211, 57,102, 30, 37, 66, 67, 36, 42,246,163, 8,239, 42,212, 11,229,181, +121,225,238, 95,127, 76,250,142,192, 95,126, 9,125,115, 71,251,170,194,103, 34,244,113, 20,248,182, 32,143, 10,217,132,148, 42, +150, 98,209, 89,161, 21,134,142,186,149, 81, 30,216, 14,169, 98,247,119,112,167,193,147,131, 11,178,118, 6,247, 19,220,205,113, +196,238, 84,164,110,253, 48, 56,198, 21, 27,170,251,183, 35,217, 65,174, 67, 16,228, 41, 8,112, 87,209,107,131,161, 56, 98,118, +223,160,166,120,162,163,165, 93,159,122,151,224, 20,135,133,158, 35,154,204,219,187,223, 45,240,157,130,221,139,240,230,174,104, +147,234, 20,187,139, 56, 53,169,192,248, 38, 92,254, 24, 28,190, 2, 15,254, 9,161,228,193,102,247,209,134, 6,109, 5,179,240, +220,201, 17, 82,235, 85,168,207,179,184, 51,184, 64, 48, 80,145,148,182, 86, 84,245,156,101,189, 86, 26,231,173,172,176, 76,181, +109,211, 57,167, 45, 38,245,137, 68, 30,252, 16,193,148, 99,160,159,225,157, 91, 23, 93,197, 33,134,102,180,103,138, 94,248, 2, +205, 73,145,189,109, 38,104, 12,222, 45,216,151,158, 33,191,239, 14,242,112,244, 7,101,159,224, 39, 7,242,195,145,244,207, 14, +180, 71,179, 3, 72, 78,149,214, 10,197,220, 46,132,198,181, 89,129, 46,174, 74,239, 30, 36,105,206,185,111,181, 33, 82,145, 97, + 99,191, 90, 82,228,110, 70,174, 6,120,216, 28, 8, 4,200, 83,208, 91,176,157, 31, 76, 56,198,155,159, 21, 25,122,171,177,133, + 42, 62, 62,239, 83,133,111,103,120,229, 22,118,127, 15,118, 63, 14,195,143,132,177,116, 4,253,113,244,223,120, 5,253,155,111, +145,170,145, 66,113, 91,207,221,241, 1,186, 17, 4, 53, 63, 84,170, 38,223, 88,243,224, 21, 75, 53, 56,204, 62,103, 94,202,154, +238,226, 52, 70, 37, 15, 3,165, 41,181,154,191,103, 26, 90, 60, 65, 76, 37, 81, 83,138, 46,132, 99,114,125, 61, 86,239,172,168, + 98, 38, 88,202,232,110,196,106, 11, 54,249,128,236, 46,208,211, 28,156,116,175,222,172, 91,119, 36, 44,113,181, 34,230,130, 34, +143, 54,245,251, 37, 91,137,170,213,157, 13, 38,142, 65,117,108,157, 87, 80, 41,194,160,176, 70,138, 67, 73,130,160,167,137,251, +181, 25,144,113,128, 50, 99,102, 43, 44,198, 69,147, 78,152, 44,113, 0,110, 8, 45,101, 44, 57,236,166, 38, 65,135, 1,134,201, +237,142,154, 17,140, 82, 10, 66, 37,215, 25, 93, 78,228,200,193, 46,102, 31,130,118,166,228,143,107, 94, 89, 14,178,218,244,123, + 39,171,111,180, 53, 54,122, 81,111,197, 46,243,137,101, 41,158, 63, 17,113,167,137, 70,194,168,174,116, 12,171,152,109,163,147, +230,237, 34,107, 5,116, 88, 49,189,180, 74, 91,142,142,123, 77,121,125, 72,107,139,208, 39,210, 74,189,107,181, 63, 24,105,157, +237,183, 32,165,245,214,178,136,167,233,121,229,160,113, 64, 74,171,134,192,194,218, 74, 0,127, 86, 6,250, 89,122,217,106, 83, + 55, 99, 84, 71,225,142,195, 72, 27, 51, 50,187, 31,189, 90,163,198, 61,213, 90,228,194,155,160, 73,221,254,152,178, 87,203, 41, +187,112,143, 22, 9,106,178, 10,223,170,157,157,124, 3, 67, 75,116, 45, 45,249, 28,188, 44,209, 21,160,173,182,205,164,137, 33, +103, 52, 37,183,149, 6, 21,111, 85,218, 35,200, 48,208,106,139, 67,164,249,136,163,179, 15,122,167,164,235, 20,154,231,186,119, + 39, 64,159,235,183, 53,144, 74, 86,126,194, 71,123,207,237, 35,133,113,242,156,211,101,123,175,249,173, 95, 57,176,255,213, 35, +187, 44, 12, 59, 37, 93, 41,250, 70, 70,126,104, 64, 62,151,224,115, 19,118,255, 2,185, 49,134, 15, 26,249,171,198,238,139, 51, +247,126,103,161,189, 91, 89, 78,149, 83,109,220, 42, 60, 81,120, 60, 10, 55, 56, 64,238, 96, 27, 42,180,131, 72, 36,170,249, 73, +182, 40,203, 69,224,209, 36,164, 90,185,254,133, 15,188,205,250,151, 95, 66, 62, 57,193,215, 20,126,112,143,237, 78,160,234,130, +164, 99,246,211,193,209, 91,217,214,156,184,137,122,149,231, 67, 18,175, 74, 44,141,212, 87, 63,141,221,221,161,239,126,211,209, +176, 47, 53,184,111,174,176,175, 53, 72, 37,190,209,154,216, 25,146, 43,200, 68, 39, 67,238,157, 97,218,196,144,187,209, 70, 61, + 53,216, 3, 69,177,219, 80,185, 87, 28, 53,123, 87,195,166,117,240,121,249,162,222,210,239,189, 58,100, 83, 37,254,230,236, 21, + 90,242, 84, 52, 43, 21, 59, 86, 56, 84,218,169, 97,178,243,159, 41,234,116,146,225, 14,212,207,194,149, 87,145, 82,156,221,185, +212, 21,216, 70, 50,176, 49, 22,146, 53,111,193, 23, 28,153, 18, 58, 38, 31, 17,220,201, 46, 8, 19,117,181, 91, 87,154, 5, 62, +179,139,223, 90,124,102,185, 67, 93,162,149,111,155, 69,123, 75, 32,236,220,159, 8,141, 97, 23, 39,223, 41,124, 62, 9,248, 86, +193,114, 16,244,202, 86,229,154,121,117,110,179,107, 15,228, 94,246,141,189,199,174,189, 53, 99,251,103,200, 15,223,133,151,197, + 43,254,151, 12, 62,113, 23,249, 49, 33,125, 61,145,126,125, 71,125,107,161,220, 28,209,227,236, 24, 83,193,187, 61,153,205,206, +216,227,215,206,134, 85, 86, 27,237, 84,225, 54,218,149, 79,226, 90, 20, 69, 30, 36,236, 94,218,218,237,136,171, 72, 14, 29, 80, +232,159,175, 73, 67,170, 56, 0, 41,192, 29,235,124,162, 25, 60, 73,216,187, 5,185,122, 11,118,255, 39,220,249, 56,232,101,128, + 89, 30,192,195,215,208, 63,252, 54,252, 92, 35,221,137,241, 64,235,157, 18, 57,131, 9, 13,228, 72,168,210, 52,132,162,181, 66, + 93,226, 96, 86,189, 66, 26, 70, 44,169,111, 13, 18, 76,182, 82,144, 82,144,101, 33, 45,149,166,153,186,219,187,128,177, 95,151, +192, 68,163, 94,181,153, 66,121,250, 20, 59, 28, 28, 70, 19,212, 48, 29, 70,116,119,129, 13,131, 71, 94, 86,163,148, 5,171,213, + 23,215,210,182, 20,175,243,182,108, 84,110, 75,245,246,111, 27, 92,196,212, 59, 1,100, 69,107, 88,153, 52,121, 35,122, 89,200, +218,188, 29,175,130,204,133, 33,185, 34,190,106, 10,235, 21, 72,241, 64,151,108,142,186,173,103, 93, 14,149,234, 41,145,226, 17, +164, 86, 11,165,186, 32, 74, 69,208,211,193,253,239,217,173,115,102, 80,155, 35, 12,115, 31,160,231,201, 23,241, 84,145,214, 60, + 80, 37, 78,209,238, 93,223, 28, 33, 37,112, 20,205,188, 98,231,140,182,104, 18,207,106, 84,115,101, 89,162, 34, 55,106, 83,119, +143, 12,217, 63,218,210,104,197,239,175,231,225, 96, 45, 42,244,153, 52, 76, 43,163, 2, 29,161, 85,172, 26,181, 85,180,182, 53, +240,200, 34, 52,102,131,156,185, 34,218,219,236, 70,137, 16, 18,159, 84, 68,181, 94,159,239, 32, 18, 4,183,115, 76,234,154,216, +103,109, 85,215,182,126, 47,174, 9,114,230,241,186,211,158,105,127, 65, 26, 7,150,102,204,167,133,121,153,253, 94, 48,243, 42, +189, 85, 4,101,152,198,128,211,228,200, 56,240,251,184,181, 26,174, 28,215,126, 52,241,206,229,218,205,224, 57, 55,170,231,192, + 75,162, 45,243, 42,120,179, 56,240,174,227,195,148,104,170,110,237, 67, 72,121, 88,253,232,195, 48, 58,142,120, 89,214,131, 5, +185, 98, 53,196,163,182, 29, 36, 52,197,134,156,124,134,238,163,219, 45,111,221,171,110,221,170, 46,219,234,113,251, 30,114, 56, + 59,211,128,240, 34,175, 30,200,255, 56,114,212,247,139,177,171,149,171,167,133,235,183,102, 46,190,160, 92, 12,194,116,157,200, +175, 39,228, 71, 70,248,241, 17,249, 3, 3,246,167, 38,168,144,222,174,164,255,175,176,251,197,133,235,175,157,120,248,184, 49, +159, 42, 71, 26,143, 19, 60,201,194, 77, 8,130,139, 60,143, 16,237,164,177,169,251,134, 21,110, 51,140, 75,101,250,205, 39,240, + 95, 53,228, 47, 63,128, 31,188,128,127,161,200,247, 79,216,157, 1,222,159,144,247, 23,248,160, 97,143, 23,100,158,145, 42,207, + 39,107, 36,133, 57, 86,240,131,120, 40,202,245, 53,246,240,190,223,140,119, 26,236,139, 51,233,137,152,212,229, 12,145, 89, 3, +138, 82,193,118,138, 44,134,221,152, 87,179, 45, 54,253,172,176,111, 94,121,162,136, 85,159,141,223,198,162,253,122,242, 57,249, +238, 2, 78,199,144,144, 23,182, 94,106, 28,225,167, 16,212,189, 95,224, 37,241, 54,135,129, 29, 13, 59,248, 65,163, 29,219, 54, +235, 40,129, 23,179,147,127,117,168,192,168, 48, 38,210,220, 56,213,152,143, 6,231, 93,187,115,165, 17,115,178,132,236,146, 87, +234, 87, 25,121, 48,192,206, 33, 29, 54,183,141,140, 22,121,155,154,125,108,145,226, 20,174,230,228,178,174,161,168,109,227,204, +159,223,116,189,217, 48,164, 24, 81,140,201, 7,236,147,250,245,254,157, 19,114, 33,200,168,232,232,239, 77,162,180,177, 86,253, + 26, 29,154, 47,154,215,209, 55,183,120,177,175,159,176,252, 20,249,204, 93,208, 2,186,135,235, 31,133,151,175,225,205, 95,195, + 62,247, 91,164, 47, 8,250,203,153,242,254, 45, 44,139, 87,255, 1,190,247, 46, 92, 28, 0,149,231, 66,223,173,199, 87,222, 54, + 76,221, 18,213,129,230,214, 6,184, 55,194,125,117,187,157, 76,222,214, 93, 60,130, 81, 39,176,108,216, 98,125, 5,247,241,205, +178, 69, 82,130,193,105,129,119, 19, 60, 60,193,238,215, 97,255, 79, 97,250, 41, 23, 88,200, 29,224, 14,250,231, 39,210,207, 85, + 82,115, 14,195, 18, 84, 20,141,177, 65, 78,222, 45, 82,107,164,148, 2,140, 83,250,240,149,170, 25,147,236, 29, 4,107, 1,155, +153, 93, 77, 94,155,227, 62,155,243, 33,116, 24,104,227, 62, 14, 47, 33,205, 83, 9, 13,137, 87,236,173, 6, 31, 33,135,109,172, + 86,154, 86,207,208, 62, 29,145, 60,146,246,123,200,147, 87,152,116,178,154, 56, 76, 72,166, 16, 57, 85, 15, 2, 41, 37,102,185, +174,153, 47, 34, 17,237, 90, 17, 51,170, 10,102,213,231,155, 49,147, 7, 99, 10,198,190,228, 76,198, 96, 26, 97,186,164, 78, 59, +210,188,128, 46, 44,117,113, 44,180,120, 37, 88, 17, 71,165,246,172,117,105,254,115,211, 6,153, 49,171,110,229, 19,208, 38,206, +167,168,149, 90,107,204,191,235,154, 24,111,117,107, 69,155, 38, 39,218, 37,159,229,167, 86, 25,164,173, 27,250,233,140,229,223, +187, 91,216, 25, 93, 44,100, 60,162,202,177, 20,150, 90, 87,202, 91,177,198,128,144, 98, 99,211,148, 61,195, 94, 92, 83, 96, 18, +204,249,200,168, 71,132,188,191,164, 28, 15, 80,139,119, 20,243, 68,107, 39,170,249,238,155, 87,216,225,166, 77, 50, 9,197,184, +166,216,224,219, 25,101, 48,116, 10,210,206,136,112,182, 30, 4, 86,237, 68,216,197,172,143,116,154, 87,217, 91, 76, 96, 88, 93, +115,246,224,157, 33,147, 52, 57, 79,127, 41,204,165, 82,202,236, 7,227,206, 68, 23,111,117,167,113,242,141, 53,190,223, 67,124, +188,171,150, 12, 36,167,117,102,237,159, 83,132,211, 6, 55,163,213, 18,173,117, 89,113,183,198, 86, 65,119,114,167, 11,106,147, +243, 22,102, 31, 93, 16,116, 56, 17,101, 24,132, 52,142,222,180,237, 17,198, 61,165,206,156,210, 41,105,235,112,184, 83,172,190, + 48, 35,119,167, 76,171,171, 49,207,133,216,108,162, 82, 59,115,160,219, 71,196, 90,159,195,225, 95,252,174,252,229,197,188,106, + 22,200,205, 5, 69, 89,225,130,198,117,129, 7,239, 23, 30,190, 7,119,190,116,224,234,111, 37,198,187,137,225, 83, 35,242, 71, + 38,236,247,143,216,159,184,128, 63, 45,200,163, 70,250,157,194,197, 47, 47,236,127,253,196,189,239,158, 88,142,149,185, 54,110, + 7,113, 33,187,186,237,104, 6,154,186,144,164,198,252,189,152, 48,155,113, 51,129, 46, 30,246, 98,255,109, 66,255, 35,129, 31, +190,192,126, 59, 33,159, 29,177, 35,240,237, 25,190, 60, 35, 39,193,170,120,123, 60,157,209,213, 74,108, 16,178, 64,109,232,119, +223,130,203,167,240,202,222,231,162,185,249,124, 32,141, 62,172,173, 17,174,210, 43,137,106,216, 28, 11,127,113,178,154, 28,138, +179,214, 59,236,185,246, 40,167,120, 90, 71,133,151,212,155, 51,115, 12,146,175, 7, 63, 68,156,138,183,193,151, 80, 24, 31,227, +233,206,226,173,227,155, 6, 79,189, 36,182, 83,156,118,187, 42, 71, 67, 29,216,177, 98, 43,255,245, 25, 44,191,238,135,151, 69, +125,244,144, 29,166,146,130, 91,189, 52,176,131,145, 6,143,164,213, 20,200,220,193, 55, 89,149,128,172,236, 6,239, 73,159,218, +243, 97,215,230,194,136, 20,196, 52, 11,244,169, 74,231, 39,199,223,117,243,176,219, 70, 7,101, 8,221,133,230,128,198,236,146, +107, 7, 46, 7, 23, 62,190, 91, 87,224,140,180,230, 35, 14,195,243,225,155, 34,131, 97,218,252,134,121, 26,194,201,148,253,115, +154,178, 3,122, 46,158, 32,111,188, 12,135, 35,180, 59,176,255,183, 32,255, 37,228,226,239,193,197,127, 7,211,129,252,143,174, +144, 15, 14, 94, 57,186, 36,117,179,151,232,153,194, 79,227, 51, 9,152,139,149,134,221,198, 98, 36, 6,143,226, 48, 86, 4, 30, + 12,216,189,209, 53, 14,217, 63, 91,185, 1,158, 9,146,131, 60, 23, 7, 67,159, 67, 4,146,167, 11, 78, 26,206,237,255,160, 32, +151,239,194,205,207,195,240,105,247,173,235, 4,250, 83,200, 27,191,140,190,158,209,239,156,152, 46, 61,195,187,246,200,220, 36, +228, 88,220, 68, 70, 68, 51, 84,159, 71, 10,174,242,182, 90,124,243,172, 62,255,108,226, 42,255, 26,149, 73,141, 42, 76,114, 70, +242,228, 85,123,199, 47, 71, 6, 4, 75,217,136,115,181, 4,246, 85,176, 97, 8, 50,153, 83,199, 90, 53, 88,102,172, 84,116, 60, + 65,158,220, 74,150,167,245,126,160,248, 1, 96,141,192, 76,201,253,254,134,255,190,209,146, 84, 77, 94,205, 90, 99,142, 10, 44, +229,236,135, 9, 19, 74, 54,234,168,107,117, 92,135, 29,146, 71, 70, 17, 74, 30, 97, 62,209,110,235,218,113,104, 98, 43,168,197, + 90,245,138, 61,208,183, 26, 50,120, 85, 65, 99, 4,211,158, 19, 35, 57, 78, 90, 52,121,219,182, 86,172, 45,219, 92, 75,148, 20, +248, 64, 77, 3, 50,141, 36, 42, 99, 89,160,250, 6, 93, 59, 82,180, 19,131,215, 42, 51,110,195,216,188,172, 25, 75, 93,188,179, + 97,193,221, 15, 65, 94,238,177,162,109, 19,164, 33, 9,197, 91,233,162, 33, 34,107,133,122, 60,160,227, 68, 61, 25,182,212,136, + 27,245,158,125, 13,162,166,132, 69,211,226, 61, 16,221, 17,135,166,132,229, 81, 66,240,169, 1,117,169,177, 70, 69, 43,187, 61, + 23,155, 26, 91,139,181, 16,117,122,152,137,133, 45, 80,146,146,243,232,225, 39,225,139, 47,165, 96, 82,215,177,145,157,253, 28, + 49, 97, 76, 35, 50,106,204,164, 99,105,106,117, 61, 84,136, 36,134,232,122,216, 89,220,116, 78,201, 9,143,177, 73,214,142, 85, + 12, 18,161,196,193,196,171,253, 20,156, 15,141, 66,197, 29, 8, 37, 0, 60,173, 5,231,192, 42, 25,193,210, 64,105,222,125,106, +165,197,178,108, 43, 80, 38,169,250, 1,163, 69,236,113,173, 33, 48, 13,205, 65,117,193,162,167, 94,182,176,152,198,181, 93, 67, +185,228,123, 10,228,214, 42, 93, 94,228,208,108,147,247,124, 91,225,131, 56,189,105,204, 69,122,108,233,133,194, 78, 60,154,243, +158,192,131,218,120,240,110,229,213,119,103,238,127,225,150,139, 75,101,248,248,132,254,145, 29,246,199,247,240,123, 6,236, 39, + 46,224,105, 67,190, 50, 51,254,226,194,248, 47,142, 92,126,119,230,193,161,112, 59, 55,158, 42, 60, 27,133,219, 24, 43, 31,101, +139,143,208, 32, 53,230, 1,212, 10,249,219,207,104,255,131,160,255, 62,200,103,175,176,247, 12,185,239,155,177, 29,131, 2,247, +182,250,238, 53, 5,147,177,212, 77,205,181, 23,111,181, 78, 21,238,220, 64, 59, 98,179, 35, 15,209,140, 77, 13,169,147, 63,184, + 41,146,217, 78,165,251,128, 66, 3, 21, 96,148, 20, 54,183, 59,195,115,209,124, 44, 49,184, 22, 65,238, 77, 62, 87, 47,192,221, +228,135,128,229,128,149, 32,163,244, 77,221,226,130,167, 64,212,254,230, 1,150,134, 93,130, 29, 10,246,172,110,225,228,241, 64, +112, 39,210, 90,108,128,241, 83,193,164,252,142, 19,217, 58, 35, 85,188,221,155, 22,235, 33,104, 20, 17,108,113, 27,155,142, 49, +251, 24, 18, 58,170,207, 13,175,146, 75,211,163,213,202, 77,141,124,118,127,111,238,108,144,181, 5,223, 21,245,253, 32,143,201, +202,124,239,205, 7,139, 42,126, 80, 15,145, 75,131,122,151,227,110, 14,139, 66,130,223,121,134, 61, 94,176,215,187, 39, 40, 4, + 23,139,159,250,156,135, 28,106,242,165,109,171,225, 16,194,201, 33, 98,125,127,235,128, 77,143,145,151,238,194,241, 31, 66,249, + 41,216,255, 17,200, 63, 13,118,131,252,161,255, 9,134, 35,249,103,119,200,141, 80,106,241,214,250, 25, 67, 86,244,108,115,175, +125, 1,118, 95,117,107,134,158,234,154,220, 68, 57,185,205, 82,128, 7, 25,185,202, 30, 14, 36,138,188, 29,179,224, 67, 13, 59, + 78,111,109, 38, 79, 43,236, 89, 3, 57,200,110, 75,131,167, 10,203, 2,243, 91, 80,223, 1,153, 64,238,193,248,167,225,206,255, +140,254,177, 70,254, 63, 38, 76, 11, 23, 97, 23,109,173,249, 25, 52,103,200, 59,191, 79, 79,199,128,123,120,123,166,206,133,186, + 84,154,149, 21, 41,155,186,234, 60,178, 19, 90,180,254,210, 48,122,136, 71,100, 38,180, 26,149,189,197, 40,164,127,175, 66,109, +226,155,189,132,206, 0,127, 14,181,187,108, 69, 98, 62,191, 68,186, 91,168,239, 99, 67,110,167, 19,173,206,171,189,135, 14,250, +104, 94,117,169, 40,150, 50, 77,189,147,196, 52, 98,201,171,116,137,236,238, 74,117,122,153, 25, 69, 71,218, 82, 24, 14, 55, 78, +248, 34,193, 82,208, 90, 86,183,192,210,124, 62, 75, 11, 24, 72, 87, 74, 18,224,153,240, 53, 73,191,215,215,249,127,143,104, 45, + 46,188,142,182, 45, 75,241,217,126, 2,165,117, 84,149,199, 66,227,179,107,221, 93, 80, 85, 97, 62,193,241,228,149, 98,124,223, +220, 54, 22,122, 86, 33, 27, 40,149,210, 95, 39,150,251,190,102,151,160,252,229, 96, 46, 44, 86,157,185, 46,190,142,121, 0,157, + 5,190,181, 32,183, 79, 25,199, 29,146, 7,218,241, 22,149,192,188,182,138,217,226, 51,231,228,130, 97,103,192,119,165,127, 13, +104,239,246,254, 45, 41,174, 61,235,163, 5, 57,195,156,186,213,108,181, 94,181,182,165,243, 53,223,176, 82, 14,177,162, 38, 74, +107, 44, 37, 44,107,205, 28, 11,156, 61,148,198,186, 54, 64,132,156, 7,114,118, 66,158, 9, 46, 84,171,171, 12,209,109,205, 57, + 99, 42,148,165,132, 3, 34,236,139, 34, 12, 73,227,250,137, 87,243,173,249,216, 49,126,151,166, 10, 75,241,131, 78,192,107,170, +128,182,186, 6,252,132,247,114, 21,203,250, 60,222, 29, 24, 22,179,114,107, 45, 28, 51,234,203, 73,159, 73,226,163,189,222, 33, +235,182,189,166,186, 10, 29,215, 89,154, 74, 64,127,218, 11, 1,172, 31, 81,165,191,152, 42, 39,231, 2,185,109,204,144,254,192, + 94, 63,223,139,200,163,193,108,226,130,183, 22, 73,108, 45,144,213, 38,188,103,240, 45, 17,190,153,132,239, 40,188,127,106,156, +222, 91,224,139, 71,210, 63, 56,146,126,225,132, 62,110,240, 70,130, 31, 24,225, 39, 39,248, 67,123,228,205, 29, 58, 12, 76, 71, +229,242, 88,185, 92,140,203, 30,240,209,125,123,177,182, 75, 4, 66, 37, 13, 81,221, 98,216,111, 25,242, 3, 9,121, 35,195,219, +230, 22,178,251,142,108,229,158,248, 6, 58, 70,117,124,111,128,171,193,255,173,207,111,115,194, 87,196,134,220, 46,126, 50, 46, + 11,210, 15, 0, 75,236, 84,199, 88,236,107,136,153,196, 85,234, 82, 28, 94, 66,210,168, 22,117,203,249,124,142,210, 31,253,238, +189,122,238,249,157,228,172,203, 18, 39,152, 83, 92,228,110, 85,187, 8, 31,253,223,125,134,205,197, 5, 99,207, 10,237,209, 18, +254,231,104,127,215, 68,122,243, 18,249,253,123,144, 17,174,127, 26,242, 67,223,196,126,247,171,216,111, 66, 45, 75, 84,184,182, +182,250, 56,219,132, 83,204,210, 73,138, 94,103, 23,155, 92,142,240,241, 61,242,210,206,223,219, 51,131,247, 78,240,120,161, 61, +153,169,207, 22, 63,117,203,115, 41,134, 94, 69,233, 38,154,227, 5,230, 58, 34,140, 34,236,146, 31, 12,243,229, 64,126,117,143, +188,186,131,215,246,240,242, 0, 95,124, 74,251,242, 45,118, 41, 91, 37, 59,168,123, 75, 3,122, 46,221, 42, 22, 10,236, 62, 64, +236,137,181, 82, 5,116,240, 46,199,117, 69,174, 39,120,246, 15, 97,124, 3,134,215, 32,127, 26,166,215,145,135,191, 1, 23, 71, +244, 59, 25, 89,100,141,141,117, 11,154, 70, 91, 92, 86, 64,189,104, 90, 57,201,231,246, 64, 66,113,237, 76,228,248, 12,119, 26, +163,143,205,168, 44,221,188,172,226,153,215, 35,200,190,219,220,196,131,140,114,228, 6,236, 19,114,183,193,120, 5,187, 79, 65, +254,184,163, 99,211, 61,224, 55,144,139, 47, 99,191, 58, 96,183, 46,222,179,218,168,166,200,176, 67,246,147, 87,142,203, 66,173, +149,138, 82,154, 58, 64,163,122,151,234,124,218,211,149,178, 45, 54,105, 65,169, 50,210, 36, 69,104,134, 87, 12, 93, 84,103,182, +109, 88, 22, 45, 88, 59,135,128,212, 13, 71,234,239,103, 64,198, 93,159,109,108,243,204, 97,192, 82,222,146,163, 67,216, 83,197, +253,209, 18,149,176,228, 33,190,124, 83,148,253,133, 91,169,140, 32, 49,122, 53,163,101,102,160, 81, 82,102,174,149,118, 56, 58, +220, 72,140,211,233,200, 50, 31,161,245, 48,164,110,212, 98,157,211, 98,205, 59,146,201,159,229, 6,212, 26,232,219,213,193,177, +129, 86, 4, 23,160,182,148, 61,215,178,121, 68,236, 16,238, 14,119, 63,170,171,229, 53,185,166, 96,220, 33,215,247,176,253, 61, +170, 36,183, 69,213,122,230,179,246,194, 33, 99,164,228,135,196,197,132, 83, 21, 90,228,244,249, 51,213,179,201,187, 56,181,115, +243,195, 82, 22, 15,157,230,140,232,232,127,166,228, 42,111, 17,202,233,224,155,117,202,190,177,135, 77, 46,231, 17,212, 69,102, +173,213,149, 69,222,211,248, 68, 4, 13,123, 92,171,238, 73,151,190, 0,196,252,255,220, 98,166,225,175, 23, 81, 7,202,228,236, +155,168,166,168,202, 23,202,105,166, 84,199,213,106,210,192,254,194,144, 51,211,232, 97, 46,118,174, 60,151, 62, 51,119,225,174, +158,165, 32, 54, 51,106,109,212,110,201,107, 27,139, 67, 84, 73,162,228,193, 35, 92,171, 53,218, 82, 72,154,200,195, 16, 29,155, +182, 22,146,162,178,206,213,205, 44, 28, 33,222,181,144,184, 46, 73,125, 92,160, 42, 36, 52, 68,143, 45, 14, 44, 26,174, 44,167, +203,137, 38,135,251, 68, 40, 76,199, 71, 91,160,106,183,232, 97,255,236,106, 41, 62, 26, 92,119,194,239, 81,165,235,139,161,235, +155,100, 78,206,182,245,244, 83, 23,250,121,214, 28,245,152,127,219, 86, 88,206,205, 79,150,135,232, 16, 63,109,240,212,132,247, + 27,124, 71,132,111, 37,225,219, 34, 60, 58, 85,234,123, 11,250,207, 14,164,127,112, 75,250,245,130, 92, 24,188, 49,194,103, 71, +228, 39,247,240, 99,123,244,114,100,168,153,221,177,113,117,104, 92,182,240,126,246,152,164,190, 87, 42,100,179, 80,185, 26,246, + 85, 67, 62,149,145, 55, 6,236,253, 6,151,134,220,207,112, 21, 39,250, 34,222,166,189, 12,113, 90,247,171,140,177,240, 7, 5, +142,147,192,222,206,200, 95, 45, 44, 58, 46, 18,243,232,190, 32,183,168,251,163, 93,169,146,145,166,112, 61,250, 70,220,129, 10, +242,194,160, 67,146, 31, 42,238, 69,148,231, 28, 28,213,131,249,151,157, 33,137,238, 13,112, 91,177,127,126,194,172, 80, 31, 23, +152,227, 67, 63, 86, 23, 9, 13,137,100,137,244,169, 61,242,185,236,232,185,235, 63, 3,249, 62, 28,255, 31,248,157,111, 96, 95, +129,182, 20,183, 29, 45, 22,194,159, 77,237,174, 94,156,175,158, 73, 29,148,116, 53, 32, 15, 70,228,245, 29, 60,112,118, 51,143, +102, 87,151,223, 46,212, 39, 11,237, 89,241, 86,165,156, 89,169,206, 38, 16, 93, 28,109, 47,228,103, 39, 96, 76,226,103,170,172, +228, 59, 19,249,149, 11,248,248, 14, 94, 27, 97,202,216,223,124,159,118, 90,176,125,119, 16, 90, 8,204, 92,197,207, 18, 91, 64, + 63,116,133,135,157,232, 26, 88,232,211, 56, 52, 79, 12,123,188,192,125, 65, 46, 47,225,217,207,195,248, 50,140,159,134,225,115, +176,251,125,112,239, 23, 64,110,208,183, 50,178,180,192, 71,134, 96, 78,116, 75,156,145,228, 78,138,236,178,126, 57,179,185,117, + 90,137,172, 89,156,145,228,177, 87, 63, 60,142,186,217, 94, 10,235, 34,168,200,234,113, 39, 71,252,108, 22,100,231,240, 7,185, +223, 96,186, 11,187, 55, 97,252,193, 24,244, 78, 32, 63, 0,227,255,133,164, 19,246,203, 13,180,208, 82,102,217, 95, 99,121, 68, +151,197, 63,247,158, 53,222, 51,156, 91,136,228, 58,205, 74,207, 5, 85, 97,137, 18,165,229,193,231,238,230,243, 61,234,130,198, +102,184, 5, 79,184,218,121,197,134, 55, 91, 15,121,182,210,202,163, 89, 21,222,111,207, 62,238, 66, 14, 69,198,201,133, 71, 61, +100, 36, 84,213, 68,101,168,195,228, 22,188,156,145,156, 93,232, 53, 14,206, 14,215,204,134,142, 87, 20, 35, 91,245,199,217,224, + 52, 23, 76, 51,121,183, 39,103,165, 56, 72, 53,126,126, 67,107, 69,251, 98, 77,119,148,184,120, 51, 7,115,176,169,210, 52, 14, +148, 91,244,218,218,154,150,168, 66,155, 38,167,217,117, 95,187,217, 74,228,157,205, 81,178,164,236,139,188,184,138,123, 54,133, + 60,110, 96,156, 90, 86, 11,220, 42, 52,239, 26,208,230,108,248,118, 78,241, 59,247, 99,139,146,212, 86,232, 80, 99,131,188, 88, +231,185,231, 33,220, 17,190,185,149,101,246,247, 20,155,156, 14, 83,164,254, 21, 90, 93,188, 61,220,159, 39,250,198, 44,225,162, + 72,190, 89,245,226, 75,210, 58, 54,241,239, 75, 46, 20,203,206,142,239,110, 12, 19,168,214,220, 78, 87,252,192,217,149,229, 26, +188,248,156, 7,134, 97, 96,202, 35, 87, 87,215, 92, 93,221, 97, 24,119, 44,101,161,149,226,153,232,177,161, 75, 44, 64, 61, 96, +168,197,140,186,243,231, 83, 74,228,148,200, 67, 38,231,129,148, 51, 57,126,159, 82,235,115,155,117, 39, 50, 82,155,111,208,209, + 5,178,208, 77,208,186,126, 98,115, 0,117,208,140, 35, 95, 59, 66, 55,186, 23, 42,107, 40,210,134,166,141, 67,155,109, 82, 90, +215,132,168,199,209,174,174, 65,191, 38, 53, 68,173,172,225,192, 31, 45,142,227, 12, 58,213, 13, 90,124, 68,168, 75,250,227, 23, +250,249,116,118, 70, 72,231, 85, 89,220, 80, 35,155,183,188, 70,245,126,219,188,176,125,210,124,212,248,190, 10,223, 76,240, 78, + 18,110,231,138,124,253, 68,254, 71, 7,242,207, 31,145,167, 1, 13,121,115, 68,126,255, 30,249,189, 35,242,241, 29,169,100,166, + 34, 92,206,149,203, 98,140,157,250,117, 38, 22,206, 61,202,185, 24,246,117, 67,190, 63, 35,223, 63,194,141,227, 68,229,101, 65, +174,171,111,238, 67,248,232, 58,111,187,111, 57,115,180,119,251,134, 93,226,196,153, 3,204,108,134, 52, 87,176, 58, 38,237,140, +176,221, 89,144,139, 67, 73,184,159, 87,178,155,156,103,123,118, 26,192, 36,112,119,240,116, 54,139,120,167, 78,143, 59,181,205, +155, 62,136,207,144,223, 94,144,155,234,169, 89, 55,197, 55, 52,154,255,169,130,238,188,165,168,159,186, 64,126,104,242,138,229, +242, 95, 2,189,128,155,191, 3, 95,121, 27,251,186,209,202,236,179,255,110, 43,209, 51, 5,186,194,144, 61, 46, 74,114, 66,115, + 66,119,163,167,145,189, 58,186,242,253, 84,177,183, 79,142,230,125,186,208,110, 10,237,166, 6,210, 81, 54,255,118, 88, 48,180, +135,151,172,139,190,172, 30,204,172,206,188,222, 53,152,118,153,244,112,135,126,108, 15,175, 15,240,234, 30,110, 10,252,253, 71, +180,177, 98,251,104,231,214, 56,136,244, 21,235,133, 59,216, 96,107,155,198,120,193,154, 95, 83,185,169,254,217, 60, 43,225,106, +184, 7,207,126,201,199, 20,227,247,129,126, 12,201,111,194,245,207,195, 7, 11,250,118, 66, 6, 54,133,102, 15,161,201, 26,194, +108,137,185,229,243, 38,112, 89,229,202, 81,217,247,194,107,192, 15,122, 23,217, 31,150,238,146,168,108,200,200, 28, 66,193, 28, + 85,206, 20, 80,138, 75, 65, 30, 8,236,238,193,229,167, 97,248,161,240,172, 23,200,175,130, 86,228, 99, 95,128, 95, 22,218, 7, +123,236,222, 21,173, 37, 90, 57, 33,181,250,226, 46,157, 67,219,168,225, 61, 79, 49, 62,168,125, 97, 9, 74, 26,189,189,171,147, +255, 25,240,141,182,156,192, 42,231,241, 19, 22, 7,133,126,232, 49,149, 51,175,176,108, 56,203,179, 46,142, 87,184, 81,237,229, + 17,221,237,124, 35,204,131, 87, 37,125,129, 15,191,183,230, 1,166, 41,116, 34, 1, 30, 10, 59,144, 87,139,121, 93, 24, 53, 37, +134,105,199,184,223, 49, 12,131,207,160,155,209, 46,174, 24,118, 59,111, 77,207, 39,230, 16,224,181,214,220, 86, 22,141, 19,123, +206,153,225,170,114,111,165,198,248, 44, 15,126,160,227, 60,224,101, 83, 37, 55, 51,135,153, 12,147, 91,250,226,126,240,184,205, + 46,238, 12,181,183,192, 82, 42,203,241, 72,149,112, 31, 72, 70, 8,145, 32,178, 6, 13,245,235,183,152,135,224,212,224, 6,120, + 14,189,172,248,223, 14, 81,146, 72,131,179, 46,244,236, 33, 55,214, 66,247, 96,107,215, 99, 37, 72,228, 1, 29, 6,100,152, 64, +149, 58, 31,195, 15,206,170,196,182, 94,241, 70,184, 75,175, 38,219, 89, 72,139,177,205,126,207,193, 41,173, 85, 90,113, 97, 92, + 53, 91,253,222,221,175, 45,154, 24,242,192, 52,237,152,118,123,118,251, 11,198,221, 5,121, 28, 25,226, 96, 80, 69, 56,205, 51, +243, 50,111,155,113,101, 3,208,148,186,122,212, 29, 96,163, 12, 57, 51, 78, 35,121, 28, 72, 41,123,213,159, 28, 92,116,106,141, +211,233,232, 87, 71, 29, 80,147,146,227,134,172, 22, 15, 22, 10,203,101,105,174,152, 95,187, 80,237,172,117,190,242,225, 67,140, +152, 18,165, 54,164,109,241,170, 61,160,197, 98,195, 95,115,145, 59,201, 46, 66,175,172,148, 51, 12,108,243,217,252, 82, 34, 48, +233,249,198,175,189,152,233,242, 28,223,250,195, 62,246,117, 83,255, 87, 46,245,243,221, 75,201,202, 4, 63, 19, 5, 71,129, 59, +156, 1, 76,242,198, 12, 98,110,193, 82,105,198,147, 38, 60, 70,120, 79,132,119, 70,225, 89,107,148, 71, 11,195, 23,111, 25,126, +230,128,188, 83,225,245, 12, 31, 31,145, 31,220, 33, 63,234, 16, 18, 33, 49,204,202,238,212,216,151,198,132, 48,196, 60,163, 31, + 56,100,114, 1,156,125,179, 33,159,136, 86,124,141, 56,210,187, 47, 35,247,223, 69,174, 12,230,209, 45, 72, 68,203,251,253,230, +170,243,254,238,151,186, 65,202,119, 17,126,221,179, 42,171,251, 58,233, 74,210, 98, 62, 3, 40, 13,230,134, 92,171,119, 2,166, +141, 47, 28, 12, 84,175, 34,171,248, 2,255, 90, 68,164, 30, 98, 54,222,249,186,199,182,109, 2,187,152,185,255,179,163,171, 74, +123,158,108,109, 88,177,104, 9, 25,210,212, 83,148, 62,121,137,124,106,130,227, 9,246,159,241,159,243,228,239, 98,191,113,139, +125,123,161, 30,150,149, 52,117,238,120, 92, 63,175, 93, 90,147,235,210, 46,163,187, 1,121,121, 68, 94, 25,124,179,121, 86,224, +237, 5,110, 10,237,102,161, 61, 41, 62,131,169,103,172,136, 51,115, 65,143,162,238,247,110,183,143,244,255, 63, 70, 30,207,112, +119, 34,191,182, 67, 62,177,115,161,226,131, 9,126,251,150,246,171, 79,104,151,177,226, 86,217, 4,101, 97,167,179,210,177,136, +242, 33,210,130, 21, 91, 45, 21, 86,170, 7,128,156, 26,178,100, 63,117,222,175,200,197, 61,184,249, 5,200,247,124, 84, 33, 15, +125,211,126,233, 75,240,172,161,143, 60,234, 83, 7,117,234, 94, 74, 17,131,217,103,174, 65,152, 27,206,218,159,189,101,177,248, +109,227, 51,246,184, 40, 23,129, 88,220, 7,215,126, 58,123, 96, 36,136, 76,187, 51,219, 71, 7, 97, 92, 11,114, 23,216, 95, 59, + 84,104,248,108,248, 51,139, 31,167,211,143,192,248, 27,200, 75,223,160,254,191, 23,200, 48,187, 78, 35, 88,219, 45,176,158,181, +122, 44,101,179, 80,218,170,160,155, 51,115,157,123,150,230, 25,229, 69,148, 22,115,213,186,204,190, 32,191,176, 94,116,104,204, + 26,195,186,130, 79,116,253,255,235,124,181, 15,160,243,132,236,246,174,204, 28, 28,120,211,230,217,171, 20, 51,218,233, 16, 7, +136, 0,132, 12,227, 10,142, 89,169, 99,181,184, 2,190,206,104,168,143,181, 44,100, 53,134,120,196,114, 74,180,221,158,101,127, +151, 50,236, 17, 49,210,241, 25,203,233,224,222,226,160,228,229,112, 95,244,228,184, 94, 89,245, 67, 73,141,153,105,194,153,239, + 41,103, 76, 18,165,249, 38,222,191, 44,132, 80,158, 49,159,145,193,121, 0,222, 6,174,103, 78, 36,223, 32,139,102,170, 37, 74, + 53, 74,153,177,148, 72,227, 30, 77, 3,182,156,188,136, 72, 66, 90,129, 53, 74, 21,165,116,109, 37,186,197,230,198,161,179,187, + 77,232, 48,159, 8, 49,105, 43,124,198, 86, 97, 27,154,125,116,209, 59, 71, 42,171, 77, 81, 82, 38,143, 59,119, 72,212,176, 14, + 70,229,173,154,221,186,184,230, 1,120,181,124,150,250,179,181,231,213, 19,208, 52, 90,253, 73, 93, 79,144,243, 72, 26, 38,210, + 48,248,124,124,220, 49,140, 19,105, 24, 73, 99,142, 72, 84, 71,187,150,226, 85,170, 6,168,102, 41,133,101,153, 93, 68,215, 2, + 69, 27,179,124, 81, 37,167,196, 48,100,118,211,196,126,191, 99, 26,167,240,148,103, 6, 85,246, 67,230, 42, 14,126, 39, 51,150, +121,118,199,131,193, 24,223, 87,154,235,144,114,206, 62,235, 22, 88,150, 18, 35,158,179,248, 98,117,144, 12, 41,175, 89,242, 43, +212,166, 99, 99,131,159,161,189,245, 30, 29, 64,108, 27, 21,244,103, 44,117,167,242, 0, 0, 32, 0, 73, 68, 65, 84,213, 2,117, +107, 42,235,251,106,181,185, 11,228, 67, 91,249,134,131, 94,207,149, 31,218,208, 95, 76,107,243, 93, 63,253,153, 43,253,252,208, + 23,224, 88,123,186,117,122,138,117,104,165,197, 1,163, 74,108, 20,209,221,142, 53, 45,120, 59,204,205, 71,179, 39,132, 15, 68, +120,127, 16, 30, 39, 40,183,133,225, 75,183, 12, 63,115,139,188, 85,176,215, 18,242,137, 29,242,233, 9,249,236, 8,175, 15, 8, +153, 52, 39,198, 5, 6, 19, 6, 2,152,159,226,166,235, 66,170,247, 64, 94, 85,120, 21,183,119,229, 63, 15,211,159,130,253, 23, + 16,169,112,155, 92, 16,112,219, 98,134,221,251, 91,241,165,241, 97, 76, 93,201,206,166, 72,182, 13,170,237,192, 13,231,121,203, + 24, 15,198, 40,200,133,183,234, 66,214,186, 17,184,150, 96,162,190, 26, 61,181, 67,164,222,116,224,204,201,182, 54,242,117,246, +139,245, 43, 71,108,140, 14,193,114,150,252,165,226, 27, 78,206, 36,201,200, 39,247,200,247,141,112,123, 11,151,159,112,213,254, +119,126, 17,190, 80,104, 79,139,183,164, 74, 91, 3, 95,186,152, 59, 53,208,125, 66,246, 25, 25, 18, 58, 37,116,151,209,171, 1, + 94, 30,144,251,147,223,200,143, 11,188,183, 96, 55,133,118, 91,176,165, 98,179, 69, 71,218,182,112, 22,221,114,217,123,219,175, +173,247,153,172,212,186,157,194,152,149,252,210,158,244,230, 5,124,108,231, 27,250, 85,194,254,238, 35,236,189, 35,118,135,149, +173,105,241,160,117, 69,241,230, 1, 58,123, 72,122,128,117,243,246,153, 45,109,107,213, 47, 21, 57,178, 34, 25,185, 94, 96,119, + 31,185,249, 85,168,223,138,159,251, 25,184,184,143,188,241,101,184, 56,109,145,149, 54,120, 59,113,136,154, 71, 53,108,111,178, +126, 22,146,211,246, 16,213,232, 38,245, 3, 71,104, 31,188, 13, 63,120, 39,103, 12,233,255,160, 91,103,102, 12,147,127,207,181, + 22,137, 74,221, 96,186, 15,251,143,195,248, 57,188,141, 16,237, 11,189, 2,249, 17,228,213,127,136,252,220,219,180,223,109,112, +173,180,192,180,174, 95,173, 82,173,198,218,235,236,246, 30,149, 91, 99,173,232,183, 71,147,180, 85,233, 1,247, 96,157,120,111, + 49,160,125,145,168, 56, 34,182,217, 89,115,176,123,107, 37,230, 59,226, 56, 89,157, 70,167,197,105,162,206, 39,150,195, 13,237, +120,235, 18,148, 90, 87,242, 25,165, 56, 93,110,218,249,134, 88, 74, 55,139, 97,197,199, 0, 98, 37, 58,104, 11, 58, 31, 25, 78, +183, 12,243,145,100,190,218,212, 52,178, 92,222,167, 93,222,117, 94,247,211,119, 93,113, 46,137, 66,168,219, 99, 39, 92, 44,180, +198, 42,219,134,165, 94,241,246,251,214, 85,232,158,223, 62,147,125,182, 26, 85,108, 86,103,175,215,230,115, 39, 49,200,121,192, +134,145,182, 44, 94,221,139, 31,120, 28,245,224, 64,155,138, 98,173, 80,170,183,115,251,136, 65, 74, 40,232, 37,226,118, 98, 86, + 93, 16,138,157, 41,160,109,203, 68,239, 81,198, 26,213,121, 51,191,150,222, 86, 14,154,155,122, 26, 29,154,183, 16,144,110,241, +138, 78,130,198,198, 43,195,206, 55, 44,156, 11,159,134,157,207,209,163,157,238,115,242,228, 7, 33, 81,114,192,170, 82,136,216, + 28, 2,227,204,121, 37, 88,230,113,208,243, 42, 56,251,198, 57,100, 42, 49, 87, 47,133,218, 42,165, 86,230, 90, 88,230,197, 45, +104,162,193,201, 55,150,226, 92,127,139,238, 76,206,153,253, 56,113,121,113,193,213,126,199,157,139, 43,246, 23, 23, 12,195,176, +250,196,251, 60,125, 20,225,238,110,199,245,229, 53,170,202,220,169,137,205, 65, 49, 22, 68,193, 20,162, 58, 82, 98,110,141, 58, +159, 34, 72, 65, 54, 34,167,186,242,190, 59, 3, 92,248, 23,234,253,200,117, 95,219,238, 18,136,220,222,129, 18, 65,114,246, 74, +188, 91, 20,251,159,226,118, 73, 19,175,220, 91, 35, 14,155,124, 40,143,205,206, 82,128, 55, 91,160,125,207, 60,117, 17, 33,239, + 98,156, 56,200, 22,171,106,103, 80,132,115,182,119, 23, 63,118, 10, 82, 87,102,250,201,116,203, 98, 55,131,178, 24, 79,178,219, + 49, 14, 9,222, 25,132, 87,128, 55, 30,159,120,237,111,207, 92,253,226, 51,228,207,221,135,159,190, 3,175, 79,200, 43, 35,242, +131, 23,216,151, 14,240,107, 39,244,173,147, 43,209, 91,219, 74,206,226,234,116,251,221, 19,252,140, 32,195, 53,188,121,132,246, + 15, 64,254, 11,152,254, 83,120,237,191,132, 71, 2,143, 5,158,225, 27,247, 7,177,185,166, 51, 79,192,208, 23,164,216, 76, 52, +193,212,223, 96, 72,187,171,108, 45,216,212,103,237, 81, 81,119,209, 66,238,161,212,234,149,247,189,104,179,222,148,168, 38, 3, + 54,115,178,179,244,147, 80,161,127,115,113, 40,199, 33,178,119,147,111,192, 54, 24, 66, 70, 46, 61, 45, 78,158,102,184,138, 28, +243, 19, 72,123,236,132,186,239,206,238,215, 95,249,173,177,209,196,124, 70, 76,220, 7,126,145,145, 49,123, 82,217, 20, 26,132, +189,250, 76, 87,195, 61,240,180,248,193,227,118,139,219,148,157,211,191, 82, 85, 39,119,149,104,133,169,208, 74,216,107, 86,159, +164,172, 33, 46, 3, 48, 52, 35, 93, 78,232,189, 17,238,143,174, 69,184, 84,127,157,127,126,192,174,252,100,104,183, 56,183,222, +218, 89,160,119, 59,195, 38, 57, 60,197, 85,186,113,253, 59,119,186,198,134,110,230, 93,147,249, 8, 95, 7, 85,243, 95,226,211, +111,195,229,235,112,251, 53, 56,124,205, 45, 99,211, 31,132, 87, 63,137,252,209,255, 29, 62,248, 26,246,206, 12,111, 41,242,141, + 17,121, 63, 97, 83,245,174, 76, 87,174, 43,235,136,102,221,200, 70,159,169, 59, 96, 70,253,240,246,168,248, 38,158,178,131,137, +242,128, 13, 33,154,188, 80, 23,163,132, 26,150,146, 2, 94,210, 47, 94, 8, 47,237,212,229,162,241,136, 86,176,163, 11,254, 46, +255, 67,210,127,242, 87,208,191,120, 32,213,196, 40, 71, 74,243, 5,178,214, 74, 89, 91,168,189, 96,220, 62,155,174,135,104,125, + 70,222,154,183, 9, 67,248, 70,108,128,125,230,222, 34, 73, 75,206, 89, 86,113,111,245,141,190, 43,117,155,177,250,163, 77,156, +153, 46, 75, 13,155, 91,197,202,236,226,187,195, 77, 84, 1, 46,132, 19,240,107,212,231,144, 67, 14,255,122,129,121, 38, 81, 25, +178,231, 42,139, 24,218,170,219,248,218, 66,187, 57, 80,110,158, 81,244, 3,218,229, 13,109,186,164, 45, 51,167,106,228,164,100, +131,165,134,135,124,229, 26,133, 27, 94,212,157, 21,130,207,175,123,130, 92, 8,210, 82,245, 89,184,138,103,174,183,182, 97, 77, +147,224,214,192,178,144, 38, 33,219, 66, 29, 47,105,211,222,187,114,209,102,117, 37,122, 60,134,121,240, 13, 69,220,219,159, 4, +210,180,195,202, 5,237,246, 25,205, 36,114, 10, 88, 85,210,170,189, 94,136,145, 68, 92,243,214, 29, 57,193,215, 79,254,228,196, + 97,162,219,177, 28,177,189, 30,158,204,231,197, 57, 43, 12, 3,229,120,242, 96,152, 60,162, 73,209, 97,231, 26,135,101,137,181, + 41,252,222,177,193, 73,143,142, 13,103,148,158,121,169, 65,220, 62, 38, 25,203,254,134, 19,194,110,154,184,184,186,195,126,127, +197, 48, 58,221,110, 46,133,121, 62, 80,230,197, 29, 40,213, 55,238, 82, 11,212,202, 48,122, 74, 27, 34, 92,239, 47, 92,209,222, + 26, 57,132,127,217,220,218, 88,173,113, 44,149,185, 44,204,161,164,175,103,226,179,103,214,184, 61, 30,121,101, 89,184,184,186, +230,122,183,135, 86, 93,103, 17,252,126, 75, 3,132, 35,185, 38, 63,124,154,181, 53,161, 78, 99, 12,164, 41,249,115, 82, 93,119, +181,162, 93,123,122, 95,210,237, 58,197,103,219, 31, 58, 77,234,220,133, 16,120,246, 20,182, 85, 19,212,221, 2, 61, 32,160, 61, + 95,165,219, 89, 31, 94,206,106, 77,249, 30,212,185, 30,101,107, 64,222,197,232,247, 58,109,137,107, 75, 4, 67,244, 10,227, 28, + 53,186, 86,101,103, 48,133,174,101,234,248,108, 11,203, 83,111,235,151,234,133,115,201,240,120,167,124,215,224,227,143,142,188, +250,191,125,151,221,207, 61,131,127,251, 1,242, 47, 95,193,103,118,200,199, 50,124,118, 7, 95,154,225, 75, 71,236,157,197,127, + 64,178,213, 67,206, 50,195,111,131,253, 66, 66,228, 2,222,252, 6,240,215,192,254, 44,236, 94, 69, 94,122,132,189, 51,248,139, +206,230, 11,235,108,225, 60, 59, 19, 11,204,192,253,120,130,250, 70,146,237,204, 4, 24, 87,114,136, 25,234, 62,218, 41,183,213, +231,247,187,104, 89,156,226,110,191, 86, 87,227,167, 64,189,118, 27,214,210, 21,239,108, 20, 57, 12, 30, 53,184, 19,141,147, 18, +100,161, 36,232,221,120,189, 18,191,198,189, 20,237,125, 54, 25,179, 29, 60,148,102, 62, 59,120,136, 99,101, 9,198, 52, 41, 56, +234,125, 67, 31,146,243,199,199, 72,232,233,130,194, 83, 8,249,150,176,142, 20, 59,131, 52,132, 37, 1, 67,181,209,154,172, 26, +168,185,196, 60,252, 44, 82, 50,197,121,105, 24,149,116,103, 68, 95,217,193, 75,131,111,232,151, 3,252,218, 99,236, 88,176, 87, + 60,181,204,240,195,207,243,112, 6,123, 62,254,211,154, 39, 23, 21, 86,203,217,122, 56, 82,207,148,239,226,174,242,228, 22,253, +226, 66,122, 82,253, 52,252,153,111, 34,119,222,132,229,101,152,191,230,134,247,203, 63, 7,247,254, 26,220,249, 10,242,218,207, +193,247,255, 18,246,214, 35,248,173,140,124,125, 66,134,138,105,133, 99,243,101,179,143, 88, 74, 31, 67,232,230,107,151,230, 29, +154, 67,129, 71, 10,227, 9,155, 60,241, 78,134, 12,187,132, 93, 21,223,212,159, 84,184,109,200,208,182, 78, 91, 98,227,235,150, +199, 96,203, 11,105, 13,115,196,178,254,113,228,135,255, 40,195, 79,254, 61,236,151, 43,246, 96, 38, 91, 69,205, 34,158,181, 55, + 58,252,126,232,173,247,149, 35,212,206, 44, 49,171,210,189,167,188,245, 25,185,157, 97, 10,122,230,180,174,179, 57, 43,178,206, + 94,237, 44,131,180,245,138,208, 34,235, 92,195,166, 20,203,127, 19, 79, 22, 19, 18,114, 50,100,183, 71,247,151,209,190,116, 53, +183,180, 68,109, 93, 80,229,135, 42,173,174,117,113,123, 96, 97,152, 38,114, 30, 56,156, 78,148, 22,175,187,156, 60, 33,110, 62, + 49,179,101,235,182, 88, 9,251, 28,189, 4,146,182,231,208,247,181,174,153,172,169,126,162,234,209,197, 2,201, 26, 85,101, 93, +204,106,168,164, 77,204, 55,245,189,231,127, 55, 77,232,254,138,122,186,245,116, 51,245,113, 14,106,171,173,170, 58, 38, 49,174, +171,162,163,251,234,151,186, 56,194, 87,220, 35,223,219,228,106,222,250,245,243, 86,195, 66, 32,216, 66, 67,144,194,190, 37,227, + 64,139,170,150,134, 83,212,210, 16,202,244, 77, 96,103, 64, 9,250, 89,218,237,169,203,236, 27,126, 40,214,117, 24,124,180, 16, + 29, 31,143,203,141, 20,184,206,246, 23, 11,209,156,174,161, 36, 52,243, 90,104, 55,177,155,246, 30,204, 50, 12,140,195,158,113, +116,229,187,207,195, 43, 41,121,107, 92, 46, 4, 21,111, 99,247,124,123,107,109, 85,204,215, 86, 41,167, 35,135,249,200,241,112, +160,212,194, 82, 27,183,117, 97, 57, 45,156,150,194,113,153, 61,223,188,235, 46, 82, 90,215,141, 90,141,199,225, 6,185, 79,176, + 57, 98, 32, 89,227, 57, 81, 51,146, 10, 69,149,219,211,137,122, 58,173,150, 53, 86, 93,151, 67,110, 90,140, 1,178,248,207,106, + 34, 52, 43,126,222, 34, 57,198, 59, 90,239, 62,194,243,142, 67, 19,241, 17, 66,117,251,232,234,227, 23,239,152, 52,129,186, 20, +111,191,159, 19, 45, 95, 88, 6,251,120,126, 3, 87,109, 40, 17,125,190, 81,191,118,119,254,127,190,222, 52,214,178,236,186,239, +251,173,189,247, 57,231,222, 55,213,171,170,174,158,216,221,108,138, 83,115,146,168,209,177,100, 89,146, 37,197,178, 29,197,145, +129,216,138,157,216,136,157, 1, 65,226, 0, 14, 2, 88,249, 96, 68, 64, 2,196, 8,224, 15, 73,156,192, 8,144, 15,129, 97, 4, + 6,236, 0, 65, 2,120, 72, 96, 73,182, 18, 75, 20, 69,154, 17, 73, 73, 20,155,100,119,147, 61,212,208, 85,245,166,123,207, 57, +123,239,149, 15,107,237,115,239,171,110, 69, 68,161,212, 53,188,186,239, 14,123,237,181,214,255,255,251,167, 35,191,137,173, 61, +133,237,202,111,152, 33,236,216, 28, 53,236,246,169, 45,254,187, 21,244,160,242, 30,194,221,222,170,141,236, 77, 72,242,127,122, +204,112, 63,193,246, 32,240,184, 86, 94,120,237,156, 27,255,205, 68,252,220, 9,252,165, 91,200,135, 14,224,149,132,220, 73,232, + 11, 61,242,219, 91, 99,162, 63,158,124,198,111,222, 64,173, 21,121, 99, 68, 63, 23, 16, 89,193,139,223,128,252, 63,129, 28,161, + 7, 29,242,148,152,130, 28,239,218, 46,170,101, 89, 87,143, 69,109,163,135, 18,140,252,246,216, 11, 91, 8, 54,179,110, 87,163, +236,114,201,149,255,104,106,199,177, 94, 59,240, 88, 39,184,105,163, 81, 88, 91,215, 85,196, 45, 4, 94,164,178,238, 82,111,198, + 2,111,204,232, 74, 17,141,104,170, 72, 49,208, 13,151,190,243, 47,102,133, 66,131, 25,250,131, 26, 63, 93, 86,118,216,135,118, + 9, 49, 47,187,204,141,151,229,157,213, 96,221,184, 56, 62, 87,162,237, 88,164,119, 81,215,186,119,241, 96,195,214,178, 87,172, +236, 96,146, 10,218,249, 27,161, 4, 36,215,157,150,176,238, 38,230, 13, 1,156, 68,232,181, 18, 14, 7,226,157, 1,158,233,225, +180, 67,142, 59,160, 71,127,115,131,174,212,146,242, 54,234,194, 64,189,134, 71, 92,222,224, 98,124, 0,205, 78,210,217,223, 15, + 6,183,149,197, 86, 24,119,187,191,122,150,209, 47,103,210,168,200,168,240,201,175,155,211, 64, 63, 12,249,117, 24,255, 55, 24, +254, 2, 12, 63, 1,235, 63, 2,135,223, 70,142,255, 22,220,249,101,244,185, 9, 94, 93, 33,119, 19, 28,102, 36,251,165, 86,252, +125,180, 47, 48,104,170,210,226,239,145,171, 2,143,130,177, 10,158, 1, 14, 6, 8, 3, 50,140,112,176, 69, 15, 20, 30, 72,203, + 38,222,165,176,180,208,238,114, 14,229, 93, 3,208, 44,146,181, 10,108,204,187, 62,252,123,196,191,242, 5,226,159,126,157, 58, + 87,146, 15,203,219,190,184, 5, 88, 4,175,230,139,238,176, 54,238,182,117,224,198,238, 94, 64, 3, 86,104,252,146,164,101,255, + 58, 21, 44,105,177,134, 93,112,205,123, 90, 8, 19, 7,225,163,204,230, 55,110,235, 20,233,250,101,212,172,126,139,208,121, 50, + 2,155, 19,194, 90,140, 40, 49, 17,242, 12, 49, 17, 17,162,203,123,141, 85, 63, 32,125, 2,157,169, 18,152,165,177, 36, 20, 26, + 16, 36, 27, 54, 39, 55, 22,182,152,136, 45,171, 90,170,236,146, 90, 86,119, 35, 13,217,155, 68,106,243,222, 23, 75,159,172,187, +125,115,222, 11, 53, 72, 40, 50,110,161, 27,168,146,168, 41,248, 74,163, 32, 90,156,109,212, 65, 23,173, 43,140, 62,161,153,183, +148,188,133, 20, 73,135, 71,212,203, 3,242, 52,210, 48, 36,133,157,106, 58,180,124,242, 69, 40,170,139, 82, 63,184, 67, 64, 83, + 71,154, 38,138,231, 21,104,205,198,121, 71,108,180,238,123, 91,139, 10, 53,225, 90,183, 58,160, 14, 86,216, 77,156, 85, 81, 2, + 49, 25, 17, 79,203, 68, 41,211,226, 66,210,101,167,237, 78,128, 16,136, 62,114, 79, 33, 48,116, 43, 14, 86,135,172,214, 7,196, +126, 69, 13,129,237,102,195,102,115,225,152,105,235,128,231, 82,152,199,201,128, 46,174,251, 88, 38, 72,142,121, 77,253, 0, 40, +185, 20,174,166,145,203,237,150,121,154,188,129, 44,174,132, 55, 54,123, 8, 98, 93,188, 35,146, 91,231, 95,181,146,181,114, 57, +207,232,249, 25, 67,191,162,247,203,130,230,236,169,149,246,190,222, 76, 19,211,118,227,151,131,157,106,209,226, 14,170, 43,213, +237,226, 32,177, 3,137,206,121,119, 61,149,191, 33,154, 0, 79,124, 66, 82,197,196,133,185,228, 37, 15,222,240,186, 45,187,222, +109,132, 45,150,245,125,218, 25,145, 61,182,140, 62,185, 71,223,173, 36,117, 95,141,215, 52,226,127,241,118,248,197,222,155,206, + 27,205,214,237, 63,119,190,103, 95, 5,225,160,179,198,238, 56,152,253,250, 56, 90,243,181,142,112, 16,133,195,100,117,226, 32, +218,143,195, 8,171, 40, 12,254,223,107,223,219, 55,238,113,242, 74,176, 29, 2,181, 20,134,111,108,137,159, 31, 97,165,200,179, +214,221,201,157,136,220, 73,230, 73,143,193,124,201, 77,217,158, 92, 36, 60, 41,140,130, 28,174,237, 1,220,243,241,230,224, 55, +203,236,114,253, 73, 29,106,162,230, 77,238,217, 9, 8, 86, 46,126,203, 45,227,124,127,215,238,136,211, 33, 58,248,220, 31, 67, +113,222,250,198, 23,110,119, 34,220,153,225,224, 19,118,147,185,120,199, 70, 19,155, 98, 35,237,185,122, 78,173,251,234, 31, 84, +248,173, 43,247, 59, 59,248,166,136, 83,193,220,131,125, 96, 2,183, 22, 12, 35, 31, 76,118, 64, 28,253,176,237,194,222,253, 42, +188,169,230,229, 47,238,185, 79,150, 8, 22,134, 72, 56,244,231, 45, 6,187,177,118, 22, 79, 40,125, 7, 79,155,165,141, 8,250, +184,192,187,179, 41,224,231, 74,157,219,242,213, 71,128, 77,189,227, 83,130,134,116,222,239,174,155,136,103, 85,148,190,139,164, + 91, 7,196, 15, 31,192,203,135,112,123,141, 28,245,232,197,136,254,189,251,212,131, 98, 23,133,209,169,107,237,192,220, 27,117, + 94,203, 87,204, 38, 30,212,201, 46, 62,173,160,154,127,121, 95, 65,130,233, 10,170,123,168, 47, 50,225, 93, 19, 37,202,201, 67, + 56, 56,132,238,251, 33,127, 27,194, 59,102,119, 11,167,102, 15, 28,126, 20,214, 47, 33, 39, 95, 65, 78, 31,217, 40,125,238,161, + 70,179,167,197,125,225, 91,243,195,202,110, 60,209,148, 44,201, 63, 96,157, 24,112, 38,221, 4,185,233, 69, 73,145,131,209, 19, + 73,124,247, 63, 84, 11,173,233,143,161, 95,193,240, 65, 72,207, 63,129,139,242, 23,150, 3, 56,250, 14,124,241, 43,212, 87, 11, +249, 16,143,253, 12,168, 54, 5, 47,139,125,107,153,236, 47,157,181,175,255, 61,222, 17,207,239,110,179,150,214,181, 46,123, 7, + 15, 98,146, 39,149,184,178, 99, 86,171, 23,231,230, 51,103,112, 43, 90,234, 80,209, 37, 97,203, 91, 50, 40, 5,209,106,201,105, + 93,111,190, 72, 88,124,236, 34, 66,208, 74, 71, 49,113,110, 74,212,213, 26,141,145,213,188, 33,205, 35,147, 86, 70,215, 12, 16, + 34,181,239,109,168, 85,139,137,144, 22,157,135,238, 69, 64,251,250,202,127, 95, 61,254,115, 1,159,248,143,234, 2, 41,252,174, + 91,252,207,238, 44,157, 66, 23,133, 78,109,237, 49, 13, 71,148,126,133,110, 47,108,119,234,164,178, 44,145,178, 58,180,206,110, +158,172, 3, 23, 39,211,149, 76,208, 66,153, 38,234, 60, 46,232,224, 90,118,105,124,237,158, 43,169,167, 59,190, 97,123,227, 24, +136,195, 1, 49,173,252,207, 91,218,158,150, 22, 78,227,128,152,108,238,130,176, 90,219,172,100, 79,165, 93,242,108,246,170, 82, + 40,243,108, 99,230,176,147,214,198,152,232,250,129,174, 27,124,117, 80, 22,183, 71, 8,145,224,222,243, 24,205,150, 86, 69, 24, +231,145,205,213, 21,211,184,101,154, 38,174, 54,151,108,175,174,200, 57,147, 75,113,146,163, 41,216, 55,211,150,205,118,203,229, +246,138,203,171, 43, 46,175, 46,217,110,174,152,166,201, 64, 49,202,210,157,183, 66,142, 86, 82, 8,116, 33,209,167,142, 62, 37, + 82, 76,214, 13,151,194,156,231,101, 28, 63,207, 51, 37,151,229, 8,169,236,160, 57,205,110, 55, 22,229,114,220,144,199,173, 93, + 60,119, 35, 44,227, 39, 56, 71, 95, 80, 87,218, 71, 82,138, 22, 21, 92,170,133,148,185, 82, 56,136,113,249, 13,211,236, 78,136, + 70,203,203,101,153,208,180,244, 76,117,171,158, 77, 26,174,227, 96,159,236,212,245,189,107,246,107,190, 98,217,151,197,203,242, + 93, 16,255,243, 59,225, 23,111,154, 8,151,155, 17, 78,147,193,203, 14, 35, 28,138,112,146,132, 67, 47,228, 71, 94,172,111,138, + 89,155, 79, 19,220,140,194, 13, 81,110, 6,225,166, 23,251, 3,129,195, 78, 56,242,191,119,226,100,208,163, 32, 28,251,215, 89, + 11, 68, 21, 52,194,220, 25,250, 49, 61, 24, 73, 95, 24,145, 7,213,148,222,183, 58,235,242, 78, 3,226,183, 6,233, 3, 82, 93, +100,148, 60,145,103,170,214,204,156, 56,140,230, 65,177, 98,125,224,158, 98,215, 28, 33,193, 2, 95,218, 51,181,114, 43, 82,181, +219,138,156, 36,235,162,219, 62, 33, 25,151,124,241,157,172, 45,231, 91,146, 5,142,144, 61,201,173, 11,240, 82,134,155,199, 48, +252, 25,200,223,132, 71,111,193,148,118, 49,171, 13, 17,218,251,205,232,205, 12,247,178,239,241, 13, 74,163, 23,197,206,210,228, +233, 97, 67,180,164,176, 24,225, 56, 33, 47, 70,232, 19, 28,253, 56,164, 27,144,255, 57,188,173,112,102,197, 24,245,136, 79, 87, +186,139,135, 8, 72, 12,222,169, 59,212,225, 56, 33, 79, 15,112,210, 27, 28,231,172,192,121,182,201,198, 84,157,128,183, 19,164, + 45, 69, 87, 91,119,110, 51,202, 93, 14,180,233,161,251, 2,131, 8,233,104, 69,122,238, 16,249,248, 17,124, 96,141, 28,251,173, +238,119,206,209,207, 93,160, 79, 97, 56,220,217,247,231,181,197,121, 94, 55,189,139, 91,108,150,124,157, 22, 48, 83, 93,206, 85, +119,111,228, 5, 6,212,216, 1,222, 92,242,104, 38, 60, 0,142, 58,228,232,109, 99,254,167, 31,135,250, 16,226,100,182,177, 86, +153,187, 87, 96,245,227,112,248, 0,185,245, 38,156,108,160,116, 22, 74,144, 89,132, 80, 75, 76,107,116,197,119,191,199,110,108, +147,131,212, 18,230, 58, 8,183,205,190, 17,123,235, 80,135,140,244,217, 61,235,216,133,177, 59,130,110, 5,195,211, 14,160, 89, +177, 43, 71, 13,103,153,128,137,240,202, 23,169,127,239, 2, 68,153, 58,216, 22, 37,231,189,227,161, 41,213, 69,118, 81,157,117, + 15, 64,179,103, 23, 84,127,238,100,113,180,200,242,163,186,149,170,250,239, 87, 31,165, 47,250,130, 16, 9,195,129, 89,214, 66, +112, 20,164,169,174,233, 7,131,157,148,130,150,217,241,179,182,127,143, 82, 9, 53,155,211, 36, 36,180, 89,175,180, 90,200, 71, + 8, 4,170, 81, 16,187,206, 10,216,118, 67, 87, 38,227, 86, 72, 96, 86,203, 48, 87,100, 73,166, 83,183, 36,105,240,236,117,143, +134, 85,215, 18, 52, 14, 56, 18, 60,216,200, 99,112, 99,220,123,238,100,249,251, 69,219,243, 39,110, 85, 82,162, 8,131,199, 73, +231,156, 25, 75,133,131, 19, 83,204, 95, 89, 97, 47, 18,208,216, 81,250, 3,202,184,161,110, 46, 97, 30,237,217,237,122,215, 20, + 4,106,158,168,121, 90, 70,228,138,236,249,211,237, 53,144,110,205,193,211, 31,176,206,188,186,112,102,222, 82,167, 43,211, 31, +136, 88, 0,145,234,210,208, 53,156,106,138, 61,253,193,145, 41,235,115,166,230,108,232, 94, 39,173,229, 82, 28, 70, 99,192,151, +216, 15, 38, 32, 75,201, 98,107, 83,231,224, 20, 99,206,235, 94,241, 43,165, 48,151,204, 52,141,204,211,200, 56,141,204,211, 68, +158, 70,166,217, 66, 89,230,105,164, 56, 69,174,204,217, 19,208,236,185, 79, 18,233,146,137,241, 66, 48, 21,122, 20, 33,245, 38, + 90, 77,238,139, 15, 41, 44,208,180, 6,189,156,107, 49, 50, 93, 41, 75, 81,175,217, 93, 7,213, 47,142, 14,161, 81, 9, 76,181, +178,205,153, 49,207,108,166,153,237,118,187,236,209,171,238,101,211,187,131,160,221,224,130,236, 10,122,236,122, 95,123,151,101, +204, 30, 84,233,162, 65,118, 26, 73,177,233, 4,170, 95, 94, 85,246, 4,114,109,240,187, 60,222,221,100,242, 73, 52,236, 34,146, +171,187,226,189, 68,220,182,232,229,253,247,137,236, 46, 39,241,191,190, 19,127,241, 84,132, 91, 65,184,145,132, 27, 81,184,161, +194, 77, 17,110,181, 2,142, 21,239,155, 34,156,138,112, 28,132, 35, 9,156,136,253,249,211, 40,156,248,143, 27, 34,220, 12,194, +173,160,246,251,190,102,190, 33,112, 67,132,227,160,220, 8,194,113,216, 1,213,140,178, 41,148, 1,226,148,137, 95,159,224, 27, + 5, 94,232,144,219,201,110, 10,199,130,156,116, 54, 66, 56,114,176, 75,136, 59,131,125, 21,184,172,200, 41,200,179,157,177,194, + 69,224, 72,118,144,152, 82,173,128,175,147, 7,131, 0,135,178,120,205,165, 19,228, 48,186,156, 95, 97, 37, 59,210,216, 81, 66, + 78,124,124, 17,131,237,161,213, 59,245, 65,224,197,140,156,126, 22, 89,253, 44,242,248,239,194,197, 37,140,221,174,168,171, 35, + 97,215,174,136,126,148,225,162,216,147,208,177,131,225, 68, 89, 8, 68,168, 88,182,252, 42,217, 4,227,165,100,249,219,167, 63, +101,221,156,254, 51,228,193, 5,220,139, 59,118,112, 47, 72,151,172,240,184, 13,164,185, 7,108,167,110, 62,122,121,186,223, 5, +171, 60,202, 38, 96, 27, 11, 58,249, 5, 33,239,167, 80,248,162,209, 79,140,150, 77,220, 0, 8,226, 8,210, 65,148,238,160, 39, + 61,117, 72,120,229, 8, 62, 50,216, 52, 96, 56,178,231,254,239,223, 55,246,247,145,160,219,106, 41,108,121,159,176,180,211,139, + 44,163, 57,159,206,150,186,119,107, 13,123,150, 77,109,246, 50, 53,222,115,221,203,155, 13, 30,206,114,127, 34, 60, 4, 86, 61, + 12,111, 34,235,119, 32,126, 55,212, 43,143,179,187,237, 95, 45,219,255, 63,252, 33, 88,125, 10, 57,120, 3,185,121,215, 46, 2, + 87,157,173,183,147,236,192, 70, 14,147,129,189, 46,190,129,133,122,123, 82,100,141, 41,216, 99, 15, 97,101,164,184,120, 8, 73, +145,222, 98,129, 9, 3,244, 7, 16, 87, 48, 28, 67,250,128,253,157,107,218, 2,247, 36, 79,111,193,209,111, 35, 95,191, 79,249, +221,145,121,112,190,145,238,128, 36,236, 29, 21,212,150, 70,119,253,247,218, 33,138, 91,122, 26, 72, 6,177,241, 98, 89,146,182, +118,133,254,122,244,227,206, 6, 69, 72, 4,228,154,207,177, 22, 71,226, 36,231, 60,212,217, 70,172, 49,144,162,137,138, 52,103, + 52,207,158,189, 29,237,206, 27, 3, 93,223,155,245, 43, 8,186,189,162,142,219, 5,120,147,124, 74, 98,247,116,211, 91, 4,137, +164, 97, 77, 23, 45, 37,209,194,140,124,255,233,223,131,132,214,169, 57,124, 38, 8, 93,136,212,152,124, 48,221, 14,210, 93,215, +190,140,228,155,207,216, 1, 47, 93,216,109,211,230,121,178,143,199,241,169,133,128,108,174,204,174,213,173, 44, 58,116,220, 88, + 86, 65,240, 56, 87, 47, 34, 50,172, 44,154, 51,103,167,218,201, 53, 4,171, 29,105, 70,166, 43,243, 76, 25,175, 80,223,193,147, +199,165, 3,148, 16,150, 53,138,236, 3,107, 28,116, 19, 82, 79,119,116,195,116, 14,101, 38,196,222,117, 1, 6,117, 73,195,138, +180, 90,145,134,181,105,104,124, 25,111, 96, 23,118,113,161, 13,110,227,220,244,170, 74, 45, 6,137,209,236,222,110, 7,238,228, + 82, 40,217,252,248,165,100,114,206, 76,243,188,216,215,218,153, 81, 29, 8, 99,124,126, 27, 77,167, 96,231,111,110,169,125,222, +249,182,110,124,204, 51,227, 52, 89, 71, 94,118,226,196,234, 86,228, 20,157,104, 23, 77, 15, 80,114, 89, 32, 54,165,148, 37, 63, + 93,247,114,214,245,218, 85, 87,174, 43,201,163,197,176,106,136,212,146, 45,118, 53, 38, 15,225, 17, 98,215,163, 18,252,235, 22, +114,245,201,212, 94,224, 13,206,101, 48,158,193, 76,157,235,222, 68,189, 94, 19,199,237, 79,195, 68,127, 63,149, 81, 43,123,118, + 6, 73,104,186, 24,239, 29,251, 79, 30,152, 7, 77,217,121,216,102,167,159, 53,207, 48,251, 65, 38,114,109, 62, 32,253,254, 94, +211,131,145,197,119,180,163,171,132,155,168, 38, 58, 45, 44,251, 97, 27,236,133,213, 89,169,157,223, 66,214, 66,221,100,228,139, +143,224,191,154,225, 47,220, 66,254,240,177, 33, 97, 7,133, 67,224,169,104, 66,184,135,197, 84,199,147,119, 15,231, 25,190, 22, +224,149, 98,130,187,251, 62,114,251, 64,135, 36, 31, 45, 94, 84,168,131,181, 46,219,201, 8,115, 39, 17,201,106, 98,166, 67, 69, +142, 48,232,204, 70,119,123,143,149,223,167,170, 63, 7,226, 2,184, 22, 18,127, 80, 33,125,175,221,156,198, 7,150,167,222,210, +223,148,107,163, 91, 83, 1, 71, 99,135,215,138,110,117, 71,191,155,247,148,136, 45, 29, 76,124, 49, 90, 35,172,110, 66,247, 12, +132, 19,179, 64, 61,245,142, 89, 80, 82,132, 97,199, 95, 94, 72, 80,109, 15, 93,188, 24,117,238,161, 79,113, 39,228,203,117, 39, +146,208,253, 24,198, 22,251, 19,216, 95,130, 5, 44,144, 33, 4, 33, 36, 11,191,137,170,164,190, 35,157,172,136, 47,174,225,101, +115, 52,208,221, 54,238,247, 91, 15,209,239,204,232, 45, 65, 71, 19,144,180,128, 24,221, 11,209,104,133, 92, 60, 80,164, 77,109, +117, 47,171,189, 61,198,208,132,143, 51,232,176,255, 24, 29, 48,164,230, 9, 45, 2,242,230, 21,233,171, 29,178, 93,163, 31,125, + 21,158,191, 11,235, 15, 33,250,174,189,118,253, 39,140,214,167, 87, 38, 76, 91,253, 40,244,159,132,245,223, 71, 14,255, 54,122, +120, 1,191, 51,192, 3,236,144,238,195, 46,212,103, 9,175,247,238, 61, 99, 26,141,195,100,236,239,244, 16,120,193,200,134,210, + 65, 60,242,194,254, 16,210,185,249, 99,131,123,211,235, 5,212, 71,182, 87,151, 97,175, 91,247, 99, 64, 11,100, 8, 63,127, 72, +252,229, 13,105,206,196,110,119, 20,233,158, 14,212,198,237, 74,173,114,141, 36, 29, 68, 40,209,215, 40,190, 83, 39,154,152, 76, +179,119,244,126,200, 62, 89,204,131, 23,155,165,132,148,226,182,210, 72, 12,214, 41,217, 97,157,169,115,203,185,174,206,156, 80, + 58, 17,122,183,245, 77,185, 50,215,153,176, 61, 35, 72, 37, 29, 28, 17,125,228, 91, 83,164, 22, 23,220,249, 90, 96,235,145,157, +157,216, 99, 78,193, 53,156,243,134, 88, 86,196,131, 3,122, 81,174,198,137,169,218,254,217,238,228,118, 27, 45,197, 82,216, 66, +234,232, 67,187,187,203,254,179,187,244, 66,230, 79,111,197,166, 45, 43,141, 62, 86, 66, 37,138,135,233, 0,243,197, 35,106,234, +137,167, 79,219,101,102,187,177,254,161, 78, 54, 98,245,203, 79, 93,220, 47,198,215,151,217, 50,231,107,176,125,108,197, 56,244, +193,149,250,241,224,152,154, 6, 74,158, 60, 44,199,188,212, 17,167,172, 9, 6,100,145,184,216,175,180, 88,167,106,159,155,194, +120,113,198, 60,207,196, 97, 77, 90, 31,218,216, 55,171,137,230,250,129,126,117,176,187, 84,227,246,171, 82,150, 85,129, 21,144, +232,199,126, 94, 70,241,210, 80,177,218,108,184, 97,185, 76, 52,116,176, 74, 52, 77, 78,132, 92, 11,185, 88, 81, 22, 7,235,104, +131,185, 52,139, 30,182, 30, 72, 41,121, 76,105, 3,162, 5,136,145,226,150, 56,234,142,159,174,150, 22, 99,174, 1, 17, 59, 7, +125, 18,177, 80, 21,231,226,217,231,181,129,138, 23,172,181,190, 39, 14,165, 57, 29,204, 19, 31,251,100,152,223, 50,123,170, 95, + 90,244,173,209, 53, 36, 54, 41, 48,232, 78,241,238, 95,170, 46,132,199,224,177,191,213, 59,120,125, 34, 39, 93,246, 69,114,123, + 72, 14,105, 19,199,186, 19,165,202, 19, 64, 26, 89,106, 11, 11,214, 54,201,159, 57,177,110,115,220,139, 20, 93,137, 21,250,141, + 31, 18, 90, 77, 53,221, 36,237,121,207,163,122,225, 75,171,196, 78, 16,134,141,175,245,202, 35, 12, 54,190,223, 86,179, 76,233, +214, 47, 2,213, 18,184,100,178, 81,172,122,166, 57, 43,207, 54,127,115,131,254,183,247, 8,175,101, 83,200, 63,213, 33,183, 65, +215, 30, 16,114, 50,195, 73,183,228,142,147, 3,122, 89,145,111,122, 36,233,211,130,156,217,139,172,207,116, 72, 23,208,251, 46, + 68,219,244, 22, 94,178, 5,142,246,118,229,163, 35,244,214,193, 46, 17,217,121,238,115,113,161,158,238,102, 65, 67,176,231,237, +150,194,193,128,198, 15, 34,245,109,184, 58,131,122,219,139,190,143,132, 27, 6, 23, 39,179,156, 4,184, 8,240,184,192,153,137, +176,164, 19,116,242,240,152,214,237,225,143,233,184, 21,216, 59, 86, 20,100,101, 86,167,147,223,116,113, 94,178,137,196,204, 46, + 12,102, 73, 23,245,199, 58,196, 29,206, 52,237, 21,160, 73,159, 72,103,107,170,217,230,121,119, 92,107,139, 10, 20, 33,184,238, + 64, 92, 69, 25,250, 72, 58, 93, 17,159, 61,130, 87, 6,228,165, 8,235, 15, 64,125, 26,228, 53,248,173,115,203,157, 63, 4,222, +245,203,157,243, 41,155,245, 72, 91,198,124,221,249, 51,117,190, 94,208, 5, 22,101,175,202,206,113,193,182, 58,132,123,239, 55, +240,139, 87, 18, 74,202,132,199, 91,226,183,129,199, 43,248,224, 4, 47,126, 25,189,249, 59, 48,254, 26,114,244, 39, 97,253,199, + 32,158, 88, 60,169, 94, 66,184, 9, 71,127, 17,186, 87,144,244,215,209,195,239,192,239, 14,112,127,176,149, 79, 44, 11,186,150, +196,226,148, 88, 46, 97,231, 21,189, 81,144,254, 49,164,167,108,127,207,104,157,121,124, 10,234,202, 46,103,245,204,247, 26,226, +223,240, 6,123, 99, 14, 79, 44,211,170,253,250, 56,195, 83,145,248,177, 3,210,171,103,244,201, 18,134,213,231,114, 82,119,130, +250, 39,243, 32,116,145, 70,136,167,129,217, 68, 65, 85,144,234,130,187, 54,134,220, 27, 9,239,168,113, 78,224,171, 24, 19,188, + 78,132, 96,192,150,230,199, 93, 40,122,154, 45, 67, 61,103, 98,201, 36, 81,151,175,236, 44,156,166, 31,153, 8, 87,103,132, 58, + 65, 50,159,180,122,196,102,238,214,150,125, 93,205, 67,158, 75, 38,186, 20, 38,137,144,162, 26,110,118,123, 70, 92,245,200,250, +144,174, 86,166,113,166, 54, 50,100,234,118, 97, 55, 77,229,222, 5, 27, 89,186,137,191,168,137,201, 8,182, 34, 48,124,194,110, +130,212, 46,218, 53,154,143,220, 38, 31,142,116, 85,200,103,247, 9,177,167,123,250, 37,242,249, 67,202,217, 67,148,108,154,133, +234,207,111,232,150, 52,178,178,185,128,209, 32, 66,161, 52,159,115, 52,145,149, 22,232,215,132,213,161,141,137,125,124,173,101, +182,243,187, 27,136,221,218,244, 6,181, 82,242, 68,215,173,145,126, 32, 76, 35,108, 54,104,193,161, 65, 48, 95,156, 17, 54, 23, +172,110,220, 54,130, 95, 81,194, 48, 16, 98,103,220,113, 79, 62, 83,137,246,245,102,139, 63,221, 23,233,181, 98,109, 2,200,226, + 52,205,176,211,146,180, 34, 89, 91,130, 90,112,253,231, 46, 66, 85,171,248,200, 91, 22,187,100,241, 14,187,122,163,176, 29, 71, +250,156,145,148, 22,174, 65,206,230,175,111, 48, 23, 80,139,115, 14,201,199,247, 38,218, 83, 17,230,106,239,145,154,235, 66,133, +171,194, 46,231,221,171,165, 44, 4,204,157,243, 38, 56,130, 51, 58,122, 86, 82, 52,151, 68,153, 13, 78,228,211, 35, 99,152, 88, + 64,203, 92,173,251,183,132,188,253,108, 3, 22,170, 94, 65,204,233, 80,202,110,229,245,196, 39,243,189, 81, 46,215,241,219,242, +158, 92, 23,217,233, 85,155,191,222,247,234, 73, 62, 59,236,172, 83,165, 9,127,194,174, 61,178,100, 69, 36,121,128, 69,183,231, +101,155,177, 78,119, 18,244, 74,204,198,213,174, 18, 91,255,199,139, 23,154,217,113, 86, 37,152,192,172,197,164, 94,250,210,160, +169,211,139,154, 4,255,188,160, 15, 43,220,155,169,255,203,187,132,111, 21,248,143,111, 27,176,230,164, 64, 15,122,146,224,150, + 34,103,201, 46, 23,219,178, 3,204,188,153, 65, 18,114, 71,208, 53,200,198,119,232,235,136, 62, 2, 30, 7,163, 94,181, 66,222, +169, 9,216,130,139,212, 98, 48, 15, 58,109, 58,225, 62,161,150, 6, 82,176,139,196, 36,214,233,197, 53,196, 59,232,230,171,246, +248,115, 52,160, 70, 51,242, 39,150,132, 46, 14,125, 10,208,205,240,182, 47,140, 7, 31, 17,174, 89,248,174, 18,247,140,255,205, + 62, 21, 79,119,163,216,244,156,141,243, 79, 4, 25, 13, 93,107,118, 20,221, 19,147, 7, 15,219,136, 86,220,163, 91,243,146,123, +190,103, 87,110,203,245,162,126,237,255, 74,176, 76, 97,143, 99,107,158, 72,131, 93, 8, 66, 36, 30, 13,164,103, 14,225,123,123, +248,184,192,141, 15,129,188, 2,221, 21, 92,158,195,151, 71, 56,182,168,220,154,125,158,190, 23, 62, 99,159,109,185,142,209,175, +215,169,177,251,221,232,190,182,206,132, 43, 62, 97,122, 82,120, 18,247, 72,116,165,160,219,217, 82,222, 30, 38,120, 45,194,119, +101,120,225, 53,244,198,127, 7, 71,255, 4, 57,253, 79,237,178, 36,157, 23,215, 4,171, 31,134, 91,255, 5, 18,254, 6, 28,252, + 30,250,214, 4, 15,123,184, 18,123,110, 26,145,176, 83, 27, 51,224,162,199, 9,179,185,173, 55,208,157, 65,255, 52,132, 99,243, +158,135,104, 35,246,144,236,107,212, 43,203,133,103,107,111,200,122, 14,241, 96,207,243, 86,221, 91,105,121,233,114,161,196,207, +174, 72, 95, 63, 39,170,237,122,155,235,174,236,239,228,124, 87, 29, 90, 8, 69, 27,165, 47,226,119,135,255, 4, 93,162, 62,197, + 85,209,203,110, 30, 75, 97,171, 94, 36,170,175,138,212,193, 40, 53,136,191,158, 5,149,184,219,145,135,106,190,245, 58, 19,169, +244, 2, 61, 74, 71,117,113,150,239,245, 85, 16,157,209,205, 76,145, 64, 9, 29,165, 95, 83,186,158,210,117,148,212,251,168,126, +178, 78, 46, 91, 84,171,173, 93,252,125, 48,142,212,199, 15, 72,167,119, 72,135, 39, 48, 63,244,125,241, 78, 11,160,112,205,247, + 6, 0, 0, 32, 0, 73, 68, 65, 84, 49,184, 97,162, 18,155,103, 29, 69,197, 30,143,120, 91, 84,170,169,151,235,222, 56,219, 38, + 67, 74,165,146, 3,100,148,185,216,207,234, 96,145,122,118,223,178,194, 79,110,145, 85,169,103, 15,145, 16,137,233,208,138, 65, +236,168,211,104,222,125, 42,193,241,162,180, 81,182,136,121,227, 99, 36, 29, 28, 83, 98, 79, 45, 27, 43,188,158,154, 23, 14, 79, +137,199,167, 22, 76,130, 16,181, 18, 75, 70,130, 21,248,164, 64,236,169,219,209,140, 66,221, 64,108, 62,236, 90,144,212, 35,125, + 71,201,133,105,123,102,148,180,174,115, 91, 86,211,140, 36,160,144,167,201, 46,101,173,140,168, 49,228, 21, 35, 57, 74,104,143, +223,223,155,254,121, 44,234, 98,200,230,111,246, 66, 95, 90, 90,158,191,171,170,178, 20,236, 37,248,196, 45,116,195,106,101, 98, + 63,133, 46, 26,226,181, 79,137,218,245,104,177, 48,157,206, 31,119,174,117,241,170,199, 16,152, 68,152, 37,163, 69,252,189,213, + 86,123,123,250,160, 16, 23, 85,191, 44,133,222,207, 53,215, 98, 52, 32, 82, 20,139,141, 53,164,114,113, 75, 97, 36,139,144,167, +217, 50, 13,212,166,207,237,123, 85,143, 57, 86,127,124,213,237,109,139, 64,245,154, 9,141, 39, 6,241,123,213,123,111,106, 43, + 79,136, 86,101, 15, 21, 41,158, 68,135, 4,146, 60,221,153,141,197,115, 51,101, 25,230,199, 37, 35,214,254, 59,129, 30, 1, 39, +246,123, 58,250,225,179, 5, 29,205, 78,181,241, 39,172,184, 98, 90,154,183,215,111,238,181, 56,204,195, 37,212,165, 66,238,224, + 42, 34,179,154,239,250, 74,208, 51, 51,182,203,187, 25,125, 56,195,215, 11,250,235,151,240, 11, 21,126,225,150,225,101, 15,214, + 72, 63,195,225, 6,110, 22,155,154, 94,120,203,178,241,162,123, 63,163, 29,200,237, 14, 93,137,217,194,186, 96,138,242,181, 90, +231,186, 31,113,218,186,111,221, 69,232,217,124,109,143,238,148,189,187, 25,129,183, 50,108, 29,144, 17, 86, 16,159,134,205,255, +128,206, 62,122,111,233,108, 77, 17,221, 40, 63,135,105,201, 80,215,199, 25,110,123,224, 71,241,189,123,220, 75,121, 80, 87,160, +143, 5,202,100,130,170, 32,222,226,216, 88, 74, 86,160, 41, 64,182, 34,187, 36, 59, 53,145,156,103,168, 19,204,174, 32, 43, 3, + 81, 48,101, 19,197,201,222, 69, 45, 63, 33,187,148,189,229, 78,139,180,117, 17, 10,157,137, 92,210,170, 35,124,224, 8, 62, 43, +200, 71, 20, 78, 62, 9,225, 15,184,253,240, 30,250,237,135,246,220,159, 84,244,194, 32, 55, 90,212, 17,148, 62, 5,216,219,163, + 47,238,169, 6,228, 41, 92,187,225,134,228, 5,223,255, 76, 81, 8,179,238, 30,110,244,174, 95,174,243,218, 85, 43, 53, 43,161, +155,141,104,246,122,128, 7, 17,222, 90,193,199, 20,110,127, 14,182,255, 17,220,250,203, 86,200,227,205,221, 88,160,255, 44,220, +252,107,208,253, 93,228,224,215,225,242,161, 93,222,198,176,176,235, 81, 7,249,204,205,203,105, 23, 66, 61,155,172, 91,239,174, + 32,173, 33, 29,237,177,118,111, 67,126, 8,122,207,108,138,201, 63, 95,136, 77, 11,228,198,222, 71, 57,154, 93, 50, 12,232,168, +200, 58,210,221,233, 73,143, 70, 82, 15,163, 24, 14, 51,239,157, 5,178,175,112,108, 59,111,159,180,148,182,142,173,234, 93,173, +109,214,203, 34,182,243,159,107,165,196,128, 70, 7, 0,249,254, 61,164,206, 46,198, 45, 69, 13,252,207,212,229, 82, 25, 82, 71, +210, 66,151, 71,250, 96,235,146,166,113,237,130,216, 40, 63,196, 69, 68, 84,137, 76, 69,153,166,145, 50,207,132,110, 64,250, 21, +161, 79, 30, 48, 50,195, 60, 81, 74, 97,148,200,236, 54, 62,213,194,106,115, 69, 12,239, 18,110, 62,139, 28,222, 64,207, 30,249, +229,195,188,222,109,159, 37,216, 69,163,230,138, 22, 49,223,178,183, 67,217,193, 58, 45, 83,220,161,243,246,171,254,121,210, 96, + 94,227,226,225, 42, 38, 26,180,196,179,242,238,219,164,227, 76, 92, 29, 19,179, 41,211,101, 24,208,121,164,206,147,249,245, 61, + 79, 60, 58,104,166,165,158,137,211,199,218,229, 54, 12, 3,113,107,241,169, 5,156,165,127,100,150,190,162, 80, 50, 41, 40, 49, +246,166, 28,247,120, 87, 9,193, 84,234, 85, 45, 92,135, 96,189,218,106,229,120, 86,150,180,176, 82, 10, 93, 48,203,214,226,135, +142,201,102, 26,253, 64,201,209,148,224,186, 19,181, 72,112,231,134,219,229, 52, 25,207,162, 20, 3, 14, 89, 18,155,186,207,126, + 39, 18,171,222,205,182,122,208,222, 95,210,200,161,178, 75, 41,139,170, 12,253,202,178,208, 75,118, 62,187,169,252, 39, 41,156, + 79, 19,211,102, 99,123,245, 90,220,183, 45,116, 41, 18, 83, 67,209,122, 38, 61,123, 99,119,246, 14,153, 86, 22, 27,255, 94,119, +227,112,123,109,146, 81,244, 60,117,173, 22, 43,232,125,215, 81, 99,100,158, 51,197, 83,239,212,147,227, 26,209,211,190,121, 49, +157, 69,158, 22, 32,216,251,152,215,118,112, 88,121,162,159, 82,150, 38,234,122,173,151,107,182,113, 43, 19,150,126, 39, 26, 72, +245, 31,159,155, 16,109, 91, 97, 16,244,212,228,233,114, 18,173,243,233, 61,194,180,207, 72, 26, 33,140,102,173,225, 96, 17, 81, +216,193,151,145,195,214,241,123,135, 88,247,158,188,136,143, 19,147,197,135,134, 54,186, 25,237,199, 60,219,223,155, 42, 92, 5, +203,153,190, 0, 57, 83,244,251, 11,188, 54,195,175,110,209,191,246, 46,252, 39,167,200, 31, 22,232, 94,178,127, 48,157, 33,135, + 87,112,115, 3, 23, 51,250,168,179, 11,194, 12, 60, 82, 52,101,228,116, 13, 71, 61,112,233,197,162,183,199,182,153,151, 17,180, +190, 91,144,219,158,186, 85,253, 29,222, 21,223,153,186,119, 92,124,153,187,194, 2, 74,186, 0, 79, 77, 16,191, 11,164, 71,207, + 95,133, 50,120,204,170,143,182, 27,133,167,224, 69,181, 71,211,108, 22, 59,181,189,187, 32,230,253,107,251,145,171,186, 40,189, +161,120, 12,212,108, 65, 46,116,126,177,138,215, 32,253, 18,108,220, 37, 26,118, 92,213,228,193, 53, 41,236, 86, 43,235,180,187, +234,205,205,163, 46, 59,145, 53,187,188,120,209,104, 32,150,186, 67,158, 74, 76, 72,114,180,228,193, 64,248,240, 33,124, 47,200, +203, 43, 88,127, 22,134,159,118,110,202,219, 80, 30,192,107, 19,218, 91, 46, 51, 89, 77,136, 87,119, 31, 34,220,130,116, 77, 44, +178,183, 62,160,218,122, 34,204,123,159,197,180,123,235,209,226, 97,219,174,189,161,101,221,195,101,225, 82,230,137,183,220,110, + 63,164, 99, 69,182,130,188,158,161, 30,192,139,207,160,183, 30,195,244,215,145,211, 31,128,131,159,131,254, 51, 54, 34,151, 0, +221,119,193,141,255, 16,214, 63, 10,235,127, 0,243, 91, 48, 95, 88, 46, 88,197, 46, 93,185,216,123,121, 59,249,180,198,191,177, +241, 17,116,247,161, 27, 96,248,184, 69,173,214,251,246, 89, 24,110, 67,125,206,186,240,120,195, 19,218,130,117,244, 76, 32, 79, +237, 41,220,142,253,239, 36,200, 51,233,217,142,225,225,184, 36, 26,102,125, 18, 99,177, 11, 38,145, 38, 40, 13,166, 97, 8,197, +186,240,220,254,148,238,124,186,186, 11,155, 55, 1,169, 68, 43,135, 49, 44, 16,146,216,175,220,222, 88,172, 8,122, 86,117,221, +110,108, 30,144, 58, 98,136,116,235, 21,253, 38, 35, 90, 41, 34,100,148,132,208,249,228, 54, 7, 33, 99, 95, 63, 87,101,150,202, + 84, 21,242, 68,205,153, 88, 10,105,181, 38,118, 29,162, 7,150,152, 88, 38, 74, 46,100, 13,126, 21, 9,118,151,218, 94, 17, 31, +223, 39,222,120,150,120, 18,200,103,143,208,146, 17,241,228,185,154,109,199,238, 69, 77,202, 46,183,160, 74, 34, 19, 12, 58, 35, +134,105,182,105, 84,103, 69,147, 93, 23,134,184,232, 84,227,178,139,182,240,147,153,233,241, 61,226,173,142,238,246, 51,212,237, + 72,222,156, 81,167, 9,165,216, 22,190, 20, 42, 74,242,240, 26,245,118,177,248,197, 83, 42,232, 52,162,235,186, 64,160,240,100, +178, 50,141,214, 37,214,108, 35,225, 52,216,152,221,249,225,161, 27,200,115,134,216, 25,242,214, 97, 62,161, 31,144,110,112, 21, +252,214,142,153, 97,181, 84,147,138,141,221,197,147, 38,237,130,160,132, 20,209, 26,208,146, 23,222,185,248,254,187,161, 79, 53, + 4,106,158, 45, 98, 85,213, 97, 97,102, 85, 22,183, 41,182,247,148, 56, 12, 70, 28, 0, 84,197, 46, 93,161,121,174,221,189,176, +153, 38,143,151,236, 25,231,217, 94,175, 61,198, 64,138,129,185, 70,247,146,183, 21,138,229, 32,196,217,108,123,178, 48,237, 27, + 48, 74,247,151,212,187,222,141, 29,205, 15, 60, 11,194, 49,185,134, 24, 54, 24, 79, 39,145,174,239, 40, 65,216,142, 51,121,158, +141,239, 32, 98,221,120, 41, 75, 51,166,106,180,191,156,103, 3,208,236,237,191,244,218, 86,253,253,202,188, 59,125,244, 58,219, + 93,126,255, 80,214,221,146, 76, 42, 41,255,103,247, 60, 64,163,101, 64, 67,186,217, 81, 63,177, 66, 38, 65, 31,168, 21,248,151, + 35,242,153, 11,120,230, 1, 60,229,251,245, 77,112,252,170, 23,255,222, 81,169, 7,209,160, 41,238, 5,151,232, 59,199,208,192, + 44,183, 64,111,130, 62,211,124, 71, 16, 51,112, 5,199, 35,114,235,161,117, 47,211,140, 94, 9,114,149,224,211,135,240,195, 25, +253,194, 22,253, 59,151,112,145,145,159,121, 3,134,207,194,252, 97,144,115,232, 30,195,233,183,144,225, 2,125, 24,224,210, 59, +230, 51, 69,229, 28,185,113, 12,199,199, 32,143, 64, 59,100, 18,152, 12, 79,201,161,143, 75, 71,239,128,211, 19,177,117,189, 79, + 27,162,154,130,254, 57,255,243, 67,128,213, 22,226, 7,161,220,131,135,111,128,222,112, 52,108,221,189, 18,157,123, 11, 79, 6, + 91,226,135,115,227,126, 39,168, 91,211, 3, 72,106,109, 86,241,152, 86,105, 50, 81,167,168,101,144, 35,175,116,157,141,111,147, +123,236, 7,215, 58,204,123,240,156,230,177, 79,126,129,234,124,175,222,187,107,160,205,106,103,174,239,212, 61,209,110, 9,143, + 40,209, 97, 75,123,232,200, 20,136, 7, 61,225,249, 3,248, 76, 64, 62,124, 4,199,255,186, 21, 60, 57,130,252, 22,212,119,208, + 71,111,195, 93, 67,168,106,246,247,153,115, 85,212,189,179,251, 26, 61,226,130,196,182,207,192,188, 71,215,107,111, 97,223,237, + 47,172,246,253, 27,174, 68,170, 68, 66,153,177,134, 98,199, 21, 96,107,118, 61,137,123,144,149, 4,108,183,240, 14, 72, 60,128, +139, 27,112,121,129,222,248,127,144, 91, 95,128,211, 79,195,240, 51, 38,164,139,183,237, 57, 95,253, 65, 19,209,213,183, 96,126, +219,196,109,122, 14,211, 59, 48,127, 7,166, 71,112,112, 9,121,130, 58,185, 88,114, 54,229,250,112,234,227,247,151, 33,222, 1, +189,239, 1, 46,207,239,101, 41,174,188,192, 42,232, 99, 83,205,203,137, 95, 40,159,130,176, 70,142, 2,122, 27,194, 65,164, 63, + 10,116,219, 74, 31,217, 9,224,124, 28,216,108,130, 97, 25,189,123,104,144,143,126, 85,212, 5,105,174,157,144,182,183,140, 22, + 43,234,163, 15,109,123, 12,159,128,132, 16,157,149,110, 89,222, 57, 8, 69,130,113,222,183, 27,159,230, 8,177, 42,131, 88,120, + 70,113,165,120, 16, 33,123,238,124,160, 90,104,139, 56, 49,109, 54,143,114,219,173,148, 32,200, 54, 35,117, 36, 12, 43,211, 80, +116, 61, 26, 35, 57,206, 72,217,141, 80, 53, 8, 85, 42,108,206, 9,161, 39,157, 60,109,249,227,103,239, 82,203,180,236,118, 89, +122,182,246,191, 64, 14,145, 18,123,136,206, 51,119,223,124,157,204, 99, 78,173,232, 60,249,228,171, 67, 67,178, 66, 59,141,228, +105,180, 49,181, 8, 26, 7,100, 56,176, 20,180, 16,145,254, 0,166,129, 82,206,208,249,138,234, 23,167,216, 2, 37,117,145,152, + 45, 22,166, 32, 66, 26, 6,223,250, 25,129,174, 19,219, 33,211, 69,139, 83, 45,149, 90, 11, 41, 4,210,224,118,179, 96, 49,183, + 90, 3,121,218,144,231,201, 67, 90,140, 67,222, 50,226, 91, 87, 45, 82,141,225, 30, 58,132,106,151,164,217,152,251,203,100,209, + 39, 10,213, 45,109,197,129, 44,173,211, 7, 40,217,126, 45, 40,196, 62, 89,134,185, 79,110,234,222,250,162,185, 11,218,122,176, +250, 78,189,214,234,162, 87,215, 22, 84, 53,130,228,102,195,161, 8, 93, 63,176,189,186, 34,133,106,222,120,148, 84, 42, 93, 76, +108, 82,100,154, 60, 66,182,148,107, 35,234, 90, 42, 34,213,243,213, 77,131, 81, 99,244,238,190, 46,103, 71, 88, 70,124,190, 78, +108,137,107, 46,252, 75, 2, 93,234, 33, 38,182,165, 48,141,166,115, 16,159, 52,213, 82, 22, 69,189,131, 33,188,160, 79, 80,178, + 71,184,202,251, 84,101,225,247,255,149,157,224,240, 61, 37, 95,158,164,206, 57,254, 86,236, 93,157,222, 28, 10,131,128,172,132, +203,217, 68, 54, 39, 23,149,227,175,101,228, 78, 68,223, 41,240,166, 16,222, 73,200,107,157,249,193,159,235,172,155,125, 75,209, + 11,181,238, 90,156,175, 94,197,154,248,163,100, 93,225,179, 29,124,184, 67,158,143,240, 92, 64,110, 95,192,241,125, 56, 92, 33, +253,202,196, 72, 50, 0,167, 80,111, 65,237, 44, 71, 58, 61,128,248, 22,178, 62,135,211, 11, 19, 94, 62, 51, 32, 47, 13,240, 67, + 35,252,230,140,254,195,251,200, 79,253, 6, 28,253, 33,152,111,251,119,245,105, 88,127, 19,137,111,193,186,162,151,189, 21,132, +179, 8,114,142,220,232,144,227, 15,160,188, 9,115,132,210,217,190,189,100,180,137,157, 26,101,173, 41,142, 22, 84,143,207,136, + 59,221, 65,193,181, 56,236,225, 37,216,190, 13,151,179,121,155,103,103,169, 87,221,243, 96,249,248, 93,231, 29,224,166,119,123, +215, 69, 70, 52,217,161,179,113, 26, 87, 10,168, 70,139,132,173,225,122, 36, 41,186, 43,234,235,178,203,234, 22,139, 76, 52, 56, +143, 88, 87, 19, 92,193,222, 57,239,189,139,150, 12,215, 42,105,218,217, 96, 22, 38,121,149,221,247, 55,237, 50,224, 37,186, 77, +174, 75,132,163, 30, 94,136,230,159, 63,252, 19,112,248,175, 65,184, 97, 62,191,250, 8,228, 46,188,117, 31,238, 71, 52,206, 54, + 21,169,142,222,100,207, 50,164, 59, 83, 73, 45,239,129, 44, 45, 67,135, 29,212,204, 61,242,169, 13, 20,148,128,184,163,162, 99, + 39,139,182,142, 65, 60,177, 75,167,138, 92, 41,154,108,215, 74,149,197,147, 47,219,201, 4,148, 53,193,213, 10,222, 88,161,113, + 11, 47,127, 14,121,233,203,176,126, 9,186,239,134,245, 79,193,240, 49, 43,200,241, 25, 72,243,110, 23, 80,183, 86,220,243,235, + 48,125, 9,174,190, 2,243,185, 93,180,106,181,223,159,223,128,122, 10,242,125,150, 32,135, 23,118,237, 77,161, 41,105,231, 75, +215, 75,223,235,191, 11,241,216, 39,240,207, 67,247,148,249,192,111, 77, 72,151,232,110,116, 12,155,145,173,191,204,197,239,127, +181, 81,192, 84,233, 16,215,183,170,125,207,170,230,195,142,178,224, 92, 9, 22,202, 98,171, 50, 64, 50, 82, 92,184, 21,213,161, + 50,209, 64, 49, 62,202,111, 65, 23, 69, 3, 58, 95,161, 87, 23,246, 34,198,158,160,217,146,207,242, 12,142, 47, 21,204, 53, 49, + 19, 23,145, 25,218, 64, 35,251,157,139, 46,137,181,137, 10,121,164,214,108,250,137, 24, 45, 5, 45, 68, 98,138, 36,191,184, 69, +157,161,206,204, 85,201,231, 15, 17, 2,221,173,231,209,212, 49, 61,124,199,172, 96, 13,154,227,139,214,140, 48,213,106,217,226, + 82,173,185,232, 43,148,108, 17,162, 37, 35, 49, 18,251, 21,169, 95, 19,251,142,128, 50, 79, 51,101,187,161,204,141, 27, 30,237, + 60,235,143,237,251,217, 92, 50, 94, 94, 16, 14, 79,208,148, 8,235, 3, 19,222, 77,163,119,130,118,177, 41,110,175,139,146,144, +186,139,133,141,253,202,146,156, 15,143, 77,161, 94,103,219, 86,250,202,138, 24,168, 57, 51,109, 46,145,228, 23,144,121,182,203, + 86,180,124,249,198, 20, 8,221,128,196,222,137,139,133, 24,211,178, 94, 80, 96, 46, 70,109,139, 41, 17, 83,191,139,143,109, 43, +171,146,151,110, 51,165,222, 0, 42,165, 16, 90, 65, 22,183, 16,214,234,107,181,234,142, 22,251,108,135,150, 59, 46,215, 5, 50, + 18,133,168,137,216, 60, 24,173,168, 7, 3,221, 32, 1, 41,133,227,213, 1,225,240,144,237,102, 67,170,149,213,208,147, 99,101, +202,133,131,216,177, 90, 37,178, 86,166,108,105,133, 82, 93,133,142, 93,124,164,212,197,142, 24,163, 77, 72,170,211,238,100,223, +162,201,110,220,237,238,111, 82, 52,246,252, 12, 76,211,104, 19, 17,173,182,230, 36, 44,217, 11,162,126, 33,118,164,112,206, 51, + 58,103, 87,247,239,119,233,240,126, 82,185,247, 5,186,235,123, 75,190,136, 92,203, 91, 87,103, 17,214,189,110, 62,189, 21,196, +132,209, 1,102, 17,206, 29, 73,254,114,169,156,204, 48, 31, 42,227,182,178, 46, 74,216, 86,228,204, 88,175,225,227, 29,156,128, +110, 10,234,150, 17, 38,181,157,229, 28,144,115, 23,101,189, 29,144, 47,119,104, 67,213,137,249,188,229,102, 64, 94,137,240,241, +183,144,167, 3,220,234,225,228,208,201,109,135,182,163, 14,213, 14,186,116, 12,221,165,249,122, 87, 9, 61, 94,193,139, 3,188, + 58,162,255,252, 2,249,254, 95,129,211, 31,135,242, 28,132,183, 64, 95, 48, 58, 87,119, 23, 89,159,163, 23, 9,198, 1,221, 36, + 36, 62, 52, 16,201,241,135,208,252, 13,184,244, 14,182,136, 21,175,206, 5,125, 97, 15,180,139,238,197,127, 6, 91,242,186,133, +128,185, 9,217,158,131,241,243,150, 16,215, 72,119,237,235, 37,255, 58, 3,206, 48,159,109, 60, 63, 66,221, 20,139, 25,157, 42, + 28, 90,161, 85, 15,131,145,117,176, 17, 96,239, 58, 5, 85,208,139, 93, 91, 29,143,161, 91,195,209,165, 21,234, 80,156,164,231, +175,120,111,227, 61,243, 98,123,236, 94, 31,247,114, 56, 23, 0,246,162,118, 38,201, 50, 94,213,108,121,198, 82,117,207, 35,110, +185,227, 97,136,166, 13,184, 9, 28,156, 88, 80, 74, 60,222, 61, 79,245, 18,174, 62, 15, 95, 25,161,118, 22,162,145, 45,129,139, +154,109,247,218, 40, 88,173,160,191,143,206,141,125,171,214, 94, 97,183,200, 86,159, 36,184,157, 50,136,189,150, 58,244,134,108, +173,101, 15,163,232,254,117,203, 30, 53,162, 93,181,110, 83,163,119, 15, 83,177,204,249,171, 10,155,138, 94,116,240,234, 0, 31, +201,240,241, 87,145, 27,175,194,225,175,192,241,207,192,225,207, 65,252,192, 46, 0,136, 96,171, 17, 57,134,248, 28, 12,159,129, +245, 59, 48,126, 1,166,175,192,252,200, 47,128,231,192, 55,129,135, 16, 62,224,182,134,167, 65, 31,250,184, 61,238,201,214, 71, +208,119,172,219, 15,207,218, 30, 33, 28, 64,255,221,208,125, 1,110,157,193, 97, 34,174, 35,235, 36, 92, 86,101,148, 29,156,208, +242,201,189, 19,209, 93, 90,147,237,132,155, 90,217,118,164,154, 2,237, 86,219, 12,134,185, 85,221, 96, 91, 89,149, 72,110, 40, + 88,221,241, 0, 10, 66,221,110,209,121,235,124,116, 43,248, 93,205, 12,209,192, 24,165, 76, 8,193,212,234, 18,152, 37, 90, 38, +184, 35, 67,231,118,181, 8, 46,102,107, 20,221, 96,157,162, 77,116,204, 54, 84,107, 33, 75,166,120,158,120,236,204,158,213,165, + 53,154,131, 21,220,170,212,243,119,141,188,120,243,121, 11, 49,121,248, 54,184, 47, 30,129,210,224, 60,190,239, 45, 45, 71,123, +220,186,165,205, 60,149, 49, 25, 52, 40,228, 12,213, 98,100,179, 88,174,186,148, 98, 26, 33,247,187,151,243,135, 6,149,113,145, +161,204, 91, 66,191,166, 59, 56,130,213,177,165,143,229,173, 61,247, 5,178, 4, 75,108, 22,217,189, 68, 53, 48,111,206,169, 85, +136,199,167,132,131, 3,168,106,202,238, 75, 3,217, 72,103,233, 97,217, 73,209, 18,237, 82, 48,231, 76, 17,179,237,117, 26, 40, + 90, 92, 75,225,153,236,177, 51,112,148,119,119, 45, 92, 71, 20, 7,204,224,130,174,157,117,172, 98,132,180,226,204,245, 90, 89, +138, 93,187,216,213, 90,125,252, 93,201,222,249,198,101, 50,178,163,185, 73,179, 89,138, 21,214,144,170,175, 48,118,161, 52, 49, + 37, 91, 35,186, 0,174,215, 74,127,116,196, 35,181,243, 35, 41,244, 93, 79,144,204,228,197, 57,170, 16, 16,102, 9,228,154, 77, +252, 89,138, 9,232,156,183, 27, 36,144,107, 48, 0, 78,140, 22,218,211, 40, 12, 98,176,153,184,100,181,219,132,163, 32,140, 45, +218,184,113, 1,170,173, 11,179,103,200,155,117, 54,184,138,223,136,120,117,158,237,220,148,253,204, 5,253,125, 67, 89,158, 20, +194,233, 30,146, 70, 91,216,177, 92, 23,212,233, 94, 14,235,110,199, 46,164, 92,119, 13,153, 79,136, 57, 87,184, 8,202,113,168, +200,161,145,155,250, 78, 9, 87,246,141, 49, 43,186, 13,200,105,178,189,113,169,232,166, 48, 7,101,219, 97, 99, 18, 12,110, 17, +178,216, 14,171,120, 49, 31, 77,224,171,239, 8,250, 53, 49,212,220, 65, 68,142,183,240,252, 6,189,115,128,222, 1,185,117,134, +156,142,200,177, 32, 55, 58,184, 97,200, 83,214,213,146, 41, 59,224,123,214,232,163, 30,125,227, 2, 41,255, 4,110,253, 36,240, + 33,224,235,118, 80,202, 51,112,112, 23,233, 94,131,241, 18,221,174, 97,234, 96,188,107,135,247,233,243,232,230,219,240, 86,179, +118,249,104, 55,184,173,173, 5,165,180,133,173,250,220,120,222,185,139, 12,243, 26,140, 57,191,253, 26, 20, 27,203, 49,122,167, +184, 0, 57,246, 98,239,166, 43,120, 87,225,145,101,160,163,216,158,121,107,193, 9,250,112,164, 62,206,200,105, 79,172,106,227, +177, 41,160,155,138,148, 7, 94,225,162, 21,144,238, 24,250, 75,239,212, 3, 18, 20,205,123,243,232,125,188,105,220, 89,217,180, +229,188,143,102, 43,220,221, 12, 93,229, 63,202,110,223, 94,118,153,206,162, 30,239,216, 59,136,103,104,170,108,113, 81, 76,133, +242, 8,242, 23,209, 55, 95,131, 55, 58,180, 47,158,205,222, 2,121,212,187,106, 27,131,235,123, 60,154,186, 3,203,236,143,214, + 91, 97,247,193,135, 54, 97,120,217, 9, 94, 68, 4, 73,189,105, 63,212,187,113,247, 6, 83, 48,116, 99,113, 75, 75,240,238, 93, +130, 57, 36,122, 19,124,105,142,246,189, 20,129, 81,208,175,173,224, 98,128,211, 13,220,120, 27,249,174,191, 13,183,127, 3, 78, +254, 42,244,175,248,251, 98,222,137,234, 8,118,131,235,190,203, 64, 50,235,127, 9,242,183,160,220,117,241,219, 5,112,215,191, +145,198,146,127,202,226,116,235, 3,127,160, 29,148,183,160,190, 10,241, 19, 54, 1, 48,107, 4,244,159,134,120,108,193, 69,167, + 25,190, 19,233,214, 66,188,220,187,208,181,240, 10,183,169,213, 61,158,123, 91,173,171,236,104,105, 82,132,162,217, 46,116, 41, +162, 41, 81,114, 37,116, 16,164, 67,163,197,103,106,158,151, 93, 59, 85,169,157, 91,143,218,175, 71, 59,220, 18,149, 21,202,160, +194, 40, 66,173,149, 46, 84,130,122,182,185, 43,200, 43, 38,168,170, 62,154, 13, 65,232, 37,120,114,154,113,212, 3,214, 81, 55, +135, 90,240, 81,166,184, 90,160,150, 74,183,205,196,213, 10, 82,231,154,146,217,198,204,103, 15, 64, 18,233,198,211,228, 24,168, + 15,223,129, 50,154, 64,207,159,131, 42,106, 90,128,118, 79,172,217,239,175,226,112,157,104, 54,172, 60, 81,199,201, 30, 75,191, +118, 61,139, 32,193,214, 1, 58,110,209, 98, 43, 6, 13, 54,233,210,108,162, 62,219, 21, 71, 66,234,157,193, 48,146, 75, 38,107, + 37, 68, 49,145, 56,129,185, 42,105,181,182, 46,143,128, 76, 19, 33,246,206, 49,168,132,213,218,117,198,197,209,179, 9, 73, 61, + 49, 36,106,176,132,187,185, 20,230,185, 16,253, 57, 43, 87, 23,196,212, 19,250, 97,161, 1, 6, 32, 13, 43,214, 7,199,244,131, + 41,205,203, 92,216,110, 47,152,234, 22,212,108, 93,177, 75,206, 52, 55,113, 93, 94, 10,187,217,197,196, 85,236,181, 20,211,171, + 56, 44,166,214, 76,206,101, 25,211, 43, 59,177,106,219,203,183,233, 95,104,113,184, 94,212, 67, 8,134, 82,173,106, 96,165,121, +230, 36, 38,230,213,138,203, 77,101, 44,133,224, 29,241, 14,233,106, 96, 35, 9, 16,138, 16,164, 16, 66,160, 22,115, 5,152,229, + 78,246,118,222,118,132,166, 96,197, 61,133,176,192,163,218, 78,187,248,101,165,199,244, 7,147,154,128,211,148,251,213, 60,232, +152,123,160, 46,148,189, 74,158, 38, 19, 41, 62, 9,130,218,211,189,255,126,241, 85,215,164,240,203, 17,168,123,244,184, 61,107, + 94,219,165,239,123,219,137,164,140, 18,171, 44,225, 45, 7, 2,227,158,248, 58,246, 74, 10,234,249,205, 14,175,152, 11,122, 47, + 35,183, 34,242, 84, 64,167,128, 94, 22,255,160,122, 98,155, 71, 3, 70,160,155,149, 48,219,184, 69,171, 80,170, 34,197,139,126, +157, 9, 36,170, 36,228, 91, 19,252,238, 21,178,186, 64,159,126,138,154, 14,225,236, 10, 25, 39,136, 21,121, 94,144, 31,238, 9, + 31, 79,200,109,139, 74,149,161,135, 27, 39,232,163, 11,228,221,127, 4,183,126, 2,228,135,128,239, 88, 34,151,222, 54,250, 90, +250, 58,210,223,181, 46,185, 14,144,223,134,238,121,228,185,231,168,211, 91, 22,215,170,150,181,110,241,134,123, 50,236,165,178, +236, 5, 65,204, 30,206,178, 6, 89, 31,217,179,250,240, 45,208,149, 23, 75,221,129,122,100,143,244, 57, 1,239, 22,184, 59, 81, +239,205,118, 24,138, 53,105,234,254,174, 58, 86,242,182, 16,238,111, 76, 97,189, 82,226, 16,144, 71, 64,249,246, 94, 92,216,129, +119,110,174,218,223,216,165, 67, 34, 59, 21,166,236,217, 21,147,119,234, 45, 70, 54, 59,108,122, 73,255, 48, 85,175,110,117, 23, + 49,235, 93,141, 68, 47,234, 67,176,130, 46,201,218,229, 62,219,250, 68, 39,179, 97,213,115, 24,191, 12,231,255, 7,124,181,122, + 22,113,177, 21, 67,118,213,187, 96,170,247, 37,157,109,135, 31,109, 42,214,253,205, 39,123,247,147, 86, 51,165,114, 45,124, 4, +113,238,123,114,127,109,112, 33,225,126,120, 71,195,200, 78,160,189,151,186,224, 47,118, 27, 13,150,106, 23,159,236, 43,141,222, + 11,252,121,133, 71, 17,206, 87,232,183,102,248,190, 47, 33, 47,255, 2,156,254,151, 48,124,175, 79, 40,182,123,159, 72, 23,128, +146,172,203,238,239, 88, 97,214,251, 54,134,103, 6,238, 3, 47,238,169, 75, 87, 86,184,235, 99,123,204,227, 47,217,107, 29, 94, +114, 40,142,211,136,210,203, 48,124, 8,142,222, 36,188, 88,224,247, 18,129, 64,175, 13, 60,180,203, 94,217, 57, 10,196,176,204, + 93,135,206,121, 73,255,106,118,180, 37, 26,178,218,123, 67,165,218,158,174,216,231, 90,243,236, 93,181,227, 96, 5,180, 75, 54, +222,205, 51, 69,108,252,184,184, 38, 69, 22,115, 73,213,221, 24,189, 74,100,174,118, 0, 22, 95, 21,181,184, 82,212,236, 67, 49, + 37, 75,124, 43, 21,130, 46,217,218, 79,180, 36, 14,231, 16,146, 40, 93, 80,164,108, 33, 24,141, 78,114, 89,102, 14,245,241, 61, +163,131,221,124,142, 26, 2,250,240, 77,170, 23,118,162,175,109,234,206,175,220,128,155,193,179,209, 21, 65,156,158, 70,205, 38, + 24,172,149, 48, 12,148,170,148,237,149, 23,243, 22,108,211,140,136,254,252,170, 50,111, 46,156,238,216, 91,135, 27, 7,234, 28, +209,121, 7,168, 81, 42, 50, 28, 18,143,111, 83,183, 87, 11,194, 54, 87, 69,231,173,237,200,135, 53, 97, 88,163,211,214, 10,181, +199,215,230,121,180,221,174,135,178,162,222, 93, 74, 52, 1,158,139,186,114,173,104,169,190,113,179, 51, 98,154, 70, 66, 76, 84, + 53,177, 92,243,194, 39, 9, 38, 78,108,179, 27,223, 99,151,190, 50, 59, 30,182,228,217,128, 62, 34,164,212,177,228,200,186, 82, + 61,123,242,155,209,220, 10, 82,101,209,115,180,136,224,253,177,251,114,220,170,193,131,156, 89,198, 58, 70,182,195,138,113, 59, + 82,146,178,157,103, 74, 53,197,119, 3,207,224, 83,170,152, 2,189,167,201,217,197,204,186,248,224,164, 78,117,204,116, 23, 2, + 41, 24, 80,104,246,149, 66,174, 74,214,106,184,217,170,164,104,175,205,182, 86,166,105,132,106,159,149,166, 53, 8,126,217,205, +165, 50,151,153, 50,206,203, 90, 67,222,131,137,227, 90,108,241,255,255,244, 93,223,143, 6,239,161,183,122, 77, 72,247,100, 54, + 67,202,106,246, 1, 92, 59,181,138,194,202, 39,182, 90,236,236,142,193,254,145,217,155,214,132,208,159, 27, 47,156,219, 29,114, + 51, 16,206, 3,105, 83,204, 82,227,206,175,169,133,170,181,129, 65,221, 75, 33,141, 74, 47,202, 80, 43,195, 69, 33,229,130, 30, + 4,131,153, 48, 33,103, 19,220,184, 65,205, 9,238,206,112, 57,193,215, 20,253,229,142,186, 78,200,103, 2,225,103, 6,228,149, + 1,185,145,144,131, 99, 56,223,192,227,127, 4,199, 23, 16,255, 21,235,134,228, 29,224,131,160, 31,131,238,235, 16,191,100,135, +102,237,188,176, 63, 67,120,233, 14,250,232, 30,250, 45,127, 90, 98, 53, 79,171,132,235,166,104,217,251,113, 96, 99, 24,142,170, +237, 70,235,119,224,209,235,118, 97,104,223,228,210, 45, 7, 59,195, 59, 15,152,185, 63,193,131,209,198,236,106,123, 17, 29, 43, +122, 81,151,119, 66,233, 76, 40, 21, 74,166,142, 16,106, 68, 30, 70, 75,241,210,173, 89,157,164, 55,144,137, 56, 20, 40, 98, 79, +190,232,142, 94, 39, 59, 56,138,237,211,221, 58, 55, 22,227, 10,140,126, 1, 96,207,210,150, 29,150,211, 9, 82, 93, 8,217, 70, +185, 93,178, 76,246,152,224,164, 26, 68, 39, 60,103,197,107,190, 11,243,215, 97,252, 71,232,215,223,129,111,117,104,200, 38, 80, +115,145, 90,187, 23, 45, 22,182,125, 24,195,242, 65,223,137,188,158,244,113,162,120, 76,237,245,203,146,186,237,205,132, 71,158, + 72, 87,154,229, 96, 9,232,178,127,116,202, 86,240, 15, 35,210, 86, 66, 88,106,156,133,235,120,136, 76,241,231, 45, 57,235,158, +106,169,111,191, 19,224,221, 1,253, 3,175, 35,159,250, 43,112,235,111,192,240,131,254,141,108,159,248,120,238, 41, 80,229,196, +138,182,220, 7,238, 1,103,192, 99, 12,196,236,170, 69,185,101,157,252,230,127,134,243,175,194,250,123, 32,157, 65,124, 23,240, +113,127, 56,130,245, 31,132,139, 47,193,203, 35,114, 59, 17,239, 37, 86,151,153, 74, 32, 39,155, 60,197,234,239, 45,191, 51,100, + 81, 84,178, 25,156, 90, 39,233, 89,246, 90,240, 84, 49, 7,180, 84, 47,166,101,246,199,229,172,247,152,208,212,147, 5,243, 91, +207,121, 73,247, 17,177, 78,125, 21,132,163, 40,196, 46, 50,230, 74,204,153,222, 95,132, 82,161, 96,200,204,186,151,198, 39, 46, +160, 18,117,107,142, 43,200,236, 82,224,118,161,234,151,203,246,150, 84,107, 26,146, 88,162,155,212, 66,157, 38,232,147,241,232, +167,201, 87, 48, 21,125,120, 23, 81, 33,221,126,150,148, 6,120,248, 29,202,120,229, 39,147, 34,209,120,228,197,253,243,193, 25, + 12,100, 83,125,167, 16, 44,128, 6, 59,200,101,125,140, 14, 3,170,151,212,121,182, 29,117,158,140,191,230,133, 4, 9,166, 14, +247,231, 39,231,130,150, 45, 93,234, 12,217, 28, 59,130,154, 98,181,184, 7,188, 63,126,202, 82,225,106,165, 27, 44, 47,160,186, + 98, 58, 68,131,161, 72,201, 84, 9,244,195, 26, 73,145, 92,148,162,230, 43,159,171, 82, 66, 90, 46,182,226, 66,179,154,231, 37, + 39,158,100, 2,213,113,156, 24,183, 38,232,139,157,103,140,135, 64, 74, 29,161,249,192, 29, 2, 20,170,177, 32,146, 11, 21,195, +106, 77, 85,101,158,103,230,121, 98,154, 39,242, 60, 51, 23,131,228, 52, 34,220, 16,141,155,110,200,146,202, 84, 10,197,197, 99, +141,250,182,104, 51, 60, 88,166,122,119,159,130,112, 35,118,220, 57,185,193,176, 58, 64, 46,206, 65,212, 26,199, 82, 40,185, 77, + 84,204,102, 56,187,159,191, 93,208,163,152,183,189, 11,145, 16,133,136, 16,196, 44,190,234,232,216,109, 41,100,173,204,213,126, +100,199,220, 26,144,199,214, 51,185, 90, 4,171,197,118,135,197, 5,160,130, 69,197,214,194, 60,153, 83,131,170,239,201, 57,223, +157,117,250,190,181, 92,121, 66, 71,212,178, 45,174, 65,107,119, 54,211, 38,254,181,231,184,219, 35, 83,216,229, 40, 77,186,151, +183,220,153,144,186,129,123,202,236, 60, 13, 49,224,132,224,184,187,168,196, 92,145,123,133,176, 22,228, 52,162, 87,149,244, 78, + 37,141,186,131, 95, 40, 20, 21,182,218,130,190,236,131, 28, 69,232,170, 48, 5, 97, 20, 88,169,178,218,206,164,109, 32,117,130, + 92, 5,228,234, 2,185,191, 37,164, 3,234,233, 9,156,246,176,157,237,240, 43,138,126,169,162,159,191,180,130,254, 99, 3,242, +199, 15, 9, 47, 28, 89,177,222,254,223,208,223,133,238,207,249,206,242, 45,235,106,229, 71, 64, 94, 6,249,191,172,216,215, 9, +230,123,144,158, 66, 62,125,104, 35,250,111,121,129,156, 20,142,117, 81,128,238, 60, 94,123,210,236,206, 70,222,196, 3, 24,127, + 13,222,245,217,112,206, 22,148,210, 2, 62, 74,181, 91,210,141, 30,206,172,168,235,189,217, 20,179,157,171,145,175, 10,122,149, + 45,196,229, 72,232, 6,161,230, 54,181,247,248,195,139, 4,211, 99,239, 0, 39,239,142,247, 96,192,109,204,238,182,165,133,247, + 73, 48, 11,212,202, 15,243,234,214,193,246,194,204,186,151,161,234, 74,250,162,206,149,110,194, 57,219,239,135,163, 1, 57, 30, +224, 52,192,199,102,228,230,243, 48,252,128,189,121,198,175,192,244, 91,112,247,171,240,197,104, 35,119,205, 6, 73,107, 30,206, +246, 33,174,126,107,189, 38,150, 50,145, 16,125,114,112,200, 94, 65,126, 2,169,212, 36, 46,193,209,189, 34,230,145,150,220, 38, +140,201,199, 34,126,201,137,178,227, 35, 87,215, 77,108,130,241, 10,210,222, 5, 97,244,223,155,125,138, 17,162, 77, 95, 92,163, +160, 43,167,142,223,235,224,159, 30,160,243, 93,228,123,254, 50,220,254,239,189, 99, 15, 30, 8,240,164, 89,165,209,150, 34,200, + 29,175,112,175, 66,253,135, 16, 62, 1,241,211,254,228,251, 56,103,254, 85, 19,207,233,224,153,222,231,246,186,139,133,166, 48, +124, 10,142,239,192, 7,207,144,143, 9,233,141,158,213,227,137,195, 45, 92,134,224, 73, 99,106, 20, 47,236,114,110, 22,225, 4, +201,248,223, 58,109, 13, 42,212,202,123, 21, 52, 68, 99,194,199,232,185,230,189, 21,172, 96,254,223, 18, 18, 37, 23,230,121,132, + 92,155, 81,194,144,193,173, 75,239,132,222,157, 77, 33, 4,250,176,131,251, 21,177,139, 70,245,241,121,179, 59, 5, 85, 7, 25, + 41, 81, 77,197,156, 21,230,178,231, 31, 14, 59,228,126,140,248, 24,217,132,102,226,241,129, 90, 11, 58,110, 32,249, 40, 62, 27, + 52,165,212, 74,126,124,151, 33, 6,134, 59, 47, 66,215,163,239,124,147,122,117,101, 95, 39, 38,235,220, 21, 35,208, 5,183, 62, +133, 74,234, 6, 82, 55, 32, 90,169,209, 86, 77, 26,204,179, 31,135, 3, 27, 55, 79,227,114,122,167,208, 48,204,182, 72,170, 82, +209,160, 11, 14,185,250,123,182, 32,132,174, 39,106,180,116,198,216, 33,195,154,105,220, 26,192,167, 27,168,106,232,211, 42, 70, +124, 11,254, 53, 66,111, 48,148, 80,246,146,192,250,222,222,183,165,154,250, 92,133,152, 58, 66, 63,120, 8,137,249,209,107, 41, + 30, 42, 98,153,228,193, 59,203, 24,109,205,144,231,217, 62, 50, 49,185,115, 66,137, 24, 23,126,118, 12,109,244,213, 68, 31, 19, +235,174, 67, 56, 98,170,133,105,158,153,199, 43, 74,174,204, 53,147,231,201,198,209, 98,192,150,117, 76,164,174,167, 11,150, 79, + 81,213, 10,120,192,179,228,177,245, 94,215, 69,142,250, 21, 7,253,138,208,117, 92,109,174, 88, 9,140,195,138,237,118,227,211, + 1,131, 7,141, 90, 25,199,140,186,143,188,105, 38, 50,202, 84,202, 50,221,169,110,163,221,239,122,131,135,117, 53,183, 72,109, + 83,164,182, 54,208,166, 44, 23,183,236,205,136, 71,181, 26,193,174, 24,129,111,206,239,203,106, 23,185, 38,102,127, 95,167,250, +147, 96,173,221,172,104, 79, 14,228,220,108,105,178, 96,221,249,213,209,110,207,237, 14,241,207,223,137,191,216, 7, 97,149,132, + 30, 33,133,221, 4, 37,185, 78,126, 42, 70,101,202,123,177,174,162, 98,109,126,117, 91, 87,167,200,133,137,195,178, 55,131,185, +194,168, 98, 31, 78,245, 4,210,197, 2,189, 75,128,202,200,222,206,204,189,196, 27,133, 77, 65, 98,129, 35, 69,110,172, 97, 53, + 88,251,209, 85,184,217, 33,199,197,118,160,191, 51,193, 63, 30,209, 71, 17, 94, 88, 35, 55,215, 16,222,132,250, 37,144, 79,130, + 60, 15,114,233,190,250,103,205, 62,196,125,144, 51,107,241,106,129, 97,128,167, 19,220, 47,240,157,178, 83,104,118,114,157,140, + 18,247, 82,193,146,219,247,110, 36,244,242, 46,252,222,149,253,165, 11, 47,148, 1, 47,164,158, 81,251,204, 0,239,108,225,219, + 35,250,206,214,195, 12,116, 23,160,162,246,231, 91, 55,194,228,225, 7,158,161, 28,110,245,200, 39,176,148,182,112,106,226,170, +139, 95,134,179,199,240,174, 39,194,213,186,167,214,247, 19,119,101, 20, 59, 57,237,209,181,195, 66,206,178, 97,114, 47, 76,168, +183,248,202,252, 16,221,117,249,118,179,141,177, 35,220, 92, 33,119, 14,224,165, 8,159,152,145, 23,143,224,232,167, 97,253,125, + 80, 46, 96,250, 50, 92,253, 26,250,169,114,251, 17, 0, 0, 32, 0, 73, 68, 65, 84,107, 27,120, 75, 80,201,232, 88,168, 91,191, +228,108,138,223,208,237,178,167,123, 84, 87,109, 35,180, 61, 32,133,244,105,137, 56, 92,118, 71,254,184, 44,149,104, 23,188, 32, +205,237,174, 1, 14, 79, 32, 87, 36,111,175, 97, 21, 5, 75,192, 67,157,177, 31,205,174,101, 95,203,158, 3,105, 56, 76, 45,254, + 92,218,141, 97,137,235,221,248, 42, 97, 16,184, 12,200, 55, 18, 12,231,200,237, 95,130,244, 65, 27,141, 91,138,203, 19, 81,137, +126,243, 88, 62, 65, 39, 16,158,183, 63, 91,254, 25,212,175, 65,248,144,173, 50,194, 83,144, 62, 11,252, 6,232, 35, 72, 47,218, +154, 37,220, 48,187, 32, 2,233, 0,134,111,131,124, 19,206, 70,248, 54,232,121, 70,199,153,243, 86, 12,171,239,138, 37, 80,131, +197,161,198,104,169,104, 90,157, 97,239,183,123,195,178, 58,239, 59,244,150, 15, 30,130, 23,115,203,238, 46,170,228,113, 36, 79, +219, 37,175, 92,154,205,209, 59,135,149, 8, 7,193, 21,241, 53,147,176,168,202, 73, 97,110,137,126, 33,238,184,222, 65, 12,247, + 42, 74,223, 80, 8,126, 47,173, 40, 99,109,124, 40,117,210,178,253,108,130,166, 96, 50,145, 40, 22, 45, 28,130,195,136,204, 98, +100,128,164, 97,103, 49, 82, 53,159, 55,133,238,240,148,178, 62,102,206,179,115, 16, 58,163,225,121, 54, 55,121,178, 93,109,236, +124, 20,109, 83,136,130, 51,188, 85,208,144,108,199,188,185, 68,203,228, 81,157,178,224, 70,139,154,184,144, 16,173,227, 13,174, + 71,113, 70,135,166,158,212,175,232, 87, 43, 66,236, 72,135, 39,164,147,167,200,170, 70,130,235,250,229,220, 41,213,226, 58, 67, + 12, 72,215, 67,232,150,176, 41,155,100, 24, 33, 79,252,223,104, 83, 21,130,115,209, 99,180, 11,198,108, 29,187, 41,213, 11,129, + 64,236,122,186, 24, 57, 60, 57,229, 71,127,254,207, 50,172, 15,120,116,247, 29,138,136,165,175,213,194, 39,127,234,143,240,185, + 95,250, 63,185,247,224, 46,119,239,190,205,219,119,223,226,157,187,111,114,247,193, 93,238, 61,188,207,221,119,239,114,255,193, + 61,206,206, 30,113,181,217, 50,205, 54,170,142, 98, 52, 56,245,154, 48,123,168,138,122, 34, 95, 31, 34,171,212,177,238,122, 14, +251, 21,167,195,138, 59,199,167,220, 58,189,197, 48,172, 44,222,118,115, 73,158, 70,219,159,107, 69, 84, 57, 61, 62,225,199,255, +220,159,229,213, 47,127,197, 59,244,178,156, 31,226,147, 18,107, 70,171,103,163,151, 61, 84,172,122, 70, 59,187,145,123,105, 49, +177,197, 71,239,117, 7, 31,114,146,162,106, 93,152,248, 5,152,243, 68, 25, 39,211,233,236, 21,230, 39,169,112,186, 31,210,242, + 62,230,181,182,250, 86,239,118,228,201, 77,186, 88,189, 21,194, 14,138,166, 21,149,226,188,196,221, 24, 89,130,144, 14, 61, 57, +178,209,185,216,195,186,103,255, 64,181,228,208,236, 93, 97,135, 9, 59,194,172, 12,239,100, 27, 91,222,244,177, 93, 18, 27,213, +136,144,189, 25,212,165, 25, 18,206,171,237,237, 69, 76, 68,227,182, 87, 70, 31,215,231, 96, 92, 23, 91,219, 9,177, 40,146, 55, +232,168,232,234, 20, 14, 14,108,204, 94, 42, 58,116,136,142,246,111,231,130,254,250, 25,250,165, 45,252,200,128,252,203, 55,145, +103,206,161,252, 77,208,159, 7,249, 12,240,192,138,123,120, 14,248, 9, 40,255, 0,120,219,104, 88,219, 13,178,234,145, 31, 89, + 25,138,251,181,209, 58,236,117,128,126,159,110,178, 36, 97,120,135, 28, 80,221,194,131,201, 70,186,115,221,117,191,157,236, 58, +227, 67,127,146, 31, 87,244,188, 80,183, 21, 58, 93, 70,210,210, 57,237,110, 72,190,151,171,132, 42, 30,219,231,212,178,123, 1, +206, 46,225,206,107, 86, 64,242, 35, 3,158,148,189,180,141,208,172,111,123,124,250, 46,182, 48,123, 15,219,241,123,226,236, 35, +235,232,168,206,104,143, 63,212,134,165,245, 98,152, 2,161, 27,224,233, 21,124, 12,120, 57, 35,199,119,224,240,143,195,250,199, +236, 11,108,127, 11,166, 47,163,191,253, 8, 94,239,160, 27,225,170,152, 16, 45,219, 30, 79,252, 18, 83,159, 12,104,121,226,131, + 32,186, 23, 10,148,146, 69,107,182,240, 16,252, 2, 20,158,128, 37,183, 55,123, 23, 27,208,244,186,114, 30, 15,142, 40,123, 41, +166, 62, 61,208,236,170,255,192, 46,143,122,210,189,165,216, 8, 99,112,156,170,203, 83,174, 50,162, 51,114, 25, 8,255,251, 33, + 90, 30, 33, 63,240, 11,112,243,207,195,240,115,198,122,151,190,209,115,124,106,224,214,207,234, 59,119, 18,132, 87, 44,160,167, +252, 42,148, 95,129,244,211,182, 91,239, 62, 3,199,127, 21,182,127,211,213,242,207,216,100,198, 4, 29,198,123,168,159,133,241, + 55,224,233, 51,228,131,137,244,118,199,193,163,137,195,154,217, 22, 89, 6, 18, 82,131,183,182, 74,165, 16, 82, 93,178,196,171, +159,110, 26,219, 94, 82,172,227,147, 72, 80,139,230, 44,192, 56,110,209,121,244,104, 83,217,177,173, 91, 78,128,182,139,153, 79, + 93, 36,208, 73, 32,105, 97,171,187, 97, 80,231,251,239, 33, 6,211,214, 44,251,241,176,100,193, 77,234, 69,172,217, 20,219, 39, + 79,219, 68, 1,178, 86,186, 8, 67, 8,203,251, 85, 37, 18, 82,164,211, 66,168, 74,174, 19,193, 5, 86,121,154,137, 85, 81,205, + 76, 15,239,153, 92,226,246, 75,172, 63,240, 41, 54,247, 95, 39,159,221, 71,197,233,107,193, 32,254, 18, 19,178, 58, 48, 11, 87, +181,116,175, 50, 57,195, 91,146, 61, 31,243, 72,168,217, 27,146,232,145,174, 30, 39,171, 97, 81,123,107,173,182, 74,243,209,110, +198, 86, 27, 21,208, 48,208,157,220, 38, 29,223, 68,227, 64,127, 96,194,194,178,189, 68,199, 43,164, 91,161,253, 26, 21,243,127, + 75,177,195,188, 74,235, 52, 27,107,223,172,117,209, 97, 84,115,182, 84,183, 34, 24, 49, 14,155, 58,118,222,185,183, 61,120, 5, +234, 60,115,231, 67, 31,226,222,183,223,224,198,179,207,112,118,126, 70,201, 51,115, 54, 75,223,118,115,193,246,226,140, 32,214, +241,215,146, 45,143, 93,240, 75, 68, 0, 13, 11,141, 79,213, 82,248, 68,108,114,145,186,142, 33,245,196,100, 89,236, 83,136, 92, +205, 35, 41, 68,250, 24,137,203,215, 80,130, 60, 32, 73, 96,136,145,148,204, 31,191,201,153,139,105,107, 32,154,156, 73,195, 64, + 86,184, 28,183,182,235,102,183,117,212, 70, 8,109,110,138,134,123,209,221,123,169,161,101,151, 81, 58,187, 11,234,114, 14,133, +176, 20,226, 36,130, 74,178, 49,125,206,228,236,197,188, 33,110,247, 36,112,239,217,152,251,170,104,247,165,229,125,187,244,107, +169, 86,187,227,215,173,108,238,244,105, 99, 78, 41,123,171,250,188, 56, 12,170,118,196,191,248,108,252,197, 5, 12,231,147,214, + 46,226,111, 12, 24,171,176, 45,215, 19, 68, 77, 16, 45,254,228, 9, 97,171,132,173, 46,208,139, 17, 97,204, 62,110,115,203, 75, +138,118,200, 92,150, 93, 10,105, 23,109,156, 63, 86, 97,198,240,166,234,170,249, 78, 28,112,226, 34, 48,161,194, 52,219,205,187, +239, 29, 18,131,225, 85, 59,103,167, 31,250,112,235,247, 38,248,167, 19,156,156, 34,207, 22, 24,126,211,111,188, 63,232, 42,162, + 11,199,111, 86, 19,212,213, 45,148,222,254,123,165,240, 76,130,111, 84, 56,159,144, 99, 15,151,175,251,123,117, 31,171, 15, 98, +187,245, 62,193, 55, 71,239,208,205, 14,101,194, 1,177, 98, 90, 5,158,239,172, 48,124,107, 68, 31,249, 62, 29,221,169,194,241, +224,149, 24, 60,103, 59, 32, 67,180,159,147,221,192, 67, 72,240,145,138,220,121,202, 70,189,243, 59,112,249,107,240,232, 18,185, +240,130, 85,116,201,243, 54,216,182,141,221,229, 32, 89,142,186,143,214,185, 40,240,200, 11, 88,187,117, 21, 89, 30, 11,209, 31, + 67, 76,132, 97,128,103, 87,240,169,138,124, 12,228,244,135,224,244,223,135,131, 63,108,225, 50,229, 62, 76,191, 14,111,126, 1, +190, 96,139, 83,205, 5,221, 90,148,171, 69,186,170,223,154, 93, 4,255, 62,206, 53,217,171,205, 44, 59,214,106, 62,125, 28,160, +145,134, 38,242,240, 27,185,143,113,147,253,121,243, 11,175,145, 57,195,188,181, 61,152,143,121, 23,108,108,240,215, 47,201,146, + 75,108,100,228,128, 36,208,209,237,136, 52, 53,121, 53,229,108, 8,203,250,135, 90,209, 41,163,204,212,115,144,175,172,145, 56, + 33,183,190, 8,252,115, 35,233,213, 51, 8, 87,166,123,224,166, 91, 42,216, 79,189,246,125,245, 33,132,143,218,239,235, 35,239, +198,171, 89,222,226,167,128,215,124,236,126,211,185, 14,106, 23, 6,141, 48,253,142,237,232,231, 25,222, 86,228,108, 70,230,202, +165, 68, 54, 26,125, 5,100, 7,166, 86, 93,118,189,209,139,186, 6,179, 50, 73, 50, 21,181,136, 41,223, 69,132, 50,110, 41,243, +104,176,147, 58, 47,128, 20,133, 37,230,182,229,109, 55, 15,173,101, 5,217, 62,180, 75, 70,227,218, 54,243,131,143,183,187, 0, + 67, 74, 38,158,107,217, 59,162,118,166, 99, 54,162,162, 59,105, 74,117,161, 86, 11,193, 67, 96,242, 27, 97, 75, 91,171,109,194, +226,224, 16, 66,192,254, 87,221, 38,213,155, 77,169,157,179,121, 50,192,206,250, 24, 57,186, 77,206, 35,249,234,177,189,231,146, + 21,116,186,149, 89,213,230,217,244, 3,139,247,210,214,105, 33,245,198, 77, 7, 98,234,209, 52,144,250,193,214, 20, 68,106,195, +202, 56,196, 71,177,177, 61,146, 60, 1, 77,136, 53,219,158,247,232,212,148,241,213, 34, 75,231,201,166, 76,105, 88, 17,134, 3, + 52,152,205,171,230,108, 43,147,102, 41,116, 91, 95,241, 34, 37,213,147,241,180, 46,113,163,165, 84,166,105, 75,222,110,141, 35, +239,244,183,121,158,184,188, 60,231,226,236, 17,151,151,231,124,215,247,125, 47, 95,250,229, 95,166, 91, 13, 76,219, 13,143,238, +221,163,230, 76, 74,137,151, 62,249, 41,190,241,197, 47,129,192,234, 96,205,103,127,226, 39,249,232, 15,254, 0, 47,127,242,187, +121,250,165,151,120,240,250, 27,148, 60,115,122,251, 54, 63,241,243,255, 6,111,127,235, 91,228,113,228,163,223,255,253,188,240, +202, 39,120,245,171, 95,225,114,179, 37,163,124,236,135,127,132, 23, 62,253, 41,158,254,232, 71, 56,122,230, 25,222,126,253,117, +202, 60,241,194,167, 63,197, 83, 47,191,204,219,111,188,193,166,100,230, 24,248,238,159,253, 89,190,246,255,126,137,243,237,150, +139,105,203,229, 56, 50, 78, 19,164,200,243,159,120,133,223,250,220,111, 56,163,222,214, 16,171,195, 67,126,250,223,252,183,248, +237,223,252, 60, 90, 43,253,225, 1, 63,249,103,255, 28, 95,249,252,231,153,114,230,248,246, 45,254,224,207,254, 44, 31,248,232, + 71, 88, 31, 29,241, 67,127,244,143,242,213,207,255, 6,170,149,211, 59,119,248, 67, 63,251,175,242,145,239,249, 30, 94,248,240, + 71,185,247,198,235,104, 41,188,242,131, 63,196, 51, 31,122,153,215, 94,125,149,113, 28,137, 49,240, 39,255,237,127,135,175,125, +241,139,104,173,220,124,250,105,126,236,231,254, 20, 31,251,222,207,242,226, 71, 63,202,155,223,252, 22,121,158,249,228, 15,254, + 32, 31,250,196, 39,248,246, 55,190,137, 96,143,237, 79,254,165,127,151,223,253, 23,255,194,116, 22,123,133,123, 73, 50,117,171, + 97, 59, 21,131,236, 5,194,198,232,239,193,249, 9,202,220,110,127, 40, 18, 73,165,168,147,152, 92, 20,109,124, 2,170, 43, 87, +199,106, 2,236,169, 81, 71, 27, 67,165,205,253,147,141,156, 58,103,156, 23,129,109, 22, 11,125, 51, 70, 2, 81,149, 80,205, 76, +211,183, 20,209,176,171, 37,179,154,253,102,242,244,167,161,229,167,208, 40,116, 94,100,100,134,237, 35, 52, 29, 64,191,182, 67, + 38, 21,100,188, 50,113, 91,113, 21,213,105,178,162,255, 63,222,167,126,254, 24,249, 83, 7,200, 7,127,201, 44, 67,250,167,125, + 60,122, 31,194, 7,129,143, 64,250, 42,228, 45,228, 21, 16,145, 91, 21,254,196,128,254,157, 9,125,187, 88,142,123,220, 59,135, +219,146, 35,248,188,112, 84, 43,144,213,139,116,131,181, 68,159, 57,117, 30,229,250,218,136,190, 53,161,103, 5, 93,155, 93, 10, +164,189, 70, 46,110, 46,118, 82, 13,150, 14, 39, 93,103,227,248, 34,168, 6,228,221, 10,243, 55,160, 92,238,120,169,169, 29,220, + 46, 51,214,186, 3,221,236, 61, 86, 93, 38, 7, 62, 73, 16, 7, 7,101,191,101,121, 11, 45, 37, 44, 1, 52, 97,232,224,176,183, +203,196, 7,129, 27, 63, 6,199,255,129,165,197,169, 47,161,235, 25,108,190,136,190, 54,195,198,149,240,179,123, 56,103,143, 64, +156, 43,185,168, 79,127,246,111,181,187,118,125,129, 46,197,134,199,109,169, 74,106, 24, 98,143,153, 36, 13,176, 26,108,143, 62, + 79, 80,231, 37, 34, 87,106,240,184, 96,221,237,180, 90, 37,106,226,187,102,122, 15,126, 9,242,236,102,185, 84,116,112,159,248, + 16, 96,170,214,197,119,134,182,211,130, 93,146,250,201,112,183, 83,166, 94,100,216,206,166, 21,249, 95,123,226, 55, 11,242,211, +175, 34, 79,127, 27,214, 71,112,122, 8, 39,127, 12,248, 99,254,133,254,191,186,222, 45,214,178,235, 58,207,252,198,156,107,173, +189,247,185, 86, 21, 89,188, 20,201, 98, 21, 69, 21, 73,241, 38, 81,150,168, 72,109,155,146,124,105,201,185, 57,134,221,128,186, +129,142,131,110,244, 67, 39, 8, 16, 32, 15,121,243, 67, 16, 32, 15,121, 72,128,228, 45,221, 9,130,238,192,157,216, 29,199,136, +218,138, 36, 43,113,219, 84,100,138,142, 69,145,180, 68,177,138, 34,171,120,169,219,185,159,125, 89,107,206, 57,242, 48,198, 90, +123,159, 18, 93,130, 64,137, 85,117,206, 62,231,236, 53,231,184,252,255,247,223,107,130, 57, 61,230,164, 55, 50,248,251,209,119, +179,253,239,197,139,192, 47, 67,121,217,232,114,218,250,199, 73,182,130,105,158,128,230, 42, 92,188,140, 60, 82, 19,174,143,216, +152,103, 78,119,202, 60, 86,148, 90, 73, 26,157,144,149, 76, 35, 32,209,166,110,154,157,228,102,187,232, 92, 58,219,119,183,166, +188,214,156,145, 98,138,119,237, 61,183,254, 83,139,197, 29, 11, 30,140,210, 79, 70,250, 85, 74,244,125,126, 43, 13,109,132,226, +227,164,133, 66, 72, 86,240, 86,177, 70, 82, 59,188, 71, 75, 81, 22,142,229,108,197, 34,115, 85, 44,136, 38,123,182,118, 12, 80, + 7, 75, 54,235, 9, 90,201,149,230, 22,214,178,116, 84, 12,164,219,188,160,202,137, 80,143,232, 70,149,137,223,114,135, 30, 94, + 39, 86,145,209,250,221,196,115,151, 56, 30,111,208,221,252,177, 41,220, 43,227,142,247,121,232,161,167,140,149,132, 84,145, 56, +217, 68, 70, 19, 11, 73,233,230,180,139, 25, 93,107, 14,129, 76,241,248, 9, 25,224, 35,254, 54,243,206,214, 19,198, 98,244,130, +170,161,180,115,114,136,132,102, 50,236,190,213, 85, 37,154, 18,185, 36,114,182,137, 87, 73, 29, 85, 93, 19,234, 49, 85, 61, 54, +138, 98, 76,195, 52,128,156,137, 33, 18, 37,146,154, 17, 26, 42,142, 14,118,153,207, 14, 17,137, 44,102,199, 94,152,197,129,132, +182,125,215,221,160,176,243,193,251,140,214,198, 60,112,233,113,174,190,241, 3,162, 10,113,109,157,170,170,104,214,214,200, 41, +241,220,207,253, 34,111,189,250, 42,239,189,117,133,110, 49,227,220, 35, 31,225,153,207,127,129,151,190,250, 31, 56,220,221,225, +181, 23, 95,228,147, 95,252, 34,111,190,252, 50, 23,159,124,138,255,255,183,126,139,201,218, 58,109, 78,124,242,191,255, 18, 63, +250,147, 63,225,221,203, 87, 40,100, 30,190,244, 56,143,124,252, 89, 94,254,143,255,145, 27, 47,190,200,207,127,229, 43,236, 77, +167,212,170, 60,240,177,143,113,237, 71, 63, 98, 54,159,179, 40, 5,205,137,113, 8,104, 29, 76,136,157, 50,109,215, 90,110,188, +136, 71, 47, 20, 83,241,123, 30,124,202,133,236,202,118, 84,249,228, 23,127,142,239,191,248, 71,188,119,249, 10, 79,124,234, 83, + 54,173,136,145, 40,129,207,126,233,151,248,225, 75, 47,241,238,149, 43, 60,241,252,167,121,250,167,127,154, 23,127,239,247,120, +253,123,127,202, 23,127,245, 87,105,231, 54, 33,190,240,228, 83,188,119,249,178, 21, 72,192,103,190,244, 37, 94,121,241, 69,174, +253,232, 71, 60,243, 23, 62,199,115, 47,188,192,183,191,250, 85, 46,191,242, 10,191,244,235,191, 78,252,207,127, 64,234, 22,124, +228,233,167,249,241, 15, 94, 39,185,192,111,245,204,147,161,103,148,225,200,150,213,229, 97,127, 94,149,229, 92, 64, 48, 59,158, +196, 56,152,179, 80,165, 42,120, 44,170, 91,181, 23, 62, 46, 24,251,244, 49,123,211,146, 28, 8,145, 87, 48,230, 5, 15, 70,203, + 30,189,238, 49,153,237,114, 61, 11,197,167,208,193,238,219, 94, 76, 67, 92,222,143,149, 96,251, 58,215,160, 45,130, 75,164,150, + 12,197, 37,102, 53,117, 72,119,132, 78, 64,227, 6, 28,131,182, 53,194,194, 42, 16, 85, 24, 39,116, 18,225,158,132, 94, 62, 64, +254,143, 9,242,215,198,132,167,191, 13,117,130,252, 63, 88,144, 6,173,141, 63,117, 10,241,170,115,232, 39,208,173, 33,231, 90, +248,139,235,232,239, 30,193, 65,134,237,149, 60,244, 30,126, 82,123,149, 51, 93,185, 36,211,170,242,221,193, 36,181, 5,125,232, +213,150,114,203, 61,158,163, 62,170, 83, 76,141,153,250,200,213, 94, 44,237,179,164,144,173, 2,170,163, 93,248,183, 35,204,111, + 66,153, 25, 78, 52,142,140,128, 85,121,164,107, 81, 55,112,251, 62,165,128, 76, 2,172, 85, 54,241,136,149,245, 61,125,136, 79, +101, 88, 89, 19,154, 69,164,246,207,215, 91,215, 38, 13, 92,140,200,133, 14, 78, 61, 9,155,255, 43,212,247,184,101,203, 79,205, +124, 5,110,127, 0, 59,166,196,215,146, 41,157,243,181, 83,166, 28, 38,186, 69,166, 11, 70, 30, 43,170,119,136, 69,164, 39,188, +218, 94, 59, 47,203, 80,233, 25,239, 14,201, 65, 18,116, 5,201, 17,105, 70,230,122,104,231, 72, 59,245, 34, 83, 44,124,130,100, +223,207, 85,164,131, 56, 5,168, 91,193,133, 54,203,149,133,246, 35, 41, 17,100,156,125, 93,209, 71, 13,123, 78, 65,235,158,252, +218, 58, 36,157,250, 90,170,206,196, 80,136,127, 84,168,174, 84,196,231, 21, 57,119, 0, 15, 28,194,163,255, 10,214,254,173,147, +228,190, 4,205,151, 45, 97,143,145, 19,227,122, 94,111,190, 67, 66,147, 13,157, 28, 31,128,176, 14,229, 74, 31, 41,104, 84, 66, +198,208,156, 55, 47,252,230, 13,120,100,143,120,101, 68,115,212,113,122,127,193, 94,154,179,183,112, 44,104, 31,214,225,151,176, + 89,253,178,119,239,234, 35, 73, 89, 42,227, 83,231, 63,222,176, 92,229,244,188,217,149,104,223,210, 79, 83,252,105, 14, 82, 17, +130, 41,234, 51, 74,194,247,249,161,178,174,180,168,213,176,185, 80, 99, 35,219,156,178, 1, 19, 17,186, 12,173, 7, 97, 20, 39, +174,225, 32, 18,139,173,112,113,179,119,249,125, 8,203,188,152, 22,101,210,199,162, 6, 43, 46,178, 8,170,166,224, 46,139,169, +233, 3,154,145, 1, 86,114, 71,218,123,159,160,133, 90,206,178,121,250,126,218,166, 97,113,251,154,141,142, 83,231,171, 18, 75, + 24, 11, 36, 66, 51, 38,174,159,178,216,208,249, 33,101,118, 76,119,180,107,246,174, 30, 30, 41, 50,132,178,104,233, 69, 86, 12, + 92,115,113, 34, 98, 41, 74,110, 2,180, 11,255,250, 2,218,182,228,146,173, 95, 11, 1, 98,133,212, 99, 36, 7, 98,207,189,232, + 83,213, 98, 99, 5,151,139,205, 52, 39, 35,224, 41, 3,252,198,232,139,153, 24, 2,245,120, 98,233,217,205,200, 39,131,145,140, +249,170, 31,126,242,105,222,191,252, 38,177,110,184,126,245, 93,158,252,220,207, 48,158,172,209,205,230,158, 22,105, 69,205,104, + 50,225,236,131, 15, 50, 90, 95,227,177,231,159, 39,251, 74,161, 20, 19, 65,171, 42, 63,126,237, 53,238,186,239, 62,158,251,133, + 95,224,197,223,249,119, 38,252, 3,154,209,152,123,207, 63,196,120, 60,230,169,207,126,118, 56,163, 66, 12,204, 75,226,120,119, +151, 55, 95,123,157,241,189,247,240,246,235,175,243,204, 3,231,248,246,239,254, 46,243,163, 35, 34, 66, 21, 45,227, 92, 36, 80, +151, 66, 37,194,233,201, 4, 29,143,135,248,214,241,120,194,168,170, 89, 27,217,191, 27, 53, 35,154,170, 98, 99, 52,166, 26, 53, +156,189,251, 44,179,235, 55,217,222,216, 96,255,221,247, 24,127,234,211,108, 78,214,169, 70, 35,182,238,186,139,119,174, 92,102, +145, 18,127,246,202, 43,252,244, 95,250, 75, 28, 31, 31,161, 7, 7,236, 93,191,193, 3, 15, 95,224,189, 43,111,241,200,147, 79, +242,221,255,244, 45, 10, 74, 61,106,216, 58,125,134,171,111,252, 8,128, 31,191,241, 3, 62,255,203,191, 98,209, 23,139, 5, 87, + 47, 95,230,226,199, 30,231,205, 87, 94,225, 35, 79, 63,195, 55,255,237,191, 57, 49,154, 15, 39,158,120, 93,225,116,200, 9,171, + 90,191,110, 12, 49, 64,170,135,181, 71, 47, 30,237,105, 70, 90, 18,149,246, 0, 8,135, 66,244, 54, 52,245, 70, 47,137,178, 80, + 25,104, 95,209,127, 63, 9,236, 36,223,133, 23,243, 41,110, 87,246,185,107,241,148,163, 21, 24, 91,238,201, 93,253,125,181, 18, +104, 83,121,128, 91,167, 58,160,233,219, 98, 92,147,152, 10,212,213,202,168,201,159,148,217,145,117,100, 97,211, 14,230,131, 5, +210,167,179, 29, 36,168, 5, 61,213,152,113,241, 22,240, 59, 35,202,124,130, 60,251, 50,178,190, 3,229, 43,230, 97,103, 14,241, + 89, 59, 40,203, 21,179,139,149, 49,116,155,200, 37,129, 47,102,120, 57, 25, 61,173, 89,129,180, 52,193, 70, 10, 85,128,195,206, +170,155,232, 21, 80, 15,117,214,108,161, 30,141,123,252, 14, 91,116,209,218,186,160,117, 65, 88, 16,116,179, 70, 22,217,246,235, + 43, 63, 64, 67,109,249,188, 58,250,232,228, 38,144,102,118,184,199, 53, 11,248, 88, 27,193,150, 26,160,166,213,101, 54,119,194, + 46,159,245, 8, 19,243,152, 59,205, 99,153, 31, 95,123,124,168,152,149, 15,169, 96,228,127,118,173,134,115, 17, 30, 93,192,246, +189,176,245,235, 80,159,243,253,112,178,139, 38,239,195,236,235,232, 78, 54,175,127, 40,104,167, 30,228,167,148,189, 68,187, 40, +119, 92,232,186, 28, 50,137,220, 17, 51,200, 48, 46,151,168,195,221, 38, 39,242, 6,253, 13,218, 46,236,123, 61, 26,153,182,160, +237,236,235, 45, 62,158,119,105,118,112, 43,138,136, 85,182,182, 28,119, 87, 66, 27, 93,124,233, 69,155, 65,155,205, 96,112,106, +130,108,143, 12,243, 58,243, 50, 86, 58, 35, 48,116, 17,138, 41, 81,187,166,161, 85, 33,146,105, 54, 43,154,219,145,234,155, 45, +241, 66, 38,110,213, 48, 73,240,192, 46, 92,216,133, 7,255, 57,172,127,221,194, 98, 38,191, 8,241,140,119,223,126,185,175,202, +252,135,242,187,179,117, 81,124,108,153,184,134,216,220, 43,156, 50,209, 92,125, 31,242,208, 1,156,171,136,183, 27,214,102,137, +179,154, 57,204,234,186, 21,165, 45,203,172, 55,165,143,209,237,147, 0,123,126, 80,111,116,183, 29,156,250, 8, 79,122,142,129, + 8,145,228, 53,150,107, 75, 98, 52,176, 74,172,136,149, 80,185, 13,104,142,208,246,133,173,216,239,143, 67,178, 21, 93, 81,166, + 40,157, 6,203, 74,215, 94,226,144,201,206,239,183, 37, 69,241,145,186, 37, 83, 23, 9,182, 25,113,112, 76, 31, 2, 51, 47, 74, + 69, 96, 96,147, 21,122,124,153, 91,147,132, 76, 36,183,115,155,238, 52,107, 72, 61,182,139,245,120,215,212,247,245, 58,147, 83, +247, 19,183,238, 35, 95,253, 30,229,248,144, 48,218,160, 84, 35, 52,181,212,107, 27,200,250, 22,237,238, 7,164,131,219,196, 30, + 96, 83,213, 70,170, 83, 37,137, 89,167,162, 31,186,134,225,237, 87, 60, 38, 62, 52,149,127, 64, 99,101, 66,183, 98, 81,176,185, +100,210,124, 74,187,152, 19, 84, 9,205, 4,169, 71, 72,157, 8, 85,141,132,202,134,110, 33, 24,128,167, 20,180,180,214, 71, 56, +193, 71, 17,138,102, 82,215,145,146, 93,184,226,209,165,177,174,141,135,142,129,188,138,143,235, 65,184,255,226, 35, 20, 85, 30, +122,226, 99,131,214,225,129, 75,143,243,206,107,223, 55,226,160,170,179,228, 27, 20,248,246,239,252,123, 74, 49,149,120,215,195, +104,234,134,146, 77,176,182,121,247, 89, 22,139, 5,213,104, 68,151,179, 77, 89, 60, 13,242, 91,191,249,155, 75,209, 90, 16, 98, + 12,142,183, 21,174,188,246, 42,159,254,249, 95, 96, 49,155,114,251,198, 13, 62,120,255, 93,155,112, 12, 34, 53, 43, 46,214, 23, + 91,204,231,115,142,142,142,136, 49, 16, 99,101,221,122, 49,132,107,116,106, 98, 83, 87,182,206,173, 34, 77, 85,185,150, 68, 76, +157,159, 51,109,201, 28,204,103,144, 90,166,243, 25, 59,251,123, 20, 85, 42,135, 42,145,109,137,242,214,107,175,114,241,169,167, + 56, 62, 56,160, 30,141,184,113,237,218, 9,189,199, 29, 75,240,225, 40,251,225,127,253, 19, 62,247,229, 47, 51,155, 78, 57,216, +185,205,209,222,222,114,156, 46, 63, 25,163,170, 3,138, 97,121, 70, 14,186,160,212,111, 91, 60,191,190,116,148, 54,163,234,193, + 57,254,193,170, 62, 11,186, 56,169,169,117, 65,123,113,182,118,239,224,202,197, 8,174,136, 13, 11,167,157, 53, 53,123, 30, 98, +118,166, 86,102, 89,140,184, 26,150,152,199,192, 74,152, 91, 30, 72,163, 52, 50,232, 34,136,186,172,186, 43,143,193,107,139, 9, +166, 99, 87, 8,199,201,226, 79,163,154, 85,132, 98, 23, 56,251, 48, 81,116,109, 11,109, 54, 96,182,139,134,108,232,233,133, 34, +251, 45, 52, 53, 90,101,184, 90,224,183, 18,188,211,192,207, 92, 65,238,251,167, 16,255, 6,228,243,214, 49, 5,239, 72,202,187, +118,177,231,117,208, 45,228,217,128,238, 31, 88,234,219,186,227,100,139,239,211,215, 21,198,121, 57,114, 15, 43,182,173,122,165, + 20, 27, 11,236,122,130, 87, 40,131,175, 87,181,216, 30, 55,138,117,210, 51,247, 99,213, 50,132,158, 80, 44, 7, 90,251, 64,149, +164,118,129,233, 28,170, 51,208,156,131,230,199,134,138, 61,170, 60, 79,158, 97, 68, 34, 19, 87,222, 79,188,219,119,100, 34,125, +208, 75, 21,236,117, 39,123, 24,192,255,252,168,130,123,106,120,116,129,156,217,130,237,191, 98,232, 83, 60,148,135,177,253,239, +238, 7,112,252, 14,124, 48,182,105, 68,127, 58, 31, 36,216,107, 73,243, 76, 23,196, 56,227, 3,220, 35,252,185,236, 5,237,249, +198,125, 74,104,210, 15,205, 62, 16,108,156, 38,101,102,130,166,186, 70,218, 14,105,154, 21,213,126, 24,234, 93,211,128,217,229, + 98,223,131,176,236, 60, 75,180,247,215,154, 87,165, 71,166,166,229, 32, 89, 97,116,255, 22,108,174,193,222, 20, 22,115,116,102, +246,162, 50,222,134,109,235,116, 75, 46, 44, 82,102, 33,133, 73,187,203,104,119, 78,220, 47, 84,167,107,194,164, 65,190, 95, 17, +238,169,225,217, 57, 60,245, 6,114,246,159,192,228,119, 97,227,127,129,241,231, 44, 9,142,185,173,136,250, 75, 91,100,168,192, +151,123,156,213, 75, 93, 44,238,119,125,211,145,193,155,200,227,251,196,107, 13,213, 97,199,233, 46,115,186,134, 15,186,101,184, +224,176,233, 9, 22,211,154, 89,126, 72,193,222,123,170,142, 23, 30, 58,114, 67,103,230, 42,130,227, 64,251,102, 32, 98,234,117, +154, 53, 68, 51, 81,109,106,212,166, 68,171, 66, 23,204,122, 36, 34,228, 80, 51,207,230, 69, 87,167,196,165,178, 76,145, 54,134, +249,114, 63,172, 20, 15,141, 49,117, 62, 30, 0,212, 39, 93,149, 96,112,151, 84, 10,173, 71,196,214, 30, 36,131,132,161, 46,182, +241,189,160,177, 70,101,196,162, 93, 80,230, 51, 98, 46,196,181, 45,104, 38,174, 10,159, 18,118,174, 81,159, 57,207,246, 71,127, +150,246,120,135,249,254, 7, 38, 0, 28,109, 16,183,239,231,232,250, 27,164,131, 93,123, 7, 86,181, 77, 58,162, 19, 12,179,119, +216, 18,237,162, 18,161, 83,233, 33,234, 75, 15,134, 7,233, 80, 10,217,213,225, 82, 85,142, 91, 53,159,126,145, 72, 46,201,242, + 18, 22,115, 83, 14,171, 9, 30, 99, 48,129,220,224, 32, 50,111,128, 89,228,202,138,109,180,255, 79, 74,102,193,115,155, 86,151, + 23,230, 74,113, 30,193,125, 23, 31,225,248, 96,159,151,126,239,255,179,221,127, 46,108,157, 57,205,199, 63,255, 5,222,251,225, + 15,134, 85, 70,140,145,156, 50,183,223,123,159,139,207, 62,203,155, 47,127,151,128, 48,170, 71,172,157,218,102,239,246,109, 82, +215,241,228,103, 63,203,238,205,155, 92,254,250,215,248,220, 95,254,203,236,253,246,111, 51, 59, 62, 38, 45, 90,110,190,123,141, + 75,159,254, 52,175,127,231,191, 16,138, 82, 85, 53,219,103,239, 97,127,103, 23, 68, 56,222,223,167,109, 23,124,252,103,126,150, +151,126,255, 27, 14, 36, 98,136,101,205, 69, 41,218, 17,218, 57,139,174,101,255,248,136, 16,123, 71, 1,132,227, 35,142,231,115, +102, 34, 28,238,239,114,246,177, 75, 28,205,102,220, 58,216, 7,224,250,141, 27,212,119,159,225,250,155,151,121,252,177,143, 50, +157,207,217, 63,180, 92,249,189,155, 55,121,240,194, 69,174, 94,126,147,243,151, 30,227,198,181,171, 67,223,124,245,205, 55,120, +238, 11,159,231,241, 79,253, 20,151, 95,125,213,126,126,222,141, 31,222,222,225,193, 71, 31,229,218,229, 55, 57,127,233, 18,215, +223,189, 54,156, 83,123,183,110,179,152,205,248,169,207,127,129,151,190,249,141,159,244,158,175, 68,172,246,239,143,176, 18,132, + 51,140,233,139, 82, 74,187,100,202,101,203,101,248, 9, 85,158, 64,252,159,207,202,111,200, 0, 21,147,165,181,217, 59,234,165, + 69,192,206,187,185,159,215,187, 25,142,146,189,128,181,101,250,231,240,162,131,255,157,190, 1, 18,159, 80, 39, 12, 96, 48,142, +125, 67,234, 36,160,126,141,235,127,183,239, 40, 34,182,131,211,185, 45,248,165, 95,242, 47,178,169,161,103,157,121,113, 39,155, +254,244,154, 93, 34,140,100,136, 17, 52, 52,107, 7, 55, 90,120,179, 69,119,199,112,230, 24, 57,253, 26,132, 79,128,222,239,115, +222,202,198,157,204,236, 51,151, 13, 8, 99,228,108, 11,187,157, 47,123,197,170,155,211, 25,182, 55,145,250, 44, 92,191, 5, 31, +184,244,107,102,228, 52,233,179,211, 43, 79,174,123,171, 93,114,242,143, 12,190,208, 11,219,164, 10,198,108,239,245, 3,213,138, + 48,175,216, 44, 81, 42, 49,166,254,153,136, 60,211,192,246,207, 65,117, 47,200, 20,218,183,108,133,208, 9,210,133,229, 52,161, + 10,200,164,130,237, 10, 78, 69,168, 93,100,213,181,230, 47,156,103, 15, 35, 95,138,188,169,131,253,112,238,169,225, 98, 65,206, +173,193,246, 47,192,214,175,153,160,203,140,236,254,207, 3, 56,250,199,232,251, 87,225,213,218, 71, 50, 11,116,127, 65,185, 62, +163, 59,232,232, 68, 78, 96, 74, 7,251,211, 10,237,108, 53,254, 80,124,228, 27, 60,130,146, 85, 27,199,202,155,190, 7,213, 72, +233,119,148,193, 10,128,245, 45, 19,247,165,185,125,140,222,230, 35,158, 41, 95, 87, 78,157,115, 59, 91,175, 49,232,127, 30, 56, + 77,174, 3,102,115,216,107, 97,154,208,173,109,116,115, 11, 93, 84,104, 25,153, 96,179, 82, 56, 94, 80, 22,135,148,249, 33,233, +240,128,197,209, 49,157,118,148,144,208,160,148,131,142,178,200,232,108, 78,185,221,193, 85, 8,239,215, 48,202, 72,184, 9,229, + 15, 32,127,207, 82,254,234,251,188, 96, 10, 12, 34, 14, 89, 29,199,223,145,242, 32,209,216,230,205, 12, 38,235,176, 89,193,232, + 26,114, 53, 32,183, 11,210,218,131,191,147,127,114,176, 95, 92,145,219,111,241, 42,177, 78, 86, 9,253,118,156, 74,139, 89,161, +212, 70,232, 18, 45,105, 45,231,228,148,174, 96,197, 84, 51, 70,169,168, 52, 49,198, 20,193, 93, 81, 19,198,185,120,135,170,161, + 84,145, 46, 21,218,146,232, 52,120, 71, 30, 28, 60, 82, 67, 61, 54, 38,124, 78, 3,152, 70,135,253,162,119,235,110, 13,235, 11, +141, 24, 2, 29,193,115,208, 25, 44,115,161,106,208,102, 76,142, 21, 89, 42, 24,109, 18,214,182,144,102, 66, 71,164, 45,133,174, +109, 45,164,195, 5,115, 97,253, 52, 52, 91,166,234,143, 53,245,169,243,132,241,182,197,110,174,159, 69, 54,207,177, 56,248, 0, +157,238, 33,213,200, 44,128,174,207,208, 1, 88,184, 98, 73,213, 62,216,100,185,142,147,170, 34,122,193,145,179,137,226,200, 9, + 66, 69,219,117,180,211, 3,180,155,123, 62,183, 27, 53, 67,244,160, 20, 67,159,246, 96,151,148, 18,109,219,210, 45, 22,204,167, +199,180,243, 25, 41, 27, 4,165,148, 52,124,191, 76,156,106,122,148, 80,213, 4,137, 75,218, 90, 8, 60,254,153,207,240,254, 59, +239,176,119,253, 58, 82,148, 24, 43,186,197,130,139, 79, 61,195,225,206, 46,139,249,156,135,159,120,130, 43,223,123, 5, 68,185, +241,246, 59,156,123,228, 35,124,244,211,159,230,252, 19, 79,112,254, 99, 31,163,107, 23,236,124,240, 1,247, 94,184,200,131,143, + 61,102, 99,243,233, 49,169, 77, 60,254,252,243,188,243,250,235, 20, 85, 62,248,241, 91, 60,116,233, 18, 79,126,246,115, 92,124, +234, 41, 62,242,236,179,148,212,113,251,250,141, 33,212,165,168,114,246,193, 7,248,211,255,244,159, 17,145,161,136,233,173,106, + 34,194,104, 60,230, 99,159,126,158, 71,159,121,134, 75,159,252, 36, 31,253,196,115,220,119,225, 2,111,189,246, 26,179,227, 41, + 63,245,197, 47,242,192, 71, 30,101,127,103,135,211,247,222,203,171,223,249, 14,165, 20,110,223,184,193, 39, 95,120,129, 11, 79, + 60,206, 98, 58, 99,227,212, 54, 63,248,238,203,136, 8, 55,223,123,159,231, 94,120,129,199, 63,241, 28,163,241,152,151,190,241, +117,243,236,139, 33,114, 55, 79,159,225,226, 19, 79,242,226,215,126,143,206, 21,247, 0, 55,223,123,143,231,126,246, 5, 30,123, +238, 19, 52,163, 9,127,252,245,111,144,187,165, 80,170,148,196,125,231, 31,246, 75,125,229, 90,239,247,230,186, 44,212,205, 94, + 43, 67,218, 27, 20,180, 24,208, 71,115, 70,115,177,233, 65, 89, 30,139,119,198,178,202,215,158, 8,238,100, 19, 55, 2,217, 27, +114,236,211,229, 24,237,110, 42, 42, 28,103, 99,167,180,142, 54, 79,197,124,166,107, 22, 0, 70, 19, 44,152,160,241,255, 95, 71, +131, 80,244,217, 40,243, 2, 71,157,208,212, 54,205,150,225, 11,179, 14, 95,188,147, 16,167,119, 54,149,176, 30,237,227,244, 71, +122, 40, 86, 93, 88,225, 30, 28, 12, 48, 34,159, 61, 11,227, 13,194,205,219,132, 60,181,139,169, 75, 54,199,111, 92, 25, 62,183, +110, 84,198, 53,124,124, 11,249, 53, 37, 92,216,130,240,119,161,108, 3, 87, 65,255, 12,202,159, 65,158,131,158,178,220,248, 42, +163, 7,111,195, 27, 83,219,185,111, 70,184,119,134,172, 63, 15,213, 58,250,221,175,193, 15,124,113,121,208,162, 11, 65,198,254, + 77,220,176,177,189,190, 62,183,113,205, 88, 41,215, 22,232, 97,235,223, 36,183, 78,172,185,229,236,184,179,241,117,113,108,172, + 11,107, 66,172,137, 90, 33,207, 52,200,175,222, 5,231,254,161,121,162,211,251,176,247,127,195,193,107,176,187, 7, 55, 28,112, +211, 57, 68,103,171,130,123, 35,108,175, 25, 11,159, 29,216,219, 71, 63, 72,182, 63,233,220,166,208, 22,175,101,196,138,128,243, + 1,185,168,112,230, 83,112,234,111, 65,125,214, 5, 93, 35,255,175, 64,247, 13,184,254, 15,208,239,204,224,135, 53, 58,202,148, +119, 15, 41,239, 77, 73,211,100, 30,227,158, 10,118, 7,140,161, 47, 78,195,157,118,110,207, 62, 14,189, 7, 90,203,137,183,108, + 16,245,221,187,215, 96, 26,236,144, 10, 35, 27,185,111,157,182,143, 49, 59,132,118,134, 52,209,240,251,157,207,174,106, 43,242, + 36,228, 37, 19,134, 98,107, 11, 95,230,155, 11, 67,209,206,225, 45, 97, 12,219,247, 16,238,218, 68, 70, 29,204, 14,225,248, 24, +142,230,232,180,163,107, 23,204,115,199,188,133,105,142,164, 16,105,164, 48, 10,197, 38, 82,165, 16,179, 18, 90,165,150, 64,179, +209, 80, 93, 92, 71, 46,141,224,241,130,220,159, 77, 80,119,215, 23, 97,243,239, 0,231,253,133,237,184,118,161,156, 4,224,175, + 94,234, 18,252,207,101,224,107,176,243,127,193, 31, 28,192,127,152,211,190,115,204,124,119,198,149,185,114,173, 27,190, 84, 27, +115,159, 48,215,136,193, 8,253,132, 80, 15, 85, 9,170,212,177, 2,137,116, 85, 67,201,234, 74,248, 68,168, 27, 15, 3, 9,238, +193,174,153,148,150,237,104,153, 81,139, 46, 81,122, 68,103,168, 13,246, 34,193, 97, 29, 11,180, 88, 7, 79,221,216, 69, 93,212, + 88,240, 69, 93,188, 85, 6,104,136, 12, 19, 28, 83,145, 23,191, 32,131,152,194, 62, 75,164,195, 70,196, 81, 19, 35,148,170, 54, + 94,189, 18, 40,213,136,220, 76,204,187,156,230, 44,102,199,204,230, 51,139, 12,117, 1, 92, 61, 89,103,114,247, 67,212,247, 92, +178, 61,243,108,207,244, 1,107,103,144,102, 29,169,215, 8,163, 45, 22,121,202,222,229, 63, 98,250,254, 27,148,174, 51, 17,112, + 20, 82,202, 44,146,141,188,163,168,193, 85,130,251,178,251,176, 71,223,167, 7,255, 58, 59,195,167, 81,215, 13, 97,125,155,174, +107,209,197,220, 79,105,219,165,211,140,237,176, 31, 82,238,252,231,158, 90, 52,183,110,227, 54, 73, 0, 0, 20,143, 73, 68, 65, + 84,148, 34, 36, 45,228,118, 97, 3,168, 88,217, 88, 62,119,182,202,236, 35, 68, 9, 38,104,172,226,114, 18, 83, 12, 27,155,181, + 80,138, 18, 84,137, 85, 53,248,157, 87, 5,172,154,242, 96, 9, 43,217,241,172, 49,184,118, 74, 45, 72,166,109, 17,132,132,105, +105,144, 37,185,173,248,170,199, 92,192,209, 95, 87, 15,128,137,131, 13, 13,129,103, 95,248, 89, 14,119,118,121,227,229,151, 93, +223,106,187,250,226, 83, 92, 99, 93,232,128, 1,238, 33, 49, 61, 96, 94, 7,130, 91, 30,158,152, 8,182,134,168, 27, 23,184, 41, +143,125,226, 57,238, 58,247, 0,223,250,119,191,181,130, 34, 81,183,101,174,184,114,188,161, 69,101,128, 7,157,200,164, 24, 2, +167,194, 74, 28,234,242,215,243, 63,255,115, 28,237,239,241,250, 75,127,220,211, 50, 78, 92,234, 22,152, 85, 78,116,229,246,204, +151,165,239,183,156, 28,213, 7,249,240, 0, 87, 1,226,255,116,143,252, 70, 41, 75, 55, 84,235, 65,247,189,158,181,232, 50, 64, +126, 0,130,233, 82, 5,223,219,207,154, 21, 1, 93, 29,100,240,165, 87, 97,136,170, 53,155,138,255,249, 53, 15,109,235, 59,243, +232,175,200, 39,103, 78,181,147, 97,132,100,144, 26, 75,115,106,135, 41,183, 29,186,228, 14,230, 29, 58, 30, 19, 70, 19,100, 92, +112,181,136,141, 27,212, 42,104,197,225, 34,109, 66,110, 39,104,182,144,251, 91,100,242, 18,196,159, 54, 92,167,140,150, 57,214, +154, 65,215,160, 84,200,218,189, 80,239,218,152, 98, 35,192,166, 32,213, 11,168, 28,192,229, 55,224,182,197,107,234, 84,151,190, +243, 70,150,222,240,219,254,141, 27,121,103, 56,205,195,190,161,135, 72, 12,251,136,185, 99, 59,251,216,214,108, 15, 68, 40, 53, +242,164, 32, 79,220, 11,155,127,213, 45, 78,107, 14, 33,123, 7, 56,178,203, 57,123,183, 62, 10, 86,128,108, 41, 52,150,195, 13, +115, 11,148, 57,102,176,109,245,168,114, 68, 60,121, 45,194,195, 9, 57,117, 31,156,250,235,208, 92,242, 11,221,125,214, 52,144, +175,194,254, 63, 66,175,222,130, 63,173,161, 18,244,120,134, 94, 61, 38, 29,182, 6, 29,186,227, 66,239, 15,136, 62,136,236,206, + 11, 29,196,196,111,245,200,197,129, 50,168,224,135,200,227,254,177,232,167, 73, 18, 9, 82, 76, 52, 50,217,128,122,205,108, 61, + 17, 83,204, 7,223, 53,245,203, 42, 7,114,144,210, 82,124, 71,131, 6,235, 36,181, 4,114, 87, 76,103, 18, 27,186,102, 68, 75, + 36, 29, 29, 34,239,189, 79,220,187,137,132, 57, 18, 19,228,130,116, 9,237, 90, 27,129, 22,161, 43,202,162,179,177,170,132,138, + 80,217,116, 39, 99,153, 10, 11, 32, 31,117,132,253, 22,217, 83,228, 70, 5,135,149, 9, 61,229,135,150, 2, 23,239, 7, 57,229, + 93,123,239, 67,253,144, 8, 8,193, 83,104, 4,248, 17,116, 95, 51,102, 68,125, 8, 83,129, 27, 25, 89,100,154, 82, 56, 54,150, +211, 16, 71,176, 90, 35,244, 65, 38, 1, 37,107,191,223, 86,167,136,171,139,178,106,138, 56,227, 59, 54, 84,163, 53, 74,172,124, +215, 25,168, 66, 69, 29, 3,212, 53,139,148,200,169, 91, 78, 6,197, 72,101, 37, 4,114,168, 76, 65,174,106, 35,228, 80, 65, 51, +182, 11,189, 51, 31,190,198,106, 96,193,179,146,117,173, 3,188, 37,250, 22, 44, 24, 18,194,187, 89,234, 6,173,199,150, 92,216, +152, 29, 45, 52, 35,114,181, 70,231, 72, 92, 45,230,175, 78, 57, 15,212,182, 28, 43, 82,206, 44,142,118, 72,135, 55,200,221,212, +215, 1,141,189,230,233, 1, 90, 18,117, 51,102,114,234, 33,214,238,255, 24,163,237,123,104,182,238,162,222, 58, 99,144,152, 24, + 73, 18,141,111,158, 18,161,182,253, 81,155, 50,201, 67, 84,204,198,102, 93, 95,246,139,169,138,129, 48, 94, 3,177,215, 64,207, + 50,175, 71, 84,155,167,237,235, 8,113, 24,207,171, 90,166,121,106,103,134,110,142, 21,197, 45,108, 18, 42, 19, 36, 74, 48,255, +122, 8, 67, 76,170, 41,194, 77, 13,158, 82,103,162,186,254, 76,207,217,190,197,209,177,182,170, 43,113,200,206,114, 24,152, 1, +118,134,246,187,237, 97,134, 52, 68, 40,171,107,133, 60,226,214, 71, 45, 85, 8,196, 24,169,171,134,170,170,137, 49,154,234, 60, + 70,215,189, 8,147,141,117,126,230, 87,126,133,170,174,120,229, 15,255, 16, 41,101,136, 96,101, 69, 21,190,234, 55, 31, 94,171, + 95, 76, 58, 92,236,197,255,185, 12, 61,137, 34,220,251,240, 69, 62,251,229, 95,226,177, 79,124,130,245,237,109,190,243,251, 95, +167,157,205,221,147,174, 39,102, 98,220, 65, 6, 63,113,125,202, 79, 70,172,157, 80,171, 3,147,245, 9,191,248,149,175, 80,215, + 53,223,253,214, 55, 61,120,102,229,163, 13,225, 50, 38, 90, 45,165,184, 93, 49, 19,244, 36,251, 93,244,142,215, 35, 39,197,118, + 43, 71, 41, 85,151, 78, 98,236,122,126,118,111,182, 81,215,120,173, 69,165, 66,152, 88, 68, 55,173, 66, 85,150,152,240,232,123, +244,210, 87, 26,209, 84,183,197, 73,155, 82,150,128,179,222,127, 87,245,182,181,232,184,144,180, 92, 37,247,138,191,164, 98, 66, + 9, 79,240,201, 78,154, 66,133, 88,148,177,100,154, 32,196,197, 20,185,117, 11,125,244, 33,202,214, 25,194,219, 59, 80,101,251, + 36,211, 76, 41, 9,245,240,134,144,149, 48, 93, 32, 95,223, 65, 55,238,129, 47, 28, 32,155,127, 31,194, 63,128,112,193, 20, 9, +113,102,177,151,150,254, 97,130,183,187,158,131,197, 31,155, 80, 45,110,219,158, 91,111,218, 40, 27, 93,222, 96,125, 85,149, 87, +102,157, 99, 96, 38,118,153,175, 87, 70,201,155, 39, 47,187, 92, 4,167, 5,105, 34, 26,141, 90,102,251,119, 29, 86, 20,140, 3, +220, 93, 96,116,214,132, 83,106,144, 12,234,103, 97,237, 53, 88,236,193,214, 14,180,161,143, 32, 50,210, 79,179,102, 59,240,176, + 6,229, 86,239, 59, 90,122, 7,219,108, 55,236, 72, 96, 43,194,217,130,108, 52,176,246,180,167,144,173, 42,179, 71,198,206,223, +255,167,176,243, 22,252,176,178,172,251, 73, 66,119, 22,164,221,150, 69, 22, 22,142, 37, 45,189,170, 61, 47, 7, 79,154, 79, 18, +147,134,177,124, 83, 27,212, 35,119, 4, 77, 72,231,127, 34,248, 28, 73,117,233, 53, 95,189,226,138, 26,132, 40,156,177, 13, 73, +231, 3,255, 92,160, 88,199,130, 84,198,131,239,171, 10, 26, 84, 91, 83,205,106,182,148,173,106,141, 44, 53,121,148, 41,243, 57, +105, 49,165,235, 22,104,155, 16, 45, 36, 85,210,190, 50,234, 10,213,182,225,114,117,180, 70,216, 89,163,242, 31,255,184, 4,242, +162,208,118,137, 46, 4, 66,105,169, 82,242,247,117,160, 4,165, 27, 5,186, 89,102,237,234, 1,163,157, 57,213,187, 19,226,187, + 99,228, 17,129, 91,151,225,252,255, 6, 27, 79,195,250,223,134,209,199, 65, 55,176, 42,236, 14, 58,133,170, 23, 89, 11, 96, 27, +218, 11, 48, 63,182, 81,252,227,251,200, 59, 19,226,113,102,179, 43, 60,144, 50,135,153,161, 32, 22,129,174,232, 18,144, 24, 92, +197,175,106, 26,115, 9, 67,170,116, 6,130, 11, 85,173,129,243, 4,171,156, 76,208, 85, 27,149, 44,136,146,170,134,188,104, 79, +226, 56, 52,147,169, 40,120,184, 8,110,195,241,189,179, 21,183, 35, 7,195,231, 19,159,183,191,228, 76,104,214,239,163,173, 96, + 42,106,130,188, 92,212,108,141,201, 68, 97,165,170, 81, 34, 85,176,174, 56,229,153, 51,231, 11,162,201,212,229, 65,236,245,100, +179,183, 81,236,235, 91,236,188,143,222,122,151,166, 25, 51,185,231, 97,226,221, 23,236,210,235,166,148,116, 68, 61, 63, 96,180, +253, 0,167, 31,120, 10, 46,126,202, 72,155,199, 59,164,233,174,101,122, 75,225,224,237,239,113,240,250, 31, 80,186,185,125,189, +214,222,158, 8, 60,200, 67, 46,196,200, 58,249, 60,243,247,113, 70,170, 17,113,188, 14, 33, 14, 9,134,169,107,237,185,241,221, +106, 46,197,207,201,228,243, 85,179,253,169,154, 69,173,228,100, 53,184, 66, 8, 53, 69,194,176,186,210, 82,252,251, 40,148,148, + 41, 41, 13, 16,155,226, 9,112, 20, 87,218, 59, 6, 68, 42,139,173, 84,205,195,179, 91, 74,182,199,169, 40, 33, 88,170, 27,197, + 86, 12,217, 9,108,125, 7, 29,253,243, 13,187,254, 21,112,145, 96, 78,128,249,241, 49,223,252,215,255,122, 73, 41,140,113,165, +192,232, 19,253,138, 39,179,249,191,115,244,107, 63, 9, 24,136,113,220,193, 96,247, 49,224, 7,239,188,205,187, 63,126,203,240, +180,168,137,225, 60,183,160,172, 38,175,200,114, 3,234, 42,174,225,212, 9,238,250,232,215, 46,114,167,151, 71,140,123, 49, 63, + 62,230,171,255,242, 95,220,153, 67,228,103,142, 39, 82,149,178,178, 79,255,201,174, 91, 62, 36,141, 90, 62,164,182, 88,157, 26, +196, 95, 59, 35,191,177,114, 23, 81, 84, 92, 76,179,252, 48, 69,122,138,233, 82,189, 46,158, 83, 82,123,167, 93,133, 59,232,164, + 14,248, 80, 21,162, 95,222,115,160, 51,232,243, 32, 28, 23, 31,129,170,202,224, 93,199,181, 91, 61,220,102,136,253,246,138, 80, + 4,114, 49,241, 85,231,189, 91, 29,148,208, 38,100,123,140,158,218,132,133, 32, 83, 27, 47,167, 89,161, 45, 74, 30, 2,125,149, +208, 58, 77,231,106, 7,247,157, 70,206,237, 64,248,190, 7,193,172,219, 65, 41,135,160, 9,180,241,113,224, 3, 48,234,160,188, + 13,163,187, 44, 18,179,251, 51,248,254, 45,243,156, 39,139, 79,181,149,168,152, 0,174, 14, 48, 9, 72,171,182,107,207,138,172, +245,249,237,101,105,143, 11,190,243,141, 1, 90, 69, 23,101,217, 70,169, 18,186, 72,220, 30,193,103, 4,121,240,203,208,124,198, + 15,243,108, 1, 31, 36,104,223, 48,171, 83,206,144, 42,216,176,179,158,234,148,239,211, 11,148, 35, 88,204,236,116,239, 60,118, +117,225, 42,248,141, 10, 78, 87,112,182, 67, 54,239,134,237, 95,134,230,209, 21,239,180,235, 14,142,254, 61,236,255, 14,122, 5, +248, 81,132, 81, 70,119,231,148,183,166,204,167,137,105, 37,203,159,151,172, 20,140, 75,178,204,201,203, 92, 34, 52,181,189, 23, +218,185,141,199, 87, 43, 96, 31,201, 15,221,252, 48,167,247,199, 45, 23, 83,186,111,157,177,215,167, 45, 34,174,202, 76,221,160, +150,215,226, 57,226,145, 65, 16,148, 67, 69, 38,208,117,129,182, 8,139, 54,209,150,138, 69, 28,145,230, 29,186,232,108,215, 92, +143,161, 94, 35,175,175, 3, 19, 36,172,193,230,105,244,244, 22,170,181, 69,238,142, 54,208,209,216,136, 97,237,140, 46,181, 14, + 45,233,195, 78,150, 99,188,206, 81, 10,165,205,232,222, 2,217,203,200, 13, 8,183, 26, 91,135,196,235,208,125,219,116, 11,245, + 37,115, 57, 12,155, 91, 61, 57,250, 80, 32, 31,128,174,195,252, 6,164, 41, 84,135,246,189,154, 67, 56, 86, 38,179, 66, 46,194, +129,211,177,196,159,231,158,221,222, 63,119,253, 92, 81,252,251,171, 30, 4,161, 37, 19, 37,208,169, 69,157,230,212,145,125,132, +155, 85, 77, 36, 86, 50,165, 30, 89, 49, 95,140,245, 93,213, 13,161, 30, 91, 65,147,179, 75, 68, 26, 67,120,106,191, 47, 78,246, +214, 12,209,108,112,197,188,216,214,228,219,251, 67, 98,133,198, 6,141, 53, 37, 68, 47, 24,151,196,107, 27,231, 6,183,197, 25, +115, 92,157,168, 86,210,130,182, 93,176,104, 59, 82,215, 13,103, 93,231, 84,180, 92,242,137,227,209,104,190,166,234,158, 30,239, +113,188,251, 62,237,241, 46,121, 49, 37,205, 15,232, 22, 7,148,197, 1,165, 77, 4, 10,213,218, 54,213,218, 22,218, 76, 88,164, +150,195,119, 94,165,189,125,205, 18,189,220,150,167, 43,151,141,122,152,141,132,218, 46,170,236,225, 38, 10, 18, 26,194,100,157, +148,149,118,122, 76,110, 91,114,106,173,160,141,145,210, 45,204, 99,175,253,152,214,169,127, 69, 45,246,115,177, 48, 22,121,234, +134,175, 45, 97,244,190, 16,140,113, 79, 63,133,237, 89,232,197,155, 42,199,169, 90,181, 96,111,138, 80,138, 9, 81, 67, 88, 42, + 58,180, 12,123, 95,213,158, 15,178, 18, 19, 26,130,107, 54,204, 47, 31,162, 79, 86, 92, 32,105, 95,235,146, 22,104,218,190, 66, + 46,217, 63,127, 89, 82,215,202,178,251, 46, 62,234, 79, 57,155, 13,210, 39, 16, 69,203,201,203,109, 40,254,151,180,194, 62,210, +117, 16, 80, 34, 38,200,212, 37,222, 82, 87,135, 96,194,159,219, 26,175,102, 22,220,121,177,202, 48, 75, 60,121, 9,171, 23, 57, + 57,123,131,233,209,181,171,221,182,252, 57, 23,251,234, 72, 63,172, 20, 8,114, 39,184,171,183,136, 39,189, 67,127,227,173,114, +118,133,169,122,188,118, 39, 66, 22,165,113,147, 63,197, 47,247,136, 43, 84,197, 85,155, 12,123, 16, 16,114,112,223,186,199,109, + 15,239, 23,150,222, 89,252,135, 85,178,244,233,167,148, 96,132,179, 94,204, 45, 62,205, 54,152,196, 73, 42, 89, 31,215,185, 22, + 10,241,189, 91,150,115, 50,222, 64,171, 9,180,153, 84, 23,102,179, 98,163,216, 74,204,150, 92, 67,140, 5, 61, 90,192,191,217, + 71, 31,186, 11,121,248, 77,232,254, 25,212,127,199,160, 52,122, 8,114, 21,149,100,157,110,190, 5,213, 83,176,113,205, 58, 3, +237,108,244, 63,235,145,163, 50, 92,194,140,117,169, 54, 92,175,160, 46, 72, 93,108, 93, 48, 23,194,134, 80,180, 50,178, 92,244, + 93,166, 4,100,108,195, 1, 57, 84, 74,107, 99,248, 16, 60, 93,109, 29,228,116,128,250,169, 21, 31,179,223,152,245, 5, 27,177, + 87,199, 48,105,173,192, 88,199,242,214,171, 45, 8, 99,175,158,202,242, 93, 91, 28,124,211, 99,185, 54, 35,156, 74,200,198, 24, + 38, 15, 65,243,209,147,254,233, 48,134,242, 30,204,127, 27, 14, 18,114,121,100,157, 65,238, 40,239,206,232, 14, 59,142,235, 48, +144, 7,195,138,223,242,206,234,178, 63, 0, 52,212, 48, 89, 71, 84, 41,243,163,161,122, 47, 62,153, 17,239,110,150,251,196, 21, +193,167,167,179,105, 12,150,161, 45,238,251, 72,153,178,232, 92,116, 98,193, 27, 84,160,173, 65, 98,148,198,212,192, 57,163, 33, +144, 52,210,230,204, 98,158,205,227,158,167,134, 35,158,108,194,246, 61,200,120,203,246, 94, 85,160,180, 29,139,212, 82, 4,154, +157, 41,213,193, 28, 25, 67,104, 2, 85,183, 32, 79,143,168,167,199,196,156,233,146, 37, 27,106, 48, 28,107,232,148,170, 95, 51, + 33,148, 90, 56,208,194, 34, 41,107,187, 83,198,199, 45,205,126,162, 62, 90,135,182,130, 75,183,161,252, 38,164,107,112,234,127, +135,234, 60,203,242,120,101, 80,216, 43,172,217,132,250, 60, 76,119,160,190, 9,247, 76, 9, 15,140, 8,199, 74,245, 72,228,163, + 63,110, 57,124,187,227,182, 31, 74,181,152, 54,134, 30,215,186, 18, 23, 53,236,238,176,233,152,148, 66,206, 45,226,113,162,214, +176, 25, 87,190,170,215, 41,117, 77, 14,134, 72,149,201, 6, 50, 50,123, 83,234,195, 90,202, 2, 41, 74, 53, 26, 51,143, 21,121, +145,125,100,107, 84,181, 72,182, 68, 50, 44,228,163,223,153,139, 11,134, 76,197, 30,220,239,157, 78,112,244,251,189,238,208,145, +133,202,172,110,209,146,219, 52,103, 83,224,135, 72,215,119,177, 57,123, 66,157, 34, 33,218, 26,167,105, 28,153, 57, 67, 36, 82, + 98,197,124,122, 64, 59, 63,182, 67,245,246,117,234,102,196,120,227, 20,245,218,186, 89,204, 98,133,134,138,249,236,136,195,253, + 29,186,195,219, 72,106,105,234,106, 56,248,251, 17,116, 63,186, 78, 30, 16,130,191,182,130, 9,224, 66,109, 43,141,110, 62,179, +167, 46,171,165,186, 53, 35,194,168, 38, 39, 79, 15, 43,198, 43, 86, 31,177, 11,129,210, 45, 12, 22, 20, 2,129, 72, 81,191,240, +130,217, 72, 11,153,180, 48, 80, 72,239,147,215, 21,252,168, 1,136, 12, 31, 44,190, 50, 34,103,219,209,135,224,151,231, 10, 26, +216,135, 94, 41,217,247, 56,136, 5, 1,101,177, 68,189, 12, 6,202, 81, 23, 73,245,190,121,197,109,103, 1, 41, 66,161,144,197, +236,124, 37, 89, 78, 64, 22, 49, 12,110, 63,154,246, 19,163,167, 71, 87,206,224,207,217, 47, 21,231,172,232,202, 9, 51,116,251, +125, 80,140,120,234,166,163,145,139, 90,250, 30,197, 3,118,134,221, 32, 39, 46,119, 86, 39,199,171,207,133,234, 9,152,187,172, +172, 3,150,151,188, 23, 28, 89, 7,209,164, 14,207,127,127,225,203,106,146,203,135, 95,232, 39, 38,154, 39,163, 86,249,144,110, +190, 18,150, 88,115, 5,162,119,180,125,135,149,220,157, 85, 84,153,187, 21, 35,246, 49,156, 43, 1,102,161,156,172, 88, 50, 56, +245,201, 35,234,130, 12, 49,135,165, 8,217, 65,104, 41,247, 1, 50, 66,206,253,110,207, 71, 30,193, 35,191,157,203,210,174,252, + 94,171, 38,130,239,173,112,227,190, 16,208, 5,178,183, 71,184, 59,192,233,177,229, 49,239,103, 22, 36, 42, 85,195, 91, 74, 48, +241,155, 22,164, 42,112,245,136,242,255,212,196,191,117, 14,214,126, 31,218, 39,160,254,239,128,123,209,176,239,249,215, 78,133, +209, 5,132,207, 66,249, 19, 68, 94, 71,231, 71, 62,238, 54,117,106,207,106,151,226, 34,133,224,227, 12,140,246, 38,168,143,209, + 2,225,116,176,177,111,242, 78, 7,207,173,245,232,178, 92,220,209,157, 10,210, 4, 56, 19, 96,173,177,137,193,157,144,146,224, +246,182,120, 3, 70,199,214,161, 78,214, 32,222,109, 40, 87,169,122,138,143, 67,110, 86, 60,132,184,200, 97, 91,145, 83, 1,154, +187, 96,252,156, 5,136,244, 69,128, 7,171, 16, 94,130,173, 15,224,242,196, 26,248,168,148,119,231,228,155, 51,142,138, 50,147, + 64,209, 64, 20, 99, 83, 87,206, 30, 64, 7,186,171, 63,128,246,160,105,255,186,114,242, 17,154, 12, 35,225,101, 66,156,117,168, + 69,252,101,228, 21,255,122,191,112,106,156,128,150, 11, 26, 4, 73, 29, 37,116,214, 97,228, 76,153,183,100, 21, 91,231,164,150, + 92, 53, 38,200, 91, 36,148,108,151, 69,168,208, 18,173, 88,235, 90, 27, 76,164,117,239,246, 35,154, 10,218,182, 16,133,197,236, +136,210,205,105,214, 55,168, 51, 4,233,136, 58,165, 74, 51, 66, 84,234, 98, 19,166,226,180, 68, 77,182,159, 46, 98,212, 51,196, + 38, 83, 37, 11,243,168,116, 33,144,187, 12,183,142, 8,149, 18,159, 62, 5,111,143, 96,122, 12,247,253, 33,164, 93, 56,243, 55, +161,126,220,160, 67,204, 86,142, 28,119, 36,200, 1, 52,103, 96,116, 14,202,109,228,204, 85, 19, 73, 86, 35,184, 84, 51,254,127, + 11,231,175,117, 28,182,194,169,173,200,250,134,240,246,245,196,113, 42,196,149, 89, 99,208,129, 91, 73,150,229,161, 26, 17, 74, +172,109, 50, 82, 7,170, 56, 34,132, 10, 25, 79,172, 72, 41,153, 60,157, 65,233,108,215, 94, 58,178, 66, 83, 69, 66, 53, 34,212, + 35,114,206, 70, 6,172, 70,230, 17, 87, 99,251, 84,165,163, 42, 86, 52, 8,193,133,117, 14,157, 9, 66,171, 22,127, 73,172, 16, +137, 68,205,132, 98,151, 70, 17,177,132, 53,239, 38,135,208,152, 24, 40,146,172, 83, 11,193, 20,254,173,141,223,251,130, 79,170, + 96,187,249, 30,255,170, 74,116,140,107, 81, 69,114,231,163, 99,243,130, 47,186, 57,233,224, 22,245,254,117, 82,234, 92,100, 86, + 28,184,229, 86,186,186,182, 66, 72,151,125,146,138, 69, 2, 19,107, 75, 99, 19,147, 39, 22,130,249,218, 39, 19,138, 6,186,249, + 20, 41, 9,234,145, 63,162, 54, 34,238,186,133,235,153,116,105, 79,114,190,123, 94, 76, 13,149,234,168,227, 32,134, 7,206, 33, + 90,177,163,105,165,243,237, 63, 70, 25, 86, 44, 5, 99,185, 15,200, 81, 53, 49, 27, 85, 88, 78, 24, 68,150,184,229, 40, 22,203, + 91,242,112,111,100, 31,147,103,247,164,211, 39, 46, 14, 86,186, 94, 72,230, 22, 69,207, 15, 89,105,148, 79, 76,135,251,177,123, +242, 98,163,191, 44, 69,130,133,249,212,129, 42, 42,165, 24,195, 68,125,242, 80,252,230,151, 21,229,109, 20, 59,107, 66, 8, 30, + 52,150,141,139,191,210, 41,235,170, 79,124,229,198,236,179,173,202,170, 13, 93,197,166, 84,114,114, 19,102, 76, 4, 91,211, 81, +124, 93,184,114,201,243, 19,161, 46, 44,167,120,119, 52, 60,171,191,130,124,152,165,247, 67,215,250,214,169, 31, 55, 99,143,171, +243, 75,156,147, 6,122, 17, 12,168,224,202,211, 62, 15, 35, 4, 60,159,246,164,149,173, 31, 17,228,202, 15,135, 21, 1,156, 6, +232,212,254,206, 34,152, 15,126, 53,124,171, 13,134,151,173,221, 13, 86,130,208, 58,192,170, 79, 21, 13, 46, 69, 76, 89,152,149, + 62,213, 73,152, 71, 24,141,204,110, 86,102, 25,142,167,118,209, 54, 99,142, 42, 56,168,231,108,199, 68,138,197,194, 43,114,182, + 73, 67, 21,140,137,254,189, 5,242, 85, 8, 63,127, 6,194,255, 9,245, 8,229,148,197,110,102, 44,166, 85, 1,221, 1, 61,131, +148,123,160, 92, 69,247, 61, 18,117,226,106,233, 54,192,196, 30, 88,201, 1, 98, 99, 29,124, 29, 96, 35,217,174,156,226,104, 62, + 65,199, 54, 62,211,206, 61,127,199, 70,246, 73, 90,152, 42,132,160,140,163, 81,160,170, 51, 35,132, 13,131,161,228,206,161, 37, + 44,243,174,203, 5,208,183,109,252, 94, 31,129,222, 13,229, 44,228, 26,178,115,192, 91,160,173, 44, 43, 92,176,203,188, 17, 24, +215,176, 85,144,250, 12,132, 75, 32, 79, 56,236,127,230,212,131, 9,112, 13,184, 2,225, 65,152, 30,193,180, 51,108,254,187,133, + 89, 27,217, 13, 21,173,135, 6, 84, 10, 18, 77,225, 91,245,218, 12, 89, 42, 55, 75,191, 43, 15,181, 29,242,173,239,240,134, 14, +205,246,116, 34, 86, 56,200,170, 58,190,146,165, 13, 78, 21, 73, 9,105, 54,109,140, 15, 38, 8, 28,103, 72,115,138, 38, 83, 51, +231,134, 86,160, 75,138,230,128, 38, 19,205, 5, 41, 86, 68, 4,123, 42, 83,172,209, 81,131,106, 68,170, 9, 18,199, 72,137,132, +186,166,228, 22,169,106, 66,108, 16,153,210,141, 55, 56,102,196,248,104,202, 72, 23,132, 74, 41,163, 26,109, 43, 19,126, 5, 60, +198,177,191,122,237, 98,143, 81,135, 17, 83, 9,234,227,111, 37, 53,208,102,101,235,160,208,124,107, 1,177,134,251, 38,240,241, + 22, 46,188, 2, 71,127, 15,238,254, 31, 97,244, 5, 23,200,245,130,152, 9,148,202,222, 19,237, 28,242, 6,232, 57,136,187,112, +166,131,131, 0,223, 92,160,135, 35, 54,239, 19,206,239, 22,170,179, 53,177,142,108,205, 91,230,199, 38, 26, 12, 94,108,228,232, +157,156,101,225, 26,180,135,128,214, 53, 42, 53, 49,103,234,209, 58, 57, 86, 6,173,242,100, 52, 45,157,129,167, 42,161,202, 32, +213,136,166, 25, 33,227, 53, 74,168, 77,156,149,210, 32,172, 11,193,170,246,162, 62,146,212, 66, 83, 5,106,137,110,135, 19,239, + 2,173,174, 75, 89,145,186, 49, 21,179, 91,238,106,181,168,214,164, 86,241,169, 55, 36,189,163,102, 92, 85,148, 24, 72,177,177, +140,237,197,145,169,235,251, 17,188, 8, 41,249,197,225,107, 6, 81,235, 80, 67, 85, 67, 12, 84,185, 16,163,216,123, 32, 84, 20, + 45,132,212, 50, 86,163,227,117, 41, 83,123,176,199,137, 5,170, 10,181, 79, 60,113,156, 39,161, 50, 77, 64,172,236,140, 81,140, + 24, 87,215,104,206,228,182,163,116,115,155, 86,169, 35,124, 83, 50, 59, 90, 93, 13,153, 8, 37, 23,218,156,144,197,140, 74,198, + 52,205,216,214, 17,210, 43,215,109,141, 58, 68,145,170, 12, 98,189,129,209,224, 19, 48, 45,106,130,212,176,220, 17, 7, 49, 55, + 78,201,166,235,137,209,255,174,150,225,239, 20, 45, 52,120,170,157,247,187, 37, 91,145, 19,156,126, 22,252,153,214,254,107,241, + 75,183,191, 4,203, 80,248, 26, 2,119,200, 84, 17,251, 59,157, 22, 74,178,113,181,222, 57, 98,247, 88,212, 97, 53,224,171, 89, +237, 87, 40,234,119,146,219,225,138, 64,151, 11, 33,117, 52,121,252,231,129, 50,126,162, 61,150, 21,206, 91, 24,174,127, 25, 46, +255,129,232,231,106,117,209, 1,200,177,154,139, 53, 12,213,238,188,140,131, 79, 10,250,187, 83, 79,216,207,181,223, 24, 15,161, +113,194, 10, 6, 91, 87, 9, 31,246,235,191, 1, 3, 19, 63,235,194,153, 66, 72, 0, 0, 0, 0, 73, 69, 78, 68,174, 66, 96,130, 0}; -- cgit v1.2.3 From 048ede5080166d59d4ba2756ed16ce3700ecf274 Mon Sep 17 00:00:00 2001 From: Thomas Dinges Date: Wed, 15 Feb 2012 17:19:26 +0000 Subject: Set BLENDER_VERSION_CYCLE to release. --- source/blender/blenkernel/BKE_blender.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender') diff --git a/source/blender/blenkernel/BKE_blender.h b/source/blender/blenkernel/BKE_blender.h index 405d0e9631a..c5a5c134cdf 100644 --- a/source/blender/blenkernel/BKE_blender.h +++ b/source/blender/blenkernel/BKE_blender.h @@ -51,7 +51,7 @@ extern "C" { /* can be left blank, otherwise a,b,c... etc with no quotes */ #define BLENDER_VERSION_CHAR /* alpha/beta/rc/release, docs use this */ -#define BLENDER_VERSION_CYCLE rc +#define BLENDER_VERSION_CYCLE release extern char versionstr[]; /* from blender.c */ -- cgit v1.2.3 From 9251d64e2b6bbcdbe051f4c99cdb2e5a2071509a Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Wed, 15 Feb 2012 18:11:10 +0000 Subject: Tomato: fixed incorrect behavior of textures buffer used in MCE together with 2d stabilization. --- source/blender/editors/space_clip/clip_draw.c | 7 +++---- source/blender/editors/space_clip/clip_editor.c | 3 +++ 2 files changed, 6 insertions(+), 4 deletions(-) (limited to 'source/blender') diff --git a/source/blender/editors/space_clip/clip_draw.c b/source/blender/editors/space_clip/clip_draw.c index afc0d84ed9a..43068c38116 100644 --- a/source/blender/editors/space_clip/clip_draw.c +++ b/source/blender/editors/space_clip/clip_draw.c @@ -232,9 +232,8 @@ static void draw_movieclip_buffer(SpaceClip *sc, ARegion *ar, ImBuf *ibuf, ED_space_clip_load_movieclip_buffer(sc, ibuf); glPushMatrix(); - glTranslatef(x, y, 0); + glTranslatef(x, y, 0.0f); glScalef(zoomx, zoomy, 1.0f); - glMultMatrixf(sc->stabmat); glBegin(GL_QUADS); glTexCoord2f(0.0f, 0.0f); glVertex2f(0.0f, 0.0f); @@ -268,9 +267,9 @@ static void draw_movieclip_buffer(SpaceClip *sc, ARegion *ar, ImBuf *ibuf, glLogicOp(GL_NOR); glPushMatrix(); - glTranslatef(x, y, 0); + glTranslatef(x, y, 0.0f); - glScalef(zoomx, zoomy, 0); + glScalef(zoomx, zoomy, 1.0f); glMultMatrixf(sc->stabmat); glBegin(GL_LINE_LOOP); diff --git a/source/blender/editors/space_clip/clip_editor.c b/source/blender/editors/space_clip/clip_editor.c index 9835a1cf43b..5f042e6a2be 100644 --- a/source/blender/editors/space_clip/clip_editor.c +++ b/source/blender/editors/space_clip/clip_editor.c @@ -323,6 +323,7 @@ typedef struct SpaceClipDrawContext { struct ImBuf *texture_ibuf; /* image buffer for which texture was created */ int image_width, image_height; /* image width and height for which texture was created */ unsigned last_texture; /* ID of previously used texture, so it'll be restored after clip drawing */ + int framenr; } SpaceClipDrawContext; void ED_space_clip_load_movieclip_buffer(SpaceClip *sc, ImBuf *ibuf) @@ -342,6 +343,7 @@ void ED_space_clip_load_movieclip_buffer(SpaceClip *sc, ImBuf *ibuf) * assuming displaying happens of footage frames only on which painting doesn't heppen. * so not changed image buffer pointer means unchanged image content */ need_rebind |= context->texture_ibuf != ibuf; + need_rebind |= context->framenr != sc->user.framenr; if (need_rebind) { int width = ibuf->x, height = ibuf->y; @@ -423,6 +425,7 @@ void ED_space_clip_load_movieclip_buffer(SpaceClip *sc, ImBuf *ibuf) context->texture_ibuf = ibuf; context->image_width = ibuf->x; context->image_height = ibuf->y; + context->framenr = sc->user.framenr; if (fscalerect) MEM_freeN(fscalerect); -- cgit v1.2.3 From 93526b4c72f76f8d8d382a11e7d0f8e4f21c4a7c Mon Sep 17 00:00:00 2001 From: Dalai Felinto Date: Wed, 15 Feb 2012 18:17:31 +0000 Subject: readfile update after version/subversion bump Note, there is no need to leave doversion code outside a version/subversion nest. e.g. having if version < 262 in a 2.61 file will make the code to double-run. however this is the same case for the code nested outside the if versions ... with the advantage of making ahoys/version bumping easier. Ton himself was unaware of how we were doing this and suggested to get rid of the /* put subversion code here */ practise. --- source/blender/blenloader/intern/readfile.c | 22 ++++++++++------------ 1 file changed, 10 insertions(+), 12 deletions(-) (limited to 'source/blender') diff --git a/source/blender/blenloader/intern/readfile.c b/source/blender/blenloader/intern/readfile.c index 5f737ea4e53..ff737339835 100644 --- a/source/blender/blenloader/intern/readfile.c +++ b/source/blender/blenloader/intern/readfile.c @@ -13062,20 +13062,18 @@ static void do_versions(FileData *fd, Library *lib, Main *main) } } } - - /* put compatibility code here until next subversion bump */ + + if (main->versionfile < 262) { - { - Object *ob; - for(ob=main->object.first; ob; ob= ob->id.next) { - ModifierData *md; + Object *ob; + for(ob=main->object.first; ob; ob= ob->id.next) { + ModifierData *md; - for (md=ob->modifiers.first; md; md=md->next) { - if (md->type==eModifierType_Cloth) { - ClothModifierData *clmd = (ClothModifierData*) md; - if(clmd->sim_parms) - clmd->sim_parms->vel_damping = 1.0f; - } + for (md=ob->modifiers.first; md; md=md->next) { + if (md->type==eModifierType_Cloth) { + ClothModifierData *clmd = (ClothModifierData*) md; + if(clmd->sim_parms) + clmd->sim_parms->vel_damping = 1.0f; } } } -- cgit v1.2.3 From 30dddb9840e1566e50c5aacc70bd4b2865c7fa56 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 16 Feb 2012 04:21:40 +0000 Subject: fix for replacing a generated image with a file, the image would stay generated. not a show-stopper but confusing. --- source/blender/editors/space_image/image_ops.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'source/blender') diff --git a/source/blender/editors/space_image/image_ops.c b/source/blender/editors/space_image/image_ops.c index e1fe3788d05..3b7992e0468 100644 --- a/source/blender/editors/space_image/image_ops.c +++ b/source/blender/editors/space_image/image_ops.c @@ -886,6 +886,11 @@ static int image_replace_exec(bContext *C, wmOperator *op) /* we cant do much if the str is longer then FILE_MAX :/ */ BLI_strncpy(sima->image->name, str, sizeof(sima->image->name)); + if (BLI_testextensie_array(str, imb_ext_movie)) + sima->image->source= IMA_SRC_MOVIE; + else + sima->image->source= IMA_SRC_FILE; + /* XXX unpackImage frees image buffers */ ED_preview_kill_jobs(C); -- cgit v1.2.3 From da69173269b73209a484fde69c9ddbb6d42a287d Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Thu, 16 Feb 2012 07:45:01 +0000 Subject: Tomato: fix for missing cache invalidation when disabling/enabling channels for stabilized shot --- source/blender/blenkernel/intern/movieclip.c | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) (limited to 'source/blender') diff --git a/source/blender/blenkernel/intern/movieclip.c b/source/blender/blenkernel/intern/movieclip.c index 03fe18e4bd8..c93c03a4424 100644 --- a/source/blender/blenkernel/intern/movieclip.c +++ b/source/blender/blenkernel/intern/movieclip.c @@ -277,6 +277,7 @@ typedef struct MovieClipCache { struct { ImBuf *ibuf; int framenr; + int postprocess_flag; float loc[2], scale, angle; int proxy; @@ -702,7 +703,7 @@ ImBuf *BKE_movieclip_get_postprocessed_ibuf(MovieClip *clip, MovieClipUser *user return movieclip_get_postprocessed_ibuf(clip, user, clip->flag, postprocess_flag, 0); } -static ImBuf *get_stable_cached_frame(MovieClip *clip, MovieClipUser *user, int framenr) +static ImBuf *get_stable_cached_frame(MovieClip *clip, MovieClipUser *user, int framenr, int postprocess_flag) { MovieClipCache *cache = clip->cache; ImBuf *stableibuf; @@ -723,6 +724,9 @@ static ImBuf *get_stable_cached_frame(MovieClip *clip, MovieClipUser *user, int if(cache->stabilized.render_flag!=render_flag || cache->stabilized.proxy!=proxy) return NULL; + if(cache->stabilized.postprocess_flag != postprocess_flag) + return NULL; + stableibuf = cache->stabilized.ibuf; BKE_tracking_stabilization_data(&clip->tracking, framenr, stableibuf->x, stableibuf->y, tloc, &tscale, &tangle); @@ -740,7 +744,8 @@ static ImBuf *get_stable_cached_frame(MovieClip *clip, MovieClipUser *user, int return stableibuf; } -static ImBuf *put_stabilized_frame_to_cache(MovieClip *clip, MovieClipUser *user, ImBuf *ibuf, int framenr) +static ImBuf *put_stabilized_frame_to_cache(MovieClip *clip, MovieClipUser *user, ImBuf *ibuf, + int framenr, int postprocess_flag) { MovieClipCache *cache = clip->cache; ImBuf *stableibuf; @@ -768,6 +773,8 @@ static ImBuf *put_stabilized_frame_to_cache(MovieClip *clip, MovieClipUser *user cache->stabilized.render_flag = 0; } + cache->stabilized.postprocess_flag = postprocess_flag; + IMB_refImBuf(stableibuf); return stableibuf; @@ -786,10 +793,10 @@ ImBuf *BKE_movieclip_get_stable_ibuf(MovieClip *clip, MovieClipUser *user, float if(clip->tracking.stabilization.flag&TRACKING_2D_STABILIZATION) { MovieClipCache *cache= clip->cache; - stableibuf= get_stable_cached_frame(clip, user, framenr); + stableibuf= get_stable_cached_frame(clip, user, framenr, postprocess_flag); if(!stableibuf) - stableibuf= put_stabilized_frame_to_cache(clip, user, ibuf, framenr); + stableibuf= put_stabilized_frame_to_cache(clip, user, ibuf, framenr, postprocess_flag); if(loc) copy_v2_v2(loc, cache->stabilized.loc); if(scale) *scale= cache->stabilized.scale; -- cgit v1.2.3 From f047d90a0e10068e1a44ea59300288218093e79c Mon Sep 17 00:00:00 2001 From: Jens Verwiebe Date: Thu, 16 Feb 2012 08:48:28 +0000 Subject: ffmpeg: only suppress loopfilter for .mov ( compatibility ), but keep for .avi (quality ) --- source/blender/blenkernel/intern/writeffmpeg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender') diff --git a/source/blender/blenkernel/intern/writeffmpeg.c b/source/blender/blenkernel/intern/writeffmpeg.c index c4c3eb4a8b2..9413b96a103 100644 --- a/source/blender/blenkernel/intern/writeffmpeg.c +++ b/source/blender/blenkernel/intern/writeffmpeg.c @@ -1244,7 +1244,7 @@ static void ffmpeg_set_expert_options(RenderData *rd) * The other options were taken from the libx264-default.preset * included in the ffmpeg distribution. */ -// ffmpeg_property_add_string(rd, "video", "flags:loop"); // this breakes compatibility for QT + if(!FFMPEG_MOV) ffmpeg_property_add_string(rd, "video", "flags:loop"); // this preserves compatibility for QT ffmpeg_property_add_string(rd, "video", "cmp:chroma"); ffmpeg_property_add_string(rd, "video", "partitions:parti4x4"); ffmpeg_property_add_string(rd, "video", "partitions:partp8x8"); -- cgit v1.2.3 From 42e50719df8827135b95ae9226d0f84766eb6d45 Mon Sep 17 00:00:00 2001 From: Jens Verwiebe Date: Thu, 16 Feb 2012 11:52:02 +0000 Subject: ffmpeg: take back 44142, conditional was wrong --- source/blender/blenkernel/intern/writeffmpeg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender') diff --git a/source/blender/blenkernel/intern/writeffmpeg.c b/source/blender/blenkernel/intern/writeffmpeg.c index 9413b96a103..e9f7823dfe8 100644 --- a/source/blender/blenkernel/intern/writeffmpeg.c +++ b/source/blender/blenkernel/intern/writeffmpeg.c @@ -1244,7 +1244,7 @@ static void ffmpeg_set_expert_options(RenderData *rd) * The other options were taken from the libx264-default.preset * included in the ffmpeg distribution. */ - if(!FFMPEG_MOV) ffmpeg_property_add_string(rd, "video", "flags:loop"); // this preserves compatibility for QT +// ffmpeg_property_add_string(rd, "video", "flags:loop"); // this breaks compatibility for QT ffmpeg_property_add_string(rd, "video", "cmp:chroma"); ffmpeg_property_add_string(rd, "video", "partitions:parti4x4"); ffmpeg_property_add_string(rd, "video", "partitions:partp8x8"); -- cgit v1.2.3 From fedb95da234ea30adab246606533caa6a5e38e4f Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Thu, 16 Feb 2012 13:14:28 +0000 Subject: Tomato: fixed incorrect auto-scale calculation for 2d stabilization --- source/blender/blenkernel/intern/tracking.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source/blender') diff --git a/source/blender/blenkernel/intern/tracking.c b/source/blender/blenkernel/intern/tracking.c index 695ea1dc07a..f089aae578b 100644 --- a/source/blender/blenkernel/intern/tracking.c +++ b/source/blender/blenkernel/intern/tracking.c @@ -2445,8 +2445,8 @@ static void calculate_stabdata(MovieTracking *tracking, int framenr, float width *scale= (stab->scale-1.0f)*stab->scaleinf+1.0f; *angle= 0.0f; - loc[0]= (firstmedian[0]-median[0])*width*(*scale); - loc[1]= (firstmedian[1]-median[1])*height*(*scale); + loc[0]= (firstmedian[0]-median[0])*width; + loc[1]= (firstmedian[1]-median[1])*height; mul_v2_fl(loc, stab->locinf); @@ -2725,7 +2725,7 @@ void BKE_tracking_stabdata_to_mat4(int width, int height, float loc[2], float sc invert_m4_m4(icmat, cmat); size_to_mat4(smat, svec); /* scale matrix */ - add_v2_v2(lmat[3], loc); /* tranlation matrix */ + add_v2_v2(lmat[3], loc); /* translation matrix */ rotate_m4(rmat, 'Z', angle); /* rotation matrix */ /* compose transformation matrix */ -- cgit v1.2.3 From 7274bea74de095e4eb4d7a2bf410f22e1c81654b Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Thu, 16 Feb 2012 13:14:49 +0000 Subject: Tomato: fixed default value for pixel aspect. --- source/blender/makesrna/intern/rna_tracking.c | 1 + 1 file changed, 1 insertion(+) (limited to 'source/blender') diff --git a/source/blender/makesrna/intern/rna_tracking.c b/source/blender/makesrna/intern/rna_tracking.c index ba4e5199f73..2d6a568c79d 100644 --- a/source/blender/makesrna/intern/rna_tracking.c +++ b/source/blender/makesrna/intern/rna_tracking.c @@ -775,6 +775,7 @@ static void rna_def_trackingCamera(BlenderRNA *brna) RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_range(prop, 0.1f, 5000.0f); RNA_def_property_ui_range(prop, 0.1f, 5000.0f, 1, 2); + RNA_def_property_float_default(prop, 1.0f); RNA_def_property_ui_text(prop, "Pixel Aspect Ratio", "Pixel aspect ratio"); RNA_def_property_update(prop, NC_MOVIECLIP|ND_DISPLAY, "rna_tracking_flushUpdate"); } -- cgit v1.2.3 From aa747f588936899bf56fa7142a936eafcd7d822d Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Thu, 16 Feb 2012 13:15:01 +0000 Subject: Tomato: fixed issue when track used for rotation stabilization points to a freed memory after re-tracking this track. --- source/blender/blenkernel/intern/tracking.c | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'source/blender') diff --git a/source/blender/blenkernel/intern/tracking.c b/source/blender/blenkernel/intern/tracking.c index f089aae578b..c9e6ecf6394 100644 --- a/source/blender/blenkernel/intern/tracking.c +++ b/source/blender/blenkernel/intern/tracking.c @@ -726,6 +726,7 @@ static void tracks_map_merge(TracksMap *map, MovieTracking *tracking) { MovieTrackingTrack *track; MovieTrackingTrack *act_track= BKE_tracking_active_track(tracking); + MovieTrackingTrack *rot_track= tracking->stabilization.rot_track; ListBase tracks= {NULL, NULL}, new_tracks= {NULL, NULL}; ListBase *old_tracks; int a; @@ -747,7 +748,7 @@ static void tracks_map_merge(TracksMap *map, MovieTracking *tracking) this is needed to keep names in unique state and it's faster to change names of currently operating tracks (if needed) */ for(a= 0; anum_tracks; a++) { - int replace_sel= 0; + int replace_sel= 0, replace_rot= 0; MovieTrackingTrack *new_track, *old; track= &map->tracks[a]; @@ -766,8 +767,10 @@ static void tracks_map_merge(TracksMap *map, MovieTracking *tracking) /* original track was found, re-use flags and remove this track */ if(cur) { - if(act_track) + if(cur==act_track) replace_sel= 1; + if(cur==rot_track) + replace_rot= 1; track->flag= cur->flag; track->pat_flag= cur->pat_flag; @@ -786,6 +789,9 @@ static void tracks_map_merge(TracksMap *map, MovieTracking *tracking) if(replace_sel) /* update current selection in clip */ tracking->act_track= new_track; + if(replace_rot) /* update track used for rotation stabilization */ + tracking->stabilization.rot_track= new_track; + BLI_addtail(&tracks, new_track); } -- cgit v1.2.3 From 14a92fc3a24735900693617cb1b89bf9918893df Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Thu, 16 Feb 2012 15:03:18 +0000 Subject: Tomato: run aspect correction before stabilizing shot. --- source/blender/blenkernel/BKE_tracking.h | 2 +- source/blender/blenkernel/intern/movieclip.c | 7 ++++++- source/blender/blenkernel/intern/tracking.c | 17 ++++++++++++----- source/blender/editors/space_clip/clip_draw.c | 3 ++- 4 files changed, 21 insertions(+), 8 deletions(-) (limited to 'source/blender') diff --git a/source/blender/blenkernel/BKE_tracking.h b/source/blender/blenkernel/BKE_tracking.h index f720050f59c..ebbba7de7c7 100644 --- a/source/blender/blenkernel/BKE_tracking.h +++ b/source/blender/blenkernel/BKE_tracking.h @@ -138,7 +138,7 @@ void BKE_tracking_detect_fast(struct MovieTracking *tracking, struct ListBase *t /* 2D stabilization */ void BKE_tracking_stabilization_data(struct MovieTracking *tracking, int framenr, int width, int height, float loc[2], float *scale, float *angle); struct ImBuf *BKE_tracking_stabilize(struct MovieTracking *tracking, int framenr, struct ImBuf *ibuf, float loc[2], float *scale, float *angle); -void BKE_tracking_stabdata_to_mat4(int width, int height, float loc[2], float scale, float angle, float mat[4][4]); +void BKE_tracking_stabdata_to_mat4(int width, int height, float aspect, float loc[2], float scale, float angle, float mat[4][4]); /* Distortion/Undistortion */ void BKE_tracking_apply_intrinsics(struct MovieTracking *tracking, float co[2], float nco[2]); diff --git a/source/blender/blenkernel/intern/movieclip.c b/source/blender/blenkernel/intern/movieclip.c index c93c03a4424..ce0d169557d 100644 --- a/source/blender/blenkernel/intern/movieclip.c +++ b/source/blender/blenkernel/intern/movieclip.c @@ -279,7 +279,7 @@ typedef struct MovieClipCache { int framenr; int postprocess_flag; - float loc[2], scale, angle; + float loc[2], scale, angle, aspect; int proxy; short render_flag; } stabilized; @@ -727,6 +727,10 @@ static ImBuf *get_stable_cached_frame(MovieClip *clip, MovieClipUser *user, int if(cache->stabilized.postprocess_flag != postprocess_flag) return NULL; + /* stabilization also depends on pixel aspect ratio */ + if(cache->stabilized.aspect != clip->tracking.camera.pixel_aspect) + return NULL; + stableibuf = cache->stabilized.ibuf; BKE_tracking_stabilization_data(&clip->tracking, framenr, stableibuf->x, stableibuf->y, tloc, &tscale, &tangle); @@ -763,6 +767,7 @@ static ImBuf *put_stabilized_frame_to_cache(MovieClip *clip, MovieClipUser *user cache->stabilized.scale = tscale; cache->stabilized.angle = tangle; cache->stabilized.framenr = framenr; + cache->stabilized.aspect = clip->tracking.camera.pixel_aspect; if(clip->flag&MCLIP_USE_PROXY) { cache->stabilized.proxy= rendersize_to_proxy(user, clip->flag); diff --git a/source/blender/blenkernel/intern/tracking.c b/source/blender/blenkernel/intern/tracking.c index c9e6ecf6394..04766910df6 100644 --- a/source/blender/blenkernel/intern/tracking.c +++ b/source/blender/blenkernel/intern/tracking.c @@ -2485,6 +2485,7 @@ static float stabilization_auto_scale_factor(MovieTracking *tracking, int width, { float firstmedian[2]; MovieTrackingStabilization *stab= &tracking->stabilization; + float aspect= tracking->camera.pixel_aspect; if(stab->ok) return stab->scale; @@ -2535,7 +2536,7 @@ static float stabilization_auto_scale_factor(MovieTracking *tracking, int width, float mat[4][4]; float points[4][2]={{0.0f, 0.0f}, {0.0f, height}, {width, height}, {width, 0.0f}}; - BKE_tracking_stabdata_to_mat4(width, height, loc, scale, angle, mat); + BKE_tracking_stabdata_to_mat4(width, height, aspect, loc, scale, angle, mat); for(i= 0; i<4; i++) { int j; @@ -2650,6 +2651,7 @@ ImBuf *BKE_tracking_stabilize(MovieTracking *tracking, int framenr, ImBuf *ibuf, MovieTrackingStabilization *stab= &tracking->stabilization; ImBuf *tmpibuf; float width= ibuf->x, height= ibuf->y; + float aspect= tracking->camera.pixel_aspect; if(loc) copy_v2_v2(tloc, loc); if(scale) tscale= *scale; @@ -2688,7 +2690,7 @@ ImBuf *BKE_tracking_stabilize(MovieTracking *tracking, int framenr, ImBuf *ibuf, float mat[4][4]; int i, j; - BKE_tracking_stabdata_to_mat4(ibuf->x, ibuf->y, tloc, tscale, tangle, mat); + BKE_tracking_stabdata_to_mat4(ibuf->x, ibuf->y, aspect, tloc, tscale, tangle, mat); invert_m4(mat); for(j=0; jy; j++) { @@ -2715,15 +2717,20 @@ ImBuf *BKE_tracking_stabilize(MovieTracking *tracking, int framenr, ImBuf *ibuf, return tmpibuf; } -void BKE_tracking_stabdata_to_mat4(int width, int height, float loc[2], float scale, float angle, float mat[4][4]) +void BKE_tracking_stabdata_to_mat4(int width, int height, float aspect, float loc[2], float scale, float angle, float mat[4][4]) { - float lmat[4][4], rmat[4][4], smat[4][4], cmat[4][4], icmat[4][4]; + float lmat[4][4], rmat[4][4], smat[4][4], cmat[4][4], icmat[4][4], amat[4][4], iamat[4][4]; float svec[3]= {scale, scale, scale}; unit_m4(rmat); unit_m4(lmat); unit_m4(smat); unit_m4(cmat); + unit_m4(amat); + + /* aspect ratio correction matrix */ + amat[0][0] = 1.0f / aspect; + invert_m4_m4(iamat, amat); /* image center as rotation center */ cmat[3][0]= (float)width/2.0f; @@ -2735,7 +2742,7 @@ void BKE_tracking_stabdata_to_mat4(int width, int height, float loc[2], float sc rotate_m4(rmat, 'Z', angle); /* rotation matrix */ /* compose transformation matrix */ - mul_serie_m4(mat, lmat, cmat, rmat, smat, icmat, NULL, NULL, NULL); + mul_serie_m4(mat, amat, lmat, cmat, rmat, smat, icmat, iamat, NULL); } MovieDistortion *BKE_tracking_distortion_create(void) diff --git a/source/blender/editors/space_clip/clip_draw.c b/source/blender/editors/space_clip/clip_draw.c index 43068c38116..d010ca879fb 100644 --- a/source/blender/editors/space_clip/clip_draw.c +++ b/source/blender/editors/space_clip/clip_draw.c @@ -1289,13 +1289,14 @@ void clip_draw_main(SpaceClip *sc, ARegion *ar, Scene *scene) if(ibuf) { float loc[2]; + float aspect= clip->tracking.camera.pixel_aspect; if(width != ibuf->x) mul_v2_v2fl(loc, sc->loc, (float)width / ibuf->x); else copy_v2_v2(loc, sc->loc); - BKE_tracking_stabdata_to_mat4(width, height, loc, sc->scale, sc->angle, sc->stabmat); + BKE_tracking_stabdata_to_mat4(width, height, aspect, loc, sc->scale, sc->angle, sc->stabmat); unit_m4(smat); smat[0][0]= 1.0f/width; -- cgit v1.2.3 From 62d09c9103f07c86c484d2a044a8884c337a92a3 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Thu, 16 Feb 2012 15:03:37 +0000 Subject: Tomato: configurable filter type for 2d stabilization --- source/blender/blenkernel/intern/movieclip.c | 12 +++++++++--- source/blender/blenkernel/intern/tracking.c | 13 ++++++++++--- source/blender/makesdna/DNA_tracking_types.h | 9 ++++++++- source/blender/makesrna/intern/rna_tracking.c | 13 +++++++++++++ 4 files changed, 40 insertions(+), 7 deletions(-) (limited to 'source/blender') diff --git a/source/blender/blenkernel/intern/movieclip.c b/source/blender/blenkernel/intern/movieclip.c index ce0d169557d..69b32ce46f8 100644 --- a/source/blender/blenkernel/intern/movieclip.c +++ b/source/blender/blenkernel/intern/movieclip.c @@ -280,7 +280,7 @@ typedef struct MovieClipCache { int postprocess_flag; float loc[2], scale, angle, aspect; - int proxy; + int proxy, filter; short render_flag; } stabilized; } MovieClipCache; @@ -706,6 +706,7 @@ ImBuf *BKE_movieclip_get_postprocessed_ibuf(MovieClip *clip, MovieClipUser *user static ImBuf *get_stable_cached_frame(MovieClip *clip, MovieClipUser *user, int framenr, int postprocess_flag) { MovieClipCache *cache = clip->cache; + MovieTracking *tracking = &clip->tracking; ImBuf *stableibuf; float tloc[2], tscale, tangle; short proxy = IMB_PROXY_NONE; @@ -728,7 +729,10 @@ static ImBuf *get_stable_cached_frame(MovieClip *clip, MovieClipUser *user, int return NULL; /* stabilization also depends on pixel aspect ratio */ - if(cache->stabilized.aspect != clip->tracking.camera.pixel_aspect) + if(cache->stabilized.aspect != tracking->camera.pixel_aspect) + return NULL; + + if(cache->stabilized.filter != tracking->stabilization.filter) return NULL; stableibuf = cache->stabilized.ibuf; @@ -752,6 +756,7 @@ static ImBuf *put_stabilized_frame_to_cache(MovieClip *clip, MovieClipUser *user int framenr, int postprocess_flag) { MovieClipCache *cache = clip->cache; + MovieTracking *tracking = &clip->tracking; ImBuf *stableibuf; float tloc[2], tscale, tangle; @@ -767,7 +772,8 @@ static ImBuf *put_stabilized_frame_to_cache(MovieClip *clip, MovieClipUser *user cache->stabilized.scale = tscale; cache->stabilized.angle = tangle; cache->stabilized.framenr = framenr; - cache->stabilized.aspect = clip->tracking.camera.pixel_aspect; + cache->stabilized.aspect = tracking->camera.pixel_aspect; + cache->stabilized.filter = tracking->stabilization.filter; if(clip->flag&MCLIP_USE_PROXY) { cache->stabilized.proxy= rendersize_to_proxy(user, clip->flag); diff --git a/source/blender/blenkernel/intern/tracking.c b/source/blender/blenkernel/intern/tracking.c index 04766910df6..7461e057df5 100644 --- a/source/blender/blenkernel/intern/tracking.c +++ b/source/blender/blenkernel/intern/tracking.c @@ -2688,19 +2688,26 @@ ImBuf *BKE_tracking_stabilize(MovieTracking *tracking, int framenr, ImBuf *ibuf, IMB_rectcpy(tmpibuf, ibuf, tloc[0]-(tscale-1.0f)*width/2.0f, tloc[1]-(tscale-1.0f)*height/2.0f, 0, 0, ibuf->x, ibuf->y); } else { float mat[4][4]; - int i, j; + int i, j, filter= tracking->stabilization.filter; + void (*interpolation) (struct ImBuf*, struct ImBuf*, float, float, int, int) = NULL; BKE_tracking_stabdata_to_mat4(ibuf->x, ibuf->y, aspect, tloc, tscale, tangle, mat); invert_m4(mat); + if(filter == TRACKING_FILTER_NEAREAST) + interpolation = neareast_interpolation; + else if(filter == TRACKING_FILTER_BILINEAR) + interpolation = bilinear_interpolation; + else if(filter == TRACKING_FILTER_BICUBIC) + interpolation = bicubic_interpolation; + for(j=0; jy; j++) { for(i=0; ix;i++) { float vec[3]= {i, j, 0}; mul_v3_m4v3(vec, mat, vec); - /* TODO: add selector for interpolation method */ - neareast_interpolation(ibuf, tmpibuf, vec[0], vec[1], i, j); + interpolation(ibuf, tmpibuf, vec[0], vec[1], i, j); } } } diff --git a/source/blender/makesdna/DNA_tracking_types.h b/source/blender/makesdna/DNA_tracking_types.h index 1b41131c07d..e81344d7d51 100644 --- a/source/blender/makesdna/DNA_tracking_types.h +++ b/source/blender/makesdna/DNA_tracking_types.h @@ -159,8 +159,10 @@ typedef struct MovieTrackingStabilization { float locinf, scaleinf, rotinf; /* influence on location, scale and rotation */ + int filter; /* filter used for pixel interpolation */ + /* some pre-computing run-time variables */ - int ok, pad; /* are precomputed values and scaled buf relevant? */ + int ok; /* are precomputed values and scaled buf relevant? */ float scale; /* autoscale factor */ struct ImBuf *scaleibuf; /* currently scaled ibuf */ @@ -258,6 +260,11 @@ enum { #define TRACKING_AUTOSCALE (1<<1) #define TRACKING_STABILIZE_ROTATION (1<<2) +/* MovieTrackingStrabilization->filter */ +#define TRACKING_FILTER_NEAREAST 0 +#define TRACKING_FILTER_BILINEAR 1 +#define TRACKING_FILTER_BICUBIC 2 + /* MovieTrackingReconstruction->flag */ #define TRACKING_RECONSTRUCTED (1<<0) diff --git a/source/blender/makesrna/intern/rna_tracking.c b/source/blender/makesrna/intern/rna_tracking.c index 2d6a568c79d..e4ce7304577 100644 --- a/source/blender/makesrna/intern/rna_tracking.c +++ b/source/blender/makesrna/intern/rna_tracking.c @@ -1064,6 +1064,12 @@ static void rna_def_trackingStabilization(BlenderRNA *brna) StructRNA *srna; PropertyRNA *prop; + static EnumPropertyItem filter_items[] = { + {TRACKING_FILTER_NEAREAST, "NEAREST", 0, "Nearest", ""}, + {TRACKING_FILTER_BILINEAR, "BILINEAR", 0, "Bilinear", ""}, + {TRACKING_FILTER_BICUBIC, "BICUBIC", 0, "Bicubic", ""}, + {0, NULL, 0, NULL, NULL}}; + srna= RNA_def_struct(brna, "MovieTrackingStabilization", NULL); RNA_def_struct_path_func(srna, "rna_trackingStabilization_path"); RNA_def_struct_ui_text(srna, "Movie tracking stabilization data", "Match-moving stabilization data for tracking"); @@ -1137,6 +1143,13 @@ static void rna_def_trackingStabilization(BlenderRNA *brna) RNA_def_property_range(prop, 0.0f, 1.0f); RNA_def_property_ui_text(prop, "Rotation Influence", "Influence of stabilization algorithm on footage rotation"); RNA_def_property_update(prop, NC_MOVIECLIP|ND_DISPLAY, "rna_tracking_flushUpdate"); + + /* filter */ + prop = RNA_def_property(srna, "filter_type", PROP_ENUM, PROP_NONE); + RNA_def_property_enum_sdna(prop, NULL, "filter"); + RNA_def_property_enum_items(prop, filter_items); + RNA_def_property_ui_text(prop, "Filter", "Method to use to filter stabilization"); + RNA_def_property_update(prop, NC_MOVIECLIP|ND_DISPLAY, "rna_tracking_flushUpdate"); } static void rna_def_reconstructedCamera(BlenderRNA *brna) -- cgit v1.2.3 From ec7498ce0bbaab14db49d1b45efbd528d443c0fb Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Thu, 16 Feb 2012 15:53:30 +0000 Subject: Reverting changes in commit r43458. That was intended change to clear PROP_TRANSLATE flag from bl_label property of operators, panels and menus (see rev40570) If this flag leads to another issues it should be fixed in another way. This fixes #30210: International Font Problem --- source/blender/makesrna/intern/rna_ui.c | 10 ++++++++-- source/blender/makesrna/intern/rna_wm.c | 3 +++ 2 files changed, 11 insertions(+), 2 deletions(-) (limited to 'source/blender') diff --git a/source/blender/makesrna/intern/rna_ui.c b/source/blender/makesrna/intern/rna_ui.c index 8e3178a6298..1bfed372626 100644 --- a/source/blender/makesrna/intern/rna_ui.c +++ b/source/blender/makesrna/intern/rna_ui.c @@ -698,7 +698,10 @@ static void rna_def_panel(BlenderRNA *brna) "name of the class used to define the panel. For example, if the " "class name is \"OBJECT_PT_hello\", and bl_idname is not set by the " "script, then bl_idname = \"OBJECT_PT_hello\""); - + + /* panel's label indeed doesn't need PROP_TRANSLATE flag: translation of label happens in runtime + * when drawing panel and having this flag set will make runtime switching of language much more tricky + * because label will be stored translated */ prop= RNA_def_property(srna, "bl_label", PROP_STRING, PROP_NONE); RNA_def_property_string_sdna(prop, NULL, "type->label"); RNA_def_property_flag(prop, PROP_REGISTER); @@ -823,7 +826,10 @@ static void rna_def_menu(BlenderRNA *brna) "class name is \"OBJECT_MT_hello\", and bl_idname is not set by the " "script, then bl_idname = \"OBJECT_MT_hello\")"); - prop= RNA_def_property(srna, "bl_label", PROP_STRING, PROP_TRANSLATE); + /* menu's label indeed doesn't need PROP_TRANSLATE flag: translation of label happens in runtime + * when drawing panel and having this flag set will make runtime switching of language much more tricky + * because label will be stored translated */ + prop= RNA_def_property(srna, "bl_label", PROP_STRING, PROP_NONE); RNA_def_property_string_sdna(prop, NULL, "type->label"); RNA_def_property_flag(prop, PROP_REGISTER); RNA_def_property_ui_text(prop, "Label", "The menu label"); diff --git a/source/blender/makesrna/intern/rna_wm.c b/source/blender/makesrna/intern/rna_wm.c index 4f8f301dcbd..41941334e4c 100644 --- a/source/blender/makesrna/intern/rna_wm.c +++ b/source/blender/makesrna/intern/rna_wm.c @@ -1245,6 +1245,9 @@ static void rna_def_operator(BlenderRNA *brna) RNA_def_property_flag(prop, PROP_REGISTER|PROP_NEVER_CLAMP); RNA_def_struct_name_property(srna, prop); + /* operator's label indeed doesn't need PROP_TRANSLATE flag: translation of label happens in runtime + * when drawing panel and having this flag set will make runtime switching of language much more tricky + * because label will be stored translated */ prop= RNA_def_property(srna, "bl_label", PROP_STRING, PROP_NONE); RNA_def_property_string_sdna(prop, NULL, "type->name"); RNA_def_property_string_maxlength(prop, RNA_DYN_DESCR_MAX); /* else it uses the pointer size! */ -- cgit v1.2.3 From 251822126c5217e238a84818d10cde1da227c5ca Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Thu, 16 Feb 2012 15:53:44 +0000 Subject: Clear PROP_TRANSLATE flag for Macro Operator's bl_label as well. --- source/blender/makesrna/intern/rna_wm.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'source/blender') diff --git a/source/blender/makesrna/intern/rna_wm.c b/source/blender/makesrna/intern/rna_wm.c index 41941334e4c..7e71d138513 100644 --- a/source/blender/makesrna/intern/rna_wm.c +++ b/source/blender/makesrna/intern/rna_wm.c @@ -1309,7 +1309,10 @@ static void rna_def_macro_operator(BlenderRNA *brna) RNA_def_property_flag(prop, PROP_REGISTER|PROP_NEVER_CLAMP); RNA_def_struct_name_property(srna, prop); - prop= RNA_def_property(srna, "bl_label", PROP_STRING, PROP_TRANSLATE); + /* menu's label indeed doesn't need PROP_TRANSLATE flag: translation of label happens in runtime + * when drawing panel and having this flag set will make runtime switching of language much more tricky + * because label will be stored translated */ + prop= RNA_def_property(srna, "bl_label", PROP_STRING, PROP_PROP); RNA_def_property_string_sdna(prop, NULL, "type->name"); RNA_def_property_string_maxlength(prop, RNA_DYN_DESCR_MAX); /* else it uses the pointer size! */ RNA_def_property_string_funcs(prop, NULL, NULL, "rna_Operator_bl_label_set"); -- cgit v1.2.3 From eb44d1d0e85eaf8914694c53bedc177e096e55dc Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Thu, 16 Feb 2012 15:55:23 +0000 Subject: Typo in previous own commit. --- source/blender/makesrna/intern/rna_wm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender') diff --git a/source/blender/makesrna/intern/rna_wm.c b/source/blender/makesrna/intern/rna_wm.c index 7e71d138513..07c8552008a 100644 --- a/source/blender/makesrna/intern/rna_wm.c +++ b/source/blender/makesrna/intern/rna_wm.c @@ -1312,7 +1312,7 @@ static void rna_def_macro_operator(BlenderRNA *brna) /* menu's label indeed doesn't need PROP_TRANSLATE flag: translation of label happens in runtime * when drawing panel and having this flag set will make runtime switching of language much more tricky * because label will be stored translated */ - prop= RNA_def_property(srna, "bl_label", PROP_STRING, PROP_PROP); + prop= RNA_def_property(srna, "bl_label", PROP_STRING, PROP_NONE); RNA_def_property_string_sdna(prop, NULL, "type->name"); RNA_def_property_string_maxlength(prop, RNA_DYN_DESCR_MAX); /* else it uses the pointer size! */ RNA_def_property_string_funcs(prop, NULL, NULL, "rna_Operator_bl_label_set"); -- cgit v1.2.3 From a56eeb70247e55ac15239c70b8ade4c3567b798f Mon Sep 17 00:00:00 2001 From: Thomas Dinges Date: Thu, 16 Feb 2012 20:04:33 +0000 Subject: Release Cycle for 2.63: * BCon1, alpha. --- source/blender/blenkernel/BKE_blender.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender') diff --git a/source/blender/blenkernel/BKE_blender.h b/source/blender/blenkernel/BKE_blender.h index c5a5c134cdf..f735af8b24c 100644 --- a/source/blender/blenkernel/BKE_blender.h +++ b/source/blender/blenkernel/BKE_blender.h @@ -51,7 +51,7 @@ extern "C" { /* can be left blank, otherwise a,b,c... etc with no quotes */ #define BLENDER_VERSION_CHAR /* alpha/beta/rc/release, docs use this */ -#define BLENDER_VERSION_CYCLE release +#define BLENDER_VERSION_CYCLE alpha extern char versionstr[]; /* from blender.c */ -- cgit v1.2.3 From 283ab431a50e89643eb496c934584e29e118b812 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Fri, 17 Feb 2012 06:59:32 +0000 Subject: Cleanup of 3D viewport header in painting modes: - Hide Manipulate center points in sculpt and particle edit modes - Hide 3D manipulators and orientation from sculpt mode - Hide snap buttons in sculpt, weight, texture, vertex and particle painting modes All this options weren't make sense in this modes and might only confuse user. This will resolve issue #30180: 3D View header buttons and modes --- .../blender/editors/space_view3d/view3d_header.c | 30 ++++++++++++---------- 1 file changed, 17 insertions(+), 13 deletions(-) (limited to 'source/blender') diff --git a/source/blender/editors/space_view3d/view3d_header.c b/source/blender/editors/space_view3d/view3d_header.c index e9b339c0baf..8acfd43f3ed 100644 --- a/source/blender/editors/space_view3d/view3d_header.c +++ b/source/blender/editors/space_view3d/view3d_header.c @@ -478,6 +478,7 @@ void uiTemplateHeader3D(uiLayout *layout, struct bContext *C) uiBut *but; uiLayout *row; const float dpi_fac= UI_DPI_FAC; + int is_paint = 0; RNA_pointer_create(&screen->id, &RNA_SpaceView3D, v3d, &v3dptr); RNA_pointer_create(&scene->id, &RNA_ToolSettings, ts, &toolsptr); @@ -492,6 +493,8 @@ void uiTemplateHeader3D(uiLayout *layout, struct bContext *C) /* mode */ if(ob) { v3d->modeselect = ob->mode; + is_paint = ELEM5(ob->mode, OB_MODE_SCULPT, OB_MODE_VERTEX_PAINT, OB_MODE_WEIGHT_PAINT, + OB_MODE_TEXTURE_PAINT, OB_MODE_PARTICLE_EDIT); } else { v3d->modeselect = OB_MODE_OBJECT; @@ -504,20 +507,21 @@ void uiTemplateHeader3D(uiLayout *layout, struct bContext *C) /* Draw type */ uiItemR(layout, &v3dptr, "viewport_shade", UI_ITEM_R_ICON_ONLY, "", ICON_NONE); - if (obedit==NULL && ((ob && ob->mode & (OB_MODE_VERTEX_PAINT|OB_MODE_WEIGHT_PAINT|OB_MODE_TEXTURE_PAINT)))) { - /* Manipulators aren't used in weight paint mode */ - - PointerRNA meshptr; + if (obedit==NULL && is_paint) { + /* Manipulators aren't used in paint modes */ + if (!ELEM(ob->mode, OB_MODE_SCULPT, OB_MODE_PARTICLE_EDIT)) { + /* masks aren't used for sculpt and particle painting */ + PointerRNA meshptr; - RNA_pointer_create(&ob->id, &RNA_Mesh, ob->data, &meshptr); - if(ob->mode & (OB_MODE_TEXTURE_PAINT|OB_MODE_VERTEX_PAINT)) { - uiItemR(layout, &meshptr, "use_paint_mask", UI_ITEM_R_ICON_ONLY, "", ICON_NONE); - } - else { - - row= uiLayoutRow(layout, 1); - uiItemR(row, &meshptr, "use_paint_mask", UI_ITEM_R_ICON_ONLY, "", ICON_NONE); - uiItemR(row, &meshptr, "use_paint_mask_vertex", UI_ITEM_R_ICON_ONLY, "", ICON_NONE); + RNA_pointer_create(&ob->id, &RNA_Mesh, ob->data, &meshptr); + if(ob->mode & (OB_MODE_TEXTURE_PAINT|OB_MODE_VERTEX_PAINT)) { + uiItemR(layout, &meshptr, "use_paint_mask", UI_ITEM_R_ICON_ONLY, "", ICON_NONE); + } + else { + row= uiLayoutRow(layout, 1); + uiItemR(row, &meshptr, "use_paint_mask", UI_ITEM_R_ICON_ONLY, "", ICON_NONE); + uiItemR(row, &meshptr, "use_paint_mask_vertex", UI_ITEM_R_ICON_ONLY, "", ICON_NONE); + } } } else { const char *str_menu; -- cgit v1.2.3 From 5fd24dc3f2f4ad440a7032325fad999b32726c4e Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Fri, 17 Feb 2012 07:32:18 +0000 Subject: Build proxy from meta and image strips used resolution used for display, not set by building job which leads to unusable proxies. This change should resolve issues reported in #30229: Sequencer Meta strip Proxy Fails and probably #30196 will work nicer too. --- source/blender/blenkernel/intern/sequencer.c | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) (limited to 'source/blender') diff --git a/source/blender/blenkernel/intern/sequencer.c b/source/blender/blenkernel/intern/sequencer.c index 0790896da0d..b2188754503 100644 --- a/source/blender/blenkernel/intern/sequencer.c +++ b/source/blender/blenkernel/intern/sequencer.c @@ -1192,11 +1192,10 @@ static void seq_open_anim_file(Sequence * seq) } -static int seq_proxy_get_fname(SeqRenderData context, Sequence * seq, int cfra, char * name) +static int seq_proxy_get_fname(Sequence * seq, int cfra, int render_size, char * name) { int frameno; char dir[PROXY_MAXFILE]; - int render_size = context.preview_render_size; if (!seq->strip->proxy) { return FALSE; @@ -1226,22 +1225,17 @@ static int seq_proxy_get_fname(SeqRenderData context, Sequence * seq, int cfra, return TRUE; } - /* dirty hack to distinguish 100% render size from PROXY_100 */ - if (render_size == 99) { - render_size = 100; - } - /* generate a separate proxy directory for each preview size */ if (seq->type == SEQ_IMAGE) { BLI_snprintf(name, PROXY_MAXFILE, "%s/images/%d/%s_proxy", dir, - context.preview_render_size, + render_size, give_stripelem(seq, cfra)->name); frameno = 1; } else { frameno = (int) give_stripelem_index(seq, cfra) + seq->anim_startofs; BLI_snprintf(name, PROXY_MAXFILE, "%s/proxy_misc/%d/####", dir, - context.preview_render_size); + render_size); } BLI_path_abs(name, G.main->name); @@ -1258,6 +1252,12 @@ static struct ImBuf * seq_proxy_fetch(SeqRenderData context, Sequence * seq, int IMB_Proxy_Size psize = seq_rendersize_to_proxysize( context.preview_render_size); int size_flags; + int render_size = context.preview_render_size; + + /* dirty hack to distinguish 100% render size from PROXY_100 */ + if (render_size == 99) { + render_size = 100; + } if (!(seq->flag & SEQ_USE_PROXY)) { return NULL; @@ -1273,7 +1273,7 @@ static struct ImBuf * seq_proxy_fetch(SeqRenderData context, Sequence * seq, int if (seq->flag & SEQ_USE_PROXY_CUSTOM_FILE) { int frameno = (int) give_stripelem_index(seq, cfra) + seq->anim_startofs; if (seq->strip->proxy->anim == NULL) { - if (seq_proxy_get_fname(context, seq, cfra, name)==0) { + if (seq_proxy_get_fname(seq, cfra, render_size, name)==0) { return NULL; } @@ -1292,7 +1292,7 @@ static struct ImBuf * seq_proxy_fetch(SeqRenderData context, Sequence * seq, int IMB_TC_NONE, IMB_PROXY_NONE); } - if (seq_proxy_get_fname(context, seq, cfra, name) == 0) { + if (seq_proxy_get_fname(seq, cfra, render_size, name) == 0) { return NULL; } @@ -1313,7 +1313,7 @@ static void seq_proxy_build_frame(SeqRenderData context, int ok; struct ImBuf * ibuf; - if (!seq_proxy_get_fname(context, seq, cfra, name)) { + if (!seq_proxy_get_fname(seq, cfra, proxy_render_size, name)) { return; } -- cgit v1.2.3 From 9d0b7b168fdd69108f095cefed6c3feb0e327ea2 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Fri, 17 Feb 2012 08:13:45 +0000 Subject: Camera tracking: animation datablock for MovieClip Added AnimData block to MovieClip datablock which allows to animate different properties in clip. Currently supports animation of stabilization influence only. -- svn merge -r44129:44130 ^/branches/soc-2011-tomato --- source/blender/blenkernel/intern/anim_sys.c | 4 ++ source/blender/blenkernel/intern/movieclip.c | 3 ++ source/blender/blenloader/intern/readfile.c | 5 +++ source/blender/blenloader/intern/writefile.c | 3 ++ source/blender/makesdna/DNA_movieclip_types.h | 2 + source/blender/makesrna/intern/rna_movieclip.c | 16 ++++++++ source/blender/makesrna/intern/rna_tracking.c | 56 ++++++++++++++++++++++++++ 7 files changed, 89 insertions(+) (limited to 'source/blender') diff --git a/source/blender/blenkernel/intern/anim_sys.c b/source/blender/blenkernel/intern/anim_sys.c index b32421a6b3d..9ae3ad95d5c 100644 --- a/source/blender/blenkernel/intern/anim_sys.c +++ b/source/blender/blenkernel/intern/anim_sys.c @@ -88,6 +88,7 @@ short id_type_can_have_animdata (ID *id) case ID_LA: case ID_CA: case ID_WO: case ID_SPK: case ID_SCE: + case ID_MC: { return 1; } @@ -2335,6 +2336,9 @@ void BKE_animsys_evaluate_all_animation (Main *main, Scene *scene, float ctime) /* speakers */ EVAL_ANIM_IDS(main->speaker.first, ADT_RECALC_ANIM); + /* movie clips */ + EVAL_ANIM_IDS(main->movieclip.first, ADT_RECALC_ANIM); + /* objects */ /* ADT_RECALC_ANIM doesn't need to be supplied here, since object AnimData gets * this tagged by Depsgraph on framechange. This optimisation means that objects diff --git a/source/blender/blenkernel/intern/movieclip.c b/source/blender/blenkernel/intern/movieclip.c index c90faa7e0ca..03fe18e4bd8 100644 --- a/source/blender/blenkernel/intern/movieclip.c +++ b/source/blender/blenkernel/intern/movieclip.c @@ -64,6 +64,7 @@ #include "BLI_mempool.h" #include "BLI_threads.h" +#include "BKE_animsys.h" #include "BKE_constraint.h" #include "BKE_library.h" #include "BKE_global.h" @@ -889,6 +890,8 @@ static void free_buffers(MovieClip *clip) IMB_free_anim(clip->anim); clip->anim= FALSE; } + + BKE_free_animdata((ID *) clip); } void BKE_movieclip_reload(MovieClip *clip) diff --git a/source/blender/blenloader/intern/readfile.c b/source/blender/blenloader/intern/readfile.c index ff737339835..fe80dd7bd90 100644 --- a/source/blender/blenloader/intern/readfile.c +++ b/source/blender/blenloader/intern/readfile.c @@ -6050,6 +6050,8 @@ static void direct_link_movieclip(FileData *fd, MovieClip *clip) MovieTracking *tracking= &clip->tracking; MovieTrackingObject *object; + clip->adt= newdataadr(fd, clip->adt); + if(fd->movieclipmap) clip->cache= newmclipadr(fd, clip->cache); else clip->cache= NULL; @@ -6087,6 +6089,9 @@ static void lib_link_movieclip(FileData *fd, Main *main) clip= main->movieclip.first; while(clip) { if(clip->id.flag & LIB_NEEDLINK) { + if (clip->adt) + lib_link_animdata(fd, &clip->id, clip->adt); + clip->gpd= newlibadr_us(fd, clip->id.lib, clip->gpd); clip->id.flag -= LIB_NEEDLINK; diff --git a/source/blender/blenloader/intern/writefile.c b/source/blender/blenloader/intern/writefile.c index ae4bc936193..e221f261d55 100644 --- a/source/blender/blenloader/intern/writefile.c +++ b/source/blender/blenloader/intern/writefile.c @@ -2564,6 +2564,9 @@ static void write_movieclips(WriteData *wd, ListBase *idbase) MovieTrackingObject *object; writestruct(wd, ID_MC, "MovieClip", 1, clip); + if(clip->adt) + write_animdata(wd, clip->adt); + write_movieTracks(wd, &tracking->tracks); write_movieReconstruction(wd, &tracking->reconstruction); diff --git a/source/blender/makesdna/DNA_movieclip_types.h b/source/blender/makesdna/DNA_movieclip_types.h index 80728cd9817..71029293d09 100644 --- a/source/blender/makesdna/DNA_movieclip_types.h +++ b/source/blender/makesdna/DNA_movieclip_types.h @@ -39,6 +39,7 @@ #include "DNA_tracking_types.h" struct anim; +struct AnimData; struct bGPdata; struct ImBuf; struct MovieClipProxy; @@ -61,6 +62,7 @@ typedef struct MovieClipProxy { typedef struct MovieClip { ID id; + struct AnimData *adt; /* animation data (must be immediately after id for utilities to use it) */ char name[1024]; /* file path, 1024 = FILE_MAX */ diff --git a/source/blender/makesrna/intern/rna_movieclip.c b/source/blender/makesrna/intern/rna_movieclip.c index 1d79040c4eb..a640f996b1a 100644 --- a/source/blender/makesrna/intern/rna_movieclip.c +++ b/source/blender/makesrna/intern/rna_movieclip.c @@ -88,57 +88,70 @@ static void rna_def_movieclip_proxy(BlenderRNA *brna) /* build proxy sized */ prop= RNA_def_property(srna, "build_25", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_sdna(prop, NULL, "build_size_flag", MCLIP_PROXY_SIZE_25); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_ui_text(prop, "25%", "Build proxy resolution 25% of the original footage dimension"); prop= RNA_def_property(srna, "build_50", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_sdna(prop, NULL, "build_size_flag", MCLIP_PROXY_SIZE_50); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_ui_text(prop, "50%", "Build proxy resolution 50% of the original footage dimension"); prop= RNA_def_property(srna, "build_75", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_sdna(prop, NULL, "build_size_flag", MCLIP_PROXY_SIZE_75); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_ui_text(prop, "75%", "Build proxy resolution 75% of the original footage dimension"); prop= RNA_def_property(srna, "build_100", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_sdna(prop, NULL, "build_size_flag", MCLIP_PROXY_SIZE_100); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_ui_text(prop, "100%", "Build proxy resolution 100% of the original footage dimension"); prop= RNA_def_property(srna, "build_undistorted_25", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_sdna(prop, NULL, "build_size_flag", MCLIP_PROXY_UNDISTORTED_SIZE_25); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_ui_text(prop, "25%", "Build proxy resolution 25% of the original undistorted footage dimension"); prop= RNA_def_property(srna, "build_undistorted_50", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_sdna(prop, NULL, "build_size_flag", MCLIP_PROXY_UNDISTORTED_SIZE_50); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_ui_text(prop, "50%", "Build proxy resolution 50% of the original undistorted footage dimension"); prop= RNA_def_property(srna, "build_undistorted_75", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_sdna(prop, NULL, "build_size_flag", MCLIP_PROXY_UNDISTORTED_SIZE_75); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_ui_text(prop, "75%", "Build proxy resolution 75% of the original undistorted footage dimension"); prop= RNA_def_property(srna, "build_undistorted_100", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_sdna(prop, NULL, "build_size_flag", MCLIP_PROXY_UNDISTORTED_SIZE_100); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_ui_text(prop, "100%", "Build proxy resolution 100% of the original undistorted footage dimension"); /* build timecodes */ prop= RNA_def_property(srna, "build_record_run", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_sdna(prop, NULL, "build_tc_flag", IMB_TC_RECORD_RUN); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_ui_text(prop, "Rec Run", "Build record run time code index"); prop= RNA_def_property(srna, "build_free_run", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_sdna(prop, NULL, "build_tc_flag", IMB_TC_FREE_RUN); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_ui_text(prop, "Free Run", "Build free run time code index"); prop= RNA_def_property(srna, "build_free_run_rec_date", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_sdna(prop, NULL, "build_tc_flag", IMB_TC_INTERPOLATED_REC_DATE_FREE_RUN); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_ui_text(prop, "Free Run (Rec Date)", "Build free run time code index using Record Date/Time"); /* quality of proxied image */ prop= RNA_def_property(srna, "quality", PROP_INT, PROP_UNSIGNED); RNA_def_property_int_sdna(prop, NULL, "quality"); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_ui_text(prop, "Quality", "JPEG quality of proxy images"); RNA_def_property_ui_range(prop, 1, 100, 1, 0); prop= RNA_def_property(srna, "timecode", PROP_ENUM, PROP_NONE); RNA_def_property_enum_sdna(prop, NULL, "tc"); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_enum_items(prop, clip_tc_items); RNA_def_property_ui_text(prop, "Timecode", ""); RNA_def_property_update(prop, NC_MOVIECLIP|ND_DISPLAY, NULL); @@ -146,6 +159,7 @@ static void rna_def_movieclip_proxy(BlenderRNA *brna) /* directory */ prop= RNA_def_property(srna, "directory", PROP_STRING, PROP_DIRPATH); RNA_def_property_string_sdna(prop, NULL, "dir"); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_ui_text(prop, "Directory", "Location to store the proxy files"); RNA_def_property_update(prop, NC_MOVIECLIP|ND_DISPLAY, "rna_MovieClip_reload_update"); } @@ -223,6 +237,7 @@ static void rna_def_movieclip(BlenderRNA *brna) /* use proxy */ prop= RNA_def_property(srna, "use_proxy", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_sdna(prop, NULL, "flag", MCLIP_USE_PROXY); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_ui_text(prop, "Use Proxy / Timecode", "Use a preview proxy and/or timecode index for this clip"); RNA_def_property_update(prop, NC_MOVIECLIP|ND_DISPLAY, NULL); @@ -247,6 +262,7 @@ static void rna_def_movieclip(BlenderRNA *brna) /* custom proxy directory */ prop= RNA_def_property(srna, "use_proxy_custom_directory", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_sdna(prop, NULL, "flag", MCLIP_USE_PROXY_CUSTOM_DIR); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_ui_text(prop, "Proxy Custom Directory", "Create proxy images in a custom directory (default is movie location)"); RNA_def_property_update(prop, NC_MOVIECLIP|ND_DISPLAY, "rna_MovieClip_reload_update"); diff --git a/source/blender/makesrna/intern/rna_tracking.c b/source/blender/makesrna/intern/rna_tracking.c index aff8a85dd26..ba4e5199f73 100644 --- a/source/blender/makesrna/intern/rna_tracking.c +++ b/source/blender/makesrna/intern/rna_tracking.c @@ -54,6 +54,11 @@ #include "WM_api.h" +static char *rna_tracking_path(PointerRNA *UNUSED(ptr)) +{ + return BLI_sprintfN("tracking"); +} + static void rna_tracking_defaultSettings_levelsUpdate(Main *UNUSED(bmain), Scene *scene, PointerRNA *ptr) { MovieClip *clip= (MovieClip*)ptr->id.data; @@ -88,6 +93,13 @@ static void rna_tracking_defaultSettings_searchUpdate(Main *UNUSED(bmain), Scene settings->default_pattern_size= settings->default_search_size; } +static char *rna_trackingTrack_path(PointerRNA *ptr) +{ + MovieTrackingTrack *track = (MovieTrackingTrack *) ptr->data; + + return BLI_sprintfN("tracking.tracks[\"%s\"]", track->name); +} + static void rna_trackingTracks_begin(CollectionPropertyIterator *iter, PointerRNA *ptr) { MovieClip *clip= (MovieClip*)ptr->id.data; @@ -228,6 +240,11 @@ static void rna_tracking_trackerPyramid_update(Main *UNUSED(bmain), Scene *UNUSE BKE_tracking_clamp_track(track, CLAMP_PYRAMID_LEVELS); } +static char *rna_trackingCamera_path(PointerRNA *UNUSED(ptr)) +{ + return BLI_sprintfN("tracking.camera"); +} + static float rna_trackingCamera_focal_mm_get(PointerRNA *ptr) { MovieClip *clip= (MovieClip*)ptr->id.data; @@ -252,6 +269,11 @@ static void rna_trackingCamera_focal_mm_set(PointerRNA *ptr, float value) camera->focal= value; } +static char *rna_trackingStabilization_path(PointerRNA *UNUSED(ptr)) +{ + return BLI_sprintfN("tracking.stabilization"); +} + static int rna_track_2d_stabilization(CollectionPropertyIterator *UNUSED(iter), void *data) { MovieTrackingTrack *track= (MovieTrackingTrack*)data; @@ -681,11 +703,13 @@ static void rna_def_trackingCamera(BlenderRNA *brna) {0, NULL, 0, NULL, NULL}}; srna= RNA_def_struct(brna, "MovieTrackingCamera", NULL); + RNA_def_struct_path_func(srna, "rna_trackingCamera_path"); RNA_def_struct_ui_text(srna, "Movie tracking camera data", "Match-moving camera data for tracking"); /* Sensor */ prop= RNA_def_property(srna, "sensor_width", PROP_FLOAT, PROP_NONE); RNA_def_property_float_sdna(prop, NULL, "sensor_width"); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_range(prop, 0.0f, 500.0f); RNA_def_property_ui_text(prop, "Sensor", "Width of CCD sensor in millimeters"); RNA_def_property_update(prop, NC_MOVIECLIP|NA_EDITED, NULL); @@ -693,6 +717,7 @@ static void rna_def_trackingCamera(BlenderRNA *brna) /* Focal Length */ prop= RNA_def_property(srna, "focal_length", PROP_FLOAT, PROP_NONE); RNA_def_property_float_sdna(prop, NULL, "focal"); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_range(prop, 0.0001f, 5000.0f); RNA_def_property_float_funcs(prop, "rna_trackingCamera_focal_mm_get", "rna_trackingCamera_focal_mm_set", NULL); RNA_def_property_ui_text(prop, "Focal Length", "Camera's focal length"); @@ -701,6 +726,7 @@ static void rna_def_trackingCamera(BlenderRNA *brna) /* Focal Length in pixels */ prop= RNA_def_property(srna, "focal_length_pixels", PROP_FLOAT, PROP_NONE); RNA_def_property_float_sdna(prop, NULL, "focal"); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_range(prop, 0.0f, 5000.0f); RNA_def_property_ui_text(prop, "Focal Length", "Camera's focal length"); RNA_def_property_update(prop, NC_MOVIECLIP|NA_EDITED, NULL); @@ -709,6 +735,7 @@ static void rna_def_trackingCamera(BlenderRNA *brna) prop= RNA_def_property(srna, "units", PROP_ENUM, PROP_NONE); RNA_def_property_enum_sdna(prop, NULL, "units"); RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_enum_items(prop, camera_units_items); RNA_def_property_ui_text(prop, "Units", "Units used for camera focal length"); @@ -716,24 +743,28 @@ static void rna_def_trackingCamera(BlenderRNA *brna) prop= RNA_def_property(srna, "principal", PROP_FLOAT, PROP_NONE); RNA_def_property_array(prop, 2); RNA_def_property_float_sdna(prop, NULL, "principal"); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_ui_text(prop, "Principal Point", "Optical center of lens"); RNA_def_property_update(prop, NC_MOVIECLIP|NA_EDITED, NULL); /* Radial distortion parameters */ prop= RNA_def_property(srna, "k1", PROP_FLOAT, PROP_NONE); RNA_def_property_float_sdna(prop, NULL, "k1"); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_ui_range(prop, -10, 10, .1, 3); RNA_def_property_ui_text(prop, "K1", "First coefficient of third order polynomial radial distortion"); RNA_def_property_update(prop, NC_MOVIECLIP|NA_EDITED, "rna_tracking_flushUpdate"); prop= RNA_def_property(srna, "k2", PROP_FLOAT, PROP_NONE); RNA_def_property_float_sdna(prop, NULL, "k2"); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_ui_range(prop, -10, 10, .1, 3); RNA_def_property_ui_text(prop, "K2", "Second coefficient of third order polynomial radial distortion"); RNA_def_property_update(prop, NC_MOVIECLIP|NA_EDITED, "rna_tracking_flushUpdate"); prop= RNA_def_property(srna, "k3", PROP_FLOAT, PROP_NONE); RNA_def_property_float_sdna(prop, NULL, "k3"); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_ui_range(prop, -10, 10, .1, 3); RNA_def_property_ui_text(prop, "K3", "Third coefficient of third order polynomial radial distortion"); RNA_def_property_update(prop, NC_MOVIECLIP|NA_EDITED, "rna_tracking_flushUpdate"); @@ -741,6 +772,7 @@ static void rna_def_trackingCamera(BlenderRNA *brna) /* pixel aspect */ prop= RNA_def_property(srna, "pixel_aspect", PROP_FLOAT, PROP_XYZ); RNA_def_property_float_sdna(prop, NULL, "pixel_aspect"); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_range(prop, 0.1f, 5000.0f); RNA_def_property_ui_range(prop, 0.1f, 5000.0f, 1, 2); RNA_def_property_ui_text(prop, "Pixel Aspect Ratio", "Pixel aspect ratio"); @@ -822,6 +854,7 @@ static void rna_def_trackingTrack(BlenderRNA *brna) rna_def_trackingMarker(brna); srna= RNA_def_struct(brna, "MovieTrackingTrack", NULL); + RNA_def_struct_path_func(srna, "rna_trackingTrack_path"); RNA_def_struct_ui_text(srna, "Movie tracking track data", "Match-moving track data for tracking"); RNA_def_struct_ui_icon(srna, ICON_ANIM_DATA); @@ -838,6 +871,7 @@ static void rna_def_trackingTrack(BlenderRNA *brna) RNA_def_property_array(prop, 2); RNA_def_property_ui_range(prop, -FLT_MAX, FLT_MAX, 1, 5); RNA_def_property_float_sdna(prop, NULL, "pat_min"); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_ui_text(prop, "Pattern Min", "Left-bottom corner of pattern area in normalized coordinates relative to marker position"); RNA_def_property_update(prop, NC_MOVIECLIP|NA_EDITED, "rna_tracking_trackerPattern_update"); @@ -845,6 +879,7 @@ static void rna_def_trackingTrack(BlenderRNA *brna) RNA_def_property_array(prop, 2); RNA_def_property_ui_range(prop, -FLT_MAX, FLT_MAX, 1, 5); RNA_def_property_float_sdna(prop, NULL, "pat_max"); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_ui_text(prop, "Pattern Max", "Right-bottom corner of pattern area in normalized coordinates relative to marker position"); RNA_def_property_update(prop, NC_MOVIECLIP|NA_EDITED, "rna_tracking_trackerPattern_update"); @@ -853,6 +888,7 @@ static void rna_def_trackingTrack(BlenderRNA *brna) RNA_def_property_array(prop, 2); RNA_def_property_ui_range(prop, -FLT_MAX, FLT_MAX, 1, 5); RNA_def_property_float_sdna(prop, NULL, "search_min"); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_ui_text(prop, "Search Min", "Left-bottom corner of search area in normalized coordinates relative to marker position"); RNA_def_property_update(prop, NC_MOVIECLIP|NA_EDITED, "rna_tracking_trackerSearch_update"); @@ -860,6 +896,7 @@ static void rna_def_trackingTrack(BlenderRNA *brna) RNA_def_property_array(prop, 2); RNA_def_property_ui_range(prop, -FLT_MAX, FLT_MAX, 1, 5); RNA_def_property_float_sdna(prop, NULL, "search_max"); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_ui_text(prop, "Search Max", "Right-bottom corner of search area in normalized coordinates relative to marker position"); RNA_def_property_update(prop, NC_MOVIECLIP|NA_EDITED, "rna_tracking_trackerSearch_update"); @@ -867,6 +904,7 @@ static void rna_def_trackingTrack(BlenderRNA *brna) prop= RNA_def_property(srna, "frames_limit", PROP_INT, PROP_NONE); RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_int_sdna(prop, NULL, "frames_limit"); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_range(prop, 0, SHRT_MAX); RNA_def_property_ui_text(prop, "Frames Limit", "Every tracking cycle, this number of frames are tracked"); @@ -874,6 +912,7 @@ static void rna_def_trackingTrack(BlenderRNA *brna) prop= RNA_def_property(srna, "pattern_match", PROP_ENUM, PROP_NONE); RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_enum_sdna(prop, NULL, "pattern_match"); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_enum_items(prop, pattern_match_items); RNA_def_property_ui_text(prop, "Pattern Match", "Track pattern from given frame when tracking marker to next frame"); @@ -881,6 +920,7 @@ static void rna_def_trackingTrack(BlenderRNA *brna) prop= RNA_def_property(srna, "margin", PROP_INT, PROP_NONE); RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_int_sdna(prop, NULL, "margin"); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_range(prop, 0, 300); RNA_def_property_ui_text(prop, "Margin", "Distance from image boudary at which marker stops tracking"); @@ -888,6 +928,7 @@ static void rna_def_trackingTrack(BlenderRNA *brna) prop= RNA_def_property(srna, "tracker", PROP_ENUM, PROP_NONE); RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_enum_items(prop, tracker_items); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_ui_text(prop, "Tracker", "Tracking algorithm to use"); RNA_def_property_update(prop, NC_MOVIECLIP|NA_EDITED, "rna_tracking_trackerAlgorithm_update"); @@ -895,6 +936,7 @@ static void rna_def_trackingTrack(BlenderRNA *brna) prop= RNA_def_property(srna, "pyramid_levels", PROP_INT, PROP_NONE); RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_int_sdna(prop, NULL, "pyramid_levels"); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_range(prop, 1, 16); RNA_def_property_ui_text(prop, "Pyramid levels", "Number of pyramid levels (increase on blurry footage)"); RNA_def_property_update(prop, NC_MOVIECLIP|NA_EDITED, "rna_tracking_trackerPyramid_update"); @@ -919,24 +961,28 @@ static void rna_def_trackingTrack(BlenderRNA *brna) /* use_red_channel */ prop= RNA_def_property(srna, "use_red_channel", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_negative_sdna(prop, NULL, "flag", TRACK_DISABLE_RED); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_ui_text(prop, "Use Red Channel", "Use red channel from footage for tracking"); RNA_def_property_update(prop, NC_MOVIECLIP|ND_DISPLAY, NULL); /* use_green_channel */ prop= RNA_def_property(srna, "use_green_channel", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_negative_sdna(prop, NULL, "flag", TRACK_DISABLE_GREEN); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_ui_text(prop, "Use Green Channel", "Use green channel from footage for tracking"); RNA_def_property_update(prop, NC_MOVIECLIP|ND_DISPLAY, NULL); /* use_blue_channel */ prop= RNA_def_property(srna, "use_blue_channel", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_negative_sdna(prop, NULL, "flag", TRACK_DISABLE_BLUE); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_ui_text(prop, "Use Blue Channel", "Use blue channel from footage for tracking"); RNA_def_property_update(prop, NC_MOVIECLIP|ND_DISPLAY, NULL); /* preview_grayscale */ prop= RNA_def_property(srna, "use_grayscale_preview", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_sdna(prop, NULL, "flag", TRACK_PREVIEW_GRAYSCALE); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_ui_text(prop, "Grayscale", "Display what the tracking algorithm sees in the preview"); RNA_def_property_update(prop, NC_MOVIECLIP|ND_DISPLAY, NULL); @@ -956,6 +1002,7 @@ static void rna_def_trackingTrack(BlenderRNA *brna) /* hide */ prop= RNA_def_property(srna, "hide", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_sdna(prop, NULL, "flag", TRACK_HIDDEN); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_ui_text(prop, "Hide", "Track is hidden"); RNA_def_property_update(prop, NC_MOVIECLIP|ND_DISPLAY, NULL); @@ -986,12 +1033,14 @@ static void rna_def_trackingTrack(BlenderRNA *brna) /* locked */ prop= RNA_def_property(srna, "lock", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_sdna(prop, NULL, "flag", TRACK_LOCKED); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_ui_text(prop, "Lock", "Track is locked and all changes to it are disabled"); RNA_def_property_update(prop, NC_MOVIECLIP|ND_DISPLAY, NULL); /* custom color */ prop= RNA_def_property(srna, "use_custom_color", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_sdna(prop, NULL, "flag", TRACK_CUSTOMCOLOR); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_ui_text(prop, "Custom Color", "Use custom color instead of theme-defined"); RNA_def_property_update(prop, NC_MOVIECLIP|ND_DISPLAY, NULL); @@ -1015,11 +1064,13 @@ static void rna_def_trackingStabilization(BlenderRNA *brna) PropertyRNA *prop; srna= RNA_def_struct(brna, "MovieTrackingStabilization", NULL); + RNA_def_struct_path_func(srna, "rna_trackingStabilization_path"); RNA_def_struct_ui_text(srna, "Movie tracking stabilization data", "Match-moving stabilization data for tracking"); /* 2d stabilization */ prop= RNA_def_property(srna, "use_2d_stabilization", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_sdna(prop, NULL, "flag", TRACKING_2D_STABILIZATION); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_ui_text(prop, "Use 2D stabilization", "Use 2D stabilization for footage"); RNA_def_property_update(prop, NC_MOVIECLIP|ND_DISPLAY, "rna_tracking_flushUpdate"); @@ -1040,12 +1091,14 @@ static void rna_def_trackingStabilization(BlenderRNA *brna) /* active track index */ prop= RNA_def_property(srna, "active_track_index", PROP_INT, PROP_NONE); RNA_def_property_int_sdna(prop, NULL, "act_track"); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_int_funcs(prop, "rna_tracking_stabTracks_active_index_get", "rna_tracking_stabTracks_active_index_set", "rna_tracking_stabTracks_active_index_range"); RNA_def_property_ui_text(prop, "Active Track Index", "Index of active track in stabilization tracks list"); /* autoscale */ prop= RNA_def_property(srna, "use_autoscale", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_sdna(prop, NULL, "flag", TRACKING_AUTOSCALE); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_ui_text(prop, "Autoscale", "Automatically scale footage to cover unfilled areas when stabilizating"); RNA_def_property_update(prop, NC_MOVIECLIP|ND_DISPLAY, "rna_tracking_flushUpdate"); @@ -1072,6 +1125,7 @@ static void rna_def_trackingStabilization(BlenderRNA *brna) /* use_stabilize_rotation */ prop= RNA_def_property(srna, "use_stabilize_rotation", PROP_BOOLEAN, PROP_NONE); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_boolean_sdna(prop, NULL, "flag", TRACKING_STABILIZE_ROTATION); RNA_def_property_ui_text(prop, "Stabilize Rotation", "Stabilize horizon line on the shot"); RNA_def_property_update(prop, NC_MOVIECLIP|ND_DISPLAY, "rna_tracking_flushUpdate"); @@ -1280,6 +1334,7 @@ static void rna_def_tracking(BlenderRNA *brna) rna_def_trackingObject(brna); srna= RNA_def_struct(brna, "MovieTracking", NULL); + RNA_def_struct_path_func(srna, "rna_tracking_path"); RNA_def_struct_ui_text(srna, "Movie tracking data", "Match-moving data for tracking"); /* settings */ @@ -1315,6 +1370,7 @@ static void rna_def_tracking(BlenderRNA *brna) /* active object index */ prop= RNA_def_property(srna, "active_object_index", PROP_INT, PROP_NONE); RNA_def_property_int_sdna(prop, NULL, "objectnr"); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_int_funcs(prop, "rna_tracking_active_object_index_get", "rna_tracking_active_object_index_set", "rna_tracking_active_object_index_range"); RNA_def_property_ui_text(prop, "Active Object Index", "Index of active object"); RNA_def_property_update(prop, NC_MOVIECLIP|ND_DISPLAY, NULL); -- cgit v1.2.3 From b83577aaec35270552e392b8d299e659b147fda3 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Fri, 17 Feb 2012 08:16:29 +0000 Subject: Camera tracking: fix for missing cache invalidation when disabling/enabling channels for stabilized shot -- svn merge -r44140:44141 ^/branches/soc-2011-tomato --- source/blender/blenkernel/intern/movieclip.c | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) (limited to 'source/blender') diff --git a/source/blender/blenkernel/intern/movieclip.c b/source/blender/blenkernel/intern/movieclip.c index 03fe18e4bd8..c93c03a4424 100644 --- a/source/blender/blenkernel/intern/movieclip.c +++ b/source/blender/blenkernel/intern/movieclip.c @@ -277,6 +277,7 @@ typedef struct MovieClipCache { struct { ImBuf *ibuf; int framenr; + int postprocess_flag; float loc[2], scale, angle; int proxy; @@ -702,7 +703,7 @@ ImBuf *BKE_movieclip_get_postprocessed_ibuf(MovieClip *clip, MovieClipUser *user return movieclip_get_postprocessed_ibuf(clip, user, clip->flag, postprocess_flag, 0); } -static ImBuf *get_stable_cached_frame(MovieClip *clip, MovieClipUser *user, int framenr) +static ImBuf *get_stable_cached_frame(MovieClip *clip, MovieClipUser *user, int framenr, int postprocess_flag) { MovieClipCache *cache = clip->cache; ImBuf *stableibuf; @@ -723,6 +724,9 @@ static ImBuf *get_stable_cached_frame(MovieClip *clip, MovieClipUser *user, int if(cache->stabilized.render_flag!=render_flag || cache->stabilized.proxy!=proxy) return NULL; + if(cache->stabilized.postprocess_flag != postprocess_flag) + return NULL; + stableibuf = cache->stabilized.ibuf; BKE_tracking_stabilization_data(&clip->tracking, framenr, stableibuf->x, stableibuf->y, tloc, &tscale, &tangle); @@ -740,7 +744,8 @@ static ImBuf *get_stable_cached_frame(MovieClip *clip, MovieClipUser *user, int return stableibuf; } -static ImBuf *put_stabilized_frame_to_cache(MovieClip *clip, MovieClipUser *user, ImBuf *ibuf, int framenr) +static ImBuf *put_stabilized_frame_to_cache(MovieClip *clip, MovieClipUser *user, ImBuf *ibuf, + int framenr, int postprocess_flag) { MovieClipCache *cache = clip->cache; ImBuf *stableibuf; @@ -768,6 +773,8 @@ static ImBuf *put_stabilized_frame_to_cache(MovieClip *clip, MovieClipUser *user cache->stabilized.render_flag = 0; } + cache->stabilized.postprocess_flag = postprocess_flag; + IMB_refImBuf(stableibuf); return stableibuf; @@ -786,10 +793,10 @@ ImBuf *BKE_movieclip_get_stable_ibuf(MovieClip *clip, MovieClipUser *user, float if(clip->tracking.stabilization.flag&TRACKING_2D_STABILIZATION) { MovieClipCache *cache= clip->cache; - stableibuf= get_stable_cached_frame(clip, user, framenr); + stableibuf= get_stable_cached_frame(clip, user, framenr, postprocess_flag); if(!stableibuf) - stableibuf= put_stabilized_frame_to_cache(clip, user, ibuf, framenr); + stableibuf= put_stabilized_frame_to_cache(clip, user, ibuf, framenr, postprocess_flag); if(loc) copy_v2_v2(loc, cache->stabilized.loc); if(scale) *scale= cache->stabilized.scale; -- cgit v1.2.3 From 781b4cafbd22101eb7ced4e2db1c485eafb53e81 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Fri, 17 Feb 2012 08:17:46 +0000 Subject: Camera tracking: fixed incorrect auto-scale calculation for 2d stabilization -- svn merge -r44146:44147 ^/branches/soc-2011-tomato --- source/blender/blenkernel/intern/tracking.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source/blender') diff --git a/source/blender/blenkernel/intern/tracking.c b/source/blender/blenkernel/intern/tracking.c index 695ea1dc07a..f089aae578b 100644 --- a/source/blender/blenkernel/intern/tracking.c +++ b/source/blender/blenkernel/intern/tracking.c @@ -2445,8 +2445,8 @@ static void calculate_stabdata(MovieTracking *tracking, int framenr, float width *scale= (stab->scale-1.0f)*stab->scaleinf+1.0f; *angle= 0.0f; - loc[0]= (firstmedian[0]-median[0])*width*(*scale); - loc[1]= (firstmedian[1]-median[1])*height*(*scale); + loc[0]= (firstmedian[0]-median[0])*width; + loc[1]= (firstmedian[1]-median[1])*height; mul_v2_fl(loc, stab->locinf); @@ -2725,7 +2725,7 @@ void BKE_tracking_stabdata_to_mat4(int width, int height, float loc[2], float sc invert_m4_m4(icmat, cmat); size_to_mat4(smat, svec); /* scale matrix */ - add_v2_v2(lmat[3], loc); /* tranlation matrix */ + add_v2_v2(lmat[3], loc); /* translation matrix */ rotate_m4(rmat, 'Z', angle); /* rotation matrix */ /* compose transformation matrix */ -- cgit v1.2.3 From fdeca277fdfab889279c0a4a3b7b1935ff0121fa Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Fri, 17 Feb 2012 08:23:42 +0000 Subject: Camera tracking: run aspect correction before stabilizing shot This commit fixes image stopped being an orthogonal rectangle because of horizontal scaling caused by pixel aspect ratio happening after rotating image which used to make orthogonal angles from footage not actually orthogonal. -- svn merge -r44150:44151 ^/branches/soc-2011-tomato --- source/blender/blenkernel/BKE_tracking.h | 2 +- source/blender/blenkernel/intern/movieclip.c | 7 ++++++- source/blender/blenkernel/intern/tracking.c | 17 ++++++++++++----- source/blender/editors/space_clip/clip_draw.c | 3 ++- 4 files changed, 21 insertions(+), 8 deletions(-) (limited to 'source/blender') diff --git a/source/blender/blenkernel/BKE_tracking.h b/source/blender/blenkernel/BKE_tracking.h index f720050f59c..ebbba7de7c7 100644 --- a/source/blender/blenkernel/BKE_tracking.h +++ b/source/blender/blenkernel/BKE_tracking.h @@ -138,7 +138,7 @@ void BKE_tracking_detect_fast(struct MovieTracking *tracking, struct ListBase *t /* 2D stabilization */ void BKE_tracking_stabilization_data(struct MovieTracking *tracking, int framenr, int width, int height, float loc[2], float *scale, float *angle); struct ImBuf *BKE_tracking_stabilize(struct MovieTracking *tracking, int framenr, struct ImBuf *ibuf, float loc[2], float *scale, float *angle); -void BKE_tracking_stabdata_to_mat4(int width, int height, float loc[2], float scale, float angle, float mat[4][4]); +void BKE_tracking_stabdata_to_mat4(int width, int height, float aspect, float loc[2], float scale, float angle, float mat[4][4]); /* Distortion/Undistortion */ void BKE_tracking_apply_intrinsics(struct MovieTracking *tracking, float co[2], float nco[2]); diff --git a/source/blender/blenkernel/intern/movieclip.c b/source/blender/blenkernel/intern/movieclip.c index c93c03a4424..ce0d169557d 100644 --- a/source/blender/blenkernel/intern/movieclip.c +++ b/source/blender/blenkernel/intern/movieclip.c @@ -279,7 +279,7 @@ typedef struct MovieClipCache { int framenr; int postprocess_flag; - float loc[2], scale, angle; + float loc[2], scale, angle, aspect; int proxy; short render_flag; } stabilized; @@ -727,6 +727,10 @@ static ImBuf *get_stable_cached_frame(MovieClip *clip, MovieClipUser *user, int if(cache->stabilized.postprocess_flag != postprocess_flag) return NULL; + /* stabilization also depends on pixel aspect ratio */ + if(cache->stabilized.aspect != clip->tracking.camera.pixel_aspect) + return NULL; + stableibuf = cache->stabilized.ibuf; BKE_tracking_stabilization_data(&clip->tracking, framenr, stableibuf->x, stableibuf->y, tloc, &tscale, &tangle); @@ -763,6 +767,7 @@ static ImBuf *put_stabilized_frame_to_cache(MovieClip *clip, MovieClipUser *user cache->stabilized.scale = tscale; cache->stabilized.angle = tangle; cache->stabilized.framenr = framenr; + cache->stabilized.aspect = clip->tracking.camera.pixel_aspect; if(clip->flag&MCLIP_USE_PROXY) { cache->stabilized.proxy= rendersize_to_proxy(user, clip->flag); diff --git a/source/blender/blenkernel/intern/tracking.c b/source/blender/blenkernel/intern/tracking.c index c9e6ecf6394..04766910df6 100644 --- a/source/blender/blenkernel/intern/tracking.c +++ b/source/blender/blenkernel/intern/tracking.c @@ -2485,6 +2485,7 @@ static float stabilization_auto_scale_factor(MovieTracking *tracking, int width, { float firstmedian[2]; MovieTrackingStabilization *stab= &tracking->stabilization; + float aspect= tracking->camera.pixel_aspect; if(stab->ok) return stab->scale; @@ -2535,7 +2536,7 @@ static float stabilization_auto_scale_factor(MovieTracking *tracking, int width, float mat[4][4]; float points[4][2]={{0.0f, 0.0f}, {0.0f, height}, {width, height}, {width, 0.0f}}; - BKE_tracking_stabdata_to_mat4(width, height, loc, scale, angle, mat); + BKE_tracking_stabdata_to_mat4(width, height, aspect, loc, scale, angle, mat); for(i= 0; i<4; i++) { int j; @@ -2650,6 +2651,7 @@ ImBuf *BKE_tracking_stabilize(MovieTracking *tracking, int framenr, ImBuf *ibuf, MovieTrackingStabilization *stab= &tracking->stabilization; ImBuf *tmpibuf; float width= ibuf->x, height= ibuf->y; + float aspect= tracking->camera.pixel_aspect; if(loc) copy_v2_v2(tloc, loc); if(scale) tscale= *scale; @@ -2688,7 +2690,7 @@ ImBuf *BKE_tracking_stabilize(MovieTracking *tracking, int framenr, ImBuf *ibuf, float mat[4][4]; int i, j; - BKE_tracking_stabdata_to_mat4(ibuf->x, ibuf->y, tloc, tscale, tangle, mat); + BKE_tracking_stabdata_to_mat4(ibuf->x, ibuf->y, aspect, tloc, tscale, tangle, mat); invert_m4(mat); for(j=0; jy; j++) { @@ -2715,15 +2717,20 @@ ImBuf *BKE_tracking_stabilize(MovieTracking *tracking, int framenr, ImBuf *ibuf, return tmpibuf; } -void BKE_tracking_stabdata_to_mat4(int width, int height, float loc[2], float scale, float angle, float mat[4][4]) +void BKE_tracking_stabdata_to_mat4(int width, int height, float aspect, float loc[2], float scale, float angle, float mat[4][4]) { - float lmat[4][4], rmat[4][4], smat[4][4], cmat[4][4], icmat[4][4]; + float lmat[4][4], rmat[4][4], smat[4][4], cmat[4][4], icmat[4][4], amat[4][4], iamat[4][4]; float svec[3]= {scale, scale, scale}; unit_m4(rmat); unit_m4(lmat); unit_m4(smat); unit_m4(cmat); + unit_m4(amat); + + /* aspect ratio correction matrix */ + amat[0][0] = 1.0f / aspect; + invert_m4_m4(iamat, amat); /* image center as rotation center */ cmat[3][0]= (float)width/2.0f; @@ -2735,7 +2742,7 @@ void BKE_tracking_stabdata_to_mat4(int width, int height, float loc[2], float sc rotate_m4(rmat, 'Z', angle); /* rotation matrix */ /* compose transformation matrix */ - mul_serie_m4(mat, lmat, cmat, rmat, smat, icmat, NULL, NULL, NULL); + mul_serie_m4(mat, amat, lmat, cmat, rmat, smat, icmat, iamat, NULL); } MovieDistortion *BKE_tracking_distortion_create(void) diff --git a/source/blender/editors/space_clip/clip_draw.c b/source/blender/editors/space_clip/clip_draw.c index 49fa7837de6..6dda09a1451 100644 --- a/source/blender/editors/space_clip/clip_draw.c +++ b/source/blender/editors/space_clip/clip_draw.c @@ -1269,13 +1269,14 @@ void clip_draw_main(SpaceClip *sc, ARegion *ar, Scene *scene) if(ibuf) { float loc[2]; + float aspect= clip->tracking.camera.pixel_aspect; if(width != ibuf->x) mul_v2_v2fl(loc, sc->loc, (float)width / ibuf->x); else copy_v2_v2(loc, sc->loc); - BKE_tracking_stabdata_to_mat4(width, height, loc, sc->scale, sc->angle, sc->stabmat); + BKE_tracking_stabdata_to_mat4(width, height, aspect, loc, sc->scale, sc->angle, sc->stabmat); unit_m4(smat); smat[0][0]= 1.0f/width; -- cgit v1.2.3 From 071706e48f720744c82b98409f199b7561cb404c Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Fri, 17 Feb 2012 10:54:21 +0000 Subject: Missed this changes needed to fully support animation data in movie clips. Thanks to Joshua pointed into missed changes! --- source/blender/blenkernel/intern/anim_sys.c | 6 ++++++ source/blender/blenloader/intern/readfile.c | 9 +++++++++ 2 files changed, 15 insertions(+) (limited to 'source/blender') diff --git a/source/blender/blenkernel/intern/anim_sys.c b/source/blender/blenkernel/intern/anim_sys.c index 9ae3ad95d5c..c3d2425f280 100644 --- a/source/blender/blenkernel/intern/anim_sys.c +++ b/source/blender/blenkernel/intern/anim_sys.c @@ -794,6 +794,9 @@ void BKE_animdata_main_cb (Main *mainptr, ID_AnimData_Edit_Callback func, void * /* speakers */ ANIMDATA_IDS_CB(mainptr->speaker.first); + /* movie clips */ + ANIMDATA_IDS_CB(mainptr->movieclip.first); + /* objects */ ANIMDATA_IDS_CB(mainptr->object.first); @@ -875,6 +878,9 @@ void BKE_all_animdata_fix_paths_rename (const char *prefix, const char *oldName, /* speakers */ RENAMEFIX_ANIM_IDS(mainptr->speaker.first); + /* movie clips */ + RENAMEFIX_ANIM_IDS(mainptr->movieclip.first); + /* objects */ RENAMEFIX_ANIM_IDS(mainptr->object.first); diff --git a/source/blender/blenloader/intern/readfile.c b/source/blender/blenloader/intern/readfile.c index fe80dd7bd90..fc8f8e2e2e1 100644 --- a/source/blender/blenloader/intern/readfile.c +++ b/source/blender/blenloader/intern/readfile.c @@ -14085,6 +14085,11 @@ static void expand_sound(FileData *fd, Main *mainvar, bSound *snd) expand_doit(fd, mainvar, snd->ipo); // XXX depreceated - old animation system } +static void expand_movieclip(FileData *fd, Main *mainvar, MovieClip *clip) +{ + if (clip->adt) + expand_animdata(fd, mainvar, clip->adt); +} static void expand_main(FileData *fd, Main *mainvar) { @@ -14168,6 +14173,10 @@ static void expand_main(FileData *fd, Main *mainvar) break; case ID_PA: expand_particlesettings(fd, mainvar, (ParticleSettings *)id); + break; + case ID_MC: + expand_movieclip(fd, mainvar, (MovieClip *)id); + break; } doit= 1; -- cgit v1.2.3 From b7f3887a3a8a66aeba3a16ae5d76b934af3ccc7c Mon Sep 17 00:00:00 2001 From: Bastien Montagne Date: Fri, 17 Feb 2012 12:27:58 +0000 Subject: fa_PE is no valid language code (how comes no one noted that yet?), fa_IR seems the right one! Else, persian was just unavailable on Linux (at least, on Debian...). --- source/blender/blenfont/intern/blf_lang.c | 2 +- source/blender/makesrna/intern/rna_userdef.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'source/blender') diff --git a/source/blender/blenfont/intern/blf_lang.c b/source/blender/blenfont/intern/blf_lang.c index d96011f0f1e..95203c2b1c0 100644 --- a/source/blender/blenfont/intern/blf_lang.c +++ b/source/blender/blenfont/intern/blf_lang.c @@ -101,7 +101,7 @@ static const char *locales[] = { "greek", "el_GR", "korean", "ko_KR", "nepali", "ne_NP", - "persian", "fa_PE", + "persian", "fa_IR", "indonesian", "id_ID", "serbian (latin)", "sr_RS@latin", "kyrgyz", "ky", diff --git a/source/blender/makesrna/intern/rna_userdef.c b/source/blender/makesrna/intern/rna_userdef.c index f7c85583150..919ee215f29 100644 --- a/source/blender/makesrna/intern/rna_userdef.c +++ b/source/blender/makesrna/intern/rna_userdef.c @@ -2827,7 +2827,7 @@ static void rna_def_userdef_system(BlenderRNA *brna) {24, "KOREAN", 0, "Korean (한국 언어)", "ko_KR"}, {25, "NEPALI", 0, "Nepali (नेपाली)", "ne_NP"}, /* using the utf8 flipped form of Persian (فارسی) */ - {26, "PERSIAN", 0, "Persian (ﯽﺳﺭﺎﻓ)", "fa_PE"}, + {26, "PERSIAN", 0, "Persian (ﯽﺳﺭﺎﻓ)", "fa_IR"}, {19, "POLISH", 0, "Polish (Polski)", "pl_PL"}, {20, "ROMANIAN", 0, "Romanian (Român)", "ro_RO"}, {17, "SERBIAN", 0, "Serbian (Српски)", "sr_RS"}, -- cgit v1.2.3 From 8f97f3ed2961dcd03ca3d5aeb314cfdf2d0dc58e Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Fri, 17 Feb 2012 16:06:32 +0000 Subject: Fix #25649: Image editor paint icon missing until enter weight paint Issue was caused by starting Icon Preview render job from two places: - Texture buttons for small icon preview - Properties panel in image editor for large icon of texture This preview job is starting in suspended mode and if new instance of the same job is starting, suspended job will be totally stopped. This is normally for cases when you're changing different settings -- in this case you'd wouldn't want re-render be triggered on every slide change. But what we've have with brush preview is that two instances of this job were creating for large and small icon separately, but because of described policy only one icon was rendered. If suspended job is getting to be stopped, check if it was started for the same icon resolution and if not, that resolution will be also rendered in new job. So it'll be still minimal re-rendering happens, but in cases when job was started from two places for different icon sizes it'll work just fine. --- source/blender/editors/interface/interface_icons.c | 31 ++++--- .../blender/editors/interface/interface_layout.c | 2 +- .../editors/interface/interface_templates.c | 4 +- source/blender/editors/render/render_preview.c | 103 +++++++++++++++++---- source/blender/editors/space_image/space_image.c | 6 ++ source/blender/editors/space_view3d/space_view3d.c | 1 + 6 files changed, 116 insertions(+), 31 deletions(-) (limited to 'source/blender') diff --git a/source/blender/editors/interface/interface_icons.c b/source/blender/editors/interface/interface_icons.c index 3feda5d4db4..7c2d411e076 100644 --- a/source/blender/editors/interface/interface_icons.c +++ b/source/blender/editors/interface/interface_icons.c @@ -1013,21 +1013,26 @@ static void icon_draw_size(float x, float y, int icon_id, float aspect, float al } } +static void ui_id_preview_image_render_size(bContext *C, ID *id, PreviewImage *pi, int size) +{ + if ((pi->changed[size] ||!pi->rect[size])) /* changed only ever set by dynamic icons */ + { + /* create the rect if necessary */ + icon_set_image(C, id, pi, size); + + pi->changed[size] = 0; + } +} + static void ui_id_icon_render(bContext *C, ID *id, int big) { - PreviewImage *pi = BKE_previewimg_get(id); - - if (pi) { - if ((pi->changed[0] ||!pi->rect[0])) /* changed only ever set by dynamic icons */ - { - /* create the rect if necessary */ - - icon_set_image(C, id, pi, ICON_SIZE_ICON); /* icon size */ - if (big) - icon_set_image(C, id, pi, ICON_SIZE_PREVIEW); /* bigger preview size */ - - pi->changed[0] = 0; - } + PreviewImage *pi = BKE_previewimg_get(id); + + if (pi) { + if (big) + ui_id_preview_image_render_size(C, id, pi, ICON_SIZE_PREVIEW); /* bigger preview size */ + else + ui_id_preview_image_render_size(C, id, pi, ICON_SIZE_ICON); /* icon size */ } } diff --git a/source/blender/editors/interface/interface_layout.c b/source/blender/editors/interface/interface_layout.c index 429cd658dea..b3b187f92a2 100644 --- a/source/blender/editors/interface/interface_layout.c +++ b/source/blender/editors/interface/interface_layout.c @@ -1281,7 +1281,7 @@ static void rna_search_cb(const struct bContext *C, void *arg_but, const char *s BLI_strncpy(name_ui, id->name+2, sizeof(name_ui)); #endif name= BLI_strdup(name_ui); - iconid= ui_id_icon_get((bContext*)C, id, 1); + iconid= ui_id_icon_get((bContext*)C, id, 0); } else { name= RNA_struct_name_get_alloc(&itemptr, NULL, 0, NULL); /* could use the string length here */ diff --git a/source/blender/editors/interface/interface_templates.c b/source/blender/editors/interface/interface_templates.c index 4a797b0e960..a73291ec352 100644 --- a/source/blender/editors/interface/interface_templates.c +++ b/source/blender/editors/interface/interface_templates.c @@ -96,6 +96,7 @@ typedef struct TemplateID { ListBase *idlb; int prv_rows, prv_cols; + int preview; } TemplateID; /* Search browse menu, assign */ @@ -143,7 +144,7 @@ static void id_search_cb(const bContext *C, void *arg_template, const char *str, char name_ui[MAX_ID_NAME]; name_uiprefix_id(name_ui, id); - iconid= ui_id_icon_get((bContext*)C, id, 1); + iconid= ui_id_icon_get((bContext*)C, id, template->preview); if(!uiSearchItemAdd(items, name_ui, id, iconid)) break; @@ -370,6 +371,7 @@ static void template_ID(bContext *C, uiLayout *layout, TemplateID *template, Str uiButSetFlag(but, UI_BUT_DISABLED); uiLayoutRow(layout, 1); + template->preview= 1; } else if(flag & UI_ID_BROWSE) { but= uiDefBlockButN(block, id_search_menu, MEM_dupallocN(template), "", 0, 0, UI_UNIT_X*1.6, UI_UNIT_Y, diff --git a/source/blender/editors/render/render_preview.c b/source/blender/editors/render/render_preview.c index 3e34a55a3d9..3eda30e1554 100644 --- a/source/blender/editors/render/render_preview.c +++ b/source/blender/editors/render/render_preview.c @@ -164,6 +164,19 @@ typedef struct ShaderPreview { } ShaderPreview; +typedef struct IconPreviewSize { + struct IconPreviewSize *next, *prev; + int sizex, sizey; + unsigned int *rect; +} IconPreviewSize; + +typedef struct IconPreview { + Scene *scene; + void *owner; + ID *id; + ListBase sizes; +} IconPreview; + /* *************************** Preview for buttons *********************** */ static Main *pr_main= NULL; @@ -944,38 +957,96 @@ static void common_preview_startjob(void *customdata, short *stop, short *do_upd shader_preview_startjob(customdata, stop, do_update); } -static void common_preview_endjob(void *customdata) +/* exported functions */ + +static void icon_preview_add_size(IconPreview *ip, unsigned int *rect, int sizex, int sizey) { - ShaderPreview *sp= customdata; + IconPreviewSize *cur_size = ip->sizes.first, *new_size; - if(sp->id && GS(sp->id->name) == ID_BR) - WM_main_add_notifier(NC_BRUSH|NA_EDITED, sp->id); + while (cur_size) { + if (cur_size->sizex == sizex && cur_size->sizey == sizey) { + /* requested size is already in list, no need to add it again */ + return; + } + + cur_size = cur_size->next; + } + + new_size = MEM_callocN(sizeof(IconPreviewSize), "IconPreviewSize"); + new_size->sizex = sizex; + new_size->sizey = sizey; + new_size->rect = rect; + + BLI_addtail(&ip->sizes, new_size); } -/* exported functions */ +static void icon_preview_startjob_all_sizes(void *customdata, short *stop, short *do_update, float *progress) +{ + IconPreview *ip = (IconPreview *)customdata; + IconPreviewSize *cur_size = ip->sizes.first; + + while (cur_size) { + ShaderPreview sp; + + memset(&sp, 0, sizeof(ShaderPreview)); + + /* construct shader preview from image size and previewcustomdata */ + sp.scene= ip->scene; + sp.owner= ip->owner; + sp.sizex= cur_size->sizex; + sp.sizey= cur_size->sizey; + sp.pr_method= PR_ICON_RENDER; + sp.pr_rect= cur_size->rect; + sp.id = ip->id; + + common_preview_startjob(&sp, stop, do_update, progress); + + cur_size = cur_size->next; + } +} + +static void icon_preview_endjob(void *customdata) +{ + IconPreview *ip = customdata; + + if (ip->id && GS(ip->id->name) == ID_BR) + WM_main_add_notifier(NC_BRUSH|NA_EDITED, ip->id); +} + +static void icon_preview_free(void *customdata) +{ + IconPreview *ip = (IconPreview *)customdata; + + BLI_freelistN(&ip->sizes); + MEM_freeN(ip); +} void ED_preview_icon_job(const bContext *C, void *owner, ID *id, unsigned int *rect, int sizex, int sizey) { wmJob *steve; - ShaderPreview *sp; + IconPreview *ip, *old_ip; /* suspended start means it starts after 1 timer step, see WM_jobs_timer below */ steve= WM_jobs_get(CTX_wm_manager(C), CTX_wm_window(C), owner, "Icon Preview", WM_JOB_EXCL_RENDER|WM_JOB_SUSPEND); - sp= MEM_callocN(sizeof(ShaderPreview), "shader preview"); + + ip= MEM_callocN(sizeof(IconPreview), "icon preview"); + + /* render all resolutions from suspended job too */ + old_ip= WM_jobs_get_customdata(steve); + if (old_ip) + BLI_movelisttolist(&ip->sizes, &old_ip->sizes); /* customdata for preview thread */ - sp->scene= CTX_data_scene(C); - sp->owner= id; - sp->sizex= sizex; - sp->sizey= sizey; - sp->pr_method= PR_ICON_RENDER; - sp->pr_rect= rect; - sp->id = id; + ip->scene= CTX_data_scene(C); + ip->owner= id; + ip->id= id; + + icon_preview_add_size(ip, rect, sizex, sizey); /* setup job */ - WM_jobs_customdata(steve, sp, shader_preview_free); + WM_jobs_customdata(steve, ip, icon_preview_free); WM_jobs_timer(steve, 0.25, NC_MATERIAL, NC_MATERIAL); - WM_jobs_callbacks(steve, common_preview_startjob, NULL, NULL, common_preview_endjob); + WM_jobs_callbacks(steve, icon_preview_startjob_all_sizes, NULL, NULL, icon_preview_endjob); WM_jobs_start(CTX_wm_manager(C), steve); } diff --git a/source/blender/editors/space_image/space_image.c b/source/blender/editors/space_image/space_image.c index 3a5793461ea..8063dc6c902 100644 --- a/source/blender/editors/space_image/space_image.c +++ b/source/blender/editors/space_image/space_image.c @@ -873,6 +873,12 @@ static void image_buttons_area_listener(ARegion *ar, wmNotifier *wmn) if(wmn->action==NA_EDITED) ED_region_tag_redraw(ar); break; + case NC_TEXTURE: + case NC_MATERIAL: + /* sending by texture render job and needed to properly update displaying + * brush texture icon */ + ED_region_tag_redraw(ar); + break; } } diff --git a/source/blender/editors/space_view3d/space_view3d.c b/source/blender/editors/space_view3d/space_view3d.c index 94ab847c91b..72a068af095 100644 --- a/source/blender/editors/space_view3d/space_view3d.c +++ b/source/blender/editors/space_view3d/space_view3d.c @@ -933,6 +933,7 @@ static void view3d_buttons_area_listener(ARegion *ar, wmNotifier *wmn) ED_region_tag_redraw(ar); break; case NC_TEXTURE: + case NC_MATERIAL: /* for brush textures */ ED_region_tag_redraw(ar); break; -- cgit v1.2.3 From 7c15fb4f2c710a15e0ae7bd758f1cf74a4e97e36 Mon Sep 17 00:00:00 2001 From: Bastien Montagne Date: Fri, 17 Feb 2012 16:34:28 +0000 Subject: Minor fixes found while working on keyingsets. --- source/blender/editors/animation/keyframing.c | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'source/blender') diff --git a/source/blender/editors/animation/keyframing.c b/source/blender/editors/animation/keyframing.c index 84206c4275e..5557923c3d6 100644 --- a/source/blender/editors/animation/keyframing.c +++ b/source/blender/editors/animation/keyframing.c @@ -1178,7 +1178,8 @@ void ANIM_OT_keyframe_insert (wmOperatorType *ot) /* confirm whether a keyframe was added by showing a popup * - by default, this is enabled, since this operator is assumed to be called independently */ - prop= RNA_def_boolean(ot->srna, "confirm_success", 1, "Confirm Successful Insert", "Show a popup when the keyframes get successfully added"); + prop= RNA_def_boolean(ot->srna, "confirm_success", 1, "Confirm Successful Insert", + "Show a popup when the keyframes get successfully added"); RNA_def_property_flag(prop, PROP_HIDDEN); } @@ -1233,7 +1234,8 @@ void ANIM_OT_keyframe_insert_menu (wmOperatorType *ot) * - by default, this is disabled so that if a menu is shown, this doesn't come up too */ // XXX should this just be always on? - prop= RNA_def_boolean(ot->srna, "confirm_success", 0, "Confirm Successful Insert", "Show a popup when the keyframes get successfully added"); + prop= RNA_def_boolean(ot->srna, "confirm_success", 0, "Confirm Successful Insert", + "Show a popup when the keyframes get successfully added"); RNA_def_property_flag(prop, PROP_HIDDEN); /* whether the menu should always be shown @@ -1273,7 +1275,7 @@ static int delete_key_exec (bContext *C, wmOperator *op) return OPERATOR_CANCELLED; } - /* try to insert keyframes for the channels specified by KeyingSet */ + /* try to delete keyframes for the channels specified by KeyingSet */ success= ANIM_apply_keyingset(C, NULL, NULL, ks, MODIFYKEY_MODE_DELETE, cfra); if (G.f & G_DEBUG) printf("KeyingSet '%s' - Successfully removed %d Keyframes \n", ks->name, success); @@ -1325,7 +1327,8 @@ void ANIM_OT_keyframe_delete (wmOperatorType *ot) /* confirm whether a keyframe was added by showing a popup * - by default, this is enabled, since this operator is assumed to be called independently */ - RNA_def_boolean(ot->srna, "confirm_success", 1, "Confirm Successful Insert", "Show a popup when the keyframes get successfully added"); + RNA_def_boolean(ot->srna, "confirm_success", 1, "Confirm Successful Delete", + "Show a popup when the keyframes get successfully removed"); } /* Delete Key Operator ------------------------ */ -- cgit v1.2.3 From e097a188dadc6d46364dd95034dc7030f1da4bec Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Fri, 17 Feb 2012 17:22:37 +0000 Subject: Revert part of own recent header cleanup: pivot and manipulators in fact makes sense in particle edit mode. --- source/blender/editors/space_view3d/view3d_header.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'source/blender') diff --git a/source/blender/editors/space_view3d/view3d_header.c b/source/blender/editors/space_view3d/view3d_header.c index 8acfd43f3ed..1df0b3a8a4e 100644 --- a/source/blender/editors/space_view3d/view3d_header.c +++ b/source/blender/editors/space_view3d/view3d_header.c @@ -493,8 +493,7 @@ void uiTemplateHeader3D(uiLayout *layout, struct bContext *C) /* mode */ if(ob) { v3d->modeselect = ob->mode; - is_paint = ELEM5(ob->mode, OB_MODE_SCULPT, OB_MODE_VERTEX_PAINT, OB_MODE_WEIGHT_PAINT, - OB_MODE_TEXTURE_PAINT, OB_MODE_PARTICLE_EDIT); + is_paint = ELEM4(ob->mode, OB_MODE_SCULPT, OB_MODE_VERTEX_PAINT, OB_MODE_WEIGHT_PAINT,OB_MODE_TEXTURE_PAINT); } else { v3d->modeselect = OB_MODE_OBJECT; -- cgit v1.2.3 From ca4ef8aa263a356a0e900ba81af4ff7e4207ddb9 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 17 Feb 2012 17:47:10 +0000 Subject: add note to avoid confusion with angle_v3v3v3, also minor change with angle comparison, convert constant values to radians (not resulting angle to deg). --- source/blender/blenlib/intern/math_vector.c | 8 ++++++-- source/blender/editors/armature/meshlaplacian.c | 6 +++--- 2 files changed, 9 insertions(+), 5 deletions(-) (limited to 'source/blender') diff --git a/source/blender/blenlib/intern/math_vector.c b/source/blender/blenlib/intern/math_vector.c index 47deb705def..ce9896b99cc 100644 --- a/source/blender/blenlib/intern/math_vector.c +++ b/source/blender/blenlib/intern/math_vector.c @@ -112,8 +112,12 @@ void mid_v3_v3v3(float v[3], const float v1[3], const float v2[3]) /********************************** Angles ***********************************/ /* Return the angle in radians between vecs 1-2 and 2-3 in radians - If v1 is a shoulder, v2 is the elbow and v3 is the hand, - this would return the angle at the elbow */ + * If v1 is a shoulder, v2 is the elbow and v3 is the hand, + * this would return the angle at the elbow. + * + * note that when v1/v2/v3 represent 3 points along a straight line + * that the angle returned will be pi (180deg), rather then 0.0 + */ float angle_v3v3v3(const float v1[3], const float v2[3], const float v3[3]) { float vec1[3], vec2[3]; diff --git a/source/blender/editors/armature/meshlaplacian.c b/source/blender/editors/armature/meshlaplacian.c index 319b2c755b1..005f5f6da95 100644 --- a/source/blender/editors/armature/meshlaplacian.c +++ b/source/blender/editors/armature/meshlaplacian.c @@ -181,9 +181,9 @@ static void laplacian_triangle_area(LaplacianSystem *sys, int i1, int i2, int i3 t2= cotan_weight(v2, v3, v1); t3= cotan_weight(v3, v1, v2); - if(RAD2DEGF(angle_v3v3v3(v2, v1, v3)) > 90) obtuse= 1; - else if(RAD2DEGF(angle_v3v3v3(v1, v2, v3)) > 90) obtuse= 2; - else if(RAD2DEGF(angle_v3v3v3(v1, v3, v2)) > 90) obtuse= 3; + if (angle_v3v3v3(v2, v1, v3) > DEG2RADF(90.0f)) obtuse= 1; + else if(angle_v3v3v3(v1, v2, v3) > DEG2RADF(90.0f)) obtuse= 2; + else if(angle_v3v3v3(v1, v3, v2) > DEG2RADF(90.0f)) obtuse= 3; if (obtuse > 0) { area= area_tri_v3(v1, v2, v3); -- cgit v1.2.3 From 99d0ba6299d9f2acdf2446b2f52e812877ebcc70 Mon Sep 17 00:00:00 2001 From: Bastien Montagne Date: Fri, 17 Feb 2012 18:04:49 +0000 Subject: Use BLF API to check whether translation is enabled, when possible! --- source/blender/makesrna/intern/rna_access.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source/blender') diff --git a/source/blender/makesrna/intern/rna_access.c b/source/blender/makesrna/intern/rna_access.c index 5339ee58acf..0df8a625caf 100644 --- a/source/blender/makesrna/intern/rna_access.c +++ b/source/blender/makesrna/intern/rna_access.c @@ -475,7 +475,7 @@ static const char *rna_ensure_property_description(PropertyRNA *prop) } #ifdef WITH_INTERNATIONAL - if(description && (U.transopts&USER_DOTRANSLATE) && (U.transopts&USER_TR_TOOLTIPS)) + if(description && BLF_translate_tooltips()) description= BLF_gettext(description); #endif @@ -492,7 +492,7 @@ static const char *rna_ensure_property_name(PropertyRNA *prop) name= ((IDProperty*)prop)->name; #ifdef WITH_INTERNATIONAL - if((U.transopts&USER_DOTRANSLATE) && (U.transopts&USER_TR_IFACE)) { + if(BLF_translate_iface()) { if(prop->translation_context) name = BLF_pgettext(prop->translation_context, name); else @@ -1182,7 +1182,7 @@ void RNA_property_enum_items_gettexted(bContext *C, PointerRNA *ptr, PropertyRNA RNA_property_enum_items(C, ptr, prop, item, totitem, free); #ifdef WITH_INTERNATIONAL - if((U.transopts&USER_DOTRANSLATE) && (U.transopts&USER_TR_IFACE)) { + if(BLF_translate_iface()) { int i; EnumPropertyItem *nitem; -- cgit v1.2.3 From 2b7ca2304a9b17568fac57a0bceba72b9c9ab580 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 17 Feb 2012 18:59:41 +0000 Subject: unify include guard defines, __$FILENAME__ without the underscores these clogged up the namespace for autocompleation which was annoying. --- source/blender/avi/AVI_avi.h | 6 +++--- source/blender/avi/intern/avi_intern.h | 4 ++-- source/blender/avi/intern/endian.h | 4 ++-- source/blender/blenfont/BLF_api.h | 6 +++--- source/blender/blenfont/BLF_translation.h | 6 +++--- source/blender/blenfont/intern/blf_internal.h | 6 +++--- source/blender/blenfont/intern/blf_internal_types.h | 6 +++--- source/blender/blenkernel/BKE_DerivedMesh.h | 4 ++-- source/blender/blenkernel/BKE_action.h | 4 ++-- source/blender/blenkernel/BKE_anim.h | 4 ++-- source/blender/blenkernel/BKE_animsys.h | 6 +++--- source/blender/blenkernel/BKE_armature.h | 4 ++-- source/blender/blenkernel/BKE_blender.h | 4 ++-- source/blender/blenkernel/BKE_bmesh.h | 4 ++-- source/blender/blenkernel/BKE_bmeshCustomData.h | 4 ++-- source/blender/blenkernel/BKE_bmfont.h | 4 ++-- source/blender/blenkernel/BKE_bmfont_types.h | 4 ++-- source/blender/blenkernel/BKE_boids.h | 4 ++-- source/blender/blenkernel/BKE_booleanops_mesh.h | 4 ++-- source/blender/blenkernel/BKE_brush.h | 4 ++-- source/blender/blenkernel/BKE_bullet.h | 4 ++-- source/blender/blenkernel/BKE_bvhutils.h | 4 ++-- source/blender/blenkernel/BKE_camera.h | 4 ++-- source/blender/blenkernel/BKE_cdderivedmesh.h | 4 ++-- source/blender/blenkernel/BKE_cloth.h | 4 ++-- source/blender/blenkernel/BKE_collision.h | 4 ++-- source/blender/blenkernel/BKE_colortools.h | 4 ++-- source/blender/blenkernel/BKE_constraint.h | 4 ++-- source/blender/blenkernel/BKE_context.h | 4 ++-- source/blender/blenkernel/BKE_curve.h | 4 ++-- source/blender/blenkernel/BKE_customdata.h | 4 ++-- source/blender/blenkernel/BKE_customdata_file.h | 6 +++--- source/blender/blenkernel/BKE_deform.h | 4 ++-- source/blender/blenkernel/BKE_depsgraph.h | 4 ++-- source/blender/blenkernel/BKE_displist.h | 4 ++-- source/blender/blenkernel/BKE_dynamicpaint.h | 6 +++--- source/blender/blenkernel/BKE_effect.h | 4 ++-- source/blender/blenkernel/BKE_fcurve.h | 6 +++--- source/blender/blenkernel/BKE_fluidsim.h | 4 ++-- source/blender/blenkernel/BKE_font.h | 4 ++-- source/blender/blenkernel/BKE_global.h | 4 ++-- source/blender/blenkernel/BKE_gpencil.h | 6 +++--- source/blender/blenkernel/BKE_group.h | 4 ++-- source/blender/blenkernel/BKE_icons.h | 6 +++--- source/blender/blenkernel/BKE_idcode.h | 4 ++-- source/blender/blenkernel/BKE_idprop.h | 6 +++--- source/blender/blenkernel/BKE_image.h | 4 ++-- source/blender/blenkernel/BKE_ipo.h | 4 ++-- source/blender/blenkernel/BKE_key.h | 6 +++--- source/blender/blenkernel/BKE_lamp.h | 4 ++-- source/blender/blenkernel/BKE_lattice.h | 4 ++-- source/blender/blenkernel/BKE_library.h | 4 ++-- source/blender/blenkernel/BKE_main.h | 4 ++-- source/blender/blenkernel/BKE_material.h | 4 ++-- source/blender/blenkernel/BKE_mball.h | 4 ++-- source/blender/blenkernel/BKE_mesh.h | 6 +++--- source/blender/blenkernel/BKE_modifier.h | 4 ++-- source/blender/blenkernel/BKE_movieclip.h | 4 ++-- source/blender/blenkernel/BKE_multires.h | 6 +++--- source/blender/blenkernel/BKE_navmesh_conversion.h | 4 ++-- source/blender/blenkernel/BKE_nla.h | 4 ++-- source/blender/blenkernel/BKE_node.h | 4 ++-- source/blender/blenkernel/BKE_object.h | 4 ++-- source/blender/blenkernel/BKE_ocean.h | 4 ++-- source/blender/blenkernel/BKE_packedFile.h | 4 ++-- source/blender/blenkernel/BKE_paint.h | 4 ++-- source/blender/blenkernel/BKE_particle.h | 4 ++-- source/blender/blenkernel/BKE_plugin_types.h | 4 ++-- source/blender/blenkernel/BKE_pointcache.h | 4 ++-- source/blender/blenkernel/BKE_property.h | 4 ++-- source/blender/blenkernel/BKE_report.h | 4 ++-- source/blender/blenkernel/BKE_sca.h | 4 ++-- source/blender/blenkernel/BKE_scene.h | 4 ++-- source/blender/blenkernel/BKE_screen.h | 4 ++-- source/blender/blenkernel/BKE_script.h | 6 +++--- source/blender/blenkernel/BKE_sequencer.h | 6 +++--- source/blender/blenkernel/BKE_shrinkwrap.h | 4 ++-- source/blender/blenkernel/BKE_sketch.h | 4 ++-- source/blender/blenkernel/BKE_smoke.h | 6 +++--- source/blender/blenkernel/BKE_softbody.h | 4 ++-- source/blender/blenkernel/BKE_sound.h | 4 ++-- source/blender/blenkernel/BKE_speaker.h | 4 ++-- source/blender/blenkernel/BKE_subsurf.h | 4 ++-- source/blender/blenkernel/BKE_suggestions.h | 4 ++-- source/blender/blenkernel/BKE_text.h | 4 ++-- source/blender/blenkernel/BKE_texture.h | 4 ++-- source/blender/blenkernel/BKE_tracking.h | 4 ++-- source/blender/blenkernel/BKE_unit.h | 6 +++--- source/blender/blenkernel/BKE_utildefines.h | 6 +++--- source/blender/blenkernel/BKE_world.h | 4 ++-- source/blender/blenkernel/BKE_writeavi.h | 4 ++-- source/blender/blenkernel/BKE_writeffmpeg.h | 4 ++-- source/blender/blenkernel/BKE_writeframeserver.h | 4 ++-- source/blender/blenkernel/depsgraph_private.h | 4 ++-- source/blender/blenkernel/intern/bmesh_private.h | 4 ++-- source/blender/blenkernel/nla_private.h | 6 +++--- source/blender/blenlib/BLI_args.h | 4 ++-- source/blender/blenlib/BLI_blenlib.h | 4 ++-- source/blender/blenlib/BLI_boxpack2d.h | 4 ++-- source/blender/blenlib/BLI_bpath.h | 6 +++--- source/blender/blenlib/BLI_callbacks.h | 6 +++--- source/blender/blenlib/BLI_cpu.h | 4 ++-- source/blender/blenlib/BLI_dlrbTree.h | 6 +++--- source/blender/blenlib/BLI_dynstr.h | 4 ++-- source/blender/blenlib/BLI_edgehash.h | 4 ++-- source/blender/blenlib/BLI_editVert.h | 4 ++-- source/blender/blenlib/BLI_fileops.h | 4 ++-- source/blender/blenlib/BLI_fileops_types.h | 6 +++--- source/blender/blenlib/BLI_fnmatch.h | 6 +++--- source/blender/blenlib/BLI_ghash.h | 6 +++--- source/blender/blenlib/BLI_graph.h | 6 +++--- source/blender/blenlib/BLI_gsqueue.h | 6 +++--- source/blender/blenlib/BLI_heap.h | 4 ++-- source/blender/blenlib/BLI_jitter.h | 4 ++-- source/blender/blenlib/BLI_kdopbvh.h | 6 +++--- source/blender/blenlib/BLI_kdtree.h | 4 ++-- source/blender/blenlib/BLI_linklist.h | 4 ++-- source/blender/blenlib/BLI_listbase.h | 4 ++-- source/blender/blenlib/BLI_math.h | 6 +++--- source/blender/blenlib/BLI_math_base.h | 8 ++++---- source/blender/blenlib/BLI_math_color.h | 8 ++++---- source/blender/blenlib/BLI_math_geom.h | 8 ++++---- source/blender/blenlib/BLI_math_inline.h | 10 +++++----- source/blender/blenlib/BLI_math_matrix.h | 6 +++--- source/blender/blenlib/BLI_math_rotation.h | 6 +++--- source/blender/blenlib/BLI_math_vector.h | 8 ++++---- source/blender/blenlib/BLI_md5.h | 4 ++-- source/blender/blenlib/BLI_memarena.h | 4 ++-- source/blender/blenlib/BLI_mempool.h | 4 ++-- source/blender/blenlib/BLI_noise.h | 4 ++-- source/blender/blenlib/BLI_path_util.h | 4 ++-- source/blender/blenlib/BLI_pbvh.h | 6 +++--- source/blender/blenlib/BLI_rand.h | 4 ++-- source/blender/blenlib/BLI_rect.h | 4 ++-- source/blender/blenlib/BLI_scanfill.h | 4 ++-- source/blender/blenlib/BLI_string.h | 4 ++-- source/blender/blenlib/BLI_string_utf8.h | 4 ++-- source/blender/blenlib/BLI_threads.h | 4 ++-- source/blender/blenlib/BLI_utildefines.h | 6 +++--- source/blender/blenlib/BLI_uvproject.h | 4 ++-- source/blender/blenlib/BLI_vfontdata.h | 4 ++-- source/blender/blenlib/BLI_voxel.h | 6 +++--- source/blender/blenlib/BLI_winstuff.h | 6 +++--- source/blender/blenlib/PIL_time.h | 6 +++--- source/blender/blenlib/intern/dynamiclist.h | 4 ++-- source/blender/blenloader/BLO_readfile.h | 4 ++-- source/blender/blenloader/BLO_runtime.h | 6 +++--- source/blender/blenloader/BLO_soundfile.h | 4 ++-- source/blender/blenloader/BLO_sys_types.h | 4 ++-- source/blender/blenloader/BLO_undofile.h | 4 ++-- source/blender/blenloader/BLO_writefile.h | 4 ++-- source/blender/blenloader/intern/readfile.h | 4 ++-- source/blender/blenpluginapi/externdef.h | 6 +++--- source/blender/blenpluginapi/floatpatch.h | 6 +++--- source/blender/blenpluginapi/iff.h | 6 +++--- source/blender/blenpluginapi/plugin.h | 6 +++--- source/blender/blenpluginapi/util.h | 6 +++--- source/blender/collada/AnimationImporter.h | 4 ++-- source/blender/collada/ArmatureImporter.h | 4 ++-- source/blender/collada/MeshImporter.h | 4 ++-- source/blender/collada/SkinInfo.h | 4 ++-- source/blender/collada/TransformReader.h | 4 ++-- source/blender/collada/collada.h | 4 ++-- source/blender/collada/collada_internal.h | 6 +++--- source/blender/collada/collada_utils.h | 4 ++-- source/blender/editors/animation/anim_intern.h | 6 +++--- source/blender/editors/armature/BIF_generate.h | 6 +++--- source/blender/editors/armature/BIF_retarget.h | 6 +++--- source/blender/editors/armature/armature_intern.h | 6 +++--- source/blender/editors/armature/meshlaplacian.h | 4 ++-- source/blender/editors/armature/reeb.h | 6 +++--- source/blender/editors/curve/curve_intern.h | 4 ++-- source/blender/editors/gpencil/gpencil_intern.h | 6 +++--- source/blender/editors/include/BIF_gl.h | 6 +++--- source/blender/editors/include/BIF_glutil.h | 6 +++--- source/blender/editors/include/ED_anim_api.h | 6 +++--- source/blender/editors/include/ED_armature.h | 6 +++--- source/blender/editors/include/ED_clip.h | 4 ++-- source/blender/editors/include/ED_curve.h | 6 +++--- source/blender/editors/include/ED_datafiles.h | 6 +++--- source/blender/editors/include/ED_fileselect.h | 6 +++--- source/blender/editors/include/ED_fluidsim.h | 6 +++--- source/blender/editors/include/ED_gpencil.h | 6 +++--- source/blender/editors/include/ED_image.h | 6 +++--- source/blender/editors/include/ED_info.h | 6 +++--- source/blender/editors/include/ED_keyframes_draw.h | 6 +++--- source/blender/editors/include/ED_keyframes_edit.h | 6 +++--- source/blender/editors/include/ED_keyframing.h | 6 +++--- source/blender/editors/include/ED_logic.h | 6 +++--- source/blender/editors/include/ED_markers.h | 6 +++--- source/blender/editors/include/ED_mball.h | 4 ++-- source/blender/editors/include/ED_mesh.h | 6 +++--- source/blender/editors/include/ED_node.h | 6 +++--- source/blender/editors/include/ED_numinput.h | 4 ++-- source/blender/editors/include/ED_object.h | 6 +++--- source/blender/editors/include/ED_particle.h | 6 +++--- source/blender/editors/include/ED_physics.h | 6 +++--- source/blender/editors/include/ED_render.h | 4 ++-- source/blender/editors/include/ED_screen.h | 6 +++--- source/blender/editors/include/ED_screen_types.h | 6 +++--- source/blender/editors/include/ED_sculpt.h | 4 ++-- source/blender/editors/include/ED_sequencer.h | 6 +++--- source/blender/editors/include/ED_sound.h | 6 +++--- source/blender/editors/include/ED_space_api.h | 6 +++--- source/blender/editors/include/ED_text.h | 6 +++--- source/blender/editors/include/ED_transform.h | 4 ++-- source/blender/editors/include/ED_types.h | 6 +++--- source/blender/editors/include/ED_util.h | 6 +++--- source/blender/editors/include/ED_uvedit.h | 6 +++--- source/blender/editors/include/ED_view3d.h | 6 +++--- source/blender/editors/include/UI_icons.h | 4 ++-- source/blender/editors/include/UI_interface.h | 6 +++--- source/blender/editors/include/UI_interface_icons.h | 6 +++--- source/blender/editors/include/UI_resources.h | 4 ++-- source/blender/editors/include/UI_view2d.h | 6 +++--- source/blender/editors/interface/interface_intern.h | 4 ++-- source/blender/editors/mesh/mesh_intern.h | 6 +++--- source/blender/editors/metaball/mball_intern.h | 4 ++-- source/blender/editors/object/object_intern.h | 6 +++--- source/blender/editors/physics/physics_intern.h | 6 +++--- source/blender/editors/render/render_intern.h | 6 +++--- source/blender/editors/screen/screen_intern.h | 6 +++--- source/blender/editors/sculpt_paint/paint_intern.h | 6 +++--- source/blender/editors/sculpt_paint/sculpt_intern.h | 4 ++-- source/blender/editors/sound/sound_intern.h | 6 +++--- source/blender/editors/space_action/action_intern.h | 6 +++--- source/blender/editors/space_buttons/buttons_intern.h | 6 +++--- source/blender/editors/space_clip/clip_intern.h | 6 +++--- source/blender/editors/space_console/console_intern.h | 6 +++--- source/blender/editors/space_file/file_intern.h | 6 +++--- source/blender/editors/space_file/filelist.h | 4 ++-- source/blender/editors/space_file/fsmenu.h | 4 ++-- source/blender/editors/space_graph/graph_intern.h | 6 +++--- source/blender/editors/space_image/image_intern.h | 6 +++--- source/blender/editors/space_info/info_intern.h | 6 +++--- source/blender/editors/space_logic/logic_intern.h | 6 +++--- source/blender/editors/space_nla/nla_intern.h | 6 +++--- source/blender/editors/space_node/node_intern.h | 6 +++--- source/blender/editors/space_outliner/outliner_intern.h | 6 +++--- source/blender/editors/space_script/script_intern.h | 6 +++--- source/blender/editors/space_sequencer/sequencer_intern.h | 6 +++--- source/blender/editors/space_text/text_intern.h | 6 +++--- source/blender/editors/space_time/time_intern.h | 6 +++--- source/blender/editors/space_userpref/userpref_intern.h | 6 +++--- source/blender/editors/space_view3d/view3d_intern.h | 6 +++--- source/blender/editors/transform/transform.h | 4 ++-- source/blender/editors/util/util_intern.h | 6 +++--- source/blender/editors/uvedit/uvedit_intern.h | 6 +++--- source/blender/editors/uvedit/uvedit_parametrizer.h | 6 +++--- source/blender/gpu/GPU_draw.h | 4 ++-- source/blender/gpu/GPU_extensions.h | 4 ++-- source/blender/gpu/GPU_material.h | 6 +++--- source/blender/ikplugin/BIK_api.h | 6 +++--- source/blender/ikplugin/intern/ikplugin_api.h | 6 +++--- source/blender/ikplugin/intern/iksolver_plugin.h | 6 +++--- source/blender/ikplugin/intern/itasc_plugin.h | 6 +++--- source/blender/imbuf/IMB_imbuf.h | 4 ++-- source/blender/imbuf/IMB_imbuf_types.h | 4 ++-- source/blender/imbuf/IMB_moviecache.h | 4 ++-- source/blender/imbuf/IMB_thumbs.h | 6 +++--- source/blender/imbuf/intern/IMB_allocimbuf.h | 4 ++-- source/blender/imbuf/intern/IMB_anim.h | 4 ++-- source/blender/imbuf/intern/IMB_filetype.h | 6 +++--- source/blender/imbuf/intern/IMB_filter.h | 4 ++-- source/blender/imbuf/intern/IMB_indexer.h | 4 ++-- source/blender/imbuf/intern/IMB_metadata.h | 6 +++--- source/blender/imbuf/intern/cineon/cineonfile.h | 6 +++--- source/blender/imbuf/intern/cineon/cineonlib.h | 6 +++--- source/blender/imbuf/intern/cineon/dpxfile.h | 6 +++--- source/blender/imbuf/intern/cineon/dpxlib.h | 6 +++--- source/blender/imbuf/intern/cineon/logImageCore.h | 6 +++--- source/blender/imbuf/intern/cineon/logImageLib.h | 6 +++--- source/blender/imbuf/intern/cineon/logmemfile.h | 6 +++--- source/blender/imbuf/intern/dds/BlockDXT.h | 6 +++--- source/blender/imbuf/intern/dds/Color.h | 6 +++--- source/blender/imbuf/intern/dds/ColorBlock.h | 6 +++--- source/blender/imbuf/intern/dds/Common.h | 4 ++-- source/blender/imbuf/intern/dds/DirectDrawSurface.h | 6 +++--- source/blender/imbuf/intern/dds/Image.h | 6 +++--- source/blender/imbuf/intern/dds/PixelFormat.h | 4 ++-- source/blender/imbuf/intern/dds/Stream.h | 6 +++--- source/blender/imbuf/intern/dds/dds_api.h | 4 ++-- source/blender/imbuf/intern/imbuf.h | 6 +++--- source/blender/imbuf/intern/openexr/openexr_api.h | 4 ++-- source/blender/imbuf/intern/openexr/openexr_multi.h | 4 ++-- source/blender/makesdna/DNA_ID.h | 4 ++-- source/blender/makesdna/DNA_action_types.h | 4 ++-- source/blender/makesdna/DNA_actuator_types.h | 4 ++-- source/blender/makesdna/DNA_anim_types.h | 6 +++--- source/blender/makesdna/DNA_armature_types.h | 4 ++-- source/blender/makesdna/DNA_boid_types.h | 4 ++-- source/blender/makesdna/DNA_brush_types.h | 4 ++-- source/blender/makesdna/DNA_camera_types.h | 4 ++-- source/blender/makesdna/DNA_cloth_types.h | 4 ++-- source/blender/makesdna/DNA_color_types.h | 4 ++-- source/blender/makesdna/DNA_constraint_types.h | 4 ++-- source/blender/makesdna/DNA_controller_types.h | 4 ++-- source/blender/makesdna/DNA_curve_types.h | 4 ++-- source/blender/makesdna/DNA_customdata_types.h | 4 ++-- source/blender/makesdna/DNA_defs.h | 6 +++--- source/blender/makesdna/DNA_dynamicpaint_types.h | 4 ++-- source/blender/makesdna/DNA_effect_types.h | 4 ++-- source/blender/makesdna/DNA_fileglobal_types.h | 4 ++-- source/blender/makesdna/DNA_genfile.h | 4 ++-- source/blender/makesdna/DNA_gpencil_types.h | 6 +++--- source/blender/makesdna/DNA_group_types.h | 4 ++-- source/blender/makesdna/DNA_image_types.h | 4 ++-- source/blender/makesdna/DNA_ipo_types.h | 4 ++-- source/blender/makesdna/DNA_key_types.h | 4 ++-- source/blender/makesdna/DNA_lamp_types.h | 6 +++--- source/blender/makesdna/DNA_lattice_types.h | 4 ++-- source/blender/makesdna/DNA_listBase.h | 4 ++-- source/blender/makesdna/DNA_material_types.h | 4 ++-- source/blender/makesdna/DNA_mesh_types.h | 4 ++-- source/blender/makesdna/DNA_meshdata_types.h | 4 ++-- source/blender/makesdna/DNA_meta_types.h | 4 ++-- source/blender/makesdna/DNA_modifier_types.h | 4 ++-- source/blender/makesdna/DNA_movieclip_types.h | 4 ++-- source/blender/makesdna/DNA_nla_types.h | 4 ++-- source/blender/makesdna/DNA_node_types.h | 4 ++-- source/blender/makesdna/DNA_object_fluidsim.h | 4 ++-- source/blender/makesdna/DNA_object_force.h | 4 ++-- source/blender/makesdna/DNA_object_types.h | 4 ++-- source/blender/makesdna/DNA_outliner_types.h | 4 ++-- source/blender/makesdna/DNA_packedFile_types.h | 4 ++-- source/blender/makesdna/DNA_particle_types.h | 4 ++-- source/blender/makesdna/DNA_property_types.h | 4 ++-- source/blender/makesdna/DNA_scene_types.h | 4 ++-- source/blender/makesdna/DNA_screen_types.h | 4 ++-- source/blender/makesdna/DNA_sdna_types.h | 4 ++-- source/blender/makesdna/DNA_sensor_types.h | 4 ++-- source/blender/makesdna/DNA_sequence_types.h | 4 ++-- source/blender/makesdna/DNA_smoke_types.h | 4 ++-- source/blender/makesdna/DNA_sound_types.h | 4 ++-- source/blender/makesdna/DNA_space_types.h | 4 ++-- source/blender/makesdna/DNA_speaker_types.h | 6 +++--- source/blender/makesdna/DNA_text_types.h | 4 ++-- source/blender/makesdna/DNA_texture_types.h | 4 ++-- source/blender/makesdna/DNA_tracking_types.h | 4 ++-- source/blender/makesdna/DNA_userdef_types.h | 4 ++-- source/blender/makesdna/DNA_vec_types.h | 4 ++-- source/blender/makesdna/DNA_vfont_types.h | 4 ++-- source/blender/makesdna/DNA_view2d_types.h | 4 ++-- source/blender/makesdna/DNA_view3d_types.h | 4 ++-- source/blender/makesdna/DNA_windowmanager_types.h | 6 +++--- source/blender/makesdna/DNA_world_types.h | 4 ++-- source/blender/makesrna/RNA_access.h | 6 +++--- source/blender/makesrna/RNA_define.h | 6 +++--- source/blender/makesrna/RNA_enum_types.h | 6 +++--- source/blender/makesrna/RNA_types.h | 6 +++--- source/blender/makesrna/intern/rna_internal.h | 6 +++--- source/blender/makesrna/intern/rna_internal_types.h | 6 +++--- source/blender/makesrna/intern/rna_nodetree_types.h | 1 + source/blender/modifiers/MOD_modifiertypes.h | 6 +++--- source/blender/modifiers/intern/MOD_boolean_util.h | 4 ++-- source/blender/modifiers/intern/MOD_fluidsim_util.h | 4 ++-- source/blender/modifiers/intern/MOD_util.h | 6 +++--- source/blender/modifiers/intern/MOD_weightvg_util.h | 6 +++--- source/blender/nodes/NOD_composite.h | 4 ++-- source/blender/nodes/NOD_shader.h | 4 ++-- source/blender/nodes/NOD_socket.h | 4 ++-- source/blender/nodes/NOD_texture.h | 4 ++-- source/blender/nodes/composite/node_composite_util.h | 4 ++-- source/blender/nodes/intern/node_common.h | 4 ++-- source/blender/nodes/intern/node_exec.h | 4 ++-- source/blender/nodes/intern/node_util.h | 4 ++-- source/blender/nodes/shader/node_shader_util.h | 4 ++-- source/blender/nodes/texture/node_texture_util.h | 4 ++-- source/blender/python/BPY_extern.h | 6 +++--- source/blender/python/generic/bgl.h | 6 +++--- source/blender/python/generic/bpy_internal_import.h | 6 +++--- source/blender/python/generic/idprop_py_api.h | 6 +++--- source/blender/python/generic/py_capi_utils.h | 6 +++--- source/blender/python/intern/bpy_app.h | 6 +++--- source/blender/python/intern/bpy_app_ffmpeg.h | 6 +++--- source/blender/python/intern/bpy_app_handlers.h | 6 +++--- source/blender/python/intern/bpy_driver.h | 6 +++--- source/blender/python/intern/bpy_operator.h | 4 ++-- source/blender/python/intern/bpy_operator_wrap.h | 4 ++-- source/blender/python/intern/bpy_props.h | 4 ++-- source/blender/python/intern/bpy_rna.h | 4 ++-- source/blender/python/intern/bpy_traceback.h | 6 +++--- source/blender/python/intern/bpy_util.h | 4 ++-- source/blender/python/mathutils/mathutils.h | 6 +++--- source/blender/python/mathutils/mathutils_Color.h | 6 +++--- source/blender/python/mathutils/mathutils_Euler.h | 6 +++--- source/blender/python/mathutils/mathutils_Matrix.h | 6 +++--- source/blender/python/mathutils/mathutils_Quaternion.h | 6 +++--- source/blender/python/mathutils/mathutils_Vector.h | 6 +++--- source/blender/python/mathutils/mathutils_geometry.h | 6 +++--- source/blender/python/mathutils/mathutils_noise.h | 6 +++--- source/blender/quicktime/quicktime_import.h | 6 +++--- source/blender/render/extern/include/RE_engine.h | 6 +++--- source/blender/render/extern/include/RE_pipeline.h | 6 +++--- source/blender/render/extern/include/RE_render_ext.h | 6 +++--- source/blender/render/extern/include/RE_shader_ext.h | 6 +++--- source/blender/render/intern/include/envmap.h | 6 +++--- source/blender/render/intern/include/gammaCorrectionTables.h | 4 ++-- source/blender/render/intern/include/initrender.h | 6 +++--- source/blender/render/intern/include/occlusion.h | 4 ++-- source/blender/render/intern/include/pixelblending.h | 6 +++--- source/blender/render/intern/include/pixelshading.h | 4 ++-- source/blender/render/intern/include/pointdensity.h | 6 +++--- source/blender/render/intern/include/raycounter.h | 4 ++-- source/blender/render/intern/include/rayintersection.h | 6 +++--- source/blender/render/intern/include/rayobject.h | 4 ++-- source/blender/render/intern/include/render_result.h | 6 +++--- source/blender/render/intern/include/render_types.h | 6 +++--- source/blender/render/intern/include/rendercore.h | 4 ++-- source/blender/render/intern/include/renderdatabase.h | 6 +++--- source/blender/render/intern/include/renderpipeline.h | 6 +++--- source/blender/render/intern/include/shadbuf.h | 6 +++--- source/blender/render/intern/include/sss.h | 6 +++--- source/blender/render/intern/include/strand.h | 4 ++-- source/blender/render/intern/include/sunsky.h | 6 +++--- source/blender/render/intern/include/texture.h | 6 +++--- source/blender/render/intern/include/voxeldata.h | 6 +++--- source/blender/render/intern/include/zbuf.h | 4 ++-- source/blender/render/intern/raytrace/bvh.h | 4 ++-- source/blender/render/intern/raytrace/rayobject_hint.h | 4 ++-- source/blender/render/intern/raytrace/rayobject_internal.h | 4 ++-- source/blender/render/intern/raytrace/rayobject_rtbuild.h | 4 ++-- source/blender/render/intern/raytrace/svbvh.h | 4 ++-- source/blender/windowmanager/WM_api.h | 6 +++--- source/blender/windowmanager/WM_keymap.h | 6 +++--- source/blender/windowmanager/WM_types.h | 6 +++--- source/blender/windowmanager/wm.h | 6 +++--- source/blender/windowmanager/wm_cursors.h | 6 +++--- source/blender/windowmanager/wm_draw.h | 6 +++--- source/blender/windowmanager/wm_event_system.h | 6 +++--- source/blender/windowmanager/wm_event_types.h | 6 +++--- source/blender/windowmanager/wm_files.h | 6 +++--- source/blender/windowmanager/wm_subwindow.h | 6 +++--- source/blender/windowmanager/wm_window.h | 6 +++--- 434 files changed, 1076 insertions(+), 1075 deletions(-) (limited to 'source/blender') diff --git a/source/blender/avi/AVI_avi.h b/source/blender/avi/AVI_avi.h index ea073f79a7e..00c6863f75c 100644 --- a/source/blender/avi/AVI_avi.h +++ b/source/blender/avi/AVI_avi.h @@ -50,8 +50,8 @@ * */ -#ifndef __AVI_H__ -#define __AVI_H__ +#ifndef __AVI_AVI_H__ +#define __AVI_AVI_H__ #include "MEM_sys_types.h" #include /* for FILE */ @@ -305,5 +305,5 @@ AviError AVI_write_frame (AviMovie *movie, int frame_num, ...); AviError AVI_print_error (AviError error); void AVI_set_debug (int mode); -#endif /* __AVI_H__ */ +#endif /* __AVI_AVI_H__ */ diff --git a/source/blender/avi/intern/avi_intern.h b/source/blender/avi/intern/avi_intern.h index 15307956756..c8d54fe99e9 100644 --- a/source/blender/avi/intern/avi_intern.h +++ b/source/blender/avi/intern/avi_intern.h @@ -29,8 +29,8 @@ * \ingroup avi */ -#ifndef AVI_INTERN_H -#define AVI_INTERN_H +#ifndef __AVI_INTERN_H__ +#define __AVI_INTERN_H__ #include /* for FILE */ diff --git a/source/blender/avi/intern/endian.h b/source/blender/avi/intern/endian.h index 7a443fae8df..3229f32cbbd 100644 --- a/source/blender/avi/intern/endian.h +++ b/source/blender/avi/intern/endian.h @@ -34,8 +34,8 @@ */ -#ifndef AVI_ENDIAN_H -#define AVI_ENDIAN_H +#ifndef __ENDIAN_H__ +#define __ENDIAN_H__ #include #include "AVI_avi.h" diff --git a/source/blender/blenfont/BLF_api.h b/source/blender/blenfont/BLF_api.h index a045f47cb40..d7b441e70e1 100644 --- a/source/blender/blenfont/BLF_api.h +++ b/source/blender/blenfont/BLF_api.h @@ -29,8 +29,8 @@ */ -#ifndef BLF_API_H -#define BLF_API_H +#ifndef __BLF_API_H__ +#define __BLF_API_H__ struct rctf; @@ -204,4 +204,4 @@ void BLF_dir_free(char **dirs, int count); extern int blf_mono_font; extern int blf_mono_font_render; // dont mess drawing with render threads. -#endif /* BLF_API_H */ +#endif /* __BLF_API_H__ */ diff --git a/source/blender/blenfont/BLF_translation.h b/source/blender/blenfont/BLF_translation.h index ce53b76da01..3bb6c37e345 100644 --- a/source/blender/blenfont/BLF_translation.h +++ b/source/blender/blenfont/BLF_translation.h @@ -30,8 +30,8 @@ */ -#ifndef BLF_TRANSLATION_H -#define BLF_TRANSLATION_H +#ifndef __BLF_TRANSLATION_H__ +#define __BLF_TRANSLATION_H__ #define TEXT_DOMAIN_NAME "blender" @@ -75,4 +75,4 @@ const char *BLF_translate_do_tooltip(const char *msgid); #define IFACE_(msgid) BLF_translate_do_iface(msgid) #define TIP_(msgid) BLF_translate_do_tooltip(msgid) -#endif /* BLF_TRANSLATION_H */ +#endif /* __BLF_TRANSLATION_H__ */ diff --git a/source/blender/blenfont/intern/blf_internal.h b/source/blender/blenfont/intern/blf_internal.h index 20124666bcc..3ef0b3422fe 100644 --- a/source/blender/blenfont/intern/blf_internal.h +++ b/source/blender/blenfont/intern/blf_internal.h @@ -28,8 +28,8 @@ */ -#ifndef BLF_INTERNAL_H -#define BLF_INTERNAL_H +#ifndef __BLF_INTERNAL_H__ +#define __BLF_INTERNAL_H__ struct FontBLF; struct GlyphBLF; @@ -72,4 +72,4 @@ struct GlyphBLF *blf_glyph_add(struct FontBLF *font, unsigned int index, unsigne void blf_glyph_free(struct GlyphBLF *g); int blf_glyph_render(struct FontBLF *font, struct GlyphBLF *g, float x, float y); -#endif /* BLF_INTERNAL_H */ +#endif /* __BLF_INTERNAL_H__ */ diff --git a/source/blender/blenfont/intern/blf_internal_types.h b/source/blender/blenfont/intern/blf_internal_types.h index e8021aad6d1..cbe7975fdd6 100644 --- a/source/blender/blenfont/intern/blf_internal_types.h +++ b/source/blender/blenfont/intern/blf_internal_types.h @@ -28,8 +28,8 @@ */ -#ifndef BLF_INTERNAL_TYPES_H -#define BLF_INTERNAL_TYPES_H +#ifndef __BLF_INTERNAL_TYPES_H__ +#define __BLF_INTERNAL_TYPES_H__ typedef struct GlyphCacheBLF { struct GlyphCacheBLF *next; @@ -223,4 +223,4 @@ typedef struct DirBLF { char *path; } DirBLF; -#endif /* BLF_INTERNAL_TYPES_H */ +#endif /* __BLF_INTERNAL_TYPES_H__ */ diff --git a/source/blender/blenkernel/BKE_DerivedMesh.h b/source/blender/blenkernel/BKE_DerivedMesh.h index a887412bbf4..40e2a4082f6 100644 --- a/source/blender/blenkernel/BKE_DerivedMesh.h +++ b/source/blender/blenkernel/BKE_DerivedMesh.h @@ -25,8 +25,8 @@ * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BKE_DERIVEDMESH_H -#define BKE_DERIVEDMESH_H +#ifndef __BKE_DERIVEDMESH_H__ +#define __BKE_DERIVEDMESH_H__ /** \file BKE_DerivedMesh.h * \ingroup bke diff --git a/source/blender/blenkernel/BKE_action.h b/source/blender/blenkernel/BKE_action.h index 67efb7752ea..564cd235869 100644 --- a/source/blender/blenkernel/BKE_action.h +++ b/source/blender/blenkernel/BKE_action.h @@ -24,8 +24,8 @@ * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BKE_ACTION_H -#define BKE_ACTION_H +#ifndef __BKE_ACTION_H__ +#define __BKE_ACTION_H__ /** \file BKE_action.h * \ingroup bke * \brief Blender kernel action and pose functionality. diff --git a/source/blender/blenkernel/BKE_anim.h b/source/blender/blenkernel/BKE_anim.h index a55955c4d04..d605776ed50 100644 --- a/source/blender/blenkernel/BKE_anim.h +++ b/source/blender/blenkernel/BKE_anim.h @@ -24,8 +24,8 @@ * * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BKE_ANIM_H -#define BKE_ANIM_H +#ifndef __BKE_ANIM_H__ +#define __BKE_ANIM_H__ /** \file BKE_anim.h * \ingroup bke diff --git a/source/blender/blenkernel/BKE_animsys.h b/source/blender/blenkernel/BKE_animsys.h index 8e5b313b919..fb4a44b2c80 100644 --- a/source/blender/blenkernel/BKE_animsys.h +++ b/source/blender/blenkernel/BKE_animsys.h @@ -23,8 +23,8 @@ * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BKE_ANIM_SYS_H -#define BKE_ANIM_SYS_H +#ifndef __BKE_ANIMSYS_H__ +#define __BKE_ANIMSYS_H__ /** \file BKE_animsys.h * \ingroup bke @@ -160,4 +160,4 @@ void animsys_evaluate_action_group(struct PointerRNA *ptr, struct bAction *act, /* ************************************* */ -#endif /* BKE_ANIM_SYS_H*/ +#endif /* __BKE_ANIMSYS_H__*/ diff --git a/source/blender/blenkernel/BKE_armature.h b/source/blender/blenkernel/BKE_armature.h index 07d8d69f44e..b09122d022b 100644 --- a/source/blender/blenkernel/BKE_armature.h +++ b/source/blender/blenkernel/BKE_armature.h @@ -24,8 +24,8 @@ * * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BKE_ARMATURE_H -#define BKE_ARMATURE_H +#ifndef __BKE_ARMATURE_H__ +#define __BKE_ARMATURE_H__ /** \file BKE_armature.h * \ingroup bke diff --git a/source/blender/blenkernel/BKE_blender.h b/source/blender/blenkernel/BKE_blender.h index f735af8b24c..1c661b3804f 100644 --- a/source/blender/blenkernel/BKE_blender.h +++ b/source/blender/blenkernel/BKE_blender.h @@ -24,8 +24,8 @@ * * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BKE_BLENDER_H -#define BKE_BLENDER_H +#ifndef __BKE_BLENDER_H__ +#define __BKE_BLENDER_H__ /** \file BKE_blender.h * \ingroup bke diff --git a/source/blender/blenkernel/BKE_bmesh.h b/source/blender/blenkernel/BKE_bmesh.h index c8df6c4f455..51fb0da61fa 100644 --- a/source/blender/blenkernel/BKE_bmesh.h +++ b/source/blender/blenkernel/BKE_bmesh.h @@ -25,8 +25,8 @@ * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BKE_BMESH_H -#define BKE_BMESH_H +#ifndef __BKE_BMESH_H__ +#define __BKE_BMESH_H__ /** \file BKE_bmesh.h * \ingroup bke diff --git a/source/blender/blenkernel/BKE_bmeshCustomData.h b/source/blender/blenkernel/BKE_bmeshCustomData.h index 793410371df..bbdc6f39cff 100644 --- a/source/blender/blenkernel/BKE_bmeshCustomData.h +++ b/source/blender/blenkernel/BKE_bmeshCustomData.h @@ -26,8 +26,8 @@ */ -#ifndef BKE_BMESHCUSTOMDATA_H -#define BKE_BMESHCUSTOMDATA_H +#ifndef __BKE_BMESHCUSTOMDATA_H__ +#define __BKE_BMESHCUSTOMDATA_H__ /** \file BKE_bmeshCustomData.h * \ingroup bke diff --git a/source/blender/blenkernel/BKE_bmfont.h b/source/blender/blenkernel/BKE_bmfont.h index 71fd2ae3d67..6c0cbe3a51b 100644 --- a/source/blender/blenkernel/BKE_bmfont.h +++ b/source/blender/blenkernel/BKE_bmfont.h @@ -24,8 +24,8 @@ * * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BKE_BMFONT_H -#define BKE_BMFONT_H +#ifndef __BKE_BMFONT_H__ +#define __BKE_BMFONT_H__ /** \file BKE_bmfont.h * \ingroup bke diff --git a/source/blender/blenkernel/BKE_bmfont_types.h b/source/blender/blenkernel/BKE_bmfont_types.h index a4d37069cab..73ef0c3a2c3 100644 --- a/source/blender/blenkernel/BKE_bmfont_types.h +++ b/source/blender/blenkernel/BKE_bmfont_types.h @@ -24,8 +24,8 @@ * * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BKE_BMFONT_TYPES_H -#define BKE_BMFONT_TYPES_H +#ifndef __BKE_BMFONT_TYPES_H__ +#define __BKE_BMFONT_TYPES_H__ /** \file BKE_bmfont_types.h * \ingroup bke diff --git a/source/blender/blenkernel/BKE_boids.h b/source/blender/blenkernel/BKE_boids.h index 18e8be1512e..bb724c6632e 100644 --- a/source/blender/blenkernel/BKE_boids.h +++ b/source/blender/blenkernel/BKE_boids.h @@ -25,8 +25,8 @@ * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BKE_BOIDS_H -#define BKE_BOIDS_H +#ifndef __BKE_BOIDS_H__ +#define __BKE_BOIDS_H__ /** \file BKE_boids.h * \ingroup bke diff --git a/source/blender/blenkernel/BKE_booleanops_mesh.h b/source/blender/blenkernel/BKE_booleanops_mesh.h index 4c4a2dc9998..2e48b664449 100644 --- a/source/blender/blenkernel/BKE_booleanops_mesh.h +++ b/source/blender/blenkernel/BKE_booleanops_mesh.h @@ -24,8 +24,8 @@ * * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BKE_BOOLEANOPS_MESH_H -#define BKE_BOOLEANOPS_MESH_H +#ifndef __BKE_BOOLEANOPS_MESH_H__ +#define __BKE_BOOLEANOPS_MESH_H__ /** \file BKE_booleanops_mesh.h * \ingroup bke diff --git a/source/blender/blenkernel/BKE_brush.h b/source/blender/blenkernel/BKE_brush.h index 13f72634bda..f5cd2635ff7 100644 --- a/source/blender/blenkernel/BKE_brush.h +++ b/source/blender/blenkernel/BKE_brush.h @@ -26,8 +26,8 @@ * General operations for brushes. */ -#ifndef BKE_BRUSH_H -#define BKE_BRUSH_H +#ifndef __BKE_BRUSH_H__ +#define __BKE_BRUSH_H__ /** \file BKE_brush.h * \ingroup bke diff --git a/source/blender/blenkernel/BKE_bullet.h b/source/blender/blenkernel/BKE_bullet.h index 5eb653f69d1..2103eea1041 100644 --- a/source/blender/blenkernel/BKE_bullet.h +++ b/source/blender/blenkernel/BKE_bullet.h @@ -24,8 +24,8 @@ * * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BKE_BULLET_H -#define BKE_BULLET_H +#ifndef __BKE_BULLET_H__ +#define __BKE_BULLET_H__ /** \file BKE_bullet.h * \ingroup bke diff --git a/source/blender/blenkernel/BKE_bvhutils.h b/source/blender/blenkernel/BKE_bvhutils.h index 07f0c2fef7c..d3d8546ddae 100644 --- a/source/blender/blenkernel/BKE_bvhutils.h +++ b/source/blender/blenkernel/BKE_bvhutils.h @@ -24,8 +24,8 @@ * * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BKE_BVHUTILS_H -#define BKE_BVHUTILS_H +#ifndef __BKE_BVHUTILS_H__ +#define __BKE_BVHUTILS_H__ /** \file BKE_bvhutils.h * \ingroup bke diff --git a/source/blender/blenkernel/BKE_camera.h b/source/blender/blenkernel/BKE_camera.h index 72e22dc1583..6d10219e74c 100644 --- a/source/blender/blenkernel/BKE_camera.h +++ b/source/blender/blenkernel/BKE_camera.h @@ -25,8 +25,8 @@ * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BKE_CAMERA_H -#define BKE_CAMERA_H +#ifndef __BKE_CAMERA_H__ +#define __BKE_CAMERA_H__ /** \file BKE_camera.h * \ingroup bke diff --git a/source/blender/blenkernel/BKE_cdderivedmesh.h b/source/blender/blenkernel/BKE_cdderivedmesh.h index c71c86e110d..9b274a8a411 100644 --- a/source/blender/blenkernel/BKE_cdderivedmesh.h +++ b/source/blender/blenkernel/BKE_cdderivedmesh.h @@ -32,8 +32,8 @@ * mesh elements (vertices, edges and faces) as layers of custom element data. */ -#ifndef BKE_CDDERIVEDMESH_H -#define BKE_CDDERIVEDMESH_H +#ifndef __BKE_CDDERIVEDMESH_H__ +#define __BKE_CDDERIVEDMESH_H__ #include "BKE_DerivedMesh.h" diff --git a/source/blender/blenkernel/BKE_cloth.h b/source/blender/blenkernel/BKE_cloth.h index 6d42b8dc80b..ec20e3234a3 100644 --- a/source/blender/blenkernel/BKE_cloth.h +++ b/source/blender/blenkernel/BKE_cloth.h @@ -24,8 +24,8 @@ * * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BKE_CLOTH_H -#define BKE_CLOTH_H +#ifndef __BKE_CLOTH_H__ +#define __BKE_CLOTH_H__ /** \file BKE_cloth.h * \ingroup bke diff --git a/source/blender/blenkernel/BKE_collision.h b/source/blender/blenkernel/BKE_collision.h index acb3ae03816..453c16bb8c8 100644 --- a/source/blender/blenkernel/BKE_collision.h +++ b/source/blender/blenkernel/BKE_collision.h @@ -24,8 +24,8 @@ * * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BKE_COLLISIONS_H -#define BKE_COLLISIONS_H +#ifndef __BKE_COLLISION_H__ +#define __BKE_COLLISION_H__ /** \file BKE_collision.h * \ingroup bke diff --git a/source/blender/blenkernel/BKE_colortools.h b/source/blender/blenkernel/BKE_colortools.h index b358209a0f4..1da0caf97c2 100644 --- a/source/blender/blenkernel/BKE_colortools.h +++ b/source/blender/blenkernel/BKE_colortools.h @@ -24,8 +24,8 @@ * * ***** END GPL/BL DUAL LICENSE BLOCK ***** */ -#ifndef BKE_COLORTOOLS_H -#define BKE_COLORTOOLS_H +#ifndef __BKE_COLORTOOLS_H__ +#define __BKE_COLORTOOLS_H__ /** \file BKE_colortools.h * \ingroup bke diff --git a/source/blender/blenkernel/BKE_constraint.h b/source/blender/blenkernel/BKE_constraint.h index 925d1180dbd..f834ad5e774 100644 --- a/source/blender/blenkernel/BKE_constraint.h +++ b/source/blender/blenkernel/BKE_constraint.h @@ -25,8 +25,8 @@ * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BKE_CONSTRAINT_H -#define BKE_CONSTRAINT_H +#ifndef __BKE_CONSTRAINT_H__ +#define __BKE_CONSTRAINT_H__ /** \file BKE_constraint.h * \ingroup bke diff --git a/source/blender/blenkernel/BKE_context.h b/source/blender/blenkernel/BKE_context.h index 0aefe2231a5..78354cd4713 100644 --- a/source/blender/blenkernel/BKE_context.h +++ b/source/blender/blenkernel/BKE_context.h @@ -23,8 +23,8 @@ * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BKE_CONTEXT_H -#define BKE_CONTEXT_H +#ifndef __BKE_CONTEXT_H__ +#define __BKE_CONTEXT_H__ /** \file BKE_context.h * \ingroup bke diff --git a/source/blender/blenkernel/BKE_curve.h b/source/blender/blenkernel/BKE_curve.h index f0704741ebb..dd0c021f281 100644 --- a/source/blender/blenkernel/BKE_curve.h +++ b/source/blender/blenkernel/BKE_curve.h @@ -24,8 +24,8 @@ * * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BKE_CURVE_H -#define BKE_CURVE_H +#ifndef __BKE_CURVE_H__ +#define __BKE_CURVE_H__ /** \file BKE_curve.h * \ingroup bke diff --git a/source/blender/blenkernel/BKE_customdata.h b/source/blender/blenkernel/BKE_customdata.h index 7ad25ac7e79..764088da47b 100644 --- a/source/blender/blenkernel/BKE_customdata.h +++ b/source/blender/blenkernel/BKE_customdata.h @@ -31,8 +31,8 @@ * \brief CustomData interface, see also DNA_customdata_types.h. */ -#ifndef BKE_CUSTOMDATA_H -#define BKE_CUSTOMDATA_H +#ifndef __BKE_CUSTOMDATA_H__ +#define __BKE_CUSTOMDATA_H__ #ifdef __cplusplus extern "C" { diff --git a/source/blender/blenkernel/BKE_customdata_file.h b/source/blender/blenkernel/BKE_customdata_file.h index be7aaa70188..c4c41c20d80 100644 --- a/source/blender/blenkernel/BKE_customdata_file.h +++ b/source/blender/blenkernel/BKE_customdata_file.h @@ -18,8 +18,8 @@ * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BKE_CUSTOMDATA_FILE_H -#define BKE_CUSTOMDATA_FILE_H +#ifndef __BKE_CUSTOMDATA_FILE_H__ +#define __BKE_CUSTOMDATA_FILE_H__ /** \file BKE_customdata_file.h * \ingroup bke @@ -57,5 +57,5 @@ void cdf_remove(const char *filename); CDataFileLayer *cdf_layer_find(CDataFile *cdf, int type, const char *name); CDataFileLayer *cdf_layer_add(CDataFile *cdf, int type, const char *name, size_t datasize); -#endif /* BKE_CUSTOMDATA_FILE_H */ +#endif /* __BKE_CUSTOMDATA_FILE_H__ */ diff --git a/source/blender/blenkernel/BKE_deform.h b/source/blender/blenkernel/BKE_deform.h index 11747899aa9..2e9c94a3bb1 100644 --- a/source/blender/blenkernel/BKE_deform.h +++ b/source/blender/blenkernel/BKE_deform.h @@ -25,8 +25,8 @@ * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BKE_DEFORM_H -#define BKE_DEFORM_H +#ifndef __BKE_DEFORM_H__ +#define __BKE_DEFORM_H__ /** \file BKE_deform.h * \ingroup bke diff --git a/source/blender/blenkernel/BKE_depsgraph.h b/source/blender/blenkernel/BKE_depsgraph.h index 5d475903feb..1bc85a64c77 100644 --- a/source/blender/blenkernel/BKE_depsgraph.h +++ b/source/blender/blenkernel/BKE_depsgraph.h @@ -23,8 +23,8 @@ * ***** END GPL LICENSE BLOCK ***** */ -#ifndef DEPSGRAPH_API -#define DEPSGRAPH_API +#ifndef __BKE_DEPSGRAPH_H__ +#define __BKE_DEPSGRAPH_H__ /** \file BKE_depsgraph.h * \ingroup bke diff --git a/source/blender/blenkernel/BKE_displist.h b/source/blender/blenkernel/BKE_displist.h index 2d863201767..f43ec749a69 100644 --- a/source/blender/blenkernel/BKE_displist.h +++ b/source/blender/blenkernel/BKE_displist.h @@ -27,8 +27,8 @@ */ -#ifndef BKE_DISPLIST_H -#define BKE_DISPLIST_H +#ifndef __BKE_DISPLIST_H__ +#define __BKE_DISPLIST_H__ /** \file BKE_displist.h * \ingroup bke diff --git a/source/blender/blenkernel/BKE_dynamicpaint.h b/source/blender/blenkernel/BKE_dynamicpaint.h index 75b3c5b4f24..b6de8188536 100644 --- a/source/blender/blenkernel/BKE_dynamicpaint.h +++ b/source/blender/blenkernel/BKE_dynamicpaint.h @@ -11,8 +11,8 @@ * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BKE_DYNAMIC_PAINT_H_ -#define BKE_DYNAMIC_PAINT_H_ +#ifndef __BKE_DYNAMICPAINT_H__ +#define __BKE_DYNAMICPAINT_H__ struct bContext; struct wmOperator; @@ -88,4 +88,4 @@ void dynamicPaint_outputSurfaceImage(struct DynamicPaintSurface *surface, char* #define DPAINT_WAVE_OBSTACLE 1 #define DPAINT_WAVE_REFLECT_ONLY 2 -#endif /* BKE_DYNAMIC_PAINT_H_ */ +#endif /* __BKE_DYNAMICPAINT_H__ */ diff --git a/source/blender/blenkernel/BKE_effect.h b/source/blender/blenkernel/BKE_effect.h index 3ebd57dde39..c2706ddb5c0 100644 --- a/source/blender/blenkernel/BKE_effect.h +++ b/source/blender/blenkernel/BKE_effect.h @@ -24,8 +24,8 @@ * * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BKE_EFFECT_H -#define BKE_EFFECT_H +#ifndef __BKE_EFFECT_H__ +#define __BKE_EFFECT_H__ /** \file BKE_effect.h * \ingroup bke diff --git a/source/blender/blenkernel/BKE_fcurve.h b/source/blender/blenkernel/BKE_fcurve.h index 27e9140ba77..d79d6a204b9 100644 --- a/source/blender/blenkernel/BKE_fcurve.h +++ b/source/blender/blenkernel/BKE_fcurve.h @@ -23,8 +23,8 @@ * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BKE_FCURVE_H -#define BKE_FCURVE_H +#ifndef __BKE_FCURVE_H__ +#define __BKE_FCURVE_H__ /** \file BKE_fcurve.h * \ingroup bke @@ -270,4 +270,4 @@ void fcurve_store_samples(struct FCurve *fcu, void *data, int start, int end, Fc } #endif -#endif /* BKE_FCURVE_H*/ +#endif /* __BKE_FCURVE_H__*/ diff --git a/source/blender/blenkernel/BKE_fluidsim.h b/source/blender/blenkernel/BKE_fluidsim.h index 2b2c7a4ff87..c2b1b1d6cad 100644 --- a/source/blender/blenkernel/BKE_fluidsim.h +++ b/source/blender/blenkernel/BKE_fluidsim.h @@ -25,8 +25,8 @@ * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BKE_FLUIDSIM_H -#define BKE_FLUIDSIM_H +#ifndef __BKE_FLUIDSIM_H__ +#define __BKE_FLUIDSIM_H__ /** \file BKE_fluidsim.h * \ingroup bke diff --git a/source/blender/blenkernel/BKE_font.h b/source/blender/blenkernel/BKE_font.h index e164294b9a2..e94787cfd3c 100644 --- a/source/blender/blenkernel/BKE_font.h +++ b/source/blender/blenkernel/BKE_font.h @@ -24,8 +24,8 @@ * * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BKE_VFONT_H -#define BKE_VFONT_H +#ifndef __BKE_FONT_H__ +#define __BKE_FONT_H__ /** \file BKE_font.h * \ingroup bke diff --git a/source/blender/blenkernel/BKE_global.h b/source/blender/blenkernel/BKE_global.h index ee3edbb47e7..fab42b5667b 100644 --- a/source/blender/blenkernel/BKE_global.h +++ b/source/blender/blenkernel/BKE_global.h @@ -24,8 +24,8 @@ * * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BKE_GLOBAL_H -#define BKE_GLOBAL_H +#ifndef __BKE_GLOBAL_H__ +#define __BKE_GLOBAL_H__ /** \file BKE_global.h * \ingroup bke diff --git a/source/blender/blenkernel/BKE_gpencil.h b/source/blender/blenkernel/BKE_gpencil.h index dbb1107c228..bb0216fe11c 100644 --- a/source/blender/blenkernel/BKE_gpencil.h +++ b/source/blender/blenkernel/BKE_gpencil.h @@ -23,8 +23,8 @@ * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BKE_GPENCIL_H -#define BKE_GPENCIL_H +#ifndef __BKE_GPENCIL_H__ +#define __BKE_GPENCIL_H__ /** \file BKE_gpencil.h * \ingroup bke @@ -63,4 +63,4 @@ struct bGPDlayer *gpencil_layer_getactive(struct bGPdata *gpd); void gpencil_layer_setactive(struct bGPdata *gpd, struct bGPDlayer *active); void gpencil_layer_delactive(struct bGPdata *gpd); -#endif /* BKE_GPENCIL_H */ +#endif /* __BKE_GPENCIL_H__ */ diff --git a/source/blender/blenkernel/BKE_group.h b/source/blender/blenkernel/BKE_group.h index 044a40658c3..6629f0bdf7f 100644 --- a/source/blender/blenkernel/BKE_group.h +++ b/source/blender/blenkernel/BKE_group.h @@ -24,8 +24,8 @@ * * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BKE_GROUP_H -#define BKE_GROUP_H +#ifndef __BKE_GROUP_H__ +#define __BKE_GROUP_H__ /** \file BKE_group.h * \ingroup bke diff --git a/source/blender/blenkernel/BKE_icons.h b/source/blender/blenkernel/BKE_icons.h index ee18a41dbfe..85f259c3d94 100644 --- a/source/blender/blenkernel/BKE_icons.h +++ b/source/blender/blenkernel/BKE_icons.h @@ -25,8 +25,8 @@ * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BKE_ICONS_H -#define BKE_ICONS_H +#ifndef __BKE_ICONS_H__ +#define __BKE_ICONS_H__ /** \file BKE_icons.h * \ingroup bke @@ -90,4 +90,4 @@ struct PreviewImage* BKE_previewimg_copy(struct PreviewImage *prv); /* retrieve existing or create new preview image */ struct PreviewImage* BKE_previewimg_get(struct ID *id); -#endif /* BKE_ICONS_H */ +#endif /* __BKE_ICONS_H__ */ diff --git a/source/blender/blenkernel/BKE_idcode.h b/source/blender/blenkernel/BKE_idcode.h index 57855a7082f..2188bed1bf7 100644 --- a/source/blender/blenkernel/BKE_idcode.h +++ b/source/blender/blenkernel/BKE_idcode.h @@ -25,8 +25,8 @@ * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BKE_ID_INFO_H -#define BKE_ID_INFO_H +#ifndef __BKE_IDCODE_H__ +#define __BKE_IDCODE_H__ /** \file BKE_idcode.h * \ingroup bke diff --git a/source/blender/blenkernel/BKE_idprop.h b/source/blender/blenkernel/BKE_idprop.h index fbe5bf2ef44..5a661f7c731 100644 --- a/source/blender/blenkernel/BKE_idprop.h +++ b/source/blender/blenkernel/BKE_idprop.h @@ -23,8 +23,8 @@ * ***** END GPL LICENSE BLOCK ***** */ -#ifndef _BKE_IDPROP_H -#define _BKE_IDPROP_H +#ifndef __BKE_IDPROP_H__ +#define __BKE_IDPROP_H__ /** \file BKE_idprop.h * \ingroup bke @@ -204,4 +204,4 @@ void IDP_UnlinkProperty(struct IDProperty *prop); #define IDP_IDPArray(prop) ((IDProperty*)(prop)->data.pointer) #define IDP_Double(prop) (*(double*)&(prop)->data.val) -#endif /* _BKE_IDPROP_H */ +#endif /* __BKE_IDPROP_H__ */ diff --git a/source/blender/blenkernel/BKE_image.h b/source/blender/blenkernel/BKE_image.h index 5cdc3537f5b..5055372b68f 100644 --- a/source/blender/blenkernel/BKE_image.h +++ b/source/blender/blenkernel/BKE_image.h @@ -24,8 +24,8 @@ * * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BKE_IMAGE_H -#define BKE_IMAGE_H +#ifndef __BKE_IMAGE_H__ +#define __BKE_IMAGE_H__ /** \file BKE_image.h * \ingroup bke diff --git a/source/blender/blenkernel/BKE_ipo.h b/source/blender/blenkernel/BKE_ipo.h index d21b0597976..547e7de7634 100644 --- a/source/blender/blenkernel/BKE_ipo.h +++ b/source/blender/blenkernel/BKE_ipo.h @@ -24,8 +24,8 @@ * * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BKE_IPO_H -#define BKE_IPO_H +#ifndef __BKE_IPO_H__ +#define __BKE_IPO_H__ /** \file BKE_ipo.h * \ingroup bke diff --git a/source/blender/blenkernel/BKE_key.h b/source/blender/blenkernel/BKE_key.h index c055bb2004b..c1f75baf8ff 100644 --- a/source/blender/blenkernel/BKE_key.h +++ b/source/blender/blenkernel/BKE_key.h @@ -24,8 +24,8 @@ * * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BKE_KEY_H -#define BKE_KEY_H +#ifndef __BKE_KEY_H__ +#define __BKE_KEY_H__ /** \file BKE_key.h * \ingroup bke @@ -87,4 +87,4 @@ extern int slurph_opt; }; #endif -#endif // BKE_KEY_H +#endif // __BKE_KEY_H__ diff --git a/source/blender/blenkernel/BKE_lamp.h b/source/blender/blenkernel/BKE_lamp.h index cc9452ae155..50e25576320 100644 --- a/source/blender/blenkernel/BKE_lamp.h +++ b/source/blender/blenkernel/BKE_lamp.h @@ -25,8 +25,8 @@ * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BKE_LAMP_H -#define BKE_LAMP_H +#ifndef __BKE_LAMP_H__ +#define __BKE_LAMP_H__ /** \file BKE_lamp.h * \ingroup bke diff --git a/source/blender/blenkernel/BKE_lattice.h b/source/blender/blenkernel/BKE_lattice.h index b5395309896..8a1529a7ad0 100644 --- a/source/blender/blenkernel/BKE_lattice.h +++ b/source/blender/blenkernel/BKE_lattice.h @@ -25,8 +25,8 @@ * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BKE_LATTICE_H -#define BKE_LATTICE_H +#ifndef __BKE_LATTICE_H__ +#define __BKE_LATTICE_H__ /** \file BKE_lattice.h * \ingroup bke diff --git a/source/blender/blenkernel/BKE_library.h b/source/blender/blenkernel/BKE_library.h index e8d6c85664b..e18a510ac07 100644 --- a/source/blender/blenkernel/BKE_library.h +++ b/source/blender/blenkernel/BKE_library.h @@ -24,8 +24,8 @@ * * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BKE_LIBRARY_TYPES_H -#define BKE_LIBRARY_TYPES_H +#ifndef __BKE_LIBRARY_H__ +#define __BKE_LIBRARY_H__ /** \file BKE_library.h * \ingroup bke diff --git a/source/blender/blenkernel/BKE_main.h b/source/blender/blenkernel/BKE_main.h index 05ba60b8a5b..ffcbb6e40bc 100644 --- a/source/blender/blenkernel/BKE_main.h +++ b/source/blender/blenkernel/BKE_main.h @@ -24,8 +24,8 @@ * * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BKE_MAIN_H -#define BKE_MAIN_H +#ifndef __BKE_MAIN_H__ +#define __BKE_MAIN_H__ /** \file BKE_main.h * \ingroup bke diff --git a/source/blender/blenkernel/BKE_material.h b/source/blender/blenkernel/BKE_material.h index 0079ecb7d9c..3e73f6b9dd9 100644 --- a/source/blender/blenkernel/BKE_material.h +++ b/source/blender/blenkernel/BKE_material.h @@ -25,8 +25,8 @@ * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BKE_MATERIAL_H -#define BKE_MATERIAL_H +#ifndef __BKE_MATERIAL_H__ +#define __BKE_MATERIAL_H__ /** \file BKE_material.h * \ingroup bke diff --git a/source/blender/blenkernel/BKE_mball.h b/source/blender/blenkernel/BKE_mball.h index 3dde54fd811..e3b5a006edf 100644 --- a/source/blender/blenkernel/BKE_mball.h +++ b/source/blender/blenkernel/BKE_mball.h @@ -24,8 +24,8 @@ * * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BKE_MBALL_H -#define BKE_MBALL_H +#ifndef __BKE_MBALL_H__ +#define __BKE_MBALL_H__ /** \file BKE_mball.h * \ingroup bke diff --git a/source/blender/blenkernel/BKE_mesh.h b/source/blender/blenkernel/BKE_mesh.h index 30a4b154e31..ba6bf330b1e 100644 --- a/source/blender/blenkernel/BKE_mesh.h +++ b/source/blender/blenkernel/BKE_mesh.h @@ -24,8 +24,8 @@ * * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BKE_MESH_H -#define BKE_MESH_H +#ifndef __BKE_MESH_H__ +#define __BKE_MESH_H__ /** \file BKE_mesh.h * \ingroup bke @@ -213,4 +213,4 @@ void mesh_loops_to_mface_corners(struct CustomData *fdata, struct CustomData *ld } #endif -#endif /* BKE_MESH_H */ +#endif /* __BKE_MESH_H__ */ diff --git a/source/blender/blenkernel/BKE_modifier.h b/source/blender/blenkernel/BKE_modifier.h index f72bc5b93ec..895fe64bea8 100644 --- a/source/blender/blenkernel/BKE_modifier.h +++ b/source/blender/blenkernel/BKE_modifier.h @@ -24,8 +24,8 @@ * * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BKE_MODIFIER_H -#define BKE_MODIFIER_H +#ifndef __BKE_MODIFIER_H__ +#define __BKE_MODIFIER_H__ /** \file BKE_modifier.h * \ingroup bke diff --git a/source/blender/blenkernel/BKE_movieclip.h b/source/blender/blenkernel/BKE_movieclip.h index eabbf459584..2d78e924c90 100644 --- a/source/blender/blenkernel/BKE_movieclip.h +++ b/source/blender/blenkernel/BKE_movieclip.h @@ -24,8 +24,8 @@ * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BKE_MOVIECLIP_H -#define BKE_MOVIECLIP_H +#ifndef __BKE_MOVIECLIP_H__ +#define __BKE_MOVIECLIP_H__ /** \file BKE_movieclip.h * \ingroup bke diff --git a/source/blender/blenkernel/BKE_multires.h b/source/blender/blenkernel/BKE_multires.h index 4f1262cd523..53a92f8c2ce 100644 --- a/source/blender/blenkernel/BKE_multires.h +++ b/source/blender/blenkernel/BKE_multires.h @@ -25,8 +25,8 @@ * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BKE_MULTIRES_H -#define BKE_MULTIRES_H +#ifndef __BKE_MULTIRES_H__ +#define __BKE_MULTIRES_H__ /** \file BKE_multires.h * \ingroup bke @@ -94,5 +94,5 @@ void mdisp_apply_weight(const int S, const int corners, int x, int y, const int void mdisp_flip_disp(const int S, const int corners, const float axis_x[2], const float axis_y[2], float disp[3]); void mdisp_join_tris(struct MDisps *dst, struct MDisps *tri1, struct MDisps *tri2); -#endif // BKE_MULTIRES_H +#endif // __BKE_MULTIRES_H__ diff --git a/source/blender/blenkernel/BKE_navmesh_conversion.h b/source/blender/blenkernel/BKE_navmesh_conversion.h index ab5c2b19707..8de53ed8b8e 100644 --- a/source/blender/blenkernel/BKE_navmesh_conversion.h +++ b/source/blender/blenkernel/BKE_navmesh_conversion.h @@ -25,8 +25,8 @@ * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BKE_NAVMESH_CONVERSION_H -#define BKE_NAVMESH_CONVERSION_H +#ifndef __BKE_NAVMESH_CONVERSION_H__ +#define __BKE_NAVMESH_CONVERSION_H__ struct DerivedMesh; diff --git a/source/blender/blenkernel/BKE_nla.h b/source/blender/blenkernel/BKE_nla.h index 773c5ced1cb..921972c9fa8 100644 --- a/source/blender/blenkernel/BKE_nla.h +++ b/source/blender/blenkernel/BKE_nla.h @@ -25,8 +25,8 @@ * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BKE_NLA_H -#define BKE_NLA_H +#ifndef __BKE_NLA_H__ +#define __BKE_NLA_H__ /** \file BKE_nla.h * \ingroup bke diff --git a/source/blender/blenkernel/BKE_node.h b/source/blender/blenkernel/BKE_node.h index 0cccd8a366b..ae2f9305894 100644 --- a/source/blender/blenkernel/BKE_node.h +++ b/source/blender/blenkernel/BKE_node.h @@ -25,8 +25,8 @@ * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BKE_NODE_H -#define BKE_NODE_H +#ifndef __BKE_NODE_H__ +#define __BKE_NODE_H__ /** \file BKE_node.h * \ingroup bke diff --git a/source/blender/blenkernel/BKE_object.h b/source/blender/blenkernel/BKE_object.h index 828b0b47e3a..ac703663864 100644 --- a/source/blender/blenkernel/BKE_object.h +++ b/source/blender/blenkernel/BKE_object.h @@ -25,8 +25,8 @@ * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BKE_OBJECT_H -#define BKE_OBJECT_H +#ifndef __BKE_OBJECT_H__ +#define __BKE_OBJECT_H__ /** \file BKE_object.h * \ingroup bke diff --git a/source/blender/blenkernel/BKE_ocean.h b/source/blender/blenkernel/BKE_ocean.h index c8ce3f8ce63..7c0d99b35ea 100644 --- a/source/blender/blenkernel/BKE_ocean.h +++ b/source/blender/blenkernel/BKE_ocean.h @@ -23,8 +23,8 @@ * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BKE_OCEAN_H -#define BKE_OCEAN_H +#ifndef __BKE_OCEAN_H__ +#define __BKE_OCEAN_H__ #ifdef __cplusplus extern "C" { diff --git a/source/blender/blenkernel/BKE_packedFile.h b/source/blender/blenkernel/BKE_packedFile.h index 606d6167937..1eff20cbd57 100644 --- a/source/blender/blenkernel/BKE_packedFile.h +++ b/source/blender/blenkernel/BKE_packedFile.h @@ -24,8 +24,8 @@ * * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BKE_PACKEDFILE_H -#define BKE_PACKEDFILE_H +#ifndef __BKE_PACKEDFILE_H__ +#define __BKE_PACKEDFILE_H__ /** \file BKE_packedFile.h * \ingroup bke diff --git a/source/blender/blenkernel/BKE_paint.h b/source/blender/blenkernel/BKE_paint.h index 081b79b44d6..c048dad82eb 100644 --- a/source/blender/blenkernel/BKE_paint.h +++ b/source/blender/blenkernel/BKE_paint.h @@ -25,8 +25,8 @@ * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BKE_PAINT_H -#define BKE_PAINT_H +#ifndef __BKE_PAINT_H__ +#define __BKE_PAINT_H__ /** \file BKE_paint.h * \ingroup bke diff --git a/source/blender/blenkernel/BKE_particle.h b/source/blender/blenkernel/BKE_particle.h index dbefbd95a15..c03ecca17cf 100644 --- a/source/blender/blenkernel/BKE_particle.h +++ b/source/blender/blenkernel/BKE_particle.h @@ -25,8 +25,8 @@ * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BKE_PARTICLE_H -#define BKE_PARTICLE_H +#ifndef __BKE_PARTICLE_H__ +#define __BKE_PARTICLE_H__ /** \file BKE_particle.h * \ingroup bke diff --git a/source/blender/blenkernel/BKE_plugin_types.h b/source/blender/blenkernel/BKE_plugin_types.h index 73c6dae35cf..8f9706f9833 100644 --- a/source/blender/blenkernel/BKE_plugin_types.h +++ b/source/blender/blenkernel/BKE_plugin_types.h @@ -24,8 +24,8 @@ * * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BKE_PLUGIN_TYPES_H -#define BKE_PLUGIN_TYPES_H +#ifndef __BKE_PLUGIN_TYPES_H__ +#define __BKE_PLUGIN_TYPES_H__ /** \file BKE_plugin_types.h * \ingroup bke diff --git a/source/blender/blenkernel/BKE_pointcache.h b/source/blender/blenkernel/BKE_pointcache.h index d1b0acf7142..38f0503b40d 100644 --- a/source/blender/blenkernel/BKE_pointcache.h +++ b/source/blender/blenkernel/BKE_pointcache.h @@ -25,8 +25,8 @@ * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BKE_POINTCACHE_H -#define BKE_POINTCACHE_H +#ifndef __BKE_POINTCACHE_H__ +#define __BKE_POINTCACHE_H__ /** \file BKE_pointcache.h * \ingroup bke diff --git a/source/blender/blenkernel/BKE_property.h b/source/blender/blenkernel/BKE_property.h index 779c83acf21..a29dc0e7be4 100644 --- a/source/blender/blenkernel/BKE_property.h +++ b/source/blender/blenkernel/BKE_property.h @@ -24,8 +24,8 @@ * * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BKE_PROPERTY_H -#define BKE_PROPERTY_H +#ifndef __BKE_PROPERTY_H__ +#define __BKE_PROPERTY_H__ /** \file BKE_property.h * \ingroup bke diff --git a/source/blender/blenkernel/BKE_report.h b/source/blender/blenkernel/BKE_report.h index 784f8a63757..fd372ae6d83 100644 --- a/source/blender/blenkernel/BKE_report.h +++ b/source/blender/blenkernel/BKE_report.h @@ -23,8 +23,8 @@ * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BKE_REPORT_H -#define BKE_REPORT_H +#ifndef __BKE_REPORT_H__ +#define __BKE_REPORT_H__ /** \file BKE_report.h * \ingroup bke diff --git a/source/blender/blenkernel/BKE_sca.h b/source/blender/blenkernel/BKE_sca.h index cfcc0e146d8..22b44511195 100644 --- a/source/blender/blenkernel/BKE_sca.h +++ b/source/blender/blenkernel/BKE_sca.h @@ -24,8 +24,8 @@ * * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BKE_SCA_H -#define BKE_SCA_H +#ifndef __BKE_SCA_H__ +#define __BKE_SCA_H__ /** \file BKE_sca.h * \ingroup bke diff --git a/source/blender/blenkernel/BKE_scene.h b/source/blender/blenkernel/BKE_scene.h index 2df5e7ac2c6..e46d99ed873 100644 --- a/source/blender/blenkernel/BKE_scene.h +++ b/source/blender/blenkernel/BKE_scene.h @@ -24,8 +24,8 @@ * * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BKE_SCENE_H -#define BKE_SCENE_H +#ifndef __BKE_SCENE_H__ +#define __BKE_SCENE_H__ /** \file BKE_scene.h * \ingroup bke diff --git a/source/blender/blenkernel/BKE_screen.h b/source/blender/blenkernel/BKE_screen.h index 44b92f70519..c254144b812 100644 --- a/source/blender/blenkernel/BKE_screen.h +++ b/source/blender/blenkernel/BKE_screen.h @@ -24,8 +24,8 @@ * * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BKE_SCREEN_H -#define BKE_SCREEN_H +#ifndef __BKE_SCREEN_H__ +#define __BKE_SCREEN_H__ /** \file BKE_screen.h * \ingroup bke diff --git a/source/blender/blenkernel/BKE_script.h b/source/blender/blenkernel/BKE_script.h index d8ceaf23652..7bd801a8177 100644 --- a/source/blender/blenkernel/BKE_script.h +++ b/source/blender/blenkernel/BKE_script.h @@ -24,8 +24,8 @@ * * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BKE_SCRIPT_H -#define BKE_SCRIPT_H +#ifndef __BKE_SCRIPT_H__ +#define __BKE_SCRIPT_H__ /** \file BKE_script.h * \ingroup bke @@ -46,4 +46,4 @@ void free_script (struct Script *script); } #endif -#endif /* BKE_SCRIPT_H */ +#endif /* __BKE_SCRIPT_H__ */ diff --git a/source/blender/blenkernel/BKE_sequencer.h b/source/blender/blenkernel/BKE_sequencer.h index ed0730b7f09..5c6058b1453 100644 --- a/source/blender/blenkernel/BKE_sequencer.h +++ b/source/blender/blenkernel/BKE_sequencer.h @@ -23,8 +23,8 @@ * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BKE_SEQUENCER_H -#define BKE_SEQUENCER_H +#ifndef __BKE_SEQUENCER_H__ +#define __BKE_SEQUENCER_H__ /** \file BKE_sequencer.h * \ingroup bke @@ -341,4 +341,4 @@ extern SequencerDrawView sequencer_view3d_cb; extern ListBase seqbase_clipboard; extern int seqbase_clipboard_frame; -#endif // BKE_SEQUENCER_H +#endif // __BKE_SEQUENCER_H__ diff --git a/source/blender/blenkernel/BKE_shrinkwrap.h b/source/blender/blenkernel/BKE_shrinkwrap.h index d1fef8b0ce1..446084053de 100644 --- a/source/blender/blenkernel/BKE_shrinkwrap.h +++ b/source/blender/blenkernel/BKE_shrinkwrap.h @@ -24,8 +24,8 @@ * * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BKE_SHRINKWRAP_H -#define BKE_SHRINKWRAP_H +#ifndef __BKE_SHRINKWRAP_H__ +#define __BKE_SHRINKWRAP_H__ /** \file BKE_shrinkwrap.h * \ingroup bke diff --git a/source/blender/blenkernel/BKE_sketch.h b/source/blender/blenkernel/BKE_sketch.h index 1dd82c1d8e6..76b3dbacf7f 100644 --- a/source/blender/blenkernel/BKE_sketch.h +++ b/source/blender/blenkernel/BKE_sketch.h @@ -19,8 +19,8 @@ * * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BKE_SKETCH_H -#define BKE_SKETCH_H +#ifndef __BKE_SKETCH_H__ +#define __BKE_SKETCH_H__ /** \file BKE_sketch.h * \ingroup bke diff --git a/source/blender/blenkernel/BKE_smoke.h b/source/blender/blenkernel/BKE_smoke.h index 51acef44f52..1e97bc07f99 100644 --- a/source/blender/blenkernel/BKE_smoke.h +++ b/source/blender/blenkernel/BKE_smoke.h @@ -25,8 +25,8 @@ * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BKE_SMOKE_H_ -#define BKE_SMOKE_H_ +#ifndef __BKE_SMOKE_H__ +#define __BKE_SMOKE_H__ /** \file BKE_smoke.h * \ingroup bke @@ -45,4 +45,4 @@ void smokeModifier_copy(struct SmokeModifierData *smd, struct SmokeModifierData long long smoke_get_mem_req(int xres, int yres, int zres, int amplify); -#endif /* BKE_SMOKE_H_ */ +#endif /* __BKE_SMOKE_H__ */ diff --git a/source/blender/blenkernel/BKE_softbody.h b/source/blender/blenkernel/BKE_softbody.h index c889aa83b9a..6714225f513 100644 --- a/source/blender/blenkernel/BKE_softbody.h +++ b/source/blender/blenkernel/BKE_softbody.h @@ -24,8 +24,8 @@ * * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BKE_SOFTBODY_H -#define BKE_SOFTBODY_H +#ifndef __BKE_SOFTBODY_H__ +#define __BKE_SOFTBODY_H__ /** \file BKE_softbody.h * \ingroup bke diff --git a/source/blender/blenkernel/BKE_sound.h b/source/blender/blenkernel/BKE_sound.h index fdf1d09559d..90477647b88 100644 --- a/source/blender/blenkernel/BKE_sound.h +++ b/source/blender/blenkernel/BKE_sound.h @@ -24,8 +24,8 @@ * * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BKE_SOUND_H -#define BKE_SOUND_H +#ifndef __BKE_SOUND_H__ +#define __BKE_SOUND_H__ /** \file BKE_sound.h * \ingroup bke diff --git a/source/blender/blenkernel/BKE_speaker.h b/source/blender/blenkernel/BKE_speaker.h index d309c048f1a..fddcfb2c7f3 100644 --- a/source/blender/blenkernel/BKE_speaker.h +++ b/source/blender/blenkernel/BKE_speaker.h @@ -25,8 +25,8 @@ * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BKE_SPEAKER_H -#define BKE_SPEAKER_H +#ifndef __BKE_SPEAKER_H__ +#define __BKE_SPEAKER_H__ /** \file BKE_speaker.h * \ingroup bke diff --git a/source/blender/blenkernel/BKE_subsurf.h b/source/blender/blenkernel/BKE_subsurf.h index dcbd045f62d..5e56cc7b3be 100644 --- a/source/blender/blenkernel/BKE_subsurf.h +++ b/source/blender/blenkernel/BKE_subsurf.h @@ -24,8 +24,8 @@ * * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BKE_SUBSURF_H -#define BKE_SUBSURF_H +#ifndef __BKE_SUBSURF_H__ +#define __BKE_SUBSURF_H__ /** \file BKE_subsurf.h * \ingroup bke diff --git a/source/blender/blenkernel/BKE_suggestions.h b/source/blender/blenkernel/BKE_suggestions.h index a0a270422c7..6168b98ac4c 100644 --- a/source/blender/blenkernel/BKE_suggestions.h +++ b/source/blender/blenkernel/BKE_suggestions.h @@ -24,8 +24,8 @@ * * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BKE_SUGGESTIONS_H -#define BKE_SUGGESTIONS_H +#ifndef __BKE_SUGGESTIONS_H__ +#define __BKE_SUGGESTIONS_H__ /** \file BKE_suggestions.h * \ingroup bke diff --git a/source/blender/blenkernel/BKE_text.h b/source/blender/blenkernel/BKE_text.h index f0c054560c4..504b859c183 100644 --- a/source/blender/blenkernel/BKE_text.h +++ b/source/blender/blenkernel/BKE_text.h @@ -24,8 +24,8 @@ * * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BKE_TEXT_H -#define BKE_TEXT_H +#ifndef __BKE_TEXT_H__ +#define __BKE_TEXT_H__ /** \file BKE_text.h * \ingroup bke diff --git a/source/blender/blenkernel/BKE_texture.h b/source/blender/blenkernel/BKE_texture.h index a67a06ef9fb..2574c45eec2 100644 --- a/source/blender/blenkernel/BKE_texture.h +++ b/source/blender/blenkernel/BKE_texture.h @@ -24,8 +24,8 @@ * * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BKE_TEXTURE_H -#define BKE_TEXTURE_H +#ifndef __BKE_TEXTURE_H__ +#define __BKE_TEXTURE_H__ /** \file BKE_texture.h * \ingroup bke diff --git a/source/blender/blenkernel/BKE_tracking.h b/source/blender/blenkernel/BKE_tracking.h index ebbba7de7c7..1be858ecf80 100644 --- a/source/blender/blenkernel/BKE_tracking.h +++ b/source/blender/blenkernel/BKE_tracking.h @@ -24,8 +24,8 @@ * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BKE_TRACKING_H -#define BKE_TRACKING_H +#ifndef __BKE_TRACKING_H__ +#define __BKE_TRACKING_H__ /** \file BKE_trackingp.h * \ingroup bke diff --git a/source/blender/blenkernel/BKE_unit.h b/source/blender/blenkernel/BKE_unit.h index db586f6d262..e3ad49e2225 100644 --- a/source/blender/blenkernel/BKE_unit.h +++ b/source/blender/blenkernel/BKE_unit.h @@ -20,8 +20,8 @@ * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BKE_UNIT_H -#define BKE_UNIT_H +#ifndef __BKE_UNIT_H__ +#define __BKE_UNIT_H__ /** \file BKE_unit.h * \ingroup bke @@ -76,4 +76,4 @@ double bUnit_GetScaler(void *usys_pt, int index); } #endif -#endif /* BKE_UNIT_H */ +#endif /* __BKE_UNIT_H__ */ diff --git a/source/blender/blenkernel/BKE_utildefines.h b/source/blender/blenkernel/BKE_utildefines.h index a6a9bb0c0f6..39458cb3a13 100644 --- a/source/blender/blenkernel/BKE_utildefines.h +++ b/source/blender/blenkernel/BKE_utildefines.h @@ -33,8 +33,8 @@ */ -#ifndef BKE_UTILDEFINES_H -#define BKE_UTILDEFINES_H +#ifndef __BKE_UTILDEFINES_H__ +#define __BKE_UTILDEFINES_H__ #ifdef __cplusplus extern "C" { @@ -89,4 +89,4 @@ extern "C" { } #endif -#endif // BKE_UTILDEFINES_H +#endif // __BKE_UTILDEFINES_H__ diff --git a/source/blender/blenkernel/BKE_world.h b/source/blender/blenkernel/BKE_world.h index fe25279dcfb..16ff3acaf71 100644 --- a/source/blender/blenkernel/BKE_world.h +++ b/source/blender/blenkernel/BKE_world.h @@ -24,8 +24,8 @@ * * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BKE_WORLD_H -#define BKE_WORLD_H +#ifndef __BKE_WORLD_H__ +#define __BKE_WORLD_H__ /** \file BKE_world.h * \ingroup bke diff --git a/source/blender/blenkernel/BKE_writeavi.h b/source/blender/blenkernel/BKE_writeavi.h index c906761f3d7..03174fb5284 100644 --- a/source/blender/blenkernel/BKE_writeavi.h +++ b/source/blender/blenkernel/BKE_writeavi.h @@ -25,8 +25,8 @@ * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BKE_WRITEAVI_H -#define BKE_WRITEAVI_H +#ifndef __BKE_WRITEAVI_H__ +#define __BKE_WRITEAVI_H__ /** \file BKE_writeavi.h * \ingroup bke diff --git a/source/blender/blenkernel/BKE_writeffmpeg.h b/source/blender/blenkernel/BKE_writeffmpeg.h index 4c42d1e4a6c..299f8e185cf 100644 --- a/source/blender/blenkernel/BKE_writeffmpeg.h +++ b/source/blender/blenkernel/BKE_writeffmpeg.h @@ -25,8 +25,8 @@ * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BKE_WRITEFFMPEG_H -#define BKE_WRITEFFMPEG_H +#ifndef __BKE_WRITEFFMPEG_H__ +#define __BKE_WRITEFFMPEG_H__ /** \file BKE_writeffmpeg.h * \ingroup bke diff --git a/source/blender/blenkernel/BKE_writeframeserver.h b/source/blender/blenkernel/BKE_writeframeserver.h index 040550d8faa..cb607e1473c 100644 --- a/source/blender/blenkernel/BKE_writeframeserver.h +++ b/source/blender/blenkernel/BKE_writeframeserver.h @@ -25,8 +25,8 @@ * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BKE_WRITEFRAMESERVER_H -#define BKE_WRITEFRAMESERVER_H +#ifndef __BKE_WRITEFRAMESERVER_H__ +#define __BKE_WRITEFRAMESERVER_H__ /** \file BKE_writeframeserver.h * \ingroup bke diff --git a/source/blender/blenkernel/depsgraph_private.h b/source/blender/blenkernel/depsgraph_private.h index 0338d10a66d..0db3c5615f5 100644 --- a/source/blender/blenkernel/depsgraph_private.h +++ b/source/blender/blenkernel/depsgraph_private.h @@ -27,8 +27,8 @@ * \ingroup bke */ -#ifndef DEPSGRAPH_PRIVATE -#define DEPSGRAPH_PRIVATE +#ifndef __DEPSGRAPH_PRIVATE_H__ +#define __DEPSGRAPH_PRIVATE_H__ #include "BKE_depsgraph.h" #include "DNA_constraint_types.h" diff --git a/source/blender/blenkernel/intern/bmesh_private.h b/source/blender/blenkernel/intern/bmesh_private.h index d0b03883e6e..10074813fae 100644 --- a/source/blender/blenkernel/intern/bmesh_private.h +++ b/source/blender/blenkernel/intern/bmesh_private.h @@ -35,8 +35,8 @@ */ -#ifndef BMESH_PRIVATE -#define BMESH_PRIVATE +#ifndef __BMESH_PRIVATE_H__ +#define __BMESH_PRIVATE_H__ #include "BKE_bmesh.h" diff --git a/source/blender/blenkernel/nla_private.h b/source/blender/blenkernel/nla_private.h index e287606921b..51a7ac7ee62 100644 --- a/source/blender/blenkernel/nla_private.h +++ b/source/blender/blenkernel/nla_private.h @@ -30,8 +30,8 @@ */ -#ifndef NLA_PRIVATE -#define NLA_PRIVATE +#ifndef __NLA_PRIVATE_H__ +#define __NLA_PRIVATE_H__ /* --------------- NLA Evaluation DataTypes ----------------------- */ @@ -85,4 +85,4 @@ NlaEvalStrip *nlastrips_ctime_get_strip(ListBase *list, ListBase *strips, short void nlastrip_evaluate(PointerRNA *ptr, ListBase *channels, ListBase *modifiers, NlaEvalStrip *nes); void nladata_flush_channels(ListBase *channels); -#endif // NLA_PRIVATE +#endif // __NLA_PRIVATE_H__ diff --git a/source/blender/blenlib/BLI_args.h b/source/blender/blenlib/BLI_args.h index 3b8b60be1b9..7a7529fa3c3 100644 --- a/source/blender/blenlib/BLI_args.h +++ b/source/blender/blenlib/BLI_args.h @@ -25,8 +25,8 @@ * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BLI_ARGS_H -#define BLI_ARGS_H +#ifndef __BLI_ARGS_H__ +#define __BLI_ARGS_H__ /** \file BLI_args.h * \ingroup bli diff --git a/source/blender/blenlib/BLI_blenlib.h b/source/blender/blenlib/BLI_blenlib.h index 515c2444e80..c802b083f1f 100644 --- a/source/blender/blenlib/BLI_blenlib.h +++ b/source/blender/blenlib/BLI_blenlib.h @@ -55,8 +55,8 @@ * standard libraries. */ -#ifndef BLI_BLENLIB_H -#define BLI_BLENLIB_H +#ifndef __BLI_BLENLIB_H__ +#define __BLI_BLENLIB_H__ struct ListBase; diff --git a/source/blender/blenlib/BLI_boxpack2d.h b/source/blender/blenlib/BLI_boxpack2d.h index 886965f66b3..7f92047b312 100644 --- a/source/blender/blenlib/BLI_boxpack2d.h +++ b/source/blender/blenlib/BLI_boxpack2d.h @@ -25,8 +25,8 @@ * ***** END GPL LICENSE BLOCK ***** */ -#ifndef _BLI_BOXPACK2D_H_ -#define _BLI_BOXPACK2D_H_ +#ifndef __BLI_BOXPACK2D_H__ +#define __BLI_BOXPACK2D_H__ /** \file BLI_boxpack2d.h * \ingroup bli diff --git a/source/blender/blenlib/BLI_bpath.h b/source/blender/blenlib/BLI_bpath.h index e850db5a171..f1639bdb3c1 100644 --- a/source/blender/blenlib/BLI_bpath.h +++ b/source/blender/blenlib/BLI_bpath.h @@ -31,8 +31,8 @@ * so for BPath we dont need to malloc */ -#ifndef BLI_BPATH_H -#define BLI_BPATH_H +#ifndef __BLI_BPATH_H__ +#define __BLI_BPATH_H__ struct ID; struct ListBase; @@ -64,4 +64,4 @@ void makeFilesRelative(struct Main *bmain, const char *basedir, struct ReportLis void makeFilesAbsolute(struct Main *bmain, const char *basedir, struct ReportList *reports); void findMissingFiles(struct Main *bmain, const char *searchpath, struct ReportList *reports); -#endif // BLI_BPATH_H +#endif // __BLI_BPATH_H__ diff --git a/source/blender/blenlib/BLI_callbacks.h b/source/blender/blenlib/BLI_callbacks.h index 201ada45acf..f4f92a0cbee 100644 --- a/source/blender/blenlib/BLI_callbacks.h +++ b/source/blender/blenlib/BLI_callbacks.h @@ -29,8 +29,8 @@ * \ingroup bli */ -#ifndef BLI_CALLBACKS_H -#define BLI_CALLBACKS_H +#ifndef __BLI_CALLBACKS_H__ +#define __BLI_CALLBACKS_H__ struct bContext; struct Main; @@ -70,4 +70,4 @@ void BLI_cb_finalize(void); /* This is blenlib internal only, unrelated to above */ void callLocalErrorCallBack(const char* msg); -#endif /* BLI_CALLBACKS_H */ +#endif /* __BLI_CALLBACKS_H__ */ diff --git a/source/blender/blenlib/BLI_cpu.h b/source/blender/blenlib/BLI_cpu.h index de04a2a6cc6..fa29162e59e 100644 --- a/source/blender/blenlib/BLI_cpu.h +++ b/source/blender/blenlib/BLI_cpu.h @@ -18,8 +18,8 @@ * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BLI_CPU_H -#define BLI_CPU_H +#ifndef __BLI_CPU_H__ +#define __BLI_CPU_H__ /** \file BLI_cpu.h * \ingroup bli diff --git a/source/blender/blenlib/BLI_dlrbTree.h b/source/blender/blenlib/BLI_dlrbTree.h index cde2058b200..bad74a1e5a8 100644 --- a/source/blender/blenlib/BLI_dlrbTree.h +++ b/source/blender/blenlib/BLI_dlrbTree.h @@ -23,8 +23,8 @@ * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BLI_DLRB_TREE_H -#define BLI_DLRB_TREE_H +#ifndef __BLI_DLRBTREE_H__ +#define __BLI_DLRBTREE_H__ /** \file BLI_dlrbTree.h * \ingroup bli @@ -158,4 +158,4 @@ void BLI_dlrbTree_insert(DLRBT_Tree *tree, DLRBT_Node *node); /* ********************************************** */ -#endif // BLI_DLRB_TREE_H +#endif // __BLI_DLRBTREE_H__ diff --git a/source/blender/blenlib/BLI_dynstr.h b/source/blender/blenlib/BLI_dynstr.h index 32c4e012d1d..6b499c3bbcf 100644 --- a/source/blender/blenlib/BLI_dynstr.h +++ b/source/blender/blenlib/BLI_dynstr.h @@ -25,8 +25,8 @@ * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BLI_DYNSTR_H -#define BLI_DYNSTR_H +#ifndef __BLI_DYNSTR_H__ +#define __BLI_DYNSTR_H__ /** \file BLI_dynstr.h * \ingroup bli diff --git a/source/blender/blenlib/BLI_edgehash.h b/source/blender/blenlib/BLI_edgehash.h index 9153155e359..b00ac683eb1 100644 --- a/source/blender/blenlib/BLI_edgehash.h +++ b/source/blender/blenlib/BLI_edgehash.h @@ -25,8 +25,8 @@ * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BLI_EDGEHASH_H -#define BLI_EDGEHASH_H +#ifndef __BLI_EDGEHASH_H__ +#define __BLI_EDGEHASH_H__ /** \file BLI_edgehash.h * \ingroup bli diff --git a/source/blender/blenlib/BLI_editVert.h b/source/blender/blenlib/BLI_editVert.h index 0ddea230b84..b5096abc5bc 100644 --- a/source/blender/blenlib/BLI_editVert.h +++ b/source/blender/blenlib/BLI_editVert.h @@ -25,8 +25,8 @@ * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BLI_EDITVERT_H -#define BLI_EDITVERT_H +#ifndef __BLI_EDITVERT_H__ +#define __BLI_EDITVERT_H__ /** \file BLI_editVert.h * \ingroup bli diff --git a/source/blender/blenlib/BLI_fileops.h b/source/blender/blenlib/BLI_fileops.h index 2e8f1a5512e..8fe8456e845 100644 --- a/source/blender/blenlib/BLI_fileops.h +++ b/source/blender/blenlib/BLI_fileops.h @@ -30,8 +30,8 @@ * \brief File and directory operations. * */ -#ifndef BLI_FILEOPS_H -#define BLI_FILEOPS_H +#ifndef __BLI_FILEOPS_H__ +#define __BLI_FILEOPS_H__ #ifdef __cplusplus extern "C" { diff --git a/source/blender/blenlib/BLI_fileops_types.h b/source/blender/blenlib/BLI_fileops_types.h index 443ba654cb6..8e4b5b3e411 100644 --- a/source/blender/blenlib/BLI_fileops_types.h +++ b/source/blender/blenlib/BLI_fileops_types.h @@ -25,8 +25,8 @@ * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BLI_FILEOPS_TYPES_H -#define BLI_FILEOPS_TYPES_H +#ifndef __BLI_FILEOPS_TYPES_H__ +#define __BLI_FILEOPS_TYPES_H__ /** \file BLI_fileops_types.h * \ingroup bli @@ -74,5 +74,5 @@ struct dirlink char *name; }; -#endif /* BLI_FILEOPS_TYPES_H */ +#endif /* __BLI_FILEOPS_TYPES_H__ */ diff --git a/source/blender/blenlib/BLI_fnmatch.h b/source/blender/blenlib/BLI_fnmatch.h index ac8960ff9c9..711d1aa756b 100644 --- a/source/blender/blenlib/BLI_fnmatch.h +++ b/source/blender/blenlib/BLI_fnmatch.h @@ -17,8 +17,8 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ -#ifndef _FNMATCH_H -#define _FNMATCH_H 1 +#ifndef __BLI_FNMATCH_H__ +#define __BLI_FNMATCH_H__ /** \file BLI_fnmatch.h * \ingroup bli @@ -69,4 +69,4 @@ extern int fnmatch __P ((const char *__pattern, const char *__string, } #endif -#endif /* fnmatch.h */ +#endif /* __BLI_FNMATCH_H__ */ diff --git a/source/blender/blenlib/BLI_ghash.h b/source/blender/blenlib/BLI_ghash.h index f2a7e73e5e0..ccad3250a5f 100644 --- a/source/blender/blenlib/BLI_ghash.h +++ b/source/blender/blenlib/BLI_ghash.h @@ -25,8 +25,8 @@ * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BLI_GHASH_H -#define BLI_GHASH_H +#ifndef __BLI_GHASH_H__ +#define __BLI_GHASH_H__ /** \file BLI_ghash.h * \ingroup bli @@ -156,4 +156,4 @@ void BLI_ghashutil_pairfree (void *ptr); } #endif -#endif /* BLI_GHASH_H */ +#endif /* __BLI_GHASH_H__ */ diff --git a/source/blender/blenlib/BLI_graph.h b/source/blender/blenlib/BLI_graph.h index 056bba71dea..5995daebc61 100644 --- a/source/blender/blenlib/BLI_graph.h +++ b/source/blender/blenlib/BLI_graph.h @@ -22,8 +22,8 @@ * * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BLI_GRAPH_H_ -#define BLI_GRAPH_H_ +#ifndef __BLI_GRAPH_H__ +#define __BLI_GRAPH_H__ /** \file BLI_graph.h * \ingroup bli @@ -184,4 +184,4 @@ void BLI_mirrorAlongAxis(float v[3], float center[3], float axis[3]); /* Anything higher is the order in radial symmetry */ #define SYM_SIDE_RADIAL 3 -#endif /*BLI_GRAPH_H_*/ +#endif /*__BLI_GRAPH_H__*/ diff --git a/source/blender/blenlib/BLI_gsqueue.h b/source/blender/blenlib/BLI_gsqueue.h index 425ecb79899..53fdb5a541a 100644 --- a/source/blender/blenlib/BLI_gsqueue.h +++ b/source/blender/blenlib/BLI_gsqueue.h @@ -25,8 +25,8 @@ * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BLI_GSQUEUE_H -#define BLI_GSQUEUE_H +#ifndef __BLI_GSQUEUE_H__ +#define __BLI_GSQUEUE_H__ /** \file BLI_gsqueue.h * \ingroup bli @@ -95,5 +95,5 @@ void BLI_gsqueue_pushback (GSQueue *gq, void *item); */ void BLI_gsqueue_free (GSQueue *gq); -#endif /* BLI_GSQUEUE_H */ +#endif /* __BLI_GSQUEUE_H__ */ diff --git a/source/blender/blenlib/BLI_heap.h b/source/blender/blenlib/BLI_heap.h index 0124c997d91..5c67bf52b9a 100644 --- a/source/blender/blenlib/BLI_heap.h +++ b/source/blender/blenlib/BLI_heap.h @@ -25,8 +25,8 @@ * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BLI_HEAP_H -#define BLI_HEAP_H +#ifndef __BLI_HEAP_H__ +#define __BLI_HEAP_H__ /** \file BLI_heap.h * \ingroup bli diff --git a/source/blender/blenlib/BLI_jitter.h b/source/blender/blenlib/BLI_jitter.h index f432a51de9f..9aa21a89521 100644 --- a/source/blender/blenlib/BLI_jitter.h +++ b/source/blender/blenlib/BLI_jitter.h @@ -25,8 +25,8 @@ * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BLI_JITTER_H -#define BLI_JITTER_H +#ifndef __BLI_JITTER_H__ +#define __BLI_JITTER_H__ /** \file BLI_jitter.h * \ingroup bli diff --git a/source/blender/blenlib/BLI_kdopbvh.h b/source/blender/blenlib/BLI_kdopbvh.h index 8ead7bf5f17..ff3017fef03 100644 --- a/source/blender/blenlib/BLI_kdopbvh.h +++ b/source/blender/blenlib/BLI_kdopbvh.h @@ -26,8 +26,8 @@ */ -#ifndef BLI_KDOPBVH_H -#define BLI_KDOPBVH_H +#ifndef __BLI_KDOPBVH_H__ +#define __BLI_KDOPBVH_H__ /** \file BLI_kdopbvh.h * \ingroup bli @@ -111,5 +111,5 @@ int BLI_bvhtree_range_query(BVHTree *tree, const float co[3], float radius, BVHT } #endif -#endif // BLI_KDOPBVH_H +#endif // __BLI_KDOPBVH_H__ diff --git a/source/blender/blenlib/BLI_kdtree.h b/source/blender/blenlib/BLI_kdtree.h index 9ffc64e8812..0ec514b4480 100644 --- a/source/blender/blenlib/BLI_kdtree.h +++ b/source/blender/blenlib/BLI_kdtree.h @@ -26,8 +26,8 @@ * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BLI_KDTREE_H -#define BLI_KDTREE_H +#ifndef __BLI_KDTREE_H__ +#define __BLI_KDTREE_H__ /** \file BLI_kdtree.h * \ingroup bli diff --git a/source/blender/blenlib/BLI_linklist.h b/source/blender/blenlib/BLI_linklist.h index 6886dff0da3..664beb4eb98 100644 --- a/source/blender/blenlib/BLI_linklist.h +++ b/source/blender/blenlib/BLI_linklist.h @@ -25,8 +25,8 @@ * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BLI_LINKLIST_H -#define BLI_LINKLIST_H +#ifndef __BLI_LINKLIST_H__ +#define __BLI_LINKLIST_H__ /** \file BLI_linklist.h * \ingroup bli diff --git a/source/blender/blenlib/BLI_listbase.h b/source/blender/blenlib/BLI_listbase.h index 88ee79d7b97..b0a5e80d850 100644 --- a/source/blender/blenlib/BLI_listbase.h +++ b/source/blender/blenlib/BLI_listbase.h @@ -25,8 +25,8 @@ * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BLI_LISTBASE_H -#define BLI_LISTBASE_H +#ifndef __BLI_LISTBASE_H__ +#define __BLI_LISTBASE_H__ /** \file BLI_listbase.h * \ingroup bli diff --git a/source/blender/blenlib/BLI_math.h b/source/blender/blenlib/BLI_math.h index 1fe700492be..89c37daae84 100644 --- a/source/blender/blenlib/BLI_math.h +++ b/source/blender/blenlib/BLI_math.h @@ -23,8 +23,8 @@ * ***** END GPL LICENSE BLOCK ***** * */ -#ifndef BLI_MATH_H -#define BLI_MATH_H +#ifndef __BLI_MATH_H__ +#define __BLI_MATH_H__ /** \file BLI_math.h * \ingroup bli @@ -59,5 +59,5 @@ #include "BLI_math_vector.h" #include "BLI_math_geom.h" -#endif /* BLI_MATH_H */ +#endif /* __BLI_MATH_H__ */ diff --git a/source/blender/blenlib/BLI_math_base.h b/source/blender/blenlib/BLI_math_base.h index 53db77dc203..d0a1311f2bc 100644 --- a/source/blender/blenlib/BLI_math_base.h +++ b/source/blender/blenlib/BLI_math_base.h @@ -23,8 +23,8 @@ * ***** END GPL LICENSE BLOCK ***** * */ -#ifndef BLI_MATH_BASE_H -#define BLI_MATH_BASE_H +#ifndef __BLI_MATH_BASE_H__ +#define __BLI_MATH_BASE_H__ /** \file BLI_math_base.h * \ingroup bli @@ -142,7 +142,7 @@ #define CLAMP(a, b, c) if((a)<(b)) (a)=(b); else if((a)>(c)) (a)=(c) #endif -#ifdef BLI_MATH_INLINE_H +#ifdef __BLI_MATH_INLINE_H__ #include "intern/math_base_inline.c" #endif @@ -181,5 +181,5 @@ extern double round(double x); double double_round(double x, int ndigits); -#endif /* BLI_MATH_BASE_H */ +#endif /* __BLI_MATH_BASE_H__ */ diff --git a/source/blender/blenlib/BLI_math_color.h b/source/blender/blenlib/BLI_math_color.h index f4d6882b5d8..4771fdbcb69 100644 --- a/source/blender/blenlib/BLI_math_color.h +++ b/source/blender/blenlib/BLI_math_color.h @@ -23,8 +23,8 @@ * ***** END GPL LICENSE BLOCK ***** * */ -#ifndef BLI_MATH_COLOR_H -#define BLI_MATH_COLOR_H +#ifndef __BLI_MATH_COLOR_H__ +#define __BLI_MATH_COLOR_H__ /** \file BLI_math_color.h * \ingroup bli @@ -113,7 +113,7 @@ void rgba_float_to_uchar(unsigned char col_r[4], const float col_f[4]); void lift_gamma_gain_to_asc_cdl(float *lift, float *gamma, float *gain, float *offset, float *slope, float *power); -#ifdef BLI_MATH_INLINE_H +#ifdef __BLI_MATH_INLINE_H__ #include "intern/math_color_inline.c" #endif @@ -121,5 +121,5 @@ void lift_gamma_gain_to_asc_cdl(float *lift, float *gamma, float *gain, float *o } #endif -#endif /* BLI_MATH_COLOR_H */ +#endif /* __BLI_MATH_COLOR_H__ */ diff --git a/source/blender/blenlib/BLI_math_geom.h b/source/blender/blenlib/BLI_math_geom.h index 8d18f5253c4..61e34b7cb75 100644 --- a/source/blender/blenlib/BLI_math_geom.h +++ b/source/blender/blenlib/BLI_math_geom.h @@ -23,8 +23,8 @@ * ***** END GPL LICENSE BLOCK ***** * */ -#ifndef BLI_MATH_GEOM_H -#define BLI_MATH_GEOM_H +#ifndef __BLI_MATH_GEOM_H__ +#define __BLI_MATH_GEOM_H__ /** \file BLI_math_geom.h * \ingroup bli @@ -36,7 +36,7 @@ extern "C" { #include "BLI_math_inline.h" -#ifdef BLI_MATH_INLINE_H +#ifdef __BLI_MATH_INLINE_H__ #include "intern/math_geom_inline.c" #endif @@ -273,5 +273,5 @@ void axis_dominant_v3(int *axis_a, int *axis_b, const float axis[3]); } #endif -#endif /* BLI_MATH_GEOM_H */ +#endif /* __BLI_MATH_GEOM_H__ */ diff --git a/source/blender/blenlib/BLI_math_inline.h b/source/blender/blenlib/BLI_math_inline.h index 83aeb6cb735..fcc5fb744bb 100644 --- a/source/blender/blenlib/BLI_math_inline.h +++ b/source/blender/blenlib/BLI_math_inline.h @@ -23,8 +23,8 @@ * ***** END GPL LICENSE BLOCK ***** * */ -#ifndef BLI_MATH_INLINE_H -#define BLI_MATH_INLINE_H +#ifndef __BLI_MATH_INLINE_H__ +#define __BLI_MATH_INLINE_H__ /** \file BLI_math_inline.h * \ingroup bli @@ -35,9 +35,9 @@ extern "C" { #endif /* add platform/compiler checks here if it is not supported */ -#define BLI_MATH_INLINE_H +#define __BLI_MATH_INLINE_H__ -#ifdef BLI_MATH_INLINE_H +#ifdef __BLI_MATH_INLINE_H__ #ifdef _MSC_VER #define MINLINE static __forceinline #define MALWAYS_INLINE MINLINE @@ -59,5 +59,5 @@ extern "C" { } #endif -#endif /* BLI_MATH_INLINE_H */ +#endif /* __BLI_MATH_INLINE_H__ */ diff --git a/source/blender/blenlib/BLI_math_matrix.h b/source/blender/blenlib/BLI_math_matrix.h index 4d3a4dfe445..8c19941e18c 100644 --- a/source/blender/blenlib/BLI_math_matrix.h +++ b/source/blender/blenlib/BLI_math_matrix.h @@ -23,8 +23,8 @@ * ***** END GPL LICENSE BLOCK ***** * */ -#ifndef BLI_MATH_MATRIX_H -#define BLI_MATH_MATRIX_H +#ifndef __BLI_MATH_MATRIX_H__ +#define __BLI_MATH_MATRIX_H__ /** \file BLI_math_matrix.h * \ingroup bli @@ -179,5 +179,5 @@ void print_m4(const char *str, float M[3][4]); } #endif -#endif /* BLI_MATH_MATRIX_H */ +#endif /* __BLI_MATH_MATRIX_H__ */ diff --git a/source/blender/blenlib/BLI_math_rotation.h b/source/blender/blenlib/BLI_math_rotation.h index fca7c3469a1..62b81530c65 100644 --- a/source/blender/blenlib/BLI_math_rotation.h +++ b/source/blender/blenlib/BLI_math_rotation.h @@ -23,8 +23,8 @@ * ***** END GPL LICENSE BLOCK ***** * */ -#ifndef BLI_MATH_ROTATION_H -#define BLI_MATH_ROTATION_H +#ifndef __BLI_MATH_ROTATION_H__ +#define __BLI_MATH_ROTATION_H__ /** \file BLI_math_rotation.h * \ingroup bli @@ -189,5 +189,5 @@ float angle_wrap_deg(float angle); } #endif -#endif /* BLI_MATH_ROTATION_H */ +#endif /* __BLI_MATH_ROTATION_H__ */ diff --git a/source/blender/blenlib/BLI_math_vector.h b/source/blender/blenlib/BLI_math_vector.h index 12a0b1892a1..af8b52a7edf 100644 --- a/source/blender/blenlib/BLI_math_vector.h +++ b/source/blender/blenlib/BLI_math_vector.h @@ -23,8 +23,8 @@ * ***** END GPL LICENSE BLOCK ***** * */ -#ifndef BLI_MATH_VECTOR_H -#define BLI_MATH_VECTOR_H +#ifndef __BLI_MATH_VECTOR_H__ +#define __BLI_MATH_VECTOR_H__ /** \file BLI_math_vector.h * \ingroup bli @@ -36,7 +36,7 @@ extern "C" { #include "BLI_math_inline.h" -#ifdef BLI_MATH_INLINE_H +#ifdef __BLI_MATH_INLINE_H__ #include "intern/math_vector_inline.c" #endif @@ -216,5 +216,5 @@ void fill_vn_fl(float *array_tar, const int size, const float val); } #endif -#endif /* BLI_MATH_VECTOR_H */ +#endif /* __BLI_MATH_VECTOR_H__ */ diff --git a/source/blender/blenlib/BLI_md5.h b/source/blender/blenlib/BLI_md5.h index afcc3cdfa3e..51211d548cd 100644 --- a/source/blender/blenlib/BLI_md5.h +++ b/source/blender/blenlib/BLI_md5.h @@ -18,8 +18,8 @@ * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BLI_MD5_H -#define BLI_MD5_H +#ifndef __BLI_MD5_H__ +#define __BLI_MD5_H__ /** \file BLI_md5.h * \ingroup bli diff --git a/source/blender/blenlib/BLI_memarena.h b/source/blender/blenlib/BLI_memarena.h index ceb7b17f7ef..8306a69e567 100644 --- a/source/blender/blenlib/BLI_memarena.h +++ b/source/blender/blenlib/BLI_memarena.h @@ -35,8 +35,8 @@ * data, which are all freed at the same moment. */ -#ifndef BLI_MEMARENA_H -#define BLI_MEMARENA_H +#ifndef __BLI_MEMARENA_H__ +#define __BLI_MEMARENA_H__ #ifdef __cplusplus extern "C" { diff --git a/source/blender/blenlib/BLI_mempool.h b/source/blender/blenlib/BLI_mempool.h index 77896709285..d80d46e9ae5 100644 --- a/source/blender/blenlib/BLI_mempool.h +++ b/source/blender/blenlib/BLI_mempool.h @@ -25,8 +25,8 @@ * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BLI_MEMPOOL_H -#define BLI_MEMPOOL_H +#ifndef __BLI_MEMPOOL_H__ +#define __BLI_MEMPOOL_H__ /** \file BLI_mempool.h * \ingroup bli diff --git a/source/blender/blenlib/BLI_noise.h b/source/blender/blenlib/BLI_noise.h index de2efb18216..9f5475ced25 100644 --- a/source/blender/blenlib/BLI_noise.h +++ b/source/blender/blenlib/BLI_noise.h @@ -26,8 +26,8 @@ * */ -#ifndef BLI_NOISE_H -#define BLI_NOISE_H +#ifndef __BLI_NOISE_H__ +#define __BLI_NOISE_H__ /** \file BLI_noise.h * \ingroup bli diff --git a/source/blender/blenlib/BLI_path_util.h b/source/blender/blenlib/BLI_path_util.h index 68bb1a7280d..a2d432b492a 100644 --- a/source/blender/blenlib/BLI_path_util.h +++ b/source/blender/blenlib/BLI_path_util.h @@ -24,8 +24,8 @@ * * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BLI_PATH_UTIL_H -#define BLI_PATH_UTIL_H +#ifndef __BLI_PATH_UTIL_H__ +#define __BLI_PATH_UTIL_H__ /** \file BLI_path_util.h * \ingroup bli diff --git a/source/blender/blenlib/BLI_pbvh.h b/source/blender/blenlib/BLI_pbvh.h index e17a37c0a12..ef32ec03a61 100644 --- a/source/blender/blenlib/BLI_pbvh.h +++ b/source/blender/blenlib/BLI_pbvh.h @@ -18,8 +18,8 @@ * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BLI_PBVH_H -#define BLI_PBVH_H +#ifndef __BLI_PBVH_H__ +#define __BLI_PBVH_H__ /** \file BLI_pbvh.h * \ingroup bli @@ -246,5 +246,5 @@ void BLI_pbvh_gather_proxies(PBVH* pbvh, PBVHNode*** nodes, int* totnode); //void BLI_pbvh_node_BB_reset(PBVHNode* node); //void BLI_pbvh_node_BB_expand(PBVHNode* node, float co[3]); -#endif /* BLI_PBVH_H */ +#endif /* __BLI_PBVH_H__ */ diff --git a/source/blender/blenlib/BLI_rand.h b/source/blender/blenlib/BLI_rand.h index 7ce0031bcf9..1749bbcc38a 100644 --- a/source/blender/blenlib/BLI_rand.h +++ b/source/blender/blenlib/BLI_rand.h @@ -25,8 +25,8 @@ * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BLI_RAND_H -#define BLI_RAND_H +#ifndef __BLI_RAND_H__ +#define __BLI_RAND_H__ /** \file BLI_rand.h * \ingroup bli diff --git a/source/blender/blenlib/BLI_rect.h b/source/blender/blenlib/BLI_rect.h index 25b7f193105..4ff203737a0 100644 --- a/source/blender/blenlib/BLI_rect.h +++ b/source/blender/blenlib/BLI_rect.h @@ -26,8 +26,8 @@ * */ -#ifndef BLI_RECT_H -#define BLI_RECT_H +#ifndef __BLI_RECT_H__ +#define __BLI_RECT_H__ /** \file BLI_rect.h * \ingroup bli diff --git a/source/blender/blenlib/BLI_scanfill.h b/source/blender/blenlib/BLI_scanfill.h index 8af98b2d348..5c788bc6bb7 100644 --- a/source/blender/blenlib/BLI_scanfill.h +++ b/source/blender/blenlib/BLI_scanfill.h @@ -25,8 +25,8 @@ * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BLI_SCANFILL_H -#define BLI_SCANFILL_H +#ifndef __BLI_SCANFILL_H__ +#define __BLI_SCANFILL_H__ /** \file BLI_scanfill.h * \ingroup bli diff --git a/source/blender/blenlib/BLI_string.h b/source/blender/blenlib/BLI_string.h index 46389a9259e..25eb2ebecc2 100644 --- a/source/blender/blenlib/BLI_string.h +++ b/source/blender/blenlib/BLI_string.h @@ -25,8 +25,8 @@ * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BLI_STRING_H -#define BLI_STRING_H +#ifndef __BLI_STRING_H__ +#define __BLI_STRING_H__ /** \file BLI_string.h * \ingroup bli diff --git a/source/blender/blenlib/BLI_string_utf8.h b/source/blender/blenlib/BLI_string_utf8.h index 6eba7d5eb49..7799c32c4b7 100644 --- a/source/blender/blenlib/BLI_string_utf8.h +++ b/source/blender/blenlib/BLI_string_utf8.h @@ -20,8 +20,8 @@ * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BLI_STRING_UTF8_H -#define BLI_STRING_UTF8_H +#ifndef __BLI_STRING_UTF8_H__ +#define __BLI_STRING_UTF8_H__ /** \file BLI_string_utf8.h * \ingroup bli diff --git a/source/blender/blenlib/BLI_threads.h b/source/blender/blenlib/BLI_threads.h index a513b9f9e85..8e75a2db629 100644 --- a/source/blender/blenlib/BLI_threads.h +++ b/source/blender/blenlib/BLI_threads.h @@ -27,8 +27,8 @@ * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BLI_THREADS_H -#define BLI_THREADS_H +#ifndef __BLI_THREADS_H__ +#define __BLI_THREADS_H__ /** \file BLI_threads.h * \ingroup bli diff --git a/source/blender/blenlib/BLI_utildefines.h b/source/blender/blenlib/BLI_utildefines.h index 6d9188c1848..4a5ccd311c6 100644 --- a/source/blender/blenlib/BLI_utildefines.h +++ b/source/blender/blenlib/BLI_utildefines.h @@ -25,8 +25,8 @@ * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BLI_UTILDEFINES_H -#define BLI_UTILDEFINES_H +#ifndef __BLI_UTILDEFINES_H__ +#define __BLI_UTILDEFINES_H__ /** \file BLI_utildefines.h * \ingroup bli @@ -310,4 +310,4 @@ # define UNLIKELY(x) (x) #endif -#endif // BLI_UTILDEFINES_H +#endif // __BLI_UTILDEFINES_H__ diff --git a/source/blender/blenlib/BLI_uvproject.h b/source/blender/blenlib/BLI_uvproject.h index d4a34a9e290..5abad87452c 100644 --- a/source/blender/blenlib/BLI_uvproject.h +++ b/source/blender/blenlib/BLI_uvproject.h @@ -17,8 +17,8 @@ * * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BKE_UVPROJECT_H -#define BKE_UVPROJECT_H +#ifndef __BLI_UVPROJECT_H__ +#define __BLI_UVPROJECT_H__ /** \file BLI_uvproject.h * \ingroup bli diff --git a/source/blender/blenlib/BLI_vfontdata.h b/source/blender/blenlib/BLI_vfontdata.h index e858e784991..5f7b7c39036 100644 --- a/source/blender/blenlib/BLI_vfontdata.h +++ b/source/blender/blenlib/BLI_vfontdata.h @@ -25,8 +25,8 @@ * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BLI_VFONTDATA_H -#define BLI_VFONTDATA_H +#ifndef __BLI_VFONTDATA_H__ +#define __BLI_VFONTDATA_H__ /** \file BLI_vfontdata.h * \ingroup bli diff --git a/source/blender/blenlib/BLI_voxel.h b/source/blender/blenlib/BLI_voxel.h index 8dd95a897ae..4a13810a705 100644 --- a/source/blender/blenlib/BLI_voxel.h +++ b/source/blender/blenlib/BLI_voxel.h @@ -25,8 +25,8 @@ * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BLI_VOXEL_H -#define BLI_VOXEL_H +#ifndef __BLI_VOXEL_H__ +#define __BLI_VOXEL_H__ /** \file BLI_voxel.h * \ingroup bli @@ -41,4 +41,4 @@ float voxel_sample_trilinear(float *data, const int res[3], const float co[3]); float voxel_sample_triquadratic(float *data, const int res[3], const float co[3]); float voxel_sample_tricubic(float *data, const int res[3], const float co[3], int bspline); -#endif /* BLI_VOXEL_H */ +#endif /* __BLI_VOXEL_H__ */ diff --git a/source/blender/blenlib/BLI_winstuff.h b/source/blender/blenlib/BLI_winstuff.h index 0eb2f86b668..d939882b105 100644 --- a/source/blender/blenlib/BLI_winstuff.h +++ b/source/blender/blenlib/BLI_winstuff.h @@ -25,8 +25,8 @@ * ***** END GPL LICENSE BLOCK ***** */ -#ifndef __WINSTUFF_H__ -#define __WINSTUFF_H__ +#ifndef __BLI_WINSTUFF_H__ +#define __BLI_WINSTUFF_H__ /** \file BLI_winstuff.h * \ingroup bli @@ -150,5 +150,5 @@ int BLI_getInstallationDir(char *str); #endif /* _WIN32 */ -#endif /* __WINSTUFF_H__ */ +#endif /* __BLI_WINSTUFF_H__ */ diff --git a/source/blender/blenlib/PIL_time.h b/source/blender/blenlib/PIL_time.h index 0a777a80b2a..fa2ad8644e9 100644 --- a/source/blender/blenlib/PIL_time.h +++ b/source/blender/blenlib/PIL_time.h @@ -32,8 +32,8 @@ */ -#ifndef PIL_TIME_H -#define PIL_TIME_H +#ifndef __PIL_TIME_H__ +#define __PIL_TIME_H__ #ifdef __cplusplus extern "C" { @@ -78,4 +78,4 @@ void PIL_sleep_ms (int ms); } #endif -#endif /* !PIL_TIME_H */ +#endif /* !__PIL_TIME_H__ */ diff --git a/source/blender/blenlib/intern/dynamiclist.h b/source/blender/blenlib/intern/dynamiclist.h index 83b5aac963c..64c4a8fd61a 100644 --- a/source/blender/blenlib/intern/dynamiclist.h +++ b/source/blender/blenlib/intern/dynamiclist.h @@ -29,8 +29,8 @@ */ -#ifndef B_DYNAMIC_LIST_H -#define B_DYNAMIC_LIST_H +#ifndef __DYNAMICLIST_H__ +#define __DYNAMICLIST_H__ #define PAGE_SIZE 4 diff --git a/source/blender/blenloader/BLO_readfile.h b/source/blender/blenloader/BLO_readfile.h index d63baca883e..52d06c36bdf 100644 --- a/source/blender/blenloader/BLO_readfile.h +++ b/source/blender/blenloader/BLO_readfile.h @@ -24,8 +24,8 @@ * * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BLO_READFILE_H -#define BLO_READFILE_H +#ifndef __BLO_READFILE_H__ +#define __BLO_READFILE_H__ /** \file BLO_readfile.h * \ingroup blenloader diff --git a/source/blender/blenloader/BLO_runtime.h b/source/blender/blenloader/BLO_runtime.h index 573db5301bc..0a5a7d3a660 100644 --- a/source/blender/blenloader/BLO_runtime.h +++ b/source/blender/blenloader/BLO_runtime.h @@ -26,8 +26,8 @@ * */ -#ifndef BLO_RUNTIME_H -#define BLO_RUNTIME_H +#ifndef __BLO_RUNTIME_H__ +#define __BLO_RUNTIME_H__ /** \file BLO_runtime.h * \ingroup blenloader @@ -47,5 +47,5 @@ struct BlendFileData *BLO_read_runtime(const char *file, struct ReportList *repo } #endif -#endif /* BLO_RUNTIME_H */ +#endif /* __BLO_RUNTIME_H__ */ diff --git a/source/blender/blenloader/BLO_soundfile.h b/source/blender/blenloader/BLO_soundfile.h index 4c8d40b3e69..d2f87139b74 100644 --- a/source/blender/blenloader/BLO_soundfile.h +++ b/source/blender/blenloader/BLO_soundfile.h @@ -24,8 +24,8 @@ * * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BLO_SOUNDFILE_H -#define BLO_SOUNDFILE_H +#ifndef __BLO_SOUNDFILE_H__ +#define __BLO_SOUNDFILE_H__ /** \file BLO_soundfile.h * \ingroup blenloader diff --git a/source/blender/blenloader/BLO_sys_types.h b/source/blender/blenloader/BLO_sys_types.h index 20d211a74c1..9430878a641 100644 --- a/source/blender/blenloader/BLO_sys_types.h +++ b/source/blender/blenloader/BLO_sys_types.h @@ -40,8 +40,8 @@ * */ -#ifndef BLO_SYS_TYPES_H -#define BLO_SYS_TYPES_H +#ifndef __BLO_SYS_TYPES_H__ +#define __BLO_SYS_TYPES_H__ #ifdef __cplusplus extern "C" { diff --git a/source/blender/blenloader/BLO_undofile.h b/source/blender/blenloader/BLO_undofile.h index 0e06cbd9041..f3c16e07c62 100644 --- a/source/blender/blenloader/BLO_undofile.h +++ b/source/blender/blenloader/BLO_undofile.h @@ -26,8 +26,8 @@ * external writefile function prototypes */ -#ifndef BLO_UNDOFILE_H -#define BLO_UNDOFILE_H +#ifndef __BLO_UNDOFILE_H__ +#define __BLO_UNDOFILE_H__ /** \file BLO_undofile.h * \ingroup blenloader diff --git a/source/blender/blenloader/BLO_writefile.h b/source/blender/blenloader/BLO_writefile.h index 1ac5feef119..87b832a070e 100644 --- a/source/blender/blenloader/BLO_writefile.h +++ b/source/blender/blenloader/BLO_writefile.h @@ -25,8 +25,8 @@ * ***** END GPL LICENSE BLOCK ***** */ -#ifndef BLO_WRITEFILE_H -#define BLO_WRITEFILE_H +#ifndef __BLO_WRITEFILE_H__ +#define __BLO_WRITEFILE_H__ /** \file BLO_writefile.h * \ingroup blenloader diff --git a/source/blender/blenloader/intern/readfile.h b/source/blender/blenloader/intern/readfile.h index c7a53555415..511ded0ecdc 100644 --- a/source/blender/blenloader/intern/readfile.h +++ b/source/blender/blenloader/intern/readfile.h @@ -30,8 +30,8 @@ * \ingroup blenloader */ -#ifndef READFILE_H -#define READFILE_H +#ifndef __READFILE_H__ +#define __READFILE_H__ #include "zlib.h" diff --git a/source/blender/blenpluginapi/externdef.h b/source/blender/blenpluginapi/externdef.h index 28239d117cd..fbd81a83272 100644 --- a/source/blender/blenpluginapi/externdef.h +++ b/source/blender/blenpluginapi/externdef.h @@ -30,8 +30,8 @@ * SUCH DAMAGE. */ -#ifndef _EXTERNDEF_H -#define _EXTERNDEF_H +#ifndef __EXTERNDEF_H__ +#define __EXTERNDEF_H__ #ifdef WIN32 #ifdef PLUGIN_INTERN @@ -46,4 +46,4 @@ #define LIBIMPORT extern #endif -#endif /* _EXTERNDEF_H */ +#endif /* __EXTERNDEF_H__ */ diff --git a/source/blender/blenpluginapi/floatpatch.h b/source/blender/blenpluginapi/floatpatch.h index 73fe35cad26..4c9b98d073d 100644 --- a/source/blender/blenpluginapi/floatpatch.h +++ b/source/blender/blenpluginapi/floatpatch.h @@ -30,8 +30,8 @@ * SUCH DAMAGE. */ -#ifndef FLOATPATCH_H -#define FLOATPATCH_H +#ifndef __FLOATPATCH_H__ +#define __FLOATPATCH_H__ /* floating point libs differ at systems... with these defines it comilies at all! */ @@ -88,5 +88,5 @@ #endif -#endif /* FLOATPATCH_H */ +#endif /* __FLOATPATCH_H__ */ diff --git a/source/blender/blenpluginapi/iff.h b/source/blender/blenpluginapi/iff.h index f07e80b36ce..cf235c2f0ca 100644 --- a/source/blender/blenpluginapi/iff.h +++ b/source/blender/blenpluginapi/iff.h @@ -30,8 +30,8 @@ * SUCH DAMAGE. */ -#ifndef IFF_H -#define IFF_H +#ifndef __IFF_H__ +#define __IFF_H__ #include #include "util.h" @@ -117,5 +117,5 @@ LIBIMPORT void IMB_rectfill_area(struct ImBuf *ibuf, float *col, int x1, int y1, LIBIMPORT void buf_rectfill_area(unsigned char *rect, float *rectf, int width, int height, const float col[4], int x1, int y1, int x2, int y2); LIBIMPORT void IMB_rectfill_alpha(struct ImBuf *drect, const float value); -#endif /* IFF_H */ +#endif /* __IFF_H__ */ diff --git a/source/blender/blenpluginapi/plugin.h b/source/blender/blenpluginapi/plugin.h index 65569560faf..eb32fe80fa3 100644 --- a/source/blender/blenpluginapi/plugin.h +++ b/source/blender/blenpluginapi/plugin.h @@ -30,8 +30,8 @@ * SUCH DAMAGE. */ -#ifndef PLUGIN_H -#define PLUGIN_H +#ifndef __PLUGIN_H__ +#define __PLUGIN_H__ #include "externdef.h" #include "iff.h" @@ -102,5 +102,5 @@ LIBIMPORT float turbulence(float noisesize, float x, float y, float z, int depth /* hard turbulence */ LIBIMPORT float turbulence1(float noisesize, float x, float y, float z, int depth); -#endif /* PLUGIN_H */ +#endif /* __PLUGIN_H__ */ diff --git a/source/blender/blenpluginapi/util.h b/source/blender/blenpluginapi/util.h index 156e758977d..340201924d7 100644 --- a/source/blender/blenpluginapi/util.h +++ b/source/blender/blenpluginapi/util.h @@ -30,8 +30,8 @@ * SUCH DAMAGE. */ -#ifndef UTIL_H -#define UTIL_H +#ifndef __UTIL_H__ +#define __UTIL_H__ #include #include @@ -98,5 +98,5 @@ LIBEXPORT void *mallocT(int len, char *str); LIBEXPORT void *callocT(int len, char *str); LIBEXPORT void freeT(void *vmemh); -#endif /* UTIL_H */ +#endif /* __UTIL_H__ */ diff --git a/source/blender/collada/AnimationImporter.h b/source/blender/collada/AnimationImporter.h index 2c3165db122..118a50b0480 100644 --- a/source/blender/collada/AnimationImporter.h +++ b/source/blender/collada/AnimationImporter.h @@ -24,8 +24,8 @@ * \ingroup collada */ -#ifndef __BC_ANIMATIONIMPORTER_H__ -#define __BC_ANIMATIONIMPORTER_H__ +#ifndef __ANIMATIONIMPORTER_H__ +#define __ANIMATIONIMPORTER_H__ #include #include diff --git a/source/blender/collada/ArmatureImporter.h b/source/blender/collada/ArmatureImporter.h index 343badaca28..0c95ee81272 100644 --- a/source/blender/collada/ArmatureImporter.h +++ b/source/blender/collada/ArmatureImporter.h @@ -24,8 +24,8 @@ * \ingroup collada */ -#ifndef __BC_ARMATUREIMPORTER_H__ -#define __BC_ARMATUREIMPORTER_H__ +#ifndef __ARMATUREIMPORTER_H__ +#define __ARMATUREIMPORTER_H__ #include "COLLADAFWNode.h" #include "COLLADAFWUniqueId.h" diff --git a/source/blender/collada/MeshImporter.h b/source/blender/collada/MeshImporter.h index 3bccc4ed04a..0c2e600121f 100644 --- a/source/blender/collada/MeshImporter.h +++ b/source/blender/collada/MeshImporter.h @@ -24,8 +24,8 @@ * \ingroup collada */ -#ifndef __BC__MESHIMPORTER_H__ -#define __BC__MESHIMPORTER_H__ +#ifndef __MESHIMPORTER_H__ +#define __MESHIMPORTER_H__ #include #include diff --git a/source/blender/collada/SkinInfo.h b/source/blender/collada/SkinInfo.h index 71b7c71fd90..7befe7168d3 100644 --- a/source/blender/collada/SkinInfo.h +++ b/source/blender/collada/SkinInfo.h @@ -24,8 +24,8 @@ * \ingroup collada */ -#ifndef __BC_SKININFO_H__ -#define __BC_SKININFO_H__ +#ifndef __SKININFO_H__ +#define __SKININFO_H__ #include #include diff --git a/source/blender/collada/TransformReader.h b/source/blender/collada/TransformReader.h index e1409a9ced8..a08f4438d73 100644 --- a/source/blender/collada/TransformReader.h +++ b/source/blender/collada/TransformReader.h @@ -24,8 +24,8 @@ * \ingroup collada */ -#ifndef __BC_TRANSFORMREADER_H__ -#define __BC_TRANSFORMREADER_H__ +#ifndef __TRANSFORMREADER_H__ +#define __TRANSFORMREADER_H__ #include "COLLADAFWNode.h" #include "COLLADAFWTransformation.h" diff --git a/source/blender/collada/collada.h b/source/blender/collada/collada.h index 161977368db..f8afc797447 100644 --- a/source/blender/collada/collada.h +++ b/source/blender/collada/collada.h @@ -24,8 +24,8 @@ * \ingroup collada */ -#ifndef BLENDER_COLLADA_H -#define BLENDER_COLLADA_H +#ifndef __COLLADA_H__ +#define __COLLADA_H__ struct bContext; struct Scene; diff --git a/source/blender/collada/collada_internal.h b/source/blender/collada/collada_internal.h index 5c3aa49b837..4f555acb882 100644 --- a/source/blender/collada/collada_internal.h +++ b/source/blender/collada/collada_internal.h @@ -24,8 +24,8 @@ * \ingroup collada */ -#ifndef COLLADA_INTERNAL_H -#define COLLADA_INTERNAL_H +#ifndef __COLLADA_INTERNAL_H__ +#define __COLLADA_INTERNAL_H__ #include #include @@ -98,4 +98,4 @@ extern std::string get_material_id(Material *mat); extern bool has_object_type(Scene* sce, short obtype); -#endif /* COLLADA_INTERNAL_H */ +#endif /* __COLLADA_INTERNAL_H__ */ diff --git a/source/blender/collada/collada_utils.h b/source/blender/collada/collada_utils.h index b95e3bd2824..b0c24152652 100644 --- a/source/blender/collada/collada_utils.h +++ b/source/blender/collada/collada_utils.h @@ -24,8 +24,8 @@ * \ingroup collada */ -#ifndef __BC_UTILS_H__ -#define __BC_UTILS_H__ +#ifndef __COLLADA_UTILS_H__ +#define __COLLADA_UTILS_H__ #include "COLLADAFWMeshPrimitive.h" #include "COLLADAFWGeometry.h" diff --git a/source/blender/editors/animation/anim_intern.h b/source/blender/editors/animation/anim_intern.h index 0ac941e5630..bfc70c79404 100644 --- a/source/blender/editors/animation/anim_intern.h +++ b/source/blender/editors/animation/anim_intern.h @@ -28,8 +28,8 @@ */ -#ifndef ANIM_INTERN_H -#define ANIM_INTERN_H +#ifndef __ANIM_INTERN_H__ +#define __ANIM_INTERN_H__ /* KeyingSets/Keyframing Interface ------------- */ @@ -79,4 +79,4 @@ void ANIM_OT_driver_button_remove(struct wmOperatorType *ot); void ANIM_OT_copy_driver_button(struct wmOperatorType *ot); void ANIM_OT_paste_driver_button(struct wmOperatorType *ot); -#endif // ANIM_INTERN_H +#endif // __ANIM_INTERN_H__ diff --git a/source/blender/editors/armature/BIF_generate.h b/source/blender/editors/armature/BIF_generate.h index 311b110a3f6..1d8ee8e2c62 100644 --- a/source/blender/editors/armature/BIF_generate.h +++ b/source/blender/editors/armature/BIF_generate.h @@ -23,8 +23,8 @@ */ -#ifndef BIF_GENERATE_H -#define BIF_GENERATE_H +#ifndef __BIF_GENERATE_H__ +#define __BIF_GENERATE_H__ struct ToolSettings; struct EditBone; @@ -45,4 +45,4 @@ struct EditBone * subdivideArcBy(struct ToolSettings *toolsettings, struct bArma void setBoneRollFromNormal(struct EditBone *bone, float *no, float invmat[][4], float tmat[][3]); -#endif /* BIF_GENERATE_H */ +#endif /* __BIF_GENERATE_H__ */ diff --git a/source/blender/editors/armature/BIF_retarget.h b/source/blender/editors/armature/BIF_retarget.h index ad3d3555250..c878b0c36df 100644 --- a/source/blender/editors/armature/BIF_retarget.h +++ b/source/blender/editors/armature/BIF_retarget.h @@ -23,8 +23,8 @@ */ -#ifndef BIF_RETARGET_H -#define BIF_RETARGET_H +#ifndef __BIF_RETARGET_H__ +#define __BIF_RETARGET_H__ #include "DNA_listBase.h" @@ -168,4 +168,4 @@ void RIG_printArc(struct RigGraph *rg, struct RigArc *arc); void RIG_printGraph(struct RigGraph *rg); void RIG_printArcBones(struct RigArc *arc); -#endif /* BIF_RETARGET_H */ +#endif /* __BIF_RETARGET_H__ */ diff --git a/source/blender/editors/armature/armature_intern.h b/source/blender/editors/armature/armature_intern.h index 40d909380a0..13239f87e65 100644 --- a/source/blender/editors/armature/armature_intern.h +++ b/source/blender/editors/armature/armature_intern.h @@ -28,8 +28,8 @@ * \ingroup edarmature */ -#ifndef ED_ARMATURE_INTERN_H -#define ED_ARMATURE_INTERN_H +#ifndef __ARMATURE_INTERN_H__ +#define __ARMATURE_INTERN_H__ /* internal exports only */ struct wmOperatorType; @@ -219,5 +219,5 @@ struct EditBone *duplicateEditBoneObjects(struct EditBone *curBone, const char * /* editbones is the source list */ void updateDuplicateSubtargetObjects(struct EditBone *dupBone, struct ListBase *editbones, struct Object *src_ob, struct Object *dst_ob); -#endif /* ED_ARMATURE_INTERN_H */ +#endif /* __ARMATURE_INTERN_H__ */ diff --git a/source/blender/editors/armature/meshlaplacian.h b/source/blender/editors/armature/meshlaplacian.h index 6ec67997d24..fbc1596ed0c 100644 --- a/source/blender/editors/armature/meshlaplacian.h +++ b/source/blender/editors/armature/meshlaplacian.h @@ -31,8 +31,8 @@ */ -#ifndef BIF_MESHLAPLACIAN_H -#define BIF_MESHLAPLACIAN_H +#ifndef __MESHLAPLACIAN_H__ +#define __MESHLAPLACIAN_H__ //#define RIGID_DEFORM diff --git a/source/blender/editors/armature/reeb.h b/source/blender/editors/armature/reeb.h index 0080bbec120..b925aea510a 100644 --- a/source/blender/editors/armature/reeb.h +++ b/source/blender/editors/armature/reeb.h @@ -25,8 +25,8 @@ */ -#ifndef REEB_H_ -#define REEB_H_ +#ifndef __REEB_H__ +#define __REEB_H__ #define WITH_BF_REEB @@ -203,4 +203,4 @@ void REEB_exportGraph(ReebGraph *rg, int count); void REEB_draw(void); -#endif /*REEB_H_*/ +#endif /*__REEB_H__*/ diff --git a/source/blender/editors/curve/curve_intern.h b/source/blender/editors/curve/curve_intern.h index 2014345e163..0cc47774207 100644 --- a/source/blender/editors/curve/curve_intern.h +++ b/source/blender/editors/curve/curve_intern.h @@ -29,8 +29,8 @@ */ -#ifndef ED_CURVE_INTERN_H -#define ED_CURVE_INTERN_H +#ifndef __CURVE_INTERN_H__ +#define __CURVE_INTERN_H__ /* internal exports only */ struct wmOperatorType; diff --git a/source/blender/editors/gpencil/gpencil_intern.h b/source/blender/editors/gpencil/gpencil_intern.h index 8000af54f53..b88723d8a3c 100644 --- a/source/blender/editors/gpencil/gpencil_intern.h +++ b/source/blender/editors/gpencil/gpencil_intern.h @@ -28,8 +28,8 @@ * \ingroup edgpencil */ -#ifndef ED_GPENCIL_INTERN_H -#define ED_GPENCIL_INTERN_H +#ifndef __GPENCIL_INTERN_H__ +#define __GPENCIL_INTERN_H__ /* internal exports only */ @@ -117,5 +117,5 @@ typedef enum ACTCONT_TYPES { -#endif /* ED_GPENCIL_INTERN_H */ +#endif /* __GPENCIL_INTERN_H__ */ diff --git a/source/blender/editors/include/BIF_gl.h b/source/blender/editors/include/BIF_gl.h index 940a5866fcd..d34e6f74b4c 100644 --- a/source/blender/editors/include/BIF_gl.h +++ b/source/blender/editors/include/BIF_gl.h @@ -30,8 +30,8 @@ * \ingroup editorui */ -#ifndef BIF_GL_H -#define BIF_GL_H +#ifndef __BIF_GL_H__ +#define __BIF_GL_H__ #include "GL/glew.h" @@ -50,5 +50,5 @@ #define glMultMatrixf(x) glMultMatrixf( (float *)(x)) #define glLoadMatrixf(x) glLoadMatrixf( (float *)(x)) -#endif /* #ifdef BIF_GL_H */ +#endif /* #ifdef __BIF_GL_H__ */ diff --git a/source/blender/editors/include/BIF_glutil.h b/source/blender/editors/include/BIF_glutil.h index 33e9192a23e..b1114eba141 100644 --- a/source/blender/editors/include/BIF_glutil.h +++ b/source/blender/editors/include/BIF_glutil.h @@ -27,8 +27,8 @@ * \ingroup editorui */ -#ifndef BIF_GLUTIL_H -#define BIF_GLUTIL_H +#ifndef __BIF_GLUTIL_H__ +#define __BIF_GLUTIL_H__ struct rcti; struct rctf; @@ -216,5 +216,5 @@ typedef struct bglMats { } bglMats; void bgl_get_mats(bglMats *mats); -#endif /* BIF_GLUTIL_H */ +#endif /* __BIF_GLUTIL_H__ */ diff --git a/source/blender/editors/include/ED_anim_api.h b/source/blender/editors/include/ED_anim_api.h index 6b449f68e1d..c75ec259504 100644 --- a/source/blender/editors/include/ED_anim_api.h +++ b/source/blender/editors/include/ED_anim_api.h @@ -28,8 +28,8 @@ * \ingroup editors */ -#ifndef ED_ANIM_API_H -#define ED_ANIM_API_H +#ifndef __ED_ANIM_API_H__ +#define __ED_ANIM_API_H__ struct ID; struct ListBase; @@ -605,5 +605,5 @@ void ED_operatormacros_action(void); /* ************************************************ */ -#endif /* ED_ANIM_API_H */ +#endif /* __ED_ANIM_API_H__ */ diff --git a/source/blender/editors/include/ED_armature.h b/source/blender/editors/include/ED_armature.h index d345f16b768..544250fcd2e 100644 --- a/source/blender/editors/include/ED_armature.h +++ b/source/blender/editors/include/ED_armature.h @@ -27,8 +27,8 @@ * \ingroup editors */ -#ifndef ED_ARMATURE_H -#define ED_ARMATURE_H +#ifndef __ED_ARMATURE_H__ +#define __ED_ARMATURE_H__ #ifdef __cplusplus extern "C" { @@ -182,7 +182,7 @@ void mesh_deform_bind(struct Scene *scene, } #endif -#endif /* ED_ARMATURE_H */ +#endif /* __ED_ARMATURE_H__ */ diff --git a/source/blender/editors/include/ED_clip.h b/source/blender/editors/include/ED_clip.h index 7d36159f47e..5e8ef618a42 100644 --- a/source/blender/editors/include/ED_clip.h +++ b/source/blender/editors/include/ED_clip.h @@ -28,8 +28,8 @@ * \ingroup editors */ -#ifndef ED_MOVIECLIP_H -#define ED_MOVIECLIP_H +#ifndef __ED_CLIP_H__ +#define __ED_CLIP_H__ struct ARegion; struct bContext; diff --git a/source/blender/editors/include/ED_curve.h b/source/blender/editors/include/ED_curve.h index 7e7d60fdea8..700ff39fdba 100644 --- a/source/blender/editors/include/ED_curve.h +++ b/source/blender/editors/include/ED_curve.h @@ -28,8 +28,8 @@ * \ingroup editors */ -#ifndef ED_CURVE_H -#define ED_CURVE_H +#ifndef __ED_CURVE_H__ +#define __ED_CURVE_H__ struct Base; struct bContext; @@ -95,5 +95,5 @@ int ED_curve_actSelection(struct Curve *cu, float center[3]); /* debug only */ void printknots(struct Object *obedit); -#endif /* ED_CURVE_H */ +#endif /* __ED_CURVE_H__ */ diff --git a/source/blender/editors/include/ED_datafiles.h b/source/blender/editors/include/ED_datafiles.h index 2c4472c4636..9fe2fe685a0 100644 --- a/source/blender/editors/include/ED_datafiles.h +++ b/source/blender/editors/include/ED_datafiles.h @@ -28,8 +28,8 @@ * \ingroup editors */ -#ifndef ED_DATAFILES_H -#define ED_DATAFILES_H +#ifndef __ED_DATAFILES_H__ +#define __ED_DATAFILES_H__ /* Datafiles embedded in Blender */ @@ -142,5 +142,5 @@ extern int datatoc_vertexdraw_png_size; extern char datatoc_vertexdraw_png[]; -#endif /* ED_DATAFILES_H */ +#endif /* __ED_DATAFILES_H__ */ diff --git a/source/blender/editors/include/ED_fileselect.h b/source/blender/editors/include/ED_fileselect.h index dc362f9f99b..7cf750f5a9b 100644 --- a/source/blender/editors/include/ED_fileselect.h +++ b/source/blender/editors/include/ED_fileselect.h @@ -28,8 +28,8 @@ * \ingroup editors */ -#ifndef ED_FILES_H -#define ED_FILES_H +#ifndef __ED_FILESELECT_H__ +#define __ED_FILESELECT_H__ struct SpaceFile; struct ARegion; @@ -106,5 +106,5 @@ void ED_fileselect_exit(struct bContext *C, struct SpaceFile *sfile); int ED_file_extension_icon(const char *relname); -#endif /* ED_FILES_H */ +#endif /* __ED_FILESELECT_H__ */ diff --git a/source/blender/editors/include/ED_fluidsim.h b/source/blender/editors/include/ED_fluidsim.h index d47ba2bfba9..54acf73aacd 100644 --- a/source/blender/editors/include/ED_fluidsim.h +++ b/source/blender/editors/include/ED_fluidsim.h @@ -32,8 +32,8 @@ * \ingroup editors */ -#ifndef ED_FLUIDSIM_H -#define ED_FLUIDSIM_H +#ifndef __ED_FLUIDSIM_H__ +#define __ED_FLUIDSIM_H__ struct Object; struct FluidsimSettings; @@ -48,4 +48,4 @@ void fluidsimSettingsFree(struct FluidsimSettings* sb); /* duplicate internal data */ struct FluidsimSettings* fluidsimSettingsCopy(struct FluidsimSettings* sb); -#endif /* ED_FLUIDSIM_H */ +#endif /* __ED_FLUIDSIM_H__ */ diff --git a/source/blender/editors/include/ED_gpencil.h b/source/blender/editors/include/ED_gpencil.h index a640b5c911c..ce434493137 100644 --- a/source/blender/editors/include/ED_gpencil.h +++ b/source/blender/editors/include/ED_gpencil.h @@ -27,8 +27,8 @@ * \ingroup editors */ -#ifndef ED_GPENCIL_H -#define ED_GPENCIL_H +#ifndef __ED_GPENCIL_H__ +#define __ED_GPENCIL_H__ struct ListBase; struct bContext; @@ -109,4 +109,4 @@ void mirror_gplayer_frames(struct bGPDlayer *gpl, short mode); int ED_gpencil_session_active(void); int ED_undo_gpencil_step(struct bContext *C, int step, const char *name); -#endif /* ED_GPENCIL_H */ +#endif /* __ED_GPENCIL_H__ */ diff --git a/source/blender/editors/include/ED_image.h b/source/blender/editors/include/ED_image.h index 05cde05f25c..b95615ce365 100644 --- a/source/blender/editors/include/ED_image.h +++ b/source/blender/editors/include/ED_image.h @@ -27,8 +27,8 @@ * \ingroup editors */ -#ifndef ED_IMAGE_H -#define ED_IMAGE_H +#ifndef __ED_IMAGE_H__ +#define __ED_IMAGE_H__ struct SpaceImage; struct Main; @@ -70,5 +70,5 @@ void ED_image_update_frame(const struct Main *mainp, int cfra); void ED_image_draw_info(struct ARegion *ar, int color_manage, int channels, int x, int y, const unsigned char cp[4], const float fp[4], int *zp, float *zpf); -#endif /* ED_IMAGE_H */ +#endif /* __ED_IMAGE_H__ */ diff --git a/source/blender/editors/include/ED_info.h b/source/blender/editors/include/ED_info.h index 7044ab63cad..6970abaa633 100644 --- a/source/blender/editors/include/ED_info.h +++ b/source/blender/editors/include/ED_info.h @@ -24,11 +24,11 @@ * \ingroup editors */ -#ifndef ED_INFO_H -#define ED_INFO_H +#ifndef __ED_INFO_H__ +#define __ED_INFO_H__ /* info_stats.c */ void ED_info_stats_clear(struct Scene *scene); const char *ED_info_stats_string(struct Scene *scene); -#endif /* ED_INFO_H */ +#endif /* __ED_INFO_H__ */ diff --git a/source/blender/editors/include/ED_keyframes_draw.h b/source/blender/editors/include/ED_keyframes_draw.h index 91723a1a33f..7f68325e5ee 100644 --- a/source/blender/editors/include/ED_keyframes_draw.h +++ b/source/blender/editors/include/ED_keyframes_draw.h @@ -29,8 +29,8 @@ * \ingroup editors */ -#ifndef ED_KEYFRAMES_DRAW_H -#define ED_KEYFRAMES_DRAW_H +#ifndef __ED_KEYFRAMES_DRAW_H__ +#define __ED_KEYFRAMES_DRAW_H__ struct bAnimContext; struct AnimData; @@ -150,5 +150,5 @@ short compare_ab_cfraPtr(void *node, void *data); /* Checks if ActKeyBlock can be used (i.e. drawn/used to detect "holds") */ short actkeyblock_is_valid(ActKeyBlock *ab, struct DLRBT_Tree *keys); -#endif /* ED_KEYFRAMES_DRAW_H */ +#endif /* __ED_KEYFRAMES_DRAW_H__ */ diff --git a/source/blender/editors/include/ED_keyframes_edit.h b/source/blender/editors/include/ED_keyframes_edit.h index 5881e8c4bfe..7ba37b49f85 100644 --- a/source/blender/editors/include/ED_keyframes_edit.h +++ b/source/blender/editors/include/ED_keyframes_edit.h @@ -28,8 +28,8 @@ * \ingroup editors */ -#ifndef ED_KEYFRAMES_EDIT_H -#define ED_KEYFRAMES_EDIT_H +#ifndef __ED_KEYFRAMES_EDIT_H__ +#define __ED_KEYFRAMES_EDIT_H__ struct bAnimContext; struct bAnimListElem; @@ -254,4 +254,4 @@ short paste_animedit_keys(struct bAnimContext *ac, ListBase *anim_data, /* ************************************************ */ -#endif /* ED_KEYFRAMES_EDIT_H */ +#endif /* __ED_KEYFRAMES_EDIT_H__ */ diff --git a/source/blender/editors/include/ED_keyframing.h b/source/blender/editors/include/ED_keyframing.h index eda84d0e7a4..63c0511e6b3 100644 --- a/source/blender/editors/include/ED_keyframing.h +++ b/source/blender/editors/include/ED_keyframing.h @@ -27,8 +27,8 @@ * \ingroup editors */ -#ifndef ED_KEYFRAMING_H -#define ED_KEYFRAMING_H +#ifndef __ED_KEYFRAMING_H__ +#define __ED_KEYFRAMING_H__ #ifdef __cplusplus extern "C" { @@ -330,4 +330,4 @@ int ED_autokeyframe_pchan(struct bContext *C, struct Scene *scene, struct Object } #endif -#endif /* ED_KEYFRAMING_H */ +#endif /* __ED_KEYFRAMING_H__ */ diff --git a/source/blender/editors/include/ED_logic.h b/source/blender/editors/include/ED_logic.h index ce1f2b8faac..71a5552ae26 100644 --- a/source/blender/editors/include/ED_logic.h +++ b/source/blender/editors/include/ED_logic.h @@ -27,10 +27,10 @@ * \ingroup editors */ -#ifndef ED_LOGIC_H -#define ED_LOGIC_H +#ifndef __ED_LOGIC_H__ +#define __ED_LOGIC_H__ /* logic_ops.c */ void ED_operatortypes_logic(void); -#endif /* ED_LOGIC_H */ +#endif /* __ED_LOGIC_H__ */ diff --git a/source/blender/editors/include/ED_markers.h b/source/blender/editors/include/ED_markers.h index 30a0d47eda2..c0b5ba6ecf8 100644 --- a/source/blender/editors/include/ED_markers.h +++ b/source/blender/editors/include/ED_markers.h @@ -28,8 +28,8 @@ * \ingroup editors */ -#ifndef ED_MARKERS_H -#define ED_MARKERS_H +#ifndef __ED_MARKERS_H__ +#define __ED_MARKERS_H__ struct wmKeyConfig; struct wmKeyMap; @@ -77,5 +77,5 @@ void ED_marker_keymap_animedit_conflictfree(struct wmKeyMap *keymap); /* debugging only */ void debug_markers_print_list(struct ListBase *markers); -#endif /* ED_MARKERS_H */ +#endif /* __ED_MARKERS_H__ */ diff --git a/source/blender/editors/include/ED_mball.h b/source/blender/editors/include/ED_mball.h index 259004864fb..89917f09284 100644 --- a/source/blender/editors/include/ED_mball.h +++ b/source/blender/editors/include/ED_mball.h @@ -28,8 +28,8 @@ * \ingroup editors */ -#ifndef _ED_MBALL_H_ -#define _ED_MBALL_H_ +#ifndef __ED_MBALL_H__ +#define __ED_MBALL_H__ struct bContext; struct Object; diff --git a/source/blender/editors/include/ED_mesh.h b/source/blender/editors/include/ED_mesh.h index 160e3eea6cc..6e289fb5a2a 100644 --- a/source/blender/editors/include/ED_mesh.h +++ b/source/blender/editors/include/ED_mesh.h @@ -28,8 +28,8 @@ * \ingroup editors */ -#ifndef ED_MESH_H -#define ED_MESH_H +#ifndef __ED_MESH_H__ +#define __ED_MESH_H__ #ifdef __cplusplus extern "C" { @@ -268,5 +268,5 @@ void ED_mesh_mirrtopo_free(MirrTopoStore_t *mesh_topo_store); } #endif -#endif /* ED_MESH_H */ +#endif /* __ED_MESH_H__ */ diff --git a/source/blender/editors/include/ED_node.h b/source/blender/editors/include/ED_node.h index 18bb4975da9..192236b7cb8 100644 --- a/source/blender/editors/include/ED_node.h +++ b/source/blender/editors/include/ED_node.h @@ -28,8 +28,8 @@ * \ingroup editors */ -#ifndef ED_NODE_H -#define ED_NODE_H +#ifndef __ED_NODE_H__ +#define __ED_NODE_H__ struct ID; struct Main; @@ -63,5 +63,5 @@ void ED_node_set_active(struct Main *bmain, struct bNodeTree *ntree, struct bNod /* node ops.c */ void ED_operatormacros_node(void); -#endif /* ED_NODE_H */ +#endif /* __ED_NODE_H__ */ diff --git a/source/blender/editors/include/ED_numinput.h b/source/blender/editors/include/ED_numinput.h index e2387c3e9dd..f103b07d09c 100644 --- a/source/blender/editors/include/ED_numinput.h +++ b/source/blender/editors/include/ED_numinput.h @@ -24,8 +24,8 @@ * \ingroup editors */ -#ifndef ED_NUMINPUT_H -#define ED_NUMINPUT_H +#ifndef __ED_NUMINPUT_H__ +#define __ED_NUMINPUT_H__ typedef struct NumInput { diff --git a/source/blender/editors/include/ED_object.h b/source/blender/editors/include/ED_object.h index f3e780d715e..c808e63d320 100644 --- a/source/blender/editors/include/ED_object.h +++ b/source/blender/editors/include/ED_object.h @@ -28,8 +28,8 @@ * \ingroup editors */ -#ifndef ED_OBJECT_H -#define ED_OBJECT_H +#ifndef __ED_OBJECT_H__ +#define __ED_OBJECT_H__ #ifdef __cplusplus extern "C" { @@ -178,5 +178,5 @@ int ED_object_modifier_copy(struct ReportList *reports, struct Object *ob, struc } #endif -#endif /* ED_OBJECT_H */ +#endif /* __ED_OBJECT_H__ */ diff --git a/source/blender/editors/include/ED_particle.h b/source/blender/editors/include/ED_particle.h index 3035aa44735..1c7f5cf0641 100644 --- a/source/blender/editors/include/ED_particle.h +++ b/source/blender/editors/include/ED_particle.h @@ -30,8 +30,8 @@ * \ingroup editors */ -#ifndef ED_PARTICLE_H -#define ED_PARTICLE_H +#ifndef __ED_PARTICLE_H__ +#define __ED_PARTICLE_H__ struct bContext; struct Object; @@ -74,5 +74,5 @@ int PE_undo_valid(struct Scene *scene); void PE_undo_number(struct Scene *scene, int nr); const char *PE_undo_get_name(struct Scene *scene, int nr, int *active); -#endif /* ED_PARTICLE_H */ +#endif /* __ED_PARTICLE_H__ */ diff --git a/source/blender/editors/include/ED_physics.h b/source/blender/editors/include/ED_physics.h index eadd1566671..6c885b9336f 100644 --- a/source/blender/editors/include/ED_physics.h +++ b/source/blender/editors/include/ED_physics.h @@ -30,8 +30,8 @@ * \ingroup editors */ -#ifndef ED_PHYSICS_H -#define ED_PHYSICS_H +#ifndef __ED_PHYSICS_H__ +#define __ED_PHYSICS_H__ struct wmKeyConfig; @@ -44,5 +44,5 @@ int PE_poll_view3d(struct bContext *C); void ED_operatortypes_physics(void); void ED_keymap_physics(struct wmKeyConfig *keyconf); -#endif /* ED_PHYSICS_H */ +#endif /* __ED_PHYSICS_H__ */ diff --git a/source/blender/editors/include/ED_render.h b/source/blender/editors/include/ED_render.h index 73776f7234b..c9e00b0296a 100644 --- a/source/blender/editors/include/ED_render.h +++ b/source/blender/editors/include/ED_render.h @@ -25,8 +25,8 @@ * \ingroup editors */ -#ifndef ED_RENDER_H -#define ED_RENDER_H +#ifndef __ED_RENDER_H__ +#define __ED_RENDER_H__ #include "DNA_vec_types.h" diff --git a/source/blender/editors/include/ED_screen.h b/source/blender/editors/include/ED_screen.h index e0ff5cddf85..252eb790b2a 100644 --- a/source/blender/editors/include/ED_screen.h +++ b/source/blender/editors/include/ED_screen.h @@ -28,8 +28,8 @@ * \ingroup editors */ -#ifndef ED_SCREEN_H -#define ED_SCREEN_H +#ifndef __ED_SCREEN_H__ +#define __ED_SCREEN_H__ #include "DNA_screen_types.h" #include "DNA_space_types.h" @@ -181,5 +181,5 @@ int ED_operator_posemode(struct bContext *C); #define ED_KEYMAP_GPENCIL 32 #define ED_KEYMAP_HEADER 64 -#endif /* ED_SCREEN_H */ +#endif /* __ED_SCREEN_H__ */ diff --git a/source/blender/editors/include/ED_screen_types.h b/source/blender/editors/include/ED_screen_types.h index 544d366c926..51699d095ae 100644 --- a/source/blender/editors/include/ED_screen_types.h +++ b/source/blender/editors/include/ED_screen_types.h @@ -28,8 +28,8 @@ * \ingroup editors */ -#ifndef ED_SCREEN_TYPES_H__ -#define ED_SCREEN_TYPES_H__ +#ifndef __ED_SCREEN_TYPES_H__ +#define __ED_SCREEN_TYPES_H__ /* ----------------------------------------------------- */ @@ -100,4 +100,4 @@ typedef struct AZone { #define AZONE_AREA 1 #define AZONE_REGION 2 -#endif /* ED_SCREEN_TYPES_H__ */ +#endif /* __ED_SCREEN_TYPES_H__ */ diff --git a/source/blender/editors/include/ED_sculpt.h b/source/blender/editors/include/ED_sculpt.h index bd746e36ef4..9cb32c31f5b 100644 --- a/source/blender/editors/include/ED_sculpt.h +++ b/source/blender/editors/include/ED_sculpt.h @@ -27,8 +27,8 @@ * \ingroup editors */ -#ifndef ED_SCULPT_H -#define ED_SCULPT_H +#ifndef __ED_SCULPT_H__ +#define __ED_SCULPT_H__ struct ARegion; struct bContext; diff --git a/source/blender/editors/include/ED_sequencer.h b/source/blender/editors/include/ED_sequencer.h index da2fce2596b..abeb00c301f 100644 --- a/source/blender/editors/include/ED_sequencer.h +++ b/source/blender/editors/include/ED_sequencer.h @@ -24,9 +24,9 @@ * \ingroup editors */ -#ifndef ED_SEQUENCER_H -#define ED_SEQUENCER_H +#ifndef __ED_SEQUENCER_H__ +#define __ED_SEQUENCER_H__ #define SEQ_ZOOM_FAC(szoom) ((szoom) > 0.0f)? (szoom) : ((szoom) == 0.0f)? (1.0f) : (-1.0f/(szoom)) -#endif /* ED_SEQUENCER_H */ +#endif /* __ED_SEQUENCER_H__ */ diff --git a/source/blender/editors/include/ED_sound.h b/source/blender/editors/include/ED_sound.h index a4e90094e19..d3e7502bb99 100644 --- a/source/blender/editors/include/ED_sound.h +++ b/source/blender/editors/include/ED_sound.h @@ -28,10 +28,10 @@ * \ingroup editors */ -#ifndef ED_SOUND_H -#define ED_SOUND_H +#ifndef __ED_SOUND_H__ +#define __ED_SOUND_H__ void ED_operatortypes_sound(void); -#endif /* ED_SOUND_H */ +#endif /* __ED_SOUND_H__ */ diff --git a/source/blender/editors/include/ED_space_api.h b/source/blender/editors/include/ED_space_api.h index b5a1ca193db..0d6e640c7bf 100644 --- a/source/blender/editors/include/ED_space_api.h +++ b/source/blender/editors/include/ED_space_api.h @@ -28,8 +28,8 @@ * \ingroup editors */ -#ifndef ED_SPACE_API_H -#define ED_SPACE_API_H +#ifndef __ED_SPACE_API_H__ +#define __ED_SPACE_API_H__ struct ARegionType; struct bContext; @@ -73,5 +73,5 @@ void ED_region_draw_cb_draw(const struct bContext *, struct ARegion *, int); void ED_region_draw_cb_exit(struct ARegionType *, void *); void *ED_region_draw_cb_customdata(void *handle); -#endif /* ED_SPACE_API_H */ +#endif /* __ED_SPACE_API_H__ */ diff --git a/source/blender/editors/include/ED_text.h b/source/blender/editors/include/ED_text.h index da01e25f4d9..9a36cb3d6ab 100644 --- a/source/blender/editors/include/ED_text.h +++ b/source/blender/editors/include/ED_text.h @@ -27,12 +27,12 @@ * \ingroup editors */ -#ifndef ED_TEXT_H -#define ED_TEXT_H +#ifndef __ED_TEXT_H__ +#define __ED_TEXT_H__ struct bContext; void ED_text_undo_step(struct bContext *C, int step); -#endif /* ED_TEXT_H */ +#endif /* __ED_TEXT_H__ */ diff --git a/source/blender/editors/include/ED_transform.h b/source/blender/editors/include/ED_transform.h index 2ca3e2bfe7f..36bda11b1d4 100644 --- a/source/blender/editors/include/ED_transform.h +++ b/source/blender/editors/include/ED_transform.h @@ -29,8 +29,8 @@ * \ingroup editors */ -#ifndef ED_TRANSFORM_H -#define ED_TRANSFORM_H +#ifndef __ED_TRANSFORM_H__ +#define __ED_TRANSFORM_H__ /* ******************* Registration Function ********************** */ diff --git a/source/blender/editors/include/ED_types.h b/source/blender/editors/include/ED_types.h index 6ea45c995c9..c4104472a82 100644 --- a/source/blender/editors/include/ED_types.h +++ b/source/blender/editors/include/ED_types.h @@ -28,8 +28,8 @@ * \ingroup editors */ -#ifndef ED_TYPES_H -#define ED_TYPES_H +#ifndef __ED_TYPES_H__ +#define __ED_TYPES_H__ /* **************** GENERAL EDITOR-WIDE TYPES AND DEFINES ************************** */ @@ -44,5 +44,5 @@ -#endif /* ED_TYPES_H */ +#endif /* __ED_TYPES_H__ */ diff --git a/source/blender/editors/include/ED_util.h b/source/blender/editors/include/ED_util.h index c08e5eabbd3..d082f3449fa 100644 --- a/source/blender/editors/include/ED_util.h +++ b/source/blender/editors/include/ED_util.h @@ -28,8 +28,8 @@ * \ingroup editors */ -#ifndef ED_UTIL_H -#define ED_UTIL_H +#ifndef __ED_UTIL_H__ +#define __ED_UTIL_H__ struct Scene; struct Object; @@ -93,5 +93,5 @@ int GetButStringLength(const char *str); /* where else to go ? */ void unpack_menu(struct bContext *C, const char *opname, const char *id_name, const char *abs_name, const char *folder, struct PackedFile *pf); -#endif /* ED_UTIL_H */ +#endif /* __ED_UTIL_H__ */ diff --git a/source/blender/editors/include/ED_uvedit.h b/source/blender/editors/include/ED_uvedit.h index bc8a12c97cc..4d8bceb044f 100644 --- a/source/blender/editors/include/ED_uvedit.h +++ b/source/blender/editors/include/ED_uvedit.h @@ -27,8 +27,8 @@ * \ingroup editors */ -#ifndef ED_UVEDIT_H -#define ED_UVEDIT_H +#ifndef __ED_UVEDIT_H__ +#define __ED_UVEDIT_H__ struct ARegionType; struct EditFace; @@ -86,5 +86,5 @@ void draw_uvedit_main(struct SpaceImage *sima, struct ARegion *ar, struct Scene /* uvedit_buttons.c */ void ED_uvedit_buttons_register(struct ARegionType *art); -#endif /* ED_UVEDIT_H */ +#endif /* __ED_UVEDIT_H__ */ diff --git a/source/blender/editors/include/ED_view3d.h b/source/blender/editors/include/ED_view3d.h index 7616e25cbe9..63c03cd2963 100644 --- a/source/blender/editors/include/ED_view3d.h +++ b/source/blender/editors/include/ED_view3d.h @@ -28,8 +28,8 @@ * \ingroup editors */ -#ifndef ED_VIEW3D_H -#define ED_VIEW3D_H +#ifndef __ED_VIEW3D_H__ +#define __ED_VIEW3D_H__ /* ********* exports for space_view3d/ module ********** */ struct ARegion; @@ -308,4 +308,4 @@ void ED_view3d_operator_properties_viewmat(struct wmOperatorType *ot); void ED_view3d_operator_properties_viewmat_set(struct bContext *C, struct wmOperator *op); void ED_view3d_operator_properties_viewmat_get(struct wmOperator *op, int *winx, int *winy, float persmat[4][4]); -#endif /* ED_VIEW3D_H */ +#endif /* __ED_VIEW3D_H__ */ diff --git a/source/blender/editors/include/UI_icons.h b/source/blender/editors/include/UI_icons.h index f102ecb0d08..f35af356c94 100644 --- a/source/blender/editors/include/UI_icons.h +++ b/source/blender/editors/include/UI_icons.h @@ -29,8 +29,8 @@ */ /* Note: this is included twice with different #defines for DEF_ICON - once from UI_resources.h for the internal icon enum and - once for interface_api.c for the definition of the RNA enum for the icons */ + * once from UI_resources.h for the internal icon enum and + * once for interface_api.c for the definition of the RNA enum for the icons */ /* ICON_ prefix added */ DEF_ICON(NONE) diff --git a/source/blender/editors/include/UI_interface.h b/source/blender/editors/include/UI_interface.h index 3f907004931..5eafdc27e68 100644 --- a/source/blender/editors/include/UI_interface.h +++ b/source/blender/editors/include/UI_interface.h @@ -29,8 +29,8 @@ * \ingroup editorui */ -#ifndef UI_INTERFACE_H -#define UI_INTERFACE_H +#ifndef __UI_INTERFACE_H__ +#define __UI_INTERFACE_H__ #include "BLO_sys_types.h" /* size_t */ #include "RNA_types.h" @@ -838,5 +838,5 @@ void UI_template_fix_linking(void); int UI_editsource_enable_check(void); void UI_editsource_active_but_test(uiBut *but); -#endif /* UI_INTERFACE_H */ +#endif /* __UI_INTERFACE_H__ */ diff --git a/source/blender/editors/include/UI_interface_icons.h b/source/blender/editors/include/UI_interface_icons.h index e5ad51169a8..a1b42ac39c2 100644 --- a/source/blender/editors/include/UI_interface_icons.h +++ b/source/blender/editors/include/UI_interface_icons.h @@ -29,8 +29,8 @@ * \ingroup editorui */ -#ifndef UI_INTERFACE_ICONS_H -#define UI_INTERFACE_ICONS_H +#ifndef __UI_INTERFACE_ICONS_H__ +#define __UI_INTERFACE_ICONS_H__ struct Image; struct ImBuf; @@ -75,4 +75,4 @@ struct ListBase *UI_iconfile_list(void); int UI_iconfile_get_index(const char *filename); -#endif /* UI_INTERFACE_ICONS_H */ +#endif /* __UI_INTERFACE_ICONS_H__ */ diff --git a/source/blender/editors/include/UI_resources.h b/source/blender/editors/include/UI_resources.h index d755b17bc98..f676dcbdff2 100644 --- a/source/blender/editors/include/UI_resources.h +++ b/source/blender/editors/include/UI_resources.h @@ -30,8 +30,8 @@ * \ingroup editorui */ -#ifndef UI_RESOURCES_H -#define UI_RESOURCES_H +#ifndef __UI_RESOURCES_H__ +#define __UI_RESOURCES_H__ /* elubie: TODO: move the typedef for icons to UI_interface_icons.h */ /* and add/replace include of UI_resources.h by UI_interface_icons.h */ diff --git a/source/blender/editors/include/UI_view2d.h b/source/blender/editors/include/UI_view2d.h index 7ff27a5bbde..436f268d1bf 100644 --- a/source/blender/editors/include/UI_view2d.h +++ b/source/blender/editors/include/UI_view2d.h @@ -31,8 +31,8 @@ * \ingroup editorui */ -#ifndef UI_VIEW2D_H -#define UI_VIEW2D_H +#ifndef __UI_VIEW2D_H__ +#define __UI_VIEW2D_H__ /* ------------------------------------------ */ /* Settings and Defines: */ @@ -201,5 +201,5 @@ void UI_view2d_text_cache_draw(struct ARegion *ar); void UI_view2d_operatortypes(void); void UI_view2d_keymap(struct wmKeyConfig *keyconf); -#endif /* UI_VIEW2D_H */ +#endif /* __UI_VIEW2D_H__ */ diff --git a/source/blender/editors/interface/interface_intern.h b/source/blender/editors/interface/interface_intern.h index 2d8de475c4b..d324018e4ba 100644 --- a/source/blender/editors/interface/interface_intern.h +++ b/source/blender/editors/interface/interface_intern.h @@ -30,8 +30,8 @@ */ -#ifndef INTERFACE_H -#define INTERFACE_H +#ifndef __INTERFACE_INTERN_H__ +#define __INTERFACE_INTERN_H__ #include "UI_resources.h" #include "RNA_types.h" diff --git a/source/blender/editors/mesh/mesh_intern.h b/source/blender/editors/mesh/mesh_intern.h index 91cba8a482b..21d615e52d5 100644 --- a/source/blender/editors/mesh/mesh_intern.h +++ b/source/blender/editors/mesh/mesh_intern.h @@ -32,8 +32,8 @@ /* Internal for editmesh_xxxx.c functions */ -#ifndef MESH_INTERN_H -#define MESH_INTERN_H +#ifndef __MESH_INTERN_H__ +#define __MESH_INTERN_H__ struct bContext; struct wmOperatorType; @@ -261,5 +261,5 @@ void MESH_OT_navmesh_face_add(struct wmOperatorType *ot); void MESH_OT_navmesh_reset(struct wmOperatorType *ot); void MESH_OT_navmesh_clear(struct wmOperatorType *ot); -#endif // MESH_INTERN_H +#endif // __MESH_INTERN_H__ diff --git a/source/blender/editors/metaball/mball_intern.h b/source/blender/editors/metaball/mball_intern.h index 1cb4c19fc72..0329f8e5bfa 100644 --- a/source/blender/editors/metaball/mball_intern.h +++ b/source/blender/editors/metaball/mball_intern.h @@ -29,8 +29,8 @@ */ -#ifndef ED_MBALL_INTERN_H -#define ED_MBALL_INTERN_H +#ifndef __MBALL_INTERN_H__ +#define __MBALL_INTERN_H__ #include "DNA_object_types.h" diff --git a/source/blender/editors/object/object_intern.h b/source/blender/editors/object/object_intern.h index 7f416feb0d5..73c5c50f448 100644 --- a/source/blender/editors/object/object_intern.h +++ b/source/blender/editors/object/object_intern.h @@ -28,8 +28,8 @@ * \ingroup edobj */ -#ifndef ED_OBJECT_INTERN_H -#define ED_OBJECT_INTERN_H +#ifndef __OBJECT_INTERN_H__ +#define __OBJECT_INTERN_H__ struct wmOperatorType; struct KeyBlock; @@ -225,5 +225,5 @@ void OBJECT_OT_group_remove(struct wmOperatorType *ot); /* object_bake.c */ void OBJECT_OT_bake_image(wmOperatorType *ot); -#endif /* ED_OBJECT_INTERN_H */ +#endif /* __OBJECT_INTERN_H__ */ diff --git a/source/blender/editors/physics/physics_intern.h b/source/blender/editors/physics/physics_intern.h index db6d63f6396..75779cf6102 100644 --- a/source/blender/editors/physics/physics_intern.h +++ b/source/blender/editors/physics/physics_intern.h @@ -30,8 +30,8 @@ */ -#ifndef ED_PHYSICS_INTERN_H -#define ED_PHYSICS_INTERN_H +#ifndef __PHYSICS_INTERN_H__ +#define __PHYSICS_INTERN_H__ struct wmOperatorType; @@ -105,5 +105,5 @@ void PTCACHE_OT_bake_from_cache(struct wmOperatorType *ot); void PTCACHE_OT_add(struct wmOperatorType *ot); void PTCACHE_OT_remove(struct wmOperatorType *ot); -#endif /* ED_PHYSICS_INTERN_H */ +#endif /* __PHYSICS_INTERN_H__ */ diff --git a/source/blender/editors/render/render_intern.h b/source/blender/editors/render/render_intern.h index 08001688e3f..18ba2b5abf9 100644 --- a/source/blender/editors/render/render_intern.h +++ b/source/blender/editors/render/render_intern.h @@ -29,8 +29,8 @@ */ -#ifndef RENDER_INTERN_H -#define RENDER_INTERN_H +#ifndef __RENDER_INTERN_H__ +#define __RENDER_INTERN_H__ struct wmOperatorType; struct RenderResult; @@ -77,5 +77,5 @@ void RENDER_OT_view_cancel(struct wmOperatorType *ot); /* render_opengl.c */ void RENDER_OT_opengl(struct wmOperatorType *ot); -#endif /* RENDER_INTERN_H */ +#endif /* __RENDER_INTERN_H__ */ diff --git a/source/blender/editors/screen/screen_intern.h b/source/blender/editors/screen/screen_intern.h index b882a0881a1..90533fd3a12 100644 --- a/source/blender/editors/screen/screen_intern.h +++ b/source/blender/editors/screen/screen_intern.h @@ -28,8 +28,8 @@ * \ingroup edscr */ -#ifndef ED_SCREEN_INTERN_H -#define ED_SCREEN_INTERN_H +#ifndef __SCREEN_INTERN_H__ +#define __SCREEN_INTERN_H__ /* internal exports only */ struct wmWindow; @@ -65,7 +65,7 @@ extern const char *screen_context_dir[]; /* doc access */ void SCREEN_OT_screenshot(struct wmOperatorType *ot); void SCREEN_OT_screencast(struct wmOperatorType *ot); -#endif /* ED_SCREEN_INTERN_H */ +#endif /* __SCREEN_INTERN_H__ */ diff --git a/source/blender/editors/sculpt_paint/paint_intern.h b/source/blender/editors/sculpt_paint/paint_intern.h index 73dc1e236f6..b4315c2847d 100644 --- a/source/blender/editors/sculpt_paint/paint_intern.h +++ b/source/blender/editors/sculpt_paint/paint_intern.h @@ -29,8 +29,8 @@ */ -#ifndef ED_PAINT_INTERN_H -#define ED_PAINT_INTERN_H +#ifndef __PAINT_INTERN_H__ +#define __PAINT_INTERN_H__ struct ARegion; struct bContext; @@ -168,5 +168,5 @@ struct ListBase *undo_paint_push_get_list(int type); void undo_paint_push_count_alloc(int type, int size); void undo_paint_push_end(int type); -#endif /* ED_PAINT_INTERN_H */ +#endif /* __PAINT_INTERN_H__ */ diff --git a/source/blender/editors/sculpt_paint/sculpt_intern.h b/source/blender/editors/sculpt_paint/sculpt_intern.h index 275d1d52355..a69d5b2ee56 100644 --- a/source/blender/editors/sculpt_paint/sculpt_intern.h +++ b/source/blender/editors/sculpt_paint/sculpt_intern.h @@ -30,8 +30,8 @@ */ -#ifndef BDR_SCULPTMODE_H -#define BDR_SCULPTMODE_H +#ifndef __SCULPT_INTERN_H__ +#define __SCULPT_INTERN_H__ #include "DNA_listBase.h" #include "DNA_vec_types.h" diff --git a/source/blender/editors/sound/sound_intern.h b/source/blender/editors/sound/sound_intern.h index 91c1b5d1456..e8a8ec55ab5 100644 --- a/source/blender/editors/sound/sound_intern.h +++ b/source/blender/editors/sound/sound_intern.h @@ -29,10 +29,10 @@ */ -#ifndef ED_SOUND_INTERN_H -#define ED_SOUND_INTERN_H +#ifndef __SOUND_INTERN_H__ +#define __SOUND_INTERN_H__ struct wmOperatorType; -#endif /* ED_SOUND_INTERN_H */ +#endif /* __SOUND_INTERN_H__ */ diff --git a/source/blender/editors/space_action/action_intern.h b/source/blender/editors/space_action/action_intern.h index 2a23f105737..751a809cac6 100644 --- a/source/blender/editors/space_action/action_intern.h +++ b/source/blender/editors/space_action/action_intern.h @@ -28,8 +28,8 @@ * \ingroup spaction */ -#ifndef ED_ACTION_INTERN_H -#define ED_ACTION_INTERN_H +#ifndef __ACTION_INTERN_H__ +#define __ACTION_INTERN_H__ struct bContext; struct bAnimContext; @@ -135,5 +135,5 @@ enum { void action_operatortypes(void); void action_keymap(struct wmKeyConfig *keyconf); -#endif /* ED_ACTION_INTERN_H */ +#endif /* __ACTION_INTERN_H__ */ diff --git a/source/blender/editors/space_buttons/buttons_intern.h b/source/blender/editors/space_buttons/buttons_intern.h index aa692a940d8..8d0f84cf70f 100644 --- a/source/blender/editors/space_buttons/buttons_intern.h +++ b/source/blender/editors/space_buttons/buttons_intern.h @@ -28,8 +28,8 @@ * \ingroup spbuttons */ -#ifndef ED_BUTTONS_INTERN_H -#define ED_BUTTONS_INTERN_H +#ifndef __BUTTONS_INTERN_H__ +#define __BUTTONS_INTERN_H__ #include "DNA_listBase.h" #include "RNA_types.h" @@ -117,5 +117,5 @@ void BUTTONS_OT_file_browse(struct wmOperatorType *ot); void BUTTONS_OT_directory_browse(struct wmOperatorType *ot); void BUTTONS_OT_toolbox(struct wmOperatorType *ot); -#endif /* ED_BUTTONS_INTERN_H */ +#endif /* __BUTTONS_INTERN_H__ */ diff --git a/source/blender/editors/space_clip/clip_intern.h b/source/blender/editors/space_clip/clip_intern.h index 9ff58a73ca2..c0b7137b5d8 100644 --- a/source/blender/editors/space_clip/clip_intern.h +++ b/source/blender/editors/space_clip/clip_intern.h @@ -29,8 +29,8 @@ * \ingroup spclip */ -#ifndef ED_CLIP_INTERN_H -#define ED_CLIP_INTERN_H +#ifndef __CLIP_INTERN_H__ +#define __CLIP_INTERN_H__ struct bContext; struct ARegion; @@ -152,4 +152,4 @@ void CLIP_OT_tracking_object_remove(struct wmOperatorType *ot); void CLIP_OT_copy_tracks(struct wmOperatorType *ot); void CLIP_OT_paste_tracks(struct wmOperatorType *ot); -#endif /* ED_CLIP_INTERN_H */ +#endif /* __CLIP_INTERN_H__ */ diff --git a/source/blender/editors/space_console/console_intern.h b/source/blender/editors/space_console/console_intern.h index 1c7aef01450..ce5c5f81f63 100644 --- a/source/blender/editors/space_console/console_intern.h +++ b/source/blender/editors/space_console/console_intern.h @@ -24,8 +24,8 @@ * \ingroup spconsole */ -#ifndef ED_CONSOLE_INTERN_H -#define ED_CONSOLE_INTERN_H +#ifndef __CONSOLE_INTERN_H__ +#define __CONSOLE_INTERN_H__ /* internal exports only */ @@ -69,4 +69,4 @@ void CONSOLE_OT_select_set(struct wmOperatorType *ot); enum { LINE_BEGIN, LINE_END, PREV_CHAR, NEXT_CHAR, PREV_WORD, NEXT_WORD }; enum { DEL_ALL, DEL_NEXT_CHAR, DEL_PREV_CHAR, DEL_SELECTION, DEL_NEXT_SEL, DEL_PREV_SEL }; -#endif /* ED_CONSOLE_INTERN_H */ +#endif /* __CONSOLE_INTERN_H__ */ diff --git a/source/blender/editors/space_file/file_intern.h b/source/blender/editors/space_file/file_intern.h index d9de804404e..e2c0591f901 100644 --- a/source/blender/editors/space_file/file_intern.h +++ b/source/blender/editors/space_file/file_intern.h @@ -28,8 +28,8 @@ * \ingroup spfile */ -#ifndef ED_FILE_INTERN_H -#define ED_FILE_INTERN_H +#ifndef __FILE_INTERN_H__ +#define __FILE_INTERN_H__ /* internal exports only */ @@ -112,5 +112,5 @@ void autocomplete_file(struct bContext *C, char *str, void *arg_v); /* file_panels.c */ void file_panels_register(struct ARegionType *art); -#endif /* ED_FILE_INTERN_H */ +#endif /* __FILE_INTERN_H__ */ diff --git a/source/blender/editors/space_file/filelist.h b/source/blender/editors/space_file/filelist.h index 0a8824e473d..fac6a387b9f 100644 --- a/source/blender/editors/space_file/filelist.h +++ b/source/blender/editors/space_file/filelist.h @@ -30,8 +30,8 @@ */ -#ifndef FILELIST_H -#define FILELIST_H +#ifndef __FILELIST_H__ +#define __FILELIST_H__ #ifdef __cplusplus extern "C" { diff --git a/source/blender/editors/space_file/fsmenu.h b/source/blender/editors/space_file/fsmenu.h index 5947db073f6..0d046fd985d 100644 --- a/source/blender/editors/space_file/fsmenu.h +++ b/source/blender/editors/space_file/fsmenu.h @@ -31,8 +31,8 @@ */ -#ifndef BSE_FSMENU_H -#define BSE_FSMENU_H +#ifndef __FSMENU_H__ +#define __FSMENU_H__ /* XXX could become UserPref */ #define FSMENU_RECENT_MAX 10 diff --git a/source/blender/editors/space_graph/graph_intern.h b/source/blender/editors/space_graph/graph_intern.h index bc4fa398221..363ec407f71 100644 --- a/source/blender/editors/space_graph/graph_intern.h +++ b/source/blender/editors/space_graph/graph_intern.h @@ -28,8 +28,8 @@ * \ingroup spgraph */ -#ifndef ED_GRAPH_INTERN_H -#define ED_GRAPH_INTERN_H +#ifndef __GRAPH_INTERN_H__ +#define __GRAPH_INTERN_H__ struct bContext; struct wmWindowManager; @@ -173,5 +173,5 @@ void graphedit_keymap(struct wmKeyConfig *keyconf); void graphedit_operatortypes(void); -#endif /* ED_GRAPH_INTERN_H */ +#endif /* __GRAPH_INTERN_H__ */ diff --git a/source/blender/editors/space_image/image_intern.h b/source/blender/editors/space_image/image_intern.h index 29673f74538..71762a087a7 100644 --- a/source/blender/editors/space_image/image_intern.h +++ b/source/blender/editors/space_image/image_intern.h @@ -29,8 +29,8 @@ */ -#ifndef ED_IMAGE_INTERN_H -#define ED_IMAGE_INTERN_H +#ifndef __IMAGE_INTERN_H__ +#define __IMAGE_INTERN_H__ /* internal exports only */ struct bContext; @@ -95,5 +95,5 @@ void image_buttons_register(struct ARegionType *art); void IMAGE_OT_properties(struct wmOperatorType *ot); void IMAGE_OT_scopes(struct wmOperatorType *ot); -#endif /* ED_IMAGE_INTERN_H */ +#endif /* __IMAGE_INTERN_H__ */ diff --git a/source/blender/editors/space_info/info_intern.h b/source/blender/editors/space_info/info_intern.h index fc0615a914b..80018e849d3 100644 --- a/source/blender/editors/space_info/info_intern.h +++ b/source/blender/editors/space_info/info_intern.h @@ -28,8 +28,8 @@ * \ingroup spinfo */ -#ifndef ED_INFO_INTERN_H -#define ED_INFO_INTERN_H +#ifndef __INFO_INTERN_H__ +#define __INFO_INTERN_H__ /* internal exports only */ @@ -61,4 +61,4 @@ void INFO_OT_report_replay(struct wmOperatorType *ot); void INFO_OT_report_delete(struct wmOperatorType *ot); void INFO_OT_report_copy(struct wmOperatorType *ot); -#endif /* ED_INFO_INTERN_H */ +#endif /* __INFO_INTERN_H__ */ diff --git a/source/blender/editors/space_logic/logic_intern.h b/source/blender/editors/space_logic/logic_intern.h index 457fe14352c..3e0b13e9d6c 100644 --- a/source/blender/editors/space_logic/logic_intern.h +++ b/source/blender/editors/space_logic/logic_intern.h @@ -29,8 +29,8 @@ */ -#ifndef ED_LOGIC_INTERN_H -#define ED_LOGIC_INTERN_H +#ifndef __LOGIC_INTERN_H__ +#define __LOGIC_INTERN_H__ /* internal exports only */ struct bContext; @@ -56,5 +56,5 @@ void LOGIC_OT_links_cut(struct wmOperatorType *ot); void logic_buttons(struct bContext *C, struct ARegion *ar); void make_unique_prop_names(struct bContext *C, char *str); -#endif /* ED_LOGIC_INTERN_H */ +#endif /* __LOGIC_INTERN_H__ */ diff --git a/source/blender/editors/space_nla/nla_intern.h b/source/blender/editors/space_nla/nla_intern.h index 00c16d68f36..9d0762ce108 100644 --- a/source/blender/editors/space_nla/nla_intern.h +++ b/source/blender/editors/space_nla/nla_intern.h @@ -28,8 +28,8 @@ * \ingroup spnla */ -#ifndef ED_NLA_INTERN_H -#define ED_NLA_INTERN_H +#ifndef __NLA_INTERN_H__ +#define __NLA_INTERN_H__ /* internal exports only */ @@ -140,5 +140,5 @@ short nlaedit_is_tweakmode_on(bAnimContext *ac); void nla_operatortypes(void); void nla_keymap(wmKeyConfig *keyconf); -#endif /* ED_NLA_INTERN_H */ +#endif /* __NLA_INTERN_H__ */ diff --git a/source/blender/editors/space_node/node_intern.h b/source/blender/editors/space_node/node_intern.h index 186ad3768be..48501079e60 100644 --- a/source/blender/editors/space_node/node_intern.h +++ b/source/blender/editors/space_node/node_intern.h @@ -28,8 +28,8 @@ * \ingroup spnode */ -#ifndef ED_NODE_INTERN_H -#define ED_NODE_INTERN_H +#ifndef __NODE_INTERN_H__ +#define __NODE_INTERN_H__ #include /* for size_t */ #include "UI_interface.h" @@ -190,4 +190,4 @@ enum { B_NODE_SETIMAGE, } eNodeSpace_ButEvents; -#endif /* ED_NODE_INTERN_H */ +#endif /* __NODE_INTERN_H__ */ diff --git a/source/blender/editors/space_outliner/outliner_intern.h b/source/blender/editors/space_outliner/outliner_intern.h index be33fc2e37a..8c53e9ad111 100644 --- a/source/blender/editors/space_outliner/outliner_intern.h +++ b/source/blender/editors/space_outliner/outliner_intern.h @@ -29,8 +29,8 @@ */ -#ifndef ED_OUTLINER_INTERN_H -#define ED_OUTLINER_INTERN_H +#ifndef __OUTLINER_INTERN_H__ +#define __OUTLINER_INTERN_H__ #include "RNA_types.h" @@ -237,4 +237,4 @@ void OUTLINER_OT_action_set(struct wmOperatorType *ot); void outliner_operatortypes(void); void outliner_keymap(struct wmKeyConfig *keyconf); -#endif /* ED_OUTLINER_INTERN_H */ +#endif /* __OUTLINER_INTERN_H__ */ diff --git a/source/blender/editors/space_script/script_intern.h b/source/blender/editors/space_script/script_intern.h index 98e9699079b..00863863994 100644 --- a/source/blender/editors/space_script/script_intern.h +++ b/source/blender/editors/space_script/script_intern.h @@ -28,8 +28,8 @@ * \ingroup spscript */ -#ifndef ED_SCRIPT_INTERN_H -#define ED_SCRIPT_INTERN_H +#ifndef __SCRIPT_INTERN_H__ +#define __SCRIPT_INTERN_H__ /* internal exports only */ @@ -41,5 +41,5 @@ void script_keymap(struct wmKeyConfig *keyconf); void SCRIPT_OT_reload(struct wmOperatorType *ot); void SCRIPT_OT_python_file_run(struct wmOperatorType *ot); -#endif /* ED_SCRIPT_INTERN_H */ +#endif /* __SCRIPT_INTERN_H__ */ diff --git a/source/blender/editors/space_sequencer/sequencer_intern.h b/source/blender/editors/space_sequencer/sequencer_intern.h index 812bdbc678f..91d4e490ddc 100644 --- a/source/blender/editors/space_sequencer/sequencer_intern.h +++ b/source/blender/editors/space_sequencer/sequencer_intern.h @@ -28,8 +28,8 @@ * \ingroup spseq */ -#ifndef ED_SEQUENCER_INTERN_H -#define ED_SEQUENCER_INTERN_H +#ifndef __SEQUENCER_INTERN_H__ +#define __SEQUENCER_INTERN_H__ #include "RNA_access.h" #include "DNA_sequence_types.h" @@ -176,5 +176,5 @@ struct ImBuf *make_histogram_view_from_ibuf(struct ImBuf * ibuf); void SEQUENCER_OT_properties(struct wmOperatorType *ot); void sequencer_buttons_register(struct ARegionType *art); -#endif /* ED_SEQUENCER_INTERN_H */ +#endif /* __SEQUENCER_INTERN_H__ */ diff --git a/source/blender/editors/space_text/text_intern.h b/source/blender/editors/space_text/text_intern.h index 043fb97547b..2d297dd20d7 100644 --- a/source/blender/editors/space_text/text_intern.h +++ b/source/blender/editors/space_text/text_intern.h @@ -28,8 +28,8 @@ * \ingroup sptext */ -#ifndef ED_TEXT_INTERN_H -#define ED_TEXT_INTERN_H +#ifndef __TEXT_INTERN_H__ +#define __TEXT_INTERN_H__ /* internal exports only */ @@ -163,5 +163,5 @@ void TEXT_OT_resolve_conflict(struct wmOperatorType *ot); /* space_text.c */ extern const char *text_context_dir[]; /* doc access */ -#endif /* ED_TEXT_INTERN_H */ +#endif /* __TEXT_INTERN_H__ */ diff --git a/source/blender/editors/space_time/time_intern.h b/source/blender/editors/space_time/time_intern.h index a345d00bd74..ce52cbbd65e 100644 --- a/source/blender/editors/space_time/time_intern.h +++ b/source/blender/editors/space_time/time_intern.h @@ -29,8 +29,8 @@ */ -#ifndef ED_TIME_INTERN_H -#define ED_TIME_INTERN_H +#ifndef __TIME_INTERN_H__ +#define __TIME_INTERN_H__ /* internal exports only */ @@ -40,5 +40,5 @@ struct wmWindowManager; void time_operatortypes(void); void time_keymap(struct wmKeyConfig *keyconf); -#endif /* ED_TIME_INTERN_H */ +#endif /* __TIME_INTERN_H__ */ diff --git a/source/blender/editors/space_userpref/userpref_intern.h b/source/blender/editors/space_userpref/userpref_intern.h index fc6d218b20c..03074290d13 100644 --- a/source/blender/editors/space_userpref/userpref_intern.h +++ b/source/blender/editors/space_userpref/userpref_intern.h @@ -28,10 +28,10 @@ * \ingroup spuserpref */ -#ifndef ED_USERPREF_INTERN_H -#define ED_USERPREF_INTERN_H +#ifndef __USERPREF_INTERN_H__ +#define __USERPREF_INTERN_H__ /* internal exports only */ -#endif /* ED_USERPREF_INTERN_H */ +#endif /* __USERPREF_INTERN_H__ */ diff --git a/source/blender/editors/space_view3d/view3d_intern.h b/source/blender/editors/space_view3d/view3d_intern.h index 07754c0883c..40037f82376 100644 --- a/source/blender/editors/space_view3d/view3d_intern.h +++ b/source/blender/editors/space_view3d/view3d_intern.h @@ -28,8 +28,8 @@ * \ingroup spview3d */ -#ifndef ED_VIEW3D_INTERN_H -#define ED_VIEW3D_INTERN_H +#ifndef __VIEW3D_INTERN_H__ +#define __VIEW3D_INTERN_H__ #include "ED_view3d.h" @@ -215,5 +215,5 @@ extern float view3d_camera_border_hack_col[4]; extern short view3d_camera_border_hack_test; #endif -#endif /* ED_VIEW3D_INTERN_H */ +#endif /* __VIEW3D_INTERN_H__ */ diff --git a/source/blender/editors/transform/transform.h b/source/blender/editors/transform/transform.h index aab7dda0e86..4c4c2f67d82 100644 --- a/source/blender/editors/transform/transform.h +++ b/source/blender/editors/transform/transform.h @@ -30,8 +30,8 @@ */ -#ifndef TRANSFORM_H -#define TRANSFORM_H +#ifndef __TRANSFORM_H__ +#define __TRANSFORM_H__ #include "ED_transform.h" #include "ED_numinput.h" diff --git a/source/blender/editors/util/util_intern.h b/source/blender/editors/util/util_intern.h index c6e2d079c28..d366ad7997f 100644 --- a/source/blender/editors/util/util_intern.h +++ b/source/blender/editors/util/util_intern.h @@ -29,8 +29,8 @@ */ -#ifndef ED_UTIL_INTERN_H -#define ED_UTIL_INTERN_H +#ifndef __UTIL_INTERN_H__ +#define __UTIL_INTERN_H__ /* internal exports only */ @@ -42,5 +42,5 @@ void *undo_editmode_get_prev (struct Object *ob); void undo_editmode_step (struct bContext *C, int step); void undo_editmode_number (struct bContext *C, int nr); -#endif /* ED_UTIL_INTERN_H */ +#endif /* __UTIL_INTERN_H__ */ diff --git a/source/blender/editors/uvedit/uvedit_intern.h b/source/blender/editors/uvedit/uvedit_intern.h index ef25159a3af..a5b4173cc67 100644 --- a/source/blender/editors/uvedit/uvedit_intern.h +++ b/source/blender/editors/uvedit/uvedit_intern.h @@ -29,8 +29,8 @@ */ -#ifndef ED_UVEDIT_INTERN_H -#define ED_UVEDIT_INTERN_H +#ifndef __UVEDIT_INTERN_H__ +#define __UVEDIT_INTERN_H__ struct EditFace; struct EditMesh; @@ -111,5 +111,5 @@ void UV_OT_sphere_project(struct wmOperatorType *ot); void UV_OT_unwrap(struct wmOperatorType *ot); void UV_OT_stitch(struct wmOperatorType *ot); -#endif /* ED_UVEDIT_INTERN_H */ +#endif /* __UVEDIT_INTERN_H__ */ diff --git a/source/blender/editors/uvedit/uvedit_parametrizer.h b/source/blender/editors/uvedit/uvedit_parametrizer.h index e8dac7346ac..2cb4759c5ae 100644 --- a/source/blender/editors/uvedit/uvedit_parametrizer.h +++ b/source/blender/editors/uvedit/uvedit_parametrizer.h @@ -2,8 +2,8 @@ * \ingroup eduv */ -#ifndef __PARAMETRIZER_H__ -#define __PARAMETRIZER_H__ +#ifndef __UVEDIT_PARAMETRIZER_H__ +#define __UVEDIT_PARAMETRIZER_H__ #ifdef __cplusplus extern "C" { @@ -96,5 +96,5 @@ void param_flush_restore(ParamHandle *handle); } #endif -#endif /*__PARAMETRIZER_H__*/ +#endif /*__UVEDIT_PARAMETRIZER_H__*/ diff --git a/source/blender/gpu/GPU_draw.h b/source/blender/gpu/GPU_draw.h index f73bd402167..89976699114 100644 --- a/source/blender/gpu/GPU_draw.h +++ b/source/blender/gpu/GPU_draw.h @@ -29,8 +29,8 @@ * \ingroup gpu */ -#ifndef GPU_GAME_H -#define GPU_GAME_H +#ifndef __GPU_DRAW_H__ +#define __GPU_DRAW_H__ #ifdef __cplusplus extern "C" { diff --git a/source/blender/gpu/GPU_extensions.h b/source/blender/gpu/GPU_extensions.h index 9fb0dd1ae07..5ec373802a3 100644 --- a/source/blender/gpu/GPU_extensions.h +++ b/source/blender/gpu/GPU_extensions.h @@ -29,8 +29,8 @@ * \ingroup gpu */ -#ifndef GPU_EXTENSIONS_H -#define GPU_EXTENSIONS_H +#ifndef __GPU_EXTENSIONS_H__ +#define __GPU_EXTENSIONS_H__ #ifdef __cplusplus extern "C" { diff --git a/source/blender/gpu/GPU_material.h b/source/blender/gpu/GPU_material.h index 5689f02d2d7..8254c0f30ca 100644 --- a/source/blender/gpu/GPU_material.h +++ b/source/blender/gpu/GPU_material.h @@ -29,8 +29,8 @@ * \ingroup gpu */ -#ifndef __GPU_MATERIAL__ -#define __GPU_MATERIAL__ +#ifndef __GPU_MATERIAL_H__ +#define __GPU_MATERIAL_H__ #include "DNA_listBase.h" @@ -238,5 +238,5 @@ int GPU_lamp_shadow_layer(GPULamp *lamp); } #endif -#endif /*__GPU_MATERIAL__*/ +#endif /*__GPU_MATERIAL_H__*/ diff --git a/source/blender/ikplugin/BIK_api.h b/source/blender/ikplugin/BIK_api.h index 4b90b2546ff..cbc6485cb54 100644 --- a/source/blender/ikplugin/BIK_api.h +++ b/source/blender/ikplugin/BIK_api.h @@ -31,8 +31,8 @@ */ -#ifndef BIK_API_H -#define BIK_API_H +#ifndef __BIK_API_H__ +#define __BIK_API_H__ #ifdef __cplusplus extern "C" { @@ -92,5 +92,5 @@ int BIK_get_solver_param(struct bPose *pose, struct bPoseChannel *pchan, int id, } #endif -#endif // BIK_API_H +#endif // __BIK_API_H__ diff --git a/source/blender/ikplugin/intern/ikplugin_api.h b/source/blender/ikplugin/intern/ikplugin_api.h index b1e723289ec..77c962269dc 100644 --- a/source/blender/ikplugin/intern/ikplugin_api.h +++ b/source/blender/ikplugin/intern/ikplugin_api.h @@ -31,8 +31,8 @@ */ -#ifndef IKPLUGIN_API_H -#define IKPLUGIN_API_H +#ifndef __IKPLUGIN_API_H__ +#define __IKPLUGIN_API_H__ #ifdef __cplusplus extern "C" { @@ -60,5 +60,5 @@ typedef struct IKPlugin IKPlugin; } #endif -#endif // IKPLUGIN_API_H +#endif // __IKPLUGIN_API_H__ diff --git a/source/blender/ikplugin/intern/iksolver_plugin.h b/source/blender/ikplugin/intern/iksolver_plugin.h index 885383ab65e..dd00c5f4add 100644 --- a/source/blender/ikplugin/intern/iksolver_plugin.h +++ b/source/blender/ikplugin/intern/iksolver_plugin.h @@ -31,8 +31,8 @@ */ -#ifndef IKSOLVER_PLUGIN_H -#define IKSOLVER_PLUGIN_H +#ifndef __IKSOLVER_PLUGIN_H__ +#define __IKSOLVER_PLUGIN_H__ #include "ikplugin_api.h" @@ -47,5 +47,5 @@ void iksolver_execute_tree(struct Scene *scene, struct Object *ob, struct bPose } #endif -#endif // IKSOLVER_PLUGIN_H +#endif // __IKSOLVER_PLUGIN_H__ diff --git a/source/blender/ikplugin/intern/itasc_plugin.h b/source/blender/ikplugin/intern/itasc_plugin.h index 1d6acb2cce3..0d5fde0bec0 100644 --- a/source/blender/ikplugin/intern/itasc_plugin.h +++ b/source/blender/ikplugin/intern/itasc_plugin.h @@ -31,8 +31,8 @@ */ -#ifndef ITASC_PLUGIN_H -#define ITASC_PLUGIN_H +#ifndef __ITASC_PLUGIN_H__ +#define __ITASC_PLUGIN_H__ #include "ikplugin_api.h" @@ -52,5 +52,5 @@ void itasc_test_constraint(struct Object *ob, struct bConstraint *cons); } #endif -#endif // ITASC_PLUGIN_H +#endif // __ITASC_PLUGIN_H__ diff --git a/source/blender/imbuf/IMB_imbuf.h b/source/blender/imbuf/IMB_imbuf.h index 07f1b9e4683..9d21cc6d8d9 100644 --- a/source/blender/imbuf/IMB_imbuf.h +++ b/source/blender/imbuf/IMB_imbuf.h @@ -68,8 +68,8 @@ * posix-compliant. */ -#ifndef IMB_IMBUF_H -#define IMB_IMBUF_H +#ifndef __IMB_IMBUF_H__ +#define __IMB_IMBUF_H__ /** * diff --git a/source/blender/imbuf/IMB_imbuf_types.h b/source/blender/imbuf/IMB_imbuf_types.h index cb5d6721566..c2b42db447d 100644 --- a/source/blender/imbuf/IMB_imbuf_types.h +++ b/source/blender/imbuf/IMB_imbuf_types.h @@ -44,8 +44,8 @@ * \todo Clean up includes. */ -#ifndef IMB_IMBUF_TYPES_H -#define IMB_IMBUF_TYPES_H +#ifndef __IMB_IMBUF_TYPES_H__ +#define __IMB_IMBUF_TYPES_H__ struct ImMetaData; diff --git a/source/blender/imbuf/IMB_moviecache.h b/source/blender/imbuf/IMB_moviecache.h index 309c6ee550e..3fa98a04d8d 100644 --- a/source/blender/imbuf/IMB_moviecache.h +++ b/source/blender/imbuf/IMB_moviecache.h @@ -24,8 +24,8 @@ * ***** END GPL LICENSE BLOCK ***** */ -#ifndef IMB_MOVIECACHE_H -#define IMB_MOVIECACHE_H +#ifndef __IMB_MOVIECACHE_H__ +#define __IMB_MOVIECACHE_H__ /** \file IMB_moviecache.h * \ingroup imbuf diff --git a/source/blender/imbuf/IMB_thumbs.h b/source/blender/imbuf/IMB_thumbs.h index ad620007abe..49e90134d21 100644 --- a/source/blender/imbuf/IMB_thumbs.h +++ b/source/blender/imbuf/IMB_thumbs.h @@ -30,8 +30,8 @@ */ -#ifndef _IMB_THUMBS_H -#define _IMB_THUMBS_H +#ifndef __IMB_THUMBS_H__ +#define __IMB_THUMBS_H__ #ifdef __cplusplus extern "C" { @@ -85,5 +85,5 @@ void IMB_overlayblend_thumb(unsigned int *thumb, int width, int height, float as } #endif /* __cplusplus */ -#endif /* _IMB_THUMBS_H */ +#endif /* __IMB_THUMBS_H__ */ diff --git a/source/blender/imbuf/intern/IMB_allocimbuf.h b/source/blender/imbuf/intern/IMB_allocimbuf.h index c2f1d2a1f51..52b3bc1f11a 100644 --- a/source/blender/imbuf/intern/IMB_allocimbuf.h +++ b/source/blender/imbuf/intern/IMB_allocimbuf.h @@ -33,8 +33,8 @@ * \ingroup imbuf * \brief Header file for allocimbuf.c */ -#ifndef IMB_ALLOCIMBUF_H -#define IMB_ALLOCIMBUF_H +#ifndef __IMB_ALLOCIMBUF_H__ +#define __IMB_ALLOCIMBUF_H__ struct ImBuf; diff --git a/source/blender/imbuf/intern/IMB_anim.h b/source/blender/imbuf/intern/IMB_anim.h index a9f020c94e8..b29d9d419e2 100644 --- a/source/blender/imbuf/intern/IMB_anim.h +++ b/source/blender/imbuf/intern/IMB_anim.h @@ -33,8 +33,8 @@ */ -#ifndef IMB_ANIM_H -#define IMB_ANIM_H +#ifndef __IMB_ANIM_H__ +#define __IMB_ANIM_H__ #ifdef _WIN32 # define INC_OLE2 diff --git a/source/blender/imbuf/intern/IMB_filetype.h b/source/blender/imbuf/intern/IMB_filetype.h index 4cd10ad01d0..83267ed323d 100644 --- a/source/blender/imbuf/intern/IMB_filetype.h +++ b/source/blender/imbuf/intern/IMB_filetype.h @@ -25,8 +25,8 @@ */ -#ifndef IMB_FILETYPE_H -#define IMB_FILETYPE_H +#ifndef __IMB_FILETYPE_H__ +#define __IMB_FILETYPE_H__ /* Generic File Type */ @@ -119,5 +119,5 @@ void imb_loadtiletiff(struct ImBuf *ibuf, unsigned char *mem, size_t size, int imb_savetiff(struct ImBuf *ibuf, const char *name, int flags); void *libtiff_findsymbol(char *name); -#endif /* IMB_FILETYPE_H */ +#endif /* __IMB_FILETYPE_H__ */ diff --git a/source/blender/imbuf/intern/IMB_filter.h b/source/blender/imbuf/intern/IMB_filter.h index 29e6c4950df..6199cc13bb9 100644 --- a/source/blender/imbuf/intern/IMB_filter.h +++ b/source/blender/imbuf/intern/IMB_filter.h @@ -33,8 +33,8 @@ * \brief Function declarations for filter.c */ -#ifndef IMB_FILTER_H -#define IMB_FILTER_H +#ifndef __IMB_FILTER_H__ +#define __IMB_FILTER_H__ struct ImBuf; diff --git a/source/blender/imbuf/intern/IMB_indexer.h b/source/blender/imbuf/intern/IMB_indexer.h index f9d90208078..6546840ea85 100644 --- a/source/blender/imbuf/intern/IMB_indexer.h +++ b/source/blender/imbuf/intern/IMB_indexer.h @@ -22,8 +22,8 @@ */ -#ifndef IMB_INDEXER_H -#define IMB_INDEXER_H +#ifndef __IMB_INDEXER_H__ +#define __IMB_INDEXER_H__ #ifdef WIN32 # include diff --git a/source/blender/imbuf/intern/IMB_metadata.h b/source/blender/imbuf/intern/IMB_metadata.h index 0f57b8f654a..9b3a8004c74 100644 --- a/source/blender/imbuf/intern/IMB_metadata.h +++ b/source/blender/imbuf/intern/IMB_metadata.h @@ -30,8 +30,8 @@ */ -#ifndef _IMB_IMGINFO_H -#define _IMB_IMGINFO_H +#ifndef __IMB_METADATA_H__ +#define __IMB_METADATA_H__ struct ImBuf; @@ -80,4 +80,4 @@ int IMB_metadata_add_field(struct ImBuf* img, const char* key, const char* field */ int IMB_metadata_del_field(struct ImBuf *img, const char *key); -#endif /* _IMB_IMGINFO_H */ +#endif /* __IMB_METADATA_H__ */ diff --git a/source/blender/imbuf/intern/cineon/cineonfile.h b/source/blender/imbuf/intern/cineon/cineonfile.h index 896e0af65b3..ea321c87d48 100644 --- a/source/blender/imbuf/intern/cineon/cineonfile.h +++ b/source/blender/imbuf/intern/cineon/cineonfile.h @@ -26,8 +26,8 @@ * */ -#ifndef _CINEON_FILE_H_ -#define _CINEON_FILE_H_ +#ifndef __CINEONFILE_H__ +#define __CINEONFILE_H__ #include "logImageCore.h" @@ -130,4 +130,4 @@ typedef struct { } #endif -#endif /* _CINEON_FILE_H_ */ +#endif /* __CINEONFILE_H__ */ diff --git a/source/blender/imbuf/intern/cineon/cineonlib.h b/source/blender/imbuf/intern/cineon/cineonlib.h index c24503e2ada..b1ad0532e25 100644 --- a/source/blender/imbuf/intern/cineon/cineonlib.h +++ b/source/blender/imbuf/intern/cineon/cineonlib.h @@ -23,8 +23,8 @@ * */ -#ifndef _CINEON_LIB_H_ -#define _CINEON_LIB_H_ +#ifndef __CINEONLIB_H__ +#define __CINEONLIB_H__ #include "logImageCore.h" @@ -68,4 +68,4 @@ void cineonClose(CineonFile* cineon); } #endif -#endif /* _CINEON_LIB_H_ */ +#endif /* __CINEONLIB_H__ */ diff --git a/source/blender/imbuf/intern/cineon/dpxfile.h b/source/blender/imbuf/intern/cineon/dpxfile.h index abb11ec2e8c..dc8fc0bdbd2 100644 --- a/source/blender/imbuf/intern/cineon/dpxfile.h +++ b/source/blender/imbuf/intern/cineon/dpxfile.h @@ -26,8 +26,8 @@ * */ -#ifndef _DPX_FILE_H_ -#define _DPX_FILE_H_ +#ifndef __DPXFILE_H__ +#define __DPXFILE_H__ #include "logImageCore.h" @@ -124,4 +124,4 @@ typedef struct { } #endif -#endif /* _DPX_FILE_H_ */ +#endif /* __DPXFILE_H__ */ diff --git a/source/blender/imbuf/intern/cineon/dpxlib.h b/source/blender/imbuf/intern/cineon/dpxlib.h index 1607de311c3..b09c699ae5b 100644 --- a/source/blender/imbuf/intern/cineon/dpxlib.h +++ b/source/blender/imbuf/intern/cineon/dpxlib.h @@ -22,8 +22,8 @@ * */ -#ifndef _DPX_LIB_H_ -#define _DPX_LIB_H_ +#ifndef __DPXLIB_H__ +#define __DPXLIB_H__ #ifdef __cplusplus extern "C" { @@ -56,4 +56,4 @@ void dpxDump(const char* filename); } #endif -#endif /* _DPX_LIB_H_ */ +#endif /* __DPXLIB_H__ */ diff --git a/source/blender/imbuf/intern/cineon/logImageCore.h b/source/blender/imbuf/intern/cineon/logImageCore.h index cbc7cb9d64a..c8592621f08 100644 --- a/source/blender/imbuf/intern/cineon/logImageCore.h +++ b/source/blender/imbuf/intern/cineon/logImageCore.h @@ -27,8 +27,8 @@ * */ -#ifndef _LOG_IMAGE_CORE_H_ -#define _LOG_IMAGE_CORE_H_ +#ifndef __LOGIMAGECORE_H__ +#define __LOGIMAGECORE_H__ #include #include "logImageLib.h" @@ -119,4 +119,4 @@ R32 reverseR32(R32 value); } #endif -#endif /* _LOG_IMAGE_CORE_H_ */ +#endif /* __LOGIMAGECORE_H__ */ diff --git a/source/blender/imbuf/intern/cineon/logImageLib.h b/source/blender/imbuf/intern/cineon/logImageLib.h index 9f6d3ad2adf..72448ed962b 100644 --- a/source/blender/imbuf/intern/cineon/logImageLib.h +++ b/source/blender/imbuf/intern/cineon/logImageLib.h @@ -22,8 +22,8 @@ * */ -#ifndef _LOG_IMAGE_LIB_H_ -#define _LOG_IMAGE_LIB_H_ +#ifndef __LOGIMAGELIB_H__ +#define __LOGIMAGELIB_H__ #ifdef __cplusplus extern "C" { @@ -87,4 +87,4 @@ void logImageDump(const char* filename); } #endif -#endif /* _LOG_IMAGE_LIB_H_ */ +#endif /* __LOGIMAGELIB_H__ */ diff --git a/source/blender/imbuf/intern/cineon/logmemfile.h b/source/blender/imbuf/intern/cineon/logmemfile.h index 36f950232ac..2611463148e 100644 --- a/source/blender/imbuf/intern/cineon/logmemfile.h +++ b/source/blender/imbuf/intern/cineon/logmemfile.h @@ -22,11 +22,11 @@ * */ -#ifndef _LOGMEMFILE_H -#define _LOGMEMFILE_H +#ifndef __LOGMEMFILE_H__ +#define __LOGMEMFILE_H__ int logimage_fseek(void* logfile, intptr_t offsett, int origin); int logimage_fwrite(void *buffer, unsigned int size, unsigned int count, void *logfile); int logimage_fread(void *buffer, unsigned int size, unsigned int count, void *logfile); -#endif /* _LOGMEMFILE_H */ +#endif /* __LOGMEMFILE_H__ */ diff --git a/source/blender/imbuf/intern/dds/BlockDXT.h b/source/blender/imbuf/intern/dds/BlockDXT.h index cdf839ce9b4..c6712f4f058 100644 --- a/source/blender/imbuf/intern/dds/BlockDXT.h +++ b/source/blender/imbuf/intern/dds/BlockDXT.h @@ -55,8 +55,8 @@ // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR // OTHER DEALINGS IN THE SOFTWARE. -#ifndef _DDS_BLOCKDXT_H -#define _DDS_BLOCKDXT_H +#ifndef __BLOCKDXT_H__ +#define __BLOCKDXT_H__ #include #include @@ -271,4 +271,4 @@ void mem_read(Stream & mem, BlockATI1 & block); void mem_read(Stream & mem, BlockATI2 & block); void mem_read(Stream & mem, BlockCTX1 & block); -#endif // _DDS_BLOCKDXT_H +#endif // __BLOCKDXT_H__ diff --git a/source/blender/imbuf/intern/dds/Color.h b/source/blender/imbuf/intern/dds/Color.h index b23a5a32bdc..17de0a596c6 100644 --- a/source/blender/imbuf/intern/dds/Color.h +++ b/source/blender/imbuf/intern/dds/Color.h @@ -34,8 +34,8 @@ // This code is in the public domain -- castanyo@yahoo.es -#ifndef _DDS_COLOR_H -#define _DDS_COLOR_H +#ifndef __COLOR_H__ +#define __COLOR_H__ /// 32 bit color stored as BGRA. class Color32 @@ -96,4 +96,4 @@ public: }; }; -#endif // _DDS_COLOR_H +#endif // __COLOR_H__ diff --git a/source/blender/imbuf/intern/dds/ColorBlock.h b/source/blender/imbuf/intern/dds/ColorBlock.h index eb483f559c2..e72b6253035 100644 --- a/source/blender/imbuf/intern/dds/ColorBlock.h +++ b/source/blender/imbuf/intern/dds/ColorBlock.h @@ -34,8 +34,8 @@ // This code is in the public domain -- castanyo@yahoo.es -#ifndef _DDS_COLORBLOCK_H -#define _DDS_COLORBLOCK_H +#ifndef __COLORBLOCK_H__ +#define __COLORBLOCK_H__ #include #include @@ -104,4 +104,4 @@ inline Color32 & ColorBlock::color(uint x, uint y) return m_color[y * 4 + x]; } -#endif // _DDS_COLORBLOCK_H +#endif // __COLORBLOCK_H__ diff --git a/source/blender/imbuf/intern/dds/Common.h b/source/blender/imbuf/intern/dds/Common.h index 8c307e346f0..4e3e3e024f7 100644 --- a/source/blender/imbuf/intern/dds/Common.h +++ b/source/blender/imbuf/intern/dds/Common.h @@ -25,8 +25,8 @@ */ -#ifndef _DDS_COMMON_H -#define _DDS_COMMON_H +#ifndef __COMMON_H__ +#define __COMMON_H__ #ifndef min #define min(a,b) ((a) <= (b) ? (a) : (b)) diff --git a/source/blender/imbuf/intern/dds/DirectDrawSurface.h b/source/blender/imbuf/intern/dds/DirectDrawSurface.h index 8b8388c9f89..23c8bbf2de3 100644 --- a/source/blender/imbuf/intern/dds/DirectDrawSurface.h +++ b/source/blender/imbuf/intern/dds/DirectDrawSurface.h @@ -55,8 +55,8 @@ // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR // OTHER DEALINGS IN THE SOFTWARE. -#ifndef _DDS_DIRECTDRAWSURFACE_H -#define _DDS_DIRECTDRAWSURFACE_H +#ifndef __DIRECTDRAWSURFACE_H__ +#define __DIRECTDRAWSURFACE_H__ #include #include @@ -198,4 +198,4 @@ void mem_read(Stream & mem, DDSCaps & caps); void mem_read(Stream & mem, DDSHeader & header); void mem_read(Stream & mem, DDSHeader10 & header); -#endif // _DDS_DIRECTDRAWSURFACE_H +#endif // __DIRECTDRAWSURFACE_H__ diff --git a/source/blender/imbuf/intern/dds/Image.h b/source/blender/imbuf/intern/dds/Image.h index e932e1122f2..9c2220567aa 100644 --- a/source/blender/imbuf/intern/dds/Image.h +++ b/source/blender/imbuf/intern/dds/Image.h @@ -34,8 +34,8 @@ // This code is in the public domain -- castanyo@yahoo.es -#ifndef _DDS_IMAGE_H -#define _DDS_IMAGE_H +#ifndef __IMAGE_H__ +#define __IMAGE_H__ #include #include @@ -101,4 +101,4 @@ inline Color32 & Image::pixel(uint x, uint y) return pixel(y * width() + x); } -#endif // _DDS_IMAGE_H +#endif // __IMAGE_H__ diff --git a/source/blender/imbuf/intern/dds/PixelFormat.h b/source/blender/imbuf/intern/dds/PixelFormat.h index c76c7994ed2..9add62c4616 100644 --- a/source/blender/imbuf/intern/dds/PixelFormat.h +++ b/source/blender/imbuf/intern/dds/PixelFormat.h @@ -55,8 +55,8 @@ // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR // OTHER DEALINGS IN THE SOFTWARE. -#ifndef _DDS_PIXELFORMAT_H -#define _DDS_PIXELFORMAT_H +#ifndef __PIXELFORMAT_H__ +#define __PIXELFORMAT_H__ #include diff --git a/source/blender/imbuf/intern/dds/Stream.h b/source/blender/imbuf/intern/dds/Stream.h index 1c789ac948f..9f513ca8aba 100644 --- a/source/blender/imbuf/intern/dds/Stream.h +++ b/source/blender/imbuf/intern/dds/Stream.h @@ -27,8 +27,8 @@ /* simple memory stream functions with buffer overflow check */ -#ifndef _STREAM_H -#define _STREAM_H +#ifndef __STREAM_H__ +#define __STREAM_H__ struct Stream { @@ -45,5 +45,5 @@ unsigned int mem_read(Stream & mem, unsigned short & i); unsigned int mem_read(Stream & mem, unsigned char & i); unsigned int mem_read(Stream & mem, unsigned char *i, unsigned int cnt); -#endif // _STREAM_H +#endif // __STREAM_H__ diff --git a/source/blender/imbuf/intern/dds/dds_api.h b/source/blender/imbuf/intern/dds/dds_api.h index e477a4b8003..589257816e0 100644 --- a/source/blender/imbuf/intern/dds/dds_api.h +++ b/source/blender/imbuf/intern/dds/dds_api.h @@ -25,8 +25,8 @@ */ -#ifndef _DDS_API_H -#define _DDS_API_H +#ifndef __DDS_API_H__ +#define __DDS_API_H__ #ifdef __cplusplus extern "C" { diff --git a/source/blender/imbuf/intern/imbuf.h b/source/blender/imbuf/intern/imbuf.h index c1afecf621f..2125583375f 100644 --- a/source/blender/imbuf/intern/imbuf.h +++ b/source/blender/imbuf/intern/imbuf.h @@ -35,8 +35,8 @@ */ -#ifndef IMBUF_H -#define IMBUF_H +#ifndef __IMBUF_H__ +#define __IMBUF_H__ #include #include @@ -78,5 +78,5 @@ typedef unsigned char uchar; #define TRUE 1 #define FALSE 0 -#endif /* IMBUF_H */ +#endif /* __IMBUF_H__ */ diff --git a/source/blender/imbuf/intern/openexr/openexr_api.h b/source/blender/imbuf/intern/openexr/openexr_api.h index 8567673a3e3..2b3a17ba47d 100644 --- a/source/blender/imbuf/intern/openexr/openexr_api.h +++ b/source/blender/imbuf/intern/openexr/openexr_api.h @@ -30,8 +30,8 @@ */ -#ifndef _OPENEXR_API_H -#define _OPENEXR_API_H +#ifndef __OPENEXR_API_H__ +#define __OPENEXR_API_H__ #ifdef __cplusplus extern "C" { diff --git a/source/blender/imbuf/intern/openexr/openexr_multi.h b/source/blender/imbuf/intern/openexr/openexr_multi.h index abb675e1dca..84e3da0baa7 100644 --- a/source/blender/imbuf/intern/openexr/openexr_multi.h +++ b/source/blender/imbuf/intern/openexr/openexr_multi.h @@ -30,8 +30,8 @@ */ -#ifndef _OPENEXR_MULTI_H -#define _OPENEXR_MULTI_H +#ifndef __OPENEXR_MULTI_H__ +#define __OPENEXR_MULTI_H__ /* experiment with more advanced exr api */ diff --git a/source/blender/makesdna/DNA_ID.h b/source/blender/makesdna/DNA_ID.h index cb7b8d15d52..eb8d06fc9f2 100644 --- a/source/blender/makesdna/DNA_ID.h +++ b/source/blender/makesdna/DNA_ID.h @@ -30,8 +30,8 @@ * \brief ID and Library types, which are fundamental for sdna. */ -#ifndef DNA_ID_H -#define DNA_ID_H +#ifndef __DNA_ID_H__ +#define __DNA_ID_H__ #include "DNA_listBase.h" diff --git a/source/blender/makesdna/DNA_action_types.h b/source/blender/makesdna/DNA_action_types.h index e582d071319..058c72be639 100644 --- a/source/blender/makesdna/DNA_action_types.h +++ b/source/blender/makesdna/DNA_action_types.h @@ -29,8 +29,8 @@ * \ingroup DNA */ -#ifndef DNA_ACTION_TYPES_H -#define DNA_ACTION_TYPES_H +#ifndef __DNA_ACTION_TYPES_H__ +#define __DNA_ACTION_TYPES_H__ #include "DNA_listBase.h" #include "DNA_ID.h" diff --git a/source/blender/makesdna/DNA_actuator_types.h b/source/blender/makesdna/DNA_actuator_types.h index 3be46538c22..817da3cd445 100644 --- a/source/blender/makesdna/DNA_actuator_types.h +++ b/source/blender/makesdna/DNA_actuator_types.h @@ -29,8 +29,8 @@ * \ingroup DNA */ -#ifndef DNA_ACTUATOR_TYPES_H -#define DNA_ACTUATOR_TYPES_H +#ifndef __DNA_ACTUATOR_TYPES_H__ +#define __DNA_ACTUATOR_TYPES_H__ struct Object; struct Mesh; diff --git a/source/blender/makesdna/DNA_anim_types.h b/source/blender/makesdna/DNA_anim_types.h index 2233da86385..ae31bea4981 100644 --- a/source/blender/makesdna/DNA_anim_types.h +++ b/source/blender/makesdna/DNA_anim_types.h @@ -27,8 +27,8 @@ * \ingroup DNA */ -#ifndef DNA_ANIM_TYPES_H -#define DNA_ANIM_TYPES_H +#ifndef __DNA_ANIM_TYPES_H__ +#define __DNA_ANIM_TYPES_H__ #ifdef __cplusplus extern "C" { @@ -909,4 +909,4 @@ typedef struct IdAdtTemplate { }; #endif -#endif /* DNA_ANIM_TYPES_H */ +#endif /* __DNA_ANIM_TYPES_H__ */ diff --git a/source/blender/makesdna/DNA_armature_types.h b/source/blender/makesdna/DNA_armature_types.h index 33f965663de..f915b75a77f 100644 --- a/source/blender/makesdna/DNA_armature_types.h +++ b/source/blender/makesdna/DNA_armature_types.h @@ -27,8 +27,8 @@ * \ingroup DNA */ -#ifndef DNA_ARMATURE_TYPES_H -#define DNA_ARMATURE_TYPES_H +#ifndef __DNA_ARMATURE_TYPES_H__ +#define __DNA_ARMATURE_TYPES_H__ #include "DNA_listBase.h" #include "DNA_ID.h" diff --git a/source/blender/makesdna/DNA_boid_types.h b/source/blender/makesdna/DNA_boid_types.h index 53ff5179049..09221c4ada9 100644 --- a/source/blender/makesdna/DNA_boid_types.h +++ b/source/blender/makesdna/DNA_boid_types.h @@ -30,8 +30,8 @@ * \ingroup DNA */ -#ifndef DNA_BOID_TYPES_H -#define DNA_BOID_TYPES_H +#ifndef __DNA_BOID_TYPES_H__ +#define __DNA_BOID_TYPES_H__ #include "DNA_listBase.h" diff --git a/source/blender/makesdna/DNA_brush_types.h b/source/blender/makesdna/DNA_brush_types.h index 690c3c95964..454008c73a7 100644 --- a/source/blender/makesdna/DNA_brush_types.h +++ b/source/blender/makesdna/DNA_brush_types.h @@ -29,8 +29,8 @@ * \ingroup DNA */ -#ifndef DNA_BRUSH_TYPES_H -#define DNA_BRUSH_TYPES_H +#ifndef __DNA_BRUSH_TYPES_H__ +#define __DNA_BRUSH_TYPES_H__ #include "DNA_ID.h" diff --git a/source/blender/makesdna/DNA_camera_types.h b/source/blender/makesdna/DNA_camera_types.h index a46be730d6c..4618b99f6b6 100644 --- a/source/blender/makesdna/DNA_camera_types.h +++ b/source/blender/makesdna/DNA_camera_types.h @@ -29,8 +29,8 @@ * \ingroup DNA */ -#ifndef DNA_CAMERA_TYPES_H -#define DNA_CAMERA_TYPES_H +#ifndef __DNA_CAMERA_TYPES_H__ +#define __DNA_CAMERA_TYPES_H__ #include "DNA_defs.h" diff --git a/source/blender/makesdna/DNA_cloth_types.h b/source/blender/makesdna/DNA_cloth_types.h index 1079f1db835..79a1d821543 100644 --- a/source/blender/makesdna/DNA_cloth_types.h +++ b/source/blender/makesdna/DNA_cloth_types.h @@ -29,8 +29,8 @@ * \ingroup DNA */ -#ifndef DNA_CLOTH_TYPES_H -#define DNA_CLOTH_TYPES_H +#ifndef __DNA_CLOTH_TYPES_H__ +#define __DNA_CLOTH_TYPES_H__ /** * This struct contains all the global data required to run a simulation. diff --git a/source/blender/makesdna/DNA_color_types.h b/source/blender/makesdna/DNA_color_types.h index f5762f8b49f..676389ffeea 100644 --- a/source/blender/makesdna/DNA_color_types.h +++ b/source/blender/makesdna/DNA_color_types.h @@ -29,8 +29,8 @@ * \ingroup DNA */ -#ifndef DNA_COLOR_TYPES_H -#define DNA_COLOR_TYPES_H +#ifndef __DNA_COLOR_TYPES_H__ +#define __DNA_COLOR_TYPES_H__ #include "DNA_vec_types.h" diff --git a/source/blender/makesdna/DNA_constraint_types.h b/source/blender/makesdna/DNA_constraint_types.h index fdc493ddfd3..7a2d2929e47 100644 --- a/source/blender/makesdna/DNA_constraint_types.h +++ b/source/blender/makesdna/DNA_constraint_types.h @@ -30,8 +30,8 @@ * \ingroup DNA */ -#ifndef DNA_CONSTRAINT_TYPES_H -#define DNA_CONSTRAINT_TYPES_H +#ifndef __DNA_CONSTRAINT_TYPES_H__ +#define __DNA_CONSTRAINT_TYPES_H__ #include "DNA_defs.h" #include "DNA_ID.h" diff --git a/source/blender/makesdna/DNA_controller_types.h b/source/blender/makesdna/DNA_controller_types.h index 51ab29db7ae..bdfedb5b4d1 100644 --- a/source/blender/makesdna/DNA_controller_types.h +++ b/source/blender/makesdna/DNA_controller_types.h @@ -29,8 +29,8 @@ * \ingroup DNA */ -#ifndef DNA_CONTROLLER_TYPES_H -#define DNA_CONTROLLER_TYPES_H +#ifndef __DNA_CONTROLLER_TYPES_H__ +#define __DNA_CONTROLLER_TYPES_H__ struct bActuator; struct Text; diff --git a/source/blender/makesdna/DNA_curve_types.h b/source/blender/makesdna/DNA_curve_types.h index 455738c840b..d5b9477f7f6 100644 --- a/source/blender/makesdna/DNA_curve_types.h +++ b/source/blender/makesdna/DNA_curve_types.h @@ -29,8 +29,8 @@ * \ingroup DNA */ -#ifndef DNA_CURVE_TYPES_H -#define DNA_CURVE_TYPES_H +#ifndef __DNA_CURVE_TYPES_H__ +#define __DNA_CURVE_TYPES_H__ #include "DNA_defs.h" #include "DNA_listBase.h" diff --git a/source/blender/makesdna/DNA_customdata_types.h b/source/blender/makesdna/DNA_customdata_types.h index a4bb5715174..eeeb0581527 100644 --- a/source/blender/makesdna/DNA_customdata_types.h +++ b/source/blender/makesdna/DNA_customdata_types.h @@ -29,8 +29,8 @@ * \ingroup DNA */ -#ifndef DNA_CUSTOMDATA_TYPES_H -#define DNA_CUSTOMDATA_TYPES_H +#ifndef __DNA_CUSTOMDATA_TYPES_H__ +#define __DNA_CUSTOMDATA_TYPES_H__ #ifdef __cplusplus extern "C" { diff --git a/source/blender/makesdna/DNA_defs.h b/source/blender/makesdna/DNA_defs.h index 46d7fc2b009..aa2cfb3f6e9 100644 --- a/source/blender/makesdna/DNA_defs.h +++ b/source/blender/makesdna/DNA_defs.h @@ -24,8 +24,8 @@ * \ingroup DNA */ -#ifndef DNA_DEFS_H -#define DNA_DEFS_H +#ifndef __DNA_DEFS_H__ +#define __DNA_DEFS_H__ /* makesdna ignores */ #ifdef DNA_DEPRECATED_ALLOW @@ -50,4 +50,4 @@ /* non-id name variables should use this length */ #define MAX_NAME 64 -#endif /* DNA_DEFS_H */ +#endif /* __DNA_DEFS_H__ */ diff --git a/source/blender/makesdna/DNA_dynamicpaint_types.h b/source/blender/makesdna/DNA_dynamicpaint_types.h index 2345b8dd1c0..fedc603fde2 100644 --- a/source/blender/makesdna/DNA_dynamicpaint_types.h +++ b/source/blender/makesdna/DNA_dynamicpaint_types.h @@ -25,8 +25,8 @@ * \ingroup DNA */ -#ifndef DNA_DYNAMICPAINT_TYPES_H -#define DNA_DYNAMICPAINT_TYPES_H +#ifndef __DNA_DYNAMICPAINT_TYPES_H__ +#define __DNA_DYNAMICPAINT_TYPES_H__ #include "DNA_listBase.h" struct CurveMapping; diff --git a/source/blender/makesdna/DNA_effect_types.h b/source/blender/makesdna/DNA_effect_types.h index ddff22aae37..7ca3bbe3319 100644 --- a/source/blender/makesdna/DNA_effect_types.h +++ b/source/blender/makesdna/DNA_effect_types.h @@ -29,8 +29,8 @@ * \ingroup DNA */ -#ifndef DNA_EFFECT_TYPES_H -#define DNA_EFFECT_TYPES_H +#ifndef __DNA_EFFECT_TYPES_H__ +#define __DNA_EFFECT_TYPES_H__ /* don't forget, new effects also in writefile.c for dna!!! */ diff --git a/source/blender/makesdna/DNA_fileglobal_types.h b/source/blender/makesdna/DNA_fileglobal_types.h index ed9f3cec987..0ae5c2465da 100644 --- a/source/blender/makesdna/DNA_fileglobal_types.h +++ b/source/blender/makesdna/DNA_fileglobal_types.h @@ -29,8 +29,8 @@ * \ingroup DNA */ -#ifndef DNA_FILEGLOBAL_TYPES_H -#define DNA_FILEGLOBAL_TYPES_H +#ifndef __DNA_FILEGLOBAL_TYPES_H__ +#define __DNA_FILEGLOBAL_TYPES_H__ struct bScreen; struct Scene; diff --git a/source/blender/makesdna/DNA_genfile.h b/source/blender/makesdna/DNA_genfile.h index 2264e82b363..d4cfccaef70 100644 --- a/source/blender/makesdna/DNA_genfile.h +++ b/source/blender/makesdna/DNA_genfile.h @@ -30,8 +30,8 @@ * \brief blenloader genfile private function prototypes */ -#ifndef DNA_GENFILE_H -#define DNA_GENFILE_H +#ifndef __DNA_GENFILE_H__ +#define __DNA_GENFILE_H__ struct SDNA; diff --git a/source/blender/makesdna/DNA_gpencil_types.h b/source/blender/makesdna/DNA_gpencil_types.h index 71f0dbb60b1..6f3014c0961 100644 --- a/source/blender/makesdna/DNA_gpencil_types.h +++ b/source/blender/makesdna/DNA_gpencil_types.h @@ -27,8 +27,8 @@ * \ingroup DNA */ -#ifndef DNA_GPENCIL_TYPES_H -#define DNA_GPENCIL_TYPES_H +#ifndef __DNA_GPENCIL_TYPES_H__ +#define __DNA_GPENCIL_TYPES_H__ #include "DNA_listBase.h" #include "DNA_ID.h" @@ -160,4 +160,4 @@ typedef struct bGPdata { #define GP_DATA_DEPTH_STROKE_ENDPOINTS (1<<7) -#endif /* DNA_GPENCIL_TYPES_H */ +#endif /* __DNA_GPENCIL_TYPES_H__ */ diff --git a/source/blender/makesdna/DNA_group_types.h b/source/blender/makesdna/DNA_group_types.h index ab42086d6d0..8aa6de4fbe2 100644 --- a/source/blender/makesdna/DNA_group_types.h +++ b/source/blender/makesdna/DNA_group_types.h @@ -32,8 +32,8 @@ * \ingroup DNA */ -#ifndef DNA_GROUP_TYPES_H -#define DNA_GROUP_TYPES_H +#ifndef __DNA_GROUP_TYPES_H__ +#define __DNA_GROUP_TYPES_H__ #include "DNA_listBase.h" #include "DNA_ID.h" diff --git a/source/blender/makesdna/DNA_image_types.h b/source/blender/makesdna/DNA_image_types.h index 8f6cc5bf354..de2c9919df0 100644 --- a/source/blender/makesdna/DNA_image_types.h +++ b/source/blender/makesdna/DNA_image_types.h @@ -29,8 +29,8 @@ * \ingroup DNA */ -#ifndef DNA_IMAGE_TYPES_H -#define DNA_IMAGE_TYPES_H +#ifndef __DNA_IMAGE_TYPES_H__ +#define __DNA_IMAGE_TYPES_H__ #include "DNA_ID.h" diff --git a/source/blender/makesdna/DNA_ipo_types.h b/source/blender/makesdna/DNA_ipo_types.h index 201ea8994ca..e3ab6b4a7db 100644 --- a/source/blender/makesdna/DNA_ipo_types.h +++ b/source/blender/makesdna/DNA_ipo_types.h @@ -33,8 +33,8 @@ * etc. are only still maintained to provide backwards compatibility for old files. */ -#ifndef DNA_IPO_TYPES_H -#define DNA_IPO_TYPES_H +#ifndef __DNA_IPO_TYPES_H__ +#define __DNA_IPO_TYPES_H__ #include "DNA_listBase.h" #include "DNA_curve_types.h" diff --git a/source/blender/makesdna/DNA_key_types.h b/source/blender/makesdna/DNA_key_types.h index b64389a365c..d27ec513cc1 100644 --- a/source/blender/makesdna/DNA_key_types.h +++ b/source/blender/makesdna/DNA_key_types.h @@ -24,8 +24,8 @@ * * ***** END GPL LICENSE BLOCK ***** */ -#ifndef DNA_KEY_TYPES_H -#define DNA_KEY_TYPES_H +#ifndef __DNA_KEY_TYPES_H__ +#define __DNA_KEY_TYPES_H__ /** \file DNA_key_types.h * \ingroup DNA diff --git a/source/blender/makesdna/DNA_lamp_types.h b/source/blender/makesdna/DNA_lamp_types.h index 18fbde8a3c3..8cf3814ada1 100644 --- a/source/blender/makesdna/DNA_lamp_types.h +++ b/source/blender/makesdna/DNA_lamp_types.h @@ -29,8 +29,8 @@ * \ingroup DNA */ -#ifndef DNA_LAMP_TYPES_H -#define DNA_LAMP_TYPES_H +#ifndef __DNA_LAMP_TYPES_H__ +#define __DNA_LAMP_TYPES_H__ #include "DNA_defs.h" #include "DNA_ID.h" @@ -206,5 +206,5 @@ typedef struct Lamp { #define LAMAP_SHAD 2 -#endif /* DNA_LAMP_TYPES_H */ +#endif /* __DNA_LAMP_TYPES_H__ */ diff --git a/source/blender/makesdna/DNA_lattice_types.h b/source/blender/makesdna/DNA_lattice_types.h index 0a73ed5b24f..1b4bd53151b 100644 --- a/source/blender/makesdna/DNA_lattice_types.h +++ b/source/blender/makesdna/DNA_lattice_types.h @@ -29,8 +29,8 @@ * \ingroup DNA */ -#ifndef DNA_LATTICE_TYPES_H -#define DNA_LATTICE_TYPES_H +#ifndef __DNA_LATTICE_TYPES_H__ +#define __DNA_LATTICE_TYPES_H__ #include "DNA_defs.h" #include "DNA_ID.h" diff --git a/source/blender/makesdna/DNA_listBase.h b/source/blender/makesdna/DNA_listBase.h index 99ad6f41e96..d0e7a2f4433 100644 --- a/source/blender/makesdna/DNA_listBase.h +++ b/source/blender/makesdna/DNA_listBase.h @@ -33,8 +33,8 @@ * library system. */ -#ifndef DNA_LISTBASE_H -#define DNA_LISTBASE_H +#ifndef __DNA_LISTBASE_H__ +#define __DNA_LISTBASE_H__ #ifdef __cplusplus extern "C" { diff --git a/source/blender/makesdna/DNA_material_types.h b/source/blender/makesdna/DNA_material_types.h index eacc1b222e4..b58ae921200 100644 --- a/source/blender/makesdna/DNA_material_types.h +++ b/source/blender/makesdna/DNA_material_types.h @@ -29,8 +29,8 @@ * \ingroup DNA */ -#ifndef DNA_MATERIAL_TYPES_H -#define DNA_MATERIAL_TYPES_H +#ifndef __DNA_MATERIAL_TYPES_H__ +#define __DNA_MATERIAL_TYPES_H__ #include "DNA_defs.h" #include "DNA_ID.h" diff --git a/source/blender/makesdna/DNA_mesh_types.h b/source/blender/makesdna/DNA_mesh_types.h index 1dc96190c67..d15cf4f1871 100644 --- a/source/blender/makesdna/DNA_mesh_types.h +++ b/source/blender/makesdna/DNA_mesh_types.h @@ -29,8 +29,8 @@ * \ingroup DNA */ -#ifndef DNA_MESH_TYPES_H -#define DNA_MESH_TYPES_H +#ifndef __DNA_MESH_TYPES_H__ +#define __DNA_MESH_TYPES_H__ #include "DNA_defs.h" #include "DNA_listBase.h" diff --git a/source/blender/makesdna/DNA_meshdata_types.h b/source/blender/makesdna/DNA_meshdata_types.h index ce9d1538fed..e85e703cd27 100644 --- a/source/blender/makesdna/DNA_meshdata_types.h +++ b/source/blender/makesdna/DNA_meshdata_types.h @@ -29,8 +29,8 @@ * \ingroup DNA */ -#ifndef DNA_MESHDATA_TYPES_H -#define DNA_MESHDATA_TYPES_H +#ifndef __DNA_MESHDATA_TYPES_H__ +#define __DNA_MESHDATA_TYPES_H__ #include "DNA_customdata_types.h" #include "DNA_listBase.h" diff --git a/source/blender/makesdna/DNA_meta_types.h b/source/blender/makesdna/DNA_meta_types.h index 863e2b2e6ed..9c20b8f644b 100644 --- a/source/blender/makesdna/DNA_meta_types.h +++ b/source/blender/makesdna/DNA_meta_types.h @@ -29,8 +29,8 @@ * \ingroup DNA */ -#ifndef DNA_META_TYPES_H -#define DNA_META_TYPES_H +#ifndef __DNA_META_TYPES_H__ +#define __DNA_META_TYPES_H__ #include "DNA_listBase.h" #include "DNA_ID.h" diff --git a/source/blender/makesdna/DNA_modifier_types.h b/source/blender/makesdna/DNA_modifier_types.h index dca401f12e8..0899b77abbc 100644 --- a/source/blender/makesdna/DNA_modifier_types.h +++ b/source/blender/makesdna/DNA_modifier_types.h @@ -22,8 +22,8 @@ * \ingroup DNA */ -#ifndef DNA_MODIFIER_TYPES_H -#define DNA_MODIFIER_TYPES_H +#ifndef __DNA_MODIFIER_TYPES_H__ +#define __DNA_MODIFIER_TYPES_H__ #include "DNA_defs.h" #include "DNA_listBase.h" diff --git a/source/blender/makesdna/DNA_movieclip_types.h b/source/blender/makesdna/DNA_movieclip_types.h index 71029293d09..be189e883c7 100644 --- a/source/blender/makesdna/DNA_movieclip_types.h +++ b/source/blender/makesdna/DNA_movieclip_types.h @@ -32,8 +32,8 @@ * \author Sergey Sharybin */ -#ifndef DNA_MOVIECLIP_TYPES_H -#define DNA_MOVIECLIP_TYPES_H +#ifndef __DNA_MOVIECLIP_TYPES_H__ +#define __DNA_MOVIECLIP_TYPES_H__ #include "DNA_ID.h" #include "DNA_tracking_types.h" diff --git a/source/blender/makesdna/DNA_nla_types.h b/source/blender/makesdna/DNA_nla_types.h index a28097e8449..43b52ed65eb 100644 --- a/source/blender/makesdna/DNA_nla_types.h +++ b/source/blender/makesdna/DNA_nla_types.h @@ -29,8 +29,8 @@ * \ingroup DNA */ -#ifndef DNA_NLA_TYPES_H -#define DNA_NLA_TYPES_H +#ifndef __DNA_NLA_TYPES_H__ +#define __DNA_NLA_TYPES_H__ #include "DNA_listBase.h" diff --git a/source/blender/makesdna/DNA_node_types.h b/source/blender/makesdna/DNA_node_types.h index 33ac75912fa..361aca4a572 100644 --- a/source/blender/makesdna/DNA_node_types.h +++ b/source/blender/makesdna/DNA_node_types.h @@ -29,8 +29,8 @@ * \ingroup DNA */ -#ifndef DNA_NODE_TYPES_H -#define DNA_NODE_TYPES_H +#ifndef __DNA_NODE_TYPES_H__ +#define __DNA_NODE_TYPES_H__ #include "DNA_ID.h" #include "DNA_vec_types.h" diff --git a/source/blender/makesdna/DNA_object_fluidsim.h b/source/blender/makesdna/DNA_object_fluidsim.h index 0651f076096..751d420daa7 100644 --- a/source/blender/makesdna/DNA_object_fluidsim.h +++ b/source/blender/makesdna/DNA_object_fluidsim.h @@ -31,8 +31,8 @@ * \ingroup DNA */ -#ifndef DNA_OBJECT_FLUIDSIM_H -#define DNA_OBJECT_FLUIDSIM_H +#ifndef __DNA_OBJECT_FLUIDSIM_H__ +#define __DNA_OBJECT_FLUIDSIM_H__ #include "DNA_ID.h" diff --git a/source/blender/makesdna/DNA_object_force.h b/source/blender/makesdna/DNA_object_force.h index 70aeaaacd44..6603288912b 100644 --- a/source/blender/makesdna/DNA_object_force.h +++ b/source/blender/makesdna/DNA_object_force.h @@ -31,8 +31,8 @@ * \ingroup DNA */ -#ifndef DNA_OBJECT_FORCE_H -#define DNA_OBJECT_FORCE_H +#ifndef __DNA_OBJECT_FORCE_H__ +#define __DNA_OBJECT_FORCE_H__ #ifdef __cplusplus extern "C" { diff --git a/source/blender/makesdna/DNA_object_types.h b/source/blender/makesdna/DNA_object_types.h index b8580b47269..7d3662c7ffb 100644 --- a/source/blender/makesdna/DNA_object_types.h +++ b/source/blender/makesdna/DNA_object_types.h @@ -30,8 +30,8 @@ * \brief Object is a sort of wrapper for general info. */ -#ifndef DNA_OBJECT_TYPES_H -#define DNA_OBJECT_TYPES_H +#ifndef __DNA_OBJECT_TYPES_H__ +#define __DNA_OBJECT_TYPES_H__ #include "DNA_defs.h" #include "DNA_listBase.h" diff --git a/source/blender/makesdna/DNA_outliner_types.h b/source/blender/makesdna/DNA_outliner_types.h index ee3903c3b40..17124a724fe 100644 --- a/source/blender/makesdna/DNA_outliner_types.h +++ b/source/blender/makesdna/DNA_outliner_types.h @@ -29,8 +29,8 @@ * \ingroup DNA */ -#ifndef DNA_OUTLINER_TYPES_H -#define DNA_OUTLINER_TYPES_H +#ifndef __DNA_OUTLINER_TYPES_H__ +#define __DNA_OUTLINER_TYPES_H__ #include "DNA_listBase.h" diff --git a/source/blender/makesdna/DNA_packedFile_types.h b/source/blender/makesdna/DNA_packedFile_types.h index 91134c2c575..339ac0f8c0d 100644 --- a/source/blender/makesdna/DNA_packedFile_types.h +++ b/source/blender/makesdna/DNA_packedFile_types.h @@ -31,8 +31,8 @@ * \since 12-oct-2000 nzc */ -#ifndef DNA_PACKEDFILE_TYPES_H -#define DNA_PACKEDFILE_TYPES_H +#ifndef __DNA_PACKEDFILE_TYPES_H__ +#define __DNA_PACKEDFILE_TYPES_H__ typedef struct PackedFile { int size; diff --git a/source/blender/makesdna/DNA_particle_types.h b/source/blender/makesdna/DNA_particle_types.h index 4c3279c6527..220ee69b442 100644 --- a/source/blender/makesdna/DNA_particle_types.h +++ b/source/blender/makesdna/DNA_particle_types.h @@ -29,8 +29,8 @@ * \ingroup DNA */ -#ifndef DNA_PARTICLE_TYPES_H -#define DNA_PARTICLE_TYPES_H +#ifndef __DNA_PARTICLE_TYPES_H__ +#define __DNA_PARTICLE_TYPES_H__ #include "DNA_defs.h" #include "DNA_ID.h" diff --git a/source/blender/makesdna/DNA_property_types.h b/source/blender/makesdna/DNA_property_types.h index a36e362632b..55fa50e3f63 100644 --- a/source/blender/makesdna/DNA_property_types.h +++ b/source/blender/makesdna/DNA_property_types.h @@ -36,8 +36,8 @@ * hierarchy here is a bit strange, and not desirable. */ -#ifndef DNA_PROPERTY_TYPES_H -#define DNA_PROPERTY_TYPES_H +#ifndef __DNA_PROPERTY_TYPES_H__ +#define __DNA_PROPERTY_TYPES_H__ /* ********************* PROPERTY ************************ */ diff --git a/source/blender/makesdna/DNA_scene_types.h b/source/blender/makesdna/DNA_scene_types.h index 1f42118dbc0..79d561fd2ea 100644 --- a/source/blender/makesdna/DNA_scene_types.h +++ b/source/blender/makesdna/DNA_scene_types.h @@ -29,8 +29,8 @@ * \ingroup DNA */ -#ifndef DNA_SCENE_TYPES_H -#define DNA_SCENE_TYPES_H +#ifndef __DNA_SCENE_TYPES_H__ +#define __DNA_SCENE_TYPES_H__ #include "DNA_defs.h" diff --git a/source/blender/makesdna/DNA_screen_types.h b/source/blender/makesdna/DNA_screen_types.h index 504c8da7612..75d9b91e9c8 100644 --- a/source/blender/makesdna/DNA_screen_types.h +++ b/source/blender/makesdna/DNA_screen_types.h @@ -27,8 +27,8 @@ * \ingroup DNA */ -#ifndef DNA_SCREEN_TYPES_H -#define DNA_SCREEN_TYPES_H +#ifndef __DNA_SCREEN_TYPES_H__ +#define __DNA_SCREEN_TYPES_H__ #include "DNA_listBase.h" #include "DNA_view2d_types.h" diff --git a/source/blender/makesdna/DNA_sdna_types.h b/source/blender/makesdna/DNA_sdna_types.h index 462ff8ce045..97b65235a29 100644 --- a/source/blender/makesdna/DNA_sdna_types.h +++ b/source/blender/makesdna/DNA_sdna_types.h @@ -29,8 +29,8 @@ * \ingroup DNA */ -#ifndef DNA_SDNA_H -#define DNA_SDNA_H +#ifndef __DNA_SDNA_TYPES_H__ +#define __DNA_SDNA_TYPES_H__ # # diff --git a/source/blender/makesdna/DNA_sensor_types.h b/source/blender/makesdna/DNA_sensor_types.h index 80f19b30079..05927e3a486 100644 --- a/source/blender/makesdna/DNA_sensor_types.h +++ b/source/blender/makesdna/DNA_sensor_types.h @@ -31,8 +31,8 @@ * \author nzc */ -#ifndef DNA_SENSOR_TYPES_H -#define DNA_SENSOR_TYPES_H +#ifndef __DNA_SENSOR_TYPES_H__ +#define __DNA_SENSOR_TYPES_H__ struct Object; struct Material; diff --git a/source/blender/makesdna/DNA_sequence_types.h b/source/blender/makesdna/DNA_sequence_types.h index 20399e541d7..cff4e539e6e 100644 --- a/source/blender/makesdna/DNA_sequence_types.h +++ b/source/blender/makesdna/DNA_sequence_types.h @@ -30,8 +30,8 @@ * \author nzc */ -#ifndef DNA_SEQUENCE_TYPES_H -#define DNA_SEQUENCE_TYPES_H +#ifndef __DNA_SEQUENCE_TYPES_H__ +#define __DNA_SEQUENCE_TYPES_H__ #include "DNA_defs.h" #include "DNA_listBase.h" diff --git a/source/blender/makesdna/DNA_smoke_types.h b/source/blender/makesdna/DNA_smoke_types.h index 753f1374774..894e1135c0d 100644 --- a/source/blender/makesdna/DNA_smoke_types.h +++ b/source/blender/makesdna/DNA_smoke_types.h @@ -29,8 +29,8 @@ * \ingroup DNA */ -#ifndef DNA_SMOKE_TYPES_H -#define DNA_SMOKE_TYPES_H +#ifndef __DNA_SMOKE_TYPES_H__ +#define __DNA_SMOKE_TYPES_H__ /* flags */ #define MOD_SMOKE_HIGHRES (1<<1) /* enable high resolution */ diff --git a/source/blender/makesdna/DNA_sound_types.h b/source/blender/makesdna/DNA_sound_types.h index 1dab9effa9e..1fab63f9d63 100644 --- a/source/blender/makesdna/DNA_sound_types.h +++ b/source/blender/makesdna/DNA_sound_types.h @@ -30,8 +30,8 @@ * \author nzc */ -#ifndef DNA_SOUND_TYPES_H -#define DNA_SOUND_TYPES_H +#ifndef __DNA_SOUND_TYPES_H__ +#define __DNA_SOUND_TYPES_H__ #include "DNA_listBase.h" #include "DNA_ID.h" diff --git a/source/blender/makesdna/DNA_space_types.h b/source/blender/makesdna/DNA_space_types.h index 64d858bbcee..ed724ae5807 100644 --- a/source/blender/makesdna/DNA_space_types.h +++ b/source/blender/makesdna/DNA_space_types.h @@ -30,8 +30,8 @@ * \author nzc */ -#ifndef DNA_SPACE_TYPES_H -#define DNA_SPACE_TYPES_H +#ifndef __DNA_SPACE_TYPES_H__ +#define __DNA_SPACE_TYPES_H__ #include "DNA_defs.h" #include "DNA_listBase.h" diff --git a/source/blender/makesdna/DNA_speaker_types.h b/source/blender/makesdna/DNA_speaker_types.h index 2e8227f4f92..8ad987818ae 100644 --- a/source/blender/makesdna/DNA_speaker_types.h +++ b/source/blender/makesdna/DNA_speaker_types.h @@ -24,8 +24,8 @@ * \ingroup DNA */ -#ifndef DNA_SPEAKER_TYPES_H -#define DNA_SPEAKER_TYPES_H +#ifndef __DNA_SPEAKER_TYPES_H__ +#define __DNA_SPEAKER_TYPES_H__ #include "DNA_ID.h" @@ -64,5 +64,5 @@ typedef struct Speaker { #define SPK_MUTED (1<<1) #define SPK_RELATIVE (1<<2) -#endif /* DNA_SPEAKER_TYPES_H */ +#endif /* __DNA_SPEAKER_TYPES_H__ */ diff --git a/source/blender/makesdna/DNA_text_types.h b/source/blender/makesdna/DNA_text_types.h index 67f3c5288f6..cf26dae402d 100644 --- a/source/blender/makesdna/DNA_text_types.h +++ b/source/blender/makesdna/DNA_text_types.h @@ -30,8 +30,8 @@ * \author nzc */ -#ifndef DNA_TEXT_TYPES_H -#define DNA_TEXT_TYPES_H +#ifndef __DNA_TEXT_TYPES_H__ +#define __DNA_TEXT_TYPES_H__ #include "DNA_listBase.h" #include "DNA_ID.h" diff --git a/source/blender/makesdna/DNA_texture_types.h b/source/blender/makesdna/DNA_texture_types.h index de844fd2d7f..c6ffec2aff7 100644 --- a/source/blender/makesdna/DNA_texture_types.h +++ b/source/blender/makesdna/DNA_texture_types.h @@ -31,8 +31,8 @@ * \author nzc */ -#ifndef DNA_TEXTURE_TYPES_H -#define DNA_TEXTURE_TYPES_H +#ifndef __DNA_TEXTURE_TYPES_H__ +#define __DNA_TEXTURE_TYPES_H__ #include "DNA_defs.h" #include "DNA_ID.h" diff --git a/source/blender/makesdna/DNA_tracking_types.h b/source/blender/makesdna/DNA_tracking_types.h index e81344d7d51..03e731cf765 100644 --- a/source/blender/makesdna/DNA_tracking_types.h +++ b/source/blender/makesdna/DNA_tracking_types.h @@ -32,8 +32,8 @@ * \author Sergey Sharybin */ -#ifndef DNA_TRACKING_TYPES_H -#define DNA_TRACKING_TYPES_H +#ifndef __DNA_TRACKING_TYPES_H__ +#define __DNA_TRACKING_TYPES_H__ #include "DNA_listBase.h" diff --git a/source/blender/makesdna/DNA_userdef_types.h b/source/blender/makesdna/DNA_userdef_types.h index 405e1e33720..d64c3133001 100644 --- a/source/blender/makesdna/DNA_userdef_types.h +++ b/source/blender/makesdna/DNA_userdef_types.h @@ -31,8 +31,8 @@ * \author nzc */ -#ifndef DNA_USERDEF_TYPES_H -#define DNA_USERDEF_TYPES_H +#ifndef __DNA_USERDEF_TYPES_H__ +#define __DNA_USERDEF_TYPES_H__ #include "DNA_listBase.h" #include "DNA_texture_types.h" /* ColorBand */ diff --git a/source/blender/makesdna/DNA_vec_types.h b/source/blender/makesdna/DNA_vec_types.h index 10135ba85e9..0e832b8c95f 100644 --- a/source/blender/makesdna/DNA_vec_types.h +++ b/source/blender/makesdna/DNA_vec_types.h @@ -32,8 +32,8 @@ * \author nzc */ -#ifndef DNA_VEC_TYPES_H -#define DNA_VEC_TYPES_H +#ifndef __DNA_VEC_TYPES_H__ +#define __DNA_VEC_TYPES_H__ /* types */ diff --git a/source/blender/makesdna/DNA_vfont_types.h b/source/blender/makesdna/DNA_vfont_types.h index d6168af6028..299a6540f40 100644 --- a/source/blender/makesdna/DNA_vfont_types.h +++ b/source/blender/makesdna/DNA_vfont_types.h @@ -31,8 +31,8 @@ * \author nzc */ -#ifndef DNA_VFONT_TYPES_H -#define DNA_VFONT_TYPES_H +#ifndef __DNA_VFONT_TYPES_H__ +#define __DNA_VFONT_TYPES_H__ #include "DNA_ID.h" diff --git a/source/blender/makesdna/DNA_view2d_types.h b/source/blender/makesdna/DNA_view2d_types.h index 0581cad4170..9c4abfbfdef 100644 --- a/source/blender/makesdna/DNA_view2d_types.h +++ b/source/blender/makesdna/DNA_view2d_types.h @@ -29,8 +29,8 @@ * \ingroup DNA */ -#ifndef DNA_VIEW2D_TYPES_H -#define DNA_VIEW2D_TYPES_H +#ifndef __DNA_VIEW2D_TYPES_H__ +#define __DNA_VIEW2D_TYPES_H__ #include "DNA_vec_types.h" diff --git a/source/blender/makesdna/DNA_view3d_types.h b/source/blender/makesdna/DNA_view3d_types.h index 58c3f091d6d..0758e6e1713 100644 --- a/source/blender/makesdna/DNA_view3d_types.h +++ b/source/blender/makesdna/DNA_view3d_types.h @@ -29,8 +29,8 @@ * \ingroup DNA */ -#ifndef DNA_VIEW3D_TYPES_H -#define DNA_VIEW3D_TYPES_H +#ifndef __DNA_VIEW3D_TYPES_H__ +#define __DNA_VIEW3D_TYPES_H__ struct ViewDepths; struct Object; diff --git a/source/blender/makesdna/DNA_windowmanager_types.h b/source/blender/makesdna/DNA_windowmanager_types.h index 156d2ebbb20..3e6c46ba8b1 100644 --- a/source/blender/makesdna/DNA_windowmanager_types.h +++ b/source/blender/makesdna/DNA_windowmanager_types.h @@ -28,8 +28,8 @@ * \ingroup DNA */ -#ifndef DNA_WINDOWMANAGER_TYPES_H -#define DNA_WINDOWMANAGER_TYPES_H +#ifndef __DNA_WINDOWMANAGER_TYPES_H__ +#define __DNA_WINDOWMANAGER_TYPES_H__ #include "DNA_listBase.h" #include "DNA_vec_types.h" @@ -338,4 +338,4 @@ typedef struct wmOperator { /* wmOperator flag */ #define OP_GRAB_POINTER 1 -#endif /* DNA_WINDOWMANAGER_TYPES_H */ +#endif /* __DNA_WINDOWMANAGER_TYPES_H__ */ diff --git a/source/blender/makesdna/DNA_world_types.h b/source/blender/makesdna/DNA_world_types.h index a04ea89a291..5482566ac41 100644 --- a/source/blender/makesdna/DNA_world_types.h +++ b/source/blender/makesdna/DNA_world_types.h @@ -29,8 +29,8 @@ * \ingroup DNA */ -#ifndef DNA_WORLD_TYPES_H -#define DNA_WORLD_TYPES_H +#ifndef __DNA_WORLD_TYPES_H__ +#define __DNA_WORLD_TYPES_H__ #include "DNA_defs.h" #include "DNA_ID.h" diff --git a/source/blender/makesrna/RNA_access.h b/source/blender/makesrna/RNA_access.h index 45510947757..dc342f47362 100644 --- a/source/blender/makesrna/RNA_access.h +++ b/source/blender/makesrna/RNA_access.h @@ -20,8 +20,8 @@ * ***** END GPL LICENSE BLOCK ***** */ -#ifndef RNA_ACCESS_H -#define RNA_ACCESS_H +#ifndef __RNA_ACCESS_H__ +#define __RNA_ACCESS_H__ /** \file RNA_access.h * \ingroup RNA @@ -1017,4 +1017,4 @@ __attribute__ ((format (printf, 1, 2))) } #endif -#endif /* RNA_ACCESS_H */ +#endif /* __RNA_ACCESS_H__ */ diff --git a/source/blender/makesrna/RNA_define.h b/source/blender/makesrna/RNA_define.h index 4fb08227fb6..95f988b470b 100644 --- a/source/blender/makesrna/RNA_define.h +++ b/source/blender/makesrna/RNA_define.h @@ -20,8 +20,8 @@ * ***** END GPL LICENSE BLOCK ***** */ -#ifndef RNA_DEFINE_H -#define RNA_DEFINE_H +#ifndef __RNA_DEFINE_H__ +#define __RNA_DEFINE_H__ /** \file RNA_define.h * \ingroup RNA @@ -218,5 +218,5 @@ const char *RNA_property_typename(PropertyType type); } #endif -#endif /* RNA_DEFINE_H */ +#endif /* __RNA_DEFINE_H__ */ diff --git a/source/blender/makesrna/RNA_enum_types.h b/source/blender/makesrna/RNA_enum_types.h index 72917600d05..a333d9ace12 100644 --- a/source/blender/makesrna/RNA_enum_types.h +++ b/source/blender/makesrna/RNA_enum_types.h @@ -20,8 +20,8 @@ * ***** END GPL LICENSE BLOCK ***** */ -#ifndef RNA_ENUM_TYPES_H -#define RNA_ENUM_TYPES_H +#ifndef __RNA_ENUM_TYPES_H__ +#define __RNA_ENUM_TYPES_H__ /** \file RNA_enum_types.h * \ingroup RNA @@ -137,4 +137,4 @@ EnumPropertyItem *RNA_image_local_itemf(struct bContext *C, struct PointerRNA *p EnumPropertyItem *RNA_scene_itemf(struct bContext *C, struct PointerRNA *ptr, struct PropertyRNA *prop, int *free); EnumPropertyItem *RNA_scene_local_itemf(struct bContext *C, struct PointerRNA *ptr, struct PropertyRNA *prop, int *free); -#endif /* RNA_ENUM_TYPES_H */ +#endif /* __RNA_ENUM_TYPES_H__ */ diff --git a/source/blender/makesrna/RNA_types.h b/source/blender/makesrna/RNA_types.h index 85869115e79..ee9c6b26e2f 100644 --- a/source/blender/makesrna/RNA_types.h +++ b/source/blender/makesrna/RNA_types.h @@ -27,8 +27,8 @@ #include "BLO_sys_types.h" -#ifndef RNA_TYPES_H -#define RNA_TYPES_H +#ifndef __RNA_TYPES_H__ +#define __RNA_TYPES_H__ #ifdef __cplusplus extern "C" { @@ -371,4 +371,4 @@ typedef struct ExtensionRNA { } #endif -#endif /* RNA_TYPES_H */ +#endif /* __RNA_TYPES_H__ */ diff --git a/source/blender/makesrna/intern/rna_internal.h b/source/blender/makesrna/intern/rna_internal.h index e9f8ecd1ef2..6d902ba037a 100644 --- a/source/blender/makesrna/intern/rna_internal.h +++ b/source/blender/makesrna/intern/rna_internal.h @@ -25,8 +25,8 @@ */ -#ifndef RNA_INTERNAL_H -#define RNA_INTERNAL_H +#ifndef __RNA_INTERNAL_H__ +#define __RNA_INTERNAL_H__ #include "UI_resources.h" @@ -387,6 +387,6 @@ void rna_mtex_texture_slots_clear(struct ID *self, struct bContext *C, struct Re int rna_IDMaterials_assign_int(struct PointerRNA *ptr, int key, const struct PointerRNA *assign_ptr); -#endif /* RNA_INTERNAL_H */ +#endif /* __RNA_INTERNAL_H__ */ diff --git a/source/blender/makesrna/intern/rna_internal_types.h b/source/blender/makesrna/intern/rna_internal_types.h index 40157d390bc..997f9d084c5 100644 --- a/source/blender/makesrna/intern/rna_internal_types.h +++ b/source/blender/makesrna/intern/rna_internal_types.h @@ -25,8 +25,8 @@ */ -#ifndef RNA_INTERNAL_TYPES_H -#define RNA_INTERNAL_TYPES_H +#ifndef __RNA_INTERNAL_TYPES_H__ +#define __RNA_INTERNAL_TYPES_H__ #include "DNA_listBase.h" @@ -358,4 +358,4 @@ struct BlenderRNA { #define CONTAINER_RNA_ID(cont) (*(const char **)(((ContainerRNA *)(cont))+1)) -#endif /* RNA_INTERNAL_TYPES_H */ +#endif /* __RNA_INTERNAL_TYPES_H__ */ diff --git a/source/blender/makesrna/intern/rna_nodetree_types.h b/source/blender/makesrna/intern/rna_nodetree_types.h index 2284b09e941..745a956d831 100644 --- a/source/blender/makesrna/intern/rna_nodetree_types.h +++ b/source/blender/makesrna/intern/rna_nodetree_types.h @@ -24,6 +24,7 @@ * \ingroup RNA */ +/* intentionally no include guard */ /* Empty definitions for undefined macros to avoid warnings */ #ifndef DefNode diff --git a/source/blender/modifiers/MOD_modifiertypes.h b/source/blender/modifiers/MOD_modifiertypes.h index fec6545678a..ea5574a378e 100644 --- a/source/blender/modifiers/MOD_modifiertypes.h +++ b/source/blender/modifiers/MOD_modifiertypes.h @@ -24,8 +24,8 @@ * \ingroup modifiers */ -#ifndef MOD_MODIFIERTYPES_H -#define MOD_MODIFIERTYPES_H +#ifndef __MOD_MODIFIERTYPES_H__ +#define __MOD_MODIFIERTYPES_H__ #include "BKE_modifier.h" @@ -78,4 +78,4 @@ extern ModifierTypeInfo modifierType_Remesh; /* MOD_util.c */ void modifier_type_init(ModifierTypeInfo *types[]); -#endif //MOD_MODIFIERTYPES_H +#endif //__MOD_MODIFIERTYPES_H__ diff --git a/source/blender/modifiers/intern/MOD_boolean_util.h b/source/blender/modifiers/intern/MOD_boolean_util.h index dcd5460c7c3..8e3617cf74e 100644 --- a/source/blender/modifiers/intern/MOD_boolean_util.h +++ b/source/blender/modifiers/intern/MOD_boolean_util.h @@ -30,8 +30,8 @@ */ -#ifndef MOD_BOOLEAN_UTILS_H -#define MOD_BOOLEAN_UTILS_H +#ifndef __MOD_BOOLEAN_UTIL_H__ +#define __MOD_BOOLEAN_UTIL_H__ struct Scene; struct Object; diff --git a/source/blender/modifiers/intern/MOD_fluidsim_util.h b/source/blender/modifiers/intern/MOD_fluidsim_util.h index 2c22f37bcbe..334826e618b 100644 --- a/source/blender/modifiers/intern/MOD_fluidsim_util.h +++ b/source/blender/modifiers/intern/MOD_fluidsim_util.h @@ -30,8 +30,8 @@ */ -#ifndef MOD_FLUIDSIM_UTIL_H -#define MOD_FLUIDSIM_UTIL_H +#ifndef __MOD_FLUIDSIM_UTIL_H__ +#define __MOD_FLUIDSIM_UTIL_H__ struct Object; struct Scene; diff --git a/source/blender/modifiers/intern/MOD_util.h b/source/blender/modifiers/intern/MOD_util.h index 86909efb96c..ad62e073ea2 100644 --- a/source/blender/modifiers/intern/MOD_util.h +++ b/source/blender/modifiers/intern/MOD_util.h @@ -25,8 +25,8 @@ */ -#ifndef MOD_UTIL_H -#define MOD_UTIL_H +#ifndef __MOD_UTIL_H__ +#define __MOD_UTIL_H__ /* so modifier types match their defines */ #include "MOD_modifiertypes.h" @@ -48,4 +48,4 @@ struct DerivedMesh *get_cddm(struct Object *ob, struct EditMesh *em, struct Deri struct DerivedMesh *get_dm(struct Object *ob, struct EditMesh *em, struct DerivedMesh *dm, float (*vertexCos)[3], int orco); void modifier_get_vgroup(struct Object *ob, struct DerivedMesh *dm, const char *name, struct MDeformVert **dvert, int *defgrp_index); -#endif /* MOD_UTIL_H */ +#endif /* __MOD_UTIL_H__ */ diff --git a/source/blender/modifiers/intern/MOD_weightvg_util.h b/source/blender/modifiers/intern/MOD_weightvg_util.h index 5ae1e991073..5572628fd3f 100644 --- a/source/blender/modifiers/intern/MOD_weightvg_util.h +++ b/source/blender/modifiers/intern/MOD_weightvg_util.h @@ -29,8 +29,8 @@ */ -#ifndef MOD_WEIGHTVG_UTIL_H -#define MOD_WEIGHTVG_UTIL_H +#ifndef __MOD_WEIGHTVG_UTIL_H__ +#define __MOD_WEIGHTVG_UTIL_H__ /* so modifier types match their defines */ #include "MOD_modifiertypes.h" @@ -85,4 +85,4 @@ void weightvg_update_vg(MDeformVert *dvert, int defgrp_idx, MDeformWeight **dws, const int *indices, const float *weights, int do_add, float add_thresh, int do_rem, float rem_thresh); -#endif /* MOD_WEIGHTVG_UTIL_H */ +#endif /* __MOD_WEIGHTVG_UTIL_H__ */ diff --git a/source/blender/nodes/NOD_composite.h b/source/blender/nodes/NOD_composite.h index 77745a19934..284b89bc095 100644 --- a/source/blender/nodes/NOD_composite.h +++ b/source/blender/nodes/NOD_composite.h @@ -29,8 +29,8 @@ * \ingroup nodes */ -#ifndef NOD_composite_H -#define NOD_composite_H +#ifndef __NOD_COMPOSITE_H__ +#define __NOD_COMPOSITE_H__ #include "BKE_node.h" diff --git a/source/blender/nodes/NOD_shader.h b/source/blender/nodes/NOD_shader.h index 63fc0f4232c..d2b3a61971b 100644 --- a/source/blender/nodes/NOD_shader.h +++ b/source/blender/nodes/NOD_shader.h @@ -29,8 +29,8 @@ * \ingroup nodes */ -#ifndef NOD_SHADER_H -#define NOD_SHADER_H +#ifndef __NOD_SHADER_H__ +#define __NOD_SHADER_H__ #include "BKE_node.h" diff --git a/source/blender/nodes/NOD_socket.h b/source/blender/nodes/NOD_socket.h index fb3946bae6c..f41be2bb7d9 100644 --- a/source/blender/nodes/NOD_socket.h +++ b/source/blender/nodes/NOD_socket.h @@ -30,8 +30,8 @@ */ -#ifndef NOD_SOCKET_H_ -#define NOD_SOCKET_H_ +#ifndef __NOD_SOCKET_H__ +#define __NOD_SOCKET_H__ #include "DNA_listBase.h" diff --git a/source/blender/nodes/NOD_texture.h b/source/blender/nodes/NOD_texture.h index cb727ef071a..7722580d136 100644 --- a/source/blender/nodes/NOD_texture.h +++ b/source/blender/nodes/NOD_texture.h @@ -29,8 +29,8 @@ * \ingroup nodes */ -#ifndef NOD_TEXTURE_H -#define NOD_TEXTURE_H +#ifndef __NOD_TEXTURE_H__ +#define __NOD_TEXTURE_H__ #include "BKE_node.h" diff --git a/source/blender/nodes/composite/node_composite_util.h b/source/blender/nodes/composite/node_composite_util.h index 02487933849..5e63750e131 100644 --- a/source/blender/nodes/composite/node_composite_util.h +++ b/source/blender/nodes/composite/node_composite_util.h @@ -30,8 +30,8 @@ */ -#ifndef NODE_COMPOSITE_UTIL_H_ -#define NODE_COMPOSITE_UTIL_H_ +#ifndef __NODE_COMPOSITE_UTIL_H__ +#define __NODE_COMPOSITE_UTIL_H__ #include #include diff --git a/source/blender/nodes/intern/node_common.h b/source/blender/nodes/intern/node_common.h index ee523120d02..616221d6658 100644 --- a/source/blender/nodes/intern/node_common.h +++ b/source/blender/nodes/intern/node_common.h @@ -30,8 +30,8 @@ */ -#ifndef NODE_COMMON_H_ -#define NODE_COMMON_H_ +#ifndef __NODE_COMMON_H__ +#define __NODE_COMMON_H__ #include "DNA_listBase.h" diff --git a/source/blender/nodes/intern/node_exec.h b/source/blender/nodes/intern/node_exec.h index fe1bb0b6eb6..1003206e96a 100644 --- a/source/blender/nodes/intern/node_exec.h +++ b/source/blender/nodes/intern/node_exec.h @@ -30,8 +30,8 @@ */ -#ifndef NODE_EXEC_H_ -#define NODE_EXEC_H_ +#ifndef __NODE_EXEC_H__ +#define __NODE_EXEC_H__ #include "DNA_listBase.h" diff --git a/source/blender/nodes/intern/node_util.h b/source/blender/nodes/intern/node_util.h index 7ca090394c3..4a5e8765ba2 100644 --- a/source/blender/nodes/intern/node_util.h +++ b/source/blender/nodes/intern/node_util.h @@ -30,8 +30,8 @@ */ -#ifndef NODE_UTIL_H_ -#define NODE_UTIL_H_ +#ifndef __NODE_UTIL_H__ +#define __NODE_UTIL_H__ #include "DNA_listBase.h" diff --git a/source/blender/nodes/shader/node_shader_util.h b/source/blender/nodes/shader/node_shader_util.h index d345f3fb310..76d3d933fdb 100644 --- a/source/blender/nodes/shader/node_shader_util.h +++ b/source/blender/nodes/shader/node_shader_util.h @@ -30,8 +30,8 @@ */ -#ifndef NODE_SHADER_UTIL_H_ -#define NODE_SHADER_UTIL_H_ +#ifndef __NODE_SHADER_UTIL_H__ +#define __NODE_SHADER_UTIL_H__ #include #include diff --git a/source/blender/nodes/texture/node_texture_util.h b/source/blender/nodes/texture/node_texture_util.h index 5095a9799e4..a0b219804b9 100644 --- a/source/blender/nodes/texture/node_texture_util.h +++ b/source/blender/nodes/texture/node_texture_util.h @@ -30,8 +30,8 @@ */ -#ifndef NODE_TEXTURE_UTIL_H_ -#define NODE_TEXTURE_UTIL_H_ +#ifndef __NODE_TEXTURE_UTIL_H__ +#define __NODE_TEXTURE_UTIL_H__ #include #include diff --git a/source/blender/python/BPY_extern.h b/source/blender/python/BPY_extern.h index 51f9063c289..33ea139b474 100644 --- a/source/blender/python/BPY_extern.h +++ b/source/blender/python/BPY_extern.h @@ -34,8 +34,8 @@ -#ifndef BPY_EXTERN_H -#define BPY_EXTERN_H +#ifndef __BPY_EXTERN_H__ +#define __BPY_EXTERN_H__ struct Text; /* defined in DNA_text_types.h */ struct ID; /* DNA_ID.h */ @@ -89,4 +89,4 @@ void BPY_id_release(struct ID *id); } /* extern "C" */ #endif -#endif /* BPY_EXTERN_H */ +#endif /* __BPY_EXTERN_H__ */ diff --git a/source/blender/python/generic/bgl.h b/source/blender/python/generic/bgl.h index 2e02900d69f..e23f4c2e86d 100644 --- a/source/blender/python/generic/bgl.h +++ b/source/blender/python/generic/bgl.h @@ -36,8 +36,8 @@ * writers to make OpenGL calls in their Python scripts for Blender. The * more important original comments are marked with an @ symbol. */ -#ifndef BGL_H -#define BGL_H +#ifndef __BGL_H__ +#define __BGL_H__ PyObject *BPyInit_bgl(void); @@ -339,4 +339,4 @@ extern PyTypeObject BGL_bufferType; return NULL; \ } \ -#endif /* BGL_H */ +#endif /* __BGL_H__ */ diff --git a/source/blender/python/generic/bpy_internal_import.h b/source/blender/python/generic/bpy_internal_import.h index 2ce644715e9..8b41a575d96 100644 --- a/source/blender/python/generic/bpy_internal_import.h +++ b/source/blender/python/generic/bpy_internal_import.h @@ -32,8 +32,8 @@ /* Note, the BGE needs to use this too, keep it minimal */ -#ifndef BPY_INTERNAL_IMPORT_H -#define BPY_INTERNAL_IMPORT_H +#ifndef __BPY_INTERNAL_IMPORT_H__ +#define __BPY_INTERNAL_IMPORT_H__ /* python redefines :/ */ #ifdef _POSIX_C_SOURCE @@ -62,4 +62,4 @@ extern PyMethodDef bpy_reload_meth; struct Main *bpy_import_main_get(void); void bpy_import_main_set(struct Main *maggie); -#endif /* BPY_INTERNAL_IMPORT_H */ +#endif /* __BPY_INTERNAL_IMPORT_H__ */ diff --git a/source/blender/python/generic/idprop_py_api.h b/source/blender/python/generic/idprop_py_api.h index 599ba8e1db6..f053f212a23 100644 --- a/source/blender/python/generic/idprop_py_api.h +++ b/source/blender/python/generic/idprop_py_api.h @@ -25,8 +25,8 @@ */ -#ifndef PY_IDPROP_API_H -#define PY_IDPROP_API_H +#ifndef __IDPROP_PY_API_H__ +#define __IDPROP_PY_API_H__ struct ID; struct IDProperty; @@ -67,4 +67,4 @@ void IDProp_Init_Types(void); #define IDPROP_ITER_KEYS 0 #define IDPROP_ITER_ITEMS 1 -#endif /* PY_IDPROP_API_H */ +#endif /* __IDPROP_PY_API_H__ */ diff --git a/source/blender/python/generic/py_capi_utils.h b/source/blender/python/generic/py_capi_utils.h index 2cab464a9d7..a71a2821c9a 100644 --- a/source/blender/python/generic/py_capi_utils.h +++ b/source/blender/python/generic/py_capi_utils.h @@ -25,8 +25,8 @@ */ -#ifndef PY_CAPI_UTILS_H -#define PY_CAPI_UTILS_H +#ifndef __PY_CAPI_UTILS_H__ +#define __PY_CAPI_UTILS_H__ void PyC_ObSpit(const char *name, PyObject *var); void PyC_LineSpit(void); @@ -54,4 +54,4 @@ void PyC_SetHomePath(const char *py_path_bundle); #define PYC_INTERPRETER_ACTIVE (((PyThreadState*)_Py_atomic_load_relaxed(&_PyThreadState_Current)) != NULL) -#endif // PY_CAPI_UTILS_H +#endif // __PY_CAPI_UTILS_H__ diff --git a/source/blender/python/intern/bpy_app.h b/source/blender/python/intern/bpy_app.h index 0aa3b1f4e42..5bf36f04ba0 100644 --- a/source/blender/python/intern/bpy_app.h +++ b/source/blender/python/intern/bpy_app.h @@ -24,9 +24,9 @@ * \ingroup pythonintern */ -#ifndef BPY_APP_H -#define BPY_APP_H +#ifndef __BPY_APP_H__ +#define __BPY_APP_H__ PyObject *BPY_app_struct(void); -#endif // BPY_APP_H +#endif // __BPY_APP_H__ diff --git a/source/blender/python/intern/bpy_app_ffmpeg.h b/source/blender/python/intern/bpy_app_ffmpeg.h index 4ed89cd7902..cadbb021d31 100644 --- a/source/blender/python/intern/bpy_app_ffmpeg.h +++ b/source/blender/python/intern/bpy_app_ffmpeg.h @@ -24,9 +24,9 @@ * \ingroup pythonintern */ -#ifndef BPY_APP_FFMPEG_H -#define BPY_APP_FFMPEG_H +#ifndef __BPY_APP_FFMPEG_H__ +#define __BPY_APP_FFMPEG_H__ PyObject *BPY_app_ffmpeg_struct(void); -#endif // BPY_APP_FFMPEG_H +#endif // __BPY_APP_FFMPEG_H__ diff --git a/source/blender/python/intern/bpy_app_handlers.h b/source/blender/python/intern/bpy_app_handlers.h index 873282bde79..6883e05859d 100644 --- a/source/blender/python/intern/bpy_app_handlers.h +++ b/source/blender/python/intern/bpy_app_handlers.h @@ -24,10 +24,10 @@ * \ingroup pythonintern */ -#ifndef BPY_APP_HANDLERS_H -#define BPY_APP_HANDLERS_H +#ifndef __BPY_APP_HANDLERS_H__ +#define __BPY_APP_HANDLERS_H__ PyObject *BPY_app_handlers_struct(void); void BPY_app_handlers_clear(void); -#endif // BPY_APP_HANDLERS_H +#endif // __BPY_APP_HANDLERS_H__ diff --git a/source/blender/python/intern/bpy_driver.h b/source/blender/python/intern/bpy_driver.h index 802a3649e20..6d1696d6cdc 100644 --- a/source/blender/python/intern/bpy_driver.h +++ b/source/blender/python/intern/bpy_driver.h @@ -24,8 +24,8 @@ * \ingroup pythonintern */ -#ifndef BPY_DRIVER_H -#define BPY_DRIVER_H +#ifndef __BPY_DRIVER_H__ +#define __BPY_DRIVER_H__ struct ChannelDriver; @@ -36,4 +36,4 @@ extern PyObject *bpy_pydriver_Dict; float BPY_driver_exec(struct ChannelDriver *driver, const float evaltime); void BPY_driver_reset(void); -#endif // BPY_DRIVER_H +#endif // __BPY_DRIVER_H__ diff --git a/source/blender/python/intern/bpy_operator.h b/source/blender/python/intern/bpy_operator.h index cf67f2a029d..68ea9423edd 100644 --- a/source/blender/python/intern/bpy_operator.h +++ b/source/blender/python/intern/bpy_operator.h @@ -24,8 +24,8 @@ * \ingroup pythonintern */ -#ifndef BPY_OPERATOR_H -#define BPY_OPERATOR_H +#ifndef __BPY_OPERATOR_H__ +#define __BPY_OPERATOR_H__ extern PyTypeObject pyop_base_Type; diff --git a/source/blender/python/intern/bpy_operator_wrap.h b/source/blender/python/intern/bpy_operator_wrap.h index 125d7dba84a..05a566a1485 100644 --- a/source/blender/python/intern/bpy_operator_wrap.h +++ b/source/blender/python/intern/bpy_operator_wrap.h @@ -24,8 +24,8 @@ * \ingroup pythonintern */ -#ifndef BPY_OPERATOR_WRAP_H -#define BPY_OPERATOR_WRAP_H +#ifndef __BPY_OPERATOR_WRAP_H__ +#define __BPY_OPERATOR_WRAP_H__ struct wmOperatorType; diff --git a/source/blender/python/intern/bpy_props.h b/source/blender/python/intern/bpy_props.h index f7ec6d555b9..c9934ca0cf3 100644 --- a/source/blender/python/intern/bpy_props.h +++ b/source/blender/python/intern/bpy_props.h @@ -25,8 +25,8 @@ */ -#ifndef BPY_PROPS_H -#define BPY_PROPS_H +#ifndef __BPY_PROPS_H__ +#define __BPY_PROPS_H__ PyObject *BPY_rna_props(void); diff --git a/source/blender/python/intern/bpy_rna.h b/source/blender/python/intern/bpy_rna.h index 70ae8166b8b..c9ff034716d 100644 --- a/source/blender/python/intern/bpy_rna.h +++ b/source/blender/python/intern/bpy_rna.h @@ -24,8 +24,8 @@ * \ingroup pythonintern */ -#ifndef BPY_RNA_H -#define BPY_RNA_H +#ifndef __BPY_RNA_H__ +#define __BPY_RNA_H__ /* --- bpy build options --- */ #ifdef WITH_PYTHON_SAFETY diff --git a/source/blender/python/intern/bpy_traceback.h b/source/blender/python/intern/bpy_traceback.h index ff7312bb16e..575f9824379 100644 --- a/source/blender/python/intern/bpy_traceback.h +++ b/source/blender/python/intern/bpy_traceback.h @@ -23,9 +23,9 @@ */ -#ifndef BPY_TRACEBACK_H -#define BPY_TRACEBACK_H +#ifndef __BPY_TRACEBACK_H__ +#define __BPY_TRACEBACK_H__ void python_script_error_jump(const char *filepath, int *lineno, int *offset); -#endif // BPY_TRACEBACK_H +#endif // __BPY_TRACEBACK_H__ diff --git a/source/blender/python/intern/bpy_util.h b/source/blender/python/intern/bpy_util.h index 4c06bd2593b..4bebcb2ed85 100644 --- a/source/blender/python/intern/bpy_util.h +++ b/source/blender/python/intern/bpy_util.h @@ -25,8 +25,8 @@ */ -#ifndef BPY_UTIL_H -#define BPY_UTIL_H +#ifndef __BPY_UTIL_H__ +#define __BPY_UTIL_H__ #if PY_VERSION_HEX < 0x03020000 #error "Python 3.2 or greater is required, you'll need to update your python." diff --git a/source/blender/python/mathutils/mathutils.h b/source/blender/python/mathutils/mathutils.h index 220ae61f47d..854cb2e962a 100644 --- a/source/blender/python/mathutils/mathutils.h +++ b/source/blender/python/mathutils/mathutils.h @@ -32,8 +32,8 @@ //Include this file for access to vector, quat, matrix, euler, etc... -#ifndef MATHUTILS_H -#define MATHUTILS_H +#ifndef __MATHUTILS_H__ +#define __MATHUTILS_H__ /* Can cast different mathutils types to this, use for generic funcs */ @@ -125,4 +125,4 @@ int column_vector_multiplication(float rvec[4], VectorObject *vec, MatrixObject /* dynstr as python string utility funcions */ PyObject *mathutils_dynstr_to_py(struct DynStr *ds); -#endif /* MATHUTILS_H */ +#endif /* __MATHUTILS_H__ */ diff --git a/source/blender/python/mathutils/mathutils_Color.h b/source/blender/python/mathutils/mathutils_Color.h index 7e8a99089ad..786afeed5da 100644 --- a/source/blender/python/mathutils/mathutils_Color.h +++ b/source/blender/python/mathutils/mathutils_Color.h @@ -32,8 +32,8 @@ */ -#ifndef MATHUTILS_COLOR_H -#define MATHUTILS_COLOR_H +#ifndef __MATHUTILS_COLOR_H__ +#define __MATHUTILS_COLOR_H__ extern PyTypeObject color_Type; #define ColorObject_Check(_v) PyObject_TypeCheck((_v), &color_Type) @@ -51,4 +51,4 @@ blender (stored in blend_data). This is an either/or struct not both*/ PyObject *Color_CreatePyObject( float *col, int type, PyTypeObject *base_type); PyObject *Color_CreatePyObject_cb(PyObject *cb_user, int cb_type, int cb_subtype); -#endif /* MATHUTILS_COLOR_H */ +#endif /* __MATHUTILS_COLOR_H__ */ diff --git a/source/blender/python/mathutils/mathutils_Euler.h b/source/blender/python/mathutils/mathutils_Euler.h index c42b0daffbc..3656aa14461 100644 --- a/source/blender/python/mathutils/mathutils_Euler.h +++ b/source/blender/python/mathutils/mathutils_Euler.h @@ -32,8 +32,8 @@ */ -#ifndef MATHUTILS_EULER_H -#define MATHUTILS_EULER_H +#ifndef __MATHUTILS_EULER_H__ +#define __MATHUTILS_EULER_H__ extern PyTypeObject euler_Type; #define EulerObject_Check(_v) PyObject_TypeCheck((_v), &euler_Type) @@ -56,4 +56,4 @@ PyObject *Euler_CreatePyObject_cb(PyObject *cb_user, short order, int cb_type, i short euler_order_from_string(const char *str, const char *error_prefix); -#endif /* MATHUTILS_EULER_H */ +#endif /* __MATHUTILS_EULER_H__ */ diff --git a/source/blender/python/mathutils/mathutils_Matrix.h b/source/blender/python/mathutils/mathutils_Matrix.h index 2ecbc55da35..e8719e947ec 100644 --- a/source/blender/python/mathutils/mathutils_Matrix.h +++ b/source/blender/python/mathutils/mathutils_Matrix.h @@ -31,8 +31,8 @@ */ -#ifndef MATHUTILS_MATRIX_H -#define MATHUTILS_MATRIX_H +#ifndef __MATHUTILS_MATRIX_H__ +#define __MATHUTILS_MATRIX_H__ extern PyTypeObject matrix_Type; extern PyTypeObject matrix_access_Type; @@ -83,4 +83,4 @@ extern struct Mathutils_Callback mathutils_matrix_translation_cb; void matrix_as_3x3(float mat[3][3], MatrixObject *self); -#endif /* MATHUTILS_MATRIX_H */ +#endif /* __MATHUTILS_MATRIX_H__ */ diff --git a/source/blender/python/mathutils/mathutils_Quaternion.h b/source/blender/python/mathutils/mathutils_Quaternion.h index edd5ec55312..8e91f26b08f 100644 --- a/source/blender/python/mathutils/mathutils_Quaternion.h +++ b/source/blender/python/mathutils/mathutils_Quaternion.h @@ -32,8 +32,8 @@ */ -#ifndef MATHUTILS_QUAT_H -#define MATHUTILS_QUAT_H +#ifndef __MATHUTILS_QUATERNION_H__ +#define __MATHUTILS_QUATERNION_H__ extern PyTypeObject quaternion_Type; #define QuaternionObject_Check(_v) PyObject_TypeCheck((_v), &quaternion_Type) @@ -51,4 +51,4 @@ blender (stored in blend_data). This is an either/or struct not both*/ PyObject *Quaternion_CreatePyObject( float *quat, int type, PyTypeObject *base_type); PyObject *Quaternion_CreatePyObject_cb(PyObject *cb_user, int cb_type, int cb_subtype); -#endif /* MATHUTILS_QUAT_H */ +#endif /* __MATHUTILS_QUATERNION_H__ */ diff --git a/source/blender/python/mathutils/mathutils_Vector.h b/source/blender/python/mathutils/mathutils_Vector.h index 4e10e795602..88de991ba43 100644 --- a/source/blender/python/mathutils/mathutils_Vector.h +++ b/source/blender/python/mathutils/mathutils_Vector.h @@ -32,8 +32,8 @@ */ -#ifndef MATHUTILS_VECTOR_H -#define MATHUTILS_VECTOR_H +#ifndef __MATHUTILS_VECTOR_H__ +#define __MATHUTILS_VECTOR_H__ extern PyTypeObject vector_Type; #define VectorObject_Check(_v) PyObject_TypeCheck((_v), &vector_Type) @@ -49,4 +49,4 @@ PyObject *Vector_CreatePyObject(float *vec, const int size, const int type, PyTy PyObject *Vector_CreatePyObject_cb(PyObject *user, int size, int callback_type, int subtype); PyObject *Vector_CreatePyObject_alloc(float *vec, const int size, PyTypeObject *base_type); -#endif /* MATHUTILS_VECTOR_H */ +#endif /* __MATHUTILS_VECTOR_H__ */ diff --git a/source/blender/python/mathutils/mathutils_geometry.h b/source/blender/python/mathutils/mathutils_geometry.h index 1b339bdaf00..ac89698c12e 100644 --- a/source/blender/python/mathutils/mathutils_geometry.h +++ b/source/blender/python/mathutils/mathutils_geometry.h @@ -32,11 +32,11 @@ /*Include this file for access to vector, quat, matrix, euler, etc...*/ -#ifndef MATHUTILS_GEOMETRY_H -#define MATHUTILS_GEOMETRY_H +#ifndef __MATHUTILS_GEOMETRY_H__ +#define __MATHUTILS_GEOMETRY_H__ #include "mathutils.h" PyMODINIT_FUNC PyInit_mathutils_geometry(void); -#endif /* MATHUTILS_GEOMETRY_H */ +#endif /* __MATHUTILS_GEOMETRY_H__ */ diff --git a/source/blender/python/mathutils/mathutils_noise.h b/source/blender/python/mathutils/mathutils_noise.h index 6a6527588ef..f4bec88e59a 100644 --- a/source/blender/python/mathutils/mathutils_noise.h +++ b/source/blender/python/mathutils/mathutils_noise.h @@ -24,8 +24,8 @@ * \ingroup mathutils */ -#ifndef MATHUTILS_NOISE_H -#define MATHUTILS_NOISE_H +#ifndef __MATHUTILS_NOISE_H__ +#define __MATHUTILS_NOISE_H__ #include "mathutils.h" @@ -33,4 +33,4 @@ PyMODINIT_FUNC PyInit_mathutils_noise(void); PyMODINIT_FUNC PyInit_mathutils_noise_types(void); PyMODINIT_FUNC PyInit_mathutils_noise_metrics(void); -#endif // MATHUTILS_NOISE_H +#endif // __MATHUTILS_NOISE_H__ diff --git a/source/blender/quicktime/quicktime_import.h b/source/blender/quicktime/quicktime_import.h index d095b8353ca..e6f3c821b85 100644 --- a/source/blender/quicktime/quicktime_import.h +++ b/source/blender/quicktime/quicktime_import.h @@ -34,8 +34,8 @@ -#ifndef __QUICKTIME_IMP_H__ -#define __QUICKTIME_IMP_H__ +#ifndef __QUICKTIME_IMPORT_H__ +#define __QUICKTIME_IMPORT_H__ #define __AIFF__ @@ -76,4 +76,4 @@ ImBuf *qtime_fetchibuf (struct anim *anim, int position); int imb_is_a_quicktime (char *name); ImBuf *imb_quicktime_decode(unsigned char *mem, int size, int flags); -#endif // __QUICKTIME_IMP_H__ +#endif // __QUICKTIME_IMPORT_H__ diff --git a/source/blender/render/extern/include/RE_engine.h b/source/blender/render/extern/include/RE_engine.h index 02a94e56462..5e4a5e05a56 100644 --- a/source/blender/render/extern/include/RE_engine.h +++ b/source/blender/render/extern/include/RE_engine.h @@ -29,8 +29,8 @@ * \ingroup render */ -#ifndef RE_ENGINE_H -#define RE_ENGINE_H +#ifndef __RE_ENGINE_H__ +#define __RE_ENGINE_H__ #include "DNA_listBase.h" #include "RNA_types.h" @@ -116,5 +116,5 @@ void RE_engines_exit(void); RenderEngineType *RE_engines_find(const char *idname); -#endif /* RE_ENGINE_H */ +#endif /* __RE_ENGINE_H__ */ diff --git a/source/blender/render/extern/include/RE_pipeline.h b/source/blender/render/extern/include/RE_pipeline.h index cc4136fcccc..a670446189e 100644 --- a/source/blender/render/extern/include/RE_pipeline.h +++ b/source/blender/render/extern/include/RE_pipeline.h @@ -29,8 +29,8 @@ * \ingroup render */ -#ifndef RE_PIPELINE_H -#define RE_PIPELINE_H +#ifndef __RE_PIPELINE_H__ +#define __RE_PIPELINE_H__ #include "DNA_listBase.h" #include "DNA_vec_types.h" @@ -272,5 +272,5 @@ struct Scene *RE_GetScene(struct Render *re); int RE_is_rendering_allowed(struct Scene *scene, struct Object *camera_override, struct ReportList *reports); -#endif /* RE_PIPELINE_H */ +#endif /* __RE_PIPELINE_H__ */ diff --git a/source/blender/render/extern/include/RE_render_ext.h b/source/blender/render/extern/include/RE_render_ext.h index f93e3c9fd20..054aaccb177 100644 --- a/source/blender/render/extern/include/RE_render_ext.h +++ b/source/blender/render/extern/include/RE_render_ext.h @@ -29,8 +29,8 @@ */ -#ifndef RE_RENDER_EXT_H -#define RE_RENDER_EXT_H +#ifndef __RE_RENDER_EXT_H__ +#define __RE_RENDER_EXT_H__ /* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */ /* this include is for non-render pipeline exports (still old cruft here) */ @@ -70,5 +70,5 @@ void RE_free_sample_material(struct Material *mat); void RE_sample_material_color(struct Material *mat, float color[3], float *alpha, const float volume_co[3], const float surface_co[3], int face_index, short hit_quad, struct DerivedMesh *orcoDm, struct Object *ob); -#endif /* RE_RENDER_EXT_H */ +#endif /* __RE_RENDER_EXT_H__ */ diff --git a/source/blender/render/extern/include/RE_shader_ext.h b/source/blender/render/extern/include/RE_shader_ext.h index 2f585f91d44..cf9e6f7966f 100644 --- a/source/blender/render/extern/include/RE_shader_ext.h +++ b/source/blender/render/extern/include/RE_shader_ext.h @@ -29,8 +29,8 @@ */ -#ifndef RE_SHADER_EXT_H -#define RE_SHADER_EXT_H +#ifndef __RE_SHADER_EXT_H__ +#define __RE_SHADER_EXT_H__ /* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */ /* this include is for shading and texture exports */ @@ -214,4 +214,4 @@ void RE_bake_ibuf_filter(struct ImBuf *ibuf, char *mask, const int filter); #define BAKE_RESULT_NO_OBJECTS 1 #define BAKE_RESULT_FEEDBACK_LOOP 2 -#endif /* RE_SHADER_EXT_H */ +#endif /* __RE_SHADER_EXT_H__ */ diff --git a/source/blender/render/intern/include/envmap.h b/source/blender/render/intern/include/envmap.h index 0133c08a6a7..24138884cd2 100644 --- a/source/blender/render/intern/include/envmap.h +++ b/source/blender/render/intern/include/envmap.h @@ -33,8 +33,8 @@ */ -#ifndef ENVMAP_EXT_H -#define ENVMAP_EXT_H +#ifndef __ENVMAP_H__ +#define __ENVMAP_H__ /** * Make environment maps for all objects in the scene that have an @@ -48,5 +48,5 @@ struct TexResult; void make_envmaps(struct Render *re); int envmaptex(struct Tex *tex, float *texvec, float *dxt, float *dyt, int osatex, struct TexResult *texres); -#endif /* ENVMAP_EXT_H */ +#endif /* __ENVMAP_H__ */ diff --git a/source/blender/render/intern/include/gammaCorrectionTables.h b/source/blender/render/intern/include/gammaCorrectionTables.h index 29ceef82c09..b41fc01eaaf 100644 --- a/source/blender/render/intern/include/gammaCorrectionTables.h +++ b/source/blender/render/intern/include/gammaCorrectionTables.h @@ -33,8 +33,8 @@ */ -#ifndef GAMMACORRECTIONTABLES_H -#define GAMMACORRECTIONTABLES_H +#ifndef __GAMMACORRECTIONTABLES_H__ +#define __GAMMACORRECTIONTABLES_H__ /** * Initialise the gamma lookup tables diff --git a/source/blender/render/intern/include/initrender.h b/source/blender/render/intern/include/initrender.h index 17fa312a6cd..e4fb338771e 100644 --- a/source/blender/render/intern/include/initrender.h +++ b/source/blender/render/intern/include/initrender.h @@ -33,8 +33,8 @@ */ -#ifndef INITRENDER_H -#define INITRENDER_H +#ifndef __INITRENDER_H__ +#define __INITRENDER_H__ struct Object; @@ -49,5 +49,5 @@ void initparts(Render *re); void freeparts(Render *re); -#endif /* INITRENDER_H */ +#endif /* __INITRENDER_H__ */ diff --git a/source/blender/render/intern/include/occlusion.h b/source/blender/render/intern/include/occlusion.h index 15581c8d7d4..78a1f8a1175 100644 --- a/source/blender/render/intern/include/occlusion.h +++ b/source/blender/render/intern/include/occlusion.h @@ -31,8 +31,8 @@ */ -#ifndef OCCLUSION_H -#define OCCLUSION_H +#ifndef __OCCLUSION_H__ +#define __OCCLUSION_H__ struct Render; struct ShadeInput; diff --git a/source/blender/render/intern/include/pixelblending.h b/source/blender/render/intern/include/pixelblending.h index 87a5ed07747..aa2698716e9 100644 --- a/source/blender/render/intern/include/pixelblending.h +++ b/source/blender/render/intern/include/pixelblending.h @@ -28,8 +28,8 @@ */ -#ifndef PIXELBLENDING_EXT_H -#define PIXELBLENDING_EXT_H +#ifndef __PIXELBLENDING_H__ +#define __PIXELBLENDING_H__ /** @@ -69,5 +69,5 @@ void addalphaUnderGammaFloat(float *doel, float *bron); -#endif /* PIXELBLENDING_EXT_H */ +#endif /* __PIXELBLENDING_H__ */ diff --git a/source/blender/render/intern/include/pixelshading.h b/source/blender/render/intern/include/pixelshading.h index 6f4b373f8d4..17032283540 100644 --- a/source/blender/render/intern/include/pixelshading.h +++ b/source/blender/render/intern/include/pixelshading.h @@ -34,8 +34,8 @@ */ -#ifndef PIXELSHADING_H -#define PIXELSHADING_H +#ifndef __PIXELSHADING_H__ +#define __PIXELSHADING_H__ /** * Render the pixel at (x,y) for object ap. Apply the jitter mask. diff --git a/source/blender/render/intern/include/pointdensity.h b/source/blender/render/intern/include/pointdensity.h index 7ceb24e9ece..cc8fabda49c 100644 --- a/source/blender/render/intern/include/pointdensity.h +++ b/source/blender/render/intern/include/pointdensity.h @@ -30,8 +30,8 @@ */ -#ifndef POINTDENSITY_H -#define POINTDENSITY_H +#ifndef __POINTDENSITY_H__ +#define __POINTDENSITY_H__ /** * Make point density kd-trees for all point density textures in the scene @@ -45,5 +45,5 @@ void make_pointdensities(struct Render *re); void free_pointdensities(struct Render *re); int pointdensitytex(struct Tex *tex, float *texvec, struct TexResult *texres); -#endif /* POINTDENSITY_H */ +#endif /* __POINTDENSITY_H__ */ diff --git a/source/blender/render/intern/include/raycounter.h b/source/blender/render/intern/include/raycounter.h index 20348f8d418..075a6337435 100644 --- a/source/blender/render/intern/include/raycounter.h +++ b/source/blender/render/intern/include/raycounter.h @@ -30,8 +30,8 @@ */ -#ifndef RE_RAYCOUNTER_H -#define RE_RAYCOUNTER_H +#ifndef __RAYCOUNTER_H__ +#define __RAYCOUNTER_H__ //#define RE_RAYCOUNTER /* enable counters per ray, useful for measuring raytrace structures performance */ diff --git a/source/blender/render/intern/include/rayintersection.h b/source/blender/render/intern/include/rayintersection.h index 2c68421a8ee..934bf92db8f 100644 --- a/source/blender/render/intern/include/rayintersection.h +++ b/source/blender/render/intern/include/rayintersection.h @@ -31,8 +31,8 @@ */ -#ifndef __RENDER_RAYINTERSECTION_H__ -#define __RENDER_RAYINTERSECTION_H__ +#ifndef __RAYINTERSECTION_H__ +#define __RAYINTERSECTION_H__ #ifdef __cplusplus extern "C" { @@ -123,5 +123,5 @@ typedef struct Isect { } #endif -#endif /* __RENDER_RAYINTERSECTION_H__ */ +#endif /* __RAYINTERSECTION_H__ */ diff --git a/source/blender/render/intern/include/rayobject.h b/source/blender/render/intern/include/rayobject.h index 3ca3bd63428..c93c4e1da63 100644 --- a/source/blender/render/intern/include/rayobject.h +++ b/source/blender/render/intern/include/rayobject.h @@ -30,8 +30,8 @@ */ -#ifndef RE_RAYOBJECT_H -#define RE_RAYOBJECT_H +#ifndef __RAYOBJECT_H__ +#define __RAYOBJECT_H__ #ifdef __cplusplus extern "C" { diff --git a/source/blender/render/intern/include/render_result.h b/source/blender/render/intern/include/render_result.h index 93cbc6fe9c9..3d73ee1e912 100644 --- a/source/blender/render/intern/include/render_result.h +++ b/source/blender/render/intern/include/render_result.h @@ -29,8 +29,8 @@ * \ingroup render */ -#ifndef RENDER_RESULT_H -#define RENDER_RESULT_H +#ifndef __RENDER_RESULT_H__ +#define __RENDER_RESULT_H__ #define PASS_VECTOR_MAX 10000.0f @@ -90,5 +90,5 @@ void render_result_rect_fill_zero(struct RenderResult *rr); void render_result_rect_get_pixels(struct RenderResult *rr, struct RenderData *rd, unsigned int *rect, int rectx, int recty); -#endif /* RENDER_RESULT_H */ +#endif /* __RENDER_RESULT_H__ */ diff --git a/source/blender/render/intern/include/render_types.h b/source/blender/render/intern/include/render_types.h index f414be60b0a..886a6ce74f2 100644 --- a/source/blender/render/intern/include/render_types.h +++ b/source/blender/render/intern/include/render_types.h @@ -28,8 +28,8 @@ */ -#ifndef RENDER_TYPES_H -#define RENDER_TYPES_H +#ifndef __RENDER_TYPES_H__ +#define __RENDER_TYPES_H__ /* ------------------------------------------------------------------------- */ /* exposed internal in render module only! */ @@ -628,5 +628,5 @@ typedef struct LampRen { #define R_ENV_TRANSFORMED 2 #define R_TRANSFORMED (1|2) -#endif /* RENDER_TYPES_H */ +#endif /* __RENDER_TYPES_H__ */ diff --git a/source/blender/render/intern/include/rendercore.h b/source/blender/render/intern/include/rendercore.h index 08f73ccbe0d..496e2bb50a9 100644 --- a/source/blender/render/intern/include/rendercore.h +++ b/source/blender/render/intern/include/rendercore.h @@ -33,8 +33,8 @@ */ -#ifndef RENDERCORE_H -#define RENDERCORE_H +#ifndef __RENDERCORE_H__ +#define __RENDERCORE_H__ #include "render_types.h" diff --git a/source/blender/render/intern/include/renderdatabase.h b/source/blender/render/intern/include/renderdatabase.h index ebbbfb03f55..d11732f7da1 100644 --- a/source/blender/render/intern/include/renderdatabase.h +++ b/source/blender/render/intern/include/renderdatabase.h @@ -30,8 +30,8 @@ */ -#ifndef RENDERDATABASE_H -#define RENDERDATABASE_H +#ifndef __RENDERDATABASE_H__ +#define __RENDERDATABASE_H__ struct Object; struct VlakRen; @@ -144,5 +144,5 @@ void init_render_world(Render *re); void RE_Database_FromScene_Vectors(Render *re, struct Main *bmain, struct Scene *sce, unsigned int lay); -#endif /* RENDERDATABASE_H */ +#endif /* __RENDERDATABASE_H__ */ diff --git a/source/blender/render/intern/include/renderpipeline.h b/source/blender/render/intern/include/renderpipeline.h index 9a87cf84012..e713d4880d6 100644 --- a/source/blender/render/intern/include/renderpipeline.h +++ b/source/blender/render/intern/include/renderpipeline.h @@ -30,8 +30,8 @@ */ -#ifndef PIPELINE_H -#define PIPELINE_H +#ifndef __RENDERPIPELINE_H__ +#define __RENDERPIPELINE_H__ struct Render; struct RenderLayer; @@ -40,5 +40,5 @@ struct RenderResult; struct RenderLayer *render_get_active_layer(struct Render *re, struct RenderResult *rr); float panorama_pixel_rot(struct Render *re); -#endif /* PIPELINE_H */ +#endif /* __RENDERPIPELINE_H__ */ diff --git a/source/blender/render/intern/include/shadbuf.h b/source/blender/render/intern/include/shadbuf.h index a37af5abb4a..ddcfc555f7a 100644 --- a/source/blender/render/intern/include/shadbuf.h +++ b/source/blender/render/intern/include/shadbuf.h @@ -33,8 +33,8 @@ */ -#ifndef SHADBUF_EXT_H -#define SHADBUF_EXT_H +#ifndef __SHADBUF_H__ +#define __SHADBUF_H__ #include "render_types.h" @@ -114,5 +114,5 @@ typedef struct ISBData { int minx, miny, rectx, recty; /* copy from part disprect */ } ISBData; -#endif /* SHADBUF_EXT_H */ +#endif /* __SHADBUF_H__ */ diff --git a/source/blender/render/intern/include/sss.h b/source/blender/render/intern/include/sss.h index 4e110da25dd..6a179d2f428 100644 --- a/source/blender/render/intern/include/sss.h +++ b/source/blender/render/intern/include/sss.h @@ -30,8 +30,8 @@ */ -#ifndef SSS_H -#define SSS_H +#ifndef __SSS_H__ +#define __SSS_H__ /* Generic multiple scattering API */ @@ -64,5 +64,5 @@ void free_sss(struct Render *re); int sample_sss(struct Render *re, struct Material *mat, float *co, float *col); int sss_pass_done(struct Render *re, struct Material *mat); -#endif /*SSS_H*/ +#endif /*__SSS_H__*/ diff --git a/source/blender/render/intern/include/strand.h b/source/blender/render/intern/include/strand.h index 1cf34c7ad50..4403f68c982 100644 --- a/source/blender/render/intern/include/strand.h +++ b/source/blender/render/intern/include/strand.h @@ -30,8 +30,8 @@ */ -#ifndef STRAND_H -#define STRAND_H +#ifndef __STRAND_H__ +#define __STRAND_H__ struct StrandVert; struct StrandRen; diff --git a/source/blender/render/intern/include/sunsky.h b/source/blender/render/intern/include/sunsky.h index 8c0cbfd18e7..5076a1541af 100644 --- a/source/blender/render/intern/include/sunsky.h +++ b/source/blender/render/intern/include/sunsky.h @@ -29,8 +29,8 @@ * and example code from Brian Smits, another author of that paper in * http://www.cs.utah.edu/vissim/papers/sunsky/code/ * */ -#ifndef SUNSKY_H_ -#define SUNSKY_H_ +#ifndef __SUNSKY_H__ +#define __SUNSKY_H__ #define SPECTRUM_MAX_COMPONENTS 100 #define SPECTRUM_START 350.0 @@ -146,4 +146,4 @@ void AtmospherePixleShader( struct SunSky* sunSky, float view[3], float s, float * */ void ClipColor(float c[3]); -#endif /*SUNSKY_H_*/ +#endif /*__SUNSKY_H__*/ diff --git a/source/blender/render/intern/include/texture.h b/source/blender/render/intern/include/texture.h index a8d13077680..e5013ace1f0 100644 --- a/source/blender/render/intern/include/texture.h +++ b/source/blender/render/intern/include/texture.h @@ -33,8 +33,8 @@ */ -#ifndef TEXTURE_EXT_H -#define TEXTURE_EXT_H +#ifndef __TEXTURE_H__ +#define __TEXTURE_H__ #define BRICONT \ texres->tin= (texres->tin-0.5f) * tex->contrast+tex->bright-0.5f; \ @@ -85,5 +85,5 @@ int imagewraposa(struct Tex *tex, struct Image *ima, struct ImBuf *ibuf, const f int imagewrap(struct Tex *tex, struct Image *ima, struct ImBuf *ibuf, const float texvec[3], struct TexResult *texres); void image_sample(struct Image *ima, float fx, float fy, float dx, float dy, float *result); -#endif /* TEXTURE_EXT_H */ +#endif /* __TEXTURE_H__ */ diff --git a/source/blender/render/intern/include/voxeldata.h b/source/blender/render/intern/include/voxeldata.h index aa4a9fdb845..3d6280c5c28 100644 --- a/source/blender/render/intern/include/voxeldata.h +++ b/source/blender/render/intern/include/voxeldata.h @@ -30,8 +30,8 @@ */ -#ifndef VOXELDATA_H -#define VOXELDATA_H +#ifndef __VOXELDATA_H__ +#define __VOXELDATA_H__ struct Render; struct TexResult; @@ -47,4 +47,4 @@ void make_voxeldata(struct Render *re); void free_voxeldata(struct Render *re); int voxeldatatex(struct Tex *tex, const float texvec[3], struct TexResult *texres); -#endif /* VOXELDATA_H */ +#endif /* __VOXELDATA_H__ */ diff --git a/source/blender/render/intern/include/zbuf.h b/source/blender/render/intern/include/zbuf.h index c467c31b5a6..518b2f846d3 100644 --- a/source/blender/render/intern/include/zbuf.h +++ b/source/blender/render/intern/include/zbuf.h @@ -30,8 +30,8 @@ */ -#ifndef ZBUF_H -#define ZBUF_H +#ifndef __ZBUF_H__ +#define __ZBUF_H__ struct RenderPart; struct RenderLayer; diff --git a/source/blender/render/intern/raytrace/bvh.h b/source/blender/render/intern/raytrace/bvh.h index cdc905fbf04..b2ec1552f04 100644 --- a/source/blender/render/intern/raytrace/bvh.h +++ b/source/blender/render/intern/raytrace/bvh.h @@ -46,8 +46,8 @@ #include #endif -#ifndef RE_RAYTRACE_BVH_H -#define RE_RAYTRACE_BVH_H +#ifndef __BVH_H__ +#define __BVH_H__ #ifdef __SSE__ inline int test_bb_group4(__m128 *bb_group, const Isect *isec) diff --git a/source/blender/render/intern/raytrace/rayobject_hint.h b/source/blender/render/intern/raytrace/rayobject_hint.h index e13a8e68b27..9e505b68101 100644 --- a/source/blender/render/intern/raytrace/rayobject_hint.h +++ b/source/blender/render/intern/raytrace/rayobject_hint.h @@ -30,8 +30,8 @@ */ -#ifndef RE_RAYTRACE_RAYOBJECT_HINT_H -#define RE_RAYTRACE_RAYOBJECT_HINT_H +#ifndef __RAYOBJECT_HINT_H__ +#define __RAYOBJECT_HINT_H__ #define HINT_RECURSE 1 #define HINT_ACCEPT 0 diff --git a/source/blender/render/intern/raytrace/rayobject_internal.h b/source/blender/render/intern/raytrace/rayobject_internal.h index 458c892d410..8e39b687b34 100644 --- a/source/blender/render/intern/raytrace/rayobject_internal.h +++ b/source/blender/render/intern/raytrace/rayobject_internal.h @@ -2,8 +2,8 @@ * \ingroup render */ -#ifndef RE_RAYOBJECT_INTERNAL_H -#define RE_RAYOBJECT_INTERNAL_H +#ifndef __RAYOBJECT_INTERNAL_H__ +#define __RAYOBJECT_INTERNAL_H__ #ifdef __cplusplus extern "C" { diff --git a/source/blender/render/intern/raytrace/rayobject_rtbuild.h b/source/blender/render/intern/raytrace/rayobject_rtbuild.h index c4088981d92..f6e9aabf43d 100644 --- a/source/blender/render/intern/raytrace/rayobject_rtbuild.h +++ b/source/blender/render/intern/raytrace/rayobject_rtbuild.h @@ -29,8 +29,8 @@ * \ingroup render */ -#ifndef RE_RAYOBJECT_RTBUILD_H -#define RE_RAYOBJECT_RTBUILD_H +#ifndef __RAYOBJECT_RTBUILD_H__ +#define __RAYOBJECT_RTBUILD_H__ #ifdef __cplusplus extern "C" { diff --git a/source/blender/render/intern/raytrace/svbvh.h b/source/blender/render/intern/raytrace/svbvh.h index 2f49531ff34..8fb2db63df6 100644 --- a/source/blender/render/intern/raytrace/svbvh.h +++ b/source/blender/render/intern/raytrace/svbvh.h @@ -32,8 +32,8 @@ #ifdef __SSE__ -#ifndef RE_RAYTRACE_SVBVH_H -#define RE_RAYTRACE_SVBVH_H +#ifndef __SVBVH_H__ +#define __SVBVH_H__ #include "bvh.h" #include "BLI_memarena.h" diff --git a/source/blender/windowmanager/WM_api.h b/source/blender/windowmanager/WM_api.h index 132b57696e1..1be94d9c634 100644 --- a/source/blender/windowmanager/WM_api.h +++ b/source/blender/windowmanager/WM_api.h @@ -23,8 +23,8 @@ * * ***** END GPL LICENSE BLOCK ***** */ -#ifndef WM_API_H -#define WM_API_H +#ifndef __WM_API_H__ +#define __WM_API_H__ /** \file WM_api.h * \ingroup wm @@ -344,5 +344,5 @@ int write_crash_blend(void); } #endif -#endif /* WM_API_H */ +#endif /* __WM_API_H__ */ diff --git a/source/blender/windowmanager/WM_keymap.h b/source/blender/windowmanager/WM_keymap.h index f254358e3cf..db448397065 100644 --- a/source/blender/windowmanager/WM_keymap.h +++ b/source/blender/windowmanager/WM_keymap.h @@ -23,8 +23,8 @@ * ***** END GPL LICENSE BLOCK ***** */ -#ifndef WM_KEYMAP_H -#define WM_KEYMAP_H +#ifndef __WM_KEYMAP_H__ +#define __WM_KEYMAP_H__ /** \file WM_keymap.h * \ingroup wm @@ -98,5 +98,5 @@ char *WM_key_event_operator_string(const struct bContext *C, const char *opname } #endif -#endif /* WM_KEYMAP_H */ +#endif /* __WM_KEYMAP_H__ */ diff --git a/source/blender/windowmanager/WM_types.h b/source/blender/windowmanager/WM_types.h index 357eaf2633b..3a62faeab8a 100644 --- a/source/blender/windowmanager/WM_types.h +++ b/source/blender/windowmanager/WM_types.h @@ -28,8 +28,8 @@ * \ingroup wm */ -#ifndef WM_TYPES_H -#define WM_TYPES_H +#ifndef __WM_TYPES_H__ +#define __WM_TYPES_H__ #ifdef __cplusplus extern "C" { @@ -569,5 +569,5 @@ typedef struct RecentFile { } #endif -#endif /* WM_TYPES_H */ +#endif /* __WM_TYPES_H__ */ diff --git a/source/blender/windowmanager/wm.h b/source/blender/windowmanager/wm.h index d9dcb9ea10c..d1081f5450c 100644 --- a/source/blender/windowmanager/wm.h +++ b/source/blender/windowmanager/wm.h @@ -28,8 +28,8 @@ * \ingroup wm */ -#ifndef WM_H -#define WM_H +#ifndef __WM_H__ +#define __WM_H__ struct wmWindow; struct ReportList; @@ -85,5 +85,5 @@ void wm_autosave_location(char *filepath); extern int circle_select_size; #endif -#endif /* WM_H */ +#endif /* __WM_H__ */ diff --git a/source/blender/windowmanager/wm_cursors.h b/source/blender/windowmanager/wm_cursors.h index c179483eff3..f41b15aadcf 100644 --- a/source/blender/windowmanager/wm_cursors.h +++ b/source/blender/windowmanager/wm_cursors.h @@ -32,8 +32,8 @@ -#ifndef WM_CURSORS_H -#define WM_CURSORS_H +#ifndef __WM_CURSORS_H__ +#define __WM_CURSORS_H__ void wm_init_cursor_data(void); @@ -120,5 +120,5 @@ struct wmEvent; int wm_cursor_arrow_move(struct wmWindow *win, struct wmEvent *event); -#endif /* WM_CURSORS_H */ +#endif /* __WM_CURSORS_H__ */ diff --git a/source/blender/windowmanager/wm_draw.h b/source/blender/windowmanager/wm_draw.h index 9e22fc8c412..3d72fe17c79 100644 --- a/source/blender/windowmanager/wm_draw.h +++ b/source/blender/windowmanager/wm_draw.h @@ -29,8 +29,8 @@ */ -#ifndef WM_DRAW_H -#define WM_DRAW_H +#ifndef __WM_DRAW_H__ +#define __WM_DRAW_H__ struct bContext; struct wmWindow; @@ -43,5 +43,5 @@ void wm_draw_region_clear (struct wmWindow *win, struct ARegion *ar); void wm_tag_redraw_overlay (struct wmWindow *win, struct ARegion *ar); -#endif /* WM_DRAW_H */ +#endif /* __WM_DRAW_H__ */ diff --git a/source/blender/windowmanager/wm_event_system.h b/source/blender/windowmanager/wm_event_system.h index 9c0d2ae3eff..a33d37ac50e 100644 --- a/source/blender/windowmanager/wm_event_system.h +++ b/source/blender/windowmanager/wm_event_system.h @@ -28,8 +28,8 @@ * \ingroup wm */ -#ifndef WM_EVENT_SYSTEM_H -#define WM_EVENT_SYSTEM_H +#ifndef __WM_EVENT_SYSTEM_H__ +#define __WM_EVENT_SYSTEM_H__ /* return value of handler-operator call */ #define WM_HANDLER_CONTINUE 0 @@ -107,5 +107,5 @@ void wm_dropbox_free(void); void wm_drags_check_ops(bContext *C, wmEvent *event); void wm_drags_draw(bContext *C, wmWindow *win, rcti *rect); -#endif /* WM_EVENT_SYSTEM_H */ +#endif /* __WM_EVENT_SYSTEM_H__ */ diff --git a/source/blender/windowmanager/wm_event_types.h b/source/blender/windowmanager/wm_event_types.h index 47081b6a6a1..170413c13b0 100644 --- a/source/blender/windowmanager/wm_event_types.h +++ b/source/blender/windowmanager/wm_event_types.h @@ -35,8 +35,8 @@ */ -#ifndef WM_EVENT_TYPES_H -#define WM_EVENT_TYPES_H +#ifndef __WM_EVENT_TYPES_H__ +#define __WM_EVENT_TYPES_H__ /* customdata type */ #define EVT_DATA_TABLET 1 @@ -365,5 +365,5 @@ enum { #define GESTURE_MODAL_OUT 10 -#endif /* WM_EVENT_TYPES_H */ +#endif /* __WM_EVENT_TYPES_H__ */ diff --git a/source/blender/windowmanager/wm_files.h b/source/blender/windowmanager/wm_files.h index 64f05e7c581..f373530b5e6 100644 --- a/source/blender/windowmanager/wm_files.h +++ b/source/blender/windowmanager/wm_files.h @@ -28,10 +28,10 @@ * \ingroup wm */ -#ifndef WM_FILES_H -#define WM_FILES_H +#ifndef __WM_FILES_H__ +#define __WM_FILES_H__ void WM_read_history(void); -#endif /* WM_FILES_H */ +#endif /* __WM_FILES_H__ */ diff --git a/source/blender/windowmanager/wm_subwindow.h b/source/blender/windowmanager/wm_subwindow.h index 6fecefe5479..5017977952b 100644 --- a/source/blender/windowmanager/wm_subwindow.h +++ b/source/blender/windowmanager/wm_subwindow.h @@ -29,8 +29,8 @@ */ -#ifndef WM_SUBWINDOW_H -#define WM_SUBWINDOW_H +#ifndef __WM_SUBWINDOW_H__ +#define __WM_SUBWINDOW_H__ /* *************** internal api ************** */ @@ -50,5 +50,5 @@ void wm_subwindow_getmatrix(wmWindow *win, int swinid, float mat[][4]); unsigned int index_to_framebuffer(int index); -#endif /* WM_SUBWINDOW_H */ +#endif /* __WM_SUBWINDOW_H__ */ diff --git a/source/blender/windowmanager/wm_window.h b/source/blender/windowmanager/wm_window.h index ec6d815cfc2..27eb4542877 100644 --- a/source/blender/windowmanager/wm_window.h +++ b/source/blender/windowmanager/wm_window.h @@ -29,8 +29,8 @@ */ -#ifndef WM_WINDOW_H -#define WM_WINDOW_H +#ifndef __WM_WINDOW_H__ +#define __WM_WINDOW_H__ struct bScreen; struct wmOperator; @@ -70,5 +70,5 @@ void wm_window_testbreak (void); int wm_window_duplicate_exec(bContext *C, struct wmOperator *op); int wm_window_fullscreen_toggle_exec(bContext *C, struct wmOperator *op); -#endif /* WM_WINDOW_H */ +#endif /* __WM_WINDOW_H__ */ -- cgit v1.2.3 From 61596d5bb365a96b4b19adf0ef72ec1ea47212aa Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 17 Feb 2012 19:21:47 +0000 Subject: patch [#30227] Various MSVC (32-bit) Warning and Typo Fixes made some small edits - removed changes to AVI reading since the data types are apart of the format spec. - absf -> abs for a double value in render code. --- source/blender/blenkernel/BKE_image.h | 4 ++-- source/blender/blenkernel/intern/pointcache.c | 2 +- source/blender/blenlib/BLI_utildefines.h | 11 +++++++---- source/blender/blenlib/intern/math_color_inline.c | 2 +- source/blender/blenloader/intern/readfile.c | 13 +++++++------ source/blender/editors/mesh/editmesh_lib.c | 2 +- source/blender/python/intern/bpy_app.c | 7 ------- source/blender/render/intern/source/shadeoutput.c | 2 +- 8 files changed, 20 insertions(+), 23 deletions(-) (limited to 'source/blender') diff --git a/source/blender/blenkernel/BKE_image.h b/source/blender/blenkernel/BKE_image.h index 5055372b68f..722ead80ad9 100644 --- a/source/blender/blenkernel/BKE_image.h +++ b/source/blender/blenkernel/BKE_image.h @@ -54,10 +54,10 @@ int BKE_alphatest_ibuf(struct ImBuf *ibuf); int BKE_write_ibuf_stamp(struct Scene *scene, struct Object *camera, struct ImBuf *ibuf, const char *name, struct ImageFormatData *imf); int BKE_write_ibuf(struct ImBuf *ibuf, const char *name, struct ImageFormatData *imf); int BKE_write_ibuf_as(struct ImBuf *ibuf, const char *name, struct ImageFormatData *imf, const short is_copy); -void BKE_makepicstring(char *string, const char *base, const char *relbase, int frame, char imtype, const short use_ext, const short use_frames); +void BKE_makepicstring(char *string, const char *base, const char *relbase, int frame, const char imtype, const short use_ext, const short use_frames); int BKE_add_image_extension(char *string, const char imtype); char BKE_ftype_to_imtype(const int ftype); -int BKE_imtype_to_ftype(char imtype); +int BKE_imtype_to_ftype(const char imtype); int BKE_imtype_is_movie(const char imtype); int BKE_imtype_supports_zbuf(const char imtype); diff --git a/source/blender/blenkernel/intern/pointcache.c b/source/blender/blenkernel/intern/pointcache.c index 6fd89db10e7..bf9ed8b17e3 100644 --- a/source/blender/blenkernel/intern/pointcache.c +++ b/source/blender/blenkernel/intern/pointcache.c @@ -2285,7 +2285,7 @@ void BKE_ptcache_id_time(PTCacheID *pid, Scene *scene, float cfra, int *startfra /* float offset; unused for now */ float time, nexttime; - /* TODO: this has to be sorter out once bsystem_time gets redone, */ + /* TODO: this has to be sorted out once bsystem_time gets redone, */ /* now caches can handle interpolating etc. too - jahka */ /* time handling for point cache: diff --git a/source/blender/blenlib/BLI_utildefines.h b/source/blender/blenlib/BLI_utildefines.h index 4a5ccd311c6..ef8a6015adb 100644 --- a/source/blender/blenlib/BLI_utildefines.h +++ b/source/blender/blenlib/BLI_utildefines.h @@ -225,10 +225,13 @@ #define GET_INT_FROM_POINTER(i) ((int)(intptr_t)(i)) /* Macro to convert a value to string in the preprocessor - * STRINGIFY_ARG: gives the defined name in the string - * STRINGIFY: gives the defined value. */ -#define STRINGIFY_ARG(x) #x -#define STRINGIFY(x) STRINGIFY_ARG(x) + * STRINGIFY_ARG: gives the argument as a string + * STRINGIFY_APPEND: appends any argument 'b' onto the string argument 'a', + * used by STRINGIFY because some preprocessors warn about zero arguments + * STRINGIFY: gives the argument's value as a string */ +#define STRINGIFY_ARG(x) "" #x +#define STRINGIFY_APPEND(a, b) "" a #b +#define STRINGIFY(x) STRINGIFY_APPEND("", x) /* useful for debugging */ #define AT __FILE__ ":" STRINGIFY(__LINE__) diff --git a/source/blender/blenlib/intern/math_color_inline.c b/source/blender/blenlib/intern/math_color_inline.c index 386452ed592..f8b986e799b 100644 --- a/source/blender/blenlib/intern/math_color_inline.c +++ b/source/blender/blenlib/intern/math_color_inline.c @@ -163,7 +163,7 @@ MINLINE void linearrgb_to_srgb_ushort4_predivide(unsigned short srgb[4], const f for(i=0; i<3; ++i) { t = linear[i] * inv_alpha; - srgb[i] = (t < 1.0f)? to_srgb_table_lookup(t) * alpha : FTOUSHORT(linearrgb_to_srgb(t) * alpha); + srgb[i] = (t < 1.0f)? (unsigned short)(to_srgb_table_lookup(t) * alpha) : FTOUSHORT(linearrgb_to_srgb(t) * alpha); } srgb[3] = FTOUSHORT(linear[3]); diff --git a/source/blender/blenloader/intern/readfile.c b/source/blender/blenloader/intern/readfile.c index fc8f8e2e2e1..a1378857c01 100644 --- a/source/blender/blenloader/intern/readfile.c +++ b/source/blender/blenloader/intern/readfile.c @@ -3838,7 +3838,7 @@ static void direct_link_mesh(FileData *fd, Mesh *mesh) if((fd->flags & FD_FLAGS_SWITCH_ENDIAN) && mesh->tface) { TFace *tf= mesh->tface; - unsigned int i; + int i; for (i=0; i< (mesh->totface); i++, tf++) { SWITCH_INT(tf->col[0]); @@ -7497,15 +7497,16 @@ static void do_versions_nodetree_convert_angle(bNodeTree *ntree) void do_versions_image_settings_2_60(Scene *sce) { - /* note: rd->subimtype is moved into indervidual settings now and no longer + /* note: rd->subimtype is moved into individual settings now and no longer * exists */ RenderData *rd= &sce->r; ImageFormatData *imf= &sce->r.im_format; - imf->imtype= rd->imtype; - imf->planes= rd->planes; - imf->compress= rd->quality; - imf->quality= rd->quality; + /* we know no data loss happens here, the old values were in char range */ + imf->imtype= (char)rd->imtype; + imf->planes= (char)rd->planes; + imf->compress= (char)rd->quality; + imf->quality= (char)rd->quality; /* default, was stored in multiple places, may override later */ imf->depth= R_IMF_CHAN_DEPTH_8; diff --git a/source/blender/editors/mesh/editmesh_lib.c b/source/blender/editors/mesh/editmesh_lib.c index 5ec147a742b..2895f5c34e6 100644 --- a/source/blender/editors/mesh/editmesh_lib.c +++ b/source/blender/editors/mesh/editmesh_lib.c @@ -2410,7 +2410,7 @@ UvElementMap *EM_make_uv_element_map(EditMesh *em, int selected, int do_islands) vmap->totalUVs = totuv; - for(efa = em->faces.first; efa; a++, efa = efa->next) { + for(efa = em->faces.first; efa; efa = efa->next) { if(!selected || ((!efa->h) && (efa->f & SELECT))) { nverts = (efa->v4)? 4: 3; diff --git a/source/blender/python/intern/bpy_app.c b/source/blender/python/intern/bpy_app.c index ea95c4ebd85..0641c220001 100644 --- a/source/blender/python/intern/bpy_app.c +++ b/source/blender/python/intern/bpy_app.c @@ -94,9 +94,6 @@ static PyStructSequence_Desc app_info_desc = { (sizeof(app_info_fields) / sizeof(PyStructSequence_Field)) - 1 }; -#define DO_EXPAND(VAL) VAL ## 1 -#define EXPAND(VAL) DO_EXPAND(VAL) - static PyObject *make_app_info(void) { PyObject *app_info; @@ -119,11 +116,7 @@ static PyObject *make_app_info(void) SetObjItem(PyUnicode_FromFormat("%d.%02d (sub %d)", BLENDER_VERSION / 100, BLENDER_VERSION % 100, BLENDER_SUBVERSION)); -#if defined(BLENDER_VERSION_CHAR) && EXPAND(BLENDER_VERSION_CHAR) != 1 SetStrItem(STRINGIFY(BLENDER_VERSION_CHAR)); -#else - SetStrItem(""); -#endif SetStrItem(STRINGIFY(BLENDER_VERSION_CYCLE)); SetStrItem(BLI_program_path()); SetObjItem(PyBool_FromLong(G.background)); diff --git a/source/blender/render/intern/source/shadeoutput.c b/source/blender/render/intern/source/shadeoutput.c index 9aac7aae53e..2f620bb96d4 100644 --- a/source/blender/render/intern/source/shadeoutput.c +++ b/source/blender/render/intern/source/shadeoutput.c @@ -206,7 +206,7 @@ static void spothalo(struct LampRen *lar, ShadeInput *shi, float *intens) maxz*= lar->sh_zfac; maxy= lar->imat[0][1]*p1[0]+lar->imat[1][1]*p1[1]+lar->imat[2][1]*p1[2]; - if( fabsf(nray[2]) < FLT_EPSILON ) use_yco= 1; + if( fabs(nray[2]) < FLT_EPSILON ) use_yco= 1; } /* scale z to make sure volume is normalized */ -- cgit v1.2.3 From 383756be486826ca61fa9b5ea9341ef21b800c18 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Fri, 17 Feb 2012 19:45:27 +0000 Subject: Fixed compilation error cased by recent refactor of include guard defines. --- source/blender/blenkernel/BKE_sound.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender') diff --git a/source/blender/blenkernel/BKE_sound.h b/source/blender/blenkernel/BKE_sound.h index 90477647b88..8b01dbde531 100644 --- a/source/blender/blenkernel/BKE_sound.h +++ b/source/blender/blenkernel/BKE_sound.h @@ -79,7 +79,7 @@ void sound_load(struct Main *main, struct bSound* sound); void sound_free(struct bSound* sound); -#ifdef AUD_CAPI +#ifdef __AUD_C_API_H__ AUD_Device* sound_mixdown(struct Scene *scene, AUD_DeviceSpecs specs, int start, float volume); #endif -- cgit v1.2.3 From f3bef40b0cf2a10bcffedae6c5235e3f5537670f Mon Sep 17 00:00:00 2001 From: Arystanbek Dyussenov Date: Sat, 18 Feb 2012 06:22:20 +0000 Subject: #collada animation import, bugfix #29082 Fix skeletal animation import for , and transform types. Tested for correctness visually using Seymouranim2.dae from http://collada.org/owl and animated creatures from DKGamesModels folder (from private section of the same site). The results match the results in FXComposer-2.5. Since this is a fix towards correct reading of collada, it shouldn't break existing compatibility with Second Life. --- source/blender/collada/AnimationImporter.cpp | 182 +++++++++++++++++++++++---- source/blender/collada/AnimationImporter.h | 2 + 2 files changed, 157 insertions(+), 27 deletions(-) (limited to 'source/blender') diff --git a/source/blender/collada/AnimationImporter.cpp b/source/blender/collada/AnimationImporter.cpp index c47e024aba4..b889dd21177 100644 --- a/source/blender/collada/AnimationImporter.cpp +++ b/source/blender/collada/AnimationImporter.cpp @@ -834,34 +834,33 @@ void AnimationImporter::translate_Animations ( COLLADAFW::Node * node , std::vector animcurves; for (unsigned int j = 0; j < bindings.getCount(); j++) { animcurves = curve_map[bindings[j].animation]; - if ( is_matrix ) + if ( is_matrix ) { apply_matrix_curves(ob, animcurves, root , node, transform ); + } else { - //calculate rnapaths and array index of fcurves according to transformation and animation class - Assign_transform_animations(transform, &bindings[j], &animcurves, is_joint, joint_path ); - - std::vector::iterator iter; - //Add the curves of the current animation to the object - for (iter = animcurves.begin(); iter != animcurves.end(); iter++) { - FCurve * fcu = *iter; - if ((ob->type == OB_ARMATURE)) - add_bone_fcurve( ob, node , fcu ); - else - BLI_addtail(AnimCurves, fcu); + + if (is_joint) { + + add_bone_animation_sampled(ob, animcurves, root, node, transform); + } + else { + //calculate rnapaths and array index of fcurves according to transformation and animation class + Assign_transform_animations(transform, &bindings[j], &animcurves, is_joint, joint_path ); + + std::vector::iterator iter; + //Add the curves of the current animation to the object + for (iter = animcurves.begin(); iter != animcurves.end(); iter++) { + FCurve * fcu = *iter; + + BLI_addtail(AnimCurves, fcu); + } } + } } } - if (is_rotation) { - if (is_joint) - { - bPoseChannel *chan = get_pose_channel(ob->pose, bone_name); - chan->rotmode = ROT_MODE_EUL; - } - else - { - ob->rotmode = ROT_MODE_EUL; - } + if (is_rotation && !is_joint) { + ob->rotmode = ROT_MODE_EUL; } } } @@ -992,6 +991,136 @@ void AnimationImporter::translate_Animations ( COLLADAFW::Node * node , } } +void AnimationImporter::add_bone_animation_sampled(Object * ob, std::vector& animcurves, COLLADAFW::Node* root, COLLADAFW::Node* node, COLLADAFW::Transformation * tm) +{ + const char *bone_name = bc_get_joint_name(node); + char joint_path[200]; + armature_importer->get_rna_path_for_joint(node, joint_path, sizeof(joint_path)); + + std::vector frames; + find_frames(&frames, &animcurves); + + // convert degrees to radians + if (tm->getTransformationType() == COLLADAFW::Transformation::ROTATE) { + + std::vector::iterator iter; + for (iter = animcurves.begin(); iter != animcurves.end(); iter++) { + FCurve* fcu = *iter; + + fcurve_deg_to_rad(fcu); + } + } + + + float irest_dae[4][4]; + float rest[4][4], irest[4][4]; + + get_joint_rest_mat(irest_dae, root, node); + invert_m4(irest_dae); + + Bone *bone = get_named_bone((bArmature*)ob->data, bone_name); + if (!bone) { + fprintf(stderr, "cannot find bone \"%s\"\n", bone_name); + return; + } + + unit_m4(rest); + copy_m4_m4(rest, bone->arm_mat); + invert_m4_m4(irest, rest); + + // new curves to assign matrix transform animation + FCurve *newcu[10]; // if tm_type is matrix, then create 10 curves: 4 rot, 3 loc, 3 scale + unsigned int totcu = 10 ; + const char *tm_str = NULL; + char rna_path[200]; + for (int i = 0; i < totcu; i++) { + + int axis = i; + + if (i < 4) { + tm_str = "rotation_quaternion"; + axis = i; + } + else if (i < 7) { + tm_str = "location"; + axis = i - 4; + } + else { + tm_str = "scale"; + axis = i - 7; + } + + + BLI_snprintf(rna_path, sizeof(rna_path), "%s.%s", joint_path, tm_str); + + newcu[i] = create_fcurve(axis, rna_path); + newcu[i]->totvert = frames.size(); + } + + if (frames.size() == 0) + return; + + std::sort(frames.begin(), frames.end()); + + std::vector::iterator it; + + // sample values at each frame + for (it = frames.begin(); it != frames.end(); it++) { + float fra = *it; + + float mat[4][4]; + float matfra[4][4]; + + unit_m4(matfra); + + // calc object-space mat + evaluate_transform_at_frame(matfra, node, fra); + + + // for joints, we need a special matrix + // special matrix: iR * M * iR_dae * R + // where R, iR are bone rest and inverse rest mats in world space (Blender bones), + // iR_dae is joint inverse rest matrix (DAE) and M is an evaluated joint world-space matrix (DAE) + float temp[4][4], par[4][4]; + + + // calc M + calc_joint_parent_mat_rest(par, NULL, root, node); + mult_m4_m4m4(temp, par, matfra); + + // evaluate_joint_world_transform_at_frame(temp, NULL, , node, fra); + + // calc special matrix + mul_serie_m4(mat, irest, temp, irest_dae, rest, NULL, NULL, NULL, NULL); + + float rot[4], loc[3], scale[3]; + + mat4_to_quat(rot, mat); + copy_v3_v3(loc, mat[3]); + mat4_to_size(scale, mat); + + // add keys + for (int i = 0; i < totcu; i++) { + if (i < 4) + add_bezt(newcu[i], fra, rot[i]); + else if (i < 7) + add_bezt(newcu[i], fra, loc[i - 4]); + else + add_bezt(newcu[i], fra, scale[i - 7]); + } + } + verify_adt_action((ID*)&ob->id, 1); + + // add curves + for (int i= 0; i < totcu; i++) { + add_bone_fcurve(ob, node, newcu[i]); + } + + bPoseChannel *chan = get_pose_channel(ob->pose, bone_name); + chan->rotmode = ROT_MODE_QUAT; + +} + //Check if object is animated by checking if animlist_map holds the animlist_id of node transforms AnimationImporter::AnimMix* AnimationImporter::get_animation_type ( const COLLADAFW::Node * node , @@ -1406,12 +1535,10 @@ void AnimationImporter::evaluate_transform_at_frame(float mat[4][4], COLLADAFW:: float m[4][4]; unit_m4(m); - if ( type != COLLADAFW::Transformation::MATRIX ) - continue; std::string nodename = node->getName().size() ? node->getName() : node->getOriginalId(); if (!evaluate_animation(tm, m, fra, nodename.c_str())) { - /*switch (type) { + switch (type) { case COLLADAFW::Transformation::ROTATE: dae_rotate_to_mat4(tm, m); break; @@ -1426,8 +1553,8 @@ void AnimationImporter::evaluate_transform_at_frame(float mat[4][4], COLLADAFW:: break; default: fprintf(stderr, "unsupported transformation type %d\n", type); - }*/ - dae_matrix_to_mat4(tm, m); + } + // dae_matrix_to_mat4(tm, m); } @@ -1510,6 +1637,7 @@ bool AnimationImporter::evaluate_animation(COLLADAFW::Transformation *tm, float } COLLADABU::Math::Vector3& axis = ((COLLADAFW::Rotate*)tm)->getRotationAxis(); + float ax[3] = {axis[0], axis[1], axis[2]}; float angle = evaluate_fcurve(curves[0], fra); axis_angle_to_mat4(mat, ax, angle); diff --git a/source/blender/collada/AnimationImporter.h b/source/blender/collada/AnimationImporter.h index 118a50b0480..5fb96017dee 100644 --- a/source/blender/collada/AnimationImporter.h +++ b/source/blender/collada/AnimationImporter.h @@ -153,6 +153,8 @@ public: void apply_matrix_curves( Object * ob, std::vector& animcurves, COLLADAFW::Node* root ,COLLADAFW::Node* node, COLLADAFW::Transformation * tm ); + void add_bone_animation_sampled(Object * ob, std::vector& animcurves, COLLADAFW::Node* root ,COLLADAFW::Node* node, COLLADAFW::Transformation * tm); + void Assign_transform_animations(COLLADAFW::Transformation* transform , const COLLADAFW::AnimationList::AnimationBinding * binding, std::vector* curves, bool is_joint, char * joint_path); -- cgit v1.2.3