Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTon Roosendaal <ton@blender.org>2006-01-08 14:41:06 +0300
committerTon Roosendaal <ton@blender.org>2006-01-08 14:41:06 +0300
commit104ab9b103ab30ca87ccb9e739a58863fc29d3bf (patch)
tree4f26f35a13cc5f92d485f72f2c9116d202f2f9cd /source/blender
parent32e21f4524cd3c428b5b8492089530471a7f0867 (diff)
Orange:
- New UI element: the "Curve Button". For mapping ranges (like 0 - 1) to another range, the curve button can be used for proportional falloff, bone influences, painting density, etc. Most evident use is of course to map RGB color with curves. To be able to use it, you have to allocate a CurveMapping struct and pass this on to the button. The CurveMapping API is in the new C file blenkernel/intern/colortools.c It's as simple as calling: curvemap= curvemapping_add(3, 0, 0, 1, 1) Which will create 3 curves, and sets a default 0-1 range. The current code only supports up to 4 curves maximum per mapping struct. The CurveMap button in Blender than handles allmost all editing. Evaluating a single channel: float newvalue= curvemapping_evaluateF(curvemap, 0, oldval); Where the second argument is the channel index, here 0-1-2 are possible. Or mapping a vector: curvemapping_evaluate3F(curvemap, newvec, oldvec); Optimized versions for byte or short mapping is possible too, not done yet. In butspace.c I've added a template wrapper for buttons around the curve, to reveil settings or show tools; check this screenie: http://www.blender.org/bf/curves.jpg - Buttons R, G, B: select channel - icons + and -: zoom in, out - icon 'wrench': menu with tools, like clear curve, set handle type - icon 'clipping': menu with clip values, and to dis/enable clipping - icon 'x': delete selection In the curve button itself, only LMB clicks are handled (like all UI elements in Blender). - click on point: select - shift+click on point: swap select - click on point + drag: select point (if not selected) and move it - click outside point + drag: translate view - CTRL+click: add new point - hold SHIFT while dragging to snap to grid (Yes I know... either one of these can be Blender compliant, not both!) - if you drag a point exactly on top of another, it merges them Other fixes: - Icons now draw using "Safe RasterPos", so they align with pixel boundary. the old code made ints from the raster pos coordinate, which doesn't work well for zoom in/out situations - bug in Node editing: buttons could not get freed, causing in memory error prints at end of a Blender session. That one was a very simple, but nasty error causing me all evening last night to find! (Hint; check diff of editnode.c, where uiDoButtons is called) Last note: this adds 3 new files in our tree, I did scons, but not MSVC!
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/blenkernel/BKE_colortools.h50
-rw-r--r--source/blender/blenkernel/BKE_node.h2
-rw-r--r--source/blender/blenkernel/SConscript1
-rw-r--r--source/blender/blenkernel/intern/colortools.c469
-rw-r--r--source/blender/blenkernel/intern/node.c44
-rw-r--r--source/blender/blenkernel/intern/node_shaders.c62
-rw-r--r--source/blender/blenloader/intern/readfile.c20
-rw-r--r--source/blender/blenloader/intern/writefile.c21
-rw-r--r--source/blender/include/BIF_interface.h2
-rw-r--r--source/blender/include/BIF_resources.h4
-rw-r--r--source/blender/include/butspace.h3
-rw-r--r--source/blender/include/interface.h4
-rw-r--r--source/blender/makesdna/DNA_color_types.h74
-rw-r--r--source/blender/makesdna/intern/makesdna.c2
-rw-r--r--source/blender/src/blenderbuttons.c3088
-rw-r--r--source/blender/src/butspace.c191
-rw-r--r--source/blender/src/buttons_editing.c5
-rw-r--r--source/blender/src/drawnode.c19
-rw-r--r--source/blender/src/editnode.c27
-rw-r--r--source/blender/src/interface.c161
-rw-r--r--source/blender/src/interface_draw.c129
-rw-r--r--source/blender/src/interface_icons.c6
22 files changed, 2811 insertions, 1573 deletions
diff --git a/source/blender/blenkernel/BKE_colortools.h b/source/blender/blenkernel/BKE_colortools.h
new file mode 100644
index 00000000000..7521a935118
--- /dev/null
+++ b/source/blender/blenkernel/BKE_colortools.h
@@ -0,0 +1,50 @@
+/**
+ * $Id$
+ *
+ * ***** 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ *
+ * The Original Code is Copyright (C) 2006 Blender Foundation.
+ * All rights reserved.
+ *
+ * The Original Code is: all of this file.
+ *
+ * Contributor(s): none yet.
+ *
+ * ***** END GPL/BL DUAL LICENSE BLOCK *****
+ */
+#ifndef BKE_COLORTOOLS_H
+#define BKE_COLORTOOLS_H
+
+struct CurveMapping;
+struct CurveMap;
+struct rctf;
+
+struct CurveMapping *curvemapping_add(int tot, float minx, float miny, float maxx, float maxy);
+void curvemapping_free(struct CurveMapping *cumap);
+struct CurveMapping *curvemapping_copy(struct CurveMapping *cumap);
+
+void curvemap_remove(struct CurveMap *cuma, int flag);
+void curvemap_insert(struct CurveMap *cuma, float x, float y);
+void curvemap_reset(struct CurveMap *cuma, struct rctf *clipr);
+void curvemap_sethandle(struct CurveMap *cuma, int type);
+
+void curvemapping_changed(struct CurveMapping *cumap, int rem_doubles);
+float curvemapping_evaluateF(struct CurveMapping *cumap, int cur, float value);
+void curvemapping_evaluate3F(struct CurveMapping *cumap, float *vecout, const float *vecin);
+
+#endif
+
diff --git a/source/blender/blenkernel/BKE_node.h b/source/blender/blenkernel/BKE_node.h
index 7253a0cc95a..7c887e2db63 100644
--- a/source/blender/blenkernel/BKE_node.h
+++ b/source/blender/blenkernel/BKE_node.h
@@ -159,6 +159,8 @@ struct ShadeResult;
#define SH_NODE_NORMAL 107
#define SH_NODE_GEOMETRY 108
#define SH_NODE_MAPPING 109
+#define SH_NODE_CURVE_VEC 110
+#define SH_NODE_CURVE_RGB 111
/* custom defines: options for Material node */
#define SH_NODE_MAT_DIFF 1
diff --git a/source/blender/blenkernel/SConscript b/source/blender/blenkernel/SConscript
index 7d1b45f69f1..acbb15a4ecd 100644
--- a/source/blender/blenkernel/SConscript
+++ b/source/blender/blenkernel/SConscript
@@ -46,6 +46,7 @@ source_files = ['intern/constraint.c',
'intern/softbody.c',
'intern/node.c',
'intern/node_shaders.c',
+ 'intern/colortools.c',
'intern/texture.c']
blenkernel_env.Append (CPPPATH = ['.',
diff --git a/source/blender/blenkernel/intern/colortools.c b/source/blender/blenkernel/intern/colortools.c
new file mode 100644
index 00000000000..0ce9bfc9ee9
--- /dev/null
+++ b/source/blender/blenkernel/intern/colortools.c
@@ -0,0 +1,469 @@
+/*
+ * $Id$
+ *
+ * ***** 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ *
+ * The Original Code is Copyright (C) 2005 Blender Foundation.
+ * All rights reserved.
+ *
+ * The Original Code is: all of this file.
+ *
+ * Contributor(s): none yet.
+ *
+ * ***** END GPL/BL DUAL LICENSE BLOCK *****
+ */
+
+#include <string.h>
+#include <math.h>
+#include <stdlib.h>
+#include <float.h>
+
+#include "MEM_guardedalloc.h"
+
+#include "DNA_color_types.h"
+#include "DNA_curve_types.h"
+#include "DNA_texture_types.h"
+
+#include "BKE_colortools.h"
+#include "BKE_curve.h"
+#include "BKE_global.h"
+#include "BKE_ipo.h"
+#include "BKE_main.h"
+#include "BKE_utildefines.h"
+
+#include "BLI_blenlib.h"
+#include "BLI_arithb.h"
+
+
+/* ********************************* color curve ********************* */
+
+/* ***************** operations on full struct ************* */
+
+CurveMapping *curvemapping_add(int tot, float minx, float miny, float maxx, float maxy)
+{
+ CurveMapping *cumap;
+ int a;
+
+ cumap= MEM_callocN(sizeof(CurveMapping), "new curvemap");
+ cumap->flag= CUMA_DO_CLIP;
+
+ BLI_init_rctf(&cumap->curr, minx, maxx, miny, maxy);
+ cumap->clipr= cumap->curr;
+
+ for(a=0; a<tot; a++) {
+ cumap->cm[a].totpoint= 2;
+ cumap->cm[a].curve= MEM_callocN(2*sizeof(CurveMapPoint), "curve points");
+
+ cumap->cm[a].curve[0].x= minx;
+ cumap->cm[a].curve[0].y= miny;
+ cumap->cm[a].curve[1].x= maxx;
+ cumap->cm[a].curve[1].y= maxy;
+ }
+ return cumap;
+}
+
+void curvemapping_free(CurveMapping *cumap)
+{
+ int a;
+
+ if(cumap) {
+ for(a=0; a<CM_TOT; a++) {
+ if(cumap->cm[a].curve) MEM_freeN(cumap->cm[a].curve);
+ if(cumap->cm[a].table) MEM_freeN(cumap->cm[a].table);
+ }
+ MEM_freeN(cumap);
+ }
+}
+
+CurveMapping *curvemapping_copy(CurveMapping *cumap)
+{
+ int a;
+
+ if(cumap) {
+ CurveMapping *cumapn= MEM_dupallocN(cumap);
+ for(a=0; a<CM_TOT; a++) {
+ if(cumap->cm[a].curve)
+ cumapn->cm[a].curve= MEM_dupallocN(cumap->cm[a].curve);
+ if(cumap->cm[a].table)
+ cumapn->cm[a].table= MEM_dupallocN(cumap->cm[a].table);
+ }
+ return cumapn;
+ }
+ return NULL;
+}
+
+/* ***************** operations on single curve ************* */
+/* ********** NOTE: requires curvemapping_changed() call after ******** */
+
+/* removes with flag set */
+void curvemap_remove(CurveMap *cuma, int flag)
+{
+ CurveMapPoint *cmp= MEM_mallocN((cuma->totpoint)*sizeof(CurveMapPoint), "curve points");
+ int a, b, removed=0;
+
+ /* well, lets keep the two outer points! */
+ cmp[0]= cuma->curve[0];
+ for(a=1, b=1; a<cuma->totpoint-1; a++) {
+ if(!(cuma->curve[a].flag & flag)) {
+ cmp[b]= cuma->curve[a];
+ b++;
+ }
+ else removed++;
+ }
+ cmp[b]= cuma->curve[a];
+
+ MEM_freeN(cuma->curve);
+ cuma->curve= cmp;
+ cuma->totpoint -= removed;
+}
+
+void curvemap_insert(CurveMap *cuma, float x, float y)
+{
+ CurveMapPoint *cmp= MEM_callocN((cuma->totpoint+1)*sizeof(CurveMapPoint), "curve points");
+ int a;
+
+ memcpy(cmp, cuma->curve, (cuma->totpoint)*sizeof(CurveMapPoint));
+ MEM_freeN(cuma->curve);
+ cuma->curve= cmp;
+
+ cuma->curve[cuma->totpoint].x= x;
+ cuma->curve[cuma->totpoint].y= y;
+ cuma->curve[cuma->totpoint].flag = CUMA_SELECT;
+ for(a=0; a<cuma->totpoint; a++, cmp++)
+ cmp->flag= 0;
+ cuma->totpoint++;
+}
+
+void curvemap_reset(CurveMap *cuma, rctf *clipr)
+{
+ cuma->totpoint= 2;
+
+ cuma->curve[0].x= clipr->xmin;
+ cuma->curve[0].y= clipr->ymin;
+ cuma->curve[0].flag= 0;
+ cuma->curve[1].x= clipr->xmax;
+ cuma->curve[1].y= clipr->ymax;
+ cuma->curve[1].flag= 0;
+}
+
+/* if type==1: vector, else auto */
+void curvemap_sethandle(CurveMap *cuma, int type)
+{
+ int a;
+
+ for(a=0; a<cuma->totpoint; a++) {
+ if(cuma->curve[a].flag & CUMA_SELECT) {
+ if(type) cuma->curve[a].flag |= CUMA_VECTOR;
+ else cuma->curve[a].flag &= ~CUMA_VECTOR;
+ }
+ }
+}
+
+/* *********************** Making the tables and display ************** */
+
+/* reduced copy of garbled calchandleNurb() code in curve.c */
+static void calchandle_curvemap(BezTriple *bezt, BezTriple *prev, BezTriple *next, int mode)
+{
+ float *p1,*p2,*p3,pt[3];
+ float dx1,dy1, dx,dy, vx,vy, len,len1,len2;
+
+ if(bezt->h1==0 && bezt->h2==0) return;
+
+ p2= bezt->vec[1];
+
+ if(prev==NULL) {
+ p3= next->vec[1];
+ pt[0]= 2*p2[0]- p3[0];
+ pt[1]= 2*p2[1]- p3[1];
+ p1= pt;
+ }
+ else p1= prev->vec[1];
+
+ if(next==NULL) {
+ p1= prev->vec[1];
+ pt[0]= 2*p2[0]- p1[0];
+ pt[1]= 2*p2[1]- p1[1];
+ p3= pt;
+ }
+ else p3= next->vec[1];
+
+ dx= p2[0]- p1[0];
+ dy= p2[1]- p1[1];
+
+ len1= (float)sqrt(dx*dx+dy*dy);
+
+ dx1= p3[0]- p2[0];
+ dy1= p3[1]- p2[1];
+
+ len2= (float)sqrt(dx1*dx1+dy1*dy1);
+
+ if(len1==0.0f) len1=1.0f;
+ if(len2==0.0f) len2=1.0f;
+
+ if(bezt->h1==HD_AUTO || bezt->h2==HD_AUTO) { /* auto */
+ vx= dx1/len2 + dx/len1;
+ vy= dy1/len2 + dy/len1;
+
+ len= 2.5614f*(float)sqrt(vx*vx + vy*vy);
+ if(len!=0.0f) {
+
+ if(bezt->h1==HD_AUTO) {
+ len1/=len;
+ *(p2-3)= *p2-vx*len1;
+ *(p2-2)= *(p2+1)-vy*len1;
+ }
+ if(bezt->h2==HD_AUTO) {
+ len2/=len;
+ *(p2+3)= *p2+vx*len2;
+ *(p2+4)= *(p2+1)+vy*len2;
+ }
+ }
+ }
+
+ if(bezt->h1==HD_VECT) { /* vector */
+ dx/=3.0;
+ dy/=3.0;
+ *(p2-3)= *p2-dx;
+ *(p2-2)= *(p2+1)-dy;
+ }
+ if(bezt->h2==HD_VECT) {
+ dx1/=3.0;
+ dy1/=3.0;
+ *(p2+3)= *p2+dx1;
+ *(p2+4)= *(p2+1)+dy1;
+ }
+}
+
+
+static void curvemap_make_table(CurveMap *cuma, rctf *clipr)
+{
+ CurveMapPoint *cmp= cuma->curve;
+ BezTriple *bezt;
+ float *fp, *allpoints, curf, range;
+ int a, totpoint;
+
+ if(cuma->curve==NULL) return;
+
+ /* default rect also is table range */
+ cuma->mintable= clipr->xmin;
+ cuma->maxtable= clipr->xmax;
+
+ /* hrmf... we now rely on blender ipo beziers, these are more advanced */
+ bezt= MEM_callocN(cuma->totpoint*sizeof(BezTriple), "beztarr");
+
+ for(a=0; a<cuma->totpoint; a++) {
+ cuma->mintable= MIN2(cuma->mintable, cmp[a].x);
+ cuma->maxtable= MAX2(cuma->maxtable, cmp[a].x);
+ bezt[a].vec[1][0]= cmp[a].x;
+ bezt[a].vec[1][1]= cmp[a].y;
+ if(cmp[a].flag & CUMA_VECTOR)
+ bezt[a].h1= bezt[a].h2= HD_VECT;
+ else
+ bezt[a].h1= bezt[a].h2= HD_AUTO;
+ }
+
+ for(a=0; a<cuma->totpoint; a++) {
+ if(a==0)
+ calchandle_curvemap(bezt, NULL, bezt+1, 0);
+ else if(a==cuma->totpoint-1)
+ calchandle_curvemap(bezt+a, bezt+a-1, NULL, 0);
+ else
+ calchandle_curvemap(bezt+a, bezt+a-1, bezt+a+1, 0);
+ }
+
+ /* first and last handle need correction, instead of pointing to center of next/prev,
+ we let it point to the closest handle */
+ if(cuma->totpoint>2) {
+ float hlen, nlen, vec[3];
+
+ if(bezt[0].h2==HD_AUTO) {
+
+ hlen= VecLenf(bezt[0].vec[1], bezt[0].vec[2]); /* original handle length */
+ /* clip handle point */
+ VECCOPY(vec, bezt[1].vec[0]);
+ if(vec[0] < bezt[0].vec[1][0])
+ vec[0]= bezt[0].vec[1][0];
+
+ VecSubf(vec, vec, bezt[0].vec[1]);
+ nlen= VecLength(vec);
+ if(nlen>FLT_EPSILON) {
+ VecMulf(vec, hlen/nlen);
+ VecAddf(bezt[0].vec[2], vec, bezt[0].vec[1]);
+ }
+ }
+ a= cuma->totpoint-1;
+ if(bezt[a].h2==HD_AUTO) {
+
+ hlen= VecLenf(bezt[a].vec[1], bezt[a].vec[0]); /* original handle length */
+ /* clip handle point */
+ VECCOPY(vec, bezt[a-1].vec[2]);
+ if(vec[0] > bezt[a].vec[1][0])
+ vec[0]= bezt[a].vec[1][0];
+
+ VecSubf(vec, vec, bezt[a].vec[1]);
+ nlen= VecLength(vec);
+ if(nlen>FLT_EPSILON) {
+ VecMulf(vec, hlen/nlen);
+ VecAddf(bezt[a].vec[0], vec, bezt[a].vec[1]);
+ }
+ }
+ }
+ /* make the bezier curve */
+ if(cuma->table)
+ MEM_freeN(cuma->table);
+ totpoint= (cuma->totpoint-1)*CM_RESOL;
+ fp= allpoints= MEM_mallocN(totpoint*2*sizeof(float), "table");
+
+ for(a=0; a<cuma->totpoint-1; a++, fp += 2*CM_RESOL) {
+ correct_bezpart(bezt[a].vec[1], bezt[a].vec[2], bezt[a+1].vec[0], bezt[a+1].vec[1]);
+ forward_diff_bezier(bezt[a].vec[1][0], bezt[a].vec[2][0], bezt[a+1].vec[0][0], bezt[a+1].vec[1][0], fp, CM_RESOL-1, 2);
+ forward_diff_bezier(bezt[a].vec[1][1], bezt[a].vec[2][1], bezt[a+1].vec[0][1], bezt[a+1].vec[1][1], fp+1, CM_RESOL-1, 2);
+ }
+
+ MEM_freeN(bezt);
+
+ range= CM_TABLEDIV*(cuma->maxtable - cuma->mintable);
+ cuma->range= 1.0f/range;
+
+ /* now make a table with CM_TABLE equal x distances */
+ fp= allpoints;
+ cmp= MEM_callocN((CM_TABLE+1)*sizeof(CurveMapPoint), "dist table");
+ cmp[0].x= cuma->mintable;
+ cmp[0].y= allpoints[1];
+
+ for(a=1; a<CM_TABLE; a++) {
+ curf= cuma->mintable + range*(float)a;
+ cmp[a].x= curf;
+
+ /* get the first x coordinate larger than curf */
+ while(curf >= fp[0] && fp!=allpoints-2) {
+ fp+=2;
+ }
+ if(fp==allpoints-2)
+ cmp[a].y= fp[1];
+ else {
+ float fac1= fp[0] - fp[-2];
+ float fac2= fp[0] - curf;
+ if(fac1 > FLT_EPSILON)
+ fac1= fac2/fac1;
+ else
+ fac1= 0.0f;
+ cmp[a].y= fac1*fp[-1] + (1.0f-fac1)*fp[1];
+ }
+ }
+ cmp[CM_TABLE].x= cuma->maxtable;
+ cmp[CM_TABLE].y= allpoints[2*totpoint-1];
+
+ MEM_freeN(allpoints);
+ cuma->table= cmp;
+}
+
+
+static int sort_curvepoints(const void *a1, const void *a2)
+{
+ const struct CurveMapPoint *x1=a1, *x2=a2;
+
+ if( x1->x > x2->x ) return 1;
+ else if( x1->x < x2->x) return -1;
+ return 0;
+}
+
+/* ************************ more CurveMapping calls *************** */
+
+/* note; only does current curvemap! */
+void curvemapping_changed(CurveMapping *cumap, int rem_doubles)
+{
+ CurveMap *cuma= cumap->cm+cumap->cur;
+ CurveMapPoint *cmp= cuma->curve;
+ rctf *clipr= &cumap->clipr;
+ float thresh= 0.01f*(clipr->xmax - clipr->xmin);
+ float dx, dy;
+ int a;
+
+ /* clamp with clip */
+ if(cumap->flag & CUMA_DO_CLIP) {
+ for(a=0; a<cuma->totpoint; a++) {
+ if(cmp[a].x < clipr->xmin)
+ cmp[a].x= clipr->xmin;
+ else if(cmp[a].x > clipr->xmax)
+ cmp[a].x= clipr->xmax;
+ if(cmp[a].y < clipr->ymin)
+ cmp[a].y= clipr->ymin;
+ else if(cmp[a].y > clipr->ymax)
+ cmp[a].y= clipr->ymax;
+ }
+ }
+
+ qsort(cmp, cuma->totpoint, sizeof(CurveMapPoint), sort_curvepoints);
+
+ /* remove doubles, threshold set on 1% of default range */
+ if(rem_doubles && cuma->totpoint>2) {
+ for(a=0; a<cuma->totpoint-1; a++) {
+ dx= cmp[a].x - cmp[a+1].x;
+ dy= cmp[a].y - cmp[a+1].y;
+ if( sqrt(dx*dx + dy*dy) < thresh ) {
+ if(a==0) {
+ cmp[a+1].flag|= 2;
+ if(cmp[a+1].flag & CUMA_SELECT)
+ cmp[a].flag |= CUMA_SELECT;
+ }
+ else {
+ cmp[a].flag|= 2;
+ if(cmp[a].flag & CUMA_SELECT)
+ cmp[a+1].flag |= CUMA_SELECT;
+ }
+ break; /* we assume 1 deletion per edit is ok */
+ }
+ }
+ if(a != cuma->totpoint-1)
+ curvemap_remove(cuma, 2);
+ }
+ curvemap_make_table(cuma, clipr);
+}
+
+/* works with curve 'cur' */
+float curvemapping_evaluateF(CurveMapping *cumap, int cur, float value)
+{
+ CurveMap *cuma= cumap->cm+cur;
+ float fi;
+ int i;
+
+ /* allocate or bail out */
+ if(cuma->table==NULL) {
+ curvemap_make_table(cuma, &cumap->clipr);
+ if(cuma->table==NULL)
+ return value;
+ }
+
+ /* index in table */
+ fi= (value-cuma->mintable)*cuma->range;
+ i= (int)fi;
+ if(i<0) return cuma->table[0].y;
+ if(i>=CM_TABLE) return cuma->table[CM_TABLE].y;
+
+ fi= fi-(float)i;
+ return (1.0f-fi)*cuma->table[i].y + (fi)*cuma->table[i+1].y;
+}
+
+void curvemapping_evaluate3F(CurveMapping *cumap, float *vecout, const float *vecin)
+{
+ vecout[0]= curvemapping_evaluateF(cumap, 0, vecin[0]);
+ vecout[1]= curvemapping_evaluateF(cumap, 1, vecin[1]);
+ vecout[2]= curvemapping_evaluateF(cumap, 2, vecin[2]);
+}
+
+
diff --git a/source/blender/blenkernel/intern/node.c b/source/blender/blenkernel/intern/node.c
index 7aec48edd83..da18725c2dd 100644
--- a/source/blender/blenkernel/intern/node.c
+++ b/source/blender/blenkernel/intern/node.c
@@ -35,6 +35,7 @@
#include "DNA_material_types.h"
#include "BKE_blender.h"
+#include "BKE_colortools.h"
#include "BKE_global.h"
#include "BKE_library.h"
#include "BKE_main.h"
@@ -696,6 +697,10 @@ bNode *nodeAddNodeType(bNodeTree *ntree, int type, bNodeTree *ngroup)
node->storage= add_colorband(1);
else if(type==SH_NODE_MAPPING)
node->storage= add_mapping();
+ else if(type==SH_NODE_CURVE_VEC)
+ node->storage= curvemapping_add(3, -1.0f, -1.0f, 1.0f, 1.0f);
+ else if(type==SH_NODE_CURVE_RGB)
+ node->storage= curvemapping_add(4, 0.0f, 0.0f, 1.0f, 1.0f);
}
return node;
@@ -722,8 +727,17 @@ bNode *nodeCopyNode(struct bNodeTree *ntree, struct bNode *node)
if(nnode->id)
nnode->id->us++;
- if(nnode->storage)
- nnode->storage= MEM_dupallocN(nnode->storage);
+ if(nnode->storage) {
+ /* another candidate for handlerizing! */
+ if(ntree->type==NTREE_SHADER) {
+ if(node->type==SH_NODE_CURVE_VEC || node->type==SH_NODE_CURVE_RGB)
+ nnode->storage= curvemapping_copy(node->storage);
+ else
+ nnode->storage= MEM_dupallocN(nnode->storage);
+ }
+ else
+ nnode->storage= MEM_dupallocN(nnode->storage);
+ }
node->new= nnode;
nnode->new= NULL;
@@ -796,10 +810,9 @@ static void node_unlink_node(bNodeTree *ntree, bNode *node)
void nodeFreeNode(bNodeTree *ntree, bNode *node)
{
- if(ntree) {
- node_unlink_node(ntree, node);
- BLI_remlink(&ntree->nodes, node);
- }
+ node_unlink_node(ntree, node);
+ BLI_remlink(&ntree->nodes, node);
+
if(node->id)
node->id->us--;
@@ -811,9 +824,17 @@ void nodeFreeNode(bNodeTree *ntree, bNode *node)
MEM_freeN(node->preview->rect);
MEM_freeN(node->preview);
}
- if(node->storage)
- MEM_freeN(node->storage);
-
+ if(node->storage) {
+ /* could be handlerized at some point, now only 1 exception still */
+ if(ntree->type==NTREE_SHADER) {
+ if(node->type==SH_NODE_CURVE_VEC || node->type==SH_NODE_CURVE_RGB)
+ curvemapping_free(node->storage);
+ else
+ MEM_freeN(node->storage);
+ }
+ else
+ MEM_freeN(node->storage);
+ }
MEM_freeN(node);
}
@@ -822,11 +843,12 @@ void ntreeFreeTree(bNodeTree *ntree)
{
bNode *node, *next;
+ BLI_freelistN(&ntree->links); /* do first, then unlink_node goes fast */
+
for(node= ntree->nodes.first; node; node= next) {
next= node->next;
- nodeFreeNode(NULL, node); /* NULL -> no unlinking needed */
+ nodeFreeNode(ntree, node);
}
- BLI_freelistN(&ntree->links);
if(ntree->owntype) {
if(ntree->owntype->inputs)
diff --git a/source/blender/blenkernel/intern/node_shaders.c b/source/blender/blenkernel/intern/node_shaders.c
index 6bc3045c139..b1dfdf0f5b4 100644
--- a/source/blender/blenkernel/intern/node_shaders.c
+++ b/source/blender/blenkernel/intern/node_shaders.c
@@ -36,6 +36,7 @@
#include "DNA_texture_types.h"
#include "BKE_blender.h"
+#include "BKE_colortools.h"
#include "BKE_node.h"
#include "BKE_texture.h"
#include "BKE_utildefines.h"
@@ -240,8 +241,10 @@ static void node_shader_exec_material(void *data, bNode *node, bNodeStack **in,
shi->mat->ref= in[MAT_IN_REFL]->vec[0];
/* retrieve normal */
- if(in[MAT_IN_NORMAL]->hasinput)
+ if(in[MAT_IN_NORMAL]->hasinput) {
nor= in[MAT_IN_NORMAL]->vec;
+ Normalise(nor);
+ }
else
nor= shi->vno;
@@ -476,6 +479,61 @@ static bNodeType sh_node_normal= {
};
+/* **************** CURVE VEC ******************** */
+static bNodeSocketType sh_node_curve_vec_in[]= {
+ { SOCK_VECTOR, 1, "Vector", 0.0f, 0.0f, 0.0f, 1.0f, -1.0f, 1.0f},
+ { -1, 0, "" }
+};
+
+static bNodeSocketType sh_node_curve_vec_out[]= {
+ { SOCK_VECTOR, 0, "Vector", 0.0f, 0.0f, 1.0f, 1.0f, -1.0f, 1.0f},
+ { -1, 0, "" }
+};
+
+/* generates normal, does dot product */
+static void node_shader_exec_curve(void *data, bNode *node, bNodeStack **in, bNodeStack **out)
+{
+ /* stack order input: vec */
+ /* stack order output: vec */
+
+ curvemapping_evaluate3F(node->storage, out[0]->vec, in[0]->vec);
+}
+
+static bNodeType sh_node_curve_vec= {
+ /* type code */ SH_NODE_CURVE_VEC,
+ /* name */ "Vector Curves",
+ /* width+range */ 200, 140, 320,
+ /* class+opts */ NODE_CLASS_OPERATOR, NODE_OPTIONS,
+ /* input sock */ sh_node_curve_vec_in,
+ /* output sock */ sh_node_curve_vec_out,
+ /* storage */ "CurveMapping",
+ /* execfunc */ node_shader_exec_curve
+
+};
+
+/* **************** CURVE RGB ******************** */
+static bNodeSocketType sh_node_curve_rgb_in[]= {
+ { SOCK_RGBA, 1, "Color", 0.0f, 0.0f, 0.0f, 1.0f, -1.0f, 1.0f},
+ { -1, 0, "" }
+};
+
+static bNodeSocketType sh_node_curve_rgb_out[]= {
+ { SOCK_RGBA, 0, "Color", 0.0f, 0.0f, 1.0f, 1.0f, -1.0f, 1.0f},
+ { -1, 0, "" }
+};
+
+static bNodeType sh_node_curve_rgb= {
+ /* type code */ SH_NODE_CURVE_RGB,
+ /* name */ "RGB Curves",
+ /* width+range */ 200, 140, 320,
+ /* class+opts */ NODE_CLASS_OPERATOR, NODE_OPTIONS,
+ /* input sock */ sh_node_curve_rgb_in,
+ /* output sock */ sh_node_curve_rgb_out,
+ /* storage */ "CurveMapping",
+ /* execfunc */ node_shader_exec_curve
+
+};
+
/* **************** VALUE ******************** */
static bNodeSocketType sh_node_value_out[]= {
{ SOCK_VALUE, 0, "Value", 0.5f, 0.0f, 0.0f, 0.0f, 0.0f, 1.0f},
@@ -647,6 +705,8 @@ bNodeType *node_all_shaders[]= {
&sh_node_normal,
&sh_node_geom,
&sh_node_mapping,
+ &sh_node_curve_vec,
+ &sh_node_curve_rgb,
NULL
};
diff --git a/source/blender/blenloader/intern/readfile.c b/source/blender/blenloader/intern/readfile.c
index 1f3641306f3..1a630861b31 100644
--- a/source/blender/blenloader/intern/readfile.c
+++ b/source/blender/blenloader/intern/readfile.c
@@ -59,6 +59,7 @@
#include "DNA_ID.h"
#include "DNA_actuator_types.h"
#include "DNA_camera_types.h"
+#include "DNA_color_types.h"
#include "DNA_controller_types.h"
#include "DNA_constraint_types.h"
#include "DNA_curve_types.h"
@@ -119,6 +120,7 @@
#include "BKE_main.h" // for Main
#include "BKE_mesh.h" // for ME_ defines (patching)
#include "BKE_modifier.h"
+#include "BKE_node.h" // for tree type defines
#include "BKE_object.h"
#include "BKE_sca.h" // for init_actuator
#include "BKE_scene.h"
@@ -1186,6 +1188,19 @@ static void test_pointer_array(FileData *fd, void **mat)
}
}
+/* ************ READ CurveMapping *************** */
+
+/* cuma itself has been read! */
+static void direct_link_curvemapping(FileData *fd, CurveMapping *cumap)
+{
+ int a;
+
+ for(a=0; a<CM_TOT; a++) {
+ cumap->cm[a].curve= newdataadr(fd, cumap->cm[a].curve);
+ cumap->cm[a].table= NULL;
+ }
+}
+
/* ************ READ NODE TREE *************** */
/* singe node tree, ntree is not NULL */
@@ -1243,6 +1258,11 @@ static void direct_link_nodetree(FileData *fd, bNodeTree *ntree)
link_list(fd, &ntree->nodes);
for(node= ntree->nodes.first; node; node= node->next) {
node->storage= newdataadr(fd, node->storage);
+ if(node->storage) {
+ /* could be handlerized at some point, now only 1 exception still */
+ if(ntree->type==NTREE_SHADER && (node->type==SH_NODE_CURVE_VEC || node->type==SH_NODE_CURVE_RGB))
+ direct_link_curvemapping(fd, node->storage);
+ }
link_list(fd, &node->inputs);
link_list(fd, &node->outputs);
}
diff --git a/source/blender/blenloader/intern/writefile.c b/source/blender/blenloader/intern/writefile.c
index 49071d175c0..9ead3517fa8 100644
--- a/source/blender/blenloader/intern/writefile.c
+++ b/source/blender/blenloader/intern/writefile.c
@@ -109,6 +109,7 @@ Important to know is that 'streaming' has been added to files, for Blender Publi
#include "DNA_curve_types.h"
#include "DNA_constraint_types.h"
#include "DNA_camera_types.h"
+#include "DNA_color_types.h"
#include "DNA_effect_types.h"
#include "DNA_group_types.h"
#include "DNA_image_types.h"
@@ -362,6 +363,17 @@ static void writedata(WriteData *wd, int filecode, int len, void *adr) /* do not
if(len) mywrite(wd, adr, len);
}
+/* *************** writing some direct data structs used in more code parts **************** */
+
+static void write_curvemapping(WriteData *wd, CurveMapping *cumap)
+{
+ int a;
+
+ writestruct(wd, DATA, "CurveMapping", 1, cumap);
+ for(a=0; a<CM_TOT; a++)
+ writestruct(wd, DATA, "CurveMapPoint", cumap->cm[a].totpoint, cumap->cm[a].curve);
+}
+
/* this is only direct data, tree itself should have been written */
static void write_nodetree(WriteData *wd, bNodeTree *ntree)
{
@@ -375,8 +387,13 @@ static void write_nodetree(WriteData *wd, bNodeTree *ntree)
writestruct(wd, DATA, "bNode", 1, node);
for(node= ntree->nodes.first; node; node= node->next) {
- if(node->storage)
- writestruct(wd, DATA, node->typeinfo->storagename, 1, node->storage);
+ if(node->storage) {
+ /* could be handlerized at some point, now only 1 exception still */
+ if(ntree->type==NTREE_SHADER && (node->type==SH_NODE_CURVE_VEC || node->type==SH_NODE_CURVE_RGB))
+ write_curvemapping(wd, node->storage);
+ else
+ writestruct(wd, DATA, node->typeinfo->storagename, 1, node->storage);
+ }
for(sock= node->inputs.first; sock; sock= sock->next)
writestruct(wd, DATA, "bNodeSocket", 1, sock);
for(sock= node->outputs.first; sock; sock= sock->next)
diff --git a/source/blender/include/BIF_interface.h b/source/blender/include/BIF_interface.h
index 3ead46c8afd..f2248488d81 100644
--- a/source/blender/include/BIF_interface.h
+++ b/source/blender/include/BIF_interface.h
@@ -161,6 +161,7 @@ struct ScrArea;
#define CHARTAB (29<<9)
#define BUT_COLORBAND (30<<9)
#define BUT_NORMAL (31<<9)
+#define BUT_CURVE (32<<9)
#define BUTTYPE (63<<9)
@@ -251,6 +252,7 @@ uiBut *uiDefBlockBut(uiBlock *block, uiBlockFuncFP func, void *func_arg1, char *
uiBut *uiDefPulldownBut(uiBlock *block, uiBlockFuncFP func, void *func_arg1, char *str, short x1, short y1, short x2, short y2, char *tip);
uiBut *uiDefIconTextBlockBut(uiBlock *block, uiBlockFuncFP func, void *arg, int icon, char *str, short x1, short y1, short x2, short y2, char *tip);
+uiBut *uiDefIconBlockBut(uiBlock *block, uiBlockFuncFP func, void *arg, int retval, int icon, short x1, short y1, short x2, short y2, char *tip);
void uiDefKeyevtButS(uiBlock *block, int retval, char *str, short x1, short y1, short x2, short y2, short *spoin, char *tip);
diff --git a/source/blender/include/BIF_resources.h b/source/blender/include/BIF_resources.h
index ce741b9dd1c..ecf6f67331a 100644
--- a/source/blender/include/BIF_resources.h
+++ b/source/blender/include/BIF_resources.h
@@ -182,8 +182,8 @@ typedef enum {
ICON_CHECKBOX_HLT,
ICON_LINK,
ICON_INLINK,
- ICON_BLANK12,
- ICON_BLANK13,
+ ICON_ZOOMIN,
+ ICON_ZOOMOUT,
ICON_PASTEDOWN,
ICON_COPYDOWN,
ICON_CONSTANT,
diff --git a/source/blender/include/butspace.h b/source/blender/include/butspace.h
index c578be6d0fd..6e6815dd41f 100644
--- a/source/blender/include/butspace.h
+++ b/source/blender/include/butspace.h
@@ -40,6 +40,7 @@ struct ID;
struct ColorBand;
struct uiBlock;
struct rctf;
+struct CurveMap;
/* buts->scaflag */
#define BUTS_SENS_SEL 1
@@ -129,6 +130,8 @@ void test_texpoin_but(char *name, ID **idpp);
void test_idbutton_cb(void *namev, void *arg2_unused);
+void curvemap_buttons(struct uiBlock *block, struct CurveMapping *cumap, char labeltype, short event, short redraw, struct rctf *rect);
+
/* -------------- internal event defines ------------ */
diff --git a/source/blender/include/interface.h b/source/blender/include/interface.h
index 526f24e704e..15f2e8ee010 100644
--- a/source/blender/include/interface.h
+++ b/source/blender/include/interface.h
@@ -90,7 +90,7 @@ typedef struct uiLinkLine { /* only for draw/edit */
short flag, pad;
- uiBut *from, *to;
+ struct uiBut *from, *to;
} uiLinkLine;
typedef struct {
@@ -105,7 +105,7 @@ typedef struct {
} uiLink;
struct uiBut {
- uiBut *next, *prev;
+ struct uiBut *next, *prev;
short type, pointype, bit, bitnr, retval, strwidth, ofs, pos, selsta, selend;
int flag;
diff --git a/source/blender/makesdna/DNA_color_types.h b/source/blender/makesdna/DNA_color_types.h
new file mode 100644
index 00000000000..af83b162bdf
--- /dev/null
+++ b/source/blender/makesdna/DNA_color_types.h
@@ -0,0 +1,74 @@
+/**
+ *
+ * $Id$
+ *
+ * ***** 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ *
+ * The Original Code is Copyright (C) 2006 Blender Foundation.
+ * All rights reserved.
+ *
+ * The Original Code is: all of this file.
+ *
+ * Contributor(s): none yet.
+ *
+ * ***** END GPL/BL DUAL LICENSE BLOCK *****
+ */
+#ifndef DNA_COLOR_TYPES_H
+#define DNA_COLOR_TYPES_H
+
+#include "DNA_vec_types.h"
+
+/* general defines for kernel functions */
+#define CM_RESOL 32
+#define CM_TABLE 256
+#define CM_TABLEDIV (1.0f/256.0f)
+
+#define CM_TOT 4
+
+typedef struct CurveMapPoint {
+ float x, y;
+ short flag, shorty; /* shorty for result lookup */
+} CurveMapPoint;
+
+/* curvepoint->flag */
+#define CUMA_SELECT 1
+#define CUMA_VECTOR 2
+
+typedef struct CurveMap {
+ short totpoint, pad;
+
+ float range; /* quick multiply value for reading table */
+ float mintable, maxtable; /* the x-axis range for the table */
+ CurveMapPoint *curve; /* actual curve */
+ CurveMapPoint *table; /* display and evaluate table */
+
+} CurveMap;
+
+typedef struct CurveMapping {
+ int flag, cur; /* cur; for buttons, to show active curve */
+
+ rctf curr, clipr; /* current rect, clip rect (is default rect too) */
+
+ CurveMap cm[4]; /* max 4 builtin curves per mapping struct now */
+} CurveMapping;
+
+/* cuma->flag */
+#define CUMA_DO_CLIP 1
+
+
+#endif
+
diff --git a/source/blender/makesdna/intern/makesdna.c b/source/blender/makesdna/intern/makesdna.c
index 5417164f915..87174abab38 100644
--- a/source/blender/makesdna/intern/makesdna.c
+++ b/source/blender/makesdna/intern/makesdna.c
@@ -124,6 +124,7 @@ char *includefiles[] = {
"DNA_constraint_types.h",
"DNA_nla_types.h",
"DNA_node_types.h",
+ "DNA_color_types.h",
// if you add files here, please add them at the end
// of makesdna.c (this file) as well
@@ -1131,4 +1132,5 @@ int main(int argc, char ** argv)
#include "DNA_constraint_types.h"
#include "DNA_nla_types.h"
#include "DNA_node_types.h"
+#include "DNA_color_types.h"
/* end of list */
diff --git a/source/blender/src/blenderbuttons.c b/source/blender/src/blenderbuttons.c
index e3212c63830..2d1f8708454 100644
--- a/source/blender/src/blenderbuttons.c
+++ b/source/blender/src/blenderbuttons.c
@@ -1,1548 +1,1548 @@
/* DataToC output of file <blenderbuttons> */
-int datatoc_blenderbuttons_size= 49344;
+int datatoc_blenderbuttons_size= 49369;
char datatoc_blenderbuttons[]= {
-
-137, 80, 78, 71, 13, 10, 26, 10, 0, 0, 0, 13, 73, 72, 68, 82, 0, 0, 2, 0, 0, 0, 1, 0, 8, 2, 0, 0, 0, 74,242, 89,
- 48, 0, 0, 0, 9,112, 72, 89,115, 0, 0, 11, 19, 0, 0, 11, 19, 1, 0,154,156, 24, 0, 0, 0, 4,103, 65, 77, 65, 0, 0,
-192,153,201, 12,156,227, 0, 0, 0, 32, 99, 72, 82, 77, 0, 0,110, 39, 0, 0,115,175, 0, 0,246,112, 0, 0,129,232, 0, 0,
-107,215, 0, 0,226,170, 0, 0, 48,131, 0, 0, 21, 42,251,118,133,113, 0, 0,192, 54, 73, 68, 65, 84,120,218, 98,244,137,169,
-101, 24, 5,163, 96, 20,140,130, 81, 48,242, 0, 64, 0, 49,141, 6,193, 40, 24, 5,163, 96, 20,140, 76, 0, 16, 64,163, 21,192,
- 40, 24, 5,163, 96, 20,140, 80, 0, 16, 64,163, 21,192, 40, 24, 5,163, 96, 20,140, 80, 0, 16, 64,163, 21,192, 40, 24, 5,163,
- 96, 20,140, 80, 0, 16, 64,163, 21,192, 40, 24, 5,163, 96, 20,140, 80, 0, 16, 64, 44,112,150,175,173, 12,241,218, 54, 31,126,
-130,204, 29,213, 59, 8,245,162,105,167,186,189, 7, 14, 28,112,112,112, 24, 13,231, 81,189,163,122, 7,185, 94, 60, 0, 32,128,
- 88,134, 71, 61,150,158,158, 14,103,207,156, 57,115, 64,108,159, 49, 99, 6, 35, 35,227,176,111, 50,192,131, 58, 50, 50,114,205,
-154, 53, 16,118, 72, 72,200,104, 99,106,248, 69, 52,253,179,210, 40,160, 51, 0, 8, 32, 22, 90,164,128,219,183,111,247,244,244,
- 64,216, 37, 37, 37,170,170,170,116,240,201,255,255,255,129, 36,253,139, 96, 96, 40, 61,120,240, 0,200, 80, 80, 80, 24,144,234,
- 7,107, 45,136,213, 37,192, 54, 59,126, 19,150, 47, 95,142,223,253, 64, 43, 86,173, 90, 5, 97,175, 95,191,222,213,213, 21,194,
- 6,214, 4,180,171, 3,140,141,141,129,228,217,179,103,201,144, 29,153,224,222,189,123,157,157,157,112,110,121,121,185,146,146,
-210, 32,175, 54, 6,208,205, 35, 25, 0, 4, 16, 11,158, 66, 28, 66,146, 90,124, 67,138,161,198, 85, 45, 60,178,252, 95, 30,127,
-172, 15,171, 25,216, 98,145,214, 0,232, 53, 96,209,255, 0, 12,118,236,216, 65,255,118, 19, 36,192,103,130, 1,144,221,213,213,
- 5,228,150,149,149, 97, 85, 28, 24, 24, 8, 97,252,249,243,247,215,239,159,191,126,254,130,128, 63,127,254,224,210,130,181,244,
- 71, 3,192,154,128,166,117, 0,158,218, 11, 82, 1,140, 2, 92,237, 0, 32,128, 20,172,116, 72,150, 16,171,201,200, 2, 3,232,
-230, 17, 14, 0, 2, 8,103, 5, 0,108,194,175,170,173, 10,107,110, 35, 41, 14,128, 17, 9, 41,250,129,236, 55,223,222, 50, 8,
- 51, 84,238,109,248,116,239,125,122, 42,253,138, 69,204,196, 68,107,171,225,117,128,135,135, 7,144, 4,178,233,233,217,253,251,
-247, 3, 25,142,142,142,104,117, 0, 30, 0, 44,238,127,253,250,253,235, 23, 74,233,127,230,204, 25, 19, 19, 19,130, 54,134,133,
-133, 65, 24,145,145,145,187,119,239,134, 87, 0,100, 68, 16,145,161, 4,108,221, 3, 75,127, 55, 55, 55,100,193, 93,187,118, 1,
-251, 43, 16, 54,214,169,136, 17, 94,250, 35,135, 45, 25,229, 50,217, 90,200,232, 7, 80,203,205,163,128, 12, 0, 16, 64, 44,184,
-154,255,106,106,106,170, 60,124, 36,117, 2,224,165, 63,176,232,111,119,110,128, 8, 38,110,204, 98, 16, 99, 8,236, 10, 35, 24,
-151,152, 5, 55,121,101,247,227,199,143,129,164,172,172, 44,156, 1, 49,153,186,135, 94,160,121, 7, 94, 7,252,254,253,103,198,
-140, 25,148, 55,130,136,209,142, 86,250,195, 53, 98, 13, 73,148,210,255, 55,176,244,255,249, 19, 92, 9,192, 75,255,255,255,254,
- 19, 83,250, 3, 85, 66,216,189,189,189,240, 38, 63,124, 50,128,120, 55,163, 57,155,120, 0, 47,250,129, 53,144,161,161,225,104,
- 30, 70, 30, 69,193,154,120,224, 73, 2,168,128,224,184, 10,188, 67, 9, 73,195,112, 46, 49,205, 32,204,162,156, 96, 70, 64,115,
- 51,176, 73,193,200,200,232,226,226, 66,146,155, 33, 32, 57, 57,121,238,220,185,163,201,128, 36, 0, 16, 64, 76,184,154,255, 45,
-225, 33, 63, 94,191, 46,209,214,128,143,230,227, 7,144, 33, 35,120,233, 95, 82, 82, 2,140, 66, 32, 57,223,127, 26, 80, 92, 64,
- 93, 4,174, 6, 15, 40,155,122, 11,136,178,123,174,199, 55, 95, 9,170,188, 64,170,103,158, 60,121,130,167, 74,160,110,233, 15,
- 44,235, 49,139,108, 96, 29, 0, 44, 82,205,205,204, 72, 53, 13, 50,186, 2, 4,251, 97, 0,127, 33, 14, 47, 73, 29,193, 0, 51,
-195,227, 46,253,255,130,138,253,159,160,193, 31,228,210,255,239,223,191, 95,191,127, 37,232, 84, 72, 47, 1,185,163,176, 6, 12,
-136, 28,252, 1,185, 25,105, 36, 7,200, 38,232, 77,172,165, 63,176,232, 7,246,114, 32,165, 63, 43, 11,235,104, 54, 38, 56,108,
- 2, 17, 68, 30,100,199, 95,148,147,215, 2,131, 40, 70, 46,253,113, 53,236,176,186, 25, 88,250, 3,211,210,234,213,171,247,236,
-217, 67,170,155,129,165, 63, 11, 11, 11,144, 28, 77, 6, 36, 1,128, 0, 98,194,211,252,255,246,226,185,167,161, 17, 49, 5, 55,
-164,206, 0, 54,255,129, 12, 72,233, 15,233, 52, 0, 73, 72, 29,240,228,211, 51,163, 50, 11,130,117,201,215,239,192, 98,232,239,
-243,183, 63,159,190,254,241,248,229, 15, 34,139, 78, 72, 10,195, 85,250,211, 14, 96,214, 1, 64,240,227,215,207, 31, 63,126, 16,
-111, 8,164, 28,135,140,173,139,138,138,194,155,198,248,115, 14,114, 59, 26,179,227,140, 39,223,130,198,253,129,197, 63,184,241,
- 15, 47,253,127,255,254,253,245,235,215,207,159, 62,211,122,116, 98,213,170,213, 48, 30, 35, 24, 50, 0, 69,136,175, 3,224,165,
- 63,164,232,103, 98, 98,226,224,224,224,230,225, 26,205,198, 52,234,215, 18,217,167,196, 90,121,160,141, 8, 17,163, 23,222,143,
- 4,214, 1, 36, 57, 27, 82,250,131, 6, 52, 70,235, 0, 18, 1, 64, 0,118,205, 94, 7, 65, 24,136,227, 36,208,224,238, 32,239,
- 64,124,156,250, 8,142, 60, 15,137, 3, 59, 60,150,176, 16,135,106, 75, 33, 90,130, 7, 37, 23, 98,180,158,137, 35, 55, 53, 13,
-133,210,143,223,221,253,219,224, 45,202, 79,199,121, 16,155,242,108,147, 0, 74, 32, 96,195,127,203,125,172,196,242,118, 31,125,
-125,131,106,123,169,205,173, 49, 87,101,132, 52,148, 31,120,185,252,131,193, 62, 22, 32,133, 20, 66,252,119,212,210, 52,197,131,
- 95, 84,252, 97,149, 67,125,215,182,116, 7, 0, 77,178, 44, 43,171,138,249,254, 46,138,144,254, 73,146,196,113,236,216, 54,240,
- 69,120, 12,125,192, 50, 47,113,159, 64,220, 39,254, 63, 70,250,247,150,254,224, 13,180,214, 74, 41, 41, 73, 14, 0, 37, 32,107,
-244,216, 63, 47,114,111,240, 46,117, 61,206,154,157,179, 97, 24,125, 64, 81, 28, 56,167, 44,176, 37,253, 25, 99, 97, 24,110, 38,
- 35,246,124, 53,138, 2,249, 9,220,116, 45,200,161, 8,185,141,115,110,209,255,211,109, 2,164,255, 76,180, 32,128,200,102,213,
-130,136,246, 20, 64, 76, 88, 71,114, 76,148, 85,127,188,126, 13, 44,253,129,108, 59,112,179,148,152, 78,192,189, 43,119,144, 13,
- 65, 99,191,189,252,130,160, 9,164,150,254,240,162, 31, 88, 13,200,202,202,194, 5,127,195, 0,176,232, 7,182,109,223,189,123,
- 71,221, 80,131, 88,186, 99,199, 14,120, 63, 0, 82,250,235,233,233,253, 0,214, 0,223,191,195,107, 38,252, 89,110,234,180,169,
- 64, 71,202, 72, 75,255,254,251, 23,173,244, 39,152,109, 32,117, 0,114,131, 11,178, 26, 21,107,191, 4,165, 2,248,245, 27, 82,
-250,159, 62,117,250,219,247,239,192,210,243,227,199,143,192,128,122,255,254, 61,241, 33, 0, 25, 5, 34,126,232, 31,148, 0,222,
-188,125,251,246,205,155,183,239, 64, 52,152, 9, 20,212,208,212,124, 7,102, 16,211,252, 7,146,192,210, 31,218,240,231,230,230,
-225,225,229,229,225, 5, 50, 70,179, 49,174,210,156,248, 6, 56,100, 5, 1,156,129,139, 77,146,237,104, 35, 66, 4,117,185,184,
-184, 0,235, 0, 96,233,239,234,234, 74,124,159, 3, 88,214, 3, 75,124, 56,119,180,244, 39, 9, 0, 4, 16, 19,102,243,127, 85,
-109, 21,144,241,237,197,115,184, 32, 49, 51, 1, 37, 37, 37, 83, 83, 39, 50,128,103,125,129,138,225,171, 72,129,108,215,197, 1,
- 64,246,185,174, 19, 64, 53,212,117, 61, 60,109, 61,121,242, 4,210,228,135,148,251,208,238,203,215,175,192,210, 13,216, 30,231,
-226,162,254, 40, 1,208,234,140,140, 12,144,141,127,254, 92,187,118,237,252,185,115,250,122,250, 63,126,128, 59, 0,223,191, 47,
- 89,188, 24, 34,139, 39,185,247,246,246,106,105,106, 1, 93, 11, 12,165, 63,191,127, 61,125,242,148,108,239, 51,192,102, 32, 24,
-192,219, 17,240,245, 0,126,255,252,243, 23, 52,242,115,242,228,137,175,223,191,126,249,252, 9, 88,250,191, 7,149,254,239, 72,
-170, 38, 33,253, 0,146, 90,106,135, 14, 29,250, 12, 2,159,192,228,103, 17, 97, 97, 96,233,127,227,250,245,131,135, 14, 17,163,
- 29,210,252,103, 97, 97, 5,198, 38, 15,176,236, 7, 98, 30, 46, 78, 46,206, 23, 47, 94,140,102, 99, 8, 40, 47, 47,135,151,191,
-240,201, 85, 8, 3, 34, 8, 81, 64,100,179, 29,255,184, 16,254,210,159,248,182, 63,154,155,129,117, 0,176,244, 39,201,205,200,
-117,192,104,233, 79, 42, 0, 8, 32, 44, 67, 64,194,247, 31,188, 3, 15,254,192, 69,128,157,128, 30,134, 27,248, 13,130, 12,245,
-220, 56,123, 77, 64, 93, 4, 88,226,247,196, 66, 43, 12, 72,233, 15,105,254, 19, 92, 77,180,174,221,128,188,246,248,245,235,215,
- 33, 41, 0,121, 52,128, 21, 12, 94,191,126,237,229,229, 69,139,176,131,148,185,192,134,191,153,153,217,143,159, 63,191,255,248,
- 14,110,253,127, 7, 49,126,252,152, 50,101, 10,174,156, 3, 89,169,249,247,239,223,179,103,207,177,178, 48, 67, 66,230,254,131,
- 7, 79,159, 62, 93,190,124, 69,100,100, 4, 80, 4,222, 15,192,154,193,224,131, 78,104, 45, 56,130, 43, 80, 33,109,255,227,199,
-143,127,253,242, 13, 82, 65,126,250,252,233,211,167,143,159, 62,125, 33,126, 32, 5,210,252,135,239, 4, 38,166, 26, 0, 42,134,
-179, 21, 21, 20,128, 69, 63, 40,181, 92,191,126, 31,220,107, 65,150,197, 3, 44,173, 44,217,217,216, 57, 57, 57,129, 61, 0,118,
-118,118, 96,228, 82,125,122,127, 72, 3,228,213, 50,240,197, 51,240,154, 0, 77, 1,254, 66, 28,235, 80, 62, 73, 61, 15, 34,171,
- 13,106,185, 25, 82, 7,140,150,254,164, 2,128, 0, 98,193, 28,255,113, 94,178, 12,171, 82,130,235, 65, 33,205, 7,163, 50, 11,
- 97, 93, 9, 72,185, 15, 31,252, 1, 54,255, 9,166, 6,242, 22,252, 66, 44,213,212,212,188,124,249, 50,188, 8,195, 28,244, 7,
- 42, 35,254,124, 12, 82,109, 71, 22, 89,178,120, 9,176,244,135,236,176,194,186, 30, 31,121,157,254,191,127,127,245,244,141, 46,
- 94,188,116,253,218, 53, 22, 86, 86, 96,201,248,228,233, 19, 96, 83,151,153,153, 57, 44, 44, 12, 88, 7, 48, 48,240, 99,154, 0,
-212, 14,201, 93, 16,219,209,246, 1,224,119, 48,176,244, 63,122,244,232, 23, 32, 0,205,250,126, 2,151,254, 64,226,243,151,207,
- 95,190,126,251, 70,208,179,192,162,255, 12, 24, 48, 96, 44, 3,197, 95, 13, 56, 56, 56, 32, 7, 20,164,220, 63,127,254, 60, 3,
- 17,219,143,141,193, 0,200,224,225,226,225, 0, 21,254, 28,108,108,108, 76, 76, 76,163,165, 63,250, 24, 44, 82,185,185,122,245,
-106, 96,107,154, 1,117, 66,149,152, 37,149,200,109, 11, 82, 87, 51,147, 49,238, 79, 21, 55,195,235,128,209, 52, 64, 42, 0, 8,
- 32, 22,180, 86, 60,133,219, 46,224, 41, 0, 82, 13, 64,138,126, 6, 26,111,197,130, 88,170,171,171,123,250,244,105, 96,123, 31,
- 81,241,188, 5,205, 72,199,198,198,210, 52, 4,145,189,246,255,255,255,152,216,152, 41, 83,166,130,199,217,255,240,243,243, 19,
-172,231,110,221,186, 5,108,209, 66,244, 2,217,104,202,238,225,168,180,144,235, 0,200,108, 48,100, 73, 40,254,112,134, 44,159,
-183,182,182,166,196,179,240, 53,160,164,158, 5, 4,212,123,224,192,129,229, 96,128,220, 51, 32, 50,109, 0,171,144,223,127,126,
-255,254,252,123,116,202, 23, 23, 32,184, 98, 18,168,128,200,208,134,239, 3, 32, 47, 51, 18,175,145,138,110, 30, 5,100, 0,128,
- 0,162,254, 97,112,192,216, 2, 13,253,119,209,245, 44, 32, 72,178, 51, 53, 53,221,182,109, 27,164,220,167,188,111, 65,222, 96,
- 20,124, 47, 46,214,210,159, 42, 0,243,204, 6,200,178, 81,130, 77, 54,170,132, 3,220, 16, 96,105, 78,234,217, 15, 14, 96, 64,
-170,141,163,231,252,144,209, 22,161,127,226, 39,207,198, 65,226,230, 17, 11, 0, 2,136, 38,167,129, 82,222,147, 32,187, 14,160,
-209,112, 63,237, 50, 0,229,134,143,230,150, 81, 48,228,146,241, 40, 24, 36, 0, 32,128, 24,169,123, 64,194, 40, 24, 5,163, 96,
- 20,140,130,161, 2, 0, 2,104,244, 70,176, 81, 48, 10, 70,193, 40, 24,161, 0, 32,128, 70, 43,128, 81, 48, 10, 70,193, 40, 24,
-161, 0, 32,128, 70, 43,128, 81, 48, 10, 70,193, 40, 24,161, 0, 32,128, 70, 43,128, 81, 48, 10, 70,193, 40, 24,161, 0, 32,128,
- 70, 47,133, 31,213, 59,170,151,230,122,113, 45,207,165,181,222,209, 56, 26,213,139, 31, 0, 4,208,104, 15, 96, 20,140, 2, 2,
-224,231,207,159, 79,158, 60,185,126,253,250,131, 7, 15,200,216,134, 6, 57,221, 30, 66,146, 10,136, 57, 82,127, 20, 96, 5, 55,
-111,222, 28, 13, 4,130, 0, 32,128, 88, 70,131, 96, 0,193,181,107,215, 38, 78,156, 8,231,230,231,231,107,105,105, 13,114,189,
- 35, 10,252,254,253,251,212,169, 83, 87,175, 94, 69, 22,148,148,148,116,112,112,224,229,229, 37,198,132,123,247,238, 65, 14, 54,
- 0,146, 74, 96, 64,106,233,255,255,255,127, 70, 70, 70, 82, 79,100, 67, 83, 76,188,118, 50,244,146,122, 82, 52,145, 93, 28, 10,
- 75,255,254,254,254, 25, 51,102,140,166, 97,252, 0, 32,128,134, 97, 5,112,248,240, 97, 91, 91,219,193,239, 78, 72,182,233,237,
-237,133,139, 20, 23, 23, 51, 16,125, 25, 36,144,252,183, 82, 16,209,149, 11,159, 72, 7,189, 35, 10,124,253,250,117,211,166, 77,
-152, 77,254,231,207,159,175, 89,179,198,213,213, 85, 70,134,112,175, 28,249,168, 3,146, 78, 53,128,151,254,100,212, 1,148,236,
- 22, 36, 67, 47,228, 28,127, 60,206, 3,246,126, 32,135,252,144, 84, 7, 16,212,133,191,244,255,247,239,223,172, 89,179,150, 46,
- 93, 26, 29, 29, 61,154,152,113, 1,128, 0, 26,134, 67, 64, 75,112, 28,102, 55,216, 74,127, 96,187, 27,185,244,135, 84, 6, 64,
- 65, 98, 46,131, 92,144,203,141, 92,130, 67, 10,116,160, 32, 77,245,126,252,248, 49, 51, 51, 19,126, 11,205,139, 23, 47,128, 90,
- 90, 91, 91,155,155,155,171,170,170, 32,231,245,227, 2,108, 31,191,234,102,206,231,217,127, 31,194,253,243,226,207,213,244, 31,
-151, 90,217,142, 52, 11,110,174,146, 63,183, 75,122, 16,198, 17,176, 0, 66, 46,253,207,156, 57, 19, 21, 21, 5,239, 25, 0,101,
-191, 17, 58, 62,143, 1,227,156,125, 50, 74,127, 8,128,176,137, 28, 11,194,122,164, 51, 73, 86,147,164, 23,114,142, 63, 68,229,
- 30, 48, 64, 11, 70,252, 55,124,193,245, 98,234, 34, 99,236, 11, 94,250, 3,155, 83,192,210,255,200,145, 35,163,165, 60, 30, 0,
- 16, 64,195,173, 2, 0, 54,255,129,109,165, 65, 30,235,215,174, 93, 3,146,114,114,114,240,134, 63,164,237, 15, 23,132, 40,192,
-163, 55,206,134, 13,214,120,127, 15, 68, 16, 54, 68,144, 70,122,129,224,228,201,147, 28, 28, 28,199,143, 31, 71,164, 30, 38,166,
-234,234,234,218,218,218,248,248,248,173, 91,183,226,209, 43,113,242,218,127, 14, 86,174,227,143,224, 34,140, 76,255,245,170,127,
-217,212,190, 55,143,127,117,122,235,160,171, 0, 30, 63,126,252,242,229, 75, 60, 10,126,253,250,117,249,242,101,218,117, 13, 33,
-173,126, 8, 32,178, 14, 64,158, 48, 72, 71, 5, 12,132,166, 19, 40,209, 11,175, 3,222,189,115,153, 57,243, 61, 73,165, 63,214,
-250, 3,174,139,212, 94, 41,176,244,239,235,235, 3,134, 24, 48,101, 2, 43,108, 96,105, 48, 90,196,227, 7, 0, 1,196,132,191,
- 48, 37, 35, 4,129,133, 8,114,234,193, 95,166, 96,181, 20,162,145,188,200, 3, 54,255,103,204,152, 70,118, 39,128, 62, 41,102,
-226,196,137,240,182, 63,176,232,239, 5, 3,120, 29, 0,100, 35, 15,208, 99,234,133,183,223,129,197,247,237,109,177, 64, 4, 47,
-199,129, 82,196,235,133,180, 73,137,212, 11, 44,125,142, 29, 59, 6,236, 77, 63,122,244,232,249,243,231,104, 82, 15, 31, 62,148,
-148,148,100,192,173, 89,242,216,149, 39,209,214,108,143, 62, 50, 62,135,183,154, 33, 87,185, 49,188,123,200, 46, 36,249,125,176,
-101, 12,200,245,106,248,193,253,251,247,113, 73,221,187,119, 15, 79, 81,139,124, 6, 50,254,182, 63,218,189,114,248,235, 0,228,
- 27,184,102,162, 2, 6, 66,247,115, 33,203,254, 95, 37,136,140, 24, 72,188,219, 11, 82,238,147, 84,142, 35,215, 31, 64, 68, 94,
-233, 15,236,158, 78,152, 48, 1,216,246, 47, 40, 40, 0,214, 1,144,182,224,244,233,211, 71, 75,121, 60, 0, 32,128, 88,240, 20,
-133, 75,151, 46,135, 36, 56,226,135,212, 33, 73, 51, 38, 38, 6,162, 5,104, 8,164, 76, 33, 50, 46,129,234,151, 44, 89, 2,212,
- 14, 46,202,151,144,100, 53,188,249, 15,201, 39,100,204, 4, 64,108, 39,213, 82, 74, 0,164,244,135,151,251,200, 92,194, 85, 55,
-184,244,135,176, 65,117,128,215, 98,180,129, 29,252,122,225, 49, 2,174, 3,210, 9,234, 5, 22,241,192, 54,175,177,177, 49,176,
-119, 5,236, 4, 4, 5, 5,129,234,140,127,255,218,219,219,191,124,249,194,202,202, 10,204,126,184,244, 10, 61,124,202,244,235,
-207, 7, 99, 5,214, 35,207, 88,142,191,252, 29,164, 8,138,163,127,255, 47,181,179,189,251,194,251,157,149,199, 53,243,246, 96,
-203, 24, 64, 79,193, 71,126,224,130, 69, 96,192, 0,187, 18, 7,174, 6,179,248,195,223,236,237,236,236, 4,150,119,152, 3,220,
-152, 37, 59,188,249,143,169,114, 16,158,226,149,158, 46,136, 84,163,128, 26, 22,192, 96, 32,251,158, 15, 82,219,254,192, 92, 15,
-191, 27,210,198,198, 6,152,157, 71, 75,127,130, 0, 32,128, 88,112, 23,133,203,102,206, 4, 5, 95, 70, 70, 22,145,101, 34,100,
- 92, 27,121, 61,137, 45, 24, 64,250, 4, 4, 99, 20, 94,250,195,237, 34,181, 56, 6,186, 57, 38, 38, 10, 92, 3, 69, 1,217,164,
- 86, 30, 64,235,224,247, 25, 12,137,105,100,122,130,163, 71,143,154,155,155, 3,203, 35, 32,185, 97,195,134,128,128, 0,200, 16,
- 80,101,101, 37, 3,248,234,133,229,203,151, 3,165, 76, 77, 77, 49,245,202, 31, 61,243,194, 92, 19, 88,152,125, 53,151,101,222,
-240,252,119,128, 34,120, 8,136, 65,175,242, 23, 80,235,215,183, 31,247, 45, 87,145, 55,255,162,103,250,100,240,248, 23, 88,165,
- 65, 24,125,125,125,240,210, 31,206,134, 0, 54, 54, 54, 92,109, 32,252,108,112,201, 8, 2,152,133, 56,242,157, 42,184,174,149,
-198,122,113,227,128, 3, 96,125,134,185,212, 21, 50,182, 67, 42, 32, 67, 23,228,204,112, 22, 22,150,194,194, 66, 96,157, 61, 58,
-244, 79, 36, 0, 8, 32,236, 21, 0,176,237, 15, 41, 73,129, 32, 58, 58, 18,200, 37, 88, 32, 66,134,122,176,174, 38,132, 8, 2,
- 21,224, 95,107,136, 86,250, 67, 24, 64, 65, 34,203, 98, 96,148, 3,139, 39,136, 98, 32, 9,172, 0,136,239, 4,192, 75,127,228,
-220, 69,100,157, 71, 73,251, 5,185,213, 79, 82,243, 31, 50, 98, 3,108,245, 67, 58, 1,170,164, 52,255,161,122,195,211,225,119,
- 63, 17,212,251,251,247,111, 96,166,226,229,229,189,116,233,210,223,191,127, 63,125,250,116,253,250,117, 97, 97, 97,184, 2, 32,
-219,219,219,123,218,180,105,152, 21, 0,243,239,223,178,103, 46,179,241, 74,179, 94,122,251,241, 47,239,231, 79,108,127,175,127,
- 97, 16,230,128, 43,224, 22,254, 99,234,253,100,225, 52,219, 65, 85, 1,136,136,136, 64, 6,106,150, 45, 91, 6,175, 0,144,185,
-160,158,141,144, 16,214,168,199, 28,250,192,188,100, 17,210, 3, 64,219,176, 67,210, 90, 29, 90,220,112, 71, 57,128, 52,252,129,
- 93, 1,228,222, 0,241, 29, 8, 96,184,145, 81,250, 47, 93,186,244,208,161, 67,255, 87, 9, 50,134,189,239,239,239, 7, 86,156,
-192,166,201,232, 26, 80, 98, 0, 64, 0,177, 96, 45, 13,129, 33,136, 92, 16, 3, 43, 0, 96,241, 10,236, 85,225, 49,104,226,196,
-137,144,161, 27,172, 0, 40, 5, 84,128, 39,125, 67, 6,223,209,202, 92,112, 57,190,132,152,114, 28,185,203, 2, 1,177,177,209,
-139, 23, 47, 37,166, 28, 71, 46,253,209, 90, 88, 4,245,226,241, 50, 30, 0,236, 39,193,139,123,248,232, 63,242,172, 0, 80, 1,
- 30,189, 76,225,208,161,124, 72, 29,192,128,180,166,147, 41,252, 61, 9,122,195,211,137,212,123,225,194, 5, 57, 57, 57, 96,219,
- 10,194, 93,180,104,209,241,227,199,125,124,124,144,213,188,124,249,146,131,131, 3, 83,175,194,133, 11, 31,228, 36, 79, 22, 38,
- 65, 91,205,139,110,255, 61,254,145,201, 7, 69,229,199,151,156,236, 28,191, 7, 85,198, 80, 85, 85, 61,119,238, 28,124, 72, 1,
- 43,192,213,160, 1,150,236, 74, 74, 74,120,238,186, 42, 47, 47, 39,114, 67, 0,242, 16, 16,174, 14,193,224, 4,164,174,224, 68,
-190, 12,146, 36,189,203,150, 45, 61,112,224, 0,227, 26, 80,115,100, 87, 13,175, 91,203,103, 59, 59,187,209,165,159, 68, 2,128,
- 0, 98,193, 44, 13,145,155,255,240, 78, 0,176, 48, 69,174, 21,176, 2, 60,178,144,162,156, 96,243, 31,107, 9, 75,176, 19, 0,
-113, 51,114,233, 15, 25, 4, 4, 58, 24, 40, 14,204, 66,120,170, 46,204,210,159,164, 58,128,188,145, 34, 72,193,241,232,209, 35,
-200,154, 31,228,134, 63, 80, 16, 79,201, 2,151, 90,116,228, 23,100,221, 14,114,227, 29, 40, 72, 35,189,192,226, 30,217,167,246,
-246,246,221,221,221,206,206,206,255,254,253,107,107,107, 3,146,223,191,127, 7,134, 51,214, 24, 84, 63,126,252,146,173, 3,156,
-251,199, 94,242,111,247, 99, 6,103,177,255,255, 24, 46,181,177,126,249,199,243,238, 59,223, 59, 70, 33,191,152,139,131, 42, 99,
-112,115,115, 27, 27, 27,159, 60,121, 18, 46,210,215,215,135,220,252,151,151,151,199, 83,136, 3,165,240, 79,183,146, 82, 52,174,
- 2,145,123,194,136,233,143,194,211, 45,214,213,156,120,238,107, 68,214, 11,108, 71,147,164, 23,179, 21, 15,185,195,153, 14, 0,
-232, 36,208, 52, 53,164,244,191,244,103,254,254, 95,224,242,106,180,244, 39, 22, 0, 4, 16, 74, 5,144,145,145, 5,186,213, 54,
- 38, 10,179, 37, 14, 25, 23, 2,162, 25, 51,166,209,200, 41, 88, 11, 83,130, 53, 7,220,205,184, 12, 4, 86, 93, 64,132, 86, 61,
- 32, 87, 60,120, 50, 42, 48,121,209,104, 50, 0,158,217,200,216, 8, 6, 84,144,144,158,158, 48,249, 43,234,102,174,247,180,211,
- 11,190,158,158, 1,185,236,155, 50,101, 10,145,101,217, 54, 84,189,255,228,121, 56,167,104, 2, 25,218, 51, 89, 25, 24,128,173,
-254,247, 96,244,112, 16,230, 13,125,125,125, 22, 22,150, 83,167, 78,253,254,253, 27,109,240, 7, 88, 83, 90, 88, 88, 16, 89, 66,
- 33, 51,232,112, 91, 28,214,146, 26, 46, 66,112, 21, 16, 25,122, 49, 91,241, 36,109,120,166,164,244, 7, 38, 99, 96,185, 15,100,
- 47,216,255,107,197,177, 95,192,162, 96,116, 63, 35, 73, 0, 32,128, 80, 42, 0, 60,133, 59,100, 58,151, 96,226, 35, 91, 1,217,
- 55,217,226,175,144, 40,116, 54,173,179,235,181,107,215,224,171, 63, 25, 72, 57,146, 1,162, 23,178,131,151,158,122, 71, 26,208,
-214,214, 6,246,210,206,158, 61,251,244,233,211,175, 95,191,178,177,177, 73, 74, 74,234,233,233,225, 91,243,138, 49,218, 3, 31,
- 11, 2,178,233,227,108, 58,239, 4, 30, 88,224,222,242,121,168, 56,117, 16, 2,128, 0, 26, 61, 11,104, 32, 1,176,216, 37, 59,
-201, 14,148,222,145, 6,120,121,121,201,184,200, 30,121, 44, 8,114, 82, 2,144, 36,190, 93,140,178,250, 19, 54,248,131,107, 73,
- 40,174,241, 28,252, 34,180,208, 75,139,170, 11, 63, 0,118, 94,129,193,226,231,159, 6,237,110,110, 63, 7, 97,120,121, 26,141,
- 38, 93, 98, 0, 64, 0,141, 86, 0,163, 96, 20,208, 22,184,184,184, 0, 43, 0,226, 39, 54, 41, 47,109, 7,182, 7, 64,223,218,
-226, 63,100, 71,225, 40, 32, 15, 0, 4,208,232,165,240, 35, 17,112,254,188,241,157, 93, 99, 52, 28, 70,193, 40, 24,225, 0, 32,
-128, 70,239, 3, 24,137, 96,180,244, 31, 5,163, 96, 20, 0, 1, 64, 0,141, 86, 0,163, 96, 20,140,130, 81, 48, 66, 1, 64, 0,
-141, 86, 0,163, 96, 20,140,130, 81, 48, 66, 1, 64, 0,141, 86, 0,163, 96, 20,140,130, 81, 48, 66, 1, 64, 0,209,228, 82,248,
-251, 87,143, 51, 48,253,144,148,145,254,252,253,235,251,183, 95,213, 52,109,136,215,123,228,220, 93,134,127,236, 47,159, 62,229,
-230,228, 22, 20,226, 54, 55, 81, 36, 94, 47, 37,110,254,247,102, 10, 47,207,119, 78,110,102, 22,102, 38, 70, 14,198,231,159,242,
-137,215,251,137, 55, 72, 80, 88,144,159,135,153,129,133,225,221,133, 89,248,237,229,148,190, 65,188,155,191, 63, 69, 25,172,151,
-226,122, 73,188,222,103,223,196, 81,244,254, 36,193,222,103,168,147, 4,210,191, 72,184, 94,245, 41,155,250, 96,208,171,141, 45,
-156, 59, 59, 87,151,151, 99, 57,106,230, 42,106, 56,115,202,252, 34, 33,142,158,160, 28, 9,231, 43, 77, 66, 28,109,126,138, 18,
- 71, 63,126,114, 19,175,151,131,253, 43,138, 81,126, 83,136,215,235,187, 41, 7,153, 91,252,130,132, 99,115,122, 37, 50,104,148,
- 7, 71,245,210, 72, 47, 30, 0, 16, 64,248,150,129,166, 30, 40, 98,116,140,159,245, 95,159, 24,131,238, 93,217,197,200,240,143,
-135,157,115,254,204,101, 11, 23, 78,180,118,177,254,243,245,155,150,134,221,191,127, 12,217,101,127,181,180,212,239,220,121,248,
-227,251, 31, 94, 73,107, 76,189, 71,207,191,250,207,192,248,229,231,247,244,162,150,198, 73,238,207,174,158, 5, 38,239,109, 23,
-159, 48, 49, 49, 76,108,168,185,117,235,166,130,130, 60, 59, 39,139,176, 32, 59, 22,123,215, 77, 99, 99, 99,227,228,228,228,225,
-225, 17, 17,224, 16,101,229, 21,149,228,230,103,231, 21, 96, 99, 98, 97, 97,249,255,239,239, 39,102,134, 79,175, 62, 29,230,213,
-197,229,242,143,119,167,242,114,126,228, 19, 96,227,225,102,101,227,100, 98, 97,102, 96, 98, 99, 81,151,158,253,251, 63,243,189,
-103, 73,248,125,189,255,145,178,136,136,136, 56,207,143,239, 63,126, 50,177,115, 50,252,102,248, 35, 23,243,225,253, 59,145,207,
-219,104, 87,105,207,154, 53, 43, 45, 45,109,180,241, 66, 16,224, 42,238, 73, 85, 3, 4, 18,156, 92, 79,159, 62,101,229, 96,255,
-199,197, 69, 79, 47,124,123,119,225,216,222, 21,200, 34, 46,161, 29,131, 51,180, 23, 47, 90,196,206,198,246,239,223, 63,110, 30,
- 30, 95, 63,191,209,228, 55, 36, 0, 64, 0, 17,216, 7,240,127,239,194, 52,103,194,117, 64,168,159,202, 79, 39,161,223, 95, 62,
-176,252,101, 50,211,147,137,143,135, 54,159,129, 37,248,137,227, 11, 68,228,164,255,125,249,100,111,174,251,236,217,251, 61,231,
-209, 79,215, 74, 79,111, 99, 96,227,103,228,226,251,207,252,255,226,181,196,121, 43,118, 66,155,228,255, 24, 60, 44, 45, 25,190,
-188, 96, 96,224,189,123,249, 58,171,136,128,181,133, 14,143,128, 24, 22,235, 25,153,128,136,241, 63, 51,235, 47,160, 49,127,152,
-153,153, 89,153,153,217, 88, 65,228,239,191, 12,140,127,254,129,220,129, 3,188,184,216, 34,196,207,192,199,197, 37, 42, 34,204,
-199,199,245,159,233,239,159,127, 95,254, 50,252,229,225,225, 18,145,144, 81, 82, 61,178,231, 32,246,115,132,102,236,254,197,207,
-203,205, 47,240,249,199, 55,182,175, 95, 57,216,216, 57, 88,127,252, 5,181, 7,191,253,248,250,237,251,163,247, 58,175,222,188,
-251,244,250, 73,152, 21,118,171, 87,119, 18,186, 38, 41,193, 69, 80, 92, 16,107,233, 79,197, 58,160,170,187, 27, 72,182,149,150,
-146,161,183,178,171, 11, 72,182,151,149, 17,175,229,202,211,167,183,110,221, 2, 50,130, 28, 29,137,212, 50,115, 21,232, 36, 28,
-228, 91,177,128,108, 8,201, 0, 59, 31, 13,200, 78,195,118,132, 36,176,100,199, 95,190, 19, 83,250, 43, 10, 10,125,255,245, 19,
-200, 96,227,228,248,245,253,199,191,175,223,222,188,120, 46,169,171,139, 71,139,164,178, 26, 65,127,241,203,107,222,216,183,145,
-160, 50, 96,233,111,227, 18,193, 33,104, 64, 84, 96,133,190, 35,168, 36, 44, 44,108, 85,232, 30,172, 82,142,123, 94,195,217, 90,
- 2,160,146,225,213,143,127,223,255,128, 66,248, 43,152,156,105, 46,160,198,203,138, 85,111, 79, 79, 79, 85, 65,137,127, 80,224,
-143, 31,223, 39,246,247, 77,153, 50, 37, 39, 39,135,194,196,121,231,206,157,110,112,250, 36,184,177,224,248,241,227, 15, 30, 60,
-120,251,246,237,231,207,159,121,121,121,133,133,133, 21, 20, 20, 44,129,165,199, 40, 0,131, 45, 75,154,225,108,180,117,255, 0,
- 1,132,175, 2,152,237,208, 23,124,162,245,223,177,173,105, 86, 12,248,235,128,159, 95,222, 73,168, 56,183,148, 6, 45,152,121,
- 0, 34,114,240,216,140,175,223,126,122,185,228, 91, 89, 39, 68,132, 57,113,114,178,255,250,251,231,243,183, 95,106, 22,152,135,
-246, 60,100,248,197, 16, 20, 61, 61,181, 8,218,181,244,176,114,224,224, 96,223,176,111,231,182,163,199, 23,205,159,246,227,251,
- 79, 54,102, 22, 30, 46, 54, 62,182,191,119, 30,189, 64,175,162,128, 69,192,255,127, 32,196,244, 15,200,254,249,139,157, 1, 88,
-197,176, 51,252,255,245,247, 47, 51, 3,176, 40,255,251,235,223,159,191,255,176, 58,251,238,169,118, 25,209,255,124,188,220,210,
- 50,138, 26,186, 42,188, 60,156, 31,191,188,126,241,250,197,251,143, 47,127,255, 96,228, 2,214, 10,162,214,193,129,151,215,174,
- 87, 71,211, 56,125,233,227,191,188,188,223, 89, 24,216, 56,216,190,127, 99,251,245,141,237, 7, 7, 59, 11, 35, 48,151, 48,255,
-248,254,229,251,183,207,223,191,127,253,254,233,227,231, 23, 15, 39, 76,120,172,108,140,125,255,103,247,162,110, 92,225, 89, 26,
-135,189, 68,126,255,254, 61, 50, 91, 72, 72, 8, 82, 26, 10, 10, 10,222,189,123,119,245,234,213, 36,213, 10,108,226,208,241, 7,
-160,161,130,228,166,173, 89,171, 87,103,103,103,255,126,245,138,152,210, 95, 76, 76, 44,200,205,237, 55, 59,123,111,111,111,176,
-147, 19, 49,199, 91, 2, 61,216,211,208, 0, 29,169,168,175,239,109,108,196,202,198,165, 29,185, 14, 0, 50,140,141,141,247,236,
-185,231,226,162, 68,100,233,175, 33, 33, 41,192,199, 7, 73,102,220, 28,156,207, 95,191,250,244,254, 3,143,128,224,195,211,103,
-228, 77, 77,240,104,244, 75, 43,137, 9,246, 85, 85, 80,128,112,235,123, 39,195,165, 26,139,115,129,228,163,237,123,205,212,100,
-137, 26,234, 33,178,244,135,182, 44,132, 8,169, 32,188, 31,141,155,133,241, 98, 99, 50, 35,159,200,223,123, 23,127,222,187,122,
-235,221, 87,147,237,248,226,119,198,204,153, 69,233,217,113, 41, 73,171,151,174, 0,150,188, 45,157, 93,188, 13, 45,240, 75, 35,
- 40, 41,250, 65,121, 1,111,235, 4, 88,226,239,218,181,235,247,239,223,202,202,202,182,182,182,252,252,252, 31, 62,124,120,246,
-236,217,253,251,247,129,164,155,155, 27,176, 62, 24, 45,253,209,184,200,117, 0, 64, 0,161, 87, 0,105,183, 97, 71,235,128,119,
-216,253,255,247,133,225,215,207,223, 7,150,165, 57, 48, 16,234, 7,176,105,105,170, 51, 49, 29,184,245,225, 45, 3,195,245,143,
- 79,111, 3,251,203, 27,183, 78,250,246,230,111,116, 98, 33,176, 57,239,231,107,249,151,133, 7,151,230, 91,183,174, 3,213,120,
-233, 3,155,117, 82, 12, 12,242, 63,126,254, 10,241,112,227, 16, 96, 90,180,108, 7,176,249,190,102,197, 2,230, 63,159, 53,229,
-217,239, 60, 66,215,248,239, 63,232, 94, 42, 32,248,251,247,239, 79,214,255,191, 25,127,255,250,245,235, 27,215, 15,134,127, 28,
- 76,255,255,254,101,251,255,229,215,143, 95,223,191, 49,240, 97,177, 84,148,231, 39, 11, 11, 39,176,189,160,162,162, 34, 46, 97,
-206,192,204,244,247,239, 89,166,255, 31,126,124, 5, 86, 25, 95, 95, 60,123, 39, 42,252, 70, 88,192, 90, 82,118, 49, 3, 3, 74,
-139,143,243,199,159,255, 63,223, 48,252, 96,255,197,244,251, 43, 27,203, 23, 78, 86, 22, 86, 54,134,127,220,140,204,140, 95,190,
-126,123,255,226,225,221,179, 71,223, 61,122, 4,116, 21,211,127,102, 34,227,105,222,244,121, 16, 70, 82, 38,206,113, 39,228,123,
-166,128,236,162,162,162, 71,143, 30, 1,139, 72,242,246, 94, 78,157, 58,245,229,203,151,107,214,172,241,182,179, 19, 20, 19, 35,
- 85, 59,176,237,255, 30, 92, 50, 66, 14,134, 75, 15, 35,112, 92, 37,176,237, 15, 44,253, 25,192,247,168,168,169,169,173,221,183,
-143,152,174, 0,229,103, 32, 3, 75,121, 96,161, 15,185, 48, 4, 78,134,134,134, 18, 44,253,213,196,196,129,165, 63, 51, 19, 83,
- 86, 76,244,247, 31, 63,123,231,206,229,226,228,252, 1, 4,223,191, 51,177, 48, 63, 62,127, 94,214,208, 16,151, 94, 72, 41,127,
- 27,118,175, 36,132, 75, 6, 48,119,138,216,179,186,194,213, 47,249, 63,187, 42,145, 90,224,103,121, 66,110,115,196, 42,130, 11,
- 0, 27,254, 15,191,252, 61,232, 42,202,154, 63,243, 83,180, 34,139,160, 24,193,210,127,239,222,189, 10,146, 82, 41, 89, 25, 21,
-133,101, 83,230,207, 48, 51, 50,154, 49,121, 70, 65, 89,201, 82, 75,243,203,151, 47,235,226,237, 42,225, 47,250,129, 38, 3,185,
-248,213, 3, 75,127, 81, 81, 81, 67, 67, 67, 38,112, 47, 31,152,227, 88, 89, 89,129, 13, 35, 9, 9, 9, 96, 29, 0,148, 13, 14,
- 14, 30, 45,253,211,202,161,195,134,179, 58, 43,208,234, 0,128, 0, 66,169, 0, 82,143, 85,126, 99,230,248,247,247,223, 63, 70,
-102,222,255,223, 25,128,205, 96, 6,102, 6,105, 53,214, 95, 95,255,239,153,151,230,146,132,183, 14,248,199,204, 12, 41,236,128,
-101,173, 12,191,180,250,195,155,107,166,207,156,207,244,147,203,205,209,122,199,222,163,223,190, 49,112, 9,241, 99,106,227,228,
- 82,255,254,237, 38,176,248,134,143,202, 48, 48, 60, 99, 98,118,136,139, 79,254,199,254,117,203,214,121,126,190, 73, 92,220, 12,
-223,222, 2, 19,177, 4,166,246,223, 12,204,172,224,210,255,247,159,191, 63, 63,253,254,246,251,219, 7, 78,150,223,223, 88,127,
-178,252,102,254,205, 8, 44,200, 63,125,255,243,245,243,111, 6,113,116,141, 23,247,119, 42, 73, 48, 50, 51, 51, 50, 50,177,255,
-253,251,255,207,183, 71, 63,255,254,126,250,226,227,187,247, 95, 62,126,254,203,244,227,199, 31,134, 23,204,172, 23,164,228, 62,
-241,114,112, 98,218, 11,244,234,255,207, 63,190,127,126,246,247,229, 71,102,101, 25, 96,250,251,251,231,231,135, 23, 15,110,158,
- 58,254,250,225, 35,112,177,197,194, 4, 12, 93,102,106,158,225, 14,105,224,207,154, 53, 43, 36, 36,196,192,192,128,157,157, 29,
-237,142, 42, 82,155,255, 22, 58, 58,226,226,226,192, 18,220,199,222, 94,138,244, 58, 64, 16, 92,238,179,138,137, 1, 77, 0,146,
- 4,251, 1,192,182, 63,235,207,159,107,215,174, 69,238, 10, 16, 63, 28, 68, 54,128,148,251,200, 87,178, 0,171, 79,130, 21,192,
-215,111,223, 68,133,132, 18, 67, 66, 62,124,252,244,250,221, 91, 86, 86, 22, 8, 0, 22, 49,236,156, 92,159,222,190,249,252,248,
- 9,175, 44,206,169, 57, 96,233,191,100,237,102,228, 10, 0,210, 15, 48, 55,210,243,114,180, 39,194,213,159, 65, 7, 17, 9, 27,
-184,248,113,239,222, 52,151, 62,163,255,151, 22, 78,248,185, 99,190,216,236,115,192,154,128,153, 79,232,207,251, 87,192,210, 31,
-216, 33,248,250,231, 63, 51,142, 97,212,251,119,238,108,219,180,117,225,236,133,147,230, 78,155,209, 55, 65, 72, 88,168,165,173,
-101,209,178,165,182, 22,214,243,230,206, 11, 10, 13,178,181,182, 37,163,244,223,180,105, 19,176, 95, 43, 41, 41,137,118, 1, 53,
-218,200, 15,176,237,111,100,100,244,231,207, 31, 96, 87,128,131,131, 3, 88, 1,220,184,113, 3,216,212,224,225,225, 1,246,246,
- 94,188,120, 1, 84, 51, 58, 22,132, 40, 64,202, 59, 32,117, 0, 28, 0, 4, 16, 74, 5, 48,219,170, 29,170,142,233,242,255,125,
-243, 25,133, 37, 25, 82, 38,159,230,212, 52,125,188,241,223,172, 90,230, 35,203,211,108,153,102,253,195, 82,165,111,218,247, 46,
- 77,229,147,127,124,126,113, 46,176, 3,241, 14,152,112, 25, 24,126,202,171, 27,113,176,179,124,255,250,147,225, 23,168, 98, 0,
-246,197, 94,189,123,143,169,119, 66,127, 17,232,238,248, 19,115,153,152, 32,203, 24, 64,195, 53,255,190, 95,253,241,243, 55, 39,
- 15, 7, 3, 27,168, 98,248,252,233,147, 24,210,253, 83, 40, 30,248,247,235,223, 63, 22, 96, 10,248,249,243,231, 23, 22,102,150,
- 95, 76, 12,207, 63,253,225,250,243,151,237,223,127, 86,230,111,204, 44,127,190,126,251,242, 11,203,162, 14, 94,158,175,127,254,
- 48,254,252,245, 23,152,189,111,221,121,244,228,249,155,239,191,126,127,250,242,238,203,231, 15, 63,254,254, 98, 4, 38,250,111,
- 31, 63,125,187,255,240,233,199,183,159,191, 50, 48,168,160,105, 7, 58, 11,146, 35,254,124,252,250,228,194,245,151,215,239,127,
-250,124,231,243,135, 15,255, 25, 88, 88,153, 25,255, 51,178, 50, 49,129,250, 80, 4,143, 41, 41,141, 43,197, 51, 22,132,197,191,
- 44,208, 40, 3,102, 15, 96,141,139,124,216, 36,169,205,127, 96, 45, 2, 26,227, 22, 21, 37,254,148, 49,236,197, 58,184,220, 7,
-214, 1,120, 58, 1, 87,158, 62,101, 0,159,125, 13,108,145, 65,250, 1,160,226,230,210, 37, 32,185,110,255,126,252,117, 64,113,
-125, 61,100,164, 11,200, 46,105,104,128,247, 9,240,140,252, 32, 3, 96,243, 31,109, 28, 25,114,232, 49,124, 44, 8, 43, 16, 96,
- 97,249,241,235, 39, 48,132,111,220,187, 11,180,241,218,173,219,191,126,253,102, 98, 96, 4,134, 63,208, 49,192, 22,199,247,175,
-223,118,175, 90, 25,132,116,152, 43, 26,128,151,254, 49,193,190,200,226, 39,207, 93, 82, 85,148,103, 39,236,112,216,216, 5,187,
- 42,176,232, 7,246, 3,128,200, 51, 48,249, 55,139, 42, 13, 75,136,119,207,217,228,212, 94,101,115,176, 59, 69,254, 61,179,227,
-239, 39,208,164,194,171,108, 43,249,153,199,255,254,195,222,148, 81, 87, 85,231,226,226,158, 52,103,170,163,189,189,185,165,197,
-174,109, 59,111,220,185, 5,236,152,115,176,179, 91, 27, 91,111,221,180,245,205,171, 55,129,129,129,196, 23,253,192,102, 59,228,
- 46,182, 83,167, 78,101,100,100,224,233,221, 62,120,240, 64, 89, 89, 25,194,184,120,241,162,188,188,188,162,162,226,251,247,239,
-207,156, 57,163,164,164, 4,108,100, 0, 69,128, 82,163, 21, 0, 30, 0, 16, 64, 88,230, 0,210, 24, 47,254, 63,184,140,145,153,
-133, 33,119,110,254, 3,201, 73,125, 11,129,133,229,244,218,155,169,109,234,204,123,102,165,201,106,206, 82,205, 2,182,185,153,
-152, 80, 6, 55, 84,248,100,174, 92, 90, 7,102, 2, 11,198,175,224,163,222,127, 51,252,254,201,242, 15,216,116, 0,149,233,235,
- 55,236, 2,146,214,158, 88,202,136, 29,151,255,123, 24,234,192,187,176,192, 82,142,129,129,149,129,149,227, 15,227,223,127,224,
-147,158,194,163, 65,103,202, 63, 60, 54, 11, 83, 47, 48, 93,254,249,199,196,244,231, 15,211,175,159,223,192,221,192,239,204,204,
-220,127,190,127,250, 14, 44,132, 25,129, 61,131,111,127, 25,190,253,250,131,233,207, 63,191,254,253, 96,101,254,247,237,207,159,
-127, 31, 63,127,249,205,204,200,250,243,207,239, 95,255,127, 1, 9, 6,182,127, 76,140, 12,140,236,255, 62,126,255,251,226,245,
-183,175, 63,209, 39,174,153, 24,161, 29, 22, 96,185, 4, 57,139,234,247,143,239, 31,223,189, 99, 2,134, 26,203,127,134,255, 44,
-204,140, 12,196,183,252,111, 62,188,169, 46,175,142,103,228, 7,121, 64,156,147,147, 19, 94, 19, 0,243, 9,164,244, 7, 86, 3,
-252,252,252, 31, 63,126,252, 0,172,129,136, 24, 51,129, 52,255,129,221,100, 8, 55, 39, 39,103,242,228,201,228,117, 2,224, 38,
- 64, 6,130,240,143,254, 51,242,242, 2, 29, 92, 86, 86, 6,108, 68,255,126,255, 30,232,230,138,156, 28,130,253, 0,228,177,126,
- 92,243, 1,152,186, 58, 9, 77,179,159, 5, 3, 8, 27,243, 68,172,247,239,222,241,240,242,190,121,255,126,255,201,147, 44, 76,
-204, 63,127,255,254,246,253, 59,176,129, 9,169,138,128,137,228,215,207,159,248,131, 26,115,216, 7, 40, 2,233, 4,168, 42, 40,
- 60,186,119,135,164, 16, 6,214, 1, 95, 95,159,220,190,126, 46, 25,253, 0,130, 35, 63,112,112, 97,213,108,131,248, 66,118, 69,
- 61, 80, 6,121,243,252,214, 59,208, 74, 83,118, 75,159, 71,127,255,112, 77, 57,137, 85,203,167, 79,159,216, 57, 57, 84, 20, 21,
-239, 63,121,252,246,245,219,240,152,232,109,123,119, 79,236,232, 93,191,109,147,170,162,106, 92,112,236,241,115, 71,215,175, 93,
- 27,136,123, 40, 6, 94,250, 3,139,126, 87, 87, 87, 72, 13,253,236,217, 51, 96,233,143,223,181,111,223,190,181,181,181, 5,230,
-113, 96, 41,127,244,232, 81, 45, 45, 45, 96,138,146,149,149, 5,118,142,153,192, 0,216,129,128, 71,241, 40,192, 10, 0, 2,136,
- 5, 75,233,191,111, 1, 3, 59, 59,131,144,220, 55, 89,243, 73, 45, 51, 24,254,126,101,120,241,169,102,249,193, 12,255, 12,134,
- 61, 11, 31,189,120,205,160,202,240,239,239, 31,180, 10,224,206,167, 79,106, 2,124,127,126, 50,220, 57,176, 68,197,193, 29, 60,
- 70,194,240,251,215,111, 86, 6,166, 47, 63, 64,139, 40, 60, 28,140, 56,133,165,177, 58,194, 67,151,113,219,197,255,172,192,230,
-190,156,251,175, 71,135, 33,157, 0, 86, 54,246,223, 12, 63,120, 56, 65,119, 7,110,218,182,252,251,219,199, 22,202, 2, 88, 6,
-158,254,253, 99,251,245,253, 55, 3, 27,176, 18, 96,248, 1,202,162,192, 94,225, 79, 96,209,206,194,202,240,131,225,255, 63,208,
-208, 16, 80, 4, 51, 7,124,251,241,143,153,153,241,247,159,223, 63,126,254,251,244,249, 7,200,181,255,254,255,250,249, 15, 88,
-251, 48, 3,117,115, 48, 48,126,255,251, 15,180,132,232,251,231,239,248, 66, 16,212, 21,248,199,240,159,145,129,137, 9, 88, 58,
- 48,255,251,207, 8,100,128,106,193,127, 76,192,138,137,241, 31, 51,254,230, 63,169, 17,198, 5, 91,134,136, 92,250, 3,219, 59,
-192, 46, 48,176, 27, 4,111, 41, 19,211,252, 87, 16, 17,129,112,129, 12, 10, 59, 1, 68,142,254,255,255,252,185,182,182,246,231,
-219,183,144,235, 31, 85,192, 53, 16,235,207,159,190,190,190, 79, 95,189,146,166,234, 10, 75,248, 8, 15,124, 2, 0, 13, 24, 27,
- 27,195,123, 0, 87,159, 98,180, 15,126,254,250,240,235,221,143, 31, 63, 4,248,249, 57,128, 73,241,239, 31, 96,192, 2,203,154,
- 95,192,142,192,239,223,255,254,252,197, 31,206,183, 31, 60,128,207, 0, 35,143, 5, 33,207, 12,147, 10,184, 69,205,129,237, 40,
- 50, 52, 18, 63, 7, 96,191,251,245, 43,133, 53,192, 78, 0,163,162,158,252,252,243,111,126,252,227,102, 97,252,117,100,195,205,
-123,247,113, 37,144,239,127,126,157, 61,126,106, 66, 79,191,149,131, 77, 77, 83,195,206,237, 59,151, 46, 90,108,105,103, 35,171,
- 32,199,194,197,186,247,240,222,101, 11, 23,175,219,176,118,235,214,173,222,222,222,152,218, 33,247,228,192,139,126, 8, 0,182,
- 99,136,241, 23, 48,205, 3, 75,124, 80, 2, 86, 80, 0,198, 38,176,187, 6,204,254,192, 86, 63, 59, 59, 59,176, 49, 4, 20,228,
-229,229, 5,170, 25,201,229, 59,176,101,179,101, 73, 51,218,176, 15, 50, 0, 8, 32,148,129, 61,208,200,207,225,165, 12,156, 28,
- 15, 62,253, 98,248,254,145,253,223, 55, 61, 29, 37,134,183,223, 24,126,253,113,208, 87, 3, 45,204,252,253,131,153, 17, 60, 68,
-243,239, 47,134, 81, 31,110,125,120,196,194,206,224,225, 87,184,108, 18,176,145,242,139,225,219,207,191,223, 25, 54,236,191,176,
-231, 52,232,190,120, 25, 57, 69,208, 26,123, 28,192, 75,159,241,247, 15,134, 77, 91,119,152,184,229,130,154,255, 12,172,204,156,
- 12, 97, 62,161, 94,118,254, 64,217, 39, 15,239,254,255,253, 23,123,235, 6,216, 28, 3, 77, 86,255,253,249, 11, 52,253,251,243,
-199,247,111,223,190,125,249,242,229,243,167,143,192,184,255,244,249,203,143, 47, 95,190,127,199, 82,132,127,254,194,248,253,199,
- 95, 32,250,250,237,247,231, 47, 63,223,127,254,249,225,211,175,143,159,127,127,248, 0, 34,223,189,253,243,238,253,159,119, 31,
-255,188,121,247,235,229, 27, 44, 35, 72, 76,192,226, 0,152,181,254, 50, 50, 50, 1,203,252,255, 32,119,252,103,254,251, 15, 26,
-158,255,192,217,133,152,249, 95, 77, 75,205,163,219,142,238,220,183, 19, 82, 31, 0,123, 3,120, 20, 3,147, 56, 11, 44, 12,187,
-192,171, 48, 43, 42, 42, 32,167,204, 35, 47,139, 36,166,249, 47, 46,142, 50, 43,146,157,157,189,245,208,161,103, 68, 44,230,193,
- 10,128,205,127,252, 85, 8,176,153, 15, 97,172, 92,185,242,206, 11,208, 82,174, 45, 7, 14,192, 5,111,222,188, 41, 42, 42, 74,
-163, 60, 0, 41,229,145,175, 72,132,176,241,140,255,128, 42, 90, 62,222,127,127,255,126,122,247,254,205,155, 55,111, 63,188,255,
-250,237, 27, 16,125,254,242,229,235,199, 79,159, 63,124, 0,166,178, 95, 63,126, 0,171, 1, 92,218,145, 75,121,120,233, 15, 97,
- 35,175, 8,194, 15,190,188, 62,185,103, 53, 34,235,126,123,119,129,214,229,197,243,112, 5, 96,185, 15, 44,253,127, 30, 92,243,
- 48,209, 16, 88,250, 31,118, 21,253,243,241,181,201,142, 87, 44, 56,162, 23,216,146, 72,205,207,188,115,243,230,241, 3,135,249,
-121,249, 35,195, 35, 5,132,133,206,157, 58,195,195,198,193,205,205, 45,169, 32,181,124,197,242,138,234,170, 47,196,149,233, 16,
- 96,100, 68,212,105,254,192,242, 29, 88,208, 3, 91,250,192, 86,191,153,153,153,182,182,182,136,136, 8, 7, 7, 7,176,232,215,
-215,215, 23, 16, 16,128,172, 10, 29,225,109,124,228,222, 45,102, 79, 23, 32,128, 16, 61,128,180, 91,211,254,191,126,240,131,149,
- 99,207, 43, 46, 96, 92, 43,124,120,206,188,174,101,123,122,115,183,150,138,164, 32, 71,174, 6, 39,195,212,243,255,127,255,122,
-204, 12, 30, 55,192, 82,206,240, 0, 83, 44,144,186,120,105,179,190,129,111, 93,205,162,141,235,250,118,237,191,238,104,169,205,
-194,194,190,251,240,185,255,204, 44,191,254,254,197,239, 86, 15, 67,141, 29,103,111, 48,244,118,132,248,122,249,248,248,238,220,
-183, 30,216, 64,247,118,143,100,250,251,155,149, 25,123,113, 10, 44,250,255,130, 74,218,191, 44,192,150,254,127, 22, 96, 19, 0,
-216, 16, 6, 45, 9, 0, 54,196, 25, 65,253, 3, 72, 47, 1, 75,255,241, 59, 47, 19,243,123, 54,118, 38, 80,171,249,239,127, 96,
-107,255,223,127, 96,239, 1,216, 9, 96, 96,226,248,207,200, 12,108,205, 51,254,101, 98,252,249,247,255,135,175,255,249,196,177,
- 14,200, 32,206, 34,135,132, 7, 11,243,127, 38, 80,133,192, 12, 47, 12, 65,117, 3,238,230, 63,176,244,135,182, 82, 23,236, 1,
- 34, 32, 3, 88, 25, 48,120,225, 11,162,127,224,161,216, 53,107,214, 64,242,158,162,162, 34,196,131,192,102, 41,208,227, 4, 43,
- 0, 96,233, 15,105,254, 43, 82,175,192,101, 5, 15, 28,121,219,227,156,216,180,210,213,237,237,237, 5, 54,243,129, 5, 61,176,
- 55, 16, 0, 62, 25, 95, 93, 93, 29, 46,248,240,225, 67, 17,118,118, 9, 88,143,132,186,115, 0, 64, 0,185,146, 5,249,218, 91,
-130,151,214,190,127,243,145,145,225, 15,168, 69,241,242, 27, 27, 7, 7,104, 83, 33,184, 7,240,253,203,151,159, 95,191,130, 38,
-156, 62,124,240,192,125,247, 44,164,148,135,140, 2,153, 27,233,157, 60,119, 9, 46,133, 54, 37,128,179,121,251,250,228,201, 3,
-235,157,189, 34,160,149,193,199,219, 55, 47, 29, 37,163,225, 79,252,248, 15,168,175,246,238,235,163, 20,211,255,247, 47,137,205,
- 62,247,245,207,255, 79,209,138,252,203,238,127, 74, 20, 6,150,254, 76,184, 43,248,236,156,156,218,142, 22, 49, 97,145,223,255,
-254,222,126,124, 47, 58, 50,106,209,146, 37, 27, 55,108,138,138,142,250,249,227,231,225, 51,199,190,127,255,146,150,144,176,247,
-248,113,204,117, 28,192, 24,185,115,231,142, 27,184,131,136,220, 15,120,251,246,109,105,105, 41,124, 98, 0, 43, 16, 22, 22,126,
-246,236,153,160,160,224,140, 25, 51, 76, 77, 77, 13, 13, 13,217,216,216,128,121,255,196,137, 19,144, 11, 59,129,178,194, 56,230,
- 14, 71,108, 29,128, 6, 0, 2, 8, 81, 1,204, 82,203,114,248, 58,243,214,147,247,207,125,193,141,142,147, 21,255,183, 76,151,
-122,121,191,223, 62,136,225,195, 59,134,182, 5,255,159,222,248,203,201,253,225, 29,168,251,206,136,177,181,234,224,129,141,246,
- 14,206, 64,198,215,127,191,239,124,120, 4, 44,145, 85,248, 20, 29, 29,245,196, 69, 36,222,126,252, 4,234, 32,252,250,243,252,
-195, 87, 77,108,142,144,145,179,124,242,232, 56, 56,205,178,120,128, 86,130,178,236,184,252,123,231,150, 53, 47,223, 60, 19, 22,
- 0,117,241, 4,216, 88, 37, 5,176, 47, 33,253,197,192,194, 6,106,137, 49, 3, 27,221, 76,127,129,125,148, 63,127, 89, 89, 32,
-165, 63, 3,120,145, 40,104,139, 0, 54, 16, 16, 81,177, 97,113, 9, 23,219,127, 22, 86, 88, 79,226, 55,195,159,255, 12, 63,126,
- 49,252,253, 9,108,216, 51, 50,178, 49, 2,205,253,250,147, 33, 57,161, 11,109,107, 53,124, 6,248, 31, 19,176,222, 0,141,255,
- 64,218,224,192, 30, 0, 19, 51,168, 58, 2,202,254,103, 6,118, 11,240,117, 2,224,165, 63, 26, 27, 84, 7,224, 26,110,250,251,
- 23, 88,244, 0,139,111, 72, 5,176, 6, 12,128, 92,101,101,101,160,237, 19, 39, 78, 4,118, 8,222,189,195,183, 27,168, 4, 12,
-118,236,216,241,245, 37,202,137, 5,192,250,224,254,253,251, 12,120, 55,133, 97,238,252, 2, 22,253,192,234, 4, 24,116, 62,246,
-246,210,184,231, 15,128, 37,187,149,158,222,219, 7, 15,128,165,252, 45,216, 90, 32, 85, 73,201,162,162,162,163, 71,143,170,169,
-169,233, 72, 75,227,153,246, 64, 30,247, 39,126, 14, 0,121, 50,160,188, 28,180,232,243,222, 61,104,219, 31,190, 45, 0,207, 66,
- 32, 30,105,177,239,207, 95, 0, 83,214, 87, 96, 35,243,205,107, 96,226,250,255,255,223,143, 31, 63,254,131,193,253,107,215,127,
-255,250,137,103, 9, 16, 74,239,214,209, 30,136,224, 75, 66,137, 25, 2,250,242,230, 20,176,244, 7, 57,131,155,123, 35, 82, 39,
-192,196, 54,144,166, 37,133,201,246, 87,103, 60, 25, 12,140, 93, 94,101, 91, 73, 76, 59, 6,172, 15, 4,217, 24,223,190,123,207,
-194,200,200,130,119,140, 48, 46, 46, 14,206,222,188,121,179,151,183,231,150, 77, 91, 86,173, 90,213, 80, 93,187,235,192, 94,102,
- 22,102,105, 25,105, 96, 64, 50,176, 97, 89,200,167,162,162,130, 89, 13,236,222,189,155,129,208, 22, 48, 96, 75,255,222,189,123,
- 90, 90, 90, 5, 5, 5, 43, 86,172,224,231,231,191,113,227, 6,242,216, 0, 80, 86,129,220, 1,183, 17, 2, 0, 2, 8,101, 14,
-224,128, 97, 58, 3,108,101,243,150, 87, 2, 62,162,140,255,207,108,251,127,124, 19,168,238,231,224,248,193,197,187, 91,192,225,
-133,165, 11,120, 44, 2,125, 67,224,205, 91,191,142,156,104, 3,149,137,204, 28,144,225,138, 59,159,158,215,229, 36,125,251,246,
-243,211,119,208, 28,192, 47, 38,118, 39,143, 16,172,142,168,173, 78,216,177, 21,188,173,230, 47,100,176,229,143,135, 46, 99, 68,
- 86, 31, 23, 23, 59, 31,120, 14,128,245,223, 15,105, 81,236,229, 11,203,255, 63,191, 24, 65,117, 0,176,168,248, 11,204,163,192,
-156,250, 7, 60,103,203,200, 4,236, 14,252,129, 84, 84, 56,234,128, 15,223, 5,190,255,124,203,198, 2, 82, 4, 84,241, 7, 88,
-125,252,254,255,251,207,255, 47,223,255,129,154,255, 12,140,191,255, 65, 7,115,208, 11, 98,208,232,254, 95, 32,252, 15, 44, 22,
-192,227, 63,140, 12,232, 86, 64,180,229, 21, 58,226, 58,151,227,250,241,235,164,198, 22, 48, 77,127,255,254, 93, 87, 87, 87, 73,
- 73,233,193,131, 7,171,192,187,100, 33,149, 1, 4,116,116,116, 16,172, 3,128, 0,235,244, 90,112,124, 60, 3, 17,155,194, 32,
- 91,115,145,129,175,131, 3,193,217, 99, 9, 88, 67, 12,185, 55, 0,108,248,155,168,171,179,125,253,138,223,203,148,164,111,228,
- 82, 30,121, 23, 5, 3, 17,251,132, 57, 37, 37,190,221,190,243,247,207,159, 79,239, 63,128,123, 87,160, 40,126,255,242,213,167,
-247,239,129,174,194,211,252, 71,155, 12, 88,178,118, 51,242,210, 79,228,233, 1,236,224,219,197, 19,251, 33,235, 41, 24, 54,174,
- 6, 45, 0, 53,178,143, 16, 18, 51,160,101, 57,240, 31,165, 14, 96,152,109,144, 81,247,226,223, 63,253, 5,167, 78,121,136,107,
-111,121, 9, 44,253,121, 89,137, 61, 56, 18, 24,185,251, 14,236,115,114,117,222,180,118, 67,115,103, 71,249,199,143,255,255,253,
- 91,185,114,173,136,136,200,163, 79, 56,117,161, 85, 3, 12,132,182,128, 1,129,165,165, 37,176,141,127,238,220, 57, 35, 35, 35,
-103,103,231,253,251,247,203,201,201, 1, 91, 72,246,246,246,192, 8, 2,138,179,178,178,142,240, 37, 64,144,125, 0,240, 30, 0,
- 26, 23, 8, 0, 2, 8,231, 78, 96, 96, 63, 96,238,229, 61, 58,127,175, 74,176,126,252,241,159,229,246,127, 1,230,215,159, 94,
- 88, 64,183, 17, 50, 97, 27,144, 17, 21, 50,244, 74,136,251,251, 31,222, 84,255,255,229,235, 39,102, 22,126, 6, 38,174,178, 30,
- 2, 59,149, 60,188,117, 54, 76,173, 96, 96,250, 6, 47, 72,121,120,248,255,254,126,207,240,255,235,195, 99,179, 76,244,228,112,
- 14, 46, 3, 27,217,224,172,249,135,129,153,237, 63,184, 26, 0,151,254,160,230, 50, 3,148,192, 5, 18,210,106,102, 77,110,248,
-243,251, 29, 11,120,145, 51,168,143,255,231,255,143,223, 12,159, 62, 3, 59, 3,255,255,252,103, 98, 97,101,108,109,194,178,184,
- 37, 37, 5, 52,124,188,112,193, 29,198,223,160,230, 63,168,155, 1,162,192,173,164,255,204,140,160,185, 40,150,226, 18, 55, 60,
- 86,167, 52,167, 60,184,251,128,140, 24, 5,166,239,247,224,245, 51,198,198,198,102,102,102,175, 95,191,190,123,247, 46,104, 97,
-226,191,127,107,215,174, 37, 88, 7,228,196,199,115,138,137,249, 96, 27,174,201, 1, 87, 0,156,184,139,114, 72,134, 68,211, 43,
- 45, 46, 78,146,251,129,189, 1,107,112,111, 64,140,147, 83,199,202,138,166,169, 31,173,124, 7,134, 24,218,108, 48,193, 58, 64,
- 88, 85,229,243,251,247, 44,236,108, 63,127,254,248,251,251, 15, 48,144,121, 5, 5, 63,190,123, 7, 44,253,241, 55,255,225, 27,
-193, 32, 19, 0, 39,207, 93, 2, 86, 0,240,209,127, 92,251,194,212, 36,223,191,121,251,102,213,234,229,112,145,176,232,228,119,
-191, 72, 91,247,137, 57,230,131, 33,194, 72,176, 31,192,176, 29,122,144,131,202, 70,232,222,251,143,191,255, 18,239, 6, 39, 7,
-167,139,130, 23,221,188, 61, 82, 99,147,245,244,117, 55,109,220,124,252,194,217,180,180,180, 71,132, 14, 41,131, 87, 3,221, 96,
- 64,112,135, 35,176,182, 0,246, 24,182,108,217, 2,108, 18, 1,251, 13,144,181,112, 87,175, 94, 5,182,253,129,165, 63,188, 46,
- 25,225, 0,109, 51, 48, 50, 0, 8, 32,124, 71, 65,252,211,117,185,196,224,114,137, 20,155,116,116,172, 39, 77, 90,148,151, 31,
- 41, 45, 15, 76,181, 63, 89,217, 57,158, 60,255,100,239, 27, 71,140, 94, 67, 67,165,132,132,176, 5,243,214, 49,252,123, 8,108,
-217,255,249,241, 93, 90,146, 95,142,239, 15, 1,109,127,255,177, 48,253,251,205,200,194,250,255, 15,180, 26, 0, 18,255,255, 18,
-185,172, 37, 45, 23, 52,164, 80, 95,153,201,202,194, 8, 57, 55,232,239,223,191, 31, 62, 3,107, 2, 6,102,150,127,211,166,226,
- 75,127,241, 9,160,205, 1,243,230,222,100,128,156, 72,195, 4,236, 46,128,198,124,138, 74,124, 8,218,251,241,203, 71,172, 71,
-253, 16, 4,192, 50, 8,216, 9, 0, 58,242,211,167, 79,204,204,204, 64,134,132,132,196,239,223,191,145,179, 10,176, 14,192,117,
- 38, 4,164,169, 46, 72,214,114, 79, 33, 72,144,146, 88,226, 99, 2,113, 18,135,101,201,158, 3, 64, 43,217,177,174, 5, 34,184,
- 29, 76,193,204, 20, 72,222, 56,120,240,199,183,239,255,254,254,213, 52, 54,214,181,178,227,145,198, 27,128,255, 25, 31,222,191,
- 11,154,113, 97, 96, 72, 10,130, 78,233, 0, 69,144,217, 88,183,136,220,122, 14, 76, 18,130,225,209, 41, 15, 31,191, 56,113,104,
- 11, 80,100,213,210,185,230,118, 62,188,226, 54,196, 4, 84, 24,104, 31, 6,225,147, 30,254, 50, 98,223,132,240, 40, 80, 98,251,
-179, 31,212, 42,116,244,193,224,204,153, 51,123, 79, 28, 20, 22, 17, 38,233,144, 18, 72, 53, 64,140, 74, 94, 94,222,224,224,224,
-227,199,143, 3,155, 65,167, 78,157, 26, 61, 11, 8,115,244, 31,173,244, 71,155, 15, 0, 8, 32,234, 95, 10,175,172, 97,186,117,
-231,157, 0,111, 46, 49,105,217,119,159,255,216,123,199, 18,175,215,210, 84,195,210,180, 42, 61,189,142,129,225,165, 32, 47,139,
-156,208, 63,194,163,150,137, 37,148,187,185,177,125, 58,144,204, 47,200,249,245,253,247, 63,240, 82,203,254,169,253, 68,234, 77,
- 74, 6,157, 20, 52,111,206,141,127,255,153, 43, 43,252,233, 16,169,160, 35,143,126,254,252,245,235, 23,164, 88,132, 20,136,195,
-245,124, 80,130, 39, 76, 16, 15,136, 57,245, 19, 23,208,176,183, 39, 94,241,243,123, 55,205, 85,101,200,182,235,237, 47, 21, 30,
-113, 21,151, 80, 27, 82, 53,226, 58,229, 13, 9, 48,253, 97,100,255,206,132,125,254,255,238,231, 63,106,188,120, 10, 4,114, 22,
- 10,155,152,152,208, 33,145, 88,130,193,104,113,143,171, 14,192, 35, 11, 16, 64,163,151,194, 15, 73, 48,122,171,251, 40, 24, 5,
-163,128,114, 0, 16, 64,163, 55,130, 13, 73, 48, 90,250,143,130, 81, 48, 10, 40, 7, 0, 1, 52, 90, 1,140,130, 81, 48, 10, 70,
-193, 8, 5, 0, 1, 52, 90, 1,140,130, 81, 48, 10, 70,193, 8, 5, 0, 1, 52, 90, 1,140,130, 81, 48, 10, 70,193, 8, 5, 0,
- 1, 68,147, 75,225, 71,245,142,234, 29,156,122, 33,167, 65,140,134,213,168,222, 17,165, 23, 15, 0, 8, 32, 22,180,236, 65,140,
- 30,172, 89,136, 18,189,163,128, 84,128,171, 32, 27, 5,164,134, 18,145, 33,249,232,209,163,167, 79,159,178,179,179,139,136,136,
-200,201,201,209,205, 11,240, 51, 95, 7,115, 14,122,245,234,213,211,167, 79,241,171,145,150,150, 22,195,182,251,132, 18,189,163,
-128,114, 0, 16, 64,232,203,126, 9,238,188,199,179,193, 10, 77, 47,230,209,196, 52, 61,115,152,254,133, 11,126, 5, 5, 5, 5,
-154,154,154,248,181, 75,163,158,129,131,156, 19, 66, 67, 67, 93, 92, 92,240,232,165, 74, 29,224,238,238, 14, 36,119,238,220, 73,
- 7,189, 95,191,126, 93,187,118, 45,228, 82,248,224,224, 96, 67,220,247, 41, 98,122,150,224,165,240, 51,102,204,192,218,218,192,
- 31, 74,196,132, 33,176,132,250,249,243, 39,208, 10, 14, 14,142, 31, 63,126, 0,107,130,211,167, 79,235,235,235,171,168,168,224,
-210, 98,109,109, 77,208, 95,207,159, 63,135, 92,123,130, 31, 0, 75,127,200,113,223,196,132, 21, 49,123, 65,194,194,194,240,167,
- 43, 8,144,151,151,103, 0,159,183, 12,244, 59, 36,238,240,164, 73, 96,186, 45, 42, 42,194, 99,233,251,247,239,205,205,205,177,
- 6, 53, 80,175,150,150, 22, 30,189, 47, 95,190,172,173,173, 29,109,238, 80, 2,240, 92, 10, 15, 16, 64, 44,195,198,147,244,111,
- 20,111,156,225,129, 75, 42, 32,115, 7, 65,237,251,247,239,135,103,143,111,223,190,113,113,113,189,126,253,154, 96,237,178,103,
-207, 30,100, 54,114,134, 4,114, 87,175, 94, 77,124, 32, 92,190,124, 25, 82,136,163,153, 67, 18,200,200,200,200,206,206, 38,230,
-234, 87,200, 77,144,113,113,113, 64,255,246,246,246, 42, 40, 40, 8, 10, 18,222, 11, 13, 44,121,183,111,223, 14, 97,123,120,120,
-236,216,177, 3, 43, 27, 79,143, 19,158, 48,128, 12, 99, 99,227, 89,179,102, 65, 10, 74, 98, 18,204,199,143, 31,121,193, 0, 88,
-250,115,114,114, 2, 43,131, 15, 31, 62,240,243,243,159, 58,117,138, 1,188, 97, 21,151, 70, 29, 29, 29, 96,113, 9, 47,184,145,
- 91,241,192, 2, 29, 72,158, 56,113, 34, 42, 42,138,152, 16, 38,178,244,135,128, 9, 19, 38, 80,158,176,185,185,185,175, 93,187,
-198,202,202,250,235,215, 47, 96, 32,223,190,125,187,178,178,146,160,174,151, 72,199, 11,218,218,218, 30, 62,124, 24,206,125,243,
-230, 13,145, 26, 49,193, 3,216, 33,122,163,128,242,210,159, 1,227, 82,120,128, 0,236,157,177, 13,131, 48, 16, 69, 35,185,202,
- 12,241, 16, 46,210, 51,136,167,112,239, 50, 61, 3, 89,222, 32,146,199,113,155, 39, 31,178, 16, 40,112,144,134, 34,191, 2, 36,
-163, 19, 62,254,253,115,113,255,162, 5,160,148,162, 84,136,215, 57, 24,121, 60, 95,147,168,121, 71,229, 18,161,126,145, 87,227,
- 56,106,116,220,194, 23, 30,226, 78, 41,193,146,139, 73,103, 26,116, 83,120,241,134, 60, 10,180,127,206,185,155,194,239,126,121,
-180,191,204,140, 20, 83,120,106,128,166, 21,248,221, 20,158,192, 32,253,185, 41, 60,121, 2, 59,239, 6,204,238,192,251,183,102,
-150,128,246,167,201,184, 55, 83,248, 90,171, 49,134, 87,109, 20, 0, 97,249,174,241,229,246, 4, 88, 72,180,250, 38, 0,132, 16,
-228,162,103,212,250,201, 55, 32,252, 33,235, 24, 35, 53,128,196, 24,134, 65,201,254,115,192,254,222,251,121, 13,144, 54, 98, 35,
-145, 78,111,174,115,142, 54,154,114, 37,179,108, 5,214, 90, 18,140,159,130,252,252,179,255,196, 42,205, 23,126,109, 10,255, 17,
-128,189,179, 57, 97, 16,134,163,184, 32,221, 32,183, 14,225,209, 1,218, 91, 22,200,221, 49,178,143,123,100,152, 28,147, 13,132,
-254,204,159, 6, 17, 53,177, 45,133, 66,223, 33,136, 66, 14,154,188, 15, 15,121,159, 20, 0,182, 89,241, 78, 37,216,108, 88,203,
-179, 26,192,178,251,173,159,227,153,253, 79,209,153, 80, 24,172, 45,135,167, 47, 79, 3,173, 7,246,191,153, 75, 81,238, 82, 10,
-207, 88,227,226, 87,184, 37, 48, 21, 51, 48, 22,103,128, 82,113,253,175, 69,129,119,176, 89, 10, 95, 12, 61,124, 29, 4, 96, 24,
- 6,114, 64, 8,225,242,108,133,231, 2, 37,136, 49, 30, 39, 39,216, 63,171,178, 8,128,228,128,212, 68, 86,155,183,224,253, 92,
-251,252,133,133,141,221,118,206,105,173, 81, 2,165, 20,215,176, 63, 98,192, 42,109,219,154,126,163,153,253,173,181,178, 25, 87,
- 57, 96, 15,227, 56, 30,132, 0,239,189, 49,102,239,233, 52, 77,215, 4,222,182,132,227,174,235,250,190, 23,195,241,183,255, 75,
-246,111,182, 74,225, 31, 2,176,119,237, 54, 12,131, 64, 52,202, 72,136, 29,248,180, 89, 35,107,176, 65,214,136,168,211,177, 6,
- 18, 29, 59,184,129, 34, 47, 57,133, 34,216, 16, 16,101,174,176,108,203,216,103, 16,239,221, 61, 36,110, 37, 1,212,194,197,143,
- 43,195,171, 56, 64,107, 61,154, 7,116, 61,236,190,234,114,125,220,111, 98,226, 7, 1,127,152, 87,181,183, 49,198, 81, 74,152,
-232,231, 82, 20, 30,168,141, 88, 9, 51,112,130, 0,200,168, 33, 56,224,168,175, 72,253, 63,125,138,194,151,189,227,169, 40, 60,
-221,108, 12,180,148,178,172, 39, 41,165, 74, 78,208, 80,126,234, 40,164, 46, 10, 95,180,160, 93, 11, 33,156,223,123,137,227, 4,
- 95,244,222,211,230, 75, 84, 20,254, 85,107,122,219,172,181, 13, 40, 47,232,143,108,227,139,141,134, 84, 29, 60, 76, 14,143,166,
- 2, 19,150, 82, 98,140, 57,231, 56,231, 24, 53, 18,217,112, 41,132,200, 57,119,155, 3,241,113, 52,198, 28,105, 65,203, 13, 97,
- 7, 18, 74,112, 42,186, 5,158, 99,140, 8,253,193, 7,112,251, 15,253, 93,123, 10, 32,106, 86, 0, 84,159, 4, 38,163, 14, 0,
- 54, 39, 73,234, 7, 64,178,214,210,165, 75,209,196,183,109,219, 6, 20, 36,210,144, 19,247,181, 44, 20,175, 17, 63,242, 3,111,
- 96,194,155,138,192,228, 11, 41,140, 72, 45,253,225,117, 24, 73,205, 67, 72,243, 31,237, 82,120,242, 58, 1,112, 19,240, 92, 10,
- 15,111,242, 3,203, 20, 96, 99, 86, 85, 85, 21,216,136,102,103,103,231,231,231,111,105,105, 33,216, 15, 64, 30,235,199, 53, 31,
- 64, 70,213, 14, 44,136,225,106, 48, 79,196, 2, 54,240,121,121,121,129,165,222,177, 99,199,128,141, 95, 96,201,242, 29,233, 82,
-120,208,189,211,132, 46,133,199, 28,246,129,183,229,129,209,253,138,196,219, 55,129,241, 11, 89, 17, 68, 70, 63,128,224,200, 15,
- 28, 0, 35,162,180,180, 20,146,227,128,214,221,190,125,155, 1,116, 76,175, 33,176,254, 35,102, 29, 14, 37,101, 61,164,242, 32,
-195, 64, 96, 60, 2, 99,199,210,210, 18,126,240, 28,208,181,192,190,203,104,225,206,128,116, 39, 48,242, 16, 16,114,106, 7, 8,
-160,193, 62, 9, 76,159, 58, 0,168, 30,210,111,133,119,132,137, 44,253,129,205,127,178,189, 6,105,254,163, 53,252, 95,188,120,
- 65,235,210, 31,222,252,215,209,209,129,112,129, 12, 10, 59, 1,248, 1,124,244,159,155,155,187,182,182, 22, 88,250, 67,196, 13,
- 12, 64,151,156, 0,203,125, 95, 95,223, 35, 71,142, 0, 73, 42, 90, 10, 15, 19,248, 4, 0, 26, 0, 54, 27,225, 61, 0,204,117,
-211,192, 50, 5, 88, 7,252,248,241, 3, 88, 75, 1,235, 42,200,117,155,240, 75,225,129, 12,252,165, 63,164, 82,199, 28, 11, 66,
-158, 25, 38, 21,144,173,145,248, 57, 0, 96,125,236,237,237, 13,204, 65, 92, 92, 92, 14, 14, 14,192, 16, 0, 70, 25,176,134, 94,
-176, 96, 1, 19, 19,109, 55,141, 2,203,122,248,240, 17, 36, 3, 18, 95,157, 0, 27, 52,143, 30, 61, 10, 15, 15,103, 0, 95, 58,
- 13,186,122,108, 20,160,245,131,113,220, 11, 15, 16,128,188, 51,200, 65, 24, 4,162,232,222,211,168,123,227,185,186,225, 46,108,
- 12,135,168,149, 35,116,197, 41, 88, 17,182, 70,159,153,132, 16,172, 21, 48, 38, 38,254, 21,105, 55,147, 38,243,102,134,161,204,
-175,255, 9,220,209, 9, 64,245,201,123,130, 69,170, 91,235,233, 47,218,239,182,231,233,114,154, 54, 18, 15,168, 6,154, 76, 5,
- 67,227, 56,202, 62, 62,238, 87,151, 24,222,210,199,233,160,191,164,255,207, 67,225,177, 65, 94,117,232,237, 80,120, 32, 34, 11,
-252,115,158, 31,195,205,141, 49,233,225, 87,135,194,167, 51, 63, 69,212, 92,111,182,147,254, 67,121, 44,244,222, 75,175, 30,197,
- 24, 67, 8,240,133,106,128, 10,224,250,122,220, 80, 14,235,162,111, 95,156,235, 95,143, 34,185,217, 53,199, 70, 63,148,214, 26,
-238, 67,127,231,156,181, 22,250, 43,165,136,205,195, 48,212, 4,128,195,146,154, 98, 0,110,216, 74,127,217,132, 20,250, 35, 22,
-199,150,187,187,255, 68, 84, 0,169, 19,144,235, 46,128, 6,233, 36, 48, 37,165, 63, 48, 13,145,209, 77,134,140, 5, 1,187, 2,
-196,151,254,192,226, 30, 88,250, 67, 71, 57,214,173, 95, 11,190,197, 15, 88, 25, 48, 56, 57, 50, 48, 16, 94, 6, 10, 89,149, 8,
- 25, 11, 2, 54, 81, 33,151,160, 2,139, 96, 34,146, 47,168,168,133,223, 11, 79,106,233, 15,105,254, 99,109,236,147,215, 9,128,
- 84, 27, 57, 57, 57, 56, 3, 42, 56, 24,249, 82,248,152,152, 24, 6,140, 75,225, 99, 99,113,222, 27, 65,225, 28, 0, 3, 89,151,
-194, 11, 11, 11,191,125,251, 22,216,222,127,253,250, 53,176, 7, 0,191, 20, 30,216,111, 3,198, 23,176,244, 7, 86, 3,104,131,
-251,200, 0, 82,202, 67, 70,129,208,110, 34,195,163, 11,173,244,135,108, 2, 64,230,146,209,240, 39,126,252, 7, 8,110,223,190,
- 13,140, 14,160, 7, 45, 45, 45,129, 36, 48,208,128,229,233,166, 77,155,152,153,153,137,169, 0, 40,105,197, 35,155, 64,146, 46,
- 99, 48, 0, 50,206,157, 59, 7,116,179,141,141, 13, 48,105, 1,123,153,200, 11,166, 71, 44,128,172, 2, 66,155, 4, 70, 94, 5,
- 4, 16,128,189, 43, 72, 97, 24, 4,130, 31,240, 9,130,207,240, 44,248, 35, 95, 41,248, 4, 79,126,195, 75,167, 25, 88,182,181,
-196, 77, 14,165,135,238, 73, 66, 2, 97,163, 51, 19,119,100,127,183, 8,252, 77,244,215, 28,112, 73,251,127, 28, 63, 57,192, 54,
-113, 57,128,224,210, 71,198,106,173,219,103,215,190,240,116, 4,109,223, 95,154,194,175, 26,138, 70,186, 19, 79,222,122,242,139,
-116, 2,100, 4,250,203,134,210, 26,248,142, 33, 4,246,127, 7, 1,208, 11,164, 47,234,150,226,239, 92,247,122, 14,192, 94, 3,
-208,147, 16, 57,201, 57, 3, 17,244,142,217,121,174,188,247,189,119,118, 94,155,115,146,129,164, 41, 60,107,194, 70, 51, 79, 62,
- 66,244,187,101, 39, 71,224, 30, 55,235, 69,116,219, 78,106, 12, 58, 62, 75, 41,144,255, 41, 37,240,129,115,110,140, 97, 36, 0,
- 65,112, 10,169,123, 37,129,171,218,159,235, 8, 25,107,173, 97, 0,232,143, 49, 34,111,248,149,249,215,129,183,241, 16, 64, 44,
-152,249,141,108,179,208, 82, 39,114,251, 5,185, 89, 68,187,210, 31,152,236, 40, 92, 42, 71,146,246,199, 79,112,142,215,115,114,
-114, 17,212,142,117, 96,154, 72, 0, 44, 80,128, 37,254,222,189,123,225,247,194,195, 23,131, 18, 83,135, 97,189, 20, 30,178,227,
-134,224,166, 48,204, 74, 61, 55, 55, 23, 79,233, 15, 1, 66, 66, 66,144, 33,126, 96,107, 26,185,225, 95, 83, 83,131, 63,201, 81,
-184, 15, 0, 57, 52,208,182, 74, 16,172,239,129, 93,177,109,219,182,253,249,243,231,195, 7,200,165,240, 32,151, 0, 59, 4, 64,
- 46,144, 77,124, 67, 30,104, 47,242,210, 79,228,233, 1,252,165, 63, 3,185,115, 60,148,215, 1, 21, 21, 21, 7, 15, 30, 4, 70,
- 83,123,123, 59,176,197, 0,236, 0, 65,182, 68, 16, 28,226, 35,163, 21,143,172,151, 84, 0,172,153,158, 62,125,138,188, 15,224,
-226,197,139,192,174, 27,176, 85, 65,228,186,213,145, 0,208, 38,129,145, 1, 64, 0,177,224, 47,196,113,245,109,105, 13,200, 40,
-253,233,156, 79, 90, 90, 90,240,239,111, 36, 88, 89, 82, 50,164, 11, 41, 52, 33,203,240,129, 12,200, 94, 48,248,189,240,120,202,
- 53,200,197,238,192,194, 11,121, 14, 0,210,188, 45, 43, 43,195, 95,218, 98,213, 75,234,144, 17,145, 13,127,106,117, 73,145,195,
- 1,243, 82,120,252,117, 0, 48, 88,188,189,189,129, 45, 89, 54, 54,182,159, 63,127, 2,235, 0, 96, 8, 11, 8, 8, 0, 11, 44,
- 60, 7,117, 32,231, 35,248,244, 47,208, 94,160,122,120,222,193,149,203, 32, 73, 2,109,219, 48,169,115,191,152, 99, 62, 36,141,
- 2, 65,234, 0,248,230,175,172,172, 44, 8, 3,216, 19,194,163,229,217,179,103,200,187,189, 86,172, 88, 65,240,132, 31, 92,122,
- 73, 2, 23,192, 0, 77,240, 9, 24,140,150,251, 12, 72,119, 2, 35, 23,253,200,171,128, 0, 2,136,133,138,229, 59,166, 94,250,
-212, 22,244, 47,253,129, 64, 20, 12,200,214,174, 4, 6,212,114, 12,124,252, 7,185,236,195,122,217, 39,217, 71, 62, 80,168, 23,
-107,111,128, 72, 64,246, 28, 0, 90,146,192,218,229, 34,152,108,128,221,202,187,119,239,238,223,191,255,251,247,239,127,255,254,
- 53, 48, 48, 8, 11, 11, 35, 24,119, 39, 78,156,128,119, 35,224, 34,200,108, 92,169, 2,222, 56,128,212, 28,192, 28, 68,176,178,
-129,131, 48,202,238, 79, 38, 59, 7, 73, 75, 75, 7, 6, 6,226, 87,211,220,220, 76,117,189,163,128,164, 58, 0,179,244, 7, 2,
-128, 0, 98,161, 86, 25, 58,122, 90,211,128, 3,180, 40, 32,254, 72,216, 33,228,169, 1, 49, 74, 25, 12,136, 87, 15,236,223, 16,
-121,206, 15,158,198, 1, 25,213, 45,181,106,104, 82,129,152,152, 24,217, 97, 75,137,222, 81, 64,124, 29,128, 75, 10, 32,128, 70,
- 47,133, 31, 5,163, 96, 20,140,130, 17, 10, 0, 2,104,244, 70,176, 81, 48, 10, 70,193, 40, 24,161, 0, 32,128, 70, 43,128, 81,
- 48, 10, 70,193, 40, 24,161, 0, 32,128, 70, 43,128, 81, 48, 10, 70,193, 40, 24,161, 0, 32,128, 70, 43,128, 81, 48, 10, 70,193,
- 40, 24,161, 0, 32,128,104,120, 41,252,232, 5,220,163,122,135,168,222,205,126, 83,136,215,235,187, 41,135, 90,122, 55,250,146,
-160,215,127, 51,138, 94, 31, 27,208,245,162,140,140,140,191,127,255,190,127,255,254,175, 95,191, 88, 88, 88,158, 60,121, 18,201,
-175,176,243,204,153,239,122,178, 22, 22, 22,204,204,204,144, 69,180, 91,142, 60,165, 86, 88, 65,236,133, 3,200, 14,149,171, 87,
-175, 74, 73, 73,189,123,247, 14, 72,114,114,114, 50,192, 54,244,161,217,139, 85,239,227, 43, 75,210,109, 31, 45, 59,163,198, 34,
-230,198,195,203,135, 75,239,104,122, 38, 94, 47, 30, 0, 16, 64, 36, 28, 5,129,127, 83, 34, 21, 47,224,150, 56,113,237,206,171,
-231,156,108, 28,234, 92,252,119,236,116,232, 86, 25, 14,137, 11,184, 7, 27,184,121,243,102,127,127,127,111, 21,136,189,225, 48,
-232, 12, 0, 60,138, 31, 60,121,252,244,201,147,155, 55,110,188,127,255, 94, 94, 94,158,135,151,215,195,213, 13,191,249,144, 35,
-146, 32, 0,215,229,101, 64,113,226, 99, 10,178, 11, 26,235, 29,194,248, 64,232, 59, 48,245, 31,116, 16,211,106, 33, 18, 52, 26,
-247, 51, 40,197,131,147,215, 2,134,179, 69, 36,135,111,200, 27,132,189,107, 68,240, 40, 4,150,158, 95,191,126,221,181,107, 23,
- 48, 25,135,178, 10, 75,200,138,254,248,250,157,243,219, 31,235,146, 84, 59,223,240, 45,115,103,108,222,187,215,205,205,141, 14,
- 73,226,239,223,191, 64, 55,232,235,235,171,169,169,157, 59,119,238,199,143, 31,170,170,170,152,135,195, 99, 5,127,254,252,185,
-120,230,188, 76,178, 97,153,153,246,137, 93, 61,107, 47, 59,168,234, 56, 17,169,119, 20,144, 1, 0, 2,136,168, 10,128,152, 35,
-125,168,114, 1,183,234,185,187,130,111,191, 48, 50,252,255,245,151,249,247,187, 47, 79,222,124,124, 48,229, 44,143,163,185,136,
-182, 6, 30, 93,103,247,167,107, 64, 87,105, 51,175,223,245,239,240,233,255,105, 17, 12, 64,145,162, 86,210,138,114,146, 46,224,
-198, 85,115,208,250,202, 14, 6,200, 49,150,245,140,140, 77, 88,164, 64,249,164,158, 49,236,122, 40,125,150,132,195, 74,255,255,
-224,210,223,238,200,145, 35,120, 42, 0, 61,253, 93, 90, 90, 38,171, 87,243,157, 60, 14,218, 6,117,235,198, 77, 32,153,146,184,
-238,227,151,156,207, 31,240, 85,243,174,174,174,192,106, 0, 88,202,239,219,183, 15,235, 73,121,196,111,250,199, 76,201, 25,233,
-233, 51,136,171, 60,144,175,161, 39, 1, 40,197, 35, 14,101, 35,163, 2,128,249, 14,207,201,163, 16,112,247,238,221, 3,171, 86,
- 53,185,132, 25, 68,103,177,137, 11, 50,176, 48, 49, 48, 48, 49,252,251,207,240,143,245,223,207,255, 94,241,105,143, 38,117, 28,
- 59,118,204,202,202,138,214,133, 41, 19, 19,147,129,129,193,129, 3, 7,128,117,128,153,153,217,139, 23, 47, 46, 94,188,168,167,
-167, 71,204, 49, 51, 64,207, 58, 59,185,182,247,109, 42, 79,184,108,225,145,105, 97,190,167,100,242, 19, 53,211, 56,172,122, 33,
-177,137,191,122, 0,202,146, 92,217, 15, 35,128,118, 33, 48,162,239, 5, 91,253, 15, 16, 64, 44, 68,102, 24,131, 56,221, 76,235,
- 28,226,235, 0, 50, 46,224,150,185,251,210,136, 83,144, 77,146,255, 47,195,127,206, 15, 92, 47, 94,191,126,241,249,163, 34, 59,
-207,141,157, 71,128,209, 43,138,187, 14, 0,150,245, 55,238, 50,253,255,207,241,151,145, 61,192,245,119,160,219,119, 6,134,127,
-176,118, 19,137,185,149,196,178, 27,126,100, 35,228, 32,170,173, 55, 88,127,252,254,157,158,104, 66,176, 26, 32, 88,167,226,219,
-255, 89, 15,202, 12,144, 91,144,176, 74, 17, 3,110,239,229,235, 89, 21, 9, 97, 23,135, 46, 87,115,249, 68, 70,233,223,215,215,
- 7,204,237,197,109,208,139,159,240,228,112, 7,135,143,106,106,192,166,247,102, 91,219, 73,112,193,168, 40, 6,240, 29,110, 83,
-150,175,194, 87, 7, 64, 74,127,200,193, 94,225,225,225,144, 83,143, 8, 22,136, 88,219,254,144, 3, 51,224,238,204,200, 32,182,
-244, 39, 19, 24,247, 49,192, 46,106, 7, 85, 0, 70,189, 12,231,138,105,100, 21,176,118,156, 30,152,166,232,228,202,192,252,147,
-145,149,137,145,133,137,145,153,245,255,127,198,127, 95,255,252,255,251, 23,216,164, 74,141,207,202,170,203,191, 43, 46, 78,210,
-166, 54, 50, 0, 48, 47, 72, 74, 74, 2,195,249,224,193,131, 55,110,220, 0,214,223,150,150,150, 39, 79,158,212,214,214, 38,168,
-247,200,222,229, 65, 6,223,206,126,102,142,170,255, 98, 99, 56, 49,167, 32,188,167,252, 67,121,207, 82, 37,195, 40, 60,133, 59,
-188,120, 1, 70, 49,154, 8, 37,231, 81,142, 4, 0, 16, 64, 44,196, 20, 82,203,118, 44, 85, 86, 81, 78,111, 74, 37,166, 14, 32,
-239, 2,110,133, 27,207,212,217,184,217,254,255,225,236, 41,253,243,237, 23, 71,113, 43, 63, 27,199, 15,214,239, 95,127,124,231,
-100, 96,124,126,240, 4,155,140, 36, 63, 63, 63, 86,189, 55,238, 50,204, 90, 1, 44,241,191,129, 17,131,173, 41, 83,160, 27, 35,
-172, 14, 96, 0,246, 6,102,173, 32, 42, 44, 72,189,128, 27, 82,250, 67,138,126,144,223,143,252,254,254, 11,116,193,175,115,249,
-238,206, 78, 87,130,230,220,237,184,203,202,120, 27, 26, 13,140, 79, 25, 69, 52, 96,236, 87,162,137,248, 54,199, 3,219,254,200,
-151,153,160, 72,165,175, 6, 75,225,107,254,191,185, 44, 89, 51,197,255, 63,195,255,246,130, 13,230, 14,106,203,166, 29,238, 93,
- 29,197,176,250,127,125,209, 52, 41,117, 98,155,210, 95, 30,166, 75,115, 48,124,123,123, 21,216,248,226, 21,211,131,148,254,211,
-167, 79,199,170,152, 87,224,138,154, 26, 48, 70,142, 1,251, 9, 39, 79, 50,128,239,236, 3, 1,248, 14,255,200,176, 41, 51,230,
- 84, 51,253,147,197,170, 29, 82,250, 3,219,254,192, 50, 5,207,189, 99, 4,155, 50,144,210, 31,169, 62, 72,159, 49, 3,123,178,
-100, 10,123, 15,111, 62, 48,130,241,191, 80, 84, 89, 70,200,168, 12,136,242, 70,237,243, 48,133,191,135, 12,216, 0,193,191,127,
- 9, 5, 5, 5, 16,113, 32, 3, 88, 19, 48,169, 38, 67, 13, 6,171, 65,211,203, 18,142,110, 47,242, 61,140, 32, 89,220,246,254,
-248,241, 67, 66, 94,129,225,223, 47, 38,118, 6, 70, 22,230, 63,159, 63,254,184,119,255,245,147,167, 50, 86, 14,140,108, 2,140,
-191,127, 49, 48, 51,117,102,150,184,206,106, 40, 42, 42, 34,187,188,192,117,196, 8,188, 68, 6,166,135,239,223,191, 11, 9, 9,
- 1,219, 7,192,208,190,127,255,254,130, 5, 11, 52, 53, 53, 63,124,248, 64,176,131, 5,212, 43,207,116, 82, 82,206,227,195,193,
-203, 31,223,179, 47,222,242,103,219,137, 37,121,161,156, 44,223,128,177, 22,133,189,191, 59, 10,240, 2,204,200, 66,235, 19, 0,
- 4, 16, 11,254,162, 31, 24,196,142, 85,246,179, 14,206, 76, 99, 72,191,176,232, 50,131, 53, 97, 43, 33,229,254,183,111, 75,129,
-113,250,227,199, 60, 33,161, 61,196, 92,192, 45,246,252,157,152, 56, 7, 71,125,214,223, 55,239,254, 60,123,195,194,198,202,197,
-200,204, 13, 68,204, 44, 66,172, 28,239, 63,127,120,190,239, 24,127,160, 39, 86,189,104,229,251,225,211,255,192, 21, 0, 67, 95,
- 53,227,127, 70, 6,198,255,196,118, 5, 72,189,128, 27,185,244,103, 96, 97,190,247, 28,148,123, 31,189,252, 33, 39,206,161,154,
-176,185,179,211, 23,191, 33,192,210, 31, 88,238, 51, 51,190,249,251, 95,132, 93,140,145, 59,226,217,191,127,239,126,252, 88,253,
-247, 76, 25, 37, 61, 21,130,181, 87,245, 20, 63, 75,161,154, 41, 27,146,121,152,228,128,220,172, 92,117,125, 51,165,165, 83, 15,
- 54,246,101,207,156, 73,108,103, 25, 88, 4,165, 23, 94,129,228, 91, 27, 27, 27, 96, 5,128,171,244, 7,213,136, 14,111, 25, 24,
- 46, 49, 48, 92,249,240,146, 71, 85,142, 97,246,236, 47,251,247, 51,168,170, 2,157, 10,138, 38,160, 32,168,139,169,123,253,210,
- 69, 89,172,165, 63,176,109,251, 15, 12, 24,192,247,201,144, 90, 96,193,217,200,165, 63, 3,104, 26, 0,103,236, 0,187, 5,144,
- 50, 28,107, 45,251, 15, 86,238, 0, 27, 59,192,112,216,124, 8,101,194,109,250,140,153,144,254,133,130,130, 2, 48,251, 76,156,
- 56, 17, 34, 14,100, 0, 43,128,157, 59,119,194,207,173,100,192,208, 11,233,142, 0,117,165,166,166, 98, 25, 31,135,117,122,102,
-205,158, 13,180,119,203,225,167,104,165, 33, 11, 47, 47, 3, 43,243,223,111, 31,174,111,219,187,116,213,154,105,207, 64, 22,157,
-106,228, 83,181,243,250,249,232,241,213,139,103, 47,223,191,245,241,197,139, 43, 87,128, 17, 39, 65, 70,105,130,121,236, 26,102,
- 9,254,236,217,179,218,218,218,158,158,158, 95,191,126, 49, 51, 51,243,242,242,126,253,250,245,212,169, 83,248,147, 37, 68,239,
-135, 39, 71, 27,231, 63,154, 91, 32,245,238, 43, 27, 27, 11,147,140, 32,199,139, 55,191,210,187,254,232,155, 24,203,225,238,213,
- 65,170, 1,120, 68, 99, 50, 70, 1, 90,233,143, 92, 43, 0, 4, 16, 19,174, 60, 3, 57,247, 28,209, 91,247,136, 38,198, 2,200,
- 13, 48,223,190, 45,131,148,254, 28,167, 31,124,219,169,194, 64,232,102, 24,150, 3,103,249,223,125,254,199,198,242,235,236,213,
-159,215,239,253,216,117,152,225,251, 79,182,255,255,185, 24,152, 89, 24, 24,127,254,251,243,238,231,143,105,187,183,224,210,222,
- 87, 13,106,230, 35,134,200, 35, 96,237, 43,134,255, 55,239,252, 47,106, 37,161,153, 0,185,128, 27, 18, 8,248, 79,235, 4,202,
- 34, 95, 42, 18, 57,225,201,222,179,239,129,165, 63,164, 14,184,253,228, 59,131,203, 42,252, 38, 0, 75,127, 80, 53,240,249, 50,
- 55,247, 29,118,142,207,192,210,255,247,239,179,204,204, 74,191,190,190,165, 93, 10,184,123,254, 11, 48,100,224,165,255,243,155,
-255,141,124,153,115, 91, 92,109, 92,129,221,243,255, 96, 89,194, 96,217,178,101,197,109,140, 60,162,186,192,144,245, 8,204, 60,
-114,228, 8, 30,197,255,152, 30,139,137, 65, 75,255,207,111, 65,167,100,235,235,131, 74,255,184, 56,104,233,255,249, 45, 39, 16,
- 9,113, 61,199,170, 61, 36, 36,196,209,209,209,201,201, 41, 60, 60,156, 25, 21,192, 69,240,187, 22, 45, 37, 19, 91,195, 33,149,
- 77, 16,128,201,101,196,214,180,128,107,116,115,115, 67,107,107, 3, 59, 1,144, 99,251, 96, 46, 67,215,187, 97,230, 76, 96,233,
- 12, 49, 28,238, 77,248,224, 56,156,139,213, 94, 96,126, 97,226, 98,255,253,226,225,204,154,154, 5, 95, 63,188,183,183,128,136,
-207, 93,178,160,161, 36, 69,173, 40,178,233,242,190, 85,239,239,187,250,249, 17,217,193, 5, 22,247,192, 92,112,254,252,121,164,
- 42,115, 6,214, 81, 62, 72,128, 92,190,124,249,224,193,131,145,145,145,192, 94,218,151, 47, 95, 32, 7,104, 3,251, 37, 60, 60,
- 60, 97, 97, 97,214,214,214,184,138,126,144,222,227,107,111,237, 44, 42,170,236,221, 92, 47,117,253, 41,203,199, 47,204,255, 24,
- 25,222,126,249,245, 95, 88,185,176,170,213, 39, 32, 6,103, 85, 13,172,198,193, 25,118, 38, 24, 96,101,140, 2, 92,165, 63, 16,
- 0, 4, 16, 11,214,162,159,140,142, 33,154, 8,176,244, 71,235, 22,224,185,128,155,229,237,135,119,255, 89,217,222,190,227,216,
-176,143,145,133,137,225,199,175,255,159,191, 50,254,249,195,202,192,240,247,255,191, 31,127,255,124,254,243,139,225, 31,206, 49,
- 95,200,100,111, 95, 53,150,212, 5,158, 28, 38,217, 59,196, 92,192,141,210,252,103, 96, 88,158, 35, 9,103,155, 84,220, 99,253,
-255,230, 55,163, 8,193, 43,188, 57,190,236, 23,106, 90,242,186, 56,227,205, 59, 78,169,223, 87,255,254, 5, 85, 24, 15, 47, 72,
-208, 46, 17,116,205, 40, 78,113,155, 9, 47,253, 33,130, 22,130, 53, 86,218, 33,150, 66, 87,129,178, 4,243,204,210,165, 75, 15,
- 29, 58,244,246,173,179,176,240, 94, 30, 17, 29, 96,106, 97, 98, 98,194, 51,207,246,232, 17,176,178,188, 2, 25, 55, 2,122,248,
-221, 87, 6, 51, 51,240, 36,196,109,134,169, 83, 25, 62,127, 98,248,250,133,225,203, 87, 6,110, 65,124,147, 16,152, 35,254,119,
-239,222, 5,146,109,109,109, 64, 82, 77, 77,141,188,209, 12,120,116,227, 81,150,159,159, 15,111,197, 35, 23,229,248, 13, 87, 84,
- 84,132,143,254,195, 1,164, 19, 0,148, 66,116, 2, 80, 65,178,180,218,173,171,215,158, 10, 10, 2,131, 52, 47, 47,111,210,164,
- 73,196,219,107,251, 83,224,255,191, 47, 41,109,213,186, 33, 33, 51,219,218,224,247,183,204,188,125, 5,218, 51, 62,124,120,247,
-238,221, 64,171,193, 25,252, 27,193,210, 31,210,165, 3, 6, 14,176,149,109, 96, 96, 0,172, 9,128, 26, 51, 51, 51, 31,127,198,
- 82,197, 62,121,242,196,223,223, 31,232,181,109,219,182, 65,174,204,100, 0, 47,233, 97, 0,223, 35,132,103,158, 22, 40,126,239,
-230,133,134,178, 36, 97,213,213,231, 87,199, 95,122,204,248,232, 37, 11,195,127,166,159,191,126,191,251, 47,156,157,156, 69,222,
- 18, 32, 74,238, 53, 25, 81, 0, 32,128,176, 12, 1, 1,171,113,100,238,135,167,239,137, 41, 49,225, 61, 0,240, 16, 16, 40,194,
-128,205,127,246, 43, 79,255, 10,128, 26,125,248, 47,224,190,246,228,209, 55,118, 78,165, 63,127,100, 56,121,184, 88,217, 24,127,
-255, 6,118,179,129, 29,222,207,127,127,125,251,251,231,231,127, 96,238,255,255,159, 80,140, 2,171, 1, 72, 29, 0,158, 18,128,
-150,251,125,213,204,189,213,140,197,173,127, 72, 13, 23, 98, 90, 73,229,171, 65, 33,211, 25, 42, 8, 41,244,161, 3, 59,255,223,
- 0,235, 45,150,255,239, 23,165, 8, 70,226,189,147,142,245,229,233,191, 12,160,209,143, 30, 22,254,200,151, 15,207,116,201,112,
- 75,104,126,124,250,244,197,131,103, 52,141,114,125, 51,165,175,224, 40,253,198,121,141,235,187,214,186,198,223, 16,113,107, 23,
-237,227,171, 8,183,253, 3,237, 14,109,216,224, 34,112,124, 79,127, 53, 67, 97,235,127, 59, 59, 59,252, 75, 63, 21,100,100,145,
- 39, 29,183,108, 1,205,253, 46, 91, 6,236, 4,252,159, 48,129,177,169,233, 11,168, 98, 96, 96, 80, 85, 23, 44, 46,196,103, 53,
-164,241, 11,236, 16,172, 92,185, 18,222, 46,246,240,240,192, 44, 37,137,175,230, 9,170, 1,150,152,192, 34, 27,179, 2,232,235,
-235, 67, 94,159,138, 9, 92, 92, 92,224, 87,177, 35, 3,160, 96,127,127, 63,174, 14,241,161,107,143,170,154, 74,146,235,203, 42,
-127,253, 2, 90,138,233, 53,160,189,123,246,236,193, 90, 38,218,105,201,205,155, 59,213, 56, 42,170,177,177, 17,107, 61, 1, 20,
- 4,106,159, 61,123, 54, 49,129, 3, 44,253, 33, 83,172,192,106,114, 6, 12, 0, 69,128, 53,193, 99,108,107,204,127,255,254,189,
-101,203, 22,103,103,231,219,183,111,127,253,250, 21,200, 5,214, 64,191,126,253,130, 92,155,131,191, 4,255,249,243,231,217,181,
- 81,118, 65, 77, 59, 15,222,189,255,156,249,211, 87, 38, 96,199,255,233, 87,206,188,138,106,130,122, 33, 83, 59,248,199,130, 70,
- 1,174,230, 63, 16, 0, 4, 16, 19, 90,150, 0, 2, 7, 48,184, 8, 3,247, 78, 63,252,248,253,163,176, 25, 81,107,159, 33,165,
- 60, 23, 87, 52,176,244,103,125,248, 22, 88,106,179, 37,191,101, 32,116, 1, 55, 43, 27,243,223,255, 12, 79,190,126,120,244,241,
-221,235, 79,239, 63,254,248,241,254,215,247,215, 63,191, 63,255,241,237,233,143, 47,239,126,255,124,255,239,247, 47,212, 1, 92,
-148,182,143, 41,246, 41,129,148,112,158,255,192,158, 49, 3, 27, 49, 46, 39,227, 2,238, 71, 47,127,236, 61,251, 30, 94,244, 67,
- 74,127,246,127, 15,129,168,193,157,229, 17,176,233,139, 23,172,189,255, 79,180, 23,218,112,190,255,245,239,147,187, 79,111, 30,
-189,250,226,193, 7, 90, 39,133,101,211, 64, 21,252,167, 87,255,129,165,191, 67, 50, 75, 80, 61, 43, 4,245,174,138, 98,100, 96,
-196,159,217,252,109, 14,198, 23,185, 8,158,216, 11,204,117, 27,143, 58, 48,128,143,203, 39,104,163,154,134, 58, 82, 21,194, 48,
-101, 10,195,157, 59,160,126, 64, 99,227,127, 56, 16, 20, 20,196, 57,136, 4,142,250,191, 96, 0,108,242, 3,219,254,183,192, 0,
- 88, 20,150,148,148, 16, 12,103, 74, 0,164,169,142, 86,158, 2,251, 4, 64,239,227,106,197,195, 91,160,104,205,127, 8,192, 42,
- 8, 7,135,217, 63, 48, 50,241,204,169,106,229,217,178, 7,152,101,224,103, 74,167,171,234,228, 27, 91,113,113,113, 1,171,219,
-218,218, 90,160,199, 49,111,209,154,251,244,214,115,109, 45,105,105,105, 96,112, 97,214, 88,144,254, 7,241,125, 35,248, 2, 27,
- 96,147,159, 1,182,121, 2,235, 69,114, 16,207,202,202,202, 2, 35, 2,216,201, 80, 81, 81, 97, 97, 97,129,212,208, 22, 22, 22,
-196, 52,213,149, 53, 12,103,237, 18,184,180,173,222,214, 82,147,155,131,137,155,235, 47, 39,251, 79, 79,127,162,238, 54, 0,150,
- 87, 16,119,226, 25, 11, 26, 5,120, 0, 64, 0, 49, 97, 13, 83, 32,200, 7, 3, 32,183, 57,163,249,247,171, 63,156,156, 28, 68,
-134, 38,164,206,231,114,191,243,159,153,169,118,221, 55, 6, 34, 46,224,214,180,178,250,195,195,245,254,255,223,107, 95,223, 95,
-249,248,246,234,167, 55, 87, 63,189,187,246,245,221,157,111,239,223,254,252,241,229,207,159,103,223,190,226,185,129, 47,208,141,
- 17,216,210, 7,162,255, 12,204,255, 25,153,210, 34, 24, 83, 35,216,146,195, 69,149,149,197,255, 49,176, 50, 48, 48, 18, 83,250,
-147,122, 1, 55, 80, 49,104,160,159,129,225, 76, 7,168,175,176,179, 20,180, 66, 9,216,240,103,254,255,245, 39,147, 60,144,253,
-238,221, 59, 98,110,112, 5, 6, 14, 48, 63, 47,251,242,245,251, 47,166,248, 21,115, 94,113,112, 2, 25,180,139,239,146,176,229,
-199,223,181, 46, 91, 12,109,234, 3,155,255, 22,130, 53, 16,118,107,246,150, 25,184, 39,129,129,133, 66,127, 13, 67, 66,145,179,
-192,137, 61,142, 93,246, 76,222, 12, 7, 14, 28, 32, 50, 73,200,203,203,195,217, 78, 78, 12, 2, 2,192, 14, 22,131,185, 62, 47,
- 7, 27, 51, 51, 19, 52,118, 76, 76, 77,113,166, 81, 38, 38,200,136, 63,176,232, 87, 67, 2, 77, 96,240,236,217, 51,130, 69, 12,
-242, 32, 62, 28,100,100, 16,213, 66, 4,182,244,209,110,212, 2, 22,226,248,155,255,200,115, 15,240, 6, 44,132,253, 15,119, 59,
- 6, 8,126, 49, 50,254,251,246,147, 85, 66, 62,189,165, 37,129, 91, 64,224,192,113,232,208, 80, 76, 66, 67,207,156,219,125,203,
-235,116,157,194, 4, 21,119,111,218,132,217, 64, 9,200, 72,215,214,209,129, 76, 80,255,133, 1,248, 0, 26, 50, 23,235,128, 15,
-176,112,135,204,241, 66, 6,253,225,101, 61,176,201, 15,105, 92, 3,107, 2, 32, 27,151, 79, 89, 89, 89, 3, 2, 2, 62,126,252,
- 8,172,153, 56, 57, 57, 69, 69, 69, 5, 4, 4,240,223, 34, 9,215,203,206,206, 30,156, 49,105,193,105,147, 7,143, 63,137,243,
- 51, 91,170, 51,234, 41,254,231,230,227, 27, 45,157,105,221,252, 7, 2,128, 0, 98,193,223, 65,134, 55,138,101,236,165,136,108,
- 59,192, 47,224,102, 75, 94,205, 64,220, 5,220, 95,244, 85,190,221,186,245,237,207,207, 79, 95,191,221,253,253,155,245, 31,104,
-248,230,227,239, 31,255,192,185,103,219,203,251, 95,255,252,198, 59, 38,195, 88,212,138, 72,220,224,129,160,127,127, 25,126, 94,
-191,243,121,222,202, 79, 68,150,254, 12, 36, 94,192, 13,114, 79,103, 24,171,243, 52, 32,243,237, 91,232,180, 45,219,191,231,191,
-152, 36,179,117,111, 61,127, 14, 42, 38,240,151,143, 25,235,102,193,171,198,213,176,251,106, 87, 92, 62, 70,211, 61, 92,170,206,
-159, 24, 86,253, 63,186,231, 42,144,109,165, 13,218, 85, 91, 86, 80,127,236,170,118,207,170,168,170,169,222,248, 29, 12,108,251,
- 11, 9, 65, 70,181, 14,128,107, 56,151,255,255, 87,131, 11,214,255,171, 87,227,187, 32, 55, 36, 40,120,247,206, 93, 12,224,133,
-255,142,142,140,111, 30,243,127,125,207,241,253, 19,219,138,133,140,249,249,255, 31,190,250,108,110,105,161,167,173,131,127, 14,
- 0, 50,232, 15, 76, 87, 12,224, 75, 4, 33,226,175,192,128,152,113, 30, 96,204, 2, 43, 18,228,242, 23,216,100, 36,102, 23, 24,
-100,208, 28, 62, 19, 0,233, 13,224,111,254, 51, 32,173,122, 64, 94,207,131,127, 41, 4,164,174,250,243,249, 51,171,136, 16, 51,
- 23,143,118,112, 72,147,155,107, 21,100, 41,167,161,209,223,239, 63, 88,133,197,117, 45, 28, 20,100, 20, 39, 93, 63,174,163,163,
-243,252, 52,202,141,164, 25,160,164, 11,170,228,178,128,101, 55,120,181,232, 31,164, 18, 31,216, 40, 7,138,192, 23,152,122,163,
-150, 5,192,146, 29,232, 71,200, 56, 15, 48,196, 32, 67, 61,200,178,120, 74,127,136,179,129,197, 61,176,189,127,227,198,141,115,
-231,206, 1, 35,139,155,155,251,219,183,111, 68, 14,214,139,139,139,251,251,251,159, 56,114,106,194,234,221,124,140,108,234,226,
- 63,239,188,225,182, 81,255, 13,175, 33,112, 13,232, 3,197,225, 25,118,116, 8,136, 60, 0, 16, 64, 44,196,140,147, 2,131,242,
-201,193,103, 12, 81, 68,149,254,240, 18, 13,205, 28,252,117,128,148,152,248,229, 31, 15, 62, 50,253,123,241,227, 11,195,239,223,
-127,129,177,206,192,112,253,203,135,167,223, 62, 65, 46,224,198, 91, 1,252, 7,182,250,103,173,128, 54,181,110,220,101,208, 80,
-254,195,204,240,149,164,210,159,129,244, 11,184,193,107, 70,179,128,125, 0, 96, 99, 31,216,255,237,116,101, 40,223,109, 87,160,
-115, 12,210, 72, 36,216,252, 71,238, 24, 33,179, 33,101, 28,254, 70, 19, 67, 61,163,201,172,123,152,115, 21,208,157,192,123,240,
- 93, 14,213,150,189,165,122,170,239,241, 85,255, 45,133,174, 90,187,104, 31,217,125,245,196,251, 22, 70, 6,198,214,236,205,192,
-162, 21,143,189,192,210, 31,152,229, 2, 3, 3,103,207,254, 4,201,146,140,176,245, 40,161,161,136,232,222,124,216, 18, 83,111,
-118, 94,238,212, 73,147,129,205,255, 95, 47,100, 31,127, 96,255, 7,234, 59, 49, 72,126, 21, 47, 77,251,188,251,132,186,150, 37,
-190, 58, 15, 82,244, 67,110,121,125,241,226, 5,164, 79,240,242,229, 75, 6, 82,230,250, 32,147,153,104,163,231, 51, 64,130,233,
-120,214,131,194, 99, 4, 62, 19, 0,236, 13, 16,211,252, 71, 46,164,136, 87, 12,108, 50,191,120,248, 64, 81, 89,245,223,159,159,
-140,127,254,178,240,242,241, 26,153,240, 24,154,254,251,250,231,239,183,159,255,255,252,101,248,251,175,124,122, 79,120, 84, 56,
-102,227,250,207, 10, 65, 60, 38,163,201,250,111, 70, 87, 0, 44,226, 33, 35,254, 12, 72,247, 0, 35,215, 1,248, 61,168,174,174,
- 62,121,242,228,215,175, 95,187,186,186,158, 57,115, 6, 88,250, 3,181, 16,188, 51, 21,162,215,194,220, 60, 35, 57,227,254,147,
-251,177,201, 25, 39,119, 47,124,254,249,157,137,189,171,184,140, 26,122,194,198,150, 17,224, 5, 20,230,254,175,209,141, 96,196,
- 0,128, 0, 98, 33, 50,243, 16,217,246, 71, 46,209, 72,186,128,251,167,189,177, 26,131,241,211,153, 11, 24, 56, 57,222,255,255,
-243,235,207,159,127,255,255, 9,243,243, 63,249,250,145,224,157,168,104, 11, 61, 97,115, 0,127, 73, 42,253, 25, 72, 63,197, 1,
-178,111,192,196, 4,180,239, 87, 72, 72,232,249,243,231, 5, 58,207,225,165, 63, 65,163,176, 94, 81, 75, 20, 0,111,247, 69,222,
-109,135, 38,133, 31, 8,235, 61,157, 49,115,198,173, 61,124,189,171, 35,143,175, 2,182, 7, 25, 75,194,150,131,122, 6,120, 75,
-127, 72,196,129, 11,250, 79,224,188,199,128, 86,178, 45,232,221, 11, 36,185,229,128,249, 16,203, 36, 33,176,129, 15, 52, 65, 68,
-108,215,223,207,103, 24,153, 25,190,253,224,100,252,252,135,133,137, 69, 92, 89,211, 77,206,139,229, 63, 78,103, 3, 11, 20, 21,
- 21, 21,202,211, 39,100,152, 24, 88, 7,192,151,199,192,251, 1,196,207, 4, 64,138, 33,130,205,127,178,129,147,147, 83,246,170,
- 89, 77,159, 63, 24,216,219, 48,137, 11,130,172,251,253, 31,116,156, 3, 3, 43, 35, 51, 11, 35, 27,243,236, 25,125,124,206, 38,
-202,202,202, 84,223, 3, 5, 25,234,153, 62,125, 58,144,212,215,215, 39, 73, 47,176,134,222,187,119, 47, 51, 51,179,173,173, 45,
- 48,120,209,134,254,129, 29, 2, 96, 65,143, 22,236,112, 0,236, 49, 44, 90,176,144,141,153, 61, 36, 50, 4,168,198,198, 43, 5,
-165,222,250,243, 7,162,119,116, 85, 15, 45,198,127,128, 0, 32,128, 88,168,101, 13, 85, 46,224,118, 76, 79,184,119,247,222,185,
-237, 59,191,254,252, 5,236,192, 42,155, 25,121,200, 69, 18, 44, 73,201,158,234,129,148,224,228, 93,192, 13, 55, 1,178,102, 20,
-222,222, 7, 50,136,113, 15,196, 94,242,156, 29,118, 61, 20,236,107, 44,238, 12, 35,212,123,128, 3, 53,151, 79, 51, 93,224,238,
- 36,246, 28, 8,112, 41,207, 24, 95, 4, 61,159, 11,146, 43,129,130,192,114,159, 91, 46,148,160,246,151,207,221, 94, 50,184,253,
- 99,122,204,207,247,145, 65,136, 1,116,252,195, 47, 6, 22, 18,147, 22, 37, 0, 82, 7,144,161, 17, 62, 19, 64, 82,243, 31, 79,
-235, 21, 43, 0,150,236, 18,121,121, 19,118,237,186,215,188, 33,148, 85, 88, 0,124,160,219,247,111,127,242, 75, 42,153,185,132,
-182, 45,156,121, 81,132,209,141,148,195,124,254,254,253, 67,204, 28, 24,145, 67, 61,184,124,119,235,214, 45, 32,169,161,161,241,
-246,237, 91, 22, 22, 22, 96,169, 45, 44, 44,204, 0, 59,159,142,141,141, 13,210,105,195,170,247,212,169, 83,255,254, 48, 90, 89,
-235, 3,123,120, 64,149,191,126,253,146,145,145,129, 72,125,252,248, 17,216,209, 1, 26,194,206,206,142,167,221, 9,169, 27,144,
- 25,163, 67, 64,196, 3,128, 0, 98,161,145,185,228, 23,202,202, 74, 74, 57,153,116,243, 63,217, 23,112, 99, 86, 3,100,216, 75,
-158,117,120, 92, 75,235, 51,224,192, 13,124, 6,240, 97, 60,200,130,161, 36, 25,194,244, 79,246,243, 7,217,129, 74,241,228, 29,
- 13, 6,108,245, 19, 28,193,199, 10, 72,210, 5, 44,245,184,184,184, 2, 3, 3, 33, 71, 58, 63,130, 29,233,124,116,239,110,200,
-145,206,206, 22,206,184,244,206,126,223,158, 42, 88,137, 34,132,247,244, 80, 92,117, 0, 25,126, 52, 53, 53,133, 44,249,255,247,
-239, 31,176, 4, 7, 50, 94,191,126, 13, 36,121,120, 64,171,156, 33, 34,172,172,172, 88,253,235,227,227, 3, 81, 0,212,251,227,
- 7,120, 31, 37,120, 89, 23,100, 85, 24, 68, 4, 88, 49, 96,237, 1,140, 46,242, 33, 6,224,191,245, 29, 32,128, 70, 47,133, 31,
- 5,163, 96, 20,140,130, 17, 10, 0, 2,104,244, 70,176, 81, 48, 10, 70,193, 40, 24,161, 0, 32,128, 70, 43,128, 81, 48, 10, 70,
-193, 40, 24,161, 0, 32,128, 70, 43,128, 81, 48, 10, 70,193, 40, 24,161, 0, 32,128, 88, 70,131, 96,168, 0, 67, 28,151,251,224,
- 1,231, 71, 39,120, 70,193, 40, 24, 5,184, 1, 64, 0,209,240, 82,120, 58,232,101, 99,219,197,201,254,130,149,237,195,191,127,
-160, 37,137,204,204, 76, 76,140,204, 32, 18,180,110,152,233, 63, 35, 11,136, 98,248,179,121, 43,235,255,255,255,245,244, 18, 6,
-131,155, 41,209, 43, 67,202,178,135, 39,168,203,224, 70, 47,209, 30,213, 59,170,119,100,234,197, 3, 0, 2,104,104,247, 0, 14,
- 29,185, 99,102,242, 91, 80,128,225,221,123,198,243, 23, 57, 88,152, 88,188,220,255,238,222, 47, 10, 44,246, 25,153,152, 56,120,
- 25,156,204, 62, 48, 48,176,216, 88,254, 63,117,134,128, 79,247, 31, 3, 29,106,207,250,255,183,185,173,211,199,151,143, 46,223,
-126,248,247,219, 15,250,220,172, 59,210,192,245,155,231,126,253,248,198,203, 43, 69,235,203,147,169, 8, 20, 21, 21, 33, 71,249,
- 67, 78, 84, 38, 73, 47,242, 73,136,228,173, 37, 29, 5,163,128, 70, 0, 32,128,208,139,197,133,139,230,226,215, 16, 31,151,140,
- 75,138, 18,189,100,131, 83,103, 88, 61, 92,255, 94,188,196,201,198,202,194,194,204,194,202,250,159,157,249, 55, 3, 11, 47, 11,
-195,119, 51,237, 63, 28,108,236,255, 25, 24, 36,197, 25,252,188,254,221,188,135,175,244,191,115,253,150,138,150,178,148,180,192,
-147,135, 55, 88, 57, 69,180, 52,212,182,111,220,184,103,207, 30, 90,215, 1,116,190, 80,126, 96,193,165,139,123, 20,100,126,234,
- 42,255,255,247,239,239,199,143, 79,110, 92, 57,243,229,167,164,137,177,237,224,119, 57,176,244, 47, 40, 40, 0,118, 40,241, 28,
-230,140, 7,144,121,161,252,200, 0,248,143, 10,102, 0, 7,220, 44,108,167, 88,195, 47,133,135,169,250, 15,219,159,136, 8,237,
- 17,126, 41, 60, 4, 32, 95, 3,137,182,238, 31, 32,128,232,215, 3, 96, 98,160,254,102,110, 47,183,223,255, 25,152, 89,152, 89,
-173,204, 25,197, 68,153, 88, 88,152,216, 89,153, 53,212,152, 30, 62,254, 99,102,204, 36, 44,196,177,125, 31,232, 76, 65,230,255,
-223,255,255,255, 39, 33,141,179,244,191,116,230,140,130,148,204,165,227, 39, 78,254,250,253,254,205,123, 54,118, 94, 77, 67,107,
-125,107,183,253,155, 65, 59,132,105, 84, 7,160, 93, 40, 15, 57,139, 49, 37, 37,101,240, 87, 3, 23,206,239, 97,103,121,199,194,
-244,235,199,143,191, 31,191,114,218,216, 17, 62,185,247,218,141,115,188, 28,111,157,172,217, 21,228,149,249,248,248,127,255,249,
-243,250,245, 27,241, 71,143,111,223,189,119,236,232, 59, 43,107,255, 65,222,252,103,128, 29,167, 12,172, 0,240,220,232, 50,216,
- 0,176, 5,179,118,237, 90,148,227,143,104, 88, 26,194, 46, 96, 37, 85,219,163,117,140, 39, 83, 96,133, 56, 3,236,178, 53,132,
- 73, 41, 51,190,154,133, 79,198, 90,173,110,223,190, 29,194,246,240,240,216,177, 99, 7, 86,246,104,233,143,201,133, 87, 3, 0,
- 1,132,189, 2, 56,122,228,164,181,141, 57,117,221,241,143,208,205, 92, 68,222,208,132, 82,169,176, 48,191,127,199, 34, 33,198,
- 42, 33,198,246,229, 11, 43, 7, 43,203, 95, 22,118, 35, 93, 70, 3, 61,102, 38, 70, 86,208, 38,114, 86, 54, 86,166,159,140, 28,
-108,127,190,225, 44,253,143,236,219,171, 40, 41,122,229,226,149,234,230, 6,184,120,107, 99, 27, 19, 51,163,145,177,209,246, 29,
-123, 9, 86, 0,255,254,253, 3, 22,226,119,238,220,225,228,228,212,213,213, 37,120,118, 13, 3,198,133,242,240,219, 86,231,204,
-153, 51, 80,117,192,249,243,231, 13, 13, 13,241,171,185,114,237,220,255,159, 15,228, 37,127,240,243,177, 51, 49,113,125,255,254,
-231,237,187,239, 7,247, 76,224,224, 51, 50, 55,179,195,163,145,131,249,181,154,226,127,109,109,205,231, 47,222,159, 61,127,238,
-203,151,175,252,252,188, 74, 74,242, 76,204,172,127,255, 62, 58,127,225,136,161,129,205, 96,110,254,195,111,119, 1,246, 3,128,
-117, 0,145,215,170, 96, 52,100,233,221, 3,128, 36,221, 53,107,214,144,119,175, 22,241, 0,222, 24,159, 57,115, 6,169,246, 48,
-201, 7, 67,244,158,106,231, 65,107, 36, 74, 8, 48, 73, 11, 49, 13,158,240, 28,186, 0, 94,226,163,213, 7, 0, 1,132,179, 7,
- 0,172, 3,128, 36,169,213,192,145,188,219, 88,197,109, 38,169, 18,159, 67, 32, 61, 56, 98,170,129, 61, 7,196, 88, 89, 88,101,
-165,190,124,254,204,122,246,138, 44,232,202, 84, 70,102, 54,214, 63,218,170,223,212, 85,153, 25, 25,152,216, 88,217,217,152, 25,
-141,245,126, 9, 9,254, 59,116, 26,187, 33,154,138,226, 15,239,190, 66, 46,253,129,160,186,190,170,173,185, 75,210, 82, 79, 80,
-128, 23,191, 27,190,127,255, 14, 44, 17, 30, 62,124, 8,225, 2,155, 30, 94, 94, 94,254,254, 4,154,180,104, 55, 74, 34,131,222,
-222,222,226,226, 98, 58,111,115, 7,150,254,240, 43, 53,240,128,159, 95,159, 42, 74,127, 23, 17,230,150,145,150,224,226,230,122,
-248,240,233,223,191,255,164,165,120,175, 94, 63,126,129,147,219, 64, 23,251,197, 15,151, 47, 31,209, 83,251, 37, 39,167,120,237,
-250,195,179,103,175,191,126,243, 25, 24,207,130,130,156,223,190,125, 49, 52,212,254,240,225,227,211,179,231, 47, 94,230,212,215,
- 53, 30,180,205,127,248, 69, 46, 4,175,117, 68, 30,217, 64, 59,202, 24,200,134, 15,119,144, 49,142,212,220,220,236,235,235, 75,
-234,105, 13,192, 58, 0,104,239,170, 85,171,112, 29,199,198, 0, 62, 75, 25,173,103, 0,185, 18, 18, 40,142,214, 38, 0, 22,244,
-152,103, 7,192,143, 87, 2,250, 55, 61, 61,131,164, 78, 6,178, 94,179,202, 47,167,219,121,224, 69,255,104,169, 77,173,230, 63,
-114,148,161, 69, 31, 64, 0, 17, 8,101, 96, 53, 0,169, 9,136, 4, 88, 11,122, 34, 75,127, 8, 56,120,240,224, 83, 48, 32,230,
- 44, 39,230,255,223, 89, 24,127,176,177,178,158,191, 34,202,204,194,194,203,246,141,143,227, 59, 47,255,223,167, 79,121,217,217,
- 56,216,217,217, 67,253,254,248,121, 50, 73, 75,177,115,113, 98,191,155,226,219,135,199, 47,222,125, 41,174,171,195,148,250,240,
-241,221,251,215, 47, 24, 9,117, 92, 86,175, 94, 13, 47,253, 33, 96,219,182,109,215,175, 95,199,223,252, 71, 62,255, 25,210,252,
-255, 8, 3, 64,118,125,125, 61,217, 71,197,145, 93,250, 19, 84, 6,108,254,115,176, 60,231,228,100,229, 96,103, 83, 84, 84, 48,
- 49, 51, 19, 20, 20,100, 97, 97,102, 99, 99, 22, 18,228,120,250,248, 1, 46,141, 44,255,159,242,242,112,126,251,254,231,202,149,
-219,207, 94,124,124,244,228,211,173,123,191,158,191,248,252,250,245,135,219,183,238,169, 40, 43, 75, 75,241,189,125,253,104,112,
-102, 33,200,232, 63,178, 8,176, 55,128,114,183, 59,158,182, 45,120, 57, 26,214, 11,229,201,235, 64, 0, 11,101,120,103,145, 72,
-176,119,239, 94, 96, 18, 37,120, 53, 35,242,229,239,200, 23, 2, 35, 91,135,203,106,136,177,144,187,195,200,235, 21,173, 42,228,
- 70,110,245, 67, 74,127, 96,219, 95, 10,212,252,199, 23, 92, 30, 30, 30,158,158,158,144,113, 30, 8, 3,194,246,128,129,209, 58,
- 0, 63, 0, 8, 32,162,230, 0,200,235, 13,144, 13,110,223, 6,117, 35,128,117,128,180,180, 52,254, 54, 41, 11, 11, 11, 43, 51,
- 43, 43, 43,163,157, 53,195,183,175, 63,239,223,101, 3,118, 8, 88,254,178, 88,152,255, 7,214, 10,204,204, 76, 12,255, 25,223,
-189,103, 56,125,142, 5,116, 19, 8,182,202,238,220,249,187, 95,190,252,194, 20,239,168,175,103,103,231,248,254,253,227,223,127,
- 4,238, 19, 62,119,238, 28,166,224,217,179,103, 53, 53, 53,137,108,254, 35,183,233, 54,111,222, 12, 87, 67,163, 78, 0,218, 80,
- 15,188,244, 39,152,129,223,191,123, 37,194,203,248,231,239,191, 95,191,255,188,126,243,142,149,141,227,231,207,223,191,255,252,
-253,243,231,223,159,191,255, 63,188,127,131, 75, 35, 27,235, 87, 14, 78,153,183,111, 63,126,250,252,237,221,251,239,124,194,250,
- 86,122,122,167,142,238,144,250,245,231,227,167,143,234,234,202,236,108, 44, 95, 63,191, 27,156,205,127, 96, 9,133,118,153, 34,
-176, 7, 64,228, 76, 0,176,230,192,188, 3, 18,126,172, 52, 46, 0,191, 92, 33, 35, 67,200,217, 25,113,250, 27, 48, 71, 0,201,
- 77,155, 54,189,121,243,134,200,121,169, 61,123,246, 64, 74,127,136,250,181,107,215,226, 42,133,145,251,127,152, 23, 2, 67,196,
- 33,215, 2, 99, 53, 1,114,140, 40,144,132,244, 27,176,122, 16, 87,122, 6, 58, 47,196,114,207, 74, 6,134,240,254,175,166,149,
- 95,176,234, 53, 11,199,238, 65,228,177,126, 92,243, 1,163,165, 60,242,200, 15, 90, 15, 0, 32,128,168,223,207, 66,107,239,147,
-212,252,135,180,127,225,213, 0, 48,243,224,239, 7, 48, 51,179, 88,152,253, 99,102, 98, 57,125,134,227,230,109, 14,111,119, 6,
- 31, 79, 6, 95, 15, 70, 73,113, 54, 14, 54,118, 32,226,228, 96,151,150, 4, 50, 56,128,108,172, 38,212, 86,215,116,182, 55, 97,
-102, 27,101, 69,121,126, 1,110,142,127,191,190,124,251, 77,139,248, 56, 2, 6,240, 66, 31, 14,128,220,183,111,223, 2,123,250,
-180,107,236, 35, 55,235, 32, 92, 72, 79,156,224,216,194,223,191, 12, 95,191,253,254,250,245,215,167, 79, 63, 95,190,124,255,236,
-217,155,207,159,127,126,249,242, 27, 88,131,126,253,250,251,227,135,143, 56, 7,142,126,254,249,241,227,239,239,223,191,120,121,
-217,100,165,249,184,184, 65,205, 61, 37,101, 5, 25, 41, 62,126, 62,142,255,255,255,254,254,243,239,231,207,175,131,179,249, 95,
- 84, 84,132,181,100, 39,216, 9,192,188, 75, 18, 2,128,130,123,136, 59,181, 27, 60,162,130, 0,144,194, 23, 88, 13, 0,203,116,
- 98,250,199,192,182,255,154, 53,107,224,165, 63,144, 12, 9, 9,193, 85,124, 3, 13,199,188, 18, 18,210, 38,128,139, 3,221, 67,
-232, 48,237,255,104, 3,185,200,195, 95,184,244,136,136,136, 48,194,218,249,164,234, 29, 5, 36,149,254, 12, 24,115, 0, 0, 1,
- 68, 84, 15,128,110,109,127, 88, 65,243, 23,114,169, 52, 97,135,153,253, 19, 19,101,255,244,137,133,157,229, 15, 59, 27,243,129,
-147,108,222,142,172,192,182,255,167, 79,172, 71,207,112,243,113,128,174,146,240,112,249,229,239,253,159,137,233,255,130,181, 68,
-217, 14,204,156,204, 92, 28,239, 88, 69,184,126, 63,185,243,244,191,147,131, 29,126,245,192,214,244,177, 99,199,208, 4, 9, 94,
-131, 12,185,212,123,193,130, 5, 9, 9, 9, 16, 17,248,189,146, 64, 17,252,215, 28, 82, 2, 32,109,127, 72, 51, 13,190, 66, 14,
-115,168, 23, 43, 16, 20, 18,125,118,255, 10, 48,156,127,253,254,247,227,231,147,199, 79,222,190,123,255,233,221,187,111,111,223,
-125, 7, 34, 1, 33, 5, 92, 26, 95,190,249,255,226,229, 27, 77, 77,229, 15,239,223,179,178, 48,125,250,252,228,235,135,127, 90,
- 42, 95,197, 69, 69,185,184,184,216,217, 57,159,191,248,204,200, 44, 56, 56, 51, 15,214,107,220, 33, 51, 1,248, 53, 66,250, 7,
-240,187, 36,225, 53, 7, 3, 41, 87,202,132,133,133,193, 91,196,144, 91, 43,128,177, 22, 28, 28, 12,172,126,240,111,246, 65,107,
-251, 67, 0,114,127, 2, 25,224,186, 18, 18, 34, 14, 76, 45,144,187,215, 33,226,143,177,217, 11, 84,147,149,149, 9,185, 93, 7,
- 92,109,252,135, 20,233, 64, 93, 16,247,227,169, 57,128,122,167, 58, 10,134, 79,248,134, 54, 22, 4, 20,129,232, 77,114,100, 29,
- 45,196, 41, 1,105,229, 29,112,246,172,206, 10, 96, 29, 0,239, 7, 0, 4, 16, 11, 45,138,126, 96,171, 31, 50, 27, 76, 82,243,
- 31,169, 93,207,140, 60,198,135,231, 30, 49, 17, 17,102, 38, 70,102, 81, 17,102, 85,229,255,207,158,177, 48, 49, 51,178,178,176,
-176,178,176, 94,186,204, 45,196,205, 10, 52,199,218,252, 47, 39, 39,251,191,127,255, 25,254,255, 37,198,106, 96,182,225, 17,151,
-125,249,229,255,215, 59, 7, 88, 24,153, 75,235,171,137,201,162,143,193, 0,217,205,120,198,127, 24,192,235,253, 33,197, 61,164,
-244, 7,182,247,129, 53, 1, 68,234,211,167, 79,192,210,127,203,150, 45,196, 92, 40, 79, 30,128, 92,252, 4, 12, 82,200, 20, 37,
- 49,109,127, 8,208,215, 53,190,126,229,236,255,167,159,190,125,255,253,158,253,199,127,134,247, 63,126,252, 1,246, 6, 94,189,
-249,246,236,249, 23, 91, 71,121, 92, 26,191,255, 18,185,119,255,181,146,162,156,162,162,204,219,183,111, 4, 5,254,170,170,242,
-139,137, 42,113,112,114,126,248,240,229,236,185, 27, 79,158,126,146,144,209, 30, 60, 25,230, 63,248,182, 75, 72,193, 11, 47,127,
-177,174,229,199, 50, 90,129,180,130, 17,216, 9,128,223, 37, 9, 1,125,125,125,187,118,237,194,165, 23, 18, 35,233,233,130, 48,
-235,254, 35, 23,217,144, 10, 0,216,138,199, 51,254,131, 52,124,180,151,164,219,141,112, 93, 9, 9, 17,135, 20,223,184, 10,113,
-200, 18,163,105,211,166, 67,102, 56, 12, 12,244,225, 3,247,176, 22, 61,206,155, 6, 32,122,153,194,222, 67,244,134, 58, 41,192,
- 3, 38,172,255, 26, 3, 3, 3,254,214, 63, 48,175,193, 23, 56,121,122,122,194, 99,103,116,228,135, 72, 0, 16, 64, 44,131,164,
-213, 15, 1, 17, 17, 17, 36,169, 7, 54,240,153,153, 65, 72, 83,141,201, 80,247, 47, 59, 27, 7,168, 2, 96,101,181, 50,103, 96,
-103,103, 96,101,102, 23, 17,225, 96,102,254,250,247,239,191,127,255,136, 26,201,249,246,238, 5,135,140,198,253, 61, 75, 68, 89,
-152, 98,171,171,136,209,194,201,201, 89, 85, 85, 69,210, 50, 80,200,237,243, 57, 57, 57, 16, 46,164,189, 15, 44,250,191,125,251,
-150,148,148, 4,100, 79,155, 54,141,118,171,128, 32,151,255,193,239, 80, 37,105, 85,137,140,188,250,153, 19, 59,197, 68,128, 13,
-119, 22,240,216,206,223, 79,159,127,189,123,255, 93, 86, 81,219,198,202, 30,151, 46, 47,175,224, 93,219,231,159, 56,117,213,214,
- 90, 95, 94, 94,254,247,175, 31,134, 6,122,220,252,252, 15,239, 61,122,250,236,195,209,227,215,223,127,230, 15,180,180, 31, 60,
-185, 34, 51, 3, 50,192,194,152, 9, 44, 16,193, 5,250, 63,164,114,159,137,137, 17,207, 5,235,160,203,217,255,195, 11, 64, 70,
- 96,202,131,119, 2,128, 12, 96,105,229,225,225, 14,171,100, 24,188,163,107, 49,199, 58,112,149,218, 64, 89,252,165, 63, 50, 0,
-170,196,213,222,199,147, 42, 48,175,132,132,139,227,185, 44, 12, 94,115, 0,203, 95,112,243,159, 17,185,254,192,111, 47,178,222,
- 85,133, 60,160,112,225, 16,135, 72,173, 42,124, 4,169, 12,118, 94,252,141, 43, 64,144,199,253, 71,231, 0,200, 0, 0, 1,132,
-189, 2,176,178, 54,163,112,220,141,188,182, 63, 60,218,136, 4,239,222, 51, 74,138, 51, 65, 14,126,216,181, 23, 52,208,207,206,
-206,193,206,198,238,235,201, 8,164, 56, 57, 24,223,189,101, 62,117,150,247,239,191,191,178, 50,132,135,152,129,205,255, 15,223,
-190,191, 63,179, 77, 85,150,245,202, 83, 18,134,164,129,245,144, 25, 24, 16,175, 5,124,161,124, 39,100,180, 7,216, 27, 48, 55,
- 55, 7,182, 22,253,253,253,129,236,216,216, 88,218, 53,255,225, 3, 65,144,214, 28, 49, 35, 63, 40,209, 10, 46,229,111,221,184,
-246,236,222, 67, 96, 57,248,247,239,127, 14, 78, 33, 53, 77,157,192, 0, 2,151,130,137, 73,235,157, 56,181, 3,216, 99,208,213,
- 81,146,150, 18,121,244,248,229,251,203,119,111,222,122,180,119,223,165,135, 79,255,167,164,230, 14,170, 92,241,111,165, 32,241,
-178,190,155,240,234,189, 59, 31,222, 9, 0,141, 26,221, 91,128,172, 0, 77, 47,214, 14, 1,114, 89, 73,146, 47, 72,205,194,184,
-174,132, 36,230,170, 72,120, 65,143,166,140,152,230,197,191,135,107,215, 76,136, 3,117, 95,156,228,224,165, 63,136,235,101, 10,
- 30, 45,189,128,171, 2, 24,221, 7, 64, 36,152,213, 89,129, 60, 10,132, 12, 0, 2,136,133, 42, 73,135, 42,128,140, 54,239,153,
-115,236, 28,108,108,190, 94,192, 26,128,209,204,228,207,229, 43,156, 76,224, 43,164, 63,124, 96,146,146, 96,102, 98,100,187,120,
-153,141,131,157,225,215,239, 95, 15, 31,113, 18, 44,253,239,222, 58,111,238,236,195, 34, 98,126,247,214, 41,150, 23,107,202, 74,
- 43,187,186,219,105,228, 89,228, 11,229,117,116,116,222,191,127, 15,100, 3,201,188,188, 60,250,236, 2, 35,181,232, 71,174, 3,
-128,232,194,229,179, 47, 95,188,228,230,230,198,211,240, 71, 41, 8,244,140,129,104,233,146,153,215,110,158,148, 20,231,225,224,
- 96,253,242,229,215,211,231,159, 24, 89,100, 83, 82,227,134,115,230, 59, 87,204,160,156,136, 88, 72,122,182,136,118, 37, 56,120,
-148, 70, 8, 86,109,144, 83, 56,226, 42,175, 9,150,227,228,221, 37, 9,247,102,168, 37, 59,200,193,223,159,131,208, 40,160, 30,
-240,137,169,133,204,250, 2,235, 0,100, 65, 56, 27, 32,128,208, 43, 0, 74,142,235,161,197, 81, 63,132, 83, 15, 3,227,251,247,
-140, 92, 18,140,194, 66,140, 38, 70,191, 57,216,152,217,217,126, 11, 11,113,128,243, 0,163,133,201,223, 83,231, 88, 65, 93, 4,
-188,121, 9, 88,250,107,171,243, 21,231, 55,125,103,147, 89,183,231,169,178, 26,168, 45,207,115,122, 75,113, 73,101,111, 15, 13,
-235, 0,200,133,242,192, 38, 63,188, 91, 48, 84,174, 57, 5,237,249,210, 37, 89, 87,116, 76,250,145, 99, 7, 95,191,125,253,253,
-197, 55, 14, 14, 97, 25, 69, 61, 34,235,143,193, 0,254,255,255,199, 64,222,113, 38,247, 22, 64,151, 3,221, 91, 72,107, 71,146,
- 52,236, 51, 72,128,155, 79, 56,193,182, 60,174,206,245,232, 28, 0,241,117, 0,102,233, 15, 4, 0, 1, 52,228,239, 3,248,207,
- 0, 90,225,195,200, 4,140,249,255, 66, 2,255, 15, 30, 97,225, 0,109,255,101,241,243, 2, 38,134,127,130,194,127,254,252,101,
-252,247,239, 47, 56,247,226, 4,122, 10, 95,188,131, 67,191,176,168,138,241,112, 71, 5, 10, 45, 91,127, 25, 82, 7,252,254,187,
-142,214,238, 39,227, 66,249, 33, 13,134, 68,137, 63,235,125, 71,154, 96, 5,138,208,106, 33,242,245, 2, 91,253,164, 52,252, 71,
- 26, 8,201,158, 66,183, 49,131, 17, 91, 7,224,146, 2, 8,160,209, 75,225,135, 12, 24,189, 16,102, 20,140,130, 81, 64, 93, 0,
- 16, 64,163, 55,130, 13, 25, 48, 90,154,143,130, 81, 48, 10,168, 11, 0, 2,104,244,196,165, 81, 48, 10, 70,193, 40, 24,161, 0,
- 32,128, 70, 43,128, 81, 48, 10, 70,193, 40, 24,161, 0, 32,128, 70, 43,128, 81, 48, 10, 70,193, 40, 24,161, 0, 32,128, 6,254,
- 82,120,123, 51,105, 92, 42,191,190,123, 1, 97,112, 11, 73, 64, 24, 7, 79, 61, 69, 86,240, 83, 84, 28,151,222,221,253,208,125,
-182,174,133,208, 53, 6,236,175, 95, 18,105, 47, 38, 32,222, 94, 76,128,102,175,137,161, 20, 46,149,111,238, 95,133, 48, 68, 20,
-161,231, 34,156, 57,255,140, 90,254,245,216,141,253, 0,122,126, 41,169, 88,216, 81,192, 83,196,161,230,239,112, 77,163, 86,252,
- 34,235,189,121,243, 38,242,249,104,133,133,133,234,234,234, 52, 74, 87,163,122,169,162,247,242,229,203, 16,134,174,174, 46,169,
-122, 49,175,120, 26, 13,231, 1,209,139, 7, 0, 4, 16,246, 73,224, 63,127,254,252,248,241,131,145, 25,116,169,214,223, 63,191,
-217, 88, 89,216,217,217, 73,173, 91,128,134, 48,128, 79,108, 38, 73, 23,176,208, 7, 22,247,144,162, 95, 66, 86, 1, 72,190,192,
-125,208, 60,102, 33, 8, 44,254, 32, 69,225,212, 77,167,128,100,182,159, 25,195,224, 6,192, 66, 31, 88,220, 67,138,126,109, 19,
-107, 32,121,245,204, 81, 90,251,119,243,151, 47, 59,191,126,117,231,230, 6,146, 12, 47, 95,158, 42, 47, 3, 10,154,117,118,209,
-212,167, 7, 14, 28, 88,177, 98, 5, 48, 93,193, 69, 56, 56, 56, 34, 34, 34, 28, 28, 28, 70, 27, 98,131, 10, 0, 11,125, 96,113,
- 15, 41,250, 73, 77,147,144,147,187, 32, 69, 63, 73,105, 18,249,124, 83,242,214,119,146,113,165,224, 40, 0, 8, 32, 44,165,243,
-167,207, 95, 36,213, 76,237,117, 53,184,216, 89,255,255,255,255,247,239,255, 43,183, 31,222,191,116,152,147,157,149,200, 67, 58,
-129,128,135,227,129,182,234,189, 43,183,148,190,254, 84, 32,190,232, 7,146,156,252,194, 64, 6,164,232,199,218, 27,192,211,254,
- 53,139,174, 0, 50, 32,201, 14, 83, 22,235,130, 87,100, 99,217,216,216, 24,192,251,203, 65,151, 7,128, 15, 37,133,184,135,137,
-153, 21,127,163, 27, 8, 36,197, 64,109,231, 95,159, 62,252, 4, 87,123, 95,254,252,133,184,135, 95, 76, 6,127,123,159, 95, 74,
- 25,200,128,100, 51,108,189, 1, 65,234,250, 23, 8,114, 94,130,122, 6,144,210, 31, 82,244,131,218,230,187,118, 35,203,250,224,
-141,169,143,220,111,222,242,188,254,240,246,142,152,128,166,204, 27, 21, 98, 34, 23,216,246, 95,185,114, 37,114,233, 15, 4, 64,
- 46, 39, 39,167,164,164, 36, 90, 63, 96,120,131, 61,123,246,144,116,203, 52,158,195, 16,105, 81,244, 67,210, 36,144,129,153, 38,
- 97,189, 1, 65, 60,229, 47, 48, 77, 2, 25,152,105, 18, 34,139, 43, 77, 2,101, 15, 29, 63,197,204,204,242,247,239,159,143,159,
-191, 68, 5,251,247,244,244,144, 87,250,211, 57,196, 6, 57,216,130,109,237, 56,114, 44, 0, 4, 16,122, 5,240,245,251, 47,103,
-191, 40, 89, 49,126, 46, 14,208, 37, 42,127,255, 49,176, 48, 51, 10,241,107,104,171,202,237,217,185,245,239,239,175,196,212, 1,
-191,126,253,210,212,190,175,175,113,159,153,233,239,129, 51,210,108,172,132, 79,115, 5, 22,196,192,162,150,159, 15,116,255, 34,
-132, 68,147, 5, 86, 9,184,186, 2,192,242, 14,152,236,226,195,131,128,108, 8,137, 38, 11, 76,142, 4,155, 33, 64,127,201,200,
-200, 0, 73,160,227,191,126,253, 10, 44,253, 33, 39, 54, 19, 85,219,177, 48,207,155,176,158,157,159,225,229, 3,134,211, 95,158,
-190,126,113,103,113,127, 37,193,134, 63, 48,155,201, 72,129,134,182, 32, 36,214,177, 32,242,252,139,231, 28, 0, 96,249, 14, 44,
-250,155,115,178,129,236,102, 88,209,191,228,214, 45, 68,233, 79,232, 16,129, 7,255, 15, 51,152, 61,141,144,139,249,249, 79,133,
-253,223,255,235,111,246,158,223,125, 83,229, 95, 22,126,255,246,247,247,127,255,254, 29,249,248,107, 8, 27, 40, 8,236, 7,144,
-122,202,205,245,235,215, 39, 78,156, 72,203,251,205,105, 88,250,175, 90,181,234,253,123,215,213,171, 67,137, 81, 15, 57,157,159,
- 62, 37, 26,176,124, 7,166,201, 91,231,143, 1,139,126,228, 52,185,111,235, 58,113,113,113,248, 88, 16,174,242, 23, 79,154, 4,
-149,206,240,227, 85, 49, 0, 48, 30, 95,188,122,115,254,202, 53, 88,179,224,103,215,228, 89,233, 9,145,163,133, 56, 29, 0, 64,
- 0,161, 76, 2,127,254,252,217,198, 45, 80, 67, 78,152,157,149, 9, 88,250,191,120,241,226,242,197,243,191,254, 0,153,255,133,
-249,185,220, 60,125,190,255,252, 67,140,161,236,172,175,148,229, 94, 48, 48, 51,106,169, 62,102,103,121, 73, 82,233,143,210,210,
-252,244, 25, 88,232, 3,165, 48, 59, 4, 88, 75, 67,100,176,112,229, 58, 96,161, 15,148,194,108,140,160, 1, 96,195, 31, 88,238,
-243,241,241,221,187,119, 15, 88,232,131,170, 61,162, 75,127, 96,195, 31, 88,250, 7,230,182,120, 70, 89,109,185,242,244,197,119,
- 6, 82, 75,127,100,240,228,217, 11, 96, 95, 91, 84,144, 15, 92, 53, 51,147,225, 95,143,224,120, 80, 11,141,133,149, 96,233, 15,
- 4,181, 83,166, 2, 17,164,244, 7,246, 6, 74,221,192,237,126, 81, 54,124,229, 17,255, 54,183, 16,169, 68,249, 44, 86, 38, 30,
-110, 6, 46, 38, 6,102,105,113,107,155, 96,231,123, 82,253,248, 7,127, 64, 46, 92,184, 16, 82,238,163,145,112, 5,196,128,111,
-223,190, 17, 20,161, 17, 72, 75, 75, 11, 13, 93,189,116,233, 82,202, 75,127, 33,161, 61, 68,106,153, 9, 6,140,140,140,200, 87,
- 54,210,174,244,111,173, 42, 92,189,122,245,156,201, 61,200,165, 63, 80,100,202,148, 41,120,210, 36,114,233,143,153, 38, 61,173,
-193,167, 78,241,114,227,210,219, 59,121, 58,164,244,127,245,230, 45, 16, 1,123, 0,172,172, 44,211, 23, 44, 39,230,210,155, 81,
- 64, 12, 0, 54,249,145, 17,178, 20, 64, 0, 33, 42, 0, 96,169, 39,172,160,167, 32, 33,240,227,247, 95, 96,109,189,115,231,142,
- 69, 11, 23, 92,186,120,177,180,168,128,153,153, 9,216, 23,224,227, 98, 87,208,179, 1, 54,217,240, 91,246,251,247,111,109,213,
-135,124, 60,223,230, 45,124,197,196,248,223, 76,247, 38, 80,132,160, 19,209, 74,127, 72,209,255,253,227, 91,120,197, 0, 20,193,
-165, 23, 45,229, 65,146,221,169,165, 29,240, 68, 9, 20,193, 99,181,178,178,178,176,176,240,167, 79,159,128, 53, 1, 19, 19, 19,
-208,131,192,210, 31,210,209, 33,120, 26,215,218, 13,235, 11, 38,236, 90, 63,185, 6, 88, 19,112,113, 11, 61,254,251, 20, 88,250,
-243,128,243, 9, 51, 94,189,104,165, 63,164,232,255,248,236,174,134,140,216,231,111, 63,216,185,216, 25,254,254, 37,213,191,149,
-179,183, 92, 61,119, 92, 71, 73,235,227, 95,156,245, 52,164,244, 7,182,250,129, 69, 63, 68, 4, 88,244, 3,209,189,244,198, 93,
-215, 46,105,155, 41, 49,188,197, 25, 89, 23,217,182, 88, 59,136,138,114,107,126,255,255,153,225,231, 43,182,159,239,126,254,253,
-252,227,223,247,127,108, 60,210,182, 38,107, 46,180,225,210, 8, 25,250,135, 92,107, 5,207,246,112, 54, 80, 10,168,128,152,116,
-252,230,205,155,162,162, 34, 96,219,255,198,141, 27, 64,238,225,195,135,219,218,218,106,106,106,232,147,139,128, 5, 55, 85,218,
-254,192,210,191,170,138,168,147,198,225,133, 62,242,189,140,180, 3,192, 52, 9,185, 58,248,236,217,179,192,114, 31,152, 38, 33,
-165, 63, 3,248,214, 70,242,210,100, 87,130,207,149,187,143, 37,148, 36, 25,190, 18,168,167,129, 69,255,239,223,127,192, 5,200,
- 31, 32,122,252,240, 1, 73,142, 71,238, 46,140,118, 29,136, 7, 0, 1,132, 24, 2,250,249,243,167,161,134, 6, 23, 39, 43,176,
-189,255,247, 31,195,209,195, 71, 26,155, 91,254,253,103,184,125,231,206,165,139, 23,116,116,244,153,153, 25,213,149,100,238,157,
-251,195,137,247, 96, 77, 54,150, 87,106, 10,207, 24, 88, 24, 31, 63,255, 13, 36,245, 52, 30,158,186,252,234, 63, 3,177, 75,110,
-224,227, 60,104,125, 2, 96,101, 0, 94, 11,244, 20,143, 94,248, 56, 15, 90,123, 4,152, 16, 65,107, 99, 94, 99,239,139,252,249,
-243,135,139,139, 11, 88,244, 11, 10, 10, 2,155,147, 95,191,130, 14,130, 22, 21, 21,125,251,246, 45,193, 51,170,126,188,103, 48,
-227,228, 44,157,124,216, 85,159,225,225,121,134,211, 96, 65, 32,119, 82,161,227,223,127, 68, 93, 65, 3,159, 94,115, 54,214, 96,
-225,101,218,121,224,154,161,134, 44, 31, 15,251,193, 51,119, 68, 20,181, 31,160,174, 2,194,229,223, 77,215,254, 51, 60,103,240,
-115,102,156,189,229,158,176,160, 98,144, 53, 35, 30,255, 66,198,124,118,126,133,158,119,253,191,161,159, 65,250, 35, 99,106,253,
-255,198,102, 6,166,239,140,167,218,166,136,139, 99, 61,149,251,135,198, 67,121, 1,175, 79,127,191,252,124,127,103,241,163,101,
- 71,252,222,107,165, 56,186,229,242,112, 10,170,115,176, 8,178,248,125, 60,189,238,180,169,137, 41,206,206, 38, 19, 19, 60, 60,
-145,217,196, 3, 17, 17,145,252,252,252, 35, 71,142,236,220,185, 19, 84,117,237,220,169,169,169, 25, 24, 24, 72,159,172, 18, 16,
-240,139, 90,165,191,188,188, 60,145,133, 26,188,220,135,116, 2,200, 62,195,149, 72,224,228, 29, 4,236, 7, 3, 43, 0, 96,185,
-111, 12,102, 48,128,175,183,243,176, 55,129,164, 73, 93, 93,221, 7,120, 87,152,192,211,228,243, 13, 29,188,218, 28, 60,170, 5,
-171, 58, 82,244,117, 36,212,125, 90,128,222,193,186, 58, 5,216,182,227,224, 0,173, 49, 1, 54,252,191,125,251, 65,182,227, 71,
-203,125, 92, 0,207, 97,112, 0, 1,132,168, 0,254,253,251,199,197,206,246,235,207,127, 38, 70, 6, 32,170,111,106, 1, 86, 3,
- 95,191,126,121,241,226,185,184,184,196,255,255,255,254,252, 97,224, 96,101, 97,102,197, 55, 68, 0, 44, 76,181,148,159,136, 8,
-126, 2, 13,249,129, 47,250,100,100,252,111,164,125,251,228, 37,113, 98,150, 3, 65,154,249,152,195, 65,120,154,255,200,141, 14,
-204,162,159, 96,243, 31,210,174, 20, 19, 19,131, 44,115, 2,118, 86, 32,115,191,252,252,252,172,172,172,143, 31, 63,198, 63,125,
- 49,127,207,193, 20, 31,123, 7, 48,251,214, 31,208,248, 15,144,225,160,198,192,215,178,191,176,196,138,160,155,129,141, 44, 32,
- 41, 39, 38,244,254,231, 79, 22, 62,230, 31,175,191, 1,139, 70, 73,121,153, 93,251, 78, 19,233,223,248,226,214,251, 71,247,178,
-188, 96,248, 32,206, 0,172,196, 44, 20, 20,157,236,241, 45, 81, 69, 30,241, 95, 18,158,178,246,231, 77, 6,149, 31, 12, 39, 89,
- 24,120, 88, 24,124,141,101,124,227,241,117,149,164,133,126,253,122,199,250,231, 55,176,244, 63,158,192,111, 23,232,175, 33,166,
-121,101,215, 1,195,208,175,172,191,190,254,209,248,247,250, 37,190,137,122, 72,137, 15,153, 3, 64,102,147, 4,128, 37, 62, 55,
- 55,247,245,235,215,185,192, 32, 58, 58,154,214,195, 62,192, 82, 27, 88,244, 71,131, 1, 61, 75,127,180, 49, 31,200,197, 41,116,
- 40,227, 60,130, 99,148,148,148,128, 21, 0,164,244, 7,182,253,197, 37, 37, 73, 74,147,105,190,118, 39,158,189,226,213,231,125,
-186,243, 46, 3, 7,123,112,110,156,144,140, 15,222, 66,227,239,211,231, 47,129,165, 63,164, 7, 0, 4,164, 54,255, 49, 7,139,
- 70, 43, 3, 60,149, 1,114, 29, 0, 16, 64, 40,115, 0,255, 33,107, 96,254, 51, 0,139,126, 38, 80,217,205,176,110,237,154,192,
-160, 16, 17, 81, 49, 72,166,253, 79,232,144,113,102,166, 87,218, 42,208,203, 17,245,116,184,192, 77, 23, 6, 35,173,123, 64,113,
- 98, 28,135, 60,230,131, 38, 14,223, 10,128, 11, 32,143,249,160,137,195,151,198, 99, 5,159, 62,125,250,252,249, 51,176, 3, 4,
-172, 2, 95,191,126, 13, 25,255, 1,118, 5,190,124,249, 66,112, 8,104,253,228,154, 3, 87, 24, 62, 62, 96,248,253,157, 97, 82,
-185, 35,100,252,231,220,121,134, 11,207,143, 18,179, 94,234,227,179,187, 66,252,220,194, 66,220,234,106,154,247,238,191,190,245,
-244,173,156, 48,255,207,151,175,254,252,254, 3,223, 10,128,199,191, 86, 14,254, 54,142,145,235, 55,175,218,127,104,213,178,190,
-226,224,226,182, 75,191, 25, 94,191,125,133,199,191,240, 17,255, 68, 43,243,104, 45,249, 85,235,247, 93,186,244,160,239,242,217,
- 21,174,113, 12,115,143, 61,125,250, 26,190, 21, 0,203, 16,193, 15,246,191,191,222,252,250, 5,186,252, 93, 92, 90, 86, 67, 83,
-243, 19, 39,104,166,228,251,191,111, 76, 63,191,114,126,101,126,249, 28,123, 5, 0, 9,198, 31, 96, 0, 31,246, 65, 91, 17, 68,
- 36, 0,198,203,146, 37, 75,128,213, 64, 65, 65, 1,176,230,134,116, 5, 6,237,176, 15,217,165, 63,114,243, 31, 50,247, 0,239,
- 4,208,186,128, 0,166, 73, 52, 17,120,154,132,111, 5,192,147, 38,109, 77,213, 93,172,213, 90,155,122,122, 39,108,171, 91,178,
- 47,195,201,228,197,198,109, 31,223,127,194, 85, 34, 3,197, 67,253, 60, 32,195, 62,240, 10, 0, 8,218,234, 43,137, 47,196, 71,
-139,123,252, 0,109,244, 31,185, 67, 0, 16, 64, 76,200, 61,244,143, 95,190, 49, 51, 49, 2, 43,228,127,255,255,255,249, 7,154,
-180,191,120,225,188,147, 51,232, 6,187,191,255,255, 51, 51, 49,127,254,246,235,207,175,159, 56,107,242,191,127, 21,165,159,139,
- 10,125,132, 84, 38, 86,102, 60,144,203, 85,129,157, 0, 67,205, 59,127,254,254, 37,166,249,143,117, 42,152,216,230, 48,182,105,
- 40,130,122, 5, 5, 5,129,229, 62,176, 7, 0,172, 6, 68, 69, 69, 33, 19,194,192,226,233,195,135, 15, 4, 43,128,180,214, 21,
-192,114,159, 95,129, 1, 88, 13,228,117,238, 7,150,254, 65,249,237, 79,254,189, 88,218, 87, 6, 12, 73, 98,154,255,198,198,106,
-162, 74, 10, 98,162, 34,108,192,144,103,252,255,250,235,247,247,159,127, 16,233,223,222,142, 13, 1,154,138,124,124,194, 92,162,
- 82,191,223,189, 63,191,101,249,135,119,143,136, 76, 19,243, 58,114, 24, 10, 93, 88,254,252, 82,248,202,240,138,249,211,164,231,
-167, 25,216,248, 8,140,119,221,253,244,134,233,251, 35,182,111, 38, 42,142, 90,113, 60,247, 4, 15,136,138,158,151,181,184,247,
-145,233,243,207,255,223,191, 45,249,199,193,195,139,167,237, 79, 21,240,240,225, 67, 32, 9,108,140,139,136,136, 4, 6, 6, 66,
- 90,169,180, 3,233,233,130,152, 35, 63,196,207, 6,147, 93,250, 35, 23,244,240, 74, 8,114, 99, 59, 77,253, 11, 76,147,199,143,
- 31,135,140,251, 27, 27, 27, 51,128, 47, 34, 94,185,105, 27,241,105,114,227,250, 6,247,242, 92, 47, 47,103, 17,118,230,207,140,
-255,119,222,122,124,252,202, 83,130,197,119,102, 66,228,189, 59,119,128, 13,127, 8, 2,150,254, 88,219,245,163,128,188,162, 31,
-215,248, 15, 16, 0, 4, 16, 98, 88, 6, 88, 2,222,190,118, 73, 65, 74,136,147,149,229,239,223,127,224, 43,154, 25,210,210,179,
-129, 93,130,191,224,221, 0,223,126,252,184,126,235, 30, 27, 27,206, 65,145, 63,191,223, 25,106,221,135,103,250,172,194,251,107,
-151,168, 66,250, 12, 38, 58,119, 79, 92,212,100, 97, 22, 37,216,252, 71, 43,250,129,130, 12, 72, 59,129,241, 55,255,209,146, 35,
- 80,144, 1,105,103, 44, 46,240,247,239, 95, 9, 9, 9, 96, 15,224,229,203,151, 64, 54,176,100,121,251,246, 45,144,132,220, 82,
-141, 95,239,235, 23,119,106, 90,246, 3,123, 0,221,197,182, 95,254,252, 45,234, 92, 61,177, 60,180,184,111, 11, 11,232, 14, 26,
-194, 77, 45, 73, 17, 1, 86, 6,214,191, 12,140,207,239, 95,125,248,234,163,178,168,208,197,119,207,206,221,125, 74, 76,243, 63,
- 56,169,136, 85,136,129,137,153, 97,193,182,251,107,167,149, 38,117,204, 44,242,213,207,118,150, 39,232, 95, 96,243,191,215, 47,
-140,225, 3, 7, 3, 35, 43, 67,111, 79,200,233,195,187,156, 51, 25,219,115, 25, 79,148,225,105,254, 3,193,197, 23, 34, 54,223,
- 63,126,225,100,254,198,193,161, 28,204, 10, 44,244, 63, 50,177,254, 97, 80,251,255,247,219,239, 55,207,143, 78,254, 24, 29,165,
- 76,163,116, 12, 31,140,214, 4, 3,136,160, 45, 24,208, 52,255, 96, 93,176, 79,100,183,128,236,210,159, 1,117,244, 31,109,193,
- 40, 77,103, 2,110,157, 63, 6, 15,234,172,164,176, 29,176,177,160,237, 74, 74, 4,247, 46, 0,211,100,184,139, 57,255, 63,193,
-111, 12,172,107,251,115,167,109,185, 80,234, 97,147,208,183, 44,164,109, 49,193,122, 11,190,119, 12,141, 59,186,162,159,214, 0,
- 32,128, 16, 61, 0, 96,203,247,195,243, 59,119, 31,191,101, 97,101, 6,246, 1,126,255,249,123,238,220,217, 69,139,230,255,250,
-251,255,247,223,127,108, 44, 76,175,222,127,121,122,253, 56, 39,142, 41, 96, 96,209,169,169,252, 16,218,252, 7,247,251,215, 46,
- 81, 3, 13, 0, 49,253, 7, 34, 38,166,127, 22,250,215,255,226,238, 4,160, 53,255,225,171,128,128, 69, 63,193,210, 31,173,249,
- 15, 95,129, 0, 44, 10, 9,150,134,224,252,252,254,203,151, 47,172,172,172,144,230,255,191,127,255, 32, 36, 49, 21,192,226,254,
-202,115, 79, 15,242, 72,128, 38,126,121, 89,152,129,245, 1, 31, 59,235,135,119, 79,128,205,127, 22, 38, 38,130,205,127, 89, 33,
-222,107,247,238,255,249,245,139,157,133,237,203,151, 31, 23,239, 63, 3, 22,253, 4, 75,127,136,127,253,115,154,151, 78,154,248,
-237, 31,131,172,178,204,149,171, 39,128,165, 63,145,254, 5,130, 34,101,147,205,183,247, 49,124,252,195,192, 33,178,251,212, 53,
- 96,233, 15, 44,250,241,151,254, 64,160,255,203,231,232,238, 83, 12,191, 62,127, 97,252,252,158,233,203, 71,150,223,191,255,126,
- 98,255,241,141,227,217,253, 21, 85,183, 21, 12,212,240,204, 0, 3, 1, 60,229,112,128, 1,154, 32,126, 48, 27, 12, 6, 48,159,
- 64, 90,253,192, 50,157, 1, 60, 27, 76,112, 66,152,146,210, 31, 88,196,255,199,189,100,158,118,203,129,128,105, 18,190,230,167,
-166,182, 16,152, 38,197,197,197, 33,235,130, 32,226, 4,211,100,138,131, 94, 65,207,196,207, 47, 95,137,242,137, 93,189,246, 8,
- 88,250, 67,150,177, 18, 89,231,193, 1,242,168,206,104, 63,128, 18,176,101, 73,243, 22,188,247,136, 0, 4, 16,202,196, 44, 47,
- 47,239,217, 3, 27,254,255,247, 83,144, 18,230,229, 98,215,210, 49,208,210,214,103, 97, 98,248,242,253,239,163,231,239, 78, 29,
-216,202,195,205,133,203,160,175,223,190,169,201, 63,255,241,147,227, 63,228,218,188,255, 12,156, 28, 63,128,201,248,221, 7,118,
-160, 0, 47,247, 31, 93,181, 7,135,207, 24, 2,173,192,223,252,135,183,250,129, 92,214,255,191, 25,254, 64, 87,143,253,101,225,
- 34,216,252,135,183,250, 33,220,143,175,160, 75, 14,240,108,199,133,215, 1, 64, 18,216, 15, 0,146,239,222,189,227,227,227,131,
-140,255, 16,115, 41, 43,120,213,127,123,102,168, 61,195,164,195,211,170,189, 67,138, 39, 46,235,200, 6,246, 0,216,216, 57, 8,
- 54,255,175, 61,122,165, 34, 43,178,119,207, 9, 6,240,246, 75, 32,249,251, 39,180,175,205,138, 91, 59,164,249,223,146,228,156,
- 87,191, 64, 86,137,145, 36,255, 66,154,255,110,235,231,237,138,142,100,148,177, 96, 0,111, 9,102, 0, 31, 14, 1, 81,224,203,
-195,131,199,217,122, 63,203, 46,110,223,242, 67,253,152,130,170,206, 39, 78,134,251, 12, 15, 63, 63,120,253,186,237,239,151,247,
- 50,133,113,197,248, 3,106,250,244,233,192,226,254,251,247,239,240, 34, 12,200, 5, 10, 14,137,140, 4,105,245,191, 4,111,147,
- 38,102, 54, 24,216, 94, 38,175,244,103,128, 93,254,142,167,224, 35,117, 47, 49,145, 0,152, 38, 91, 27,106,214,109,222,238,110,
- 99, 4, 79,147, 64,100,124,239,158, 71,112,204,163,183,223,228,132,185,240, 55,255, 11,102,109,174, 74,118,147,146,112,128,212,
- 34, 16,167,226,233, 75, 17,217, 45, 24,237, 7, 80,177, 62, 64, 19, 1, 8, 32,244,149, 57,124,188, 60,231, 14,108,184, 47,163,
-174,164,170,201,199,205,249,239, 63,195,247,159,191,238,221,187,247,250,222, 5, 94, 30,110, 38,220,173, 90, 78, 14,142, 85, 59,
-236,241,180,241,129,122,185,185, 9, 52,247, 32,107, 64,129, 77,254,127,127,127,131, 74,127, 48,248,205,200,138,235, 48, 6,100,
- 0, 89,127, 6,108, 2,195,203, 65, 34, 75,127,120, 29, 0,223,252, 5,172, 3,112, 6, 16,142, 58, 96, 49,108, 35,212,236, 54,
-216,158,216,223, 95, 20,241,234, 2, 54,255, 79,189,249,112,225, 54,104,192, 7, 94,238, 19, 44,253, 33, 0,216,252, 95,107,196,
-157, 19,168, 65,134,127,129,205,255,226, 77,171, 24, 91,235,183,139,155, 79,248,114, 5, 46,110,200,194, 42,195, 65,248,196, 39,
- 96, 63, 96,251,166, 31, 79,222,223,125,253,246,249,203, 91, 60,204,127,249,172,245,108, 29,227, 28,105,154,112, 7,124,211, 47,
- 25,107, 64,211,211, 5,201, 40,253, 25, 6,116, 74, 19,152, 38, 45, 45, 45,209,210, 36,176,244,103, 0, 77, 5,115,225,215, 11,
-108,254,187,238, 57, 25, 93,191,200,206,206, 78, 28,181, 55, 73,118,117, 5,169, 3, 8, 6, 8,102,101, 57, 90,103,224, 41,247,
-145,103, 2, 0, 2, 8, 75,249, 6,108,255,254,124,247,248,220, 1,208,114, 17,200,133,203,236,236,236,152,115,179,104,128,149,
-149,149,159,136, 35, 31,240, 0,200,128, 15, 51,176,201,255,231, 27, 51, 82,209, 79,204,137,213,144, 1, 31, 96, 81,136, 92, 26,
- 18, 83,244,243,139, 74,253,194, 61,173,141, 31, 68, 55, 47,190,125,227, 42,217,254, 61,117,235, 49, 36,155, 33,151,254, 4,139,
-126, 8,136, 51,226, 38,207,191,160, 56,237, 47,131, 20,253,240,210,159,200,162, 31, 14, 60, 21, 67, 24, 32,149, 27,113,107,100,
-128,197, 55,100,211, 47,176,189, 15,223,253, 11,100, 64,154,255, 64,198,224, 63,212,129,140, 53,160,180,104,164,211, 26, 96, 77,
-147, 4,139,126, 8,112,173,153, 77,197,162,159,164,234,112,180,172,199, 5,208,110,132,103,192,152, 7, 6, 8, 32,236, 13, 92,
- 22, 22, 22, 92, 99, 53,180, 0,144, 81,126, 72,209,207, 64, 98,209, 15, 25,245, 38,175, 40,100, 0,173, 92,250, 71, 76,247, 2,
- 43,120,245,238, 35,241, 22, 33, 3,200, 40, 63,121, 69, 63, 37,254,133,140,242,111,254,242,133,236,162,127, 20, 12, 87, 0, 89,
-226,249,232,237, 55, 50,138,126, 72,249, 11, 31,237, 25,186,245,223,112,173, 3,240,200, 2, 4,208,232,165,240,163, 96, 20,140,
-130, 81, 48, 66, 1, 64, 0,141,222, 8, 54, 10, 70,193, 40, 24, 5, 35, 20, 0, 4,208,104, 5, 48, 10, 70,193, 40, 24, 5, 35,
- 20, 0, 4,208,104, 5, 48, 10, 70,193, 40, 24, 5, 35, 20, 0, 4,208,104, 5, 48, 10, 70,193, 40, 24, 5, 35, 20, 0, 4,208,
-192, 95, 10, 63,210,244,254,120,241,152,120,189, 28, 18,178,163,225, 60,170,119, 84,239,168, 94, 26, 93, 10, 15, 16, 64,131,186,
- 7, 64,234, 46,240,123,247,238,237,129, 1, 32,123,180,122,199, 3, 62,126,252,248,232,209,163,227,199,143,159, 59,119, 14,200,
- 32,207, 16, 42,158,242, 54, 10, 6, 57,184,121,243, 38, 73,138, 51, 50, 50,200,182,136,108,189,163,128, 84, 0, 16, 64, 44,131,
-214,101,164,150,224, 64,245, 29, 29, 29, 97, 97, 97,200,218,149,148,148,136,215, 14, 4,171, 87,175, 14, 13, 13, 85, 2, 3,252,
-234,211,210,210, 8,154, 9,116, 12,214,213,208,187,119,207, 39, 70,239,251,247,220, 52, 10,219, 87,175, 94,253,252,249,147,145,
-145,145,131,131,227,199,143, 31,192, 10,224,244,233,211,250,250,250, 42, 42, 42, 36,153, 67,204, 81, 25,224,138, 60,147, 24,101,
- 51,103, 78,167,182,222,116, 28,138,209,143, 30, 35,152,174, 24,234, 25, 25,155, 48, 42,191,122,198,176,235,161, 12,236, 26, 4,
-157,231,238, 14, 58, 82,151,188,195,171, 33,103, 65,167,167, 11, 82,178,178, 30, 88,170,246,247,247, 19,220,112,151,154,154, 6,
-244, 22,102,172,150,148, 20, 19,163, 29,158, 42, 38, 76,152, 96,111,111, 15, 44,199,151, 45, 91,246,233,211, 39,130,150,162, 20,
- 73, 44,204, 17, 86,108,233, 25,233, 93, 59,186, 75, 92, 75, 32,130,179,103,207,194,170, 55, 38, 6,180, 75,153,155, 27, 75, 78,
-129,220,236,148,144,144, 48,186, 35, 1, 25, 64,246,133,193, 87,255, 3, 4, 16,246, 10, 0,243,176, 17, 26, 29, 63, 66,197, 10,
- 0, 94,250, 3,221, 9,217,147, 2, 52,129,200, 10, 0,146,201, 33,197, 25,228,220,171,242,242,114,194,122, 87, 11, 17, 50, 24,
-103,136,125,245, 37,112,139, 58, 3, 17,135,164,145,119, 15, 6,176,237, 47, 38, 6,189,224,129,147,147, 19, 88, 25,124,248,240,
-129,159,159,255,212, 41,208,229,201,196,212, 1,192,224,133,132, 18, 48,196,130,131,131,129, 1, 78,176, 38,216,180,105, 3,132,
-225,231, 23,128,139,141, 75,239,247, 99, 57,208, 32,177,154, 2,103, 35,115,129, 12, 92,122,119,236, 64,185,220,236,208,161, 67,
-109,109,109,200, 1,181,100,201, 18,252, 9,163,179,179,179,131,189, 19, 92, 16,135,162,100,129,122, 70, 82,147, 52,253, 51, 17,
-114,233, 15,244, 50, 48,198,151, 46, 93,122,228,200, 17,175,168,106, 92,138,143, 97, 92,161,189,126, 53,168,244,255,247,239,223,
-172, 89,179,128,218,249,228,236,177, 22,250,240,238,224,141, 27, 55,128,220,200,200, 72, 32, 59, 42, 42,138,152,106,163,103, 55,
-244, 22,226, 23, 59,159, 3,245, 46,203,231, 2, 26, 89,238, 81,198, 0,142,189,229, 11,151,101,216,227,235, 19, 24, 27, 27, 19,
-223,212, 27, 45,253,145, 1, 64, 0, 49, 97, 45, 86,128,217, 27, 24,217,104, 25,158,200, 1, 25, 74,198, 94,144,245, 66, 26,227,
-196,235, 5, 58,216, 5, 12, 32,117, 0, 73, 9, 2, 82,250, 3,173, 3, 93, 79, 1,182,148, 72, 95, 48,134,189,135, 32, 60, 34,
-184, 0,207,150,233, 16,132, 71,132, 96,233,255, 31, 12,136, 31,141,121,255,254, 61,176,172, 7, 86, 0, 73, 73, 73,209,209,209,
-108,108,108,192, 58, 0,216, 15, 0,122,159,153,153,153,224,241,250,215,174, 93, 3,218,187,102,205, 26, 72,112, 1, 45, 93,187,
-118, 45,176,161, 7, 20,167,115, 82, 70,171, 12,104,212, 4, 1,150,254,192, 36, 17,126, 35, 12,212,210, 71, 13,252,138,159,229,
-104,125, 2, 92, 0, 24, 62,165,165,165,138,138,138,100,184, 1,168, 23,216,246, 23, 22,222, 75,121,219, 31, 94,250,147,164, 29,
- 94,250, 23, 23, 23,227,209,142,156,252,128,205,127, 59, 59, 59, 32, 3, 88, 7, 0,251, 1, 4,203, 13, 52,189,225,150,160, 86,
-233,178,124, 78, 96, 63,160,204,189, 20,191, 94, 96,219, 31,104, 23,176, 59,238,130, 1, 32, 82,163,205,127, 60,165, 63, 16, 0,
- 4, 16, 19,182, 46, 39,244, 98,104, 72, 59, 26,222,220, 35,166, 56,134,228, 25, 74,242, 27,121, 3, 56, 88,203,116, 82,181,192,
- 43, 15, 96,243,159,224,249,183, 3, 11,224,165, 63,144,124,250, 20,122,225,198,147, 39, 79,240,103, 54, 96,219,255,219,183,111,
- 76, 76, 76, 64, 63, 2,217,207,158, 61, 99,101,101,101, 1, 3, 32, 3,114, 84, 39,218,134,126,180,140, 58,113,226, 68, 96,209,
- 31, 18, 18, 2, 44, 80,128,134, 0, 11, 71, 32, 27, 40, 53,105,210,164, 97,150, 91,224,165, 63,144, 13, 44,187,225,109, 11, 72,
-224,195, 59,136, 68,150, 47, 64,101,192, 16, 3, 38, 42,242,102, 77, 42, 43, 43,129,122,241, 68, 13,158,210,191,175,175, 15, 24,
-101,192,138, 4, 88,124, 31, 62,124,152, 1,124, 34, 19,241,165, 63, 68, 59, 48,205,156, 57,115, 6,162,157,160,141, 64,245, 17,
- 17, 17, 16, 46,176, 14,112,112,112, 0,218,190,113,227, 70,130, 3,137,192,230, 63, 3, 35,195,210, 60,232,249, 19,192,126, 64,
-164, 53, 59,168, 31,128, 23,224, 41, 37, 70,187, 5,104,165,127, 90, 57,122,169, 8, 16, 64, 44, 88, 19, 43,252, 98,232,123, 72,
- 23, 67, 19, 76,235,212, 42,253,169, 82, 1, 80, 2,128,149, 7,217, 30,161, 27, 0, 22, 37,192,162,255,197, 11,232, 45,140,200,
-108, 92,224,245,235,215,192,156, 12,108,233,223,185,115, 7,168, 29,152, 87,127,253,250, 5,204,126,192, 10, 0, 72,254,253,251,
- 23, 88, 61,172, 95,191, 30, 87, 68,239,221, 11,106,135, 2, 75,124,100, 5, 16, 54,164,120,194,147, 66,144, 71,120,112,177,241,
- 52,246,113,141, 5,225, 25,252, 65, 27,249,129,180, 73, 73, 74, 3, 29,236,157,140,168, 21, 42,100,220,255, 30, 49,195,131, 72,
- 77,120, 72, 29, 9, 41,233,128, 97, 72,124,155, 20,162, 87, 85, 85,149,129,232,233, 22,100,144,153,153, 9, 31,236, 2,178,129,
-197, 55,208, 16,226, 75,127,123,107,208,145,140,192,182,127, 73, 73, 9,176, 97, 14,209,238,235,151,138,255, 98, 63,120,243, 31,
- 14, 32, 99, 65,219,182,109,211,208,208, 0, 54,217,241,235, 13,183, 68, 57,152, 11, 60, 22,196,176,124,217,249,155, 18, 55,241,
-235, 29, 5,100,148,254, 64, 0, 16, 64,216,231, 0,128, 93, 42, 72,195, 31,126, 49, 52, 73,165, 63,214,118, 40,158,225,105, 92,
-122,145,197,105,119,224, 31,208,167,240, 99,199,145,221, 64,222,136,237,255, 85,130,100,187,228,139, 15,225, 9, 79,184, 35,209,
- 74, 4, 25, 25, 25,100, 5, 88,131,235,221,187,119,188,188,188, 64,242,216,177, 99,192,106, 0, 88,250, 3,155,252,144,171,111,
-128, 69,219,239,223,191,127,254,252,137,167,137, 10,233, 21, 97,134, 9, 80,100,205,154, 53, 64, 89, 60,193, 69,249, 28, 0,176,
-172, 71, 46,238, 33,108, 34,171, 1, 96,145, 68,114, 29, 0, 30,226,135,164,124,196,100, 18, 88,144,248,185, 37,228, 58,146, 1,
-118,177, 59,121,131, 18,192, 78, 0,100,246,130,120,237,192,168,132,143,191,219,216,216, 0, 75,112,146,218,254, 64,237,127,254,
-252, 65,214,126,240,232,223,158,206, 12,130,205,127, 72,137,143, 9,250,251,251,189,163,107,112,233, 69, 26,253, 71,237, 31, 16,
-161,119, 20,144, 13, 0, 2,136, 5, 79,170,133, 52,255,233,220,246, 71, 30,137,162,207, 82, 78,228,209, 30,228,245, 33,248, 75,
- 52,156,253, 89,216,232, 63, 25, 53, 1,124,244, 31,127, 77, 16, 29, 29,205,205,205,205,195,195, 3, 44,205,249,249,249, 5, 5,
- 5,129,205,171,216,216, 88,136, 44, 7, 7,135,155,155, 27,208, 23,152,199,252, 1, 75,124, 96,233,255,227,199, 15,160, 46,118,
-118,118, 96,246,254, 15,186,236,243, 47, 80, 28, 88,250, 3, 25, 4, 7, 40,112, 13, 3, 2, 27,170,116, 24, 52,195, 53, 27, 76,
- 12,128,212, 1, 36,196, 99, 19, 22,207,134, 93, 15, 5, 79, 77, 17,107, 8,114,243, 31, 94,109, 19,217,176, 64,110,254, 99,173,
-242,241,131,101,203,150, 65, 12, 1,214, 1,100, 12,253, 67, 90,126,192,174, 97, 97, 97,225,153, 51,103, 96,218, 9, 36,143,137,
- 19, 39,162, 93,210,185, 98,197,138,131, 7, 15, 2,211, 21,164, 69,130,103,125,250,132,137, 19, 34, 44, 80,154,255,209,147,190,
-173, 56,246, 27,168,215, 48,202, 48,195, 62,131,248,181,237,163,128,200,230, 63, 16, 0, 4, 16, 19,158,118, 49, 36, 17,192, 39,
- 3,240, 15,195,149,151,151,147,231, 62, 92,122,149,192,247,145, 18,223,138, 71, 3,144, 21, 65,164, 14,155, 18,179,184,115, 48,
-128, 89,179,102,245,245,245,193,185,144,210,223, 15, 12,128, 12, 96,150,195,170, 11, 88, 97, 0, 75,249,247,239,223,191,121,243,
- 6, 72,126, 3,131, 47, 95,190,124,250,244,233,227,199,143,192,222, 0,176, 7,128,231, 74, 31, 96, 1, 4,108,233, 19,172, 68,
- 7, 21, 56,132, 4,224,130, 64,239,195,217,120,198,181,145,199,253,145,219,242, 36, 53, 11,208, 20, 3,139, 99, 96, 24,146, 61,
- 19, 0,212, 75, 76,146, 6,150,248,192, 52, 0,153,248, 5,214, 1, 16,191, 19,127,233, 66,117,185, 61, 80,251,191,149, 2, 64,
-237,192,166, 55, 68,251,161, 99,255, 96,205,113,156,205,127,248,128, 15,104,220,102,249,210,204,204, 76,160, 57, 5, 5, 5, 4,
-173, 6, 53,255, 25, 24,151,194,154,255, 81, 19,191, 49, 71,124, 92,126,236, 23, 80,111,231,142,174,209, 66,156, 70,165, 63, 16,
- 0, 4, 16, 11,174,242, 5, 62,244, 15,159, 12,192, 95, 56, 66,202,113, 72, 91,158,212,225, 26, 52,189,144, 62, 1, 80,144,188,
- 97, 31,248, 50, 80,122, 2, 72,195,159,188,241, 31, 72,195,159,152,241, 31,120,246,134, 48, 26, 27, 27,231,207,159, 15, 27, 66,
-241,131, 48,128,205,127, 92, 21,128,176,176,240,219,183,111,129,237,253,215,175, 95, 3,123, 0,192,246, 29,164, 7,240,245,235,
- 87, 96, 77, 0, 44,253,129,213, 64, 89, 25,206, 57, 55, 72, 51, 31,235, 18, 97,136, 44, 30, 55, 83,101, 14,128, 72,113,100, 0,
- 25, 54, 65, 47,224,170,171, 91, 91, 91, 69, 68, 68,104,154, 36, 48,155,255,112, 64,112, 38, 0,179,249, 79, 82,219, 31,216, 71,
-140,137,137, 1, 70, 46,208,251, 85, 85, 85,192,222, 15,241, 23,218,212, 84,216, 31, 56,112,128,113, 13,232,126,214, 93, 53,188,
-110, 45,159,129,218, 91, 59, 65,173,120,252, 93, 16,200,218,127,112,171,127,217,193,131,135,255, 51,254, 47, 44, 40, 84, 87, 87,
- 39,198, 82,160,222, 8, 43, 86, 68,171,159, 1,164, 87,220, 77,130,140,153,143, 81,128,165, 60,239,172,192,172, 24, 32, 35, 4,
- 0, 1,196,130,167,237, 15, 44,253,145, 39, 3, 8,118, 93,145,203,113,242,250, 1, 16,189, 20,142,252, 64,220, 76,102, 57, 62,
-232, 19, 28,100,144, 10,126, 85,119, 98, 98, 34,218,248, 12, 80, 16,146, 15, 49,129,140,140,204,157, 59,119,128, 37, 62,176,201,
-255,251,247,111,200,208,255,143, 31, 63, 32,107, 73, 33,115,194,202,202,202,120,106, 86,160,225,144, 78, 0, 60, 37, 0,131, 26,
- 77, 4, 43,160,197, 28, 0,242,136, 16,174,176,194, 42, 14, 12, 64, 96, 29, 16, 30, 30,190,114,229, 74,226, 7, 42,209,216, 29,
- 29, 29,105, 79,211,195,128, 41, 13,219, 70, 48,119,119,247,251,247,239,163,237, 66,128, 0,160, 56, 3,222, 77, 97,161,161,171,
- 67, 67,157, 93, 93,239, 97, 78, 54,188,125,235,204,192,240, 62, 61, 29,103, 78,132, 95,133, 8,233,100,236,218,181,139,129,148,
-235,204,152,152, 24, 65,141, 24, 72,233,127,233,207,252,253,160,139, 48,129,165, 63, 49, 89, 3,146,156,128,173,126, 32, 89, 88,
- 84,168,174,166, 78,164,165,165,101, 37, 96,189, 12,192, 86, 63, 68,175,132,155, 36,104,180,105,180,240,167, 61, 0, 8, 32, 22,
- 92,221,121,248,196, 47,124,153, 7, 49, 99,226, 84, 25, 11, 34,117, 7,192, 8, 4,240, 33, 23,120, 25, 7,217,189,129, 44,136,
-117,204, 20, 88, 55,108,219,182,237,207,159, 63, 31, 62,124,128,204, 1, 48,128, 87, 7, 1,185, 64, 54,193,184,203,207,207,159,
- 56,113, 34,164, 26, 64, 30,247, 7,138,211,186,238, 4, 22,247,196, 20,250, 88, 75, 67,204,138, 1,216,196, 38,178,244,199, 44,
-133,145, 39,132, 9,118, 2, 48, 5, 31, 60,120,192, 64,196, 18, 3,248, 0, 44,170,203, 93,136,241, 47,176,159, 7, 44,250,145,
- 7,223,137, 1, 64,237,255, 86, 10, 2,203,125, 32,123,193,254, 95, 43,142,253, 2,106, 63,124,156,132,209,170, 67,135, 14, 21,
- 20, 20, 16,217,234,135, 3, 72, 34, 92,121,252, 55, 80,175,132,187, 36,172, 62, 33, 74, 47,100,187, 47,100,122, 31, 45,154, 70,
-119, 2, 51, 96,187, 14, 12,109, 39, 48, 64, 0,177, 96,205, 30,144, 77, 85,200, 77, 63,130, 67, 64,232,217,131,220, 58,128,114,
- 67,224,167, 65, 16, 9,128,149, 13,214, 33,108, 98, 42, 33,204, 49, 31,226, 71,129, 48,199,124,136, 28, 5,130,207, 84, 35,231,
-109,172,130, 88,155,105,222,222,222, 75,151, 46,101, 99, 99,251,249,243, 39,176, 14,248,247,239,159,128,128,192,251,247,239,137,
-217,252,172,165,165, 5, 52,127,247,238,221,144,101, 63,144, 61, 1, 67, 46,131,237,219,183, 15, 24, 8, 91,182,108, 33,163,244,
-135,151,149,247,202,203,241,116, 85, 75, 75, 75, 25,112, 44,159, 43, 43, 43,195, 63, 7,144,158, 46,136, 75, 47,176,237, 79, 76,
- 57, 78,176, 15,132, 7,184,183,124,134,179, 73, 42,253,167, 77,155, 70, 94,116,244,116,247,130,154,252, 20, 0,172,149, 37,252,
-246,233, 81,128, 7, 0, 4, 16,206,101,160, 4, 69,104, 10,232,185, 3, 0,115,174,143,232,106,134,204,130, 15,164,151,147, 76,
-215, 66, 70,183, 32,149, 19,218, 72, 23,178, 32,126, 31, 69, 71, 71,223,189,123,119,255,254,253,223,191,127,255,251,247,175,175,
-175, 47,176, 40, 39, 62,204, 93,193, 0,210,118, 35,178,225, 79,173, 57, 0, 92,108, 60,165, 33,218,186, 20, 98,118, 51, 49,192,
-143,250,185, 23,138, 28, 44,192, 92,144,246, 52,157, 17,182, 17, 12, 34,133,181,167,133, 39,252,157,157,157, 9, 38, 72, 50,164,
-224,254, 5,198, 72, 96, 96, 32,228,244, 33, 82, 1, 83,248,123,160,118, 63,255, 52, 72, 91, 1,178,232, 19,249,152, 7, 90, 0,
-227, 24, 35,178,245, 2, 27,248,184,234, 57,136,212, 40,192, 15, 0, 2,104, 48, 30, 6, 71, 70,179,133,254,141, 80, 74,108,164,
-228,148, 55,106,249, 84, 25, 12,208, 4,127,253,250,197, 12, 6,212,142,208,233, 3,164, 23, 75, 66,130, 28, 31, 70, 24,212, 67,
- 15,134, 66,238, 29, 2, 75,127, 72, 69, 59, 56,183,152, 82,184, 87, 6,172,157,240,208, 59,213,151, 99,226, 63,231,135,118,149,
-229,232,160, 16, 16, 0, 4,208,232,165,240,163, 96, 20,140,130, 81, 48, 66, 1, 64, 0,141,222, 8, 54, 10, 70,193, 40, 24, 5,
- 35, 20, 0, 4,208,104, 5, 48, 10, 70,193, 40, 24, 5, 35, 20, 0, 4, 16,203,104, 16,140,130, 81, 48, 10,144, 1, 35, 38,235,
- 63,156, 24, 5,195, 10, 0, 4,208,104, 15, 96,132, 2,172,135,131,143,130, 81,192, 8,198,140,160, 51,160, 25, 49,192,232,222,
-172,225, 6, 0, 2,104,244, 82,248, 17,170,215,215,118,230,240,246,111,156,159, 46,162,153,195,196, 4, 89,174, 10, 95,209,248,
- 31, 6, 32, 10, 22,109,186,140,172,247,195,131,253, 28, 28, 28, 16,245,144, 3,180,145,245, 66, 78,205,251,247,239, 31,144,253,
-251,247,111, 94, 89,187, 17,144,174, 24,153, 89,216,255,255,251,243,239,223,159, 45, 71,158, 32, 47, 10,197,165, 23, 24, 68, 47,
- 95,190,148,144,144, 32,195, 94, 74,244,142,230,125, 6, 82, 86,106, 1, 4,208,144, 31, 2,170,174, 70, 92, 97,215,218,106, 70,
- 63,189,167, 64,151,234,181,154,181,194, 25,164,186, 28,215, 62, 85, 92,226,164,154, 51,220,250,170,191,190,178,188,189,175,250,
-227,146,244,159,199,183,254, 43, 62,225,213,250,198, 39,207,198,205,139, 75,253,145, 35, 71,108,108,108, 32, 69, 63,164, 16,135,
- 52, 98,225,133,248, 63, 24,120,248,240, 33,154,222,115,231,206, 25, 27, 27,115,114,114,178,176,176, 0, 53,194,181, 67,202,253,
-191, 48,240,243,231,207,179,103,207, 58,200,218, 13,254,208, 3,186,252,237,219,183,199,143, 31, 23, 16, 16, 64,219, 24, 65,184,
- 79,192,200,196,206, 33, 36, 32,168,254,245,203,211, 47,159, 31,131,186, 1,140,255, 25,254,227, 27, 17, 2,134,210,154, 53,107,
-110,221,186, 5,100, 3,131,177,184,184,152,120,235, 32,122,239,221,189, 3, 12,115, 54,118,246,130,130, 66,154,238, 66, 24,225,
- 0, 32,128, 6, 81, 5,128,235,164, 73, 6,188, 7,141, 65, 10,110,228,162,156,120, 64,137,222,225, 4, 40,220, 59, 74,135,210,
-235,243,195,235, 31, 15,173,250,246,237,167,130, 57, 19,167, 12,163,234,163, 75,166, 12, 23,223,255,228,185,192, 21,247,134, 81,
- 26,171,166,107,215,174, 1, 75, 16, 96, 97,199, 2, 3,144,202, 0,210,240,255,243,231, 15,176, 4, 7,182,223,129,165,255,190,
-125,251,152,133, 77,144,245,126,251,246,237,252,249,243, 22, 22, 22,108,108,108,240, 75,211,128,218,129,101,211, 31, 48, 0,106,
-252,254,253, 59, 80,205,151, 47, 95, 6,115,204, 86, 85, 85, 33,103,162,207,159, 63, 27, 24, 24,144,161,119,241,178,179,156,156,
- 98,192, 2, 25, 84, 1, 48, 50,252,135,236, 22,192, 93, 44, 63,123,246, 12, 24, 50, 81, 81, 81, 74, 74, 74,144,115, 41,132,132,
-132, 76, 76, 76,176, 42, 78,112, 71,217, 25,119,249,198,141, 3,188, 92, 69,253, 77,134, 70, 58,207,159,188,218,181,237,128,130,
-142,225,167, 79, 31, 71, 11,107,178, 1,218,120, 47,242,210,127,128, 0, 98,193, 90, 22, 64, 74, 1, 92,108, 26,149,254, 89, 89,
-216,239, 73,127,255,254,253,242,229,203,241,212, 1,144, 18,156,212, 38, 60,133,122,225,109,127, 50,154,255,104, 55,207,224, 82,
- 64,163,208,134,244, 24,224, 36, 68,240,221, 59,208,174, 25, 33,161, 61,131, 48,249,254,122,124,141,253,216,226,159,223,254, 5,
-169, 48,171,139,254,249, 39,244,159, 85,136,249,243, 91, 54,206,207,223, 53, 47, 78, 57,171,150,241,141, 75, 30, 91,187,149,241,
-250,245,235,192, 18,220,201,201, 9, 82,142, 3, 1,176, 16,135, 92,125, 3, 44,196,129,237,247,199,143, 31,239,223,191, 31, 88,
- 19,160,237,124, 3, 42, 3,170,185,120,241, 34,176,254, 0, 54, 96,217,217,217, 33,122, 33, 21, 0, 80, 35,176,116,187,124,249,
-242,143, 31, 63, 8,110,154,123,240,224, 1,208, 22, 96,201, 11,116,131,184,184,184,170,170, 42,100,112,137, 24, 64,137, 94,160,
- 83,107,106,106,224,135,161, 2, 75,115, 96,141, 40, 38, 38, 38, 44, 44, 76,100,233, 63, 47, 41,201,203,208, 16,200,150,200,205,
-229,228, 18,255,242,233,209,167,143,119,255,255,255, 11, 58, 48,238, 31,129, 59,168,129,197,189,136,136,200,162, 69,139,226,227,
-227, 55,109,218, 4,228, 30, 58,116,232,215,175, 95, 12, 12,114, 88,213,191,109, 47,130,179,121,126,253,150,250,243,163,160,180,
-190,191,167,177,187,103,154, 52,211,223,105, 61,125, 78, 17, 81,184,244,142, 2,146, 74,127, 6,164,163, 64,129, 0, 32,128,176,
-247, 0,144,143, 64,193,197,166, 58,160,255, 25,206, 84, 24,128,130,213, 1, 36, 1,120,157, 58, 63,112, 17,166,108,226,250, 56,
-154, 54,195, 33,134, 35,147, 4,175,237, 30, 64,240,227,195, 27,181,251, 91, 95, 49,255, 85,225,103,144,151,251,207,172,199,198,
-162,164,196,246,243,199,207,163,143,127,126,100, 97,254,199,250, 99,207, 98, 38,175,252,127, 44,232, 99, 65,240,203, 47, 5, 5,
- 5, 29, 29, 29,129, 69, 39,176, 24, 5, 54,228, 33, 13,127, 96,217, 13,108,165, 30, 60,120,144, 9, 12,176,234, 5,170,188,122,
-245,170,141,141, 13, 31, 31, 31, 80, 59, 80, 4, 88,250, 3, 75,177, 79,159, 62,157, 62,125, 26, 88, 13, 0, 77,131,204, 4,224,
- 2,151, 46, 93, 58,118,236,216,253,251,247,129, 90,128,182, 75, 72, 72, 0, 91,193, 86, 86, 86,220,220,132,183,130,147,173, 23,
-232, 36,200,205, 63,200,130,144,115,161,129,173, 40, 98,170, 16, 38,102, 54,100,238,139,201,147, 37, 2,100,186,187, 39,254,254,
-253, 21, 28, 56,140,255,128,165,255,127, 80, 23,224, 63,238,241,183,147, 39, 79, 86, 84, 84, 0, 3, 45, 40, 40, 72, 86, 86, 22,
- 88,209,110,219,182,205,220,157,208,166, 95, 70,198, 37,119,158,175,189,253,116,211,198,133,204,204,140, 69,185,177,250, 18, 34,
-179, 10,234,103, 19,163,119, 20,224, 40,253,145,155,252,104,245, 1, 64, 0,145,176, 10,136,214,199, 61, 42,225, 6,180,104,194,
- 83,168,151,129,172,113,127,170,183,229,225,151, 89, 18, 95,136, 99, 85, 9,108,251, 19,217,252, 7, 22,130,192,226, 15,147,139,
- 44,136, 9,224,106,224,183, 12, 98,114,177,130,119, 87,207, 61,123,250, 73,140,151, 69,137,247, 63,139,200, 63, 22, 75, 15,110,
-253,197,156, 70,189,236,252,156,108, 95,190,127,251,246, 87,142,249,219,251, 75,199,176,148, 98, 76, 76,144,203,238,111,223,190,
- 13,108,173, 3, 11,113, 97, 48, 0,182, 76, 5, 4, 4, 62,126,252, 8,108,147, 2,139, 39,200, 40, 63,154, 94,136, 56,176,216,
- 5,214, 1,183,110,221,226,226,226, 2,234, 2, 54,159, 69, 69, 69,121,120,120,128, 34,192, 42, 4, 50, 52,132, 89,121, 32,183,
-223,119,239,222,125,247,238, 93, 69, 69, 69,119,119,119, 51, 51,179,111,223,190,237,219,183, 15,216,177, 0, 86, 63, 4,219,254,
-187,247,236,189,247,252, 35,175,138,133,154,123,178,180,153,223,251,159, 76, 64, 17,130,122,129,165, 63,176,194, 0, 86, 30,192,
- 34, 88, 79, 79, 15, 62,140, 3, 97, 16, 44,253,129, 69, 63, 55,143,148,144,176,206,210, 21,151,146,230,205,219,118,254, 60, 16,
- 1,123, 0, 12,160,233,238,175, 80, 53,140, 64,132,111, 61, 16,176,160, 7,182,250,115,114,114,120,121,121,129, 65,183,118,237,
- 90,160, 99,222,188,121,163,166,166, 70, 48,117, 77, 60,127,187,231,196,149,217, 61,149, 44,204,223,153,254,126,238,154, 48,111,
-229,161,179,207,152, 88, 72, 61, 97,116, 20, 16, 9, 0, 2,136,133,248,130,126, 48, 79,197,140,216,106, 0, 50,116, 67,210,232,
- 13,102,247, 2,222, 15, 32,216,243,248,252,249, 51,176, 89, 10,108, 86,155,154,154,162,113, 79,157, 58, 5, 17,196, 10, 32,178,
- 64, 18,216, 50, 5, 54, 99,129, 69, 3, 68, 16,153,139, 21,240,253,120,187,237,209, 15,233,247,204,134,124,140,162,175, 25, 84,
- 88,248,153, 24,133,255,255,120,249,245, 37,227,213, 71,255, 94,124,253, 1, 44,131, 25,254,221, 98, 48,114,199, 85, 1,176,179,
-179, 3, 75, 97,105,105,105, 87, 87, 87, 96,201, 14, 44, 34,223,190,125, 11, 44,146,128, 82,192, 34, 30,114,252,209, 63, 12,189,
- 16,237, 64, 5,192,100, 15,236,248,170,168,168,240,243,243,127,249,242,229,252,249,243,192, 90, 1,104,230, 79, 48,192,211, 42,
- 2, 86,111, 79,158, 60,209,215,215,119,112,112,144,145,145,249,250,245, 43,176,254, 0,118,115,143, 31, 63, 78,112, 48, 7,168,
-247,229,187,143, 66,106, 22, 74,182,225, 2, 50,106, 63,191,126,120,116,114,235,237,189, 11, 9,234,133,204, 94, 0, 59, 55,226,
-226,226,192, 2, 23, 88, 19, 64,138,126,200, 88, 16,144,141,245,134, 28,104,181,199,194, 33, 32,168, 46, 32,164,206,196,196, 10,
- 44,238,231,206,223,159,148,232, 8,209,155,154,154, 10,116, 60, 68, 47,216,203,224,162, 0,219, 52, 0, 48, 96, 55,111,222,156,
-149,149, 37, 41, 9, 58,224,115,239,222,189,192,202,140, 19, 12,188,189,189,143, 93,251,142,199,215,203,110, 62,238, 61,125, 99,
- 78, 71,185,140,186,252,215, 47,239, 55,110, 63,125,233,242, 77,129,255,255,216, 94,188,244,206,137, 62,122,245,251,104,121, 77,
- 42, 64, 59,233, 7,179, 67, 0, 16, 64, 44,152,101, 1,252,144, 91, 92,236, 65, 5,200, 46,184, 41,212, 75,246,248, 15,229,173,
-126, 98,164,240, 20,229,100,175, 26, 2,230,100, 96,113,255,254,253,123,172, 92, 34, 1,176,182, 0,150,191,192, 66, 95, 65, 65,
- 1,147,139, 9, 94,191,121,124,236,249,119,111, 46,174,195,143,255, 73, 25,177, 43,254, 60,251,254, 90,214,250,174, 75,255, 30,
-124,252,242,235,255,211,207,127, 57, 89,152,254,124,124,193,143,173, 29, 3,175, 3,128, 37,230,195,135, 15,111,220,184,161,173,
-173, 13,116,240,137, 19, 39, 32, 35,251,184, 6,241,129,122, 33,157, 0,136, 94, 96, 29,240,248,241, 99, 93, 93, 93, 96,241, 13,
-172, 63,128, 34, 64,113,200,234, 32, 60, 61,128, 71,143, 30, 1,205, 55, 54, 54, 6,150,254, 64,197,192, 46,136,185,185, 57,208,
-106,160, 56,176,230,192, 31, 74, 64, 53,255,152,216,164, 13, 92,128,165, 63, 19, 51, 43, 39,159,168,156,185,247,195, 19,155,240,
-235, 5,186,243,195,135, 15, 79,159, 62,149,147,147,179,182,182, 6, 90, 10, 25,249,137,143,143,135, 40, 0,214, 97,120, 44,229,
-224, 16, 22, 22,213,255,245,243,227,155,183,231,127,254,124,255,251, 55,104,126, 27,162,247,229,139, 23,112,189,160,214, 63,142,
- 90,239,249,243,231, 75,151, 46,141,142,142, 6,134, 21, 3,248, 58, 26, 96,111,160,178,178, 18, 88, 27,193,148,224, 92,158,120,
-235,211,183,242,131, 23, 58, 74,210,109,125, 92,190,126,121,179,106,221,193,153,115,215,110, 47, 74, 80,122,245,164,243,211, 11,
- 33, 33, 97, 60,122, 71, 1,145, 99, 65,152, 85, 2, 64, 0,177, 96, 29,138, 33,200, 30,228,128,242, 53,154,196,128, 22,211, 22,
-250,223, 32,134, 92,118,163, 85, 6,212, 56, 12, 18, 39,184,121,243, 38,108, 30, 15, 11,151, 36, 0, 44,130,119,239,222, 13,185,
-196, 3,153,139,181,155,127,241,221,247,143,191,254, 93,124,253,231,217,135, 63,226, 39, 88,244, 86,221,121,248,224,234,205,147,
-191,254,176, 48,255,250,199,240,227,215,255,247,255,255,137, 10,254,199, 90,136,195, 23,128, 66,150,241,188,124,249, 82, 94, 94,
- 30, 88,111, 65,134,125,128, 36, 98,131, 19, 33, 0,223, 52, 0, 33, 7,231,205,113,192,202, 9,114, 11,138,162,162, 34,114,197,
-118,230,204, 25, 32, 9, 12, 94,200,165,123,184,174,253, 1,134, 22,144,252,254,237,229,151,207,143,255,254,253,129,172,119, 19,
-184,170, 6,118,131, 64,122,255, 99, 31,251, 7,198,227,228,201,147,129,205,124, 27, 27, 27, 32,247,232,209,163, 27, 54,108,200,
-206,206, 70, 42,253,113,130,231,223,126,198,110, 59, 81, 16,230, 29, 18, 27,252,237,199,167,245,155, 14, 76,152,182,108,145,155,
- 41,176,244, 31, 45,187,169, 94, 19, 32,215, 1, 0, 1, 68,205,157,192,200, 35,209,184,216,195, 9, 12,134, 82, 0, 50,118, 79,
-252,248, 15,158, 57, 3,252,113, 4, 44, 62, 92, 93, 93, 5, 5, 5,177,114, 73, 2, 64, 93, 64,189,240,226, 30,141,139, 6,190,
-255,229,251,205,200,112,230,205,207, 87,127,255,238,189,247, 99,213,234, 31,251,158,136,222, 97,227,127,242,241,247,227,207,255,
-190,254, 97,248,246,231, 63,187,176, 4,174, 34, 27,178,210,255,239,223,191,127,254,252, 17, 22, 22,230,225,225, 1,214, 1,191,
-127,255,134,136,160,109, 7, 67,214, 11, 89,233, 15, 84,243,253,251,119, 32, 87, 86, 86, 22,216,178,150,148,148, 4, 86, 27,192,
- 54, 56,176,230,131,152,140,103, 92, 20,216, 12, 7,246, 21,206,158, 61,251,228,201, 19,200, 53,156, 39, 79,158,252,242,229, 11,
- 80, 28,216,249,192, 31, 68, 64, 53, 76,255,126, 61, 61,191,231,195,147, 91,255,254,254,254,254,233,245,163,147, 91,127,125,125,
-143, 95, 47,220, 49,223,190,125,131,207, 78, 3, 59, 1, 87,175, 94, 5,150,227,144, 75,219, 63,126,196,185,158, 18,232,215, 63,
-191,191,112,114, 75,112,112, 10, 65,118, 4, 35,235,157, 61,123, 54, 68,239, 63,212, 0, 3,118,224, 22, 45, 90, 4,108, 61, 52,
- 53, 53,249,249,249,249,248,248, 64,186, 2,155, 55,111, 46, 45, 45, 5,118,185,240,120, 19,168,119,241,226,197, 17, 89, 57, 78,
-107, 14,150,196, 5,229,149,101,254,248,245,229,254,221,199, 51,103,174,218,224,107,229, 32, 43, 70,124,162, 2, 86, 54,163,133,
- 59,254,177, 32,120,185,143, 60, 15, 12, 16, 64,212, 63, 10, 2,243,246, 84, 76, 54,149,219,251, 24, 11,249,145,155,252,248,155,
-255,152,122, 79, 1,133,170,171, 49,217,196, 12, 1, 17,175,151, 90,189, 1,248, 98, 30,226,155,255,239,222,185,192,103, 14, 72,
-234, 64, 40, 40, 40,248,250,250, 2,155,129, 88,185, 68, 2,160,122,160, 46,248,128, 15, 26, 23,139,122, 85, 21, 85,110,102, 94,
- 70,134,223,255,255, 95,127,255,107,233,157,159,203,143, 61, 59,125,247,221,179,239, 12,111,127,252,189,251,229,255,243,159,255,
-101,149, 85,176,150,134,144, 85,155,192,194, 26, 88,136, 3,203,110, 29, 29, 29,112,149, 41,100,102,102, 6, 41,196, 33,229, 56,
-102, 33, 14, 41,220,129,245, 4, 80, 1,176,154, 87, 86, 86,254,240,225,195,227,199,143,223,189,123, 7,116, 42,176, 87, 1, 20,
- 7,154, 0, 81,134,203,229,166,166,166, 50, 50, 50,192, 2,116,199,142, 29, 91,192,224,240,225,195,192,134,185,165,165, 37,158,
- 57, 15,184, 94,113, 33,254,183,247, 46,220,220, 61,255,234,214,233,215,183,206,124,120,124, 3, 59,211, 63,252,122,129,149, 19,
-176,185,205,199,199,119,241,226, 69, 96,173,131, 92, 13, 64,218,242, 75,151, 46,197, 83, 34,255,250,249,241,227,135, 59,172,172,
-220, 2, 66, 26,220, 60,210, 64, 6,164, 79, 0, 4,207, 78, 78,221,191, 40,207, 85,227, 11,184, 2, 96,128,110, 3, 3, 7,219,
-214,173, 91, 57, 57, 57,129,198, 2, 67,198,194,194, 2,222, 21,136,137,137, 1,118, 68,240,123,115,219,182,173,124,124, 60,118,
-246,230, 6, 70,122,129, 89, 73,223, 24,255,188,126,245, 46, 35,183,185,211, 68,197, 72,140,132,182, 5,176,244,239,234,234, 26,
-173, 3,136,169, 6,208, 68, 0, 2,136, 78, 27,193, 6,164,177, 76,222, 24,189, 89,107, 43,114,217, 13,228, 82, 93, 47,188,173,
-157,184, 62, 14,143, 2, 90,239,201,130,219,130,188, 51, 0,191, 22, 96,233,227,236,236, 12, 44, 67, 49,185,192, 82, 21, 95,200,
-128,101,129,164,161,161, 33,176,156,130, 11, 34,115,177, 2,105, 53, 45,221,171,103,229,223,127,124,243,247,223,167, 31,127,216,
-129,165,245,207, 63,114, 60, 44,239,255,252,121,250, 21,180,130,200, 91, 85,156, 91, 65,235, 11,182,241, 16,248,138, 79, 93, 93,
- 93,125,125,125, 96,193, 4, 89,184, 9,116, 54,176,168, 90,191,126, 61,100, 67, 0, 80,132, 17, 67, 47,100,183, 23, 48,221,170,
-169,169, 1,235,143,215,175, 95, 67,150,144, 2, 77, 3,138,188,122,245, 10,162, 23, 40,130,167,190, 4,246,108, 32, 75, 57,129,
- 37, 50,124, 41, 39,208, 37, 4, 87,227,128,244,186, 56,131,244,222, 61,249,236,252,110,168, 94,107, 39,130,122,129,165,191,145,
-145,209,209,163, 71,129,122,165,165,165,129,230,112,115,115, 87, 85, 85, 77,154, 52, 9,216,245, 1,218,222,215,215,135,235,142,
-120, 96,149,247,241,253, 29, 96,177,206, 47,164, 38, 33,101,249,253,251,155, 47,159, 30,118,247, 76,106,108,168,146,146, 97, 88,
-158,207,197, 24,246,222, 49,142, 1, 82, 99,194, 55, 2,223,186,117, 11,152, 6,108,108,108,128,230, 3,171, 28,160,220,148, 41,
- 83,194,195,195, 33,213, 45,126,112,243,230,173,144, 96,255,136, 8, 63, 29, 93,245,183,159, 63,126,249,248, 38, 45,175,185, 57,
-208,217,249,223, 55,146, 74,255, 9, 19, 38, 0, 35, 5, 88,235,228,230,230, 6, 4, 4,140, 22,244,200, 3, 62, 88,203,125, 56,
- 0, 8, 32, 22,250, 20,244, 4, 87, 16,133,132,132,144,183, 19, 24, 23, 64,222,168, 69, 94, 29, 64,106,233, 79,188, 94,252,171,
-110,104,125,180, 3,124,188, 8,110, 11,242,158, 0,130, 0, 88, 14, 34,175,246,129,115,241, 44, 1,130,203,162,169,193,175, 5,
- 2,164, 20,149,127,152,217,254, 57,181,237,193, 71, 6, 30, 70, 86,121, 30,166,167,127, 25,153,217, 89, 14,189,250,251,227, 31,
-131, 40, 59,179,178,137,221, 23, 65, 5,108,197, 25,168, 9, 15,108,113, 3,219,161,192, 50,241,211,167, 79,192,178, 27, 82, 1,
- 0,219,239,192, 74, 11, 88,102,109,222,188, 25, 50, 28,132,150, 13,128, 34,144,109,195,154,154,154,144,209, 27,160, 94, 72,218,
-134,244, 27,128,226,192,222,192,151, 47, 95,240, 39,108, 61, 61, 61, 96,137, 76,222,102, 46,242,244, 2,157, 45, 37, 37,229,238,
-238, 14,172,117,110,220,184,241,232,209, 35, 96,109, 39, 32, 32, 0,172,138,230,204,153,131,107, 47, 46,210, 40,208,183, 15,239,
-111,254,248,241, 78, 64, 80,141,135, 87,150,151, 79,238,235,231,167, 29,157,115, 35, 35, 92,128, 21, 0, 44, 96,255, 35,215, 0,
- 94, 94, 94,219,182,109, 3,118, 56,128, 1,226,231,231,183,112,225, 66, 96,189,174,161,161, 65,140, 31,189,189,189,214,175,223,
-252,233,195,219, 39,207,158,231,103,199,149, 86,180, 5, 58, 89,217,252,252,196,192, 74,108,185, 4, 44,253, 27, 26, 26, 32,221,
- 80, 96, 71, 13,216, 15, 40, 43, 43, 27,173, 3,240,215, 7,200, 0, 32,128,168, 89, 1, 80,184,130,136,140, 82, 30, 2,222,188,
-153, 91,125,106, 35,214, 1, 31,130,211,191, 64,189,167,170, 55,162, 53,216,145,135,113,240,148,227,111,230,190, 57,181,177,154,
- 60,189, 3, 5,134,226,169, 65, 10, 86,142,151,126,254,121,189,111, 47,235,159,239,151, 62,255,223,243,249, 15, 27, 35,163,240,
-255,255,142,146, 2,246,110,206, 66,198, 14, 56,218,179,160, 30, 0,176, 9, 12, 44,143,128, 77,120, 96, 65, 15, 44, 70, 33,133,
- 56,164,241, 46, 42, 42,106,109,109,189,115,231, 78,204, 97, 28,160, 8,176,170, 0, 54,183,129,234,129,173, 90, 72, 55,130, 1,
- 54,175, 0,228, 2, 21, 0,123, 21, 39, 78,156, 32, 56, 13,174, 0, 6,100,122,156, 44,189,192, 58, 0, 88,226, 3,157, 7,236,
- 1, 0, 59, 61,192,190, 11, 80,240,233,211,167,158,158,158,192,230, 63, 65,237,127,255,254,252,250,229,233,175, 95, 31, 57, 63,
- 61,224, 19, 80,230,226,145, 2,162, 93,123, 95, 50, 58,139,195, 26,115, 96, 18,166,222,202,202, 10, 24,176,192,210, 31, 88, 19,
- 8, 11, 11,199,197,197, 29, 56,112,128, 72,167, 90, 90, 90,177,179,179,243, 93, 59,155,157,157, 44,163,166,218, 85,144,188, 96,
-218,194, 41,204, 63,136, 47,253,203,203,203,129,158,125,246,236, 25, 39, 39, 39, 48, 82,128,221,157,214,214,214,234,234,234,209,
- 58, 0, 62,230, 3, 44,244,241, 28, 5, 1, 16, 64, 84,238, 1, 12,200, 10, 34,172,133, 26,145,205,127, 76,189,200,237,119,200,
-120, 14,174,114,156, 18,189,120,202, 98, 82,203,232, 97,127, 18, 28,176, 68, 51,112,118, 23,150,146,121,125,253, 10,243,195,123,
- 42,191,159,243, 10,139, 91,233,106,104, 27,235,124,151,192,185, 63, 8, 88, 82, 3,219,254,192,102, 62,100,176, 30,216, 21, 0,
- 50, 32,199, 57,192, 71,135,100,101,101,129,117, 0,102,129, 5, 44, 77, 12, 12, 12,128,117, 0,176,124,135,168,132, 47,170,129,
-159, 4, 7, 52,202,208,208,240,236,217,179,131, 51,208,128,142, 23, 3, 3,117,117,117,160,127,129,213, 24,208,251,192,208,168,
- 38,106, 94,234,255,239, 95,159,127,255,250,242,253,251,107,118,118, 65, 86, 54, 94, 38, 38,150, 37, 75,183,198, 68,123, 67,107,
- 65, 84,213,144,142, 69,111,111, 47,176,162, 5, 50,212,212,212,136,191, 86,218,200,200,152,217,212, 52,169, 1,162,247,191,154,
-154,186, 90, 64, 0,254, 81, 65,100,208,217,217, 57, 90,202, 19, 83, 7, 96, 45,253,129, 0, 32,128,134,237,133, 48,100, 47,253,
- 68, 46,178, 73,109,194, 83,162,119, 20,224, 7,178,154,218, 64, 4,100,192,207,222,196,191, 47, 40, 52, 52, 84, 80, 80, 16,178,
-212, 7, 88, 2, 66,134,116, 32, 61, 0,200,196, 47,228, 64, 80,101,101,101,160,224,145, 43, 95,145,245, 78,152, 48, 97,245,234,
-213, 16, 5,160,147,130,112, 28, 7, 13,108,249, 18, 28, 84, 25, 36, 53, 40, 15, 24,144,216, 92,128, 84, 3,159,129,165, 63,208,
- 12, 96,176, 65,244,226, 26,243,130, 28,249, 9, 9,106,146,156, 7, 12,230,194,194, 66, 50,244,142, 54,243,137,175, 3,112, 73,
- 1, 4,208,232,165,240,163, 96, 20,140, 2,140,114,129,129, 1,253,176,135,255,163, 55,130, 13, 67, 0, 16, 64,163, 87, 66,142,
-130, 81, 48, 10, 48, 26,255, 12,163, 55, 64,142, 8, 0, 16, 64,163, 87, 66,142,130, 81, 48, 10, 70,193, 8, 5, 0, 1, 52, 90,
- 1,140,130, 81, 48, 10, 70,193, 8, 5, 0, 1, 52, 90, 1,140,130, 81, 48, 10, 70,193, 8, 5, 0, 1, 52,122, 41,252,168,222,
- 81,189,132,245,166,167,167,251, 7,164,111,220,128,229,200,141,209,176, 26,112,189,173,176, 21,119,184, 22,185,142, 94, 10,143,
- 11, 0, 4, 16, 11, 90, 42,199, 84, 65,228,186,177, 65,165,151, 72,237, 3,229,230,193, 3,200, 62,115,130,186, 7,145,226, 1,
-144, 43, 7, 14, 30, 60, 8,100,219,219,219,227,191, 60,128,118,161, 4, 44,253,189, 60,141, 32,199,232, 13,251,141, 23, 67, 11,
- 0, 75,127, 95, 95,101, 56,187,186,186,122, 52, 76,136, 7, 0, 1,132,190, 10,232,255, 42,148, 51,152, 24,195, 72, 56,237, 29,
- 45, 99,144,116, 2, 40, 37,122,209,220, 76,146,179, 7,202,205, 16,240,238,245,157,215,175,159,191,124,243,229,227,199,223,252,
-252,172,226, 34, 60,162,162,146, 66,162, 68, 29,175,118,238,248,180,123,119,111,221,125,240,227,241,243,255,178,146,140,202, 10,
- 28, 74,202,106, 70,150, 89,244,175, 54, 32,103,139,210,168, 88,188,124,249,178,129,193,142, 25, 51,190, 29, 56,192, 80, 95,191,
-235,241,227,199, 18, 18, 18, 28, 28, 28,162,162,162, 74, 74, 74,100, 84, 6,135, 15, 31, 22, 23, 23,151,151,151, 39,120, 36, 39,
- 50, 0,150,254,105,105,105, 12, 12,179, 54,142, 30, 56, 54,248,192,175, 95,229, 59,119,166,185,187,207,242,245,237,132,244, 6,
- 70,171, 1,100,128,103, 35, 24, 64, 0, 13,147,101,160,240, 18,159,145,145,225,223, 74,193,193,239,224,223,191,190, 62,126,116,
-249,215,175,223, 42,138, 2, 14, 54,114, 2,252,236,239, 63,252,120,250,252,203,237,123,207, 63,124,124, 35, 43,167,203,202,134,
-243,234,215,247,111,110, 29, 59, 56,155,153,225, 83,184, 55,131,181, 49,131,178, 60,195,157, 7,255,143,156,249,190,109,255,197,
-173,107, 75,173,236, 83, 5, 69,212,136,116, 6,217,109,127,100,141,144,131,228,104, 84, 7,188,123,247, 46, 47,239,155,168, 40,
- 67,104, 40, 67, 71, 7,232, 66,174, 63,127,254, 0, 43, 0, 49, 49, 49, 96, 5, 0,236, 19, 72, 73, 73, 17, 52,228,197,139, 23,
-175, 94,189,122,249,242,165,171,171,235,146, 37, 75, 24,192,123,125,163,162,162,240, 31, 96,135, 12,182,109, 63, 7, 44,253,193,
-228, 40, 24, 92,205,127, 32, 25, 28,188,118,231, 78, 16,153,150,118, 23,210, 27, 24,237, 10, 96, 22,253,112, 17,228, 58, 0, 32,
-128,134, 73, 5, 0,236, 4, 64,234,128, 33, 81,250, 3,193,147, 71,151,197, 69, 56, 76, 13, 21,193,247, 43, 49,254,251,247,159,
-143,135,157, 91,153, 77, 65,150,255,218,205, 55, 64, 89, 69, 21, 11, 92,122,129,165,191,173,241,167,130, 68, 6,102,102, 80,133,
-247,251, 15, 3, 55, 23,131,166, 10,131,133, 1,195,150,253,159,128,178,222,193,221, 52, 29, 2,194,122,169, 36,141,174,124, 16,
- 18, 18,218,178,133, 83, 86,246, 59,176, 7,240,254, 61,139, 10, 24,124,249,242,229,222,189,123, 7, 14, 28,248,244,233, 19,176,
- 28,199,223, 15,184,126,253,250,185,115,231, 88, 89, 89,145, 5,191,127,255, 62,119,238, 92,160, 33, 17, 17, 17,196, 56, 99,227,
- 6,160,151,211,193, 36, 9, 0,126, 79, 50,228,216, 59, 52, 46,158, 24, 97, 64, 58, 49, 16, 15, 23,103,123,232,255,127,145,183,
-111,149, 30, 60, 16,126,250,244,137,152,216, 35, 37,165,143, 98, 98,255,137, 62,145, 23,232, 78, 98,206,233,195,163, 5, 63,151,
- 90,122,225,131, 63,105,105, 59,129, 12, 8, 9,145, 2, 50, 70,235, 0,172,173,126,200,209, 64,112, 17,128, 0, 26, 86,171,128,
- 24,135,136, 59,223,189,190,243,251,247,111, 51, 35, 73,184, 8, 19, 19, 35, 27, 27, 51, 39, 7, 11, 43, 43,147,178,162, 32,176,
-103, 0, 84,131,107,228, 7,216,246, 47, 76, 98,248,241,147,225,254, 99,134,247, 31, 25, 62,124, 98, 88,182,137, 33,183,129,161,
-170,135,193,202,136,129,233,255, 39,160,154, 97, 19,167,186,186,186, 27, 55,106,138,137, 49, 68, 69,177, 72, 72,152, 2,203,107,
- 95, 95, 95, 31, 31, 31,119,119,119,113,113,113, 96,201,190,114,229,202,187,119,239,226,186, 40,241,210,165, 75, 23, 46, 92, 64,
- 43,253,225, 96,255,254,253, 87,175, 94,197, 83, 22, 31, 58,116, 8, 94,218, 66, 74,127, 8, 27, 40, 78, 76,133,119, 10, 6,176,
-114,137,172, 95,241,115,177,150,254, 74, 55,110,216,238,217, 35,123,235, 14,219,167, 79,146,183,110,232,108,217, 44,122,241, 34,
- 3,209,119,122, 3, 93, 8, 44,118,129,125, 38,226,163, 9,162, 5, 15, 23,191, 94,228,226, 30, 15, 23, 23,128,148,251, 16,242,
-151,175, 10,195, 40, 64, 42,250,241,159,245, 0, 16, 64,131,165, 7, 64,149,246,227,127,106,216, 75,222, 80, 6,252,166, 45, 98,
-198, 88, 94,191,121,174,174, 44, 4, 41,247,209,164, 56,216, 89, 62,124,252,169,166, 44,116,235,222,115,172,147, 1,247,238,222,
- 10, 7, 29,201,197,176,227, 16,195,212,197, 12,110,182, 12, 94, 14, 12, 55,238, 48,156,191,250,159,147,131,209, 80,155,193,221,
-158, 97,221,206, 91, 70,150,180, 26, 2,194, 26, 68,180,187,241, 13,216,186, 7,182,247,129, 12, 96, 75,223,218,218, 26, 46, 40,
- 40, 40,168,169,201,226,231, 7,236, 3,157,185,117,235, 27, 3, 3, 48, 80,216, 49, 71,126, 46, 95,190,140,171,244,135,215, 1,
-184,238, 72,137,142,142, 94, 10, 6, 64, 6,220,191,192,162, 31, 40, 2,145,165, 79, 94,192,207,197, 4,124, 47, 95, 42,158, 60,
-249,139,137,137,149,145,225,207,191,255,255,126,255,253,247,231,143,232,225, 67, 31, 69, 68,126,202, 16,187,146, 4, 88,236, 94,
-185,114,197,208,208,208,192,192,128,120, 45,200,157, 27, 52, 46,145,221, 8, 82, 75,127,204,226,126, 39, 82, 63, 96, 20, 16, 4,
- 0, 1,132, 94, 1, 96, 78,159, 18, 89,168,225, 42, 76,137,209, 75,139,177, 99, 34,151,169, 96,157, 64, 38, 82, 47,154, 50,226,
-231,162, 95,190,254,226,104, 45, 7,108,144, 29, 62,254,248,219,247,223, 64, 17, 35,125, 9, 81, 97,206,199, 79, 63,223,185,255,
-158,133,133, 73, 85, 73,240,232,201,175,234,154, 88,244,222,125,240,195,218,152,225,231,111,134,237, 7, 25,246, 31,255, 47, 37,
-206,168, 36,199,224,108,195,160,161,204,200,194, 12, 58, 71,221,194,128,161,123,230, 15,252, 3, 62, 4, 25,120, 90, 13,240, 17,
-127,180,113, 9,218,173,141,121,244,232, 17, 3,248,124,124,100,193, 7, 15, 30,104,105,189,170,170, 2, 5,124, 91,219,173, 7,
- 15,180, 25,216,208, 79, 6, 5,170,193, 95,250, 67,212,224,146,178, 3, 3, 72,137, 15, 41,244,225, 21, 3,252, 66, 99,170, 3,
- 10,155,255, 64, 32,112,253,198,175,223,191,153,152,152,254, 51, 51,131, 46, 69,128, 28,104,247,247, 31,251,165, 75,196, 87, 0,
- 12,224,123, 37,143, 30, 61, 10,236,170, 74, 75, 75, 19, 51,209, 66, 97, 29, 64, 94,219, 31, 88,220,187,207,114, 15, 94,203,144,
-182, 19,196, 0,114, 33,181, 2,219,230, 59,163,133, 59, 26,192,122, 47, 60, 64, 0, 17, 94, 5, 68,252,186, 32,204, 86, 33,145,
-237, 68,172,245, 4,241, 21, 15, 86,151,227,185, 60, 29, 87, 49, 13,159, 64, 38, 82, 47, 86,101, 16,211,128, 13,251,127,171,112,
-206, 70,128,215,252,128,154,171,143,159,125,250,254, 29,116,173,149,138,146, 32,176, 2,184,120,245,213,205,219,239, 56, 56,152,
-149, 21, 5,222,127,196,126,208,252,227,231,255,149,229, 65,230,123,216, 49, 24,104, 49,178,179, 49,252,249, 3,234, 7, 8,240,
- 50,220,123,196,224,110,199, 32, 47, 3, 82, 67,211,148, 4, 47,247,137, 28,146, 30, 40,128,117, 16,131, 84,167, 66,202,122,120,
- 5, 64,211,210, 31, 14,112, 93,221,142,231, 74,119, 56, 96,189,123,231,231,239, 95,140,204, 44,127,255,255, 7,166,147, 63,127,
-255,253, 6,118, 4,254,254,101,188,125,147,129,193,139, 84,151, 0,251, 1,192,142, 20, 55, 55, 55, 63, 63, 63,241,117, 0,145,
-131, 63, 20,150,254,213,213,213,173,173,173,192,210, 31, 94, 25, 0, 73, 96, 53, 0, 44,253, 55,111,190, 11,153, 0,128,204, 18,
-235,217,197,143,150,254,152,165, 63, 16, 0, 4,208, 96, 25, 2,194, 90,152, 18, 89, 16,147,180, 86, 21,187, 9, 84, 90, 59, 4,
-116, 9, 49, 70,241,243,179,190,255,240, 67, 68,136, 43,212, 79, 3,152, 63,217,217,153,153,129,237,181,255,255,125,220,148,189,
- 93,149,129, 38,188,125,255, 29,168, 6,171, 94, 89, 73,198,187, 15,255,107, 40, 51, 56, 89,130,134,188,110,220, 97,208,211, 96,
- 16,228, 99,240,116, 96,248,247,143, 1,216, 9,184,117, 31,164, 6,127, 32, 19,100, 16,191,145,132,146,113, 51, 98, 0,176,253,
- 10,108,129,222,189,123, 23,216, 18,183,181,181,229,225,225,129,156, 24,172,160,160,112,234,148, 88, 99,227, 83, 70, 70,198, 87,
-175,212,212,212, 20,174, 61,195,162, 23, 77,100,213,170, 85, 40,141,134,255,255,195,195,195,137,175, 3,232, 86,250,147, 81, 55,
-192,193, 59, 25,105,182, 27, 55,255,179, 50,176,253, 3,205,251,254,254,251,231,215,255,191,223,254,252,249,174,162, 65,134, 99,
-116,116,116,128,225, 79,100,233,207, 0,190,230, 19,216,228,135, 23,223,104, 92, 92, 0,210, 75,128, 43, 67,227, 18, 4,192,230,
- 63,164,232, 7,146,200,109,127,200, 44, 49,176, 50, 24, 45,253,177,150,254, 64, 0, 16, 64,195, 97, 21, 16,193,158, 7, 65,240,
-255, 63, 3, 83,248,123,202,235, 0,200, 98, 36,166,176,247,120,154,255, 64, 32, 46,194,243,248,233,103, 96, 5,208, 55,253,180,
-157,149,172,145,158, 56, 35, 43, 35,100, 57, 16,100,165, 6, 80, 22,168, 6,171, 94,101, 5,142,163,103,191, 3, 43, 0, 17, 99,
-134,138, 76,134,252, 4, 6,126, 94,208,200, 79,227, 36,134,134,124,144,130,163,103, 65,106, 72, 26, 40,163,124, 49, 40,237,150,
-129,190,121,243, 6,114, 15,226,214,173, 91, 31, 61,122,228,225,225,161,168,168,248,249,243,231,247,239,223, 95,191,254,231,192,
- 1, 96, 97, 97,226,232,232, 40, 35, 35,115,237,217,107, 52,189,192,118, 43,254, 27,187,254,252,249, 51,216, 18, 51,188,244,199,
- 83, 13,224,175, 3, 62,105,105,179, 95,186,244,239,255,127,110, 38, 22,102,102,198, 63,192,210,255,247,239,207,191,126,253,214,
-215, 39,201, 37, 92, 92, 92, 36,205, 1,192,139,123, 92, 92, 90,212, 1,192,102,126, 26,184,141,143, 92,250,195,155,255,163, 0,
-127,233, 15, 4, 0, 1, 52,122, 28, 52,172,181, 72,165,245,163,208, 58, 0,111,117, 34, 42, 42,121,231,254, 51,125,109,177,138,
-124,139, 5,203, 47,115,114,176, 24,232,136,193,175, 83,254,247,239,255,157,251,239,197,197,176,143,186, 42, 41,171,109,221,119,
- 49, 33,152,225,255, 61, 6,139, 32, 6, 37, 89,134,165, 27, 97,114,249, 12,127,255, 50,108,221, 7, 82, 67,187,128,194,218, 63,
-163,221, 50,208, 27, 55,110,104,106,222,159, 63, 31,200,252,219,212,116,105,221,186,111,234,234,234,192, 10,224,222,189,123, 47,
- 95,190, 52, 50, 50, 2, 54,225,113, 45, 3, 85, 82, 82, 58,125,250, 52,158, 59, 70,136,188,158, 23, 62, 4, 4, 36,105,221, 3,
- 0,150,236,144,162, 31,215, 16, 16, 46, 41, 68,173, 38, 35,243,214,214,238,239,254, 3,191,216, 88,121,254,179,252,248,247,239,
-227,175, 95,159,157,156,255,203,201, 17,221, 33,102, 4,150,191,196, 15,253,195,181,192,139,123, 52, 46, 73,117, 0,174,181,179,
-120, 0, 90,233, 15, 31,249, 25,157, 13,198, 95,250, 3, 1, 64, 0,141, 86, 0,212, 4,208, 9, 0, 66,163, 64, 66,162, 42, 31,
- 62,190, 57,121,246,153,185,177,148,167,139,210,142,189,247,182,238, 2,165,218,154, 98, 43, 96,233, 15, 20,103,103,103,195,181,
- 31,216,200, 50,107,235,218,210,254,121,160,149,160, 51, 90, 64,171, 63, 93,172, 65, 43, 65,251,107, 65,165,127,255, 60,134,191,
- 12,124,196,239, 7, 38,181,205,142,171,199, 64,187, 85, 64, 95,191,126, 53, 52,252, 1, 41, 73, 76, 76,254,239,216,113,239,214,
-173, 91,144,141, 96, 14, 14, 14,246,246,246,120, 54, 1, 40, 43, 43, 95,190,124, 25, 87, 39, 0,216,252, 55, 54, 54, 38,198, 13,
-144,197,160,144, 69, 65, 64, 54,241,117, 0,218, 70, 51, 34,247,157,193,235, 0, 92,178, 4,244, 51, 49,253, 50, 55,127, 35, 37,
-245,229,210, 37,158, 71,143,126, 40, 42,126,213,214,254, 43, 43,203, 64,244,101, 91,228,149,221,200, 90,208,184,248, 61,142, 44,
-139,102, 47,169,206,128, 0,228,114, 31,210, 27, 32,117, 72,115,152, 1, 60,107, 58, 0, 2,104,180, 2,192,178,122,135, 14, 70,
-201,202,233, 62,126,116,121,237,150,155, 42,138,130,222,110,202,130, 2, 28,239, 63,252, 56,127,249, 37,176,237, 15, 44,253,129,
-178,120,244, 90,217,167, 30, 62, 56,251,216,217, 79,222, 78, 12,179,219, 65, 59,129,239, 62,100,152,187, 10,212,246, 7,150,254,
- 64, 89,202, 11,116, 50, 74,127, 26,205, 1, 72, 72, 72, 60,120, 32,114,230, 12,104,120,231,214, 45, 62, 83, 83, 45, 97, 97, 97,
-248, 78, 96,130, 71, 65, 88, 88, 88, 28, 60,120,144, 17, 99, 15, 20,176,244, 87, 81, 81, 1,214, 16,196,148,254,200,163,255,144,
-174, 0,145,117, 0,217,197, 25,174, 82,158,112,233, 15,171, 3,254,201,203,127, 3, 34,178,194,156,140, 98, 23,191, 79,241, 27,
- 72,137, 94,252,165, 63,104,145,232,136,159, 0, 96,192,182, 31, 24, 94, 37, 0, 4, 16,225,101,160,196, 79,177, 18,179, 12,148,
-120,189,196,107,167,196, 94,172,190, 35,207, 94,146,230,162, 89,217,184,149, 84, 44,222,189,190,115,239,193,243,227,103,158,192,
-207, 2, 18, 23,147, 34,120, 22,144,160,136,154,119,112,247,185,227,211, 86,110,189,213, 54,149,174,103, 1,209,185,244, 7, 2,
-117,117,245,139, 23,189, 18, 19,207,128,123, 0, 38, 97, 97,250, 92, 92, 92, 36,213, 31,225,225,225, 55,111,222, 60,115,230, 12,
- 51,104,174,157, 9, 88,244,179,177,177, 1,219,254, 64,147, 73, 45,253,201,168, 3, 70, 1,173, 1,104, 45, 80, 90,171,251, 44,
-119,172,123, 2, 70, 39, 3,240, 3,128, 0, 98,161,100, 64,128,166,122,137, 52,112, 80,185,153, 84, 0, 44,235,129, 72,157, 44,
-189,192,178,158,200,221, 94,212,242, 5,221,246,112, 32, 3, 96,113,111, 9, 6, 20,214, 34,196, 20,247,152, 0,179,172, 7,178,
- 33,219, 2, 70, 43,128, 65, 85, 7, 48, 60,196, 34,110, 82,109, 50,194, 67,134,224,149,239, 0, 1, 52,122, 41,252, 40, 24, 5,
-163, 96, 20,140, 80, 0, 16, 64,163, 55,130,141,130, 81, 48, 10, 70,193, 8, 5, 0, 1, 52, 90, 1,140,130, 81, 48, 10, 70,193,
- 8, 5, 0, 1, 52, 90, 1,140,130, 81, 48, 10, 70,193, 8, 5, 0, 1, 52, 90, 1,140,130, 81, 48, 10, 70,193, 8, 5, 0, 1,
- 52,122, 41, 60,117,244,226, 57, 22,141,166,122,239,129,193,234,213,171,201,208,123,255,254,253,187,119,239,146,167,119, 52,109,
-140,234, 29,213, 59, 84,244,226, 1, 0, 1,132,115, 35, 24,145,167, 96, 82, 93, 47,213, 65, 90,232, 71, 6, 54,182, 89, 75, 57,
-241,168, 1,150,161,120,246, 94,226,119, 51, 92,111,111,111,111,113,113, 49, 73,183,165,195,245, 94,153,202,167,147,253,137,140,
-155,214,245,132,167,252,127,243, 23,200,152, 53,107, 22,248,210, 90, 18,128,153,250,138, 63,159, 62,113,114,114, 2,235,128,208,
-208, 80,218, 69, 1,145,251, 42,176,250,119,160,244,226, 50,141, 62, 9,152,145,145,145, 9, 12, 32, 91,216,126,253,250,197, 12,
- 62,219,249,255,255,255, 12,163, 96, 20, 80, 15, 0, 4, 16, 11,174,180,142, 53,169, 49, 18,186, 85, 14,146, 73,200,211, 75, 76,
-139,152,108,176,123,247,110, 6, 14, 77, 60,165,112,121,121,185,152,152, 24,154, 20,176, 64,199,111, 44, 68, 47,164,232, 63,113,
-226, 4,164, 26, 32, 73,239,191,107,117, 76, 90, 77,139,246,129,142, 43, 0,178, 33, 82, 64, 17,130, 62,226,251, 84,244,239, 63,
-195,138, 29, 32,141,158,246,172,218, 42, 87,129,117, 0,168,194, 35,162, 26, 16,150, 59,245,250,246,139,195,215,228,191,254,228,
-246,116,255, 32, 45,193,120,230,204,177, 79,159,126, 56, 57, 57,209, 40,157,209,180,209,128, 71, 47,193, 18,147,248,100, 73, 42,
- 0,198,111, 87, 87, 87,105,105, 41, 49,251,141,145, 1,176,172,103, 1, 3,200,206, 53, 96, 34, 1, 26,242,247,239,223, 63, 96,
- 0,100,208,200,193, 91,183,110,197, 31, 56, 94, 94,132, 79,147,222,182,109, 27, 73,234, 71, 1,221, 0,100, 63, 48,218,186,127,
-128, 0, 98, 33,169,244, 55, 54, 54, 62,123,246, 44,193, 76,136, 53, 83,225,209,139,102, 14,176, 44,134, 12,107,144,125,192,100,
-154,239, 44, 6, 78,181, 89,171, 28, 64, 77,227,213,252,160,210,159, 80, 9,142,121,118, 60,176, 4,199,127, 42, 11, 92, 47,144,
- 13,108, 65, 91,128, 1, 73,122, 33, 37, 62,132,236,128,237,214, 6,150,254,101,193, 28, 93,107,127,224,241, 32,255,247, 98, 29,
- 53,230,175,223,255, 23,197,114,156,184,250,231,251,215,255,223,126, 49, 56, 26, 92,189,122,235, 47,193,174,192,189,199,253,231,
- 78,115,243,242, 49, 74, 72,138,139,138,171, 60,188,251, 75, 65,235, 55, 43,199,171, 61,235,223,172, 95,191, 62, 48, 48,112, 52,
-171, 80, 5, 0,227,215,215,215, 23, 88, 7,160,165, 97, 35, 35,163,198,198, 70,160, 20,246, 22, 25, 11, 11, 27, 12, 60,126,252,
- 88, 85, 85, 21, 88, 13,240,242,242,222,185,115,135,135,135,231,244,233,211,199,143, 31,207,206,206,198,153,242,193, 81, 15,207,
-191,240,156, 8, 17, 1,114, 33,173, 4,172, 96,211,166, 77,152, 90,224, 34, 64, 46, 49, 5,250,198,141, 27, 73, 82, 79, 21,240,
-226,197, 11, 9, 9,137,209, 36,135,167,220,199, 5, 0, 2,136,133,164,210, 31,191, 77,120, 14, 42,193,127,196, 57, 90,233,223,
-209,209, 81, 81, 81, 1, 23, 33,190, 14, 72, 51,158,197, 32,172, 54,107,151, 3,188,213,239,234,234, 10,100, 64, 72,204,113, 49,
-228, 18, 28,107,233,143,217, 39,192,244, 20,188,165, 15,172,177,144,131,130, 24,189, 88, 91,250,192,210, 31,191, 55, 69,190, 23,
-169,202, 51,115,178, 51,202, 75, 49,191,121,255,239,247, 31,230,183, 31,254,127,252,242,255,206,147,127, 12, 76, 12, 34, 92,151,
-128,254, 82, 82, 82,194,170,247,223,255,213,154,202, 74,199, 95,188, 84,148, 19,213,209, 83, 98,102, 23,146, 87,124,255,254,251,
-143, 87, 47,254, 62,121,249,131,139, 5,168, 85, 31,151, 94,218,141, 8, 17, 31,197,228,233,197,108,145,208,122, 44, 5, 24,142,
- 64, 75,181,180,180, 54,111,222,140, 28, 29,192, 76,132,167,244, 7, 2, 86, 86, 86, 14, 14,142, 55,111,222,168,169,169, 25, 26,
- 26, 2,235,131, 73,147, 38, 1, 91,253,186,186,186,235,214,173, 3, 86, 0,151, 46, 93, 2, 86, 9,184,250, 1,254,254,254, 16,
-255,226,202,197,120, 10,101, 96,217, 13, 9, 25,172, 13, 56,160,248,203,151, 47,137,169, 0, 72, 82, 15, 41,190,247,239,223,143,
- 85,202,209,209,145,152,146, 29,168, 93, 74, 74, 74, 93, 93,125,180, 26, 32, 21, 0, 4, 16, 11,102,238,194,213,126,167,143,131,
-128,185, 5, 88,250, 19, 89, 97,224, 28,237, 97, 72, 3,146,171,103,153, 49,176,125,199, 51,250,143, 86,130,163, 85,102,248, 75,
-112, 8,128, 87, 30, 39, 78,156, 64,110,254, 19,163,119, 89, 41, 15,102, 46,141,238,249,138, 95,215,191,127,255,216,185, 24,153,
-152, 24,184, 56, 25, 62,124,250,247,243,255,127,110, 78,198, 31,255, 24,190,255,252, 47, 35,202,244,239, 15,195,237,199,127,247,
-236,217,131,181, 19,240,233,227, 9, 1, 1,110, 54,182,255,169, 9,230,127,255,254,127,241,234,215,163,167, 31, 24, 88, 31,115,
- 10,254,124,254,234, 1, 19,219,199,107,215, 62, 60,125,185,135,212,185, 4, 10, 71,132,144,111, 22, 35, 6, 32,159,184,135,121,
-127, 39, 46,240,238,157, 11,156, 45, 36,180, 7, 87, 17, 73,176,190, 65, 22,193, 83,247, 0,147,150,143,143, 15,164,220,191,122,
-245, 42,132, 1,105,251, 3,197,241,216,200,206,206,254,245,235, 87, 77, 77, 77, 96,217, 7, 76, 72,201,201,201, 64,193,223,191,
-127, 47, 88,176, 0,216,129, 62,119,238,220,202,149, 43,191,127,255,142,121,215, 13, 4,120,123,123,147, 29, 41,115,231,206,197,
- 95,137, 18,211,162,135, 27, 66,164,122, 6,240,121, 77,192,226,251,217, 51,244, 11,125,128,130,196, 23,232,207,192, 96,180, 26,
-192, 4,240, 49, 31,172, 93, 1,128, 0, 98, 33,166, 21, 79, 73,113, 76, 42, 64,110, 71, 19,213,234,159,149,206, 32,201, 48,203,
- 23,148, 21,103,157, 77,131,143,246,128, 91,253, 31,145,251, 1,248, 75,240, 87,175, 94,193, 75,109, 34, 75,112,252, 0, 82,175,
- 0,203, 11, 92,135,109,224, 41,128, 32,227, 63,152,122,129, 90,222, 92, 43,146, 4, 15,254, 64, 68,190,255,253,255,227, 23,195,
-111, 48,247,247,159,255,255,153, 64,140,203,151,206, 2,235, 81, 6, 6, 54, 52, 99, 63,126,188,202,202, 46, 40, 34, 36,240,225,
-221,183, 15, 31, 63,156, 56,243,226,233,203,255,108,220,223,164, 85,190,124,255,246, 70, 85,239,183,130,230,207,149,179,207,222,
-185,115,135,129,129, 99, 52,231, 80,216,252, 7, 2, 96,243, 31, 88,220,111,217,178, 69, 91, 91, 59, 52, 52,148, 96,233, 15,169,
- 0, 94,191,126,205,197,197,101,103,103,215,211,211, 3,236, 16, 0,147,193,194,133, 11,129,165, 63,176,145,177,119,239,222,203,
-151, 47,139,136,136,224,185,202, 6, 88,127,227, 26, 2,154, 61,123, 54, 30,171,169, 50, 4, 4, 52,132,140, 33, 32, 96,169,141,
- 89, 1,144,113,124,211,104, 53, 64, 42, 0, 8,160,193,117, 28, 52,230,189, 34, 68, 14, 14,128,218,251, 21,247, 25,152,217,210,
-220, 20, 24, 4, 20,102,129, 47,254,195, 63,250, 79,149, 65, 12,200,196, 47,188,237,143, 12, 32,179, 2,152,221, 11, 34, 91,172,
- 75, 75,184, 49,123, 3,188,159,138, 31,252,250,255,226, 13,176,245,199,196,195, 5,234,170, 3, 11,253, 31, 63, 25,128,117, 0,
-144,252,245,155,225,199,119,134, 95, 63, 97, 45, 80,212,202,131,231, 79,209,211, 71,114,178,138, 60,255, 89, 89,222,124,255,190,
-255,224,227,107,119,158,190,123,247, 69,219,248,239,215, 31,127,126,252,252,251,253,219,191, 23,143, 24,190,127,101,232,238,238,
- 30, 61, 33, 10,107, 79,133,200, 4, 9,105,254,107,105,105, 1, 27,254,192,202, 0, 88, 1, 64, 58, 1, 4, 75,127,200, 16,144,
-129,129, 1, 7, 7, 7,176,208, 79, 74, 74,106,111,111, 7,150,164, 39, 79,158, 60,120,240,224,165, 75,151, 62,126,252,168,170,
-170,250,233,211, 39, 60,183,220, 4, 4, 4, 96,182, 45, 32, 61, 30,252,253,131,129, 26, 2,194,218, 9, 32,169,249, 63, 90, 13,
-144, 13, 0, 2,104, 80, 84, 0,144,161,127, 72, 55, 25,185, 14,128,103, 54,200, 96, 61,241, 35,197,144,114, 31,216,240, 7,143,
- 2,177,205, 90, 74,125, 55, 67, 86,254,184,184,184,236,217,179, 7, 87, 87, 6, 87,111, 6,107,225, 78,204, 88, 80,124,229, 87,
- 41,113,166, 40, 95, 54, 96,113,207,207,203,200,196, 8,110,248, 51,252,255,241,141,225,235,175,255,192,110,193,215, 31,255,255,
-253,199,126,243, 71,124,254, 87, 93,253,123, 18, 26,239,118,111,127,245,238,221, 15, 3,203, 79,122, 66, 95, 24, 88,127,254,248,
-246,239,213,211,255, 95,191, 50,254,249,195, 40, 36,194,200,192,248,111, 52, 87, 80, 5, 64,210, 51,242,132, 10,176, 38, 64, 46,
-154,177,206, 4, 0, 75,246,178,178, 50, 22, 22,150, 69,139, 22,205,159, 63, 63, 49, 49,177,163,163, 3, 88, 34, 63,120,240,224,
-251,247,239,192,108, 2,108,251,103,100,100,224, 89,188, 68,246,212,235, 64, 13, 1, 97,237, 4,144,119,122,235, 40, 32, 21, 0,
- 4,208, 96,233, 1, 32, 15, 91, 99, 22,244,184, 10, 89,100, 48,235,108, 26,172,232,191,189,122,210,125,240, 42, 32, 68,125,128,
-103, 20,136,146, 17, 30,160,195,224,205,127, 72,111, 0,206, 6,246, 0, 32,123,172, 48, 39,159, 9,150,254,144, 85, 64,152,122,
-255,252,101,248,250,237,255,207, 95,160, 41, 95, 32,201,194, 14, 21, 4, 86, 0,223,127,255,127,251,238,255,235,247,255,207, 93,
-251,243,239, 31,104, 40,239,234, 83, 20, 51,255,252, 97,120,246,248,215,227,187,239,143, 28,127, 15,108,228, 93,187,241,207, 39,
-234, 15, 27,203,255,215, 47, 25,142,236, 98,248,244,233,255,255,127, 12, 54, 78,140, 28, 28, 12,158,158,254,248, 87, 26,110, 88,
-144, 30,144, 64,209, 10, 93, 74,110, 16, 35,233,222, 5, 56, 16, 18,218, 67,183,196,140,150,128,129, 92, 35, 35,163,115,231,206,
-109,222,188, 25, 89, 28,215, 84, 48,176,109, 33, 32, 32, 0,105, 68,207,155, 55, 15,216, 15, 0,214, 4,144,154, 3, 40,245,225,
-195, 7, 96, 15,224,219, 55,124,119,189,164,166,166, 34, 15,221, 64,154,255,248,199,127, 6,118, 8, 8,173, 19, 64, 73,243, 31,
-162,125,180,237, 79, 36, 0, 8,160,193, 82, 1,156, 61,123, 22,215,218, 21,160, 56,129,245,163,236,220,171, 21, 14, 49,252, 57,
-203,160,200,157,214,170, 56,235, 0,176,163, 61, 11, 86, 25,184, 18, 63, 10,132,188, 18, 20,115, 85, 40,102, 14, 7,150, 98,144,
-210, 31,121, 6, 24,210,246,135,112,177,246, 0,224,122,201, 43, 89,110,223,190,253,232,202,164,127,162,255,152, 88, 24, 88,153,
- 64, 57,237,247,191,255,192,194,253,243,231,255,191,126, 51,252,249, 13,170, 15, 10,139, 64,221,169,171, 79,159, 96,234,125,120,
-107,162,182,246,191,195, 7,255, 50, 50, 49,188,126,193,200,193,201,112,112, 7,195,175,239,192, 18,130, 65,207,136,245,217,163,
-127,246,246,222,192,124,139,103, 39, 33,176,244,239,202,102, 40,155, 74,126, 29, 64,201, 5,194,228,233,197, 53,172, 65, 31, 0,
- 89,249,227,227,227, 3,137,122, 72,119, 22,216,204,199,170,248,223,191,127,231,207,159,183,181,181,133,139, 0,235, 0, 72, 89,
-252,251,247,239,191,127,255, 2, 35, 81, 84, 84, 20,215, 36, 48,124, 20,136,140,246,251, 0, 14, 1,161,117, 2,200,110,254,143,
- 22,253,164, 2,128, 0, 34,173, 2, 0, 22,196,180,216, 9, 9,105, 44, 3,115, 5,144,225,226,226,130,214,246,135, 20,163,196,
-111, 85,133,175, 2,130,112,137,105,251, 35,207, 0, 67, 0,132, 11, 89, 12,138, 95, 47,188,244, 71,155, 15, 32, 70, 47, 46, 0,
-108,254,227,210,171,170,170, 58,127,206,111,103, 11, 86, 96, 1,240,251,215, 63,118, 54, 80, 94,253,252,245,255,207,223,255,129,
- 69,255,217, 43,127,255,254,251,143,107, 29, 39, 80,239,226,133,127,236, 29,152, 3,163,153,191,124,254,255,249, 35,195,215,207,
-140,138,170,255,255,254,102,100, 97,226,248,240,238,223,179, 39,191, 74, 10,125,240,183,253, 39,228, 51,168,201, 49, 76, 46, 98,
-200,237,163,168, 14, 32,187, 79, 64,158, 94,202,215,125,146,151,242,129,165,127, 67, 67, 3,114, 99,191,171,171, 11,200,197,181,
- 59,236,215,175, 95,192, 34,236,199,143, 31,204,204,204,144,187,207,214,174, 93, 27, 28, 28,252,253,251,119,160,224,207,159, 63,
-121,120,120,128,213, 0,126,239,144,183, 22,104, 96,135,128,224,157, 0, 8, 99,180,232,167, 15, 0, 8, 32, 18, 42, 0, 10, 75,
-127, 60,218,129,133, 62,164,148,135,140,155,195,151,156, 34, 55,252,209, 42, 6, 20,192,204,200,192,198,196,192,201,204,192,195,
-194,240,243,243,234,118, 86, 6,206, 83,105, 33,138, 12,156, 66,179, 22, 19,213,240,199,186,230, 7, 82,130,227, 95, 20,143, 92,
-250, 35,207, 7, 16,163, 23,127,233,143, 71,111, 91,231,140,162,252, 12, 14, 14, 96,107,145, 65, 87,157, 25, 26, 86,151,255,254,
-254,251,255,239, 63,230,146,146, 18, 60,134, 55,181,204, 40, 41,201, 0,246, 24,126,253,254,255,247, 15, 3,176, 11,225,224,205,
-240,249, 3,227,141,139,192, 2,134,201,207, 55, 8,127,233,223,144,204,160, 2, 62,146, 68, 89,154,129,194,126,192, 72, 0,152,
-123,190, 64, 43,187,192, 0,151, 22, 96, 5, 0, 44,235, 65,219, 49,244,245,255,252,249,195,202,202, 10,108, 83, 3, 27, 49,192,
-210,255,219,183,111,192,230,191,160,160, 32,158,101,160,112, 0, 31, 80, 37,102,240,103, 48, 12, 1,193, 59, 1,100,132, 51,145,
-219, 5, 70, 1, 38, 0, 8, 32, 98, 43, 0, 26,181,253,177,118,237, 49, 7,124,200,182,154,224,232, 63, 37,165, 63, 3,234, 76,
- 47,188, 14, 99, 0,175,166, 37,168, 23,215, 76, 0, 49,122,251, 38,206, 0, 6, 23, 19, 19,195,145,179,160, 17,127,200,172, 47,
-120,232,191,132,160,222,158,158, 25, 25,153,224, 13, 31, 76, 32, 45,167, 14, 49,124,253,242,239,255, 63, 6, 63, 63,111,119,119,
-119, 60,165,127,121, 12,131, 0, 15,195,179, 55, 12,156,236, 12,255,254, 51,112,115, 48,180,166, 51, 84,207, 28,230,117, 0,174,
-238, 5, 49,105, 18,173,244,207,200,200,128, 20,253,155, 55,111, 6,150,146, 88,171, 1, 96, 5,192,196,196, 4,108,207,126,254,
-252,249,204,153, 51,134,134,134,192,106,224,227,199,143, 23, 47, 94, 84, 84, 84, 20, 22, 22, 6,150,254, 64, 17,130, 29, 26,200,
-142, 48,146, 58, 4, 3, 62, 4, 68, 94,219,159,108, 93,163, 0, 8, 0, 2, 8,189, 2,192,181,228,159,200,213,111,148,244,160,
-129, 10, 48, 15,101, 35, 88, 26,206, 74,155, 9, 26,237,185,197, 0, 66, 8,240, 17,140,238,147,237,102, 98, 74, 97,184,143,128,
-101, 4,100, 63, 1,176,218, 32,245, 42, 99,160,222,165, 37,220,144,250,128,212, 27,122,225,193, 5,153,245, 37,190,195, 49, 99,
- 58, 66,239,151, 79,160, 2,194,207,207,143,112, 88, 45,161,126, 49, 74,107,189, 3, 56,244,207,128, 58,205, 11, 12,112, 96,153,
-184,101,203, 22, 76, 41,180, 10, 0,168, 12,216,192, 7, 50,228,228,228, 62,124,248, 80, 91, 91, 11,172, 0,164,165,165,191,124,
-249, 2, 20,132,204, 4, 16,180,154,140, 81,160, 23, 47, 94, 80,238,101,170, 24, 50, 10,232, 6, 0, 2,104, 80, 92, 10, 15, 7,
-192, 34,140, 12,115,200, 94,225, 67,197, 62, 13,193,163,223,200,232, 10, 16, 19, 92, 88,217,164,234, 37,166,244,167,164,153, 63,
- 80,233,138, 42,241, 75,158, 33,240,227, 60,225, 39,122,106,106,106,206,155, 55,239, 31, 24,224,105,191, 67, 90,247, 64, 53,192,
-130, 30,114, 24, 28,184,130,255, 71,135,195,224, 70,193,240, 6, 88, 55,247, 0, 4,208,232,165,240,163, 96, 20,140,130, 81, 48,
- 66, 1, 64, 0,141,222, 8, 54, 10, 70,193, 40, 24, 5, 35, 20, 0, 4,208,104, 5, 48, 10, 70,193, 40, 24, 5, 35, 20, 0, 4,
-208,104, 5, 48, 10, 70,193, 40, 24, 5, 35, 20, 0, 4,208,104, 5, 48, 10, 70,193, 40, 24, 5, 35, 20, 0, 4, 16,150, 75,225,
-145,143,100, 64,190,143, 5, 89,124, 24, 95,178,140,188, 20, 21,238,247,209, 11,169,135, 86, 88,145,164, 17,191,189,173,173,173,
- 16, 70,117,117,245, 72,139, 95,170, 7,245,104, 62, 26, 16,189,120, 0, 64, 0, 81,237, 44, 32,200,137,158,196,169,101,195,212,
- 11,103,163,157, 6, 74,228,253, 27, 20, 2,248,181,192,144,226, 12,126,127, 30, 29,106,224, 91,183,110,193,239, 36, 40, 42, 42,
- 26,252,135, 32,162,133,213,245,235,215, 25,192,107, 28,105,106, 41, 48, 25,248, 7,164,111,220, 48, 19, 45, 25,108,219,126, 14,
- 40,136, 53, 97, 0,165,176, 26,229,229,105, 68,188,189,192,210,223,215, 87, 25,206,198, 85, 7,224, 2,159,191,124,190,247,236,
-222,183,255,223, 24, 24, 25,216,254,177,202,137,202,139, 10,139, 18,212,117,236,216, 49,100,174,149,149,213,104, 67,117, 20,208,
- 8, 0, 4, 16, 53, 15,131, 35,242, 18,149,171, 79, 63, 96, 10,162,149,185,200,219, 17,241, 23,199, 68,238, 18,194, 83,121, 64,
- 76,128,148,104,152, 11,180, 33,178, 88, 23,203, 34, 91, 45,173, 40, 11, 36, 95,254,248,241,231, 59,248, 60,254, 15,159, 24,192,
-231, 23,225, 59,193, 2, 12,144, 47,164,236,235,235, 35,230, 2,116, 38, 70,208, 70, 92, 8, 9, 4, 88, 25,211,103,208,164,178,
- 68, 14, 43, 72,209, 79,124, 88,145, 93,127, 67, 74,127,112,193, 13,170, 3,136, 55, 10, 82, 97, 96, 84, 0,164, 57,227,215,175,
-242,157, 59,211,220,221,103,249,250,118, 66,122, 3, 68, 86, 3, 71,174, 30,145, 55,148, 77, 14, 78, 16,228, 18,252,247,231,239,
-143,255, 63,119,156,220,181,239,224, 94, 43, 37,107, 14, 14, 14, 60,165,127,102,102, 38,178,200,244,233,211, 71,235,128, 81, 64,
- 9, 64,190, 11, 12, 45,123, 2, 4, 16,149, 79, 3, 69, 59, 23,147, 12, 64,198,145, 93, 4,183,197,227,105,203,195,111, 33, 6,
-178, 33, 36,154, 44, 81, 7, 73, 10,240, 93,186,183,130,147, 65,230, 47,195,209, 87,115,206, 93,188,251, 54,168, 99, 62,237,162,
-243,210,229, 43,122,186, 58,192,178,254,202, 21, 16, 3, 40, 2, 97,192, 69,254,225, 13, 15,252, 55, 62,226,185, 52, 28, 18, 86,
- 9, 9, 9, 64, 54,132, 68, 47,253,129, 1,133, 45, 46,128, 82,206,206,219,211,211, 61,201,174, 3,128,165, 63,216,217,179, 54,
-110, 32, 92,196,195,181,144, 90,214, 99, 54,255,129,100,112,240,218,157, 59, 65,100, 90,218, 93, 72,111,128, 96, 87, 0,152,102,
-246,223,220,151,157,147,105, 34,106,200,201,207,255,255,215,159,127,255,255, 50,179,176,169,184,168,220, 48,190,217, 49,171,211,
- 92,196, 2,114,208, 27, 86,240,230,205, 27, 56,219,219,150,219, 60,255,104, 68,231, 15,184,136,147,147, 19,241, 94,216,176, 97,
- 3,230,201,160,116,208, 75, 21, 64,198, 85,239,144,125,200,163, 39, 67,224, 42,253, 33, 92,228, 58, 0, 32,128, 88,144,187,246,
-164,176,217, 48,109,122,245,234, 21,252, 36,100, 60, 53, 4, 3,187, 6,158, 50,154, 17,163,200, 38,102, 40, 6, 79,177,133,231,
- 46, 1, 96,193, 4,108,164, 99,150,251,144, 75,137,225, 21, 3, 30, 0,108,248, 63,125,255,113, 93, 70,176, 48,163,245,221,217,
- 37, 74,129, 74,187,105, 92,250, 3, 1,164,208, 7, 2, 29, 29, 29,184, 8,164, 79, 0, 23,161,164,141,143,181,152,134,132, 21,
-102,185,191, 96,193, 2, 96, 88,121, 90, 27,110, 63,122,158,129,151,155,225,211, 23, 90,120, 25, 60,158, 51, 11,215,168, 14,126,
- 16,240,169, 10,123, 1,199,215, 70,204,224, 79, 90,218, 78, 32, 3, 66, 66,164,128, 12,252,117,192,153, 27,103,146, 83, 18,109,
- 85, 29,254,254,252,249,231,239, 31, 70, 22, 96, 2,102,254,207,240,239,229,235,103,154,162, 26, 85, 25, 85, 45, 93, 45,206, 58,
- 56,187,134, 23, 46, 92, 64, 84, 0, 82, 11,208, 10,253,125,251,246, 17, 89, 7, 0, 75,240,109,181,219,189,154, 25,200, 40,199,
-129,122,187,186,186,202,202,202, 6,164, 14, 0,150,227, 55,111,222,124,246,236, 89,100,100, 36, 73, 26,129,186, 70, 43, 0,236,
-205,190,114, 80, 81, 54,171,179, 2, 77, 28, 32,128, 16, 21, 0,124,130, 23,237, 92,126,172,226,104,103,205, 35, 87, 15,144, 99,
-212,144,135,131,144, 15, 92, 3,214, 16,152, 67, 4,152, 23,104, 16, 51,116, 67, 21,176,106,213, 42,204,162, 31, 50,202, 1, 41,
-253,129, 34,120,180, 63,185,247,232,235,250, 58,158,164,137,192,154, 64, 92,152,243,222,250,123,160,210, 95,128, 15, 52, 4,196,
-202, 76,140, 3,128,193, 5, 31, 5, 34,242, 60, 9, 96, 89, 47,199,205, 48, 37,134, 33,101, 1,131, 40, 23,195,245, 15,232, 34,
- 87,137,184, 49, 5,179, 90, 37,216,145,106,106,106,194, 44,250,129,140,174, 4,159,201, 59, 78, 72, 40, 73,190,120,248, 18, 87,
-243, 31,200,192,211, 9, 32, 56,170, 3,110,233,167,163,181,247, 33,245, 1, 49, 41,164,107, 25, 22,175,169,101, 16,149, 66, 32,
-229, 62,132,252,229,171,194,182,249, 14,126,245,223,190,127,227, 82,227,180,144, 52,255,249,245, 43, 11, 59, 59, 11, 11, 52,139,
-221,187,115,103,211,198,141, 73,137, 9, 10,236,114,134,246, 6, 79,174, 60,145,145, 36, 60,173,215,186, 45,225,224,193,131, 33,
- 33, 12,200, 61, 0, 98,234, 0, 72,233,207,160,208,191,173,182,144,212, 58, 0,168,119,194,132, 9,106,106,106,147, 39, 79,206,
-205,205,165,103, 29, 0, 47,250,201,211, 11,209, 72, 70,215, 97,120, 55,255, 33,165, 63,132, 1,172, 3,144, 59, 1, 0, 1, 68,
-205, 33, 32, 96,225, 14, 25, 29, 6,214, 4,200, 21, 0,156,139,255,150, 21, 92, 83,193, 4, 51,121, 88, 88, 24,229,142,135, 23,
-136,104, 13,127,200, 85,148,184,102,213,191, 51, 60,250, 18,104,254,159,183,132,193,165,246, 11,195,114,134, 57,160, 34,233,255,
-234, 18,214,184,201,127,254, 16,117,183, 34, 48,155,145, 90,201,189,154,199,208, 56,131, 65, 86,134,225,229, 22,182,133,115,127,
- 37,172,192, 34, 66,249,184, 25, 30, 0,159,242,125,190,161,131, 87,155,131, 71,181, 96, 85, 71,138,190,142,132,186, 79, 11,158,
-176,194, 19,239,248, 7,136, 32,137, 1, 94,250, 3,185,144,185, 95, 98,139, 51,190, 54, 34,203,122, 52, 0, 44,238,209, 68,118,
- 34,245, 3,112,129,231,175,158,187,133,186,241,242, 9,254,101,252,115,248,224,161,207, 95,190,248,250,249,189,126,245,106,205,
-218,117,201,137, 9,236, 28,236, 76,255, 89,221,141,220, 39,237,159, 76, 76, 5, 0, 4,239,223,147,124, 3, 26,188,244, 7,113,
- 72,172, 3,128,122, 27, 26, 26, 84, 84, 64,126, 87, 86, 86,166, 91, 63,128,146,162, 31,185,249, 15, 97,140, 86, 0, 68, 2,128,
- 0,162,242, 28, 0,176,160,135,220,238,130,124, 81, 34,228,132,100, 98,230, 6, 48,167,130,137, 25, 2,194,117,245, 46,241, 0,
-210,204,199, 28,243,193,223,252, 7,130, 29,149, 13,190,237,125,127, 92,172,129,225,200,115,252,206,238,187,111,129,130,127, 92,
-114,127, 95, 22, 97, 20,205, 34,166,236,195,223, 25,194, 10,222, 6, 44,207, 77,124,124, 43,163,236,235,222, 95, 18, 34,216, 69,
-200,232, 1, 16, 89, 43, 0, 27,254,160,166,132,175,221,137,103,175,120,245,121,159,238,188,203,192,193, 30,156, 27, 39, 36,227,
- 67,187,100,138,185,242,135,188, 14, 34,214, 65, 36, 92,235,130,128,197,189,251, 44,247,224,181, 12,105, 59, 65, 12, 32,151,152,
- 78,192,151, 31,159, 69, 56,133,255,252,248,246,159,233,191,169,153,217,250,245,235, 39,244,245,253,251,255, 63, 58, 38, 90, 72,
- 88,232,219,151, 47,127,254,254,225,101,229,251,205,244,155, 72, 55,127,248,240, 1,190, 46,136,152,217, 96,148,210, 31, 2,136,
-174, 3,128,122,129,185,192,204,204, 12, 46,162,163,163, 3, 25,239,162, 93, 29, 64,121,209,143,220,252,103, 0, 95, 10, 63,218,
- 9, 32, 18, 0, 4, 16, 11,158,194, 8,143, 56,158, 35,228, 32,195, 68,144,217, 96,200,172, 0,164, 91, 0, 20, 71,158, 78,160,
- 69,209, 64, 54,192, 53,226, 79,240, 38,250,160, 25,107,255,251, 41,190,180, 52, 18,102,176,230, 12,158,252,231,249,107, 6, 1,
- 62,150,183,203,183, 76, 56,203,192,204, 76,140,227,201, 56,235,248, 98, 81,164,137, 1,131, 82,238, 21,109,158,196,155,242,161,
- 12, 83,202, 48, 69,104,215, 3, 0,134,137,173,169,186,139,181,154,175,110, 89,239,132,233,215,206, 62,205,112, 50,121,177,113,
-219,199,247,159,200,136, 11,180, 1, 34, 92,233, 10,107,147,159,188,168,199, 52, 7,235, 92, 49,176,200, 3, 22,124,192,210, 31,
- 94, 25, 0, 73, 96, 53, 0, 44,253, 55,111,190, 11,153, 0,128,204, 18,235,217,197,163,213,173,160,195, 59,255, 49,252,255,247,
-135,157,147, 35, 38, 54,182,177,190, 94, 92, 92, 92, 90, 66,226,199,215, 47,127,255, 3,197,255,226,185,206, 5, 88,196,175, 89,
-179,230,237,219,183,159, 62,125,130, 87,213,240,117, 65, 4, 87, 4, 1, 75,240,222,148,171, 12, 28, 42, 12, 47,166,162, 72,112,
-168, 0,197,139,231,224,171, 3,128,122,253,253,253,129, 37, 62,208,118,100,113, 57, 57, 57,160,248,128,207, 9, 19,217,252, 31,
-237, 4,144, 4, 0, 2,136, 5, 51, 59,145,177, 17, 12, 2, 32,183, 54, 34,119, 2, 32, 37, 62, 80, 4,190,108, 28, 40,245,157,
-232,102, 41, 49,211,191,148, 47, 3,133, 52,243,177, 78, 5, 19, 52,246,110,119, 26,107,240,228,239,207,110,177, 28,159,252,123,
-109, 46,163, 87,207,166,172,144,135,155,238,251,118, 45, 98, 96,161,213,125,203,101,171, 25,118,118,173,215,126,232,206,240,230,
-107,169,107, 25, 86, 17, 50,122, 0,196, 55,255, 55,174,111, 96,150,214,226, 97, 80,123,116,112,214,103,198,255,167,110, 61,118,
-185,242, 20,111,200, 63,130, 13,214,205,132,151,248, 64,176,119,175, 39,154, 44,214,116,133,107,192,135,140,165,165,100, 44, 13,
- 2, 54,255, 33, 69, 63,144, 68,110,251, 67,102,137,129,149, 1,154,122, 94, 78,222,103, 31,159,153, 41,152,127,255,249,131,225,
-251,143, 63,191,126, 87,149,151, 51, 50, 49,124,251,250, 5, 88, 47,252,249,251,159,157,133,245,245,151,215,172,127,217,112,217,
- 24, 2, 27,242, 7, 54,252, 33,121, 10,190, 46,232,249,243,231,248, 93, 11, 44,163,129,165, 60,176,172,215, 84, 68, 49,255,250,
-253, 95,197,115,180,241,151,224, 64, 89, 96, 41, 15,108,254, 3, 75,124,100,241, 43, 87,174,108,220,184,145,118,165,191, 4, 24,
- 80,101,244, 31, 14, 70, 59, 1, 68, 2,128, 0,162,102, 33, 5,175, 30,128, 69, 63,176, 2,128, 12,254, 96,214, 10,251,207,127,
- 32,166,140, 38, 62,111, 83,178, 12, 20,222,252, 71, 43,250, 33,213, 21, 65, 55, 92,188,251,246,247,229,198,151, 12, 71, 37,188,
-122, 24, 62,126,186, 59,171, 68, 57,179,255,197,252, 18, 6, 86, 22,232, 53, 93, 52, 0,143,190, 50,104,138, 5,226, 23,161, 81,
- 15, 0, 24, 44,225, 46,230,252,255, 4,191, 49,176,174,237,207,157,182,229, 66,169,135, 77, 66,223,178,144,182,197, 52,154,174,
-135, 84,240,176,125, 0,164,213,250, 36, 13,248, 96,237, 4,164,129,219,248,200,165, 63,188,249,143, 11, 72,137, 73,237, 56,188,
-211, 74,214,138,139,155,231,223,191,255, 76,255,255,252, 99,100, 4,134, 54,176,237,255,231,223,255, 63,127,254,124,255,248,117,
-235,233,173,242, 98,242,196,184, 1,121, 69, 80,117,174,181,183,212,189, 89,167, 25, 72,173, 3,136, 41,253,225,122,129,190,235,
-234,234,146,148,148,132, 54,113,238,222, 5, 70, 58, 29,218,254,148, 84, 3,104,205,255,209, 78, 0,241, 0, 32,128,104,181, 17,
- 12, 82,220, 35,215, 10, 68,222, 88,130,150,183,137, 44, 86,200, 91, 6,138,217,252, 39,190,232,135, 14, 1,117,204, 95,199,192,
-224,209,238,253,127,117, 9, 99, 88, 47,176, 62, 96, 20, 18,188,243,228, 19,168,249,207,204, 76,163, 56,195, 92,245, 79,210, 62,
- 0, 60,149, 34,254, 90, 1,210,252, 79,113,208, 43,232,153, 88, 89, 85, 46,202, 39,118,245,218,163,132,107,203,104,189, 82, 11,
-179,212,134, 15,157, 17,183,124,136,240,128, 15, 30,128, 86,250,195, 71,126,112,205, 6,115,112,112,176, 60, 96,221,255,240, 64,
-168,110,200,167, 31,159, 24, 65,205, 0, 32,254,247,247,239,255,127,127,254,112,179,243, 30,251,120,254,246,241, 59,174, 70,164,
-223, 98,116, 55,149,129,184,101,160,136, 58, 64,242,209,245,231,114, 68,150,254,112,189,101,101,101,147, 39, 79, 22, 16, 16,120,
-251,246,109, 67, 67, 3, 61, 71,126,200,168, 6, 48,155,255,163,157, 0,226, 1, 64, 0, 81,115, 31, 0,102,111, 0,121,155, 43,
-164, 19, 64, 82,227,148, 14,135, 49,192,155,255,200, 11, 64,129,222,132, 87, 27, 4,183,242, 66,234,128,192,246,121,255,215, 50,
-136, 36,204, 60, 80, 16, 98,211,185,148,129,149,149,155,131,141, 70,110,134, 47,246, 71, 99,144,180, 15,128,140, 30, 0,164,249,
- 95, 48,107,115, 85,178,155,148,132, 3,124,208,143,248,176,130,149,221,158,206,206,219, 97,227, 63, 36,140,221, 33,183,232,225,
- 39, 67, 80,119,192,135, 32, 64, 46,247, 33,189, 1,204, 97, 43, 67, 13,195,205,203, 54,255, 13,255, 99, 47,107, 47,204, 43,252,
-227,247, 15, 96,104,179,177,176,125,248,254,237,196,147,189, 11,150, 44,116,212,114, 36,195,234,214,109, 9, 11, 23, 46, 44, 41,
- 33,106, 19, 0,172, 14, 96, 32,169,244,135,235,205,205,205, 29,192,125, 0,240,106,128, 72,197,164,110, 23, 24, 57,192, 39,166,
-118,203,146,230, 89,157, 21,200,251, 0,144,103,218, 0, 2,136,154,251, 0,208,122, 3,152,197, 61,169,215, 22, 18, 9, 40, 95,
- 6, 10,169,105, 32,183,236,194, 43, 57, 37, 48, 32,178, 31,192, 0,219,252,101, 95, 53, 3,194,248, 74,155, 24,165,188,185, 77,
- 73,181, 10,108,254,187,238, 57, 25, 93,191, 8,232, 12,228,174, 21,241, 97, 69,173,126, 0,169,155,194, 40, 28, 14,194, 44,253,
- 65,139, 68, 49, 38, 0,224,192, 81,207,233,224,154,195,199,229, 78, 88,155, 91, 75,243, 74, 51,252,251,255,250,199,219, 99,231,
-142,189,184,250,194, 73,211,137,157,157,157, 14,153, 31, 82, 7,144, 87,130, 67,250, 1, 3, 59,235, 59,218,120,167, 34,192,220,
- 2, 6, 1, 0, 1, 68,205, 33, 32,204,125, 76, 88, 23,104, 18,188,132,146,212, 18,138,194,101,160,144,165, 62,123,192,128,164,
-226, 12,210, 87,160,196,106,204,177,108, 74,206,204,161, 67, 21,226, 90, 51,155,188,176,194,236, 4, 16,239, 12, 92,101, 61,176,
- 19, 0,151, 37,166, 40, 39, 99, 56, 8,180, 22, 40,173,213,125,150, 59,214, 61, 1,248, 39, 3,204,180,205,190,125,251,118,114,
-227,201, 47,191, 64,141, 1,118, 38, 54, 57,113,121, 77, 3, 18, 78,205,179,178,178, 90,187,118, 45,242,138,160,223,191,127,147,
- 20,212,148,148,224,131,121,205,207, 40, 32,181, 19,128,171,248, 5, 8, 32, 22,250, 23, 43,248, 55, 10,145, 90, 60, 81,126,105,
- 56,217,197, 25,229,205, 94, 58,140,158, 99, 29,254,129,157,184, 65,191,176,162,196,227,164,182,211,169, 59, 28, 4, 42,229, 31,
- 98, 17, 55,169, 54, 33,168,151,139,139, 75, 71, 85,151, 18,103, 7, 7, 7,143, 22, 97,163,128,242, 58, 0,151, 20, 64, 0,141,
- 94, 10, 63, 10, 70,193, 40, 24, 5, 35, 20, 0, 4,208,232,141, 96,163, 96, 20,140,130, 81, 48, 66, 1, 64, 0,141, 86, 0,163,
- 96, 20,140,130, 81, 48, 66, 1, 64,128, 1, 0,102,166,130,194, 95,117, 5, 95, 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, 0, 0, 0, 1, 0, 8,
+ 2, 0, 0, 0, 74,242, 89, 48, 0, 0, 0, 9,112, 72, 89,115, 0, 0, 11, 19, 0, 0, 11, 19, 1, 0,154,156, 24, 0, 0, 0,
+ 4,103, 65, 77, 65, 0, 0,192,153,201, 12,156,227, 0, 0, 0, 32, 99, 72, 82, 77, 0, 0,110, 39, 0, 0,115,175, 0, 0,246,
+112, 0, 0,129,232, 0, 0,107,215, 0, 0,226,170, 0, 0, 48,131, 0, 0, 21, 42,251,118,133,113, 0, 0,192, 79, 73, 68, 65,
+ 84,120,218, 98,244,137,169,101, 24, 5,163, 96, 20,140,130, 81, 48,242, 0, 64, 0, 49,141, 6,193, 40, 24, 5,163, 96, 20,140,
+ 76, 0, 16, 64,163, 21,192, 40, 24, 5,163, 96, 20,140, 80, 0, 16, 64,163, 21,192, 40, 24, 5,163, 96, 20,140, 80, 0, 16, 64,
+163, 21,192, 40, 24, 5,163, 96, 20,140, 80, 0, 16, 64,163, 21,192, 40, 24, 5,163, 96, 20,140, 80, 0, 16, 64, 44,112,150,175,
+173, 12,241,218, 54, 31,126,130,204, 29,213, 59, 8,245,162,105,167,186,189, 7, 14, 28,112,112,112, 24, 13,231, 81,189,163,122,
+ 7,185, 94, 60, 0, 32,128, 88,134, 71, 61,150,158,158, 14,103,207,156, 57,115, 64,108,159, 49, 99, 6, 35, 35,227,176,111, 50,
+192,131, 58, 50, 50,114,205,154, 53, 16,118, 72, 72,200,104, 99,106,248, 69, 52,253,179,210, 40,160, 51, 0, 8, 32, 22, 90,164,
+128,219,183,111,247,244,244, 64,216, 37, 37, 37,170,170,170,116,240,201,255,255,255,129, 36,253,139, 96, 96, 40, 61,120,240, 0,
+200, 80, 80, 80, 24,144,234, 7,107, 45,136,213, 37,192, 54, 59,126, 19,150, 47, 95,142,223,253, 64, 43, 86,173, 90, 5, 97,175,
+ 95,191,222,213,213, 21,194, 6,214, 4,180,171, 3,140,141,141,129,228,217,179,103,201,144, 29,153,224,222,189,123,157,157,157,
+112,110,121,121,185,146,146,210, 32,175, 54, 6,208,205, 35, 25, 0, 4, 16, 11,158, 66, 28, 66,146, 90,124, 67,138,161,198, 85,
+ 45, 60,178,252, 95, 30,127,172, 15,171, 25,216, 98,145,214, 0,232, 53, 96,209,255, 0, 12,118,236,216, 65,255,118, 19, 36,192,
+103,130, 1,144,221,213,213, 5,228,150,149,149, 97, 85, 28, 24, 24, 8, 97,252,249,243,247,215,239,159,191,126,254,130,128, 63,
+127,254,224,210,130,181,244, 71, 3,192,154,128,166,117, 0,158,218, 11, 82, 1,140, 2, 92,237, 0, 32,128, 20,172,116, 72,150,
+ 16,171,201,200, 2, 3,232,230, 17, 14, 0, 2, 8,103, 5, 0,108,194,175,170,173, 10,107,110, 35, 41, 14,128, 17, 9, 41,250,
+129,236, 55,223,222, 50, 8, 51, 84,238,109,248,116,239,125,122, 42,253,138, 69,204,196, 68,107,171,225,117,128,135,135, 7,144,
+ 4,178,233,233,217,253,251,247, 3, 25,142,142,142,104,117, 0, 30, 0, 44,238,127,253,250,253,235, 23, 74,233,127,230,204, 25,
+ 19, 19, 19,130, 54,134,133,133, 65, 24,145,145,145,187,119,239,134, 87, 0,100, 68, 16,145,161, 4,108,221, 3, 75,127, 55, 55,
+ 55,100,193, 93,187,118, 1,251, 43, 16, 54,214,169,136, 17, 94,250, 35,135, 45, 25,229, 50,217, 90,200,232, 7, 80,203,205,163,
+128, 12, 0, 16, 64, 44,184,154,255,106,106,106,170, 60,124, 36,117, 2,224,165, 63,176,232,111,119,110,128, 8, 38,110,204, 98,
+ 16, 99, 8,236, 10, 35, 24,151,152, 5, 55,121,101,247,227,199,143,129,164,172,172, 44,156, 1, 49,153,186,135, 94,160,121, 7,
+ 94, 7,252,254,253,103,198,140, 25,148, 55,130,136,209,142, 86,250,195, 53, 98, 13, 73,148,210,255, 55,176,244,255,249, 19, 92,
+ 9,192, 75,255,255,255,254, 19, 83,250, 3, 85, 66,216,189,189,189,240, 38, 63,124, 50,128,120, 55,163, 57,155,120, 0, 47,250,
+129, 53,144,161,161,225,104, 30, 70, 30, 69,193,154,120,224, 73, 2,168,128,224,184, 10,188, 67, 9, 73,195,112, 46, 49,205, 32,
+204,162,156, 96, 70, 64,115, 51,176, 73,193,200,200,232,226,226, 66,146,155, 33, 32, 57, 57,121,238,220,185,163,201,128, 36, 0,
+ 16, 64, 76,184,154,255, 45,225, 33, 63, 94,191, 46,209,214,128,143,230,227, 7,144, 33, 35,120,233, 95, 82, 82, 2,140, 66, 32,
+ 57,223,127, 26, 80, 92, 64, 93, 4,174, 6, 15, 40,155,122, 11,136,178,123,174,199, 55, 95, 9,170,188, 64,170,103,158, 60,121,
+130,167, 74,160,110,233, 15, 44,235, 49,139,108, 96, 29, 0, 44, 82,205,205,204, 72, 53, 13, 50,186, 2, 4,251, 97, 0,127, 33,
+ 14, 47, 73, 29,193, 0, 51,195,227, 46,253,255,130,138,253,159,160,193, 31,228,210,255,239,223,191, 95,191,127, 37,232, 84, 72,
+ 47, 1,185,163,176, 6, 12,136, 28,252, 1,185, 25,105, 36, 7,200, 38,232, 77,172,165, 63,176,232, 7,246,114, 32,165, 63, 43,
+ 11,235,104, 54, 38, 56,108, 2, 17, 68, 30,100,199, 95,148,147,215, 2,131, 40, 70, 46,253,113, 53,236,176,186, 25, 88,250, 3,
+211,210,234,213,171,247,236,217, 67,170,155,129,165, 63, 11, 11, 11,144, 28, 77, 6, 36, 1,128, 0, 98,194,211,252,255,246,226,
+185,167,161, 17, 49, 5, 55,164,206, 0, 54,255,129, 12, 72,233, 15,233, 52, 0, 73, 72, 29,240,228,211, 51,163, 50, 11,130,117,
+201,215,239,192, 98,232,239,243,183, 63,159,190,254,241,248,229, 15, 34,139, 78, 72, 10,195, 85,250,211, 14, 96,214, 1, 64,240,
+227,215,207, 31, 63,126, 16,111, 8,164, 28,135,140,173,139,138,138,194,155,198,248,115, 14,114, 59, 26,179,227,140, 39,223,130,
+198,253,129,197, 63,184,241, 15, 47,253,127,255,254,253,245,235,215,207,159, 62,211,122,116, 98,213,170,213, 48, 30, 35, 24, 50,
+ 0, 69,136,175, 3,224,165, 63,164,232,103, 98, 98,226,224,224,224,230,225, 26,205,198, 52,234,215, 18,217,167,196, 90,121,160,
+141, 8, 17,163, 23,222,143, 4,214, 1, 36, 57, 27, 82,250,131, 6, 52, 70,235, 0, 18, 1, 64, 0,118,205, 94, 7, 65, 24,136,
+227, 36,208,224,238, 32,239, 64,124,156,250, 8,142, 60, 15,137, 3, 59, 60,150,176, 16,135,106, 75, 33, 90,130, 7, 37, 23, 98,
+180,158,137, 35, 55, 53, 13,133,210,143,223,221,253,219,224, 45,202, 79,199,121, 16,155,242,108,147, 0, 74, 32, 96,195,127,203,
+125,172,196,242,118, 31,125,125,131,106,123,169,205,173, 49, 87,101,132, 52,148, 31,120,185,252,131,193, 62, 22, 32,133, 20, 66,
+252,119,212,210, 52,197,131, 95, 84,252, 97,149, 67,125,215,182,116, 7, 0, 77,178, 44, 43,171,138,249,254, 46,138,144,254, 73,
+146,196,113,236,216, 54,240, 69,120, 12,125,192, 50, 47,113,159, 64,220, 39,254, 63, 70,250,247,150,254,224, 13,180,214, 74, 41,
+ 41, 73, 14, 0, 37, 32,107,244,216, 63, 47,114,111,240, 46,117, 61,206,154,157,179, 97, 24,125, 64, 81, 28, 56,167, 44,176, 37,
+253, 25, 99, 97, 24,110, 38, 35,246,124, 53,138, 2,249, 9,220,116, 45,200,161, 8,185,141,115,110,209,255,211,109, 2,164,255,
+ 76,180, 32,128,200,102,213,130,136,246, 20, 64, 76, 88, 71,114, 76,148, 85,127,188,126, 13, 44,253,129,108, 59,112,179,148,152,
+ 78,192,189, 43,119,144, 13, 65, 99,191,189,252,130,160, 9,164,150,254,240,162, 31, 88, 13,200,202,202,194, 5,127,195, 0,176,
+232, 7,182,109,223,189,123, 71,221, 80,131, 88,186, 99,199, 14,120, 63, 0, 82,250,235,233,233,253, 0,214, 0,223,191,195,107,
+ 38,252, 89,110,234,180,169, 64, 71,202, 72, 75,255,254,251, 23,173,244, 39,152,109, 32,117, 0,114,131, 11,178, 26, 21,107,191,
+ 4,165, 2,248,245, 27, 82,250,159, 62,117,250,219,247,239,192,210,243,227,199,143,192,128,122,255,254, 61,241, 33, 0, 25, 5,
+ 34,126,232, 31,148, 0,222,188,125,251,246,205,155,183,239, 64, 52,152, 9, 20,212,208,212,124, 7,102, 16,211,252, 7,146,192,
+210, 31,218,240,231,230,230,225,225,229,229,225, 5, 50, 70,179, 49,174,210,156,248, 6, 56,100, 5, 1,156,129,139, 77,146,237,
+104, 35, 66, 4,117,185,184,184, 0,235, 0, 96,233,239,234,234, 74,124,159, 3, 88,214, 3, 75,124, 56,119,180,244, 39, 9, 0,
+ 4, 16, 19,102,243,127, 85,109, 21,144,241,237,197,115,184, 32, 49, 51, 1, 37, 37, 37, 83, 83, 39, 50,128,103,125,129,138,225,
+171, 72,129,108,215,197, 1, 64,246,185,174, 19, 64, 53,212,117, 61, 60,109, 61,121,242, 4,210,228,135,148,251,208,238,203,215,
+175,192,210, 13,216, 30,231,226,162,254, 40, 1,208,234,140,140, 12,144,141,127,254, 92,187,118,237,252,185,115,250,122,250, 63,
+126,128, 59, 0,223,191, 47, 89,188, 24, 34,139, 39,185,247,246,246,106,105,106, 1, 93, 11, 12,165, 63,191,127, 61,125,242,148,
+108,239, 51,192,102, 32, 24,192,219, 17,240,245, 0,126,255,252,243, 23, 52,242,115,242,228,137,175,223,191,126,249,252, 9, 88,
+250,191, 7,149,254,239, 72,170, 38, 33,253, 0,146, 90,106,135, 14, 29,250, 12, 2,159,192,228,103, 17, 97, 97, 96,233,127,227,
+250,245,131,135, 14, 17,163, 29,210,252,103, 97, 97, 5,198, 38, 15,176,236, 7, 98, 30, 46, 78, 46,206, 23, 47, 94,140,102, 99,
+ 8, 40, 47, 47,135,151,191,240,201, 85, 8, 3, 34, 8, 81, 64,100,179, 29,255,184, 16,254,210,159,248,182, 63,154,155,129,117,
+ 0,176,244, 39,201,205,200,117,192,104,233, 79, 42, 0, 8, 32, 44, 67, 64,194,247, 31,188, 3, 15,254,192, 69,128,157,128, 30,
+134, 27,248, 13,130, 12,245,220, 56,123, 77, 64, 93, 4, 88,226,247,196, 66, 43, 12, 72,233, 15,105,254, 19, 92, 77,180,174,221,
+128,188,246,248,245,235,215, 33, 41, 0,121, 52,128, 21, 12, 94,191,126,237,229,229, 69,139,176,131,148,185,192,134,191,153,153,
+217,143,159, 63,191,255,248, 14,110,253,127, 7, 49,126,252,152, 50,101, 10,174,156, 3, 89,169,249,247,239,223,179,103,207,177,
+178, 48, 67, 66,230,254,131, 7, 79,159, 62, 93,190,124, 69,100,100, 4, 80, 4,222, 15,192,154,193,224,131, 78,104, 45, 56,130,
+ 43, 80, 33,109,255,227,199,143,127,253,242, 13, 82, 65,126,250,252,233,211,167,143,159, 62,125, 33,126, 32, 5,210,252,135,239,
+ 4, 38,166, 26, 0, 42,134,179, 21, 21, 20,128, 69, 63, 40,181, 92,191,126, 31,220,107, 65,150,197, 3, 44,173, 44,217,217,216,
+ 57, 57, 57,129, 61, 0,118,118,118, 96,228, 82,125,122,127, 72, 3,228,213, 50,240,197, 51,240,154, 0, 77, 1,254, 66, 28,235,
+ 80, 62, 73, 61, 15, 34,171, 13,106,185, 25, 82, 7,140,150,254,164, 2,128, 0, 98,193, 28,255,113, 94,178, 12,171, 82,130,235,
+ 65, 33,205, 7,163, 50, 11, 97, 93, 9, 72,185, 15, 31,252, 1, 54,255, 9,166, 6,242, 22,252, 66, 44,213,212,212,188,124,249,
+ 50,188, 8,195, 28,244, 7, 42, 35,254,124, 12, 82,109, 71, 22, 89,178,120, 9,176,244,135,236,176,194,186, 30, 31,121,157,254,
+191,127,127,245,244,141, 46, 94,188,116,253,218, 53, 22, 86, 86, 96,201,248,228,233, 19, 96, 83,151,153,153, 57, 44, 44, 12, 88,
+ 7, 48, 48,240, 99,154, 0,212, 14,201, 93, 16,219,209,246, 1,224,119, 48,176,244, 63,122,244,232, 23, 32, 0,205,250,126, 2,
+151,254, 64,226,243,151,207, 95,190,126,251, 70,208,179,192,162,255, 12, 24, 48, 96, 44, 3,197, 95, 13, 56, 56, 56, 32, 7, 20,
+164,220, 63,127,254, 60, 3, 17,219,143,141,193, 0,200,224,225,226,225, 0, 21,254, 28,108,108,108, 76, 76, 76,163,165, 63,250,
+ 24, 44, 82,185,185,122,245,106, 96,107,154, 1,117, 66,149,152, 37,149,200,109, 11, 82, 87, 51,147, 49,238, 79, 21, 55,195,235,
+128,209, 52, 64, 42, 0, 8, 32, 22,180, 86, 60,133,219, 46,224, 41, 0, 82, 13, 64,138,126, 6, 26,111,197,130, 88,170,171,171,
+123,250,244,105, 96,123, 31, 81,241,188, 5,205, 72,199,198,198,210, 52, 4,145,189,246,255,255,255,152,216,152, 41, 83,166,130,
+199,217,255,240,243,243, 19,172,231,110,221,186, 5,108,209, 66,244, 2,217,104,202,238,225,168,180,144,235, 0,200,108, 48,100,
+ 73, 40,254,112,134, 44,159,183,182,182,166,196,179,240, 53,160,164,158, 5, 4,212,123,224,192,129,229, 96,128,220, 51, 32, 50,
+109, 0,171,144,223,127,126,255,254,252,123,116,202, 23, 23, 32,184, 98, 18,168,128,200,208,134,239, 3, 32, 47, 51, 18,175,145,
+138,110, 30, 5,100, 0,128, 0,162,254, 97,112,192,216, 2, 13,253,119,209,245, 44, 32, 72,178, 51, 53, 53,221,182,109, 27,164,
+220,167,188,111, 65,222, 96, 20,124, 47, 46,214,210,159, 42, 0,243,204, 6,200,178, 81,130, 77, 54,170,132, 3,220, 16, 96,105,
+ 78,234,217, 15, 14, 96, 64,170,141,163,231,252,144,209, 22,161,127,226, 39,207,198, 65,226,230, 17, 11, 0, 2,136, 38,167,129,
+ 82,222,147, 32,187, 14,160,209,112, 63,237, 50, 0,229,134,143,230,150, 81, 48,228,146,241, 40, 24, 36, 0, 32,128, 24,169,123,
+ 64,194, 40, 24, 5,163, 96, 20,140,130,161, 2, 0, 2,104,244, 70,176, 81, 48, 10, 70,193, 40, 24,161, 0, 32,128, 70, 43,128,
+ 81, 48, 10, 70,193, 40, 24,161, 0, 32,128, 70, 43,128, 81, 48, 10, 70,193, 40, 24,161, 0, 32,128, 70, 43,128, 81, 48, 10, 70,
+193, 40, 24,161, 0, 32,128, 70, 47,133, 31,213, 59,170,151,230,122,113, 45,207,165,181,222,209, 56, 26,213,139, 31, 0, 4,208,
+104, 15, 96, 20,140, 2, 2,224,231,207,159, 79,158, 60,185,126,253,250,131, 7, 15,200,216,134, 6, 57,221, 30, 66,146, 10,136,
+ 57, 82,127, 20, 96, 5, 55,111,222, 28, 13, 4,130, 0, 32,128, 88, 70,131, 96, 0,193,181,107,215, 38, 78,156, 8,231,230,231,
+231,107,105,105, 13,114,189, 35, 10,252,254,253,251,212,169, 83, 87,175, 94, 69, 22,148,148,148,116,112,112,224,229,229, 37,198,
+132,123,247,238, 65, 14, 54, 0,146, 74, 96, 64,106,233,255,255,255,127, 70, 70, 70, 82, 79,100, 67, 83, 76,188,118, 50,244,146,
+122, 82, 52,145, 93, 28, 10, 75,255,254,254,254, 25, 51,102,140,166, 97,252, 0, 32,128,134, 97, 5,112,248,240, 97, 91, 91,219,
+193,239, 78, 72,182,233,237,237,133,139, 20, 23, 23, 51, 16,125, 25, 36,144,252,183, 82, 16,209,149, 11,159, 72, 7,189, 35, 10,
+124,253,250,117,211,166, 77,152, 77,254,231,207,159,175, 89,179,198,213,213, 85, 70,134,112,175, 28,249,168, 3,146, 78, 53,128,
+151,254,100,212, 1,148,236, 22, 36, 67, 47,228, 28,127, 60,206, 3,246,126, 32,135,252,144, 84, 7, 16,212,133,191,244,255,247,
+239,223,172, 89,179,150, 46, 93, 26, 29, 29, 61,154,152,113, 1,128, 0, 26,134, 67, 64, 75,112, 28,102, 55,216, 74,127, 96,187,
+ 27,185,244,135, 84, 6, 64, 65, 98, 46,131, 92,144,203,141, 92,130, 67, 10,116,160, 32, 77,245,126,252,248, 49, 51, 51, 19,126,
+ 11,205,139, 23, 47,128, 90, 90, 91, 91,155,155,155,171,170,170, 32,231,245,227, 2,108, 31,191,234,102,206,231,217,127, 31,194,
+253,243,226,207,213,244, 31,151, 90,217,142, 52, 11,110,174,146, 63,183, 75,122, 16,198, 17,176, 0, 66, 46,253,207,156, 57, 19,
+ 21, 21, 5,239, 25, 0,101,191, 17, 58, 62,143, 1,227,156,125, 50, 74,127, 8,128,176,137, 28, 11,194,122,164, 51, 73, 86,147,
+164, 23,114,142, 63, 68,229, 30, 48, 64, 11, 70,252, 55,124,193,245, 98,234, 34, 99,236, 11, 94,250, 3,155, 83,192,210,255,200,
+145, 35,163,165, 60, 30, 0, 16, 64,195,173, 2, 0, 54,255,129,109,165, 65, 30,235,215,174, 93, 3,146,114,114,114,240,134, 63,
+164,237, 15, 23,132, 40,192,163, 55,206,134, 13,214,120,127, 15, 68, 16, 54, 68,144, 70,122,129,224,228,201,147, 28, 28, 28,199,
+143, 31, 71,164, 30, 38,166,234,234,234,218,218,218,248,248,248,173, 91,183,226,209, 43,113,242,218,127, 14, 86,174,227,143,224,
+ 34,140, 76,255,245,170,127,217,212,190, 55,143,127,117,122,235,160,171, 0, 30, 63,126,252,242,229, 75, 60, 10,126,253,250,117,
+249,242,101,218,117, 13, 33,173,126, 8, 32,178, 14, 64,158, 48, 72, 71, 5, 12,132,166, 19, 40,209, 11,175, 3,222,189,115,153,
+ 57,243, 61, 73,165, 63,214,250, 3,174,139,212, 94, 41,176,244,239,235,235, 3,134, 24, 48,101, 2, 43,108, 96,105, 48, 90,196,
+227, 7, 0, 1,196,132,191, 48, 37, 35, 4,129,133, 8,114,234,193, 95,166, 96,181, 20,162,145,188,200, 3, 54,255,103,204,152,
+ 70,118, 39,128, 62, 41,102,226,196,137,240,182, 63,176,232,239, 5, 3,120, 29, 0,100, 35, 15,208, 99,234,133,183,223,129,197,
+247,237,109,177, 64, 4, 47,199,129, 82,196,235,133,180, 73,137,212, 11, 44,125,142, 29, 59, 6,236, 77, 63,122,244,232,249,243,
+231,104, 82, 15, 31, 62,148,148,148,100,192,173, 89,242,216,149, 39,209,214,108,143, 62, 50, 62,135,183,154, 33, 87,185, 49,188,
+123,200, 46, 36,249,125,176,101, 12,200,245,106,248,193,253,251,247,113, 73,221,187,119, 15, 79, 81,139,124, 6, 50,254,182, 63,
+218,189,114,248,235, 0,228, 27,184,102,162, 2, 6, 66,247,115, 33,203,254, 95, 37,136,140, 24, 72,188,219, 11, 82,238,147, 84,
+142, 35,215, 31, 64, 68, 94,233, 15,236,158, 78,152, 48, 1,216,246, 47, 40, 40, 0,214, 1,144,182,224,244,233,211, 71, 75,121,
+ 60, 0, 32,128, 88,240, 20,133, 75,151, 46,135, 36, 56,226,135,212, 33, 73, 51, 38, 38, 6,162, 5,104, 8,164, 76, 33, 50, 46,
+129,234,151, 44, 89, 2,212, 14, 46,202,151,144,100, 53,188,249, 15,201, 39,100,204, 4, 64,108, 39,213, 82, 74, 0,164,244,135,
+151,251,200, 92,194, 85, 55,184,244,135,176, 65,117,128,215, 98,180,129, 29,252,122,225, 49, 2,174, 3,210, 9,234, 5, 22,241,
+192, 54,175,177,177, 49,176,119, 5,236, 4, 4, 5, 5,129,234,140,127,255,218,219,219,191,124,249,194,202,202, 10,204,126,184,
+244, 10, 61,124,202,244,235,207, 7, 99, 5,214, 35,207, 88,142,191,252, 29,164, 8,138,163,127,255, 47,181,179,189,251,194,251,
+157,149,199, 53,243,246, 96,203, 24, 64, 79,193, 71,126,224,130, 69, 96,192, 0,187, 18, 7,174, 6,179,248,195,223,236,237,236,
+236, 4,150,119,152, 3,220,152, 37, 59,188,249,143,169,114, 16,158,226,149,158, 46,136, 84,163,128, 26, 22,192, 96, 32,251,158,
+ 15, 82,219,254,192, 92, 15,191, 27,210,198,198, 6,152,157, 71, 75,127,130, 0, 32,128, 88,112, 23,133,203,102,206, 4, 5, 95,
+ 70, 70, 22,145,101, 34,100, 92, 27,121, 61,137, 45, 24, 64,250, 4, 4, 99, 20, 94,250,195,237, 34,181, 56, 6,186, 57, 38, 38,
+ 10, 92, 3, 69, 1,217,164, 86, 30, 64,235,224,247, 25, 12,137,105,100,122,130,163, 71,143,154,155,155, 3,203, 35, 32,185, 97,
+195,134,128,128, 0,200, 16, 80,101,101, 37, 3,248,234,133,229,203,151, 3,165, 76, 77, 77, 49,245,202, 31, 61,243,194, 92, 19,
+ 88,152,125, 53,151,101,222,240,252,119,128, 34,120, 8,136, 65,175,242, 23, 80,235,215,183, 31,247, 45, 87,145, 55,255,162,103,
+250,100,240,248, 23, 88,165, 65, 24,125,125,125,240,210, 31,206,134, 0, 54, 54, 54, 92,109, 32,252,108,112,201, 8, 2,152,133,
+ 56,242,157, 42,184,174,149,198,122,113,227,128, 3, 96,125,134,185,212, 21, 50,182, 67, 42, 32, 67, 23,228,204,112, 22, 22,150,
+194,194, 66, 96,157, 61, 58,244, 79, 36, 0, 8, 32,236, 21, 0,176,237, 15, 41, 73,129, 32, 58, 58, 18,200, 37, 88, 32, 66,134,
+122,176,174, 38,132, 8, 2, 21,224, 95,107,136, 86,250, 67, 24, 64, 65, 34,203, 98, 96,148, 3,139, 39,136, 98, 32, 9,172, 0,
+136,239, 4,192, 75,127,228,220, 69,100,157, 71, 73,251, 5,185,213, 79, 82,243, 31, 50, 98, 3,108,245, 67, 58, 1,170,164, 52,
+255,161,122,195,211,225,119, 63, 17,212,251,251,247,111, 96,166,226,229,229,189,116,233,210,223,191,127, 63,125,250,116,253,250,
+117, 97, 97, 97,184, 2, 32,219,219,219,123,218,180,105,152, 21, 0,243,239,223,178,103, 46,179,241, 74,179, 94,122,251,241, 47,
+239,231, 79,108,127,175,127, 97, 16,230,128, 43,224, 22,254, 99,234,253,100,225, 52,219, 65, 85, 1,136,136,136, 64, 6,106,150,
+ 45, 91, 6,175, 0,144,185,160,158,141,144, 16,214,168,199, 28,250,192,188,100, 17,210, 3, 64,219,176, 67,210, 90, 29, 90,220,
+112, 71, 57,128, 52,252,129, 93, 1,228,222, 0,241, 29, 8, 96,184,145, 81,250, 47, 93,186,244,208,161, 67,255, 87, 9, 50,134,
+189,239,239,239, 7, 86,156,192,166,201,232, 26, 80, 98, 0, 64, 0,177, 96, 45, 13,129, 33,136, 92, 16, 3, 43, 0, 96,241, 10,
+236, 85,225, 49,104,226,196,137,144,161, 27,172, 0, 40, 5, 84,128, 39,125, 67, 6,223,209,202, 92,112, 57,190,132,152,114, 28,
+185,203, 2, 1,177,177,209,139, 23, 47, 37,166, 28, 71, 46,253,209, 90, 88, 4,245,226,241, 50, 30, 0,236, 39,193,139,123,248,
+232, 63,242,172, 0, 80, 1, 30,189, 76,225,208,161,124, 72, 29,192,128,180,166,147, 41,252, 61, 9,122,195,211,137,212,123,225,
+194, 5, 57, 57, 57, 96,219, 10,194, 93,180,104,209,241,227,199,125,124,124,144,213,188,124,249,146,131,131, 3, 83,175,194,133,
+ 11, 31,228, 36, 79, 22, 38, 65, 91,205,139,110,255, 61,254,145,201, 7, 69,229,199,151,156,236, 28,191, 7, 85,198, 80, 85, 85,
+ 61,119,238, 28,124, 72, 1, 43,192,213,160, 1,150,236, 74, 74, 74,120,238,186, 42, 47, 47, 39,114, 67, 0,242, 16, 16,174, 14,
+193,224, 4,164,174,224, 68,190, 12,146, 36,189,203,150, 45, 61,112,224, 0,227, 26, 80,115,100, 87, 13,175, 91,203,103, 59, 59,
+187,209,165,159, 68, 2,128, 0, 98,193, 44, 13,145,155,255,240, 78, 0,176, 48, 69,174, 21,176, 2, 60,178,144,162,156, 96,243,
+ 31,107, 9, 75,176, 19, 0,113, 51,114,233, 15, 25, 4, 4, 58, 24, 40, 14,204, 66,120,170, 46,204,210,159,164, 58,128,188,145,
+ 34, 72,193,241,232,209, 35,200,154, 31,228,134, 63, 80, 16, 79,201, 2,151, 90,116,228, 23,100,221, 14,114,227, 29, 40, 72, 35,
+189,192,226, 30,217,167,246,246,246,221,221,221,206,206,206,255,254,253,107,107,107, 3,146,223,191,127, 7,134, 51,214, 24, 84,
+ 63,126,252,146,173, 3,156,251,199, 94,242,111,247, 99, 6,103,177,255,255, 24, 46,181,177,126,249,199,243,238, 59,223, 59, 70,
+ 33,191,152,139,131, 42, 99,112,115,115, 27, 27, 27,159, 60,121, 18, 46,210,215,215,135,220,252,151,151,151,199, 83,136, 3,165,
+240, 79,183,146, 82, 52,174, 2,145,123,194,136,233,143,194,211, 45,214,213,156,120,238,107, 68,214, 11,108, 71,147,164, 23,179,
+ 21, 15,185,195,153, 14, 0,232, 36,208, 52, 53,164,244,191,244,103,254,254, 95,224,242,106,180,244, 39, 22, 0, 4, 16, 74, 5,
+144,145,145, 5,186,213, 54, 38, 10,179, 37, 14, 25, 23, 2,162, 25, 51,166,209,200, 41, 88, 11, 83,130, 53, 7,220,205,184, 12,
+ 4, 86, 93, 64,132, 86, 61, 32, 87, 60,120, 50, 42, 48,121,209,104, 50, 0,158,217,200,216, 8, 6, 84,144,144,158,158, 48,249,
+ 43,234,102,174,247,180,211, 11,190,158,158, 1,185,236,155, 50,101, 10,145,101,217, 54, 84,189,255,228,121, 56,167,104, 2, 25,
+218, 51, 89, 25, 24,128,173,254,247, 96,244,112, 16,230, 13,125,125,125, 22, 22,150, 83,167, 78,253,254,253, 27,109,240, 7, 88,
+ 83, 90, 88, 88, 16, 89, 66, 33, 51,232,112, 91, 28,214,146, 26, 46, 66,112, 21, 16, 25,122, 49, 91,241, 36,109,120,166,164,244,
+ 7, 38, 99, 96,185, 15,100, 47,216,255,107,197,177, 95,192,162, 96,116, 63, 35, 73, 0, 32,128, 80, 42, 0, 60,133, 59,100, 58,
+151, 96,226, 35, 91, 1,217, 55,217,226,175,144, 40,116, 54,173,179,235,181,107,215,224,171, 63, 25, 72, 57,146, 1,162, 23,178,
+131,151,158,122, 71, 26,208,214,214, 6,246,210,206,158, 61,251,244,233,211,175, 95,191,178,177,177, 73, 74, 74,234,233,233,225,
+ 91,243,138, 49,218, 3, 31, 11, 2,178,233,227,108, 58,239, 4, 30, 88,224,222,242,121,168, 56,117, 16, 2,128, 0, 26, 61, 11,
+104, 32, 1,176,216, 37, 59,201, 14,148,222,145, 6,120,121,121,201,184,200, 30,121, 44, 8,114, 82, 2,144, 36,190, 93,140,178,
+250, 19, 54,248,131,107, 73, 40,174,241, 28,252, 34,180,208, 75,139,170, 11, 63, 0,118, 94,129,193,226,231,159, 6,237,110,110,
+ 63, 7, 97,120,121, 26,141, 38, 93, 98, 0, 64, 0,141, 86, 0,163, 96, 20,208, 22,184,184,184, 0, 43, 0,226, 39, 54, 41, 47,
+109, 7,182, 7, 64,223,218,226, 63,100, 71,225, 40, 32, 15, 0, 4,208,232,165,240, 35, 17,112,254,188,241,157, 93, 99, 52, 28,
+ 70,193, 40, 24,225, 0, 32,128, 70,239, 3, 24,137, 96,180,244, 31, 5,163, 96, 20, 0, 1, 64, 0,141, 86, 0,163, 96, 20,140,
+130, 81, 48, 66, 1, 64, 0,141, 86, 0,163, 96, 20,140,130, 81, 48, 66, 1, 64, 0,141, 86, 0,163, 96, 20,140,130, 81, 48, 66,
+ 1, 64, 0,209,228, 82,248,251, 87,143, 51, 48,253,144,148,145,254,252,253,235,251,183, 95,213, 52,109,136,215,123,228,220, 93,
+134,127,236, 47,159, 62,229,230,228, 22, 20,226, 54, 55, 81, 36, 94, 47, 37,110,254,247,102, 10, 47,207,119, 78,110,102, 22,102,
+ 38, 70, 14,198,231,159,242,137,215,251,137, 55, 72, 80, 88,144,159,135,153,129,133,225,221,133, 89,248,237,229,148,190, 65,188,
+155,191, 63, 69, 25,172,151,226,122, 73,188,222,103,223,196, 81,244,254, 36,193,222,103,168,147, 4,210,191, 72,184, 94,245, 41,
+155,250, 96,208,171,141, 45,156, 59, 59, 87,151,151, 99, 57,106,230, 42,106, 56,115,202,252, 34, 33,142,158,160, 28, 9,231, 43,
+ 77, 66, 28,109,126,138, 18, 71, 63,126,114, 19,175,151,131,253, 43,138, 81,126, 83,136,215,235,187, 41, 7,153, 91,252,130,132,
+ 99,115,122, 37, 50,104,148, 7, 71,245,210, 72, 47, 30, 0, 16, 64,248,150,129,166, 30, 40, 98,116,140,159,245, 95,159, 24,131,
+238, 93,217,197,200,240,143,135,157,115,254,204,101, 11, 23, 78,180,118,177,254,243,245,155,150,134,221,191,127, 12,217,101,127,
+181,180,212,239,220,121,248,227,251, 31, 94, 73,107, 76,189, 71,207,191,250,207,192,248,229,231,247,244,162,150,198, 73,238,207,
+174,158, 5, 38,239,109, 23,159, 48, 49, 49, 76,108,168,185,117,235,166,130,130, 60, 59, 39,139,176, 32, 59, 22,123,215, 77, 99,
+ 99, 99,227,228,228,228,225,225, 17, 17,224, 16,101,229, 21,149,228,230,103,231, 21, 96, 99, 98, 97, 97,249,255,239,239, 39,102,
+134, 79,175, 62, 29,230,213,197,229,242,143,119,167,242,114,126,228, 19, 96,227,225,102,101,227,100, 98, 97,102, 96, 98, 99, 81,
+151,158,253,251, 63,243,189,103, 73,248,125,189,255,145,178,136,136,136, 56,207,143,239, 63,126, 50,177,115, 50,252,102,248, 35,
+ 23,243,225,253, 59,145,207,219,104, 87,105,207,154, 53, 43, 45, 45,109,180,241, 66, 16,224, 42,238, 73, 85, 3, 4, 18,156, 92,
+ 79,159, 62,101,229, 96,255,199,197, 69, 79, 47,124,123,119,225,216,222, 21,200, 34, 46,161, 29,131, 51,180, 23, 47, 90,196,206,
+198,246,239,223, 63,110, 30, 30, 95, 63,191,209,228, 55, 36, 0, 64, 0, 17,216, 7,240,127,239,194, 52,103,194,117, 64,168,159,
+202, 79, 39,161,223, 95, 62,176,252,101, 50,211,147,137,143,135, 54,159,129, 37,248,137,227, 11, 68,228,164,255,125,249,100,111,
+174,251,236,217,251, 61,231,209, 79,215, 74, 79,111, 99, 96,227,103,228,226,251,207,252,255,226,181,196,121, 43,118, 66,155,228,
+255, 24, 60, 44, 45, 25,190,188, 96, 96,224,189,123,249, 58,171,136,128,181,133, 14,143,128, 24, 22,235, 25,153,128,136,241, 63,
+ 51,235, 47,160, 49,127,152,153,153, 89,153,153,217, 88, 65,228,239,191, 12,140,127,254,129,220,129, 3,188,184,216, 34,196,207,
+192,199,197, 37, 42, 34,204,199,199,245,159,233,239,159,127, 95,254, 50,252,229,225,225, 18,145,144, 81, 82, 61,178,231, 32,246,
+115,132,102,236,254,197,207,203,205, 47,240,249,199, 55,182,175, 95, 57,216,216, 57, 88,127,252, 5,181, 7,191,253,248,250,237,
+251,163,247, 58,175,222,188,251,244,250, 73,152, 21,118,171, 87,119, 18,186, 38, 41,193, 69, 80, 92, 16,107,233, 79,197, 58,160,
+170,187, 27, 72,182,149,150,146,161,183,178,171, 11, 72,182,151,149, 17,175,229,202,211,167,183,110,221, 2, 50,130, 28, 29,137,
+212, 50,115, 21,232, 36, 28,228, 91,177,128,108, 8,201, 0, 59, 31, 13,200, 78,195,118,132, 36,176,100,199, 95,190, 19, 83,250,
+ 43, 10, 10,125,255,245, 19,200, 96,227,228,248,245,253,199,191,175,223,222,188,120, 46,169,171,139, 71,139,164,178, 26, 65,127,
+241,203,107,222,216,183,145,160, 50, 96,233,111,227, 18,193, 33,104, 64, 84, 96,133,190, 35,168, 36, 44, 44,108, 85,232, 30,172,
+ 82,142,123, 94,195,217, 90, 2,160,146,225,213,143,127,223,255,128, 66,248, 43,152,156,105, 46,160,198,203,138, 85,111, 79, 79,
+ 79, 85, 65,137,127, 80,224,143, 31,223, 39,246,247, 77,153, 50, 37, 39, 39,135,194,196,121,231,206,157,110,112,250, 36,184,177,
+224,248,241,227, 15, 30, 60,120,251,246,237,231,207,159,121,121,121,133,133,133, 21, 20, 20, 44,129,165,199, 40, 0,131, 45, 75,
+154,225,108,180,117,255, 0, 1,132,175, 2,152,237,208, 23,124,162,245,223,177,173,105, 86, 12,248,235,128,159, 95,222, 73,168,
+ 56,183,148, 6, 45,152,121, 0, 34,114,240,216,140,175,223,126,122,185,228, 91, 89, 39, 68,132, 57,113,114,178,255,250,251,231,
+243,183, 95,106, 22,152,135,246, 60,100,248,197, 16, 20, 61, 61,181, 8,218,181,244,176,114,224,224, 96,223,176,111,231,182,163,
+199, 23,205,159,246,227,251, 79, 54,102, 22, 30, 46, 54, 62,182,191,119, 30,189, 64,175,162,128, 69,192,255,127, 32,196,244, 15,
+200,254,249,139,157, 1, 88,197,176, 51,252,255,245,247, 47, 51, 3,176, 40,255,251,235,223,159,191,255,176, 58,251,238,169,118,
+ 25,209,255,124,188,220,210, 50,138, 26,186, 42,188, 60,156, 31,191,188,126,241,250,197,251,143, 47,127,255, 96,228, 2,214, 10,
+162,214,193,129,151,215,174, 87, 71,211, 56,125,233,227,191,188,188,223, 89, 24,216, 56,216,190,127, 99,251,245,141,237, 7, 7,
+ 59, 11, 35, 48,151, 48,255,248,254,229,251,183,207,223,191,127,253,254,233,227,231, 23, 15, 39, 76,120,172,108,140,125,255,103,
+247,162,110, 92,225, 89, 26,135,189, 68,126,255,254, 61, 50, 91, 72, 72, 8, 82, 26, 10, 10, 10,222,189,123,119,245,234,213, 36,
+213, 10,108,226,208,241, 7,160,161,130,228,166,173, 89,171, 87,103,103,103,255,126,245,138,152,210, 95, 76, 76, 44,200,205,237,
+ 55, 59,123,111,111,111,176,147, 19, 49,199, 91, 2, 61,216,211,208, 0, 29,169,168,175,239,109,108,196,202,198,165, 29,185, 14,
+ 0, 50,140,141,141,247,236,185,231,226,162, 68,100,233,175, 33, 33, 41,192,199, 7, 73,102,220, 28,156,207, 95,191,250,244,254,
+ 3,143,128,224,195,211,103,228, 77, 77,240,104,244, 75, 43,137, 9,246, 85, 85, 80,128,112,235,123, 39,195,165, 26,139,115,129,
+228,163,237,123,205,212,100,137, 26,234, 33,178,244,135,182, 44,132, 8,169, 32,188, 31,141,155,133,241, 98, 99, 50, 35,159,200,
+223,123, 23,127,222,187,122,235,221, 87,147,237,248,226,119,198,204,153, 69,233,217,113, 41, 73,171,151,174, 0,150,188, 45,157,
+ 93,188, 13, 45,240, 75, 35, 40, 41,250, 65,121, 1,111,235, 4, 88,226,239,218,181,235,247,239,223,202,202,202,182,182,182,252,
+252,252, 31, 62,124,120,246,236,217,253,251,247,129,164,155,155, 27,176, 62, 24, 45,253,209,184,200,117, 0, 64, 0,161, 87, 0,
+105,183, 97, 71,235,128,119,216,253,255,247,133,225,215,207,223, 7,150,165, 57, 48, 16,234, 7,176,105,105,170, 51, 49, 29,184,
+245,225, 45, 3,195,245,143, 79,111, 3,251,203, 27,183, 78,250,246,230,111,116, 98, 33,176, 57,239,231,107,249,151,133, 7,151,
+230, 91,183,174, 3,213,120,233, 3,155,117, 82, 12, 12,242, 63,126,254, 10,241,112,227, 16, 96, 90,180,108, 7,176,249,190,102,
+197, 2,230, 63,159, 53,229,217,239, 60, 66,215,248,239, 63,232, 94, 42, 32,248,251,247,239, 79,214,255,191, 25,127,255,250,245,
+235, 27,215, 15,134,127, 28, 76,255,255,254,101,251,255,229,215,143, 95,223,191, 49,240, 97,177, 84,148,231, 39, 11, 11, 39,176,
+189,160,162,162, 34, 46, 97,206,192,204,244,247,239, 89,166,255, 31,126,124, 5, 86, 25, 95, 95, 60,123, 39, 42,252, 70, 88,192,
+ 90, 82,118, 49, 3, 3, 74,139,143,243,199,159,255, 63,223, 48,252, 96,255,197,244,251, 43, 27,203, 23, 78, 86, 22, 86, 54,134,
+127,220,140,204,140, 95,190,126,123,255,226,225,221,179, 71,223, 61,122, 4,116, 21,211,127,102, 34,227,105,222,244,121, 16, 70,
+ 82, 38,206,113, 39,228,123,166,128,236,162,162,162, 71,143, 30, 1,139, 72,242,246, 94, 78,157, 58,245,229,203,151,107,214,172,
+241,182,179, 19, 20, 19, 35, 85, 59,176,237,255, 30, 92, 50, 66, 14,134, 75, 15, 35,112, 92, 37,176,237, 15, 44,253, 25,192,247,
+168,168,169,169,173,221,183,143,152,174, 0,229,103, 32, 3, 75,121, 96,161, 15,185, 48, 4, 78,134,134,134, 18, 44,253,213,196,
+196,129,165, 63, 51, 19, 83, 86, 76,244,247, 31, 63,123,231,206,229,226,228,252, 1, 4,223,191, 51,177, 48, 63, 62,127, 94,214,
+208, 16,151, 94, 72, 41,127, 27,118,175, 36,132, 75, 6, 48,119,138,216,179,186,194,213, 47,249, 63,187, 42,145, 90,224,103,121,
+ 66,110,115,196, 42,130, 11, 0, 27,254, 15,191,252, 61,232, 42,202,154, 63,243, 83,180, 34,139,160, 24,193,210,127,239,222,189,
+ 10,146, 82, 41, 89, 25, 21,133,101, 83,230,207, 48, 51, 50,154, 49,121, 70, 65, 89,201, 82, 75,243,203,151, 47,235,226,237, 42,
+225, 47,250,129, 38, 3,185,248,213, 3, 75,127, 81, 81, 81, 67, 67, 67, 38,112, 47, 31,152,227, 88, 89, 89,129, 13, 35, 9, 9,
+ 9, 96, 29, 0,148, 13, 14, 14, 30, 45,253,211,202,161,195,134,179, 58, 43,208,234, 0,128, 0, 66,169, 0, 82,143, 85,126, 99,
+230,248,247,247,223, 63, 70,102,222,255,223, 25,128,205, 96, 6,102, 6,105, 53,214, 95, 95,255,239,153,151,230,146,132,183, 14,
+248,199,204, 12, 41,236,128,101,173, 12,191,180,250,195,155,107,166,207,156,207,244,147,203,205,209,122,199,222,163,223,190, 49,
+112, 9,241, 99,106,227,228, 82,255,254,237, 38,176,248,134,143,202, 48, 48, 60, 99, 98,118,136,139, 79,254,199,254,117,203,214,
+121,126,190, 73, 92,220, 12,223,222, 2, 19,177, 4,166,246,223, 12,204,172,224,210,255,247,159,191, 63, 63,253,254,246,251,219,
+ 7, 78,150,223,223, 88,127,178,252,102,254,205, 8, 44,200, 63,125,255,243,245,243,111, 6,113,116,141, 23,247,119, 42, 73, 48,
+ 50, 51, 51, 50, 50,177,255,253,251,255,207,183, 71, 63,255,254,126,250,226,227,187,247, 95, 62,126,254,203,244,227,199, 31,134,
+ 23,204,172, 23,164,228, 62,241,114,112, 98,218, 11,244,234,255,207, 63,190,127,126,246,247,229, 71,102,101, 25, 96,250,251,251,
+231,231,135, 23, 15,110,158, 58,254,250,225, 35,112,177,197,194, 4, 12, 93,102,106,158,225, 14,105,224,207,154, 53, 43, 36, 36,
+196,192,192,128,157,157, 29,237,142, 42, 82,155,255, 22, 58, 58,226,226,226,192, 18,220,199,222, 94,138,244, 58, 64, 16, 92,238,
+179,138,137, 1, 77, 0,146, 4,251, 1,192,182, 63,235,207,159,107,215,174, 69,238, 10, 16, 63, 28, 68, 54,128,148,251,200, 87,
+178, 0,171, 79,130, 21,192,215,111,223, 68,133,132, 18, 67, 66, 62,124,252,244,250,221, 91, 86, 86, 22, 8, 0, 22, 49,236,156,
+ 92,159,222,190,249,252,248, 9,175, 44,206,169, 57, 96,233,191,100,237,102,228, 10, 0,210, 15, 48, 55,210,243,114,180, 39,194,
+213,159, 65, 7, 17, 9, 27,184,248,113,239,222, 52,151, 62,163,255,151, 22, 78,248,185, 99,190,216,236,115,192,154,128,153, 79,
+232,207,251, 87,192,210, 31,216, 33,248,250,231, 63, 51,142, 97,212,251,119,238,108,219,180,117,225,236,133,147,230, 78,155,209,
+ 55, 65, 72, 88,168,165,173,101,209,178,165,182, 22,214,243,230,206, 11, 10, 13,178,181,182, 37,163,244,223,180,105, 19,176, 95,
+ 43, 41, 41,137,118, 1, 53,218,200, 15,176,237,111,100,100,244,231,207, 31, 96, 87,128,131,131, 3, 88, 1,220,184,113, 3,216,
+212,224,225,225, 1,246,246, 94,188,120, 1, 84, 51, 58, 22,132, 40, 64,202, 59, 32,117, 0, 28, 0, 4, 16, 74, 5, 48,219,170,
+ 29,170,142,233,242,255,125,243, 25,133, 37, 25, 82, 38,159,230,212, 52,125,188,241,223,172, 90,230, 35,203,211,108,153,102,253,
+195, 82,165,111,218,247, 46, 77,229,147,127,124,126,113, 46,176, 3,241, 14,152,112, 25, 24,126,202,171, 27,113,176,179,124,255,
+250,147,225, 23,168, 98, 0,246,197, 94,189,123,143,169,119, 66,127, 17,232,238,248, 19,115,153,152, 32,203, 24, 64,195, 53,255,
+190, 95,253,241,243, 55, 39, 15, 7, 3, 27,168, 98,248,252,233,147, 24,210,253, 83, 40, 30,248,247,235,223, 63, 22, 96, 10,248,
+249,243,231, 23, 22,102,150, 95, 76, 12,207, 63,253,225,250,243,151,237,223,127, 86,230,111,204, 44,127,190,126,251,242, 11,203,
+162, 14, 94,158,175,127,254, 48,254,252,245, 23,152,189,111,221,121,244,228,249,155,239,191,126,127,250,242,238,203,231, 15, 63,
+254,254, 98, 4, 38,250,111, 31, 63,125,187,255,240,233,199,183,159,191, 50, 48,168,160,105, 7, 58, 11,146, 35,254,124,252,250,
+228,194,245,151,215,239,127,250,124,231,243,135, 15,255, 25, 88, 88,153, 25,255, 51,178, 50, 49,129,250, 80, 4,143, 41, 41,141,
+ 43,197, 51, 22,132,197,191, 44,208, 40, 3,102, 15, 96,141,139,124,216, 36,169,205,127, 96, 45, 2, 26,227, 22, 21, 37,254,148,
+ 49,236,197, 58,184,220, 7,214, 1,120, 58, 1, 87,158, 62,101, 0,159,125, 13,108,145, 65,250, 1,160,226,230,210, 37, 32,185,
+110,255,126,252,117, 64,113,125, 61,100,164, 11,200, 46,105,104,128,247, 9,240,140,252, 32, 3, 96,243, 31,109, 28, 25,114,232,
+ 49,124, 44, 8, 43, 16, 96, 97,249,241,235, 39, 48,132,111,220,187, 11,180,241,218,173,219,191,126,253,102, 98, 96, 4,134, 63,
+208, 49,192, 22,199,247,175,223,118,175, 90, 25,132,116,152, 43, 26,128,151,254, 49,193,190,200,226, 39,207, 93, 82, 85,148,103,
+ 39,236,112,216,216, 5,187, 42,176,232, 7,246, 3,128,200, 51, 48,249, 55,139, 42, 13, 75,136,119,207,217,228,212, 94,101,115,
+176, 59, 69,254, 61,179,227,239, 39,208,164,194,171,108, 43,249,153,199,255,254,195,222,148, 81, 87, 85,231,226,226,158, 52,103,
+170,163,189,189,185,165,197,174,109, 59,111,220,185, 5,236,152,115,176,179, 91, 27, 91,111,221,180,245,205,171, 55,129,129,129,
+196, 23,253,192,102, 59,228, 46,182, 83,167, 78,101,100,100,224,233,221, 62,120,240, 64, 89, 89, 25,194,184,120,241,162,188,188,
+188,162,162,226,251,247,239,207,156, 57,163,164,164, 4,108,100, 0, 69,128, 82,163, 21, 0, 30, 0, 16, 64, 88,230, 0,210, 24,
+ 47,254, 63,184,140,145,153,133, 33,119,110,254, 3,201, 73,125, 11,129,133,229,244,218,155,169,109,234,204,123,102,165,201,106,
+206, 82,205, 2,182,185,153,152, 80, 6, 55, 84,248,100,174, 92, 90, 7,102, 2, 11,198,175,224,163,222,127, 51,252,254,201,242,
+ 15,216,116, 0,149,233,235, 55,236, 2,146,214,158, 88,202,136, 29,151,255,123, 24,234,192,187,176,192, 82,142,129,129,149,129,
+149,227, 15,227,223,127,224,147,158,194,163, 65,103,202, 63, 60, 54, 11, 83, 47, 48, 93,254,249,199,196,244,231, 15,211,175,159,
+223,192,221,192,239,204,204,220,127,190,127,250, 14, 44,132, 25,129, 61,131,111,127, 25,190,253,250,131,233,207, 63,191,254,253,
+ 96,101,254,247,237,207,159,127, 31, 63,127,249,205,204,200,250,243,207,239, 95,255,127, 1, 9, 6,182,127, 76,140, 12,140,236,
+255, 62,126,255,251,226,245,183,175, 63,209, 39,174,153, 24,161, 29, 22, 96,185, 4, 57,139,234,247,143,239, 31,223,189, 99, 2,
+134, 26,203,127,134,255, 44,204,140, 12,196,183,252,111, 62,188,169, 46,175,142,103,228, 7,121, 64,156,147,147, 19, 94, 19, 0,
+243, 9,164,244, 7, 86, 3,252,252,252, 31, 63,126,252, 0,172,129,136, 24, 51,129, 52,255,129,221,100, 8, 55, 39, 39,103,242,
+228,201,228,117, 2,224, 38, 64, 6,130,240,143,254, 51,242,242, 2, 29, 92, 86, 86, 6,108, 68,255,126,255, 30,232,230,138,156,
+ 28,130,253, 0,228,177,126, 92,243, 1,152,186, 58, 9, 77,179,159, 5, 3, 8, 27,243, 68,172,247,239,222,241,240,242,190,121,
+255,126,255,201,147, 44, 76,204, 63,127,255,254,246,253, 59,176,129, 9,169,138,128,137,228,215,207,159,248,131, 26,115,216, 7,
+ 40, 2,233, 4,168, 42, 40, 60,186,119,135,164, 16, 6,214, 1, 95, 95,159,220,190,126, 46, 25,253, 0,130, 35, 63,112,112, 97,
+213,108,131,248, 66,118, 69, 61, 80, 6,121,243,252,214, 59,208, 74, 83,118, 75,159, 71,127,255,112, 77, 57,137, 85,203,167, 79,
+159,216, 57, 57, 84, 20, 21,239, 63,121,252,246,245,219,240,152,232,109,123,119, 79,236,232, 93,191,109,147,170,162,106, 92,112,
+236,241,115, 71,215,175, 93, 27,136,123, 40, 6, 94,250, 3,139,126, 87, 87, 87, 72, 13,253,236,217, 51, 96,233,143,223,181,111,
+223,190,181,181,181, 5,230,113, 96, 41,127,244,232, 81, 45, 45, 45, 96,138,146,149,149, 5,118,142,153,192, 0,216,129,128, 71,
+241, 40,192, 10, 0, 2,136, 5, 75,233,191,111, 1, 3, 59, 59,131,144,220, 55, 89,243, 73, 45, 51, 24,254,126,101,120,241,169,
+102,249,193, 12,255, 12,134, 61, 11, 31,189,120,205,160,202,240,239,239, 31,180, 10,224,206,167, 79,106, 2,124,127,126, 50,220,
+ 57,176, 68,197,193, 29, 60, 70,194,240,251,215,111, 86, 6,166, 47, 63, 64,139, 40, 60, 28,140, 56,133,165,177, 58,194, 67,151,
+113,219,197,255,172,192,230,190,156,251,175, 71,135, 33,157, 0, 86, 54,246,223, 12, 63,120, 56, 65,119, 7,110,218,182,252,251,
+219,199, 22,202, 2, 88, 6,158,254,253, 99,251,245,253, 55, 3, 27,176, 18, 96,248, 1,202,162,192, 94,225, 79, 96,209,206,194,
+202,240,131,225,255, 63,208,208, 16, 80, 4, 51, 7,124,251,241,143,153,153,241,247,159,223, 63,126,254,251,244,249, 7,200,181,
+255,254,255,250,249, 15, 88,251, 48, 3,117,115, 48, 48,126,255,251, 15,180,132,232,251,231,239,248, 66, 16,212, 21,248,199,240,
+159,145,129,137, 9, 88, 58, 48,255,251,207, 8,100,128,106,193,127, 76,192,138,137,241, 31, 51,254,230, 63,169, 17,198, 5, 91,
+134,136, 92,250, 3,219, 59,192, 46, 48,176, 27, 4,111, 41, 19,211,252, 87, 16, 17,129,112,129, 12, 10, 59, 1, 68,142,254,255,
+255,252,185,182,182,246,231,219,183,144,235, 31, 85,192, 53, 16,235,207,159,190,190,190, 79, 95,189,146,166,234, 10, 75,248, 8,
+ 15,124, 2, 0, 13, 24, 27, 27,195,123, 0, 87,159, 98,180, 15,126,254,250,240,235,221,143, 31, 63, 4,248,249, 57,128, 73,241,
+239, 31, 96,192, 2,203,154, 95,192,142,192,239,223,255,254,252,197, 31,206,183, 31, 60,128,207, 0, 35,143, 5, 33,207, 12,147,
+ 10,184, 69,205,129,237, 40, 50, 52, 18, 63, 7, 96,191,251,245, 43,133, 53,192, 78, 0,163,162,158,252,252,243,111,126,252,227,
+102, 97,252,117,100,195,205,123,247,113, 37,144,239,127,126,157, 61,126,106, 66, 79,191,149,131, 77, 77, 83,195,206,237, 59,151,
+ 46, 90,108,105,103, 35,171, 32,199,194,197,186,247,240,222,101, 11, 23,175,219,176,118,235,214,173,222,222,222,152,218, 33,247,
+228,192,139,126, 8, 0,182, 99,136,241, 23, 48,205, 3, 75,124, 80, 2, 86, 80, 0,198, 38,176,187, 6,204,254,192, 86, 63, 59,
+ 59, 59,176, 49, 4, 20,228,229,229, 5,170, 25,201,229, 59,176,101,179,101, 73, 51,218,176, 15, 50, 0, 8, 32,148,129, 61,208,
+200,207,225,165, 12,156, 28, 15, 62,253, 98,248,254,145,253,223, 55, 61, 29, 37,134,183,223, 24,126,253,113,208, 87, 3, 45,204,
+252,253,131,153, 17, 60, 68,243,239, 47,134, 81, 31,110,125,120,196,194,206,224,225, 87,184,108, 18,176,145,242,139,225,219,207,
+191,223, 25, 54,236,191,176,231, 52,232,190,120, 25, 57, 69,208, 26,123, 28,192, 75,159,241,247, 15,134, 77, 91,119,152,184,229,
+130,154,255, 12,172,204,156, 12, 97, 62,161, 94,118,254, 64,217, 39, 15,239,254,255,253, 23,123,235, 6,216, 28, 3, 77, 86,255,
+253,249, 11, 52,253,251,243,199,247,111,223,190,125,249,242,229,243,167,143,192,184,255,244,249,203,143, 47, 95,190,127,199, 82,
+132,127,254,194,248,253,199, 95, 32,250,250,237,247,231, 47, 63,223,127,254,249,225,211,175,143,159,127,127,248, 0, 34,223,189,
+253,243,238,253,159,119, 31,255,188,121,247,235,229, 27, 44, 35, 72, 76,192,226, 0,152,181,254, 50, 50, 50, 1,203,252,255, 32,
+119,252,103,254,251, 15, 26,158,255,192,217,133,152,249, 95, 77, 75,205,163,219,142,238,220,183, 19, 82, 31, 0,123, 3,120, 20,
+ 3,147, 56, 11, 44, 12,187,192,171, 48, 43, 42, 42, 32,167,204, 35, 47,139, 36,166,249, 47, 46,142, 50, 43,146,157,157,189,245,
+208,161,103, 68, 44,230,193, 10,128,205,127,252, 85, 8,176,153, 15, 97,172, 92,185,242,206, 11,208, 82,174, 45, 7, 14,192, 5,
+111,222,188, 41, 42, 42, 74,163, 60, 0, 41,229,145,175, 72,132,176,241,140,255,128, 42, 90, 62,222,127,127,255,126,122,247,254,
+205,155, 55,111, 63,188,255,250,237, 27, 16,125,254,242,229,235,199, 79,159, 63,124, 0,166,178, 95, 63,126, 0,171, 1, 92,218,
+145, 75,121,120,233, 15, 97, 35,175, 8,194, 15,190,188, 62,185,103, 53, 34,235,126,123,119,129,214,229,197,243,112, 5, 96,185,
+ 15, 44,253,127, 30, 92,243, 48,209, 16, 88,250, 31,118, 21,253,243,241,181,201,142, 87, 44, 56,162, 23,216,146, 72,205,207,188,
+115,243,230,241, 3,135,249,121,249, 35,195, 35, 5,132,133,206,157, 58,195,195,198,193,205,205, 45,169, 32,181,124,197,242,138,
+234,170, 47,196,149,233, 16, 96,100, 68,212,105,254,192,242, 29, 88,208, 3, 91,250,192, 86,191,153,153,153,182,182,182,136,136,
+ 8, 7, 7, 7,176,232,215,215,215, 23, 16, 16,128,172, 10, 29,225,109,124,228,222, 45,102, 79, 23, 32,128, 16, 61,128,180, 91,
+211,254,191,126,240,131,149, 99,207, 43, 46, 96, 92, 43,124,120,206,188,174,101,123,122,115,183,150,138,164, 32, 71,174, 6, 39,
+195,212,243,255,127,255,122,204, 12, 30, 55,192, 82,206,240, 0, 83, 44,144,186,120,105,179,190,129,111, 93,205,162,141,235,250,
+118,237,191,238,104,169,205,194,194,190,251,240,185,255,204, 44,191,254,254,197,239, 86, 15, 67,141, 29,103,111, 48,244,118,132,
+248,122,249,248,248,238,220,183, 30,216, 64,247,118,143,100,250,251,155,149, 25,123,113, 10, 44,250,255,130, 74,218,191, 44,192,
+150,254,127, 22, 96, 19, 0,216, 16, 6, 45, 9, 0, 54,196, 25, 65,253, 3, 72, 47, 1, 75,255,241, 59, 47, 19,243,123, 54,118,
+ 38, 80,171,249,239,127, 96,107,255,223,127, 96,239, 1,216, 9, 96, 96,226,248,207,200, 12,108,205, 51,254,101, 98,252,249,247,
+255,135,175,255,249,196,177, 14,200, 32,206, 34,135,132, 7, 11,243,127, 38, 80,133,192, 12, 47, 12, 65,117, 3,238,230, 63,176,
+244,135,182, 82, 23,236, 1, 34, 32, 3, 88, 25, 48,120,225, 11,162,127,224,161,216, 53,107,214, 64,242,158,162,162, 34,196,131,
+192,102, 41,208,227, 4, 43, 0, 96,233, 15,105,254, 43, 82,175,192,101, 5, 15, 28,121,219,227,156,216,180,210,213,237,237,237,
+ 5, 54,243,129, 5, 61,176, 55, 16, 0, 62, 25, 95, 93, 93, 29, 46,248,240,225, 67, 17,118,118, 9, 88,143,132,186,115, 0, 64,
+ 0,185,146, 5,249,218, 91,130,151,214,190,127,243,145,145,225, 15,168, 69,241,242, 27, 27, 7, 7,104, 83, 33,184, 7,240,253,
+203,151,159, 95,191,130, 38,156, 62,124,240,192,125,247, 44,164,148,135,140, 2,153, 27,233,157, 60,119, 9, 46,133, 54, 37,128,
+179,121,251,250,228,201, 3,235,157,189, 34,160,149,193,199,219, 55, 47, 29, 37,163,225, 79,252,248, 15,168,175,246,238,235,163,
+ 20,211,255,247, 47,137,205, 62,247,245,207,255, 79,209,138,252,203,238,127, 74, 20, 6,150,254, 76,184, 43,248,236,156,156,218,
+142, 22, 49, 97,145,223,255,254,222,126,124, 47, 58, 50,106,209,146, 37, 27, 55,108,138,138,142,250,249,227,231,225, 51,199,190,
+127,255,146,150,144,176,247,248,113,204,117, 28,192, 24,185,115,231,142, 27,184,131,136,220, 15,120,251,246,109,105,105, 41,124,
+ 98, 0, 43, 16, 22, 22,126,246,236,153,160,160,224,140, 25, 51, 76, 77, 77, 13, 13, 13,217,216,216,128,121,255,196,137, 19,144,
+ 11, 59,129,178,194, 56,230, 14, 71,108, 29,128, 6, 0, 2, 8, 81, 1,204, 82,203,114,248, 58,243,214,147,247,207,125,193,141,
+142,147, 21,255,183, 76,151,122,121,191,223, 62,136,225,195, 59,134,182, 5,255,159,222,248,203,201,253,225, 29,168,251,206,136,
+177,181,234,224,129,141,246, 14,206, 64,198,215,127,191,239,124,120, 4, 44,145, 85,248, 20, 29, 29,245,196, 69, 36,222,126,252,
+ 4,234, 32,252,250,243,252,195, 87, 77,108,142,144,145,179,124,242,232, 56, 56,205,178,120,128, 86,130,178,236,184,252,123,231,
+150, 53, 47,223, 60, 19, 22, 0,117,241, 4,216, 88, 37, 5,176, 47, 33,253,197,192,194, 6,106,137, 49, 3, 27,221, 76,127,129,
+125,148, 63,127, 89, 89, 32,165, 63, 3,120,145, 40,104,139, 0, 54, 16, 16, 81,177, 97,113, 9, 23,219,127, 22, 86, 88, 79,226,
+ 55,195,159,255, 12, 63,126, 49,252,253, 9,108,216, 51, 50,178, 49, 2,205,253,250,147, 33, 57,161, 11,109,107, 53,124, 6,248,
+ 31, 19,176,222, 0,141,255, 64,218,224,192, 30, 0, 19, 51,168, 58, 2,202,254,103, 6,118, 11,240,117, 2,224,165, 63, 26, 27,
+ 84, 7,224, 26,110,250,251, 23, 88,244, 0,139,111, 72, 5,176, 6, 12,128, 92,101,101,101,160,237, 19, 39, 78, 4,118, 8,222,
+189,195,183, 27,168, 4, 12,118,236,216,241,245, 37,202,137, 5,192,250,224,254,253,251, 12,120, 55,133, 97,238,252, 2, 22,253,
+192,234, 4, 24,116, 62,246,246,210,184,231, 15,128, 37,187,149,158,222,219, 7, 15,128,165,252, 45,216, 90, 32, 85, 73,201,162,
+162,162,163, 71,143,170,169,169,233, 72, 75,227,153,246, 64, 30,247, 39,126, 14, 0,121, 50,160,188, 28,180,232,243,222, 61,104,
+219, 31,190, 45, 0,207, 66, 32, 30,105,177,239,207, 95, 0, 83,214, 87, 96, 35,243,205,107, 96,226,250,255,255,223,143, 31, 63,
+254,131,193,253,107,215,127,255,250,137,103, 9, 16, 74,239,214,209, 30,136,224, 75, 66,137, 25, 2,250,242,230, 20,176,244, 7,
+ 57,131,155,123, 35, 82, 39,192,196, 54,144,166, 37,133,201,246, 87,103, 60, 25, 12,140, 93, 94,101, 91, 73, 76, 59, 6,172, 15,
+ 4,217, 24,223,190,123,207,194,200,200,130,119,140, 48, 46, 46, 14,206,222,188,121,179,151,183,231,150, 77, 91, 86,173, 90,213,
+ 80, 93,187,235,192, 94,102, 22,102,105, 25,105, 96, 64, 50,176, 97, 89,200,167,162,162,130, 89, 13,236,222,189,155,129,208, 22,
+ 48, 96, 75,255,222,189,123, 90, 90, 90, 5, 5, 5, 43, 86,172,224,231,231,191,113,227, 6,242,216, 0, 80, 86,129,220, 1,183,
+ 17, 2, 0, 2, 8,101, 14,224,128, 97, 58, 3,108,101,243,150, 87, 2, 62,162,140,255,207,108,251,127,124, 19,168,238,231,224,
+248,193,197,187, 91,192,225,133,165, 11,120, 44, 2,125, 67,224,205, 91,191,142,156,104, 3,149,137,204, 28,144,225,138, 59,159,
+158,215,229, 36,125,251,246,243,211,119,208, 28,192, 47, 38,118, 39,143, 16,172,142,168,173, 78,216,177, 21,188,173,230, 47,100,
+176,229,143,135, 46, 99, 68, 86, 31, 23, 23, 59, 31,120, 14,128,245,223, 15,105, 81,236,229, 11,203,255, 63,191, 24, 65,117, 0,
+176,168,248, 11,204,163,192,156,250, 7, 60,103,203,200, 4,236, 14,252,129, 84, 84, 56,234,128, 15,223, 5,190,255,124,203,198,
+ 2, 82, 4, 84,241, 7, 88,125,252,254,255,251,207,255, 47,223,255,129,154,255, 12,140,191,255, 65, 7,115,208, 11, 98,208,232,
+254, 95, 32,252, 15, 44, 22,192,227, 63,140, 12,232, 86, 64,180,229, 21, 58,226, 58,151,227,250,241,235,164,198, 22, 48, 77,127,
+255,254, 93, 87, 87, 87, 73, 73,233,193,131, 7,171,192,187,100, 33,149, 1, 4,116,116,116, 16,172, 3,128, 0,235,244, 90,112,
+124, 60, 3, 17,155,194, 32, 91,115,145,129,175,131, 3,193,217, 99, 9, 88, 67, 12,185, 55, 0,108,248,155,168,171,179,125,253,
+138,223,203,148,164,111,228, 82, 30,121, 23, 5, 3, 17,251,132, 57, 37, 37,190,221,190,243,247,207,159, 79,239, 63,128,123, 87,
+160, 40,126,255,242,213,167,247,239,129,174,194,211,252, 71,155, 12, 88,178,118, 51,242,210, 79,228,233, 1,236,224,219,197, 19,
+251, 33,235, 41, 24, 54,174, 6, 45, 0, 53,178,143, 16, 18, 51,160,101, 57,240, 31,165, 14, 96,152,109,144, 81,247,226,223, 63,
+253, 5,167, 78,121,136,107,111,121, 9, 44,253,121, 89,137, 61, 56, 18, 24,185,251, 14,236,115,114,117,222,180,118, 67,115,103,
+ 71,249,199,143,255,255,253, 91,185,114,173,136,136,200,163, 79, 56,117,161, 85, 3, 12,132,182,128, 1,129,165,165, 37,176,141,
+127,238,220, 57, 35, 35, 35,103,103,231,253,251,247,203,201,201, 1, 91, 72,246,246,246,192, 8, 2,138,179,178,178,142,240, 37,
+ 64,144,125, 0,240, 30, 0, 26, 23, 8, 0, 2, 8,231, 78, 96, 96, 63, 96,238,229, 61, 58,127,175, 74,176,126,252,241,159,229,
+246,127, 1,230,215,159, 94, 88, 64,183, 17, 50, 97, 27,144, 17, 21, 50,244, 74,136,251,251, 31,222, 84,255,255,229,235, 39,102,
+ 22,126, 6, 38,174,178, 30, 2, 59,149, 60,188,117, 54, 76,173, 96, 96,250, 6, 47, 72,121,120,248,255,254,126,207,240,255,235,
+195, 99,179, 76,244,228,112, 14, 46, 3, 27,217,224,172,249,135,129,153,237, 63,184, 26, 0,151,254,160,230, 50, 3,148,192, 5,
+ 18,210,106,102, 77,110,248,243,251, 29, 11,120,145, 51,168,143,255,231,255,143,223, 12,159, 62, 3, 59, 3,255,255,252,103, 98,
+ 97,101,108,109,194,178,184, 37, 37, 5, 52,124,188,112,193, 29,198,223,160,230, 63,168,155, 1,162,192,173,164,255,204,140,160,
+185, 40,150,226, 18, 55, 60, 86,167, 52,167, 60,184,251,128,140, 24, 5,166,239,247,224,245, 51,198,198,198,102,102,102,175, 95,
+191,190,123,247, 46,104, 97,226,191,127,107,215,174, 37, 88, 7,228,196,199,115,138,137,249, 96, 27,174,201, 1, 87, 0,156,184,
+139,114, 72,134, 68,211, 43, 45, 46, 78,146,251,129,189, 1,107,112,111, 64,140,147, 83,199,202,138,166,169, 31,173,124, 7,134,
+ 24,218,108, 48,193, 58, 64, 88, 85,229,243,251,247, 44,236,108, 63,127,254,248,251,251, 15, 48,144,121, 5, 5, 63,190,123, 7,
+ 44,253,241, 55,255,225, 27,193, 32, 19, 0, 39,207, 93, 2, 86, 0,240,209,127, 92,251,194,212, 36,223,191,121,251,102,213,234,
+229,112,145,176,232,228,119,191, 72, 91,247,137, 57,230,131, 33,194, 72,176, 31,192,176, 29,122,144,131,202, 70,232,222,251,143,
+191,255, 18,239, 6, 39, 7,167,139,130, 23,221,188, 61, 82, 99,147,245,244,117, 55,109,220,124,252,194,217,180,180,180, 71,132,
+ 14, 41,131, 87, 3,221, 96, 64,112,135, 35,176,182, 0,246, 24,182,108,217, 2,108, 18, 1,251, 13,144,181,112, 87,175, 94, 5,
+182,253,129,165, 63,188, 46, 25,225, 0,109, 51, 48, 50, 0, 8, 32,124, 71, 65,252,211,117,185,196,224,114,137, 20,155,116,116,
+172, 39, 77, 90,148,151, 31, 41, 45, 15, 76,181, 63, 89,217, 57,158, 60,255,100,239, 27, 71,140, 94, 67, 67,165,132,132,176, 5,
+243,214, 49,252,123, 8,108,217,255,249,241, 93, 90,146, 95,142,239, 15, 1,109,127,255,177, 48,253,251,205,200,194,250,255, 15,
+180, 26, 0, 18,255,255, 18,185,172, 37, 45, 23, 52,164, 80, 95,153,201,202,194, 8, 57, 55,232,239,223,191, 31, 62, 3,107, 2,
+ 6,102,150,127,211,166,226, 75,127,241, 9,160,205, 1,243,230,222,100,128,156, 72,195, 4,236, 46,128,198,124,138, 74,124, 8,
+218,251,241,203, 71,172, 71,253, 16, 4,192, 50, 8,216, 9, 0, 58,242,211,167, 79,204,204,204, 64,134,132,132,196,239,223,191,
+145,179, 10,176, 14,192,117, 38, 4,164,169, 46, 72,214,114, 79, 33, 72,144,146, 88,226, 99, 2,113, 18,135,101,201,158, 3, 64,
+ 43,217,177,174, 5, 34,184, 29, 76,193,204, 20, 72,222, 56,120,240,199,183,239,255,254,254,213, 52, 54,214,181,178,227,145,198,
+ 27,128,255, 25, 31,222,191, 11,154,113, 97, 96, 72, 10,130, 78,233, 0, 69,144,217, 88,183,136,220,122, 14, 76, 18,130,225,209,
+ 41, 15, 31,191, 56,113,104, 11, 80,100,213,210,185,230,118, 62,188,226, 54,196, 4, 84, 24,104, 31, 6,225,147, 30,254, 50, 98,
+223,132,240, 40, 80, 98,251,179, 31,212, 42,116,244,193,224,204,153, 51,123, 79, 28, 20, 22, 17, 38,233,144, 18, 72, 53, 64,140,
+ 74, 94, 94,222,224,224,224,227,199,143, 3,155, 65,167, 78,157, 26, 61, 11, 8,115,244, 31,173,244, 71,155, 15, 0, 8, 32,234,
+ 95, 10,175,172, 97,186,117,231,157, 0,111, 46, 49,105,217,119,159,255,216,123,199, 18,175,215,210, 84,195,210,180, 42, 61,189,
+142,129,225,165, 32, 47,139,156,208, 63,194,163,150,137, 37,148,187,185,177,125, 58,144,204, 47,200,249,245,253,247, 63,240, 82,
+203,254,169,253, 68,234, 77, 74, 6,157, 20, 52,111,206,141,127,255,153, 43, 43,252,233, 16,169,160, 35,143,126,254,252,245,235,
+ 23,164, 88,132, 20,136,195,245,124, 80,130, 39, 76, 16, 15,136, 57,245, 19, 23,208,176,183, 39, 94,241,243,123, 55,205, 85,101,
+200,182,235,237, 47, 21, 30,113, 21,151, 80, 27, 82, 53,226, 58,229, 13, 9, 48,253, 97,100,255,206,132,125,254,255,238,231, 63,
+106,188,120, 10, 4,114, 22, 10,155,152,152,208, 33,145, 88,130,193,104,113,143,171, 14,192, 35, 11, 16, 64,163,151,194, 15, 73,
+ 48,122,171,251, 40, 24, 5,163,128,114, 0, 16, 64,163, 55,130, 13, 73, 48, 90,250,143,130, 81, 48, 10, 40, 7, 0, 1, 52, 90,
+ 1,140,130, 81, 48, 10, 70,193, 8, 5, 0, 1, 52, 90, 1,140,130, 81, 48, 10, 70,193, 8, 5, 0, 1, 52, 90, 1,140,130, 81,
+ 48, 10, 70,193, 8, 5, 0, 1, 68,147, 75,225, 71,245,142,234, 29,156,122, 33,167, 65,140,134,213,168,222, 17,165, 23, 15, 0,
+ 8, 32, 22,180,236, 65,140, 30,172, 89,136, 18,189,163,128, 84,128,171, 32, 27, 5,164,134, 18,145, 33,249,232,209,163,167, 79,
+159,178,179,179,139,136,136,200,201,201,209,205, 11,240, 51, 95, 7,115, 14,122,245,234,213,211,167, 79,241,171,145,150,150, 22,
+195,182,251,132, 18,189,163,128,114, 0, 16, 64,232,203,126, 9,238,188,199,179,193, 10, 77, 47,230,209,196, 52, 61,115,152,254,
+133, 11,126, 5, 5, 5, 5,154,154,154,248,181, 75,163,158,129,131,156, 19, 66, 67, 67, 93, 92, 92,240,232,165, 74, 29,224,238,
+238, 14, 36,119,238,220, 73, 7,189, 95,191,126, 93,187,118, 45,228, 82,248,224,224, 96, 67,220,247, 41, 98,122,150,224,165,240,
+ 51,102,204,192,218,218,192, 31, 74,196,132, 33,176,132,250,249,243, 39,208, 10, 14, 14,142, 31, 63,126, 0,107,130,211,167, 79,
+235,235,235,171,168,168,224,210, 98,109,109, 77,208, 95,207,159, 63,135, 92,123,130, 31, 0, 75,127,200,113,223,196,132, 21, 49,
+123, 65,194,194,194,240,167, 43, 8,144,151,151,103, 0,159,183, 12,244, 59, 36,238,240,164, 73, 96,186, 45, 42, 42,194, 99,233,
+251,247,239,205,205,205,177, 6, 53, 80,175,150,150, 22, 30,189, 47, 95,190,172,173,173, 29,109,238, 80, 2,240, 92, 10, 15, 16,
+ 64, 44,195,198,147,244,111, 20,111,156,225,129, 75, 42, 32,115, 7, 65,237,251,247,239,135,103,143,111,223,190,113,113,113,189,
+126,253,154, 96,237,178,103,207, 30,100, 54,114,134, 4,114, 87,175, 94, 77,124, 32, 92,190,124, 25, 82,136,163,153, 67, 18,200,
+200,200,200,206,206, 38,230,234, 87,200, 77,144,113,113,113, 64,255,246,246,246, 42, 40, 40, 8, 10, 18,222, 11, 13, 44,121,183,
+111,223, 14, 97,123,120,120,236,216,177, 3, 43, 27, 79,143, 19,158, 48,128, 12, 99, 99,227, 89,179,102, 65, 10, 74, 98, 18,204,
+199,143, 31,121,193, 0, 88,250,115,114,114, 2, 43,131, 15, 31, 62,240,243,243,159, 58,117,138, 1,188, 97, 21,151, 70, 29, 29,
+ 29, 96,113, 9, 47,184,145, 91,241,192, 2, 29, 72,158, 56,113, 34, 42, 42,138,152, 16, 38,178,244,135,128, 9, 19, 38, 80,158,
+176,185,185,185,175, 93,187,198,202,202,250,235,215, 47, 96, 32,223,190,125,187,178,178,146,160,174,151, 72,199, 11,218,218,218,
+ 30, 62,124, 24,206,125,243,230, 13,145, 26, 49,193, 3,216, 33,122,163,128,242,210,159, 1,227, 82,120,128, 0,236,157,177, 13,
+131, 48, 16, 69, 35,185,202, 12,241, 16, 46,210, 51,136,167,112,239, 50, 61, 3, 89,222, 32,146,199,113,155, 39, 31,178, 16, 40,
+112,144,134, 34,191, 2, 36,163, 19, 62,254,253,115,113,255,162, 5,160,148,162, 84,136,215, 57, 24,121, 60, 95,147,168,121, 71,
+229, 18,161,126,145, 87,227, 56,106,116,220,194, 23, 30,226, 78, 41,193,146,139, 73,103, 26,116, 83,120,241,134, 60, 10,180,127,
+206,185,155,194,239,126,121,180,191,204,140, 20, 83,120,106,128,166, 21,248,221, 20,158,192, 32,253,185, 41, 60,121, 2, 59,239,
+ 6,204,238,192,251,183,102,150,128,246,167,201,184, 55, 83,248, 90,171, 49,134, 87,109, 20, 0, 97,249,174,241,229,246, 4, 88,
+ 72,180,250, 38, 0,132, 16,228,162,103,212,250,201, 55, 32,252, 33,235, 24, 35, 53,128,196, 24,134, 65,201,254,115,192,254,222,
+251,121, 13,144, 54, 98, 35,145, 78,111,174,115,142, 54,154,114, 37,179,108, 5,214, 90, 18,140,159,130,252,252,179,255,196, 42,
+205, 23,126,109, 10,255, 17,128,189,179, 57, 97, 16,134,163,184, 32,221, 32,183, 14,225,209, 1,218, 91, 22,200,221, 49,178,143,
+123,100,152, 28,147, 13,132,254,204,159, 6, 17, 53,177, 45,133, 66,223, 33,136, 66, 14,154,188, 15, 15,121,159, 20, 0,182, 89,
+241, 78, 37,216,108, 88,203,179, 26,192,178,251,173,159,227,153,253, 79,209,153, 80, 24,172, 45,135,167, 47, 79, 3,173, 7,246,
+191,153, 75, 81,238, 82, 10,207, 88,227,226, 87,184, 37, 48, 21, 51, 48, 22,103,128, 82,113,253,175, 69,129,119,176, 89, 10, 95,
+ 12, 61,124, 29, 4, 96, 24, 6,114, 64, 8,225,242,108,133,231, 2, 37,136, 49, 30, 39, 39,216, 63,171,178, 8,128,228,128,212,
+ 68, 86,155,183,224,253, 92,251,252,133,133,141,221,118,206,105,173, 81, 2,165, 20,215,176, 63, 98,192, 42,109,219,154,126,163,
+153,253,173,181,178, 25, 87, 57, 96, 15,227, 56, 30,132, 0,239,189, 49,102,239,233, 52, 77,215, 4,222,182,132,227,174,235,250,
+190, 23,195,241,183,255, 75,246,111,182, 74,225, 31, 2,176,119,237, 54, 12,131, 64, 52,202, 72,136, 29,248,180, 89, 35,107,176,
+ 65,214,136,168,211,177, 6, 18, 29, 59,184,129, 34, 47, 57,133, 34,216, 16, 16,101,174,176,108,203,216,103, 16,239,221, 61, 36,
+110, 37, 1,212,194,197,143, 43,195,171, 56, 64,107, 61,154, 7,116, 61,236,190,234,114,125,220,111, 98,226, 7, 1,127,152, 87,
+181,183, 49,198, 81, 74,152,232,231, 82, 20, 30,168,141, 88, 9, 51,112,130, 0,200,168, 33, 56,224,168,175, 72,253, 63,125,138,
+194,151,189,227,169, 40, 60,221,108, 12,180,148,178,172, 39, 41,165, 74, 78,208, 80,126,234, 40,164, 46, 10, 95,180,160, 93, 11,
+ 33,156,223,123,137,227, 4, 95,244,222,211,230, 75, 84, 20,254, 85,107,122,219,172,181, 13, 40, 47,232,143,108,227,139,141,134,
+ 84, 29, 60, 76, 14,143,166, 2, 19,150, 82, 98,140, 57,231, 56,231, 24, 53, 18,217,112, 41,132,200, 57,119,155, 3,241,113, 52,
+198, 28,105, 65,203, 13, 97, 7, 18, 74,112, 42,186, 5,158, 99,140, 8,253,193, 7,112,251, 15,253, 93,123, 10, 32,106, 86, 0,
+ 84,159, 4, 38,163, 14, 0, 54, 39, 73,234, 7, 64,178,214,210,165, 75,209,196,183,109,219, 6, 20, 36,210,144, 19,247,181, 44,
+ 20,175, 17, 63,242, 3,111, 96,194,155,138,192,228, 11, 41,140, 72, 45,253,225,117, 24, 73,205, 67, 72,243, 31,237, 82,120,242,
+ 58, 1,112, 19,240, 92, 10, 15,111,242, 3,203, 20, 96, 99, 86, 85, 85, 21,216,136,102,103,103,231,231,231,111,105,105, 33,216,
+ 15, 64, 30,235,199, 53, 31, 64, 70,213, 14, 44,136,225,106, 48, 79,196, 2, 54,240,121,121,121,129,165,222,177, 99,199,128,141,
+ 95, 96,201,242, 29,233, 82,120,208,189,211,132, 46,133,199, 28,246,129,183,229,129,209,253,138,196,219, 55,129,241, 11, 89, 17,
+ 68, 70, 63,128,224,200, 15, 28, 0, 35,162,180,180, 20,146,227,128,214,221,190,125,155, 1,116, 76,175, 33,176,254, 35,102, 29,
+ 14, 37,101, 61,164,242, 32,195, 64, 96, 60, 2, 99,199,210,210, 18,126,240, 28,208,181,192,190,203,104,225,206,128,116, 39, 48,
+242, 16, 16,114,106, 7, 8,160,193, 62, 9, 76,159, 58, 0,168, 30,210,111,133,119,132,137, 44,253,129,205,127,178,189, 6,105,
+254,163, 53,252, 95,188,120, 65,235,210, 31,222,252,215,209,209,129,112,129, 12, 10, 59, 1,248, 1,124,244,159,155,155,187,182,
+182, 22, 88,250, 67,196, 13, 12, 64,151,156, 0,203,125, 95, 95,223, 35, 71,142, 0, 73, 42, 90, 10, 15, 19,248, 4, 0, 26, 0,
+ 54, 27,225, 61, 0,204,117,211,192, 50, 5, 88, 7,252,248,241, 3, 88, 75, 1,235, 42,200,117,155,240, 75,225,129, 12,252,165,
+ 63,164, 82,199, 28, 11, 66,158, 25, 38, 21,144,173,145,248, 57, 0, 96,125,236,237,237, 13,204, 65, 92, 92, 92, 14, 14, 14,192,
+ 16, 0, 70, 25,176,134, 94,176, 96, 1, 19, 19,109, 55,141, 2,203,122,248,240, 17, 36, 3, 18, 95,157, 0, 27, 52,143, 30, 61,
+ 10, 15, 15,103, 0, 95, 58, 13,186,122,108, 20,160,245,131,113,220, 11, 15, 16,128,188, 51,200, 65, 24, 4,162,232,222,211,168,
+123,227,185,186,225, 46,108, 12,135,168,149, 35,116,197, 41, 88, 17,182, 70,159,153,132, 16,172, 21, 48, 38, 38,254, 21,105, 55,
+147, 38,243,102,134,161,204,175,255, 9,220,209, 9, 64,245,201,123,130, 69,170, 91,235,233, 47,218,239,182,231,233,114,154, 54,
+ 18, 15,168, 6,154, 76, 5, 67,227, 56,202, 62, 62,238, 87,151, 24,222,210,199,233,160,191,164,255,207, 67,225,177, 65, 94,117,
+232,237, 80,120, 32, 34, 11,252,115,158, 31,195,205,141, 49,233,225, 87,135,194,167, 51, 63, 69,212, 92,111,182,147,254, 67,121,
+ 44,244,222, 75,175, 30,197, 24, 67, 8,240,133,106,128, 10,224,250,122,220, 80, 14,235,162,111, 95,156,235, 95,143, 34,185,217,
+ 53,199, 70, 63,148,214, 26,238, 67,127,231,156,181, 22,250, 43,165,136,205,195, 48,212, 4,128,195,146,154, 98, 0,110,216, 74,
+127,217,132, 20,250, 35, 22,199,150,187,187,255, 68, 84, 0,169, 19,144,235, 46,128, 6,233, 36, 48, 37,165, 63, 48, 13,145,209,
+ 77,134,140, 5, 1,187, 2,196,151,254,192,226, 30, 88,250, 67, 71, 57,214,173, 95, 11,190,197, 15, 88, 25, 48, 56, 57, 50, 48,
+ 16, 94, 6, 10, 89,149, 8, 25, 11, 2, 54, 81, 33,151,160, 2,139, 96, 34,146, 47,168,168,133,223, 11, 79,106,233, 15,105,254,
+ 99,109,236,147,215, 9,128, 84, 27, 57, 57, 57, 56, 3, 42, 56, 24,249, 82,248,152,152, 24, 6,140, 75,225, 99, 99,113,222, 27,
+ 65,225, 28, 0, 3, 89,151,194, 11, 11, 11,191,125,251, 22,216,222,127,253,250, 53,176, 7, 0,191, 20, 30,216,111, 3,198, 23,
+176,244, 7, 86, 3,104,131,251,200, 0, 82,202, 67, 70,129,208,110, 34,195,163, 11,173,244,135,108, 2, 64,230,146,209,240, 39,
+126,252, 7, 8,110,223,190, 13,140, 14,160, 7, 45, 45, 45,129, 36, 48,208,128,229,233,166, 77,155,152,153,153,137,169, 0, 40,
+105,197, 35,155, 64,146, 46, 99, 48, 0, 50,206,157, 59, 7,116,179,141,141, 13, 48,105, 1,123,153,200, 11,166, 71, 44,128,172,
+ 2, 66,155, 4, 70, 94, 5, 4, 16,128,189, 43, 72, 97, 24, 4,130, 31,240, 9,130,207,240, 44,248, 35, 95, 41,248, 4, 79,126,
+195, 75,167, 25, 88,182,181,196, 77, 14,165,135,238, 73, 66, 2, 97,163, 51, 19,119,100,127,183, 8,252, 77,244,215, 28,112, 73,
+251,127, 28, 63, 57,192, 54,113, 57,128,224,210, 71,198,106,173,219,103,215,190,240,116, 4,109,223, 95,154,194,175, 26,138, 70,
+186, 19, 79,222,122,242,139,116, 2,100, 4,250,203,134,210, 26,248,142, 33, 4,246,127, 7, 1,208, 11,164, 47,234,150,226,239,
+ 92,247,122, 14,192, 94, 3,208,147, 16, 57,201, 57, 3, 17,244,142,217,121,174,188,247,189,119,118, 94,155,115,146,129,164, 41,
+ 60,107,194, 70, 51, 79, 62, 66,244,187,101, 39, 71,224, 30, 55,235, 69,116,219, 78,106, 12, 58, 62, 75, 41,144,255, 41, 37,240,
+129,115,110,140, 97, 36, 0, 65,112, 10,169,123, 37,129,171,218,159,235, 8, 25,107,173, 97, 0,232,143, 49, 34,111,248,149,249,
+215,129,183,241, 16, 64, 44,152,249,141,108,179,208, 82, 39,114,251, 5,185, 89, 68,187,210, 31,152,236, 40, 92, 42, 71,146,246,
+199, 79,112,142,215,115,114,114, 17,212,142,117, 96,154, 72, 0, 44, 80,128, 37,254,222,189,123,225,247,194,195, 23,131, 18, 83,
+135, 97,189, 20, 30,178,227,134,224,166, 48,204, 74, 61, 55, 55, 23, 79,233, 15, 1, 66, 66, 66,144, 33,126, 96,107, 26,185,225,
+ 95, 83, 83,131, 63,201, 81,184, 15, 0, 57, 52,208,182, 74, 16,172,239,129, 93,177,109,219,182,253,249,243,231,195, 7,200,165,
+240, 32,151, 0, 59, 4, 64, 46,144, 77,124, 67, 30,104, 47,242,210, 79,228,233, 1,252,165, 63, 3,185,115, 60,148,215, 1, 21,
+ 21, 21, 7, 15, 30, 4, 70, 83,123,123, 59,176,197, 0,236, 0, 65,182, 68, 16, 28,226, 35,163, 21,143,172,151, 84, 0,172,153,
+158, 62,125,138,188, 15,224,226,197,139,192,174, 27,176, 85, 65,228,186,213,145, 0,208, 38,129,145, 1, 64, 0,177,224, 47,196,
+113,245,109,105, 13,200, 40,253,233,156, 79, 90, 90, 90,240,239,111, 36, 88, 89, 82, 50,164, 11, 41, 52, 33,203,240,129, 12,200,
+ 94, 48,248,189,240,120,202, 53,200,197,238,192,194, 11,121, 14, 0,210,188, 45, 43, 43,195, 95,218, 98,213, 75,234,144, 17,145,
+ 13,127,106,117, 73,145,195, 1,243, 82,120,252,117, 0, 48, 88,188,189,189,129, 45, 89, 54, 54,182,159, 63,127, 2,235, 0, 96,
+ 8, 11, 8, 8, 0, 11, 44, 60, 7,117, 32,231, 35,248,244, 47,208, 94,160,122,120,222,193,149,203, 32, 73, 2,109,219, 48,169,
+115,191,152, 99, 62, 36,141, 2, 65,234, 0,248,230,175,172,172, 44, 8, 3,216, 19,194,163,229,217,179,103,200,187,189, 86,172,
+ 88, 65,240,132, 31, 92,122, 73, 2, 23,192, 0, 77,240, 9, 24,140,150,251, 12, 72,119, 2, 35, 23,253,200,171,128, 0, 2,136,
+133,138,229, 59,166, 94,250,212, 22,244, 47,253,129, 64, 20, 12,200,214,174, 4, 6,212,114, 12,124,252, 7,185,236,195,122,217,
+ 39,217, 71, 62, 80,168, 23,107,111,128, 72, 64,246, 28, 0, 90,146,192,218,229, 34,152,108,128,221,202,187,119,239,238,223,191,
+255,251,247,239,127,255,254, 53, 48, 48, 8, 11, 11, 35, 24,119, 39, 78,156,128,119, 35,224, 34,200,108, 92,169, 2,222, 56,128,
+212, 28,192, 28, 68,176,178,129,131, 48,202,238, 79, 38, 59, 7, 73, 75, 75, 7, 6, 6,226, 87,211,220,220, 76,117,189,163,128,
+164, 58, 0,179,244, 7, 2,128, 0, 98,161, 86, 25, 58,122, 90,211,128, 3,180, 40, 32,254, 72,216, 33,228,169, 1, 49, 74, 25,
+ 12,136, 87, 15,236,223, 16,121,206, 15,158,198, 1, 25,213, 45,181,106,104, 82,129,152,152, 24,217, 97, 75,137,222, 81, 64,124,
+ 29,128, 75, 10, 32,128, 70, 47,133, 31, 5,163, 96, 20,140,130, 17, 10, 0, 2,104,244, 70,176, 81, 48, 10, 70,193, 40, 24,161,
+ 0, 32,128, 70, 43,128, 81, 48, 10, 70,193, 40, 24,161, 0, 32,128, 70, 43,128, 81, 48, 10, 70,193, 40, 24,161, 0, 32,128, 70,
+ 43,128, 81, 48, 10, 70,193, 40, 24,161, 0, 32,128,104,120, 41,252,232, 5,220,163,122,135,168,222,205,126, 83,136,215,235,187,
+ 41,135, 90,122, 55,250,146,160,215,127, 51,138, 94, 31, 27,208,245,162,140,140,140,191,127,255,190,127,255,254,175, 95,191, 88,
+ 88, 88,158, 60,121, 18,201,175,176,243,204,153,239,122,178, 22, 22, 22,204,204,204,144, 69,180, 91,142, 60,165, 86, 88, 65,236,
+133, 3,200, 14,149,171, 87,175, 74, 73, 73,189,123,247, 14, 72,114,114,114, 50,192, 54,244,161,217,139, 85,239,227, 43, 75,210,
+109, 31, 45, 59,163,198, 34,230,198,195,203,135, 75,239,104,122, 38, 94, 47, 30, 0, 16, 64, 36, 28, 5,129,127, 83, 34, 21, 47,
+224,150, 56,113,237,206,171,231,156,108, 28,234, 92,252,119,236,116,232, 86, 25, 14,137, 11,184, 7, 27,184,121,243,102,127,127,
+127,111, 21,136,189,225, 48,232, 12, 0, 60,138, 31, 60,121,252,244,201,147,155, 55,110,188,127,255, 94, 94, 94,158,135,151,215,
+195,213, 13,191,249,144, 35,146, 32, 0,215,229,101, 64,113,226, 99, 10,178, 11, 26,235, 29,194,248, 64,232, 59, 48,245, 31,116,
+ 16,211,106, 33, 18, 52, 26,247, 51, 40,197,131,147,215, 2,134,179, 69, 36,135,111,200, 27,132,189,107, 68,240, 40, 4,150,158,
+ 95,191,126,221,181,107, 23, 48, 25,135,178, 10, 75,200,138,254,248,250,157,243,219, 31,235,146, 84, 59,223,240, 45,115,103,108,
+222,187,215,205,205,141, 14, 73,226,239,223,191, 64, 55,232,235,235,171,169,169,157, 59,119,238,199,143, 31,170,170,170,152,135,
+195, 99, 5,127,254,252,185,120,230,188, 76,178, 97,153,153,246,137, 93, 61,107, 47, 59,168,234, 56, 17,169,119, 20,144, 1, 0,
+ 2,136,168, 10,128,152, 35,125,168,114, 1,183,234,185,187,130,111,191, 48, 50,252,255,245,151,249,247,187, 47, 79,222,124,124,
+ 48,229, 44,143,163,185,136,182, 6, 30, 93,103,247,167,107, 64, 87,105, 51,175,223,245,239,240,233,255,105, 17, 12, 64,145,162,
+ 86,210,138,114,146, 46,224,198, 85,115,208,250,202, 14, 6,200, 49,150,245,140,140, 77, 88,164, 64,249,164,158, 49,236,122, 40,
+125,150,132,195, 74,255,255,224,210,223,238,200,145, 35,120, 42, 0, 61,253, 93, 90, 90, 38,171, 87,243,157, 60, 14,218, 6,117,
+235,198, 77, 32,153,146,184,238,227,151,156,207, 31,240, 85,243,174,174,174,192,106, 0, 88,202,239,219,183, 15,235, 73,121,196,
+111,250,199, 76,201, 25,233,233, 51,136,171, 60,144,175,161, 39, 1, 40,197, 35, 14,101, 35,163, 2,128,249, 14,207,201,163, 16,
+112,247,238,221, 3,171, 86, 53,185,132, 25, 68,103,177,137, 11, 50,176, 48, 49, 48, 48, 49,252,251,207,240,143,245,223,207,255,
+ 94,241,105,143, 38,117, 28, 59,118,204,202,202,138,214,133, 41, 19, 19,147,129,129,193,129, 3, 7,128,117,128,153,153,217,139,
+ 23, 47, 46, 94,188,168,167,167, 71,204, 49, 51, 64,207, 58, 59,185,182,247,109, 42, 79,184,108,225,145,105, 97,190,167,100,242,
+ 19, 53,211, 56,172,122, 33,177,137,191,122, 0,202,146, 92,217, 15, 35,128,118, 33, 48,162,239, 5, 91,253, 15, 16, 64, 44, 68,
+102, 24,131, 56,221, 76,235, 28,226,235, 0, 50, 46,224,150,185,251,210,136, 83,144, 77,146,255, 47,195,127,206, 15, 92, 47, 94,
+191,126,241,249,163, 34, 59,207,141,157, 71,128,209, 43,138,187, 14, 0,150,245, 55,238, 50,253,255,207,241,151,145, 61,192,245,
+119,160,219,119, 6,134,127,176,118, 19,137,185,149,196,178, 27,126,100, 35,228, 32,170,173, 55, 88,127,252,254,157,158,104, 66,
+176, 26, 32, 88,167,226,219,255, 89, 15,202, 12,144, 91,144,176, 74, 17, 3,110,239,229,235, 89, 21, 9, 97, 23,135, 46, 87,115,
+249, 68, 70,233,223,215,215, 7,204,237,197,109,208,139,159,240,228,112, 7,135,143,106,106,192,166,247,102, 91,219, 73,112,193,
+168, 40, 6,240, 29,110, 83,150,175,194, 87, 7, 64, 74,127,200,193, 94,225,225,225,144, 83,143, 8, 22,136, 88,219,254,144, 3,
+ 51,224,238,204,200, 32,182,244, 39, 19, 24,247, 49,192, 46,106, 7, 85, 0, 70,189, 12,231,138,105,100, 21,176,118,156, 30,152,
+166,232,228,202,192,252,147,145,149,137,145,133,137,145,153,245,255,127,198,127, 95,255,252,255,251, 23,216,164, 74,141,207,202,
+170,203,191, 43, 46, 78,210,166, 54, 50, 0, 48, 47, 72, 74, 74, 2,195,249,224,193,131, 55,110,220, 0,214,223,150,150,150, 39,
+ 79,158,212,214,214, 38,168,247,200,222,229, 65, 6,223,206,126,102,142,170,255, 98, 99, 56, 49,167, 32,188,167,252, 67,121,207,
+ 82, 37,195, 40, 60,133, 59,188,120, 1, 70, 49,154, 8, 37,231, 81,142, 4, 0, 16, 64, 44,196, 20, 82,203,118, 44, 85, 86, 81,
+ 78,111, 74, 37,166, 14, 32,239, 2,110,133, 27,207,212,217,184,217,254,255,225,236, 41,253,243,237, 23, 71,113, 43, 63, 27,199,
+ 15,214,239, 95,127,124,231,100, 96,124,126,240, 4,155,140, 36, 63, 63, 63, 86,189, 55,238, 50,204, 90, 1, 44,241,191,129, 17,
+131,173, 41, 83,160, 27, 35,172, 14, 96, 0,246, 6,102,173, 32, 42, 44, 72,189,128, 27, 82,250, 67,138,126,144,223,143,252,254,
+254, 11,116,193,175,115,249,238,206, 78, 87,130,230,220,237,184,203,202,120, 27, 26, 13,140, 79, 25, 69, 52, 96,236, 87,162,137,
+248, 54,199, 3,219,254,200,151,153,160, 72,165,175, 6, 75,225,107,254,191,185, 44, 89, 51,197,255, 63,195,255,246,130, 13,230,
+ 14,106,203,166, 29,238, 93, 29,197,176,250,127,125,209, 52, 41,117, 98,155,210, 95, 30,166, 75,115, 48,124,123,123, 21,216,248,
+226, 21,211,131,148,254,211,167, 79,199,170,152, 87,224,138,154, 26, 48, 70,142, 1,251, 9, 39, 79, 50,128,239,236, 3, 1,248,
+ 14,255,200,176, 41, 51,230, 84, 51,253,147,197,170, 29, 82,250, 3,219,254,192, 50, 5,207,189, 99, 4,155, 50,144,210, 31,169,
+ 62, 72,159, 49, 3,123,178,100, 10,123, 15,111, 62, 48,130,241,191, 80, 84, 89, 70,200,168, 12,136,242, 70,237,243, 48,133,191,
+135, 12,216, 0,193,191,127, 9, 5, 5, 5, 16,113, 32, 3, 88, 19, 48,169, 38, 67, 13, 6,171, 65,211,203, 18,142,110, 47,242,
+ 61,140, 32, 89,220,246,254,248,241, 67, 66, 94,129,225,223, 47, 38,118, 6, 70, 22,230, 63,159, 63,254,184,119,255,245,147,167,
+ 50, 86, 14,140,108, 2,140,191,127, 49, 48, 51,117,102,150,184,206,106, 40, 42, 42, 34,187,188,192,117,196, 8,188, 68, 6,166,
+135,239,223,191, 11, 9, 9, 1,219, 7,192,208,190,127,255,254,130, 5, 11, 52, 53, 53, 63,124,248, 64,176,131, 5,212, 43,207,
+116, 82, 82,206,227,195,193,203, 31,223,179, 47,222,242,103,219,137, 37,121,161,156, 44,223,128,177, 22,133,189,191, 59, 10,240,
+ 2,204,200, 66,235, 19, 0, 4, 16, 11,254,162, 31, 24,196,142, 85,246,179, 14,206, 76, 99, 72,191,176,232, 50,131, 53, 97, 43,
+ 33,229,254,183,111, 75,129,113,250,227,199, 60, 33,161, 61,196, 92,192, 45,246,252,157,152, 56, 7, 71,125,214,223, 55,239,254,
+ 60,123,195,194,198,202,197,200,204, 13, 68,204, 44, 66,172, 28,239, 63,127,120,190,239, 24,127,160, 39, 86,189,104,229,251,225,
+211,255,192, 21, 0, 67, 95, 53,227,127, 70, 6,198,255,196,118, 5, 72,189,128, 27,185,244,103, 96, 97,190,247, 28,148,123, 31,
+189,252, 33, 39,206,161,154,176,185,179,211, 23,191, 33,192,210, 31, 88,238, 51, 51,190,249,251, 95,132, 93,140,145, 59,226,217,
+191,127,239,126,252, 88,253,247, 76, 25, 37, 61, 21,130,181, 87,245, 20, 63, 75,161,154, 41, 27,146,121,152,228,128,220,172, 92,
+117,125, 51,165,165, 83, 15, 54,246,101,207,156, 73,108,103, 25, 88, 4,165, 23, 94,129,228, 91, 27, 27, 27, 96, 5,128,171,244,
+ 7,213,136, 14,111, 25, 24, 46, 49, 48, 92,249,240,146, 71, 85,142, 97,246,236, 47,251,247, 51,168,170, 2,157, 10,138, 38,160,
+ 32,168,139,169,123,253,210, 69, 89,172,165, 63,176,109,251, 15, 12, 24,192,247,201,144, 90, 96,193,217,200,165, 63, 3,104, 26,
+ 0,103,236, 0,187, 5,144, 50, 28,107, 45,251, 15, 86,238, 0, 27, 59,192,112,216,124, 8,101,194,109,250,140,153,144,254,133,
+130,130, 2, 48,251, 76,156, 56, 17, 34, 14,100, 0, 43,128,157, 59,119,194,207,173,100,192,208, 11,233,142, 0,117,165,166,166,
+ 98, 25, 31,135,117,122,102,205,158, 13,180,119,203,225,167,104,165, 33, 11, 47, 47, 3, 43,243,223,111, 31,174,111,219,187,116,
+213,154,105,207, 64, 22,157,106,228, 83,181,243,250,249,232,241,213,139,103, 47,223,191,245,241,197,139, 43, 87,128, 17, 39, 65,
+ 70,105,130,121,236, 26,102, 9,254,236,217,179,218,218,218,158,158,158, 95,191,126, 49, 51, 51,243,242,242,126,253,250,245,212,
+169, 83,248,147, 37, 68,239,135, 39, 71, 27,231, 63,154, 91, 32,245,238, 43, 27, 27, 11,147,140, 32,199,139, 55,191,210,187,254,
+232,155, 24,203,225,238,213, 65,170, 1,120, 68, 99, 50, 70, 1, 90,233,143, 92, 43, 0, 4, 16, 19,174, 60, 3, 57,247, 28,209,
+ 91,247,136, 38,198, 2,200, 13, 48,223,190, 45,131,148,254, 28,167, 31,124,219,169,194, 64,232,102, 24,150, 3,103,249,223,125,
+254,199,198,242,235,236,213,159,215,239,253,216,117,152,225,251, 79,182,255,255,185, 24,152, 89, 24, 24,127,254,251,243,238,231,
+143,105,187,183,224,210,222, 87, 13,106,230, 35,134,200, 35, 96,237, 43,134,255, 55,239,252, 47,106, 37,161,153, 0,185,128, 27,
+ 18, 8,248, 79,235, 4,202, 34, 95, 42, 18, 57,225,201,222,179,239,129,165, 63,164, 14,184,253,228, 59,131,203, 42,252, 38, 0,
+ 75,127, 80, 53,240,249, 50, 55,247, 29,118,142,207,192,210,255,247,239,179,204,204, 74,191,190,190,165, 93, 10,184,123,254, 11,
+ 48,100,224,165,255,243,155,255,141,124,153,115, 91, 92,109, 92,129,221,243,255, 96, 89,194, 96,217,178,101,197,109,140, 60,162,
+186,192,144,245, 8,204, 60,114,228, 8, 30,197,255,152, 30,139,137, 65, 75,255,207,111, 65,167,100,235,235,131, 74,255,184, 56,
+104,233,255,249, 45, 39, 16, 9,113, 61,199,170, 61, 36, 36,196,209,209,209,201,201, 41, 60, 60,156, 25, 21,192, 69,240,187, 22,
+ 45, 37, 19, 91,195, 33,149, 77, 16,128,201,101,196,214,180,128,107,116,115,115, 67,107,107, 3, 59, 1,144, 99,251, 96, 46, 67,
+215,187, 97,230, 76, 96,233, 12, 49, 28,238, 77,248,224, 56,156,139,213, 94, 96,126, 97,226, 98,255,253,226,225,204,154,154, 5,
+ 95, 63,188,183,183,128,136,207, 93,178,160,161, 36, 69,173, 40,178,233,242,190, 85,239,239,187,250,249, 17,217,193, 5, 22,247,
+192, 92,112,254,252,121,164, 42,115, 6,214, 81, 62, 72,128, 92,190,124,249,224,193,131,145,145,145,192, 94,218,151, 47, 95, 32,
+ 7,104, 3,251, 37, 60, 60, 60, 97, 97, 97,214,214,214,184,138,126,144,222,227,107,111,237, 44, 42,170,236,221, 92, 47,117,253,
+ 41,203,199, 47,204,255, 24, 25,222,126,249,245, 95, 88,185,176,170,213, 39, 32, 6,103, 85, 13,172,198,193, 25,118, 38, 24, 96,
+101,140, 2, 92,165, 63, 16, 0, 4, 16, 11,214,162,159,140,142, 33,154, 8,176,244, 71,235, 22,224,185,128,155,229,237,135,119,
+255, 89,217,222,190,227,216,176,143,145,133,137,225,199,175,255,159,191, 50,254,249,195,202,192,240,247,255,191, 31,127,255,124,
+254,243,139,225, 31,206, 49, 95,200,100,111, 95, 53,150,212, 5,158, 28, 38,217, 59,196, 92,192,141,210,252,103, 96, 88,158, 35,
+ 9,103,155, 84,220, 99,253,255,230, 55,163, 8,193, 43,188, 57,190,236, 23,106, 90,242,186, 56,227,205, 59, 78,169,223, 87,255,
+254, 5, 85, 24, 15, 47, 72,208, 46, 17,116,205, 40, 78,113,155, 9, 47,253, 33,130, 22,130, 53, 86,218, 33,150, 66, 87,129,178,
+ 4,243,204,210,165, 75, 15, 29, 58,244,246,173,179,176,240, 94, 30, 17, 29, 96,106, 97, 98, 98,194, 51,207,246,232, 17,176,178,
+188, 2, 25, 55, 2,122,248,221, 87, 6, 51, 51,240, 36,196,109,134,169, 83, 25, 62,127, 98,248,250,133,225,203, 87, 6,110, 65,
+124,147, 16,152, 35,254,119,239,222, 5,146,109,109,109, 64, 82, 77, 77,141,188,209, 12,120,116,227, 81,150,159,159, 15,111,197,
+ 35, 23,229,248, 13, 87, 84, 84,132,143,254,195, 1,164, 19, 0,148, 66,116, 2, 80, 65,178,180,218,173,171,215,158, 10, 10, 2,
+131, 52, 47, 47,111,210,164, 73,196,219,107,251, 83,224,255,191, 47, 41,109,213,186, 33, 33, 51,219,218,224,247,183,204,188,125,
+ 5,218, 51, 62,124,120,247,238,221, 64,171,193, 25,252, 27,193,210, 31,210,165, 3, 6, 14,176,149,109, 96, 96, 0,172, 9,128,
+ 26, 51, 51, 51, 31,127,198, 82,197, 62,121,242,196,223,223, 31,232,181,109,219,182, 65,174,204,100, 0, 47,233, 97, 0,223, 35,
+132,103,158, 22, 40,126,239,230,133,134,178, 36, 97,213,213,231, 87,199, 95,122,204,248,232, 37, 11,195,127,166,159,191,126,191,
+251, 47,156,157,156, 69,222, 18, 32, 74,238, 53, 25, 81, 0, 32,128,176, 12, 1, 1,171,113,100,238,135,167,239,137, 41, 49,225,
+ 61, 0,240, 16, 16, 40,194,128,205,127,246, 43, 79,255, 10,128, 26,125,248, 47,224,190,246,228,209, 55,118, 78,165, 63,127,100,
+ 56,121,184, 88,217, 24,127,255, 6,118,179,129, 29,222,207,127,127,125,251,251,231,231,127, 96,238,255,255,159, 80,140, 2,171,
+ 1, 72, 29, 0,158, 18,128,150,251,125,213,204,189,213,140,197,173,127, 72, 13, 23, 98, 90, 73,229,171, 65, 33,211, 25, 42, 8,
+ 41,244,161, 3, 59,255,223, 0,235, 45,150,255,239, 23,165, 8, 70,226,189,147,142,245,229,233,191, 12,160,209,143, 30, 22,254,
+200,151, 15,207,116,201,112, 75,104,126,124,250,244,197,131,103, 52,141,114,125, 51,165,175,224, 40,253,198,121,141,235,187,214,
+186,198,223, 16,113,107, 23,237,227,171, 8,183,253, 3,237, 14,109,216,224, 34,112,124, 79,127, 53, 67, 97,235,127, 59, 59, 59,
+252, 75, 63, 21,100,100,145, 39, 29,183,108, 1,205,253, 46, 91, 6,236, 4,252,159, 48,129,177,169,233, 11,168, 98, 96, 96, 80,
+ 85, 23, 44, 46,196,103, 53,164,241, 11,236, 16,172, 92,185, 18,222, 46,246,240,240,192, 44, 37,137,175,230, 9,170, 1,150,152,
+192, 34, 27,179, 2,232,235,235, 67, 94,159,138, 9, 92, 92, 92,224, 87,177, 35, 3,160, 96,127,127, 63,174, 14,241,161,107,143,
+170,154, 74,146,235,203, 42,127,253, 2, 90,138,233, 53,160,189,123,246,236,193, 90, 38,218,105,201,205,155, 59,213, 56, 42,170,
+177,177, 17,107, 61, 1, 20, 4,106,159, 61,123, 54, 49,129, 3, 44,253, 33, 83,172,192,106,114, 6, 12, 0, 69,128, 53,193, 99,
+108,107,204,127,255,254,189,101,203, 22,103,103,231,219,183,111,127,253,250, 21,200, 5,214, 64,191,126,253,130, 92,155,131,191,
+ 4,255,249,243,231,217,181, 81,118, 65, 77, 59, 15,222,189,255,156,249,211, 87, 38, 96,199,255,233, 87,206,188,138,106,130,122,
+ 33, 83, 59,248,199,130, 70, 1,174,230, 63, 16, 0, 4, 16, 19, 90,150, 0, 2, 7, 48,184, 8, 3,247, 78, 63,252,248,253,163,
+176, 25, 81,107,159, 33,165, 60, 23, 87, 52,176,244,103,125,248, 22, 88,106,179, 37,191,101, 32,116, 1, 55, 43, 27,243,223,255,
+ 12, 79,190,126,120,244,241,221,235, 79,239, 63,254,248,241,254,215,247,215, 63,191, 63,255,241,237,233,143, 47,239,126,255,124,
+255,239,247, 47,212, 1, 92,148,182,143, 41,246, 41,129,148,112,158,255,192,158, 49, 3, 27, 49, 46, 39,227, 2,238, 71, 47,127,
+236, 61,251, 30, 94,244, 67, 74,127,246,127, 15,129,168,193,157,229, 17,176,233,139, 23,172,189,255, 79,180, 23,218,112,190,255,
+245,239,147,187, 79,111, 30,189,250,226,193, 7, 90, 39,133,101,211, 64, 21,252,167, 87,255,129,165,191, 67, 50, 75, 80, 61, 43,
+ 4,245,174,138, 98,100, 96,196,159,217,252,109, 14,198, 23,185, 8,158,216, 11,204,117, 27,143, 58, 48,128,143,203, 39,104,163,
+154,134, 58, 82, 21,194, 48,101, 10,195,157, 59,160,126, 64, 99,227,127, 56, 16, 20, 20,196, 57,136, 4,142,250,191, 96, 0,108,
+242, 3,219,254,183,192, 0, 88, 20,150,148,148, 16, 12,103, 74, 0,164,169,142, 86,158, 2,251, 4, 64,239,227,106,197,195, 91,
+160,104,205,127, 8,192, 42, 8, 7,135,217, 63, 48, 50,241,204,169,106,229,217,178, 7,152,101,224,103, 74,167,171,234,228, 27,
+ 91,113,113,113, 1,171,219,218,218, 90,160,199, 49,111,209,154,251,244,214,115,109, 45,105,105,105, 96,112, 97,214, 88,144,254,
+ 7,241,125, 35,248, 2, 27, 96,147,159, 1,182,121, 2,235, 69,114, 16,207,202,202,202, 2, 35, 2,216,201, 80, 81, 81, 97, 97,
+ 97,129,212,208, 22, 22, 22,196, 52,213,149, 53, 12,103,237, 18,184,180,173,222,214, 82,147,155,131,137,155,235, 47, 39,251, 79,
+ 79,127,162,238, 54, 0,150, 87, 16,119,226, 25, 11, 26, 5,120, 0, 64, 0, 49, 97, 13, 83, 32,200, 7, 3, 32,183, 57,163,249,
+247,171, 63,156,156, 28, 68,134, 38,164,206,231,114,191,243,159,153,169,118,221, 55, 6, 34, 46,224,214,180,178,250,195,195,245,
+254,255,223,107, 95,223, 95,249,248,246,234,167, 55, 87, 63,189,187,246,245,221,157,111,239,223,254,252,241,229,207,159,103,223,
+190,226,185,129, 47,208,141, 17,216,210, 7,162,255, 12,204,255, 25,153,210, 34, 24, 83, 35,216,146,195, 69,149,149,197,255, 49,
+176, 50, 48, 48, 18, 83,250,147,122, 1, 55, 80, 49,104,160,159,129,225, 76, 7,168,175,176,179, 20,180, 66, 9,216,240,103,254,
+255,245, 39,147, 60,144,253,238,221, 59, 98,110,112, 5, 6, 14, 48, 63, 47,251,242,245,251, 47,166,248, 21,115, 94,113,112, 2,
+ 25,180,139,239,146,176,229,199,223,181, 46, 91, 12,109,234, 3,155,255, 22,130, 53, 16,118,107,246,150, 25,184, 39,129,129,133,
+ 66,127, 13, 67, 66,145,179,192,137, 61,142, 93,246, 76,222, 12, 7, 14, 28, 32, 50, 73,200,203,203,195,217, 78, 78, 12, 2, 2,
+192, 14, 22,131,185, 62, 47, 7, 27, 51, 51, 19, 52,118, 76, 76, 77,113,166, 81, 38, 38,200,136, 63,176,232, 87, 67, 2, 77, 96,
+240,236,217, 51,130, 69, 12,242, 32, 62, 28,100,100, 16,213, 66, 4,182,244,209,110,212, 2, 22,226,248,155,255,200,115, 15,240,
+ 6, 44,132,253, 15,119, 59, 6, 8,126, 49, 50,254,251,246,147, 85, 66, 62,189,165, 37,129, 91, 64,224,192,113,232,208, 80, 76,
+ 66, 67,207,156,219,125,203,235,116,157,194, 4, 21,119,111,218,132,217, 64, 9,200, 72,215,214,209,129, 76, 80,255,133, 1,248,
+ 0, 26, 50, 23,235,128, 15,176,112,135,204,241, 66, 6,253,225,101, 61,176,201, 15,105, 92, 3,107, 2, 32, 27,151, 79, 89, 89,
+ 89, 3, 2, 2, 62,126,252, 8,172,153, 56, 57, 57, 69, 69, 69, 5, 4, 4,240,223, 34, 9,215,203,206,206, 30,156, 49,105,193,
+105,147, 7,143, 63,137,243, 51, 91,170, 51,234, 41,254,231,230,227, 27, 45,157,105,221,252, 7, 2,128, 0, 98,193,223, 65,134,
+ 55,138,101,236,165,136,108, 59,192, 47,224,102, 75, 94,205, 64,220, 5,220, 95,244, 85,190,221,186,245,237,207,207, 79, 95,191,
+221,253,253,155,245, 31,104,248,230,227,239, 31,255,192,185,103,219,203,251, 95,255,252,198, 59, 38,195, 88,212,138, 72,220,224,
+129,160,127,127, 25,126, 94,191,243,121,222,202, 79, 68,150,254, 12, 36, 94,192, 13,114, 79,103, 24,171,243, 52, 32,243,237, 91,
+232,180, 45,219,191,231,191,152, 36,179,117,111, 61,127, 14, 42, 38,240,151,143, 25,235,102,193,171,198,213,176,251,106, 87, 92,
+ 62, 70,211, 61, 92,170,206,159, 24, 86,253, 63,186,231, 42,144,109,165, 13,218, 85, 91, 86, 80,127,236,170,118,207,170,168,170,
+169,222,248, 29, 12,108,251, 11, 9, 65, 70,181, 14,128,107, 56,151,255,255, 87,131, 11,214,255,171, 87,227,187, 32, 55, 36, 40,
+120,247,206, 93, 12,224,133,255,142,142,140,111, 30,243,127,125,207,241,253, 19,219,138,133,140,249,249,255, 31,190,250,108,110,
+105,161,167,173,131,127, 14, 0, 50,232, 15, 76, 87, 12,224, 75, 4, 33,226,175,192,128,152,113, 30, 96,204, 2, 43, 18,228,242,
+ 23,216,100, 36,102, 23, 24,100,208, 28, 62, 19, 0,233, 13,224,111,254, 51, 32,173,122, 64, 94,207,131,127, 41, 4,164,174,250,
+243,249, 51,171,136, 16, 51, 23,143,118,112, 72,147,155,107, 21,100, 41,167,161,209,223,239, 63, 88,133,197,117, 45, 28, 20,100,
+ 20, 39, 93, 63,174,163,163,243,252, 52,202,141,164, 25,160,164, 11,170,228,178,128,101, 55,120,181,232, 31,164, 18, 31,216, 40,
+ 7,138,192, 23,152,122,163,150, 5,192,146, 29,232, 71,200, 56, 15, 48,196, 32, 67, 61,200,178,120, 74,127,136,179,129,197, 61,
+176,189,127,227,198,141,115,231,206, 1, 35,139,155,155,251,219,183,111, 68, 14,214,139,139,139,251,251,251,159, 56,114,106,194,
+234,221,124,140,108,234,226, 63,239,188,225,182, 81,255, 13,175, 33,112, 13,232, 3,197,225, 25,118,116, 8,136, 60, 0, 16, 64,
+ 44,196,140,147, 2,131,242,201,193,103, 12, 81, 68,149,254,240, 18, 13,205, 28,252,117,128,148,152,248,229, 31, 15, 62, 50,253,
+123,241,227, 11,195,239,223,127,129,177,206,192,112,253,203,135,167,223, 62, 65, 46,224,198, 91, 1,252, 7,182,250,103,173,128,
+ 54,181,110,220,101,208, 80,254,195,204,240,149,164,210,159,129,244, 11,184,193,107, 70,179,128,125, 0, 96, 99, 31,216,255,237,
+116,101, 40,223,109, 87,160,115, 12,210, 72, 36,216,252, 71,238, 24, 33,179, 33,101, 28,254, 70, 19, 67, 61,163,201,172,123,152,
+115, 21,208,157,192,123,240, 93, 14,213,150,189,165,122,170,239,241, 85,255, 45,133,174, 90,187,104, 31,217,125,245,196,251, 22,
+ 70, 6,198,214,236,205,192,162, 21,143,189,192,210, 31,152,229, 2, 3, 3,103,207,254, 4,201,146,140,176,245, 40,161,161,136,
+232,222,124,216, 18, 83,111,118, 94,238,212, 73,147,129,205,255, 95, 47,100, 31,127, 96,255, 7,234, 59, 49, 72,126, 21, 47, 77,
+251,188,251,132,186,150, 37,190, 58, 15, 82,244, 67,110,121,125,241,226, 5,164, 79,240,242,229, 75, 6, 82,230,250, 32,147,153,
+104,163,231, 51, 64,130,233,120,214,131,194, 99, 4, 62, 19, 0,236, 13, 16,211,252, 71, 46,164,136, 87, 12,108, 50,191,120,248,
+ 64, 81, 89,245,223,159,159,140,127,254,178,240,242,241, 26,153,240, 24,154,254,251,250,231,239,183,159,255,255,252,101,248,251,
+175,124,122, 79,120, 84, 56,102,227,250,207, 10, 65, 60, 38,163,201,250,111, 70, 87, 0, 44,226, 33, 35,254, 12, 72,247, 0, 35,
+215, 1,248, 61,168,174,174, 62,121,242,228,215,175, 95,187,186,186,158, 57,115, 6, 88,250, 3,181, 16,188, 51, 21,162,215,194,
+220, 60, 35, 57,227,254,147,251,177,201, 25, 39,119, 47,124,254,249,157,137,189,171,184,140, 26,122,194,198,150, 17,224, 5, 20,
+230,254,175,209,141, 96,196, 0,128, 0, 98, 33, 50,243, 16,217,246, 71, 46,209, 72,186,128,251,167,189,177, 26,131,241,211,153,
+ 11, 24, 56, 57,222,255,255,243,235,207,159,127,255,255, 9,243,243, 63,249,250,145,224,157,168,104, 11, 61, 97,115, 0,127, 73,
+ 42,253, 25, 72, 63,197, 1,178,111,192,196, 4,180,239, 87, 72, 72,232,249,243,231, 5, 58,207,225,165, 63, 65,163,176, 94, 81,
+ 75, 20, 0,111,247, 69,222,109,135, 38,133, 31, 8,235, 61,157, 49,115,198,173, 61,124,189,171, 35,143,175, 2,182, 7, 25, 75,
+194,150,131,122, 6,120, 75,127, 72,196,129, 11,250, 79,224,188,199,128, 86,178, 45,232,221, 11, 36,185,229,128,249, 16,203, 36,
+ 33,176,129, 15, 52, 65, 68,108,215,223,207,103, 24,153, 25,190,253,224,100,252,252,135,133,137, 69, 92, 89,211, 77,206,139,229,
+ 63, 78,103, 3, 11, 20, 21, 21, 21,202,211, 39,100,152, 24, 88, 7,192,151,199,192,251, 1,196,207, 4, 64,138, 33,130,205,127,
+178,129,147,147, 83,246,170, 89, 77,159, 63, 24,216,219, 48,137, 11,130,172,251,253, 31,116,156, 3, 3, 43, 35, 51, 11, 35, 27,
+243,236, 25,125,124,206, 38,202,202,202, 84,223, 3, 5, 25,234,153, 62,125, 58,144,212,215,215, 39, 73, 47,176,134,222,187,119,
+ 47, 51, 51,179,173,173, 45, 48,120,209,134,254,129, 29, 2, 96, 65,143, 22,236,112, 0,236, 49, 44, 90,176,144,141,153, 61, 36,
+ 50, 4,168,198,198, 43, 5,165,222,250,243, 7,162,119,116, 85, 15, 45,198,127,128, 0, 32,128, 88,168,101, 13, 85, 46,224,118,
+ 76, 79,184,119,247,222,185,237, 59,191,254,252, 5,236,192, 42,155, 25,121,200, 69, 18, 44, 73,201,158,234,129,148,224,228, 93,
+192, 13, 55, 1,178,102, 20,222,222, 7, 50,136,113, 15,196, 94,242,156, 29,118, 61, 20,236,107, 44,238, 12, 35,212,123,128, 3,
+ 53,151, 79, 51, 93,224,238, 36,246, 28, 8,112, 41,207, 24, 95, 4, 61,159, 11,146, 43,129,130,192,114,159, 91, 46,148,160,246,
+151,207,221, 94, 50,184,253, 99,122,204,207,247,145, 65,136, 1,116,252,195, 47, 6, 22, 18,147, 22, 37, 0, 82, 7,144,161, 17,
+ 62, 19, 64, 82,243, 31, 79,235, 21, 43, 0,150,236, 18,121,121, 19,118,237,186,215,188, 33,148, 85, 88, 0,124,160,219,247,111,
+127,242, 75, 42,153,185,132,182, 45,156,121, 81,132,209,141,148,195,124,254,254,253, 67,204, 28, 24,145, 67, 61,184,124,119,235,
+214, 45, 32,169,161,161,241,246,237, 91, 22, 22, 22, 96,169, 45, 44, 44,204, 0, 59,159,142,141,141, 13,210,105,195,170,247,212,
+169, 83,255,254, 48, 90, 89,235, 3,123,120, 64,149,191,126,253,146,145,145,129, 72,125,252,248, 17,216,209, 1, 26,194,206,206,
+142,167,221, 9,169, 27,144, 25,163, 67, 64,196, 3,128, 0, 98,161,145,185,228, 23,202,202, 74, 74, 57,153,116,243, 63,217, 23,
+112, 99, 86, 3,100,216, 75,158,117,120, 92, 75,235, 51,224,192, 13,124, 6,240, 97, 60,200,130,161, 36, 25,194,244, 79,246,243,
+ 7,217,129, 74,241,228, 29, 13, 6,108,245, 19, 28,193,199, 10, 72,210, 5, 44,245,184,184,184, 2, 3, 3, 33, 71, 58, 63,130,
+ 29,233,124,116,239,110,200,145,206,206, 22,206,184,244,206,126,223,158, 42, 88,137, 34,132,247,244, 80, 92,117, 0, 25,126, 52,
+ 53, 53,133, 44,249,255,247,239, 31,176, 4, 7, 50, 94,191,126, 13, 36,121,120, 64,171,156, 33, 34,172,172,172, 88,253,235,227,
+227, 3, 81, 0,212,251,227, 7,120, 31, 37,120, 89, 23,100, 85, 24, 68, 4, 88, 49, 96,237, 1,140, 46,242, 33, 6,224,191,245,
+ 29, 32,128, 70, 47,133, 31, 5,163, 96, 20,140,130, 17, 10, 0, 2,104,244, 70,176, 81, 48, 10, 70,193, 40, 24,161, 0, 32,128,
+ 70, 43,128, 81, 48, 10, 70,193, 40, 24,161, 0, 32,128, 70, 43,128, 81, 48, 10, 70,193, 40, 24,161, 0, 32,128, 88, 70,131, 96,
+ 8, 1, 67, 28,247,251,224, 2,231, 71, 39,120, 70,193, 40, 24, 5,184, 1, 64, 0,209,240, 82,120, 58,232,101, 99,219,197,201,
+254,130,149,237,195,191,127,160, 37,137,204,204, 76, 76,140,204, 32, 18,180,110,152,233, 63, 35, 11,136, 98,248,179,121, 43,235,
+255,255,255,245,244, 18, 6,131,155, 41,209, 43, 67,202,178,135, 39,168,203,224, 70, 47,209, 30,213, 59,170,119,100,234,197, 3,
+ 0, 2,104,104,247, 0, 14, 29,185, 99,102,242, 91, 80,128,225,221,123,198,243, 23, 57, 88,152, 88,188,220,255,238,222, 47, 10,
+ 44,246, 25,153,152, 56,120, 25,156,204, 62, 48, 48,176,216, 88,254, 63,117,134,128, 79,247, 31, 3, 29,106,207,250,255,183,185,
+173,211,199,151,143, 46,223,126,248,247,219, 15,250,220,172, 59,210,192,245,155,231,126,253,248,198,203, 43, 69,235,203,147,169,
+ 8, 20, 21, 21, 33, 71,249, 67, 78, 84, 38, 73, 47,242, 73,136,228,173, 37, 29, 5,163,128, 70, 0, 32,128,208,139,197,133,139,
+230,226,215, 16, 31,151,140, 75,138, 18,189,100,131, 83,103, 88, 61, 92,255, 94,188,196,201,198,202,194,194,204,194,202,250,159,
+157,249, 55, 3, 11, 47, 11,195,119, 51,237, 63, 28,108,236,255, 25, 24, 36,197, 25,252,188,254,221,188,135,175,244,191,115,253,
+150,138,150,178,148,180,192,147,135, 55, 88, 57, 69,180, 52,212,182,111,220,184,103,207, 30, 90,215, 1,116,190, 80,126, 96,193,
+165,139,123, 20,100,126,234, 42,255,255,247,239,239,199,143, 79,110, 92, 57,243,229,167,164,137,177,237,224,119, 57,176,244, 47,
+ 40, 40, 0,118, 40,241, 28,230,140, 7,144,121,161,252,200, 0,248,143, 10,102, 0, 7,220, 44,108,167, 88,195, 47,133,135,169,
+250, 15,219,159,136, 8,237, 17,126, 41, 60, 4, 32, 95, 3,137,182,238, 31, 32,128,232,215, 3, 96, 98,160,254,102,110, 47,183,
+223,255, 25,152, 89,152, 89,173,204, 25,197, 68,153, 88, 88,152,216, 89,153, 53,212,152, 30, 62,254, 99,102,204, 36, 44,196,177,
+125, 31,232, 76, 65,230,255,223,255,255,255, 39, 33,141,179,244,191,116,230,140,130,148,204,165,227, 39, 78,254,250,253,254,205,
+123, 54,118, 94, 77, 67,107,125,107,183,253,155, 65, 59,132,105, 84, 7,160, 93, 40, 15, 57,139, 49, 37, 37,101,240, 87, 3, 23,
+206,239, 97,103,121,199,194,244,235,199,143,191, 31,191,114,218,216, 17, 62,185,247,218,141,115,188, 28,111,157,172,217, 21,228,
+149,249,248,248,127,255,249,243,250,245, 27,241, 71,143,111,223,189,119,236,232, 59, 43,107,127, 34,173,134, 23,190,132, 75, 13,
+170, 54,255, 25, 96,199, 41, 3, 43, 0, 60, 55,186, 12, 54, 0,108,193,172, 93,187, 22,229,248, 35, 26,150,134,176, 11, 88, 73,
+213,246,104, 29,227,201, 20, 88, 33,206, 0,187,108, 13, 97, 82,202,140,175,102,225,147,177, 86,171,219,183,111,135,176, 61, 60,
+ 60,118,236,216,129,149, 61, 90,250, 99,114,225,213, 0, 64, 0, 97,175, 0,142, 30, 57,105,109, 99, 78, 93,119,252, 35,116, 51,
+ 23,145, 55, 52,161, 84, 42, 44,204,239,223,177, 72,136,177, 74,136,177,125,249,194,202,193,202,242,151,133,221, 72,151,209, 64,
+143,153,137,145, 21,180,137,156,149,141,149,233, 39, 35, 7,219,159,111, 56, 75,255, 35,251,246, 42, 74,138, 94,185,120,165,186,
+185, 1, 46,222,218,216,198,196,204,104,100,108,180,125,199, 94,130, 21,192,191,127,255,128,133,248,157, 59,119, 56, 57, 57,117,
+117,117, 9,158, 93,195,128,113,161, 60,252,182,213, 57,115,230, 12, 84, 29,112,254,252,121, 67, 67, 67,252,106,174, 92, 59,247,
+255,231, 3,121,201, 31,252,124,236, 76, 76, 92,223,191,255,121,251,238,251,193, 61, 19, 56,248,140,204,205,236,240,104,228, 96,
+126,173,166,248, 95, 91, 91,243,249,139,247,103,207,159,251,242,229, 43, 63, 63,175,146,146, 60, 19, 51,235,223,191,143,206, 95,
+ 56, 98,104, 96, 51,152,155,255,240,219, 93,128,253, 0, 96, 29, 64,228,181, 42, 24, 13, 89,122,247, 0, 32, 73,119,205,154, 53,
+228,221,171, 69, 60,128, 55,198,103,206,156, 65,170, 61, 76,242,193, 16,189,167,218,121,208, 26,137, 18, 2, 76,210, 66, 76,131,
+ 39, 60,135, 46,128,151,248,104,245, 1, 64, 0,225,236, 1, 0,235, 0, 32, 73,106, 53,112, 36,239, 54, 86,113,155, 73,170,196,
+231, 16, 72, 15,142,152,106, 96,207, 1, 49, 86, 22, 86, 89,169, 47,159, 63,179,158,189, 34, 11,186, 50,149,145,153,141,245,143,
+182,234, 55,117, 85,102, 70, 6, 38, 54, 86,118, 54,102, 70, 99,189, 95, 66,130,255, 14,157,198,110,136,166,162,248,195,187,175,
+144, 75,127, 32,168,174,175,106,107,238,146,180,212, 19, 20,224,197,239,134,239,223,191, 3, 75,132,135, 15, 31, 66,184,192,166,
+135,151,151,151,191, 63,129, 38, 45,218,141,146,200,160,183,183,183,184,184,152,206,219,220,129,165, 63,252, 74, 13, 60,224,231,
+215,167,138,210,223, 69,132,185,101,164, 37,184,184,185, 30, 62,124,250,247,239, 63,105, 41,222,171,215,143, 95,224,228, 54,208,
+197,126,241,195,229,203, 71,244,212,126,201,201, 41, 94,187,254,240,236,217,235,175,223,124, 6,198,179,160, 32,231,183,111, 95,
+ 12, 13,181, 63,124,248,248,244,236,249,139,151, 57,245,117,141, 7, 97,206, 65,187,220,145,224,181,142,200, 35, 27,104, 71, 25,
+ 3,217,240,142, 11, 25,227, 72,205,205,205,190,190,190,164,158,214, 0,172, 3,128,246,174, 90,181, 10,215,113,108, 12,224,179,
+148,209,122, 6,144, 43, 33,129,226,104,109, 2, 96, 65,143,121,118, 0,252,120, 37,160,127,211,211, 51, 72,234,100, 32,235, 53,
+171,252,114,186,157, 7, 94,244,143,150,218,212,106,254, 35, 71, 25, 90,244, 1, 4, 16,129, 33, 32, 82,171, 1, 96, 65,143, 89,
+ 7, 16, 89,250, 67,192,193,131, 7,159, 62, 5,221,150, 46, 45, 45, 77,176, 60, 98,254,255,157,133,241, 47, 27, 43,235,249, 43,
+162,204, 44, 44,188,172, 95, 65,211, 0, 60, 76, 79,159,242,234,105,255, 3,166,251, 80,191, 63,255,255, 49, 49, 48,178, 51,226,
+232,127,124,251,240,248,197,187, 47,197,117,117,152, 82, 31, 62,190,123,255,250, 5, 35,161,142,203,234,213,171,225,165, 63, 4,
+108,219,182, 77, 77, 77, 77, 83, 83, 19, 79,243, 31,249,252,103, 72,243,255,227,199,143,112,145,250,250,122,160, 26,186,117, 2,
+ 32,165, 63, 65,101,192,230, 63, 7,203,115, 78, 78, 1, 14,118, 54, 69, 69, 5, 89, 5,133, 79,159, 14,188,123,247,133,141,141,
+ 89, 72,144,227,233,227, 7,184, 42, 0,150,255, 79,121,121,132,191,125,255,115,229,202,237,103, 47, 62, 62,127,241,229,251, 79,
+ 14, 57,233, 63, 28,236,204,183,111,221, 83, 81, 86,126,246,252,211, 29,208, 9, 48,198, 4, 71,126,200, 27, 11,194, 90,218, 18,
+ 57,136, 4, 25,253, 71, 22,193,127,173, 35, 74,219, 22,181,204, 69, 30,173, 38,175, 3, 1, 44,148, 73, 61,175,109,239,222,189,
+192, 36, 26, 26, 26,138, 54, 22,132,167,255,135,121, 33, 48, 90, 63, 21,107,187, 13,232, 48,136, 46, 50,122, 69,171, 10,185,195,
+250,191,162, 21,253,192,182, 63,216,185,248,134,142, 61, 60, 60,224,157, 27, 79, 79, 79,184, 7, 71, 71,126,136, 4, 0, 1, 68,
+212, 28, 0,121,189, 1,178,193,237,219,160, 42, 4, 88, 13, 16,172, 3, 88, 88, 88, 88,153, 89, 89, 89, 25,237,172, 25,190,125,
+253,121,255, 46, 27,176, 67,192,242,151,197,194,252, 63,176, 86, 96,102,102, 98,248,207,248,238, 61,195,233,115, 44,160,155, 64,
+176, 53, 41,206,157,191,251,229,203, 47, 76,241,142,250,122,118,118,142,239,223, 63,254,253, 71,224, 62,225,115,231,206, 97, 10,
+158, 61,123, 22, 79, 5,128,214,252, 71,206,207,155, 55,111,134,171,161, 81, 39, 0,109,168, 7, 94,250, 67, 46,255,195, 3,222,
+191,123, 37,194,203,248,231,239,191, 95,191,255,188,126,243,142,149,141,227,231,207,223,191,255,252,253,243,231,223,159,191,255,
+ 63,188,127,131, 75, 35, 27,235, 87, 14, 78,153,183,111, 63,126,250,252,237,221,251,239,124,194,250, 86,122,122,167,142,238,144,
+250,245,231,227,167,143,234,234,202,236,108, 44, 95, 63,191, 27,156,205,127, 96,153,130,118,153, 34,176, 7, 64,228, 76, 0,176,
+230,192,188, 3, 18,126,172, 52, 46, 0,191, 92, 33, 35, 67,200,217, 25,113,250, 27,164, 97,180,105,211,166, 55,111,222, 16, 57,
+ 47,181,103,207, 30, 72,233, 15, 81, 15,172, 3,112,149,194,200,253, 63,204, 11,129, 33,226,144,107,129,177,154, 0,169,150, 32,
+117, 0,252,110, 22, 52,128, 43, 61, 3,157, 23, 98,185,103, 37, 3, 67,120,255, 87,211,202, 47, 88,245,154,133, 99,247, 32,242,
+ 88, 63,174,249,128,209, 82, 30,121,228, 7,173, 7, 0, 16, 64,212,239,103,161,181,247, 73,106,254, 35,183,130,129,213, 0, 48,
+243,224, 63,211,149,153,153,197,194,236, 31, 51, 19,203,233, 51, 28, 55,111,115,120,187, 51,248,120, 50,248,122, 48, 74,138,179,
+113,176,177, 3, 17, 39, 7,187,180, 36,144,193, 1,100, 99, 53,161,182,186,166,179,189, 9, 51,219, 40, 43,202,243, 11,112,115,
+252,251,245,229,219,111, 90,196,199, 17, 48,128, 23,250,112, 0,228,190,125,251, 22,216,211,167, 93, 99, 31,152, 15,225, 77, 57,
+ 8, 23,210, 19, 39,216,174,252,251,151,225,235,183,223, 95,191,254,250,244,233,231,203,151,239,159, 61,123,243,249,243,207, 47,
+ 95,126, 3,107,208,175, 95,127,127,252,240, 17,231,192,209,207, 63, 63,126,252,253,253,251, 23, 47, 47,155,172, 52, 31, 23, 55,
+ 55, 3,232,216, 87, 5, 25, 41, 62,126, 62,142,255,255,255,254,254,243,239,231,207,175,131, 48,219, 0,155,255, 69, 69, 69, 88,
+ 75,118,200,170, 80, 60, 0,243, 46, 73, 8, 0, 10,238, 33,238,212,110,240,136, 10, 2, 64, 10, 95, 96, 53, 0, 44,211,137, 57,
+235, 24,216,246, 95,179,102, 13,188,244, 7,146, 33, 33, 33,184,138,111,160,225,152, 87, 66, 66,218, 4,112,113,160,123, 8, 29,
+166,253, 31,109, 32, 23,179,247,131, 9, 68, 68, 68, 24, 97,237,124, 82,245,142, 2,146, 74,127, 6,140, 57, 0,128, 0, 34,170,
+ 7, 64,183,182, 63,172,160,249, 11,185, 84,154,176,195,204,254,137,137,178,127,250,196,194,206,242,135,157,141,249,192, 73, 54,
+111, 71, 86, 96,219,255,211, 39,214,163,103,184,249, 56, 64, 87, 73,120,184,252,242,247,254,207,196,244,127,193, 90,162,108, 7,
+102, 78,102, 46,142,119,172, 34, 92,191,159,220,121,250,223,201,193, 14,191,122, 96,107,250,216,177, 99,104,130, 4,175, 65,134,
+ 92,234,189, 96,193,130,132,132, 4,136, 8,252, 94, 73,160, 8,254,107, 14, 41, 1,144,182, 63,164,153, 6, 95, 33,135, 57,212,
+139, 21, 8, 10,137, 62,187,127, 5, 24,206,191,126,255,251,241,243,201,227, 39,111,223,189,255,244,238,221,183,183,239,190, 3,
+145,128,144, 2, 46,141, 47,223,252,127,241,242,141,166,166,242,135,247,239, 89, 89,152, 62,125,126,242,245,195, 63, 45,149,175,
+226,162,162, 92, 92, 92,236,236,156,207, 95,124,102,100,198,119,161, 21,230,208, 57, 73,171,128, 40, 89, 50,132,245, 26,119,200,
+ 76, 0,126,141,144,254, 1,252, 46, 73,120,205,193, 64,202,149, 50, 97, 97, 97,240, 22, 49,228,214, 10, 96,172, 5, 7, 7, 3,
+171, 31,252,155,125,208,218,254, 16,128,220,159, 64, 6,184,174,132,132,136, 3, 83, 11,228,238,117,136,248, 99,108,246, 2,213,
+100,101,101, 66,110,215, 1, 87, 27,255, 33, 69, 58, 80, 23,196,253,120,106, 14,160,222,169,142,130,225, 19,190, 65,198,130,224,
+226, 64, 17,136,222, 36, 71,214,209, 66,156, 18,144, 86,222,129, 24, 14,237,172, 0,214, 1,240,126, 0, 64, 0,177,208,162,232,
+135,207, 4,144,212,252, 71,106,215, 51, 35,143,241,225,185, 71, 76, 68,132,153,137,145, 89, 84,132, 89, 85,249,255,179,103, 44,
+ 76,204,140,172, 44, 44,172, 44,172,151, 46,115, 11,113,179, 2,205,177, 54,255,203,201,201,254,239,223,127,134,255,127,137,177,
+ 26,152,109,120,196,101, 95,126,249,255,245,206, 1, 22, 70,230,210,250,106, 98,178,232, 99, 48, 64,118, 51,158,241, 31, 6,240,
+122,127, 72,113, 15, 41,253,129,237,125, 96, 77, 0,145,250,244,233, 19,176,244,223,178,101, 11, 49, 23,202,147, 7, 32, 23, 63,
+ 1,131, 20, 50, 69, 73, 76,219, 31, 2,244,117,141,175, 95, 57,251,255,233,167,111,223,127,191,103,255,241,159,225,253,143, 31,
+127,128,189,129, 87,111,190, 61,123,254,197,214, 81, 30,151,198,239,191, 68,238,221,127,173,164, 40,167,168, 40,243,246,237, 27,
+ 65,129,191,170,170,252, 98,162, 74, 28,156,156, 31, 62,124, 57,123,238,198,147,167,159, 36,100,180, 7, 79,134,249, 15,190,237,
+ 18, 82,240,194,203, 95,172,107,249,177,140, 86, 32,173, 96, 4,118, 2,224,119, 73, 66, 64, 95, 95,223,174, 93,187,112,233,133,
+196, 72,122,186, 32,204,186,255,200, 69, 54,164, 2, 0,182,226,241,140,255, 32, 13, 31,237, 37,233,118, 35, 92, 87, 66, 66,196,
+ 33,197, 55,174, 66, 28, 50, 10, 63,109, 26,104,224, 8, 92, 73,232,195, 7,238, 97, 45,122,156, 55, 13, 64,244, 50,133,189,135,
+232, 13,117, 82,128, 7, 76, 88,255, 53, 6, 6, 6,252,173,255,209, 57, 0, 10, 1, 64, 0,177, 12,146, 86, 63, 4, 68, 68, 68,
+144,164, 30,216,192,103,102, 6, 33, 77, 53, 38, 67,221,191,236,108, 28,160, 10,128,149,213,202,156,129,157,157,129,149,153, 93,
+ 68,132,131,153,249,235,223,191,255,254,253, 35,106, 36,231,219,187, 23, 28, 50, 26,247,247, 44, 17,101, 97,138,173,174, 34, 70,
+ 11, 39, 39,103, 85, 85, 21, 73,203, 64, 33,183,207,231,228,228, 64,184,144,246, 62,176,232,255,246,237, 91, 82, 82, 18,144, 61,
+109,218, 52,218,173, 2,130, 92,254, 7,191, 67,149,164, 25, 69, 25,121,245, 51, 39,118,138,137, 0, 27,238, 44,224,177,157,191,
+159, 62,255,122,247,254,187,172,162,182,141,149, 61, 46, 93, 94, 94,193,187,182,207, 63,113,234,170,173,181,190,188,188,252,239,
+ 95, 63, 12, 13,244,184,249,249, 31,222,123,244,244,217,135,163,199,175,191,255,204, 31,104,105, 63,120,114, 69,102, 6,100,128,
+133, 49, 19, 88, 32,130, 11,244,127, 72,229, 62, 19, 19, 35,158, 11,214, 65,151,179,255,135, 23,128,140,192,148, 7,239, 4, 0,
+ 25,192,210,202,195,195, 29, 86,201, 48,120, 71,215, 98,142,117,224, 42,181,129,178,248, 75,127,100, 0, 84,137,171,189,143, 39,
+ 85, 96, 94, 9, 9, 23,199, 51,249, 12,175, 57,128,229, 47,184,249,207,136, 92,127,224,183, 23, 89,239,170, 66, 30, 80,184,112,
+136, 67,164, 86, 21, 62,130, 84, 6, 59, 47,254,198, 21, 32,200,227,254,163,115, 0,100, 0,128, 0,194, 94, 1, 88, 89,155, 81,
+ 56,238, 70, 94,219, 31, 30,109, 68,130,119,239, 25, 37,197,153, 32, 7, 63,236,218, 11, 26,232,103,103,231, 96,103, 99,247,245,
+100, 4, 82,156, 28,140,239,222, 50,159, 58,203,251,247,223, 95, 89, 25,194, 67,204,192,230,255,135,111,223,223,159,217,166, 42,
+203,122,229, 41, 9, 67,210,192,122,200, 12, 12,136,215, 2,190, 80,190, 19, 50,218, 3,236, 13,152,155,155, 3, 91,139,254,254,
+254, 64,118,108,108, 44,237,154,255,240,129, 32, 72,107,142,152,145, 31,148,104, 5,151,242,183,110, 92,123,118,239, 33,176, 28,
+252,251,247, 63, 7,167,144,154,166, 78, 96, 0,129, 75,193,196,164,245, 78,156,218, 1,236, 49,232,234, 40, 73, 75,137, 60,122,
+252,242,253,229,187, 55,111, 61,218,187,239,210,195,167,255, 83, 82,115,233, 48,152, 67, 60,248,183, 82,144,120, 89,223, 77,120,
+245,222,157, 15,239, 4,128, 70,141,238, 45, 64, 86,128,166, 23,107,135, 0,185,172, 36,201, 23,164,102, 97, 92, 87, 66, 18,115,
+ 85, 36,188,160, 71, 83, 70, 76,243,226,223,195,181,107, 38,196,129,186, 47, 78,114,240,210, 31,196,245, 50, 5,143,150, 94,192,
+ 85, 1,140,238, 3, 32, 18,204,234,172, 64, 30, 5, 66, 6, 0, 1,196, 66,149,164, 67, 21, 64, 70,155,247,204, 57,118, 14, 54,
+ 54, 95, 47, 96, 13,192,104,102,242,231,242, 21, 78, 38,240, 21,210, 31, 62, 48, 73, 73, 48, 51, 49,178, 93,188,204,198,193,206,
+240,235,247,175,135,143, 56, 9,150,254,119,111,157, 55,119,246, 97, 17, 49,191,123,235, 20,203,139, 53,101,165,149, 93,221,237,
+ 52,242, 44,242,133,242, 58, 58, 58,239,223,191, 7,178,129,100, 94, 94, 30,125,118,129,145, 90,244, 35,215, 1, 64,116,225,242,
+217,151, 47, 94,114,115,115,227,105,248,163, 20, 4,122,198, 64,180,116,201,204,107, 55, 79, 74,138,243,112,112,176,126,249,242,
+235,233,243, 79,140, 44,178, 41,169,113,195, 57,243,157, 43,102, 80, 78, 68, 44, 36, 61, 91, 68,187, 18, 28, 60, 74, 35, 4,171,
+ 54,200, 41, 28,113,149,215, 4,203,113,242,238,146,132,123, 51,212,146, 29,228,224,239,207, 65,104, 20, 80, 15,248,196,212, 66,
+102,125,129,117, 0,178, 32,156, 13, 16, 64,232, 21, 0, 37,199,245,208,226,168, 31,194,169,135,129,241,253,123, 70, 46, 9, 70,
+ 97, 33, 70, 19,163,223, 28,108,204,236,108,191,133,133, 56,192,121,128,209,194,228,239,169,115,172,160, 46, 2,222,188, 4, 44,
+253,181,213,249,138,243,155,190,179,201,172,219,243, 84, 89, 13,212,150,231, 57,189,165,184,164,178,183,135,134,117, 0,228, 66,
+121, 96,147, 31,222, 45, 24, 42,215,156,130,150,252,235,146,172, 43, 58, 38,253,200,177,131,175,223,190,254,254,226, 27, 7,135,
+176,140,162, 30,145,245,199, 96, 0,255,255,255, 99, 32,239, 56,147,123, 11,160,203,129,238, 45,164,181, 35, 73, 26,246, 25, 36,
+192,205, 39,156, 96, 91, 30, 87,231,122,116, 14,128,248, 58, 0,179,244, 7, 2,128, 0, 26,242,247, 1,252,103, 0,173,240, 97,
+100, 2,198,252,127, 33,129,255, 7,143,176,112,128,182,255,178,248,121, 1, 19,195, 63, 65,225, 63,127,254, 50,254,251,247, 23,
+156,123,113, 2, 61,133, 47,222,193,161, 95, 88, 84,197,120,184,163, 2,133,150,173,191, 12,169, 3,126,255, 93, 71,107,247,147,
+113,161,252,144, 6, 67,162,196,159,245,190, 35, 77,176, 2, 69,104,181, 16,249,122,129,173,126, 82, 26,254, 35, 13,132,100, 79,
+161,219,152,193,136,173, 3,112, 73, 1, 4,208,232,165,240, 67, 9,140, 94, 8, 51, 10, 70,193, 40,160, 34, 0, 8,160,209, 27,
+193,134, 18, 24, 45,208, 71,193, 40, 24, 5, 84, 4, 0, 1, 52,122,226,210, 40, 24, 5,163, 96, 20,140, 80, 0, 16, 64,163, 21,
+192, 40, 24, 5,163, 96, 20,140, 80, 0, 16, 64,163, 21,192, 40, 24, 5,163, 96, 20,140, 80, 0, 16, 64, 3,127, 41,188,189,153,
+ 52, 46,149, 95,223,189,128, 48,184,133, 36, 32,140,131,167,158, 34, 43,248, 41, 42,142, 75,239,238,126,232, 62, 91,215, 66,232,
+ 26, 3,246,215, 47,137,180, 23, 19, 16,111, 47, 38, 64,179,215,196, 80, 10,151,202, 55,247,175, 66, 24, 34,138,208,115, 17,206,
+156,127, 70, 45,255,122,236,198,126,124, 49,191,148, 84, 44,248,252, 47, 32,152, 34, 14, 53,127,135,107, 26,181,226, 23, 89,239,
+205,155, 55,145,207, 71, 43, 44, 44, 84, 87, 87,167, 81,186, 26,213, 75, 21,189,151, 47, 95,134, 48,116,117,117, 73,213,139,121,
+197,211,104, 56, 15,136, 94, 60, 0, 32,128,176, 79, 2,255,249,243,231,199,143, 31,140,204,160, 75,181,254,254,249,205,198,202,
+194,206,206, 78,106,221, 2, 52,132, 1,124, 98, 51, 73,186,128,133, 62,176,184,135, 20,253, 18,178, 10, 64,242,197,227, 7, 68,
+234, 5, 22,130,192,226, 15, 82, 20, 78,221,116, 10, 72,102,251,153, 49, 12,110, 0, 44,244,129,197, 61,164,232,215, 54,177, 6,
+146, 87,207, 28,165,181,127, 55,127,249,178,243,235, 87,119,110,110, 32,201,240,242,229,169,242, 50,160,160, 89,103, 23, 77,125,
+122,224,192,129, 21, 43, 86, 0,211, 21, 92,132,131,131, 35, 34, 34,194,193,193, 97,180, 33, 54,168, 0,176,208, 7, 22,247,144,
+162,159,212, 52, 9, 57,185, 11, 82,244,147,148, 38,145,207, 55, 37,111,125, 39, 25, 87, 10,142, 2,128, 0,194, 82, 58,127,250,
+252, 69, 82,205,212, 94, 87,131,139,157,245,255,255,255,127,255,254,191,114,251,225,253, 75,135, 57,217, 89,137, 60,164, 19, 8,
+120, 56, 30,104,171,222,187,114, 75,233,235, 79, 5,226,139,126, 32,201,201, 47, 12,100, 64,138,126,172,189, 1, 60,237, 95,179,
+232, 10, 32, 3,146,236, 48,101,177, 46,120, 69, 54,150,141,141,141, 1,188,191, 28,116,121, 0,248, 80, 82,136,123,152,152, 89,
+241, 55,186,129, 64, 82, 12,212,118,254,245,233,195, 79,112,181,247,229,207, 95,136,123,248,197,100,240,183,247,249,165,148,129,
+ 12, 72, 54,195,214, 27, 16,164,174,127,129, 32,231, 37,168,103, 0, 41,253, 33, 69, 63,168,109,190,107, 55,178,172, 15,222,152,
+250,200,253,230, 45,207,235, 15,111,239,136, 9,104,202,188, 81, 33, 38,114,129,109,255,149, 43, 87, 34,151,254, 64, 0,228,114,
+114,114, 74, 74, 74,162,245, 3,134, 55,216,179,103, 15, 73,183, 76,227, 57, 12,145, 22, 69, 63, 36, 77, 2, 25,152,105, 18,214,
+ 27, 16,196, 83,254, 2,211, 36,144,129,153, 38, 33,178,184,210, 36, 80,246,208,241, 83,204,204, 44,127,255,254,249,248,249, 75,
+ 84,176,127, 79, 79, 15,121,165, 63,157, 67,108,144,131, 45,216, 22,142, 35,199, 2, 64, 0,161, 87, 0, 95,191,255,114,246,139,
+146, 21,227,231,226, 0, 93,162,242,247, 31, 3, 11, 51,163, 16,191,134,182,170,220,158,157, 91,255,254,254, 74, 76, 29,240,235,
+215, 47, 77,237,251,250, 26,247,153,153,254, 30, 56, 35,205,198, 74,248, 52, 87, 96, 65, 12, 44,106,249,249, 64,247, 47, 66, 72,
+ 52, 89, 96,149,128,171, 43, 0, 44,239,128,201, 46, 62, 60, 8,200,134,144,104,178,192,228, 72,176, 25, 2,244,151,140,140, 12,
+144, 4, 58,254,235,215,175,192,210, 31,114, 98, 51, 81,181, 29, 11,243,188, 9,235,217,249, 25, 94, 62, 96, 56,253,229,233,235,
+ 23,119, 22,247, 87, 18,108,248, 3,179,153,140, 20,104,104, 11, 66, 98, 29, 11, 34,207,191,120,206, 1, 0,150,239,192,162,191,
+ 57, 39, 27,200,110,134, 21,253, 75,110,221, 66,148,254,132, 14, 17,120,240,255, 48,131,217,211, 8,185,152,159,255, 84,216,255,
+253,191,254,102,239,249,221, 55, 85,254,101,225,247,111,127,127,255,247,239,223,145,143,191,134,176,129,130,192,126, 0,169,167,
+220, 92,191,126,125,226,196,137,180,188,223,156,134,165,255,170, 85,171,222,191,119, 93,189, 58,148, 24,245,144,211,249,233, 83,
+162, 1,203,119, 96,154,188,117,254, 24,176,232, 71, 78,147,251,182,174, 19, 23, 23,135,143, 5,225, 42,127,241,164, 73, 80,233,
+ 12, 63, 94, 21, 3, 0,227,241,197,171, 55,231,175, 92,131, 53, 11,126,118, 77,158,149,158, 16, 57, 90,136,211, 1, 0, 4, 16,
+202, 36,240,231,207,159,109,220, 2, 53,228,132,217, 89,153,128,165,255,139, 23, 47, 46, 95, 60,255,235, 15,144,249, 95,152,159,
+203,205,211,231,251,207, 63,196, 24,202,206,250, 74, 89,238, 5, 3, 51,163,150,234, 99,118,150,151, 36,149,254, 40, 45,205, 79,
+159,129,133, 62, 80, 10,179, 67,128,181, 52, 68, 6, 11, 87,174, 3, 22,250, 64, 41,204,198, 8, 26, 0, 54,252,129,229, 62, 31,
+ 31,223,189,123,247,128,133, 62,168,218, 35,186,244, 7, 54,252,129,165,127, 96,110,139,103,148,213,150, 43, 79, 95,124,103, 32,
+181,244, 71, 6, 79,158,189, 0,246,181, 69, 5,249,192, 85, 51, 51, 25,254,245, 8,142, 7,181,208, 88, 88, 9,150,254, 64, 80,
+ 59,101, 42, 16, 65, 74,127, 96,111,160,212, 13,220,238, 23,101,195, 87, 30,241,111,115, 11,145, 74,148,207, 98,101,226,225,102,
+224, 98, 98, 96,150, 22,183,182, 9,118,190, 39,213,143,127,240, 7,228,194,133, 11, 33,229, 62, 26, 9, 87, 64, 12,248,246,237,
+ 27, 65, 17, 26,129,180,180,180,208,208,213, 75,151, 46,165,188,244, 23, 18,218, 67,164,150,153, 96,192,200,200,120, 30, 54, 79,
+ 67,211,210,191,181,170,112,245,234,213,115, 38,247, 32,151,254, 64,145, 41, 83,166,224, 73,147,200,165, 63,102,154,244,180, 6,
+159, 58,197,203,141, 75,111,239,228,233,144,210,255,213,155,183, 64, 4,236, 1,176,178,178, 76, 95,176,156,152, 75,111, 70, 1,
+ 49, 0,216,228, 71, 70,200, 82, 0, 1,132,168, 0,128,165,158,176,130,158,130,132,192,143,223,127,129,181,245,206,157, 59, 22,
+ 45, 92,112,233,226,197,210,162, 2,102,102, 38, 96, 95,128,143,139, 93, 65,207, 6,216,100,195,111,217,239,223,191,181, 85, 31,
+242,241,124,155,183,240, 21, 19,227,127, 51,221,155, 64, 17,130, 78, 68, 43,253, 33, 69,255,247,143,111,225, 21, 3, 80, 4,151,
+ 94,180,148, 7, 73,118,167,150,118,192, 19, 37, 80, 4,143,213,202,202,202,194,194,194,159, 62,125, 2,214, 4, 76, 76, 76, 64,
+ 15, 2, 75,127, 72, 71,135,224,105, 92,107, 55,172, 47,152,176,107,253,228, 26, 96, 77,192,197, 45,244,248,239, 83, 96,233,207,
+ 3,206, 39,204,120,245,162,149,254,144,162,255,227,179,187, 26, 50, 98,159,191,253, 96,231, 98,103,248,251,151, 84,255, 86,206,
+222,114,245,220,113, 29, 37,173,143,127,113,214,211,144,210, 31,216,234, 7, 22,253, 16, 17, 96,209, 15, 68,247,210, 27,119, 93,
+187,164,109,166,196,240, 22,103,100, 93,100,219, 98,237, 32, 42,202,173,249,253,255,103,134,159,175,216,126,190,251,249,247,243,
+143,127,223,255,177,241, 72,219,154,172,185,208,134, 75, 35,100,232, 31,114,173, 21, 60,219,195,217, 64, 41,160, 2, 98,210,241,
+155, 55,111,138,138,138,128,109,255, 27, 55,110, 0,185,135, 15, 31,110,107,107,171,169,169,161, 79, 46, 2, 22,220, 84,105,251,
+ 3, 75,255,170, 42,162, 78, 26,135, 23,250,200,247, 50,210, 14, 0,211,100,104, 40,168, 95,114,246,236, 89, 96,185, 15, 76,147,
+144,210,159, 1,124,107, 35,121,105,178, 43,193,231,202,221,199, 18, 74,146, 12, 95, 9,212,211,192,162,255,247,239, 63,224, 2,
+228, 15, 16, 61,126,248,128, 36,199, 35,119, 23, 70,187, 14,196, 3,128, 0, 66, 12, 1,253,252,249,211, 80, 67,131,139,147, 21,
+216,222,255,251,143,225,232,225, 35,141,205, 45,255,254, 51,220,190,115,231,210,197, 11, 58, 58,250,204,204,140,234, 74, 50,247,
+206,253,225,196,123,176, 38, 27,203, 43, 53,133,103, 12, 44,140,143,159,255, 6,146,122, 26, 15, 79, 93,126,245,159,129,216, 37,
+ 55,240,113, 30,180, 62, 1,176, 50, 0,175, 5,122,138, 71, 47,124,156, 7,173, 61, 2, 76,136,160,181, 49,175,177,247, 69,254,
+252,249,195,197,197, 5, 44,250, 5, 5, 5,129,205,201,175, 95, 65, 7, 65,139,138,138,190,125,251,150,224, 25, 85, 63,222, 51,
+152,113,114,150, 78, 62,236,170,207,240,240, 60,195,105,176, 32,144, 59,169,208,241,239, 63,162,174,160,129, 79,175, 57, 27,107,
+176,240, 50,237, 60,112,205, 80, 67,150,143,135,253,224,153, 59, 34,138,218, 15, 80, 87, 1,225,242,239,166,107,255, 25,158, 51,
+248, 57, 51,206,222,114, 79, 88, 80, 49,200,154, 17,143,127, 33, 99, 62, 59,191, 66,207,187,254,223,208,207, 32,253,145, 49,181,
+254,127, 99, 51, 3,211,119,198, 83,109, 83,196,197,177,158,202,253, 67,227,161,188,128,215,167,191, 95,126,190,191,179,248,209,
+178, 35,126,239,181, 82, 28,221,114,121, 56, 5,213, 57, 88, 4, 89,252, 62,158, 94,119,218,212,196, 20,103,103,147,137, 9, 30,
+158,200,108,226,129,136,136, 72,126,126,254,145, 35, 71,118,238,220, 9,170,186,118,238,212,212,212, 12, 12, 12,164, 79, 86, 9,
+ 8,248, 69,173,210, 95, 94, 94,158,200, 66, 13, 94,238, 67, 58, 1,100,159,225, 74, 36,112,242, 14, 2,246,131,129, 21, 0,176,
+220, 55, 6, 51, 24,192,215,219,121,216,155, 64,210,164,174,174,238, 3,188, 43, 76,224,105,242,249,134, 14, 94,109, 14, 30,213,
+130, 85, 29, 41,250, 58, 18,234, 62, 45, 64,239, 96, 93,157, 2,108,219,113,112,128,214,152, 0, 27,254,223,190,253, 32,219,241,
+163,229, 62, 46,128,231, 48, 56,128, 0, 66, 84, 0,255,254,253,227, 98,103,251,245,231, 63, 19, 35, 3, 16,213, 55,181, 0,171,
+129,175, 95,191,188,120,241, 92, 92, 92,226,255,255,127,127,254, 48,112,176,178, 48,179,226, 27, 34, 0, 22,166, 90,202, 79, 68,
+ 4, 63,129,134,252,192, 23,125, 50, 50,254, 55,210,190,125,242,146, 56, 49,203,129, 32,205,124,204,225, 32, 60,205,127,228, 70,
+ 7,102,209, 79,176,249, 15,105, 87,138,137,137, 65,150, 57, 1, 59, 43,144,185, 95,126,126,126, 86, 86,214,199,143, 31,227,159,
+190,152,191,231, 96,138,143,189, 3,152,125,235, 15,104,252, 7,200,112, 80, 99,224,107,217, 95, 88, 98, 69,208,205,192, 70, 22,
+144,148, 19, 19,122,255,243, 39, 11, 31,243,143,215,223,128, 69,163,164,188,204,174,125,167,137,244,111,124,113,235,253,163,123,
+ 89, 94, 48,124, 16,103, 0, 86, 98, 22, 10,138, 78,246,248,150,168, 34,143,248, 47, 9, 79, 89,251,243, 38,131,202, 15,134,147,
+ 44, 12, 60, 44, 12,190,198, 50,190,241,248,186, 74,210, 66,191,126,189, 99,253,243, 27, 88,250, 31, 79,224,183, 11,244,215, 16,
+211,188,178,235,128, 97,232, 87,214, 95, 95,255,104,252,123,253, 18,223, 68, 61,164,196,135,204, 1, 32,179, 73, 2,192, 18,159,
+155,155,251,250,245,235, 92, 96, 16, 29, 29, 77,235, 97, 31, 96,169, 13, 44,250,163,193,128,158,165, 63,218,152, 15,228,226, 20,
+ 58,148,113, 30,193, 49, 74, 74, 74,192, 10, 0, 82,250, 3,219,254,226,146,146, 36,165,201, 52, 95,187, 19,207, 94,241,234,243,
+ 62,221,121,151,129,131, 61, 56, 55, 78, 72,198, 7,111,161,241,247,233,243,151,192,210, 31,210, 3, 0, 2, 82,155,255,152,131,
+ 69,163,149, 1,158,202, 0,185, 14, 0, 8, 32,148, 57,128,255,144, 53, 48,255, 25,128, 69, 63, 19,168,236,102, 88,183,118, 77,
+ 96, 80,136,136,168, 24, 36,211,254, 39,116,200, 56, 51,211, 43,109, 21,232,229,136,122, 58, 92,224,166, 11,131,145,214, 61,160,
+ 56, 49,142, 67, 30,243, 65, 19,135,111, 5,192, 5,144,199,124,208,196,225, 75,227,177,130, 79,159, 62,125,254,252, 25,216, 1,
+ 2, 86,129,175, 95,191,134,140,255, 0,187, 2, 95,190,124, 33, 56, 4,180,126,114,205,129, 43, 12, 31, 31, 48,252,254,206, 48,
+169,220, 17, 50,254,115,238, 60,195,133,231, 71,137, 89, 47,245,241,217, 93, 33,126,110, 97, 33,110,117, 53,205,123,247, 95,223,
+122,250, 86, 78,152,255,231,203, 87,127,126,255,129,111, 5,192,227, 95, 43, 7,127, 27,199,200,245,155, 87,237, 63,180,106, 89,
+ 95,113,112,113,219,165,223, 12,175,223,190,194,227, 95,248,136,127,162,149,121,180,150,252,170,245,251, 46, 93,122,208,119,249,
+236, 10,215, 56,134,185,199,158, 62,125, 13,223, 10,128,101,136,224, 7,251,223, 95,111,126,253, 2, 93,254, 46, 46, 45,171,161,
+169,249,137, 19, 52, 83,242,253,223, 55,166,159, 95, 57,191, 50,191,124,142,189, 2,128, 4,227, 15, 48,128, 15,251,160,173, 8,
+ 34, 18, 0,227,101,201,146, 37,192,106,160,160,160, 0, 88,115, 67,186, 2,131,118,216,135,236,210, 31,185,249, 15,153,123,128,
+119, 2,104, 93, 64, 0,211, 36,154, 8, 60, 77,194,183, 2,224, 73,147,182,166,234, 46,214,106,173, 77, 61,189, 19,182,213, 45,
+217,151,225,100,242, 98,227,182,143,239, 63,225, 42,145,129,226,161,126, 30,144, 97, 31,120, 5, 0, 4,109,245,149,196, 23,226,
+163,197, 61,126,128, 54,250,143,220, 33, 0, 8, 32, 38,228, 30,250,199, 47,223,152,153, 24,129, 21,242,191,255,255,255,252, 3,
+ 77,218, 95,188,112,222,201, 25,116,131,221,223,255,255,153,153,152, 63,127,251,245,231,215, 79,156, 53,249,223,191,138,210,207,
+ 69,133, 62, 66, 42, 19, 43, 51, 30,200,229,170,192, 78,128,161,230,157, 63,127,255, 18,211,252,199, 58, 21, 76,108,115, 24,219,
+ 52, 20, 65,189,130,130,130,192,114, 31,216, 3, 0, 86, 3,162,162,162,144, 9, 97, 96,241,244,225,195, 7,130, 21, 64, 90,235,
+ 10, 96,185,207,175,192, 0,172, 6,242, 58,247, 3, 75,255,160,252,246, 39,255, 94, 44,237, 43, 3,134, 36, 49,205,127, 99, 99,
+ 53, 81, 37, 5, 49, 81, 17, 54, 96,200, 51,254,127,253,245,251,251,207, 63,136,244,111,111,199,134, 0, 77, 69, 62, 62, 97, 46,
+ 81,169,223,239,222,159,223,178,252,195,187, 71, 68,166,137,121, 29, 57, 12,133, 46, 44,127,126, 41,124,101,120,197,252,105,210,
+243,211, 12,108,124, 4,198,187,238,126,122,195,244,253, 17,219, 55, 19, 21, 71,173, 56,158,123,130, 7, 68, 69,207,203, 90,220,
+251,200,244,249,231,255,239,223,150,252,227,224,225,197,211,246,167, 10,120,248,240, 33,144, 4, 54,198, 69, 68, 68, 2, 3, 3,
+ 33,173, 84,218,129,244,116, 65,204,145, 31,226,103,131,201, 46,253,145, 11,122,120, 37, 4,185,177,157,166,254, 5,166,201,227,
+199,143, 67,198,253,141,141,141, 25,192, 23, 17,175,220,180,141,248, 52,185,113,125,131,123,121,174,151,151,179, 8, 59,243,103,
+198,255, 59,111, 61, 62,126,229, 41,193,226, 59, 51, 33,242,222,157, 59,192,134, 63, 4, 1, 75,127,172,237,250, 81, 64, 94,209,
+143,107,252, 7, 8, 0, 2, 8, 49, 44, 3, 44, 1,111, 95,187,164, 32, 37,196,201,202,242,247,239, 63,240, 21,205, 12,105,233,
+217,192, 46,193, 95,240,110,128,111, 63,126, 92,191,117,143,141, 13,231,160,200,159,223,239, 12,181,238,195, 51,125, 86,225,253,
+181, 75, 84, 33,125, 6, 19,157,187, 39, 46,106,178, 48,139, 18,108,254,163, 21,253, 64, 65, 6,164,157,192,248,155,255,104,201,
+ 17, 40,200,128,180, 51, 22, 23,248,251,247,175,132,132, 4,176, 7,240,242,229, 75, 32, 27, 88,178,188,125,251, 22, 72, 66,110,
+169,198,175,247,245,139, 59, 53, 45,251,129, 61,128,238, 98,219, 47,127,254, 22,117,174,158, 88, 30, 90,220,183,133, 5,116, 7,
+ 13,225,166,150,164,136, 0, 43, 3,235, 95, 6,198,231,247,175, 62,124,245, 81, 89, 84,232,226,187,103,231,238, 62, 37,166,249,
+ 31,156, 84,196, 42,196,192,196,204,176, 96,219,253,181,211, 74,147, 58,102, 22,249,234,103, 59,203, 19,244, 47,176,249,223,235,
+ 23,198,240,129,131,129,145,149,161,183, 39,228,244,225, 93,206,153,140,237,185,140, 39,202,240, 52,255,129,224,226, 11, 17,155,
+239, 31,191,112, 50,127,227,224, 80, 14,102, 5, 22,250, 31,153, 88,255, 48,168,253,255,251,237,247,155,231, 71, 39,127,140,142,
+ 82,166, 81, 58,134, 15, 70,107,130, 1, 68,208, 22, 12,104,154,127,176, 46,216, 39,178, 91, 64,118,233,207,128, 58,250,143,182,
+ 96,148,166, 51, 1,183,206, 31,131, 7,117, 86, 82,216, 14,216, 88,208,118, 37, 37,130,123, 23,128,105, 50,220,197,156,255,159,
+224, 55, 6,214,181,253,185,211,182, 92, 40,245,176, 73,232, 91, 22,210,182,152, 96,189, 5,223, 59,134,198, 29, 93,209, 79,107,
+ 0, 16, 64,136, 30, 0,176,229,251,225,249,157,187,143,223,178,176, 50, 3,251, 0,191,255,252, 61,119,238,236,162, 69,243,127,
+253,253,255,251,239, 63, 54, 22,166, 87,239,191, 60,189,126,156, 19,199, 20, 48,176,232,212, 84,126, 8,109,254,131,251,253,107,
+151,168,129, 6,128,152,254, 3, 17, 19,211, 63, 11,253,235,127,113,119, 2,208,154,255,240, 85, 64,192,162,159, 96,233,143,214,
+252,135,175, 64, 0, 22,133, 4, 75, 67,112,126,126,255,229,203, 23, 86, 86, 86, 72,243,255,223,191,127, 16,146,152, 10, 96,113,
+127,229,185,167, 7,121, 36, 64, 19,191,188, 44,204,192,250,128,143,157,245,195,187, 39,192,230, 63, 11, 19, 19,193,230,191,172,
+ 16,239,181,123,247,255,252,250,197,206,194,246,229,203,143,139,247,159, 1,139,126,130,165, 63,196,191,254, 57,205, 75, 39, 77,
+252,246,143, 65, 86, 89,230,202,213, 19,192,210,159, 72,255, 2, 65,145,178,201,230,219,251, 24, 62,254, 97,224, 16,217,125,234,
+ 26,176,244, 7, 22,253,248, 75,127, 32,208,255,229,115,116,247, 41,134, 95,159,191, 48,126,126,207,244,229, 35,203,239,223,127,
+ 63,177,255,248,198,241,236,254,138,170,219, 10, 6,106,120,102,128,129, 0,158,114, 56,192, 0, 77, 16, 63,152, 13, 6, 3,152,
+ 79, 32,173,126, 96,153,206, 0,158, 13, 38, 56, 33, 76, 73,233, 15, 44,226,255,227, 94, 50, 79,187,229, 64,192, 52, 9, 95,243,
+ 83, 83, 91, 8, 76,147,226,226,226,144,117, 65, 16,113,130,105, 50,197, 65,175,160,103,226,231,151,175, 68,249,196,174, 94,123,
+ 4, 44,253, 33,203, 88,137,172,243,224, 0,121, 84,103,180, 31, 64, 9,216,178,164,121, 11,222, 75, 68, 0, 2, 8,101, 98,150,
+151,151,247,236,129, 13,255,255,251, 41, 72, 9,243,114,177,107,233, 24,104,105,235,179, 48, 49,124,249,254,247,209,243,119,167,
+ 14,108,229,225,230,194,101,208,215,111,223,212,228,159,255,248,201,241, 31,114,109,222,127, 6, 78,142, 31,192,100,252,238, 3,
+ 59, 80,128,151,251,143,174,218,131,195,103, 12,129, 86,224,111,254,195, 91,253, 64, 46,235,255,223, 12,127,160,171,199,254,178,
+112, 17,108,254,195, 91,253, 16,238,199, 87,208, 37, 7,120,182,227,194,235, 0, 32, 9,236, 7, 0,201,119,239,222,241,241,241,
+ 65,198,127,136,185,148, 21,188,234,191, 61, 51,212,158, 97,210,225,105,213,222, 33,197, 19,151,117,100, 3,123, 0,108,236, 28,
+ 4,155,255,215, 30,189, 82,145, 21,217,187,231, 4, 3,120,251, 37,144,252,253, 19,218,215,102,197,173, 29,210,252,111, 73,114,
+206,171, 95, 32,171,196, 72,146,127, 33,205,127,183,245,243,118, 69, 71, 50,202, 88, 48,128,183, 4, 51,128, 15,135,128, 40,240,
+229,225,193,227,108,189,159,101, 23,183,111,249,161,126, 76, 65, 85,231, 19, 39,195,125,134,135,159, 31,188,126,221,246,247,203,
+123,153,194,184, 98,252, 1, 53,125,250,116, 96,113,255,253,251,119,120, 17, 6,228, 2, 5,135, 68, 70,130,180,250, 95,130,183,
+ 73, 19, 51, 27, 12,108, 47,147, 87,250, 51,192, 46,127,199, 83,240,145,186,151,152, 72, 0, 76,147,173, 13, 53,235, 54,111,119,
+183, 49,130,167, 73, 32, 50,190,119,207, 35, 56,230,209,219,111,114,194, 92,248,155,255, 5,179, 54, 87, 37,187, 73, 73, 56, 64,
+106, 17,136, 83,241,244,165,136,236, 22,140,246, 3,168, 88, 31,160,137, 0, 4, 16,250,202, 28, 62, 94,158,115, 7, 54,220,151,
+ 81, 87, 82,213,228,227,230,252,247,159,225,251,207, 95,247,238,221,123,125,239, 2, 47, 15, 55, 19,238, 86, 45, 39, 7,199,170,
+ 29,246,120,218,248, 64,189,220,220, 4,154,123,144, 53,160,192, 38,255,191,191,191, 65,165, 63, 24,252,102,100,197,117, 24, 3,
+ 50,128,172, 63, 3, 54,129,225,229, 32,145,165, 63,188, 14,128,111,254, 2,214, 1, 56, 3, 8, 71, 29,176, 24,182, 17,106,118,
+ 27,108, 79,236,239, 47,138,120,117, 1,155,255,167,222,124,184,112, 27, 52,224, 3, 47,247, 9,150,254, 16, 0,108,254,175, 53,
+226,206, 9,212, 32,195,191,192,230,127,241,166, 85,140,173,245,219,197,205, 39,124,185, 2, 23, 55,100, 97,149,225, 32,124,226,
+ 19,176, 31,176,125,211,143, 39,239,239,190,126,251,252,229, 45, 30,230,191,124,214,122,182,142,113,142, 52, 77,184, 3,190,233,
+151,140, 53,160,233,233,130,100,148,254, 12, 3, 58,165, 9, 76,147,150,150,150,104,105, 18, 88,250, 51,128,166,130,185,240,235,
+ 5, 54,255, 93,247,156,140,174, 95,100,103,103, 39,142,218,155, 36,187,186,130,212, 1, 4, 3, 4,179,178, 28,173, 51,240,148,
+251,200, 51, 1, 0, 1,132,165,124, 3,182,127,127,190,123,124,238, 0,104,185, 8,228,194,101,118,118,118,204,185, 89, 52,192,
+202,202,202, 79,196,145, 15,120, 0,100,192,135, 25,216,228,255,243,141, 25,169,232, 39,230,196,106,200,128, 15,176, 40, 68, 46,
+ 13,137, 41,250,249, 69,165,126,225,158,214,198, 15,162,155, 23,223,190,113,149,108,255,158,186,245, 24,146,205,144, 75,127,130,
+ 69, 63, 4,196, 25,113,147,231, 95, 80,156,246,151, 65,138,126,120,233, 79,100,209, 15, 7,158,138, 33, 12,144,202,141,184, 53,
+ 50,192,226, 27,178,233, 23,216,222,135,239,254, 5, 50, 32,205,127, 32, 99,240, 31,234, 64,198, 26, 80, 90, 52,210,105, 13,176,
+166, 73,130, 69, 63, 4,184,214,204,166, 98,209, 79, 82,117, 56, 90,214,227, 2,104, 55,194, 51, 96,204, 3, 3, 4, 16,246, 6,
+ 46, 11, 11, 11,174,177, 26, 90, 0,200, 40, 63,164,232,103, 32,177,232,135,140,122,147, 87, 20, 50,128, 86, 46,253, 35,166,123,
+129, 21,188,122,247,145,120,139,144, 1,100,148,159,188,162,159, 18,255, 66, 70,249, 55,127,249, 66,118,209, 63, 10,134, 43,128,
+ 44,241,124,244,246, 27, 25, 69, 63,164,252,133,143,246, 12,221,250,111,184,214, 1,120,100, 1, 2,104,244, 82,248, 81, 48, 10,
+ 70,193, 40, 24,161, 0, 32,128, 70,111, 4, 27, 5,163, 96, 20,140,130, 17, 10, 0, 2,104,180, 2, 24, 5,163, 96, 20,140,130,
+ 17, 10, 0, 2,104,180, 2, 24, 5,163, 96, 20,140,130, 17, 10, 0, 2,104,180, 2, 24, 5,163, 96, 20,140,130, 17, 10, 0, 2,
+104,224, 47,133, 31,105,122,127,188,120, 76,188, 94, 14, 9,217,209,112, 30,213, 59,170,119, 84, 47,141, 46,133, 7, 8,160, 65,
+221, 3, 32,117, 23,248,189,123,247,246,192, 0,144, 61, 90,189,227, 1, 31, 63,126,124,244,232,209,241,227,199,207,157, 59, 7,
+100,144,103, 8, 21, 79,121, 27, 5,131, 28,220,188,121,147, 36,197, 25, 25, 25,100, 91, 68,182,222, 81, 64, 42, 0, 8, 32,150,
+ 65,235, 50, 82, 75,112,160,250,142,142,142,176,176, 48,100,237, 74, 74, 74,196,107, 7,130,213,171, 87,135,134,134, 42,129, 1,
+126,245,105,105,105, 4,205, 4, 58, 6,235,106,232,221,187,231, 19,163,247,253,123,110, 26,133,237,171, 87,175,126,254,252,201,
+200,200,200,193,193,241,227,199, 15, 96, 5,112,250,244,105,125,125,125, 21, 21, 21,146,204, 33,230,168, 12,112, 69,158, 73,140,
+178,153, 51,167, 83, 91,111, 58, 14,197,232, 71,143, 17, 76, 87, 12,245,140,140, 77, 24,149, 95, 61, 99,216,245, 80, 6,118, 13,
+130,206,115,119, 7, 29,169, 75,222,225,213,144,179,160,211,211, 5, 41, 89, 89, 15, 44, 85,251,251,251, 9,110,184, 75, 77, 77,
+ 3,122, 11, 51, 86, 75, 74,138,137,209, 14, 79, 21, 19, 38, 76,176,183,183, 7,150,227,203,150, 45,251,244,233, 19, 65, 75, 81,
+138, 36, 22,230, 8, 43,182,244,140,244,174, 29,221, 37,174, 37, 16,193,217,179,103, 97,213, 27, 19, 3,218,165,204,205,141, 37,
+167, 64,110,118, 74, 72, 72, 24,221,145,128, 12, 32,251,194,224,171,255, 1, 2, 8,123, 5,128,121,216, 8,141,142, 31,161, 98,
+ 5, 0, 47,253,129,238,132,236, 73, 1,154, 64,100, 5, 0,201,228,144,226, 12,114,238, 85,121,121, 57, 97,189,171,133, 8, 25,
+140, 51,196,190,250, 18,184, 69,157,129,136, 67,210,200,187, 7, 3,216,246, 23, 19,131, 94,240,192,201,201, 9,172, 12, 62,124,
+248,192,207,207,127,234, 20,232,242,100, 98,234, 0, 96,240, 66, 66, 9, 24, 98,193,193,193,192, 0, 39, 88, 19,108,218,180, 1,
+194,240,243, 11,192,197,198,165,247,251,177, 28,104,144, 88, 77,129,179,145,185, 64, 6, 46,189, 59,118,160, 92,110,118,232,208,
+161,182,182, 54,228,128, 90,178,100, 9,254,132,209,217,217,217,193,222, 9, 46,136, 67, 81,178, 64, 61, 35,169, 73,154,254,153,
+ 8,185,244, 7,122, 25, 24,227, 75,151, 46, 61,114,228,136, 87, 84, 53, 46,197,199, 48,174,208, 94,191, 26, 84,250,255,251,247,
+111,214,172, 89, 64,237,124,114,246, 88, 11,125,120,119,240,198,141, 27, 64,110,100,100, 36,144, 29, 21, 21, 69, 76,181,209,179,
+ 27,122, 11,241,139,157,207,129,122,151,229,115, 1,141, 44,247, 40, 99, 0,199,222,242,133,203, 50,236,241,245, 9,140,141,141,
+137,111,234,141,150,254,200, 0, 32,128,152,176, 22, 43,192,236, 13,140,108,180, 12, 79,228,128, 12, 37, 99, 47,200,122, 33,141,
+113,226,245, 2, 29,236, 2, 6,144, 58,128,164, 4, 1, 41,253,129,214,129,174,167, 0, 91, 74,164, 47, 24,195,222, 67, 16, 30,
+ 17, 92,128,103,203,116, 8,194, 35, 66,176,244,255, 15, 6,196,143,198,188,127,255, 30, 88,214, 3, 43,128,164,164,164,232,232,
+104, 54, 54, 54, 96, 29, 0,236, 7, 0,189,207,204,204, 76,240,120,253,107,215,174, 1,237, 93,179,102, 13, 36,184,128,150,174,
+ 93,187, 22,216,208, 3,138,211, 57, 41,163, 85, 6, 52,106,130, 0, 75,127, 96,146, 8,191, 17, 6,106,233,163, 6,126,197,207,
+114,180, 62, 1, 46, 0, 12,159,210,210, 82, 69, 69, 69, 50,220, 0,212, 11,108,251, 11, 11,239,165,188,237, 15, 47,253, 73,210,
+ 14, 47,253,139,139,139,241,104, 71, 78,126,192,230,191,157,157, 29,144, 1,172, 3,128,253, 0,130,229, 6,154,222,112, 75, 80,
+171,116, 89, 62, 39,176, 31, 80,230, 94,138, 95, 47,176,237, 15,180, 11,216, 29,119,193, 0, 16,169,209,230, 63,158,210, 31, 8,
+ 0, 2,136, 9, 91,151, 19,122, 49, 52,164, 29, 13,111,238, 17, 83, 28, 67,242, 12, 37,249,141,188, 1, 28,172,101, 58,169, 90,
+224,149, 7,176,249, 79,240,252,219,129, 5,240,210, 31, 72, 62,125, 10,189,112,227,201,147, 39,248, 51, 27,176,237,255,237,219,
+ 55, 38, 38, 38,160, 31,129,236,103,207,158,177,178,178,178,128, 1,144, 1, 57,170, 19,109, 67, 63, 90, 70,157, 56,113, 34,176,
+232, 15, 9, 9, 1, 22, 40, 64, 67,128,133, 35,144, 13,148,154, 52,105,210, 48,203, 45,240,210, 31,200, 6,150,221,240,182, 5,
+ 36,240,225, 29, 68, 34,203, 23,160, 50, 96,136, 1, 19, 21,121,179, 38,149,149,149, 64,189,120,162, 6, 79,233,223,215,215, 7,
+140, 50, 96, 69, 2, 44,190, 15, 31, 62,204, 0, 62,145,137,248,210, 31,162, 29,152,102,206,156, 57, 3,209, 78,208, 70,160,250,
+136,136, 8, 8, 23, 88, 7, 56, 56, 56, 0,109,223,184,113, 35,193,129, 68, 96,243,159,129,145, 97,105, 30,244,252, 9, 96, 63,
+ 32,210,154, 29,212, 15,192, 11,240,148, 18,163,221, 2,180,210, 63,173, 28,189, 84, 4, 8, 32, 22,172,137, 21,126, 49,244, 61,
+164,139,161, 9,166,117,106,149,254, 84,169, 0, 40, 1,192,202,131,108,143,208, 13, 0,139, 18, 96,209,255,226, 5,244, 22, 70,
+100, 54, 46,240,250,245,107, 96, 78, 6,182,244,239,220,185, 3,212, 14,204,171,191,126,253, 2,102, 63, 96, 5, 0, 36,255,254,
+253, 11,172, 30,214,175, 95,143, 43,162,247,238, 5,181, 67,129, 37, 62,178, 2, 8, 27, 82, 60,225, 73, 33,200, 35, 60,184,216,
+120, 26,251,184,198,130,240, 12,254,160,141,252, 64,218,164, 36,165,129, 14,246, 78, 70,212, 10, 21, 50,238,127,143,152,225, 65,
+164, 38, 60,164,142,132,148,116,192, 48, 36,190, 77, 10,209,171,170,170,202, 64,244,116, 11, 50,200,204,204,132, 15,118, 1,217,
+192,226, 27,104, 8,241,165,191,189, 53,232, 72, 70, 96,219,191,164,164, 4,216, 48,135,104,247,245, 75,197,127,177, 31,188,249,
+ 15, 7,144,177,160,109,219,182,105,104,104, 0,155,236,248,245,134, 91,162, 28,204, 5, 30, 11, 98, 88,190,236,252, 77,137,155,
+248,245,142, 2, 50, 74,127, 32, 0, 8, 32,236,115, 0,192, 46, 21,164,225, 15,191, 24,154,164,210, 31,107, 59, 20,207,240, 52,
+ 46,189,200,226,180, 59,240, 15,232, 83,248,177,227,200,110, 32,111,196,246,255, 42, 65,178, 93,242,197,135,240,132, 39,220,145,
+104, 37,130,140,140, 12,178, 2,172,193,245,238,221, 59, 94, 94, 94, 32,121,236,216, 49, 96, 53, 0, 44,253,129, 77,126,200,213,
+ 55,192,162,237,247,239,223, 63,127,254,196,211, 68,133,244,138, 48,195, 4, 40,178,102,205, 26,160, 44,158,224,162,124, 14, 0,
+ 88,214, 35, 23,247, 16, 54,145,213, 0,176, 72, 34,185, 14, 0, 15,241, 67, 82, 62, 98, 50, 9, 44, 72,252,220, 18,114, 29,201,
+ 0,187,216,157,188, 65, 9, 96, 39, 0, 50,123, 65,188,118, 96, 84,194,199,223,109,108,108,128, 37, 56, 73,109,127,160,246, 63,
+127,254, 32,107, 63,120,244,111, 79,103, 6,193,230, 63,164,196,199, 4,253,253,253,222,209, 53,184,244, 34,141,254,163,246, 15,
+136,208, 59, 10,200, 6, 0, 1,196,130, 39,213, 66,154,255,116,110,251, 35,143, 68,209,103, 41, 39,242,104, 15,242,250, 16,252,
+ 37, 26,206,254, 44,108,244,159,140,154, 0, 62,250,143,191, 38,136,142,142,230,230,230,230,225,225, 1,150,230,252,252,252,130,
+130,130,192,230, 85,108,108, 44, 68,150,131,131,195,205,205, 13,232, 11,204, 99,254,128, 37, 62,176,244,255,241,227, 7, 80, 23,
+ 59, 59, 59, 48,123,255, 7, 93,246,249, 23, 40, 14, 44,253,129, 12,130, 3, 20,184,134, 1,129, 13, 85, 58, 12,154,225,154, 13,
+ 38, 6, 64,234, 0, 18,226,177, 9,139,103,195,174,135,130,167,166,136, 53, 4,185,249, 15,175,182,137,108, 88, 32, 55,255,177,
+ 86,249,248,193,178,101,203, 32,134, 0,235, 0, 50,134,254, 33, 45, 63, 96,215,176,176,176,240,204,153, 51, 48,237, 4,146,199,
+196,137, 19,209, 46,233, 92,177, 98,197,193,131, 7,129,233, 10,210, 34,193,179, 62,125,194,196, 9, 17, 22, 40,205,255,232, 73,
+223, 86, 28,251, 13,212,107, 24,101,152, 97,159, 65,252,218,246, 81, 64,100,243, 31, 8, 0, 2,136, 9, 79,187, 24,146, 8,224,
+147, 1,248,135,225,202,203,203,201,115, 31, 46,189, 74,224,251, 72,137,111,197,163, 1,200,138, 32, 82,135, 77,137, 89,220, 57,
+ 24,192,172, 89,179,250,250,250,224, 92, 72,233,239, 7, 6, 64, 6, 48,203, 97,213, 5,172, 48,128,165,252,251,247,239,223,188,
+121, 3, 36,191,129,193,151, 47, 95, 62,125,250,244,241,227, 71, 96,111, 0,216, 3,192,115,165, 15,176, 0, 2,182,244, 9, 86,
+162,131, 10, 28, 66, 2,112, 65,160,247,225,108, 60,227,218,200,227,254,200,109,121,146,154, 5,104,138,129,197, 49, 48, 12,201,
+158, 9, 0,234, 37, 38, 73, 3, 75,124, 96, 26,128, 76,252, 2,235, 0,136,223,137,191,116,161,186,220, 30,168,253,223, 74, 1,
+160,118, 96,211, 27,162,253,208,177,127,176,230, 56,206,230, 63,124,192, 7, 52,110,179,124,105,102,102, 38,208,156,130,130, 2,
+130, 86,131,154,255, 12,140, 75, 97,205,255,168,137,223,152, 35, 62, 46, 63,246, 11,168,183,115, 71,215,104, 33, 78,163,210, 31,
+ 8, 0, 2,136, 5, 87,249, 2, 31,250,135, 79, 6,224, 47, 28, 33,229, 56,164, 45, 79,234,112, 13,154, 94, 72,159, 0, 40, 72,
+222,176, 15,124, 25, 40, 61, 1,164,225, 79,222,248, 15,164,225, 79,204,248, 15, 60,123, 67, 24,141,141,141,243,231,207,135, 13,
+161,248, 65, 24,192,230, 63,174, 10, 64, 88, 88,248,237,219,183,192,246,254,235,215,175,129, 61, 0, 96,251, 14,210, 3,248,250,
+245, 43,176, 38, 0,150,254,192,106,160,172, 12,231,156, 27,164,153,143,117,137, 48, 68, 22,143,155,169, 50, 7, 64,164, 56, 50,
+128, 12,155,160, 23,112,213,213,173,173,173, 34, 34, 34, 52, 77, 18,152,205,127, 56, 32, 56, 19,128,217,252, 39,169,237, 15,236,
+ 35,198,196,196, 0, 35, 23,232,253,170,170, 42, 96,239,135,248, 11,109,106, 42,236, 15, 28, 56,192,184, 6,116, 63,235,174, 26,
+ 94,183,150,207, 64,237,173,157,160, 86, 60,254, 46, 8,100,237, 63,184,213,191,236,224,193,195,255, 25,255, 23, 22, 20,170,171,
+171, 19, 99, 41, 80,111,132, 21, 43,162,213,207, 0,210, 43,238, 38, 65,198,204,199, 40,192, 82,158,119, 86, 96, 86, 12,144, 17,
+ 2,128, 0, 98,193,211,246, 7,150,254,200,147, 1, 4,187,174,200,229, 56,121,253, 0,136, 94, 10, 71,126, 32,110, 38,179, 28,
+ 31,244, 9, 14, 50, 72, 5,191,170, 59, 49, 49, 17,109,124, 6, 40, 8,201,135,152, 64, 70, 70,230,206,157, 59,192, 18, 31,216,
+228,255,253,251, 55,100,232,255,199,143, 31,144,181,164,144, 57, 97,101,101,101, 60, 53, 43,208,112, 72, 39, 0,158, 18,128, 65,
+141, 38,130, 21,208, 98, 14, 0,121, 68, 8, 87, 88, 97, 21, 7, 6, 32,176, 14, 8, 15, 15, 95,185,114, 37,241, 3,149,104,236,
+142,142,142,180,167,233, 97,192,148,134,109, 35,152,187,187,251,253,251,247,209,118, 33, 64, 0, 80,156, 1,239,166,176,208,208,
+213,161,161,206,174,174,247, 48, 39, 27,222,190,117,102, 96,120,159,158,142, 51, 39,194,175, 66,132,116, 50,118,237,218,197, 64,
+202,117,102, 76, 76,140,160, 70, 12,164,244,191,244,103,254,126,208, 69,152,192,210,159,152,172, 1, 73, 78,192, 86, 63,144, 44,
+ 44, 42, 84, 87, 83, 39,210,210,210,178, 18,176, 94, 6, 96,171, 31,162, 87,194, 77, 18, 52,218, 52, 90,248,211, 30, 0, 4, 16,
+ 11,174,238, 60,124,226, 23,190,204,131,152, 49,113,170,140, 5,145,186, 3, 96, 4, 2,248,144, 11,188,140,131,236,222, 64, 22,
+196, 58,102, 10,172, 27,182,109,219,246,231,207,159, 15, 31, 62, 64,230, 0, 24,192,171,131,128, 92, 32,155, 96,220,229,231,231,
+ 79,156, 56, 17, 82, 13, 32,143,251, 3,197,105, 93,119, 2,139,123, 98, 10,125,172,165, 33,102,197, 0,108, 98, 19, 89,250, 99,
+150,194,200, 19,194, 4, 59, 1,152,130, 15, 30, 60, 96, 32, 98,137, 1,124, 0, 22,213,229, 46,196,248, 23,216,207, 3, 22,253,
+200,131,239,196, 0,160,246,127, 43, 5,129,229, 62,144,189, 96,255,175, 21,199,126, 1,181, 31, 62, 78,194,104,213,161, 67,135,
+ 10, 10, 10,136,108,245,195, 1, 36, 17,174, 60,254, 27,168, 87,194, 93, 18, 86,159, 16,165, 23,178,221, 23, 50,189,143, 22, 77,
+163, 59,129, 25,176, 93, 7,134,182, 19, 24, 32,128, 88,176,102, 15,200,166, 42,228,166, 31,193, 33, 32,244,236, 65,110, 29, 64,
+185, 33,240,211, 32,136, 4,192,202, 6,235, 16, 54, 49,149, 16,230,152, 15,241,163, 64,152, 99, 62, 68,142, 2,193,103,170,145,
+243, 54, 86, 65,172,205, 52,111,111,239,165, 75,151,178,177,177,253,252,249, 19, 88, 7,252,251,247, 79, 64, 64,224,253,251,247,
+196,108,126,214,210,210, 2,154,191,123,247,110,200,178, 31,200,158,128, 33,151,193,246,237,219, 7, 12,132, 45, 91,182,144, 81,
+250,195,203,202,123,229,229,120,186,170,165,165,165, 12, 56,150,207,149,149,149,225,159, 3, 72, 79, 23,196,165, 23,216,246, 39,
+166, 28, 39,216, 7,194, 3,220, 91, 62,195,217, 36,149,254,211,166, 77, 35, 47, 58,122,186,123, 65, 77,126, 10, 0,214,202, 18,
+126,251,244, 40,192, 3, 0, 2, 8,231, 50, 80,130, 34, 52, 5,244,220, 1,128, 57,215, 71,116, 53, 67,102,193, 7,210,203, 73,
+166,107, 33,163, 91,144,202, 9,109,164, 11, 89, 16,191,143,162,163,163,239,222,189,187,127,255,254,239,223,191,255,253,251,215,
+215,215, 23, 88,148, 19, 31,230,174, 96, 0,105,187, 17,217,240,167,214, 28, 0, 46, 54,158,210, 16,109, 93, 10, 49,187,153, 24,
+224, 71,253,220, 11, 69, 14, 22, 96, 46, 72,123,154,206, 8,219, 8, 6,145,194,218,211,194, 19,254,206,206,206, 4, 19, 36, 25,
+ 82,112,255, 2, 99, 36, 48, 48, 16,114,250, 16,169,128, 41,252, 61, 80,187,159,127, 26,164,173, 0, 89,244,137,124,204, 3, 45,
+128,113,140, 17,217,122,129, 13,124, 92,245, 28, 68,106, 20,224, 7, 0, 1, 52, 24, 15,131, 35,163,217, 66,255, 70, 40, 37, 54,
+ 82,114,202, 27,181,124,170, 12, 6,104,130,191,126,253, 98, 6, 3,106, 71,232,244, 1,210,139, 37, 33, 65,142, 15, 35, 12,234,
+161, 7, 67, 33,247, 14,129,165, 63,164,162, 29,156, 91, 76, 41,220, 43, 3,214, 78,120,232,157,234,203, 49,241,159,243, 67,187,
+202,114,116, 80, 8, 8, 0, 2,104,244, 82,248, 81, 48, 10, 70,193, 40, 24,161, 0, 32,128, 70,111, 4, 27, 5,163, 96, 20,140,
+130, 17, 10, 0, 2,104,180, 2, 24, 5,163, 96, 20,140,130, 17, 10, 0, 2,136,101, 52, 8, 70,193, 40, 24, 5,200,128, 17,147,
+245, 31, 78,140,130, 97, 5, 0, 2,104,180, 7, 48, 66, 1,214,195,193, 71,193, 40, 96, 4, 99, 70,208, 25,208,140, 24, 96,116,
+111,214,112, 3, 0, 1, 52,122, 41,252, 8,213,235,107, 59,115,120,251, 55,206, 79, 23,209,204, 97, 98,130, 44, 87,133,175,104,
+252, 15, 3, 16, 5,139, 54, 93, 70,214,251,225,193,126, 14, 14, 14,136,122,200, 1,218,200,122, 33,167,230,253,251,247, 15,200,
+254,253,251, 55,175,172,221, 8, 72, 87,140,204, 44,236,255,255,253,249,247,239,207,150, 35, 79,144, 23,133,226,210, 11, 12,162,
+151, 47, 95, 74, 72, 72,144, 97, 47, 37,122, 71,243, 62, 3, 41, 43,181, 0, 2,104,200, 15, 1, 85, 87, 35,174,176,107,109, 53,
+163,159,222, 83,160, 75,245, 90,205, 90,225, 12, 82, 93,142,107,159, 42, 46,113, 82,205, 25,110,125,213, 95, 95, 89,222,222, 87,
+253,113, 73,250,207,227, 91,255, 21,159,240,106,125,227,147,103,227,230,197,165,254,200,145, 35, 54, 54, 54,144,162, 31, 82,136,
+ 67, 26,177,240, 66,252, 31, 12, 60,124,248, 16, 77,239,185,115,231,140,141,141, 57, 57, 57, 89, 88, 88,128, 26,225,218, 33,229,
+254, 95, 24,248,249,243,231,217,179,103, 29,100,237, 6,127,232, 1, 93,254,246,237,219,227,199,143, 11, 8, 8,160,109,140, 32,
+220, 39, 96,100, 98,231, 16, 18, 16, 84,255,250,229,233,151,207,143, 65,221, 0,198,255, 12,255,241,141, 8, 1, 67,105,205,154,
+ 53,183,110,221, 2,178,129,193, 88, 92, 92, 76,188,117, 16,189,247,238,222, 1,134, 57, 27, 59,123, 65, 65, 33, 77,119, 33,140,
+112, 0, 16, 64,131,168, 2,192,117,210, 36, 3,222,131,198, 32, 5, 55,114, 81, 78, 60,160, 68,239,112, 2, 20,238, 29,165, 67,
+233,245,249,225,245,143,135, 86,125,251,246, 83,193,156,137, 83,134, 81,245,209, 37, 83,134,139,239,127,242, 92,224,138,123,195,
+ 40,141, 85,211,181,107,215,128, 37, 8,176,176, 99,129, 1, 72,101, 0,105,248,255,249,243, 7, 88,130, 3,219,239,192,210,127,
+223,190,125,204,194, 38,200,122,191,125,251,118,254,252,121, 11, 11, 11, 54, 54, 54,248,165,105, 64,237,192,178,233, 15, 24, 0,
+ 53,126,255,254, 29,168,230,203,151, 47,131, 57,102,171,170,170,144, 51,209,231,207,159, 13, 12, 12,200,208,187,120,217, 89, 78,
+ 78, 49, 96,129, 12,170, 0, 24, 25,254, 67,118, 11,224, 46,150,159, 61,123, 6, 12,153,168,168, 40, 37, 37, 37,200,185, 20, 66,
+ 66, 66, 38, 38, 38, 88, 21, 39,184,163,236,140,187,124,227,198, 1, 94,174,162,254, 38, 67, 35,157,231, 79, 94,237,218,118, 64,
+ 65,199,240,211,167,143,163,133, 53,217, 0,109,188, 23,121,233, 63, 64, 0,177, 96, 45, 11, 32,165, 0, 46, 54,141, 74,255,172,
+ 44,236,247,164,191,127,255,126,249,242,229,120,234, 0, 72, 9, 78,106, 19,158, 66,189,240,182, 63, 25,205,127,180,155,103,112,
+ 41,160, 81,104, 67,122, 12,112, 18, 34,248,238, 29,104,215,140,144,208,158, 65,152,124,127, 61,190,198,126,108,241,207,111,255,
+130, 84,152,213, 69,255,252, 19,250,207, 42,196,252,249, 45, 27,231,231,239,154, 23,167,156, 85,203,248,198, 37,143,173,221,202,
+120,253,250,117, 96, 9,238,228,228, 4, 41,199,129, 0, 88,136, 67,174,190, 1, 22,226,192,246,251,227,199,143,247,239,223, 15,
+172, 9,208,118,190, 1,149, 1,213, 92,188,120, 17, 88,127, 0, 27,176,236,236,236, 16,189,144, 10, 0,168, 17, 88,186, 93,190,
+124,249,199,143, 31, 4, 55,205, 61,120,240, 0,104, 11,176,228, 5,186, 65, 92, 92, 92, 85, 85, 21, 50,184, 68, 12,160, 68, 47,
+208,169, 53, 53, 53,240,195, 80,129,165, 57,176, 70, 20, 19, 19, 19, 22, 22, 38,178,244,159,151,148,228,101,104, 8,100, 75,228,
+230,114,114,137,127,249,244,232,211,199,187,255,255,255, 5, 29, 24,247,143,192, 29,212,192,226, 94, 68, 68,100,209,162, 69,241,
+241,241,155, 54,109, 2,114, 15, 29, 58,244,235,215, 47, 6, 6, 57,172,234,223,182, 23,193,217, 60,191,126, 75,253,249, 81, 80,
+ 90,223,223,211,216,221, 51, 77,154,233,239,180,158, 62,167,136, 40, 92,122, 71, 1, 73,165, 63, 3,210, 81,160, 64, 0, 16, 64,
+216,123, 0,200, 71,160,224, 98, 83, 29,208,255, 12,103, 42, 12, 64,193,234, 0,146, 0,188, 78,157, 31,184, 8, 83, 54,113,125,
+ 28, 77,155,225, 16,195,145, 73,130,215,118, 15, 32,248,241,225,141,218,253,173,175,152,255,170,240, 51,200,203,253,103,214, 99,
+ 99, 81, 82, 98,251,249,227,231,209,199, 63, 63,178, 48,255, 99,253,177,103, 49,147, 87,254, 63, 22,244,177, 32,248,229,151,130,
+130,130,142,142,142,192,162, 19, 88,140, 2, 27,242,144,134, 63,176,236, 6,182, 82, 15, 30, 60,200, 4, 6, 88,245, 2, 85, 94,
+189,122,213,198,198,134,143,143, 15,168, 29, 40, 2, 44,253,129,165,216,167, 79,159, 78,159, 62, 13,172, 6,128,166, 65,102, 2,
+112,129, 75,151, 46, 29, 59,118,236,254,253,251, 64, 45, 64,219, 37, 36, 36,128,173, 96, 43, 43, 43,110,110,194, 91,193,201,214,
+ 11,116, 18,228,230, 31,100, 65,200,185,208,192, 86, 20, 49, 85, 8, 19, 51, 27, 50,247,197,228,201, 18, 1, 50,221,221, 19,127,
+255,254, 10, 14, 28,198,127,192,210,255, 63,168, 11,240, 31,247,248,219,201,147, 39, 43, 42, 42,128,129, 22, 20, 20, 36, 43, 43,
+ 11,172,104,183,109,219,102,238, 78,104,211, 47, 35,227,146, 59,207,215,222,126,186,105,227, 66,102,102,198,162,220, 88,125, 9,
+145, 89, 5,245,179,137,209, 59, 10,112,148,254,200, 77,126,180,250, 0, 32,128, 72, 88, 5, 68,235,227, 30,149,112, 3, 90, 52,
+225, 41,212,203, 64,214,184, 63,213,219,242,240,203, 44,137, 47,196,177,170, 4,182,253,137,108,254, 3, 11, 65, 96,241,135,201,
+ 69, 22,196, 4,112, 53,240, 91, 6, 49,185, 88,193,187,171,231,158, 61,253, 36,198,203,162,196,251,159, 69,228, 31,139,165, 7,
+183,254, 98, 78,163, 94,118,126, 78,182, 47,223,191,125,251, 43,199,252,237,253,165, 99, 88, 74, 49, 38, 38,200,101,247,183,111,
+223, 6,182,214,129,133,184, 48, 24, 0, 91,166, 2, 2, 2, 31, 63,126, 4,182, 73,129,197, 19,100,148, 31, 77, 47, 68, 28, 88,
+236, 2,235,128, 91,183,110,113,113,113, 1,117, 1,155,207,162,162,162, 60, 60, 60, 64, 17, 96, 21, 2, 25, 26,194,172, 60,144,
+219,239,187,119,239,190,123,247,174,162,162,162,187,187,187,153,153,217,183,111,223,246,237,219, 7,236, 88, 0,171, 31,130,109,
+255,221,123,246,222,123,254,145, 87,197, 66,205, 61, 89,218,204,239,253, 79, 38,160, 8, 65,189,192,210, 31, 88, 97, 0, 43, 15,
+ 96, 17,172,167,167, 7, 31,198,129, 48, 8,150,254,192,162,159,155, 71, 74, 72, 88,103,233,138, 75, 73,243,230,109, 59,127, 30,
+136,128, 61, 0, 6,208,116,247, 87,168, 26, 70, 32,194,183, 30, 8, 88,208, 3, 91,253, 57, 57, 57,188,188,188,192,160, 91,187,
+118, 45,208, 49,111,222,188, 81, 83, 83, 35,152,186, 38,158,191,221,115,226,202,236,158, 74, 22,230,239, 76,127, 63,119, 77,152,
+183,242,208,217,103, 76, 44,164,158, 48, 58, 10,136, 4, 0, 1,196, 66,124, 65, 63,152,167, 98, 70,108, 53, 0, 25,186, 33,105,
+244, 6,179,123, 1,239, 7, 16,236,121,124,254,252, 25,216, 44, 5, 54,171, 77, 77, 77,209,184,167, 78,157,130, 8, 98, 5, 16,
+ 89, 32, 9,108,153, 2,155,177,192,162, 1, 34,136,204,197, 10,248,126,188,221,246,232,135,244,123,102, 67, 62, 70,209,215, 12,
+ 42, 44,252, 76,140,194,255,127,188,252,250,146,241,234,163,127, 47,190,254, 0,150,193, 12,255,110, 49, 24,185,227,170, 0,216,
+217,217,129,165,176,180,180,180,171,171, 43,176,100, 7, 22,145,111,223,190, 5, 22, 73, 64, 41, 96, 17, 15, 57,254,232, 31,134,
+ 94,136,118,160, 2, 96,178, 7,118,124, 85, 84, 84,248,249,249,191,124,249,114,254,252,121, 96,173, 0, 52,243, 39, 24,224,105,
+ 21, 1,171,183, 39, 79,158,232,235,235, 59, 56, 56,200,200,200,124,253,250, 21, 88,127, 0,187,185,199,143, 31, 39, 56,152, 3,
+212,251,242,221, 71, 33, 53, 11, 37,219,112, 1, 25,181,159, 95, 63, 60, 58,185,245,246,222,133, 4,245, 66,102, 47,128,157, 27,
+113,113,113, 96,129, 11,172, 9, 32, 69, 63,100, 44, 8,200,198,122, 67, 14,180,218, 99,225, 16, 16, 84, 23, 16, 82,103, 98, 98,
+ 5, 22,247,115,231,239, 79, 74,116,132,232, 77, 77, 77, 5, 58, 30,162, 23,236,101,112, 81,128,109, 26, 0, 24,176,155, 55,111,
+206,202,202,146,148, 4, 29,240,185,119,239, 94, 96,101,198, 9, 6,222,222,222,199,174,125,199,227,235,101, 55, 31,247,158,190,
+ 49,167,163, 92, 70, 93,254,235,151,247, 27,183,159,190,116,249,166,192,255,127,108, 47, 94,122,231, 68, 31,189,250,125,180,188,
+ 38, 21,160,157,244,131,217, 33, 0, 8, 32, 22,204,178, 0,126,200, 45, 46,246,160, 2,100, 23,220, 20,234, 37,123,252,135,242,
+ 86, 63, 49, 82,120,138,114,178, 87, 13, 1,115, 50,176,184,127,255,254, 61, 86, 46,145, 0, 88, 91, 0,203, 95, 96,161,175,160,
+160,128,201,197, 4,175,223, 60, 62,246,252,187, 55, 23,215,225,199,255,164,140,216, 21,127,158,125,127, 45,107,125,215,165,127,
+ 15, 62,126,249,245,255,233,231,191,156, 44, 76,127, 62,190,224,199,214,142,129,215, 1,192, 18,243,225,195,135, 55,110,220,208,
+214,214, 6, 58,248,196,137, 19,144,145,125, 92,131,248, 64,189,144, 78, 0, 68, 47,176, 14,120,252,248,177,174,174, 46,176,248,
+ 6,214, 31, 64, 17,160, 56,100,117, 16,158, 30,192,163, 71,143,128,230, 27, 27, 27, 3, 75,127,160, 98, 96, 23,196,220,220, 28,
+104, 53, 80, 28, 88,115,224, 15, 37,160,154,127, 76,108,210, 6, 46,192,210,159,137,153,149,147, 79, 84,206,220,251,225,137, 77,
+248,245, 2,221,249,225,195,135,167, 79,159,202,201,201, 89, 91, 91, 3, 45,133,140,252,196,199,199, 67, 20, 0,235, 48, 60,150,
+114,112, 8, 11,139,234,255,250,249,241,205,219,243, 63,127,190,255,253, 27, 52,191, 13,209,251,242,197, 11,184, 94, 80,235, 31,
+ 71,173,247,252,249,243,165, 75,151, 70, 71, 71, 3,195,138, 1,124, 29, 13,176, 55, 80, 89, 89, 9,172,141, 96, 74,112, 46, 79,
+188,245,233, 91,249,193, 11, 29, 37,233,182, 62, 46, 95,191,188, 89,181,238,224,204,185,107,183, 23, 37, 40,189,122,210,249,233,
+133,144,144, 48, 30,189,163,128,200,177, 32,204, 42, 1, 32,128, 88,176, 14,197, 16,100, 15,114, 64,249, 26, 77, 98, 64,139,105,
+ 11,253,111, 16, 67, 46,187,209, 42, 3,106, 28, 6,137, 19,220,188,121, 19, 54,143,135,133, 75, 18, 0, 22,193,187,119,239,134,
+ 92,226,129,204,197,218,205,191,248,238,251,199, 95,255, 46,190,254,243,236,195, 31,241, 19, 44,122,171,238, 60,124,112,245,230,
+201, 95,127, 88,152,127,253, 99,248,241,235,255,251,255,255, 68, 5,255, 99, 45,196,225, 11, 64, 33,203,120, 94,190,124, 41, 47,
+ 47, 15,172,183, 32,195, 62, 64, 18,177,193,137, 16,128,111, 26,128,144,131,243,230, 56, 96,229, 4,185, 5, 69, 81, 81, 17,185,
+ 98, 59,115,230, 12,144, 4, 6, 47,228,210, 61, 92,215,254, 0, 67, 11, 72,126,255,246,242,203,231,199,127,255,254, 64,214,187,
+ 9, 92, 85, 3,187, 65, 32,189,255,177,143,253, 3,227,113,242,228,201,192,102,190,141,141, 13,144,123,244,232,209, 13, 27, 54,
+100,103,103, 35,149,254, 56,193,243,111, 63, 99,183,157, 40, 8,243, 14,137, 13,254,246,227,211,250, 77, 7, 38, 76, 91,182,200,
+205, 20, 88,250,143,150,221, 84,175, 9,144,235, 0,128, 0,162,230, 78, 96,228,145,104, 92,236,225, 4, 6, 67, 41, 0, 25,187,
+ 39,126,252, 7,207,156, 1,254, 56, 2, 22, 31,174,174,174,130,130,130, 88,185, 36, 1,160, 46,160, 94,120,113,143,198, 69, 3,
+223,255,242,253,102,100, 56,243,230,231,171,191,127,247,222,251,177,106,245,143,125, 79, 68,239,176,241, 63,249,248,251,241,231,
+127, 95,255, 48,124,251,243,159, 93, 88, 2, 87,145, 13, 89,233,255,247,239,223, 63,127,254, 8, 11, 11,243,240,240, 0,235,128,
+223,191,127, 67, 68,208,182,131, 33,235,133,172,244, 7,170,249,254,253, 59,144, 43, 43, 43, 11,108, 89, 75, 74, 74, 2,171, 13,
+ 96, 27, 28, 88,243, 65, 76,198, 51, 46, 10,108,134, 3,251, 10,103,207,158,125,242,228, 9,228, 26,206,147, 39, 79,126,249,242,
+ 5, 40, 14,236,124,224, 15, 34,160, 26,166,127,191,158,158,223,243,225,201,173,127,127,127,127,255,244,250,209,201,173,191,190,
+190,199,175, 23,238,152,111,223,190,193,103,167,129,157,128,171, 87,175, 2,203,113,200,165,237, 31, 63,226, 92, 79, 9,244,235,
+159,223, 95, 56,185, 37, 56, 56,133, 32, 59,130,145,245,206,158, 61, 27,162,247, 31,106,128, 1, 59,112,139, 22, 45, 2,182, 30,
+154,154,154,252,252,252,124,124,124, 32, 93,129,205,155, 55,151,150,150, 2,187, 92,120,188, 9,212,187,120,241,226,136,172, 28,
+167, 53, 7, 75,226,130,242,202, 50,127,252,250,114,255,238,227,153, 51, 87,109,240,181,114,144, 21, 35, 62, 81, 1, 43,155,209,
+194, 29,255, 88, 16,188,220, 71,158, 7, 6, 8, 32,234, 31, 5,129,121,123, 42, 38,155,202,237,125,140,133,252,200, 77,126,252,
+205,127, 76,189,167,128, 66,213,213,152,108, 98,134,128,136,215, 75,173,222, 0,124, 49, 15,241,205,255,119,239, 92,224, 51, 7,
+ 36,117, 32, 20, 20, 20,124,125,125,129,205, 64,172, 92, 34, 1, 80, 61, 80, 23,124,192, 7,141,139, 69,189,170,138, 42, 55, 51,
+ 47, 35,195,239,255,255,175,191,255,181,244,206,207,229,199,158,157,190,251,238,217,119,134,183, 63,254,222,253,242,255,249,207,
+255,178,202, 42, 88, 75, 67,200,170, 77, 96, 97, 13, 44,196,129,101,183,142,142, 14,184,202, 20, 50, 51, 51,131, 20,226,144,114,
+ 28,179, 16,135, 20,238,192,122, 2,168, 0, 88,205, 43, 43, 43,127,248,240,225,241,227,199,239,222,189, 3, 58, 21,216,171, 0,
+138, 3, 77,128, 40,195,229,114, 83, 83, 83, 25, 25, 25, 96, 1,186, 99,199,142, 45, 96,112,248,240, 97, 96,195,220,210,210, 18,
+207,156, 7, 92,175,184, 16,255,219,123, 23,110,238,158,127,117,235,244,235, 91,103, 62, 60,190,129,157,233, 31,126,189,192,202,
+ 9,216,220,230,227,227,187,120,241, 34,176,214, 65,174, 6, 32,109,249,165, 75,151,226, 41,145,127,253,252,248,241,195, 29, 86,
+ 86,110, 1, 33, 13,110, 30,105, 32, 3,210, 39, 0,130,103, 39,167,238, 95,148,231,170,241, 5, 92, 1, 48, 64,183,129,129,131,
+109,235,214,173,156,156,156, 64, 99,129, 33, 99, 97, 97, 1,239, 10,196,196,196, 0, 59, 34,248,189,185,109,219, 86, 62, 62, 30,
+ 59,123,115, 3, 35,189,192,172,164,111,140,127, 94,191,122,151,145,219,220,105,162, 98, 36, 70, 66,219, 2, 88,250,119,117,117,
+141,214, 1,196, 84, 3,104, 34, 0, 1, 68,167,141, 96, 3,210, 88, 38,111,140,222,172,181, 21,185,236, 6,114,169,174, 23,222,
+214, 78, 92, 31,135, 71, 1,173,247,100,193,109, 65,222, 25,128, 95, 11,176,244,113,118,118, 6,150,161,152, 92, 96,169,138, 47,
+100,192,178, 64,210,208,208, 16, 88, 78,193, 5,145,185, 88,129,180,154,150,238,213,179,242,239, 63,190,249,251,239,211,143, 63,
+236,192,210,250,231, 31, 57, 30,150,247,127,254, 60,253, 10, 90, 65,228,173, 42,206,173,160,245, 5,219,120, 8,124,197,167,174,
+174,174,190,190, 62,176, 96,130, 44,220, 4, 58, 27, 88, 84,173, 95,191, 30,178, 33, 0, 40,194,136,161, 23,178,219, 11,152,110,
+213,212,212,128,245,199,235,215,175, 33, 75, 72,129,166, 1, 69, 94,189,122, 5,209, 11, 20,193, 83, 95, 2,123, 54,144,165,156,
+192, 18, 25,190,148, 19,232, 18,130,171,113, 64,122, 93,156, 65,122,239,158,124,118,126, 55, 84,175,181, 19, 65,189,192,210,223,
+200,200,232,232,209,163, 64,189,210,210,210, 64,115,184,185,185,171,170,170, 38, 77,154, 4,236,250, 0,109,239,235,235,195,117,
+ 71, 60,176,202,251,248,254, 14,176, 88,231, 23, 82,147,144,178,252,254,253,205,151, 79, 15,187,123, 38, 53, 54, 84, 73,201, 48,
+ 44,207,231, 98, 12,123,239, 24,199, 0,169, 49,225, 27,129,111,221,186, 5, 76, 3, 54, 54, 54, 64,243,129, 85, 14, 80,110,202,
+148, 41,225,225,225,144,234, 22, 63,184,121,243, 86, 72,176,127, 68,132,159,142,174,250,219,207, 31,191,124,124,147,150,215,220,
+ 28,232,236,252,239, 27, 73,165,255,132, 9, 19,128,145, 2,172,117,114,115,115, 3, 2, 2, 70, 11,122,228, 1, 31,172,229, 62,
+ 28, 0, 4, 16, 11,125, 10,122,130, 43,136, 66, 66, 66,200,219, 9,140, 11, 32,111,212, 34,175, 14, 32,181,244, 39, 94, 47,254,
+ 85, 55,180, 62,218, 1, 62, 94, 4,183, 5,121, 79, 0, 65, 0, 44, 7,145, 87,251,192,185,120,150, 0,193,101,209,212,224,215,
+ 2, 1, 82,138,202, 63,204,108,255,156,218,246,224, 35, 3, 15, 35,171, 60, 15,211,211,191,140,204,236, 44,135, 94,253,253,241,
+143, 65,148,157, 89,217,196,238,139,160, 2,182,226, 12,212,132, 7,182,184,129,237, 80, 96,153,248,233,211, 39, 96,217, 13,169,
+ 0,128,237,119, 96,165, 5, 44,179, 54,111,222, 12, 25, 14, 66,203, 6, 64, 17,200,182, 97, 77, 77, 77,200,232, 13, 80, 47, 36,
+109, 67,250, 13, 64,113, 96,111,224,203,151, 47,248, 19,182,158,158, 30,176, 68, 38,111, 51, 23,121,122,129,206,150,146,146,114,
+119,119, 7,214, 58, 55,110,220,120,244,232, 17,176,182, 19, 16, 16, 0, 86, 69,115,230,204,193,181, 23, 23,105, 20,232,219,135,
+247, 55,127,252,120, 39, 32,168,198,195, 43,203,203, 39,247,245,243,211,142,206,185,145, 17, 46,192, 10, 0, 22,176,255,145,107,
+ 0, 47, 47,175,109,219,182, 1, 59, 28,192, 0,241,243,243, 91,184,112, 33,176, 94,215,208,208, 32,198,143,222,222, 94,235,215,
+111,254,244,225,237,147,103,207,243,179,227, 74, 43,218, 2,157,172,108,126,126, 98, 96, 37,182, 92, 2,150,254, 13, 13, 13,144,
+110, 40,176,163, 6,236, 7,148,149,149,141,214, 1,248,235, 3,100, 0, 16, 64,212,172, 0, 40, 92, 65, 68, 70, 41, 15, 1,111,
+222,204,173, 62,181, 17,235,128, 15,193,233, 95,160,222, 83,213, 27,209, 26,236,200,195, 56,120,202,241, 55,115,223,156,218, 88,
+ 77,158,222,129, 2, 67,241,212, 32, 5, 43,199, 75, 63,255,188,222,183,151,245,207,247, 75,159,255,239,249,252,135,141,145, 81,
+248,255,127, 71, 73, 1,123, 55,103, 33, 99, 7, 28,237, 89, 80, 15, 0,216, 4, 6,150, 71,192, 38, 60,176,160, 7, 22,163,144,
+ 66, 28,210,120, 23, 21, 21,181,182,182,222,185,115, 39,230, 48, 14, 80, 4, 88, 85, 0,155,219, 64,245,192, 86, 45,164, 27,193,
+ 0,155, 87, 0,114,129, 10,128,189,138, 19, 39, 78, 16,156, 6, 87, 0, 3, 50, 61, 78,150, 94, 96, 29, 0, 44,241,129,206, 3,
+246, 0,128,157, 30, 96,223, 5, 40,248,244,233, 83, 79, 79, 79, 96,243,159,160,246,191,127,127,126,253,242,244,215,175,143,156,
+159, 30,240, 9, 40,115,241, 72, 1,209,174,189, 47, 25,157,197, 97,141, 57, 48, 9, 83,111,101,101, 5, 12, 88, 96,233, 15,172,
+ 9,132,133,133,227,226,226, 14, 28, 56, 64,164, 83, 45, 45,173,216,217,217,249,174,157,205,206, 78,150, 81, 83,237, 42, 72, 94,
+ 48,109,225, 20,230, 31,196,151,254,229,229,229, 64,207, 62,123,246,140,147,147, 19, 24, 41,192,238, 78,107,107,107,117,117,245,
+104, 29, 0, 31,243, 1, 22,250,120,142,130, 0, 8, 32, 42,247, 0, 6,100, 5, 17,214, 66,141,200,230, 63,166, 94,228,246, 59,
+100, 60, 7, 87, 57, 78,137, 94, 60,101, 49,169,101,244,176, 63, 9, 14, 88,162, 25, 56,187, 11, 75,201,188,190,126,133,249,225,
+ 61,149,223,207,121,133,197,173,116, 53,180,141,117,190, 75,224,220, 31, 4, 44,169,129,109,127, 96, 51, 31, 50, 88, 15,236, 10,
+ 0, 25,144,227, 28,224,163, 67,178,178,178,192, 58, 0,179,192, 2,150, 38, 6, 6, 6,192, 58, 0, 88,190, 67, 84,194, 23,213,
+192, 79,130, 3, 26,101,104,104,120,246,236,217,193, 25,104, 64,199,139,129,129,186,186, 58,208,191,192,106, 12,232,125, 96,104,
+ 84, 19, 53, 47,245,255,247,175,207,191,127,125,249,254,253, 53, 59,187, 32, 43, 27, 47, 19, 19,203,146,165, 91, 99,162,189,161,
+181, 32,170,106, 72,199,162,183,183, 23, 88,209, 2, 25,106,106,106,196, 95, 43,109,100,100,204,108,106,154,212, 0,209,251, 95,
+ 77, 77, 93, 45, 32, 0,255,168, 32, 50,232,236,236, 28, 45,229,137,169, 3,176,150,254, 64, 0, 16, 64,195,246, 66, 24,178,151,
+126, 34, 23,217,164, 54,225, 41,209, 59, 10,240, 3, 89, 77,109, 32, 2, 50,224,103,111,226,223, 23, 20, 26, 26, 42, 40, 40, 8,
+ 89,234, 3, 44, 1, 33, 67, 58,144, 30, 0,100,226, 23,114, 32,168,178,178, 50, 80,240,200,149,175,200,122, 39, 76,152,176,122,
+245,106,136, 2,208, 73, 65, 56,142,131, 6,182,124, 9, 14,170, 12,146, 26,148, 7, 12, 72,108, 46, 64,170,129,207,192,210, 31,
+104, 6, 48,216, 32,122,113,141,121, 65,142,252,132, 4, 53, 73,206, 3, 6,115, 97, 97, 33, 25,122, 71,155,249,196,215, 1,184,
+164, 0, 2,104,244, 82,248, 81, 48, 10, 70, 1, 70,185,192,192,128,126,216,195,255,209, 27,193,134, 33, 0, 8,160,209, 43, 33,
+ 71,193, 40, 24, 5, 24,141,127,134,209, 27, 32, 71, 4, 0, 8,160,209, 43, 33, 71,193, 40, 24, 5,163, 96,132, 2,128, 0, 26,
+173, 0, 70,193, 40, 24, 5,163, 96,132, 2,128, 0, 26,173, 0, 70,193, 40, 24, 5,163, 96,132, 2,128, 0, 26,189, 20,126, 84,
+239,168, 94,194,122,211,211,211,253, 3,210, 55,110,192,114,228,198,104, 88, 13,184,222, 86,216,138, 59, 92,139, 92, 71, 47,133,
+199, 5, 0, 2,136, 5, 45,149, 99,170, 32,114,221,216,160,210, 75,164,246,129,114,243,224, 1,100,159, 57, 65,221,131, 72,241,
+ 0,200,149, 3, 7, 15, 30, 4,178,237,237,237,241, 95, 30, 64,187, 80, 2,150,254, 94,158, 70,144, 99,244,134,253,198,139,161,
+ 5,128,165,191,175,175, 50,156, 93, 93, 93, 61, 26, 38,196, 3,128, 0, 66, 95, 5,244,127, 21,202, 25, 76,140, 97, 36,156,246,
+142,150, 49, 72, 58, 1,148, 18,189,104,110, 38,201,217, 3,229,102, 8,120,247,250,206,235,215,207, 95,190,249,242,241,227,111,
+126,126, 86,113, 17, 30, 81, 81, 73, 33, 81,162,142, 87, 59,119,124,218,189,187,183,238, 62,248,241,248,249,127, 89, 73, 70,101,
+ 5, 14, 37,101, 53, 35,203, 44,250, 87, 27,144,179, 69,105, 84, 44, 94,190,124,217,192, 96,199,140, 25,223, 14, 28, 96,168,175,
+223,245,248,241, 99, 9, 9, 9, 14, 14, 14, 81, 81, 81, 37, 37, 37, 50, 42,131,195,135, 15,139,139,139,203,203,203, 19, 60,146,
+ 19, 25, 0, 75,255,180,180, 52, 6,134, 89, 27, 71, 15, 28, 27,124,224,215,175,242,157, 59,211,220,221,103,249,250,118, 66,122,
+ 3,163,213, 0, 50,192,179, 17, 12, 32,128,134,201, 50, 80,120,137,207,200,200,240,111,165,224,224,119,240,239, 95, 95, 31, 63,
+186,252,235,215,111, 21, 69, 1, 7, 27, 57, 1,126,246,247, 31,126, 60,125,254,229,246,189,231, 31, 62,190,145,149,211,101,101,
+195,121,245,235,251, 55,183,142, 29,156,205,204,240, 41,220,155,193,218,152, 65, 89,158,225,206,131,255, 71,206,124,223,182,255,
+226,214,181,165, 86,246,169,130, 34,106, 68, 58,131,236,182, 63,178, 70,200, 65,114, 52,170, 3,222,189,123,151,151,247, 77, 84,
+148, 33, 52,148,161,163, 3,116, 33,215,159, 63,127,128, 21,128,152,152, 24,176, 2, 0,246, 9,164,164,164, 8, 26,242,226,197,
+139, 87,175, 94,189,124,249,210,213,213,117,201,146, 37, 12,224,189,190, 81, 81, 81,248, 15,176, 67, 6,219,182,159, 3,150,254,
+ 96,114, 20, 12,174,230, 63,144, 12, 14, 94,187,115, 39,136, 76, 75,187, 11,233, 13,140,118, 5, 48,139,126,184, 8,114, 29, 0,
+ 16, 64,195,164, 2, 0,118, 2, 32,117,192,144, 40,253,129,224,201,163,203,226, 34, 28,166,134,138,224,251,149, 24,255,253,251,
+207,199,195,206,173,204,166, 32,203,127,237,230, 27,160,172,162,138, 5, 46,189,192,210,223,214,248, 83, 65, 34, 3, 51, 51,168,
+194,251,253,135,129,155,139, 65, 83,133,193,194,128, 97,203,254, 79, 64, 89,239,224,110,154, 14, 1, 97,189, 84,146, 70, 87, 62,
+ 8, 9, 9,109,217,194, 41, 43,251, 29,216, 3,120,255,158, 69, 5, 12,190,124,249,114,239,222,189, 3, 7, 14,124,250,244, 9,
+ 88,142,227,239, 7, 92,191,126,253,220,185,115,172,172,172,200,130,223,191,127,159, 59,119, 46,208,144,136,136, 8, 98,156,177,
+113, 3,208,203,233, 96,146, 4, 0,191, 39, 25,114,236, 29, 26, 23, 79,140, 48, 32,157, 24,136,135,139,179, 61,244,255,191,200,
+219,183, 74, 15, 30, 8, 63,125,250, 68, 76,236,145,146,210, 71, 49,177,255, 68,159,200, 11,116, 39, 49,231,244,225,209,130,159,
+ 75, 45,189,240,193,159,180,180,157, 64, 6,132,132, 72, 1, 25,163,117, 0,214, 86, 63,228,104, 32,184, 8, 64, 0, 13,171, 85,
+ 64,140, 67,196,157,239, 94,223,249,253,251,183,153,145, 36, 92,132,137,137,145,141,141,153,147,131,133,149,149, 73, 89, 81, 16,
+216, 51, 0,170,193, 53,242, 3,108,251, 23, 38, 49,252,248,201,112,255, 49,195,251,143, 12, 31, 62, 49, 44,219,196,144,219,192,
+ 80,213,195, 96,101,196,192,244,255, 19, 80,205,176,137, 83, 93, 93,221,141, 27, 53,197,196, 24,162,162, 88, 36, 36, 76,129,229,
+181,175,175,175,143,143,143,187,187,187,184,184, 56,176,100, 95,185,114,229,221,187,119,113, 93,148,120,233,210,165, 11, 23, 46,
+160,149,254,112,176,127,255,254,171, 87,175,226, 41,139, 15, 29, 58, 4, 47,109, 33,165, 63,132, 13, 20, 39,166,194, 59, 5, 3,
+ 88,185, 68,214,175,248,185, 88, 75,127,165, 27, 55,108,247,236,145,189,117,135,237,211, 39,201, 91, 55,116,182,108, 22,189,120,
+145,129,232, 59,189,129, 46, 4, 22,187,192, 62, 19,241,209, 4,209,130,135,139, 95, 47,114,113,143,135,139, 11, 64,202,125, 8,
+249,203, 87,133, 97, 20, 32, 21,253,248,207,122, 0, 8,160,193,210, 3,160, 74,251,241, 63, 53,236, 37,111, 40, 3,126,211, 22,
+ 49, 99, 44,175,223, 60, 87, 87, 22,130,148,251,104, 82, 28,236, 44, 31, 62,254, 84, 83, 22,186,117,239, 57,214,201,128,123,119,
+111,133,131,142,228, 98,216,113,136, 97,234, 98, 6, 55, 91, 6, 47, 7,134, 27,119, 24,206, 95,253,207,201,193,104,168,205,224,
+110,207,176,110,231, 45, 35, 75, 90, 13, 1, 97, 13, 34,218,221,248, 6,108,221, 3,219,251, 64, 6,176,165,111,109,109, 13, 23,
+ 20, 20, 20,212,212,100,241,243, 3,246,129,206,220,186,245,141,129, 1, 24, 40,236,152, 35, 63,151, 47, 95,198, 85,250,195,235,
+ 0, 92,119,164, 68, 71, 71, 47, 5, 3, 32, 3,238, 95, 96,209, 15, 20,129,200,210, 39, 47,224,231, 98, 2,190,151, 47, 21, 79,
+158,252,197,196,196,202,200,240,231,223,255,127,191,255,254,251,243, 71,244,240,161,143, 34, 34, 63,101,136, 93, 73, 2, 44,118,
+175, 92,185, 98,104,104,104, 96, 96, 64,188, 22,228,206, 13, 26,151,200,110, 4,169,165, 63,102,113,191, 19,169, 31, 48, 10, 8,
+ 2,128, 0, 66,175, 0, 48,167, 79,137, 44,212,112, 21,166,196,232,165,197,216, 49,145,203, 84,176, 78, 32, 19,169, 23, 77, 25,
+241,115,209, 47, 95,127,113,180,150, 3, 54,200, 14, 31,127,252,237,251,111,160,136,145,190,132,168, 48,231,227,167,159,239,220,
+127,207,194,194,164,170, 36,120,244,228, 87,117, 77, 44,122,239, 62,248, 97,109,204,240,243, 55,195,246,131, 12,251,143,255,151,
+ 18,103, 84,146, 99,112,182, 97,208, 80,102,100, 97, 6,157,163,110, 97,192,208, 61,243, 7,254, 1, 31,130, 12, 60,173, 6,248,
+136, 63,218,184, 4,237,214,198, 60,122,244,136, 1,124, 62, 62,178,224,131, 7, 15,180,180, 94, 85, 85,129, 2,190,173,237,214,
+131, 7,218, 12,108,232, 39,131, 2,213,224, 47,253, 33,106,112, 73,217,129, 1,164,196,135, 20,250,240,138, 1,126,161, 49,213,
+ 1,133,205,127, 32, 16,184,126,227,215,239,223, 76, 76, 76,255,153,153, 65,151, 34, 64, 14,180,251,251,143,253,210, 37,226, 43,
+ 0, 6,240,189,146, 71,143, 30, 5,118, 85,165,165,165,137,153,104,161,176, 14, 32,175,237, 15, 44,238,221,103,185, 7,175,101,
+ 72,219, 9, 98, 0,185,144, 90,129,109,243,157,209,194, 29, 13, 96,189, 23, 30, 32,128, 8,175, 2, 34,126, 93, 16,102,171,144,
+200,118, 34,214,122,130,248,138, 7,171,203,241, 92,158,142,171,152,134, 79, 32, 19,169, 23,171, 50,136,105,192,134,253,191, 85,
+ 56,103, 35,192,107,126, 64,205,213,199,207, 62,125,255, 14,186,214, 74, 69, 73, 16, 88, 1, 92,188,250,234,230,237,119, 28, 28,
+204,202,138, 2,239, 63, 98, 63,104,254,241,243,255,202,242, 32,243, 61,236, 24, 12,180, 24,217,217, 24,254,252, 1,245, 3, 4,
+120, 25,238, 61, 98,112,183, 99,144,151, 1,169,161,105, 74,130,151,251, 68, 14, 73, 15, 20,192, 58,136, 65,170, 83, 33,101, 61,
+188, 2,160,105,233, 15, 7,184,174,110,199,115,165, 59, 28,176,222,189,243,243,247, 47, 70,102,150,191,255,255, 3,211,201,159,
+191,255,126, 3, 59, 2,127,255, 50,222,190,201,192,224, 69,170, 75,128,253, 0, 96, 71,138,155,155,155,159,159,159,248, 58,128,
+200,193, 31, 10, 75,255,234,234,234,214,214, 86, 96,233, 15,175, 12,128, 36,176, 26, 0,150,254,155, 55,223,133, 76, 0, 64,102,
+137,245,236,226, 71, 75,127,204,210, 31, 8, 0, 2,104,176, 12, 1, 97, 45, 76,137, 44,136, 73, 90,171,138,221, 4, 42,173, 29,
+ 2,186,132, 24,163,248,249, 89,223,127,248, 33, 34,196, 21,234,167, 1,204,159,236,236,204,204,192,246,218,255,255, 62,110,202,
+222,174,202, 64, 19,222,190,255, 14, 84,131, 85,175,172, 36,227,221,135,255, 53,148, 25,156, 44, 65, 67, 94, 55,238, 48,232,105,
+ 48, 8,242, 49,120, 58, 48,252,251,199, 0,236, 4,220,186, 15, 82,131, 63,144, 9, 50,136,223, 72, 66,201,184, 25, 49, 0,216,
+126, 5,182, 64,239,222,189, 11,108,137,219,218,218,242,240,240, 64, 78, 12, 86, 80, 80, 56,117, 74,172,177,241, 41, 35, 35,227,
+171, 87,106,106,106, 10,215,158, 97,209,139, 38,178,106,213, 42,148, 70,195,255,255,225,225,225,196,215, 1,116, 43,253,201,168,
+ 27,224,224,157,140, 52,219,141,155,255, 89, 25,216,254,129,230,125,127,255,253,243,235,255,223,111,127,254,124, 87,209, 32,195,
+ 49, 58, 58, 58,192,240, 39,178,244,103, 0, 95,243, 9,108,242,195,139,111, 52, 46, 46, 0,233, 37,192,149,161,113, 9, 2, 96,
+243, 31, 82,244, 3, 73,228,182, 63,100,150, 24, 88, 25,140,150,254, 88, 75,127, 32, 0, 8,160,225,176, 10,136, 96,207,131, 32,
+248,255,159,129, 41,252, 61,229,117, 0,100, 49, 18, 83,216,123, 60,205,127, 32, 16, 23,225,121,252,244, 51,176, 2,232,155,126,
+218,206, 74,214, 72, 79,156,145,149, 17,178, 28, 8,178, 82, 3, 40, 11, 84,131, 85,175,178, 2,199,209,179,223,129, 21,128,136,
+ 49, 67, 69, 38, 67,126, 2, 3, 63, 47,104,228,167,113, 18, 67, 67, 62, 72,193,209,179, 32, 53, 36, 13,148, 81,190, 24,148,118,
+203, 64,223,188,121, 3,185, 7,113,235,214,173,143, 30, 61,242,240,240, 80, 84, 84,252,252,249,243,251,247,239,175, 95,255,115,
+224, 0,176,176, 48,113,116,116,148,145,145,185,246,236, 53,154, 94, 96,187, 21,255,141, 93,127,254,252, 25,108,137, 25, 94,250,
+227,169, 6,240,215, 1,159,180,180,217, 47, 93,250,247,255, 63, 55, 19, 11, 51, 51,227, 31, 96,233,255,251,247,231, 95,191,126,
+235,235,147,228, 18, 46, 46, 46,146,230, 0,224,197, 61, 46, 46, 45,234, 0, 96, 51, 63, 13,220,198, 71, 46,253,225,205,255, 81,
+128,191,244, 7, 2,128, 0, 26, 61, 14, 26,214, 90,164,210,250, 81,104, 29,128,183, 58, 17, 21,149,188,115,255,153,190,182, 88,
+ 69,190,197,130,229,151, 57, 57, 88, 12,116,196,224,215, 41,255,251,247,255,206,253,247,226, 98,216, 71, 93,149,148,213,182,238,
+187,152, 16,204,240,255, 30,131, 69, 16,131,146, 44,195,210,141, 48,185,124,134,191,127, 25,182,238, 3,169,161, 93, 64, 97,237,
+159,209,110, 25,232,141, 27, 55, 52, 53,239,207,159, 15,100,254,109,106,186,180,110,221, 55,117,117,117, 96, 5,112,239,222,189,
+151, 47, 95, 26, 25, 25, 1,155,240,184,150,129, 42, 41, 41,157, 62,125, 26,207, 29, 35, 68, 94,207, 11, 31, 2, 2,146,180,238,
+ 1, 0, 75,118, 72,209,143,107, 8, 8,151, 20,162, 86,147,145,121,107,107,247,119,255,129, 95,108,172, 60,255, 89,126,252,251,
+247,241,215,175,207, 78,206,255,229,228,136,238, 16, 51, 2,203, 95,226,135,254,225, 90,224,197, 61, 26,151,164, 58, 0,215,218,
+ 89, 60, 0,173,244,135,143,252,140,206, 6,227, 47,253,129, 0, 32,128, 70, 43, 0,106, 2,232, 4, 0,161, 81, 32, 33, 81,149,
+ 15, 31,223,156, 60,251,204,220, 88,202,211, 69,105,199,222,123, 91,119,129, 82,109, 77,177, 21,176,244, 7,138,179,179,179,225,
+218, 15,108,100,153,181,117,109,105,255, 60,208, 74,208, 25, 45,160,213,159, 46,214,160,149,160,253,181,160,210,191,127, 30,195,
+ 95, 6, 62,226,247, 3,147,218,102,199,213, 99,160,221, 42,160,175, 95,191, 26, 26,254,128,148, 36, 38, 38,255,119,236,184,119,
+235,214, 45,200, 70, 48, 7, 7, 7,123,123,123, 60,155, 0,148,149,149, 47, 95,190,140,171, 19, 0,108,254, 27, 27, 27, 19,227,
+ 6,200, 98, 80,200,162, 32, 32,155,248, 58, 0,109,163, 25,145,251,206,224,117, 0, 46, 89, 2,250,153,152,126,153,155,191,145,
+146,250,114,233, 18,207,163, 71, 63, 20, 21,191,106,107,255,149,149,101, 32,250,178, 45,242,202,110,100, 45,104, 92,252, 30, 71,
+150, 69,179,151, 84,103, 64, 0,114,185, 15,233, 13,144, 58,164, 57,204, 0,158, 53, 29, 0, 1, 52, 90, 1, 96, 89,189, 67, 7,
+163,100,229,116, 31, 63,186,188,118,203, 77, 21, 69, 65,111, 55,101, 65, 1,142,247, 31,126,156,191,252, 18,216,246, 7,150,254,
+ 64, 89, 60,122,173,236, 83, 15, 31,156,125,236,236, 39,111, 39,134,217,237,160,157,192,119, 31, 50,204, 93, 5,106,251, 3, 75,
+127,160, 44,229, 5, 58, 25,165, 63,141,230, 0, 36, 36, 36, 30, 60, 16, 57,115, 6, 52,188,115,235, 22,159,169,169,150,176,176,
+ 48,124, 39, 48,193,163, 32, 44, 44, 44, 14, 30, 60,200,136,177, 7, 10, 88,250,171,168,168, 0,107, 8, 98, 74,127,228,209,127,
+ 72, 87,128,200, 58,128,236,226, 12, 87, 41, 79,184,244,135,213, 1,255,228,229,191, 1, 17, 89, 97, 78, 70,177,139,223,167,248,
+ 13,164, 68, 47,254,210, 31,180, 72,116,196, 79, 0, 48, 96,219, 15, 12,175, 18, 0, 2,136,240, 50, 80,226,167, 88,137, 89, 6,
+ 74,188, 94,226,181, 83, 98, 47, 86,223,145,103, 47, 73,115,209,172,108,220, 74, 42, 22,239, 94,223,185,247,224,249,241, 51, 79,
+224,103, 1,137,139, 73, 17, 60, 11, 72, 80, 68,205, 59,184,251,220,241,105, 43,183,222,106,155, 74,215,179,128,232, 92,250, 3,
+129,186,186,250,197,139, 94,137,137,103,192, 61, 0,147,176, 48,125, 46, 46, 46,146,234,143,240,240,240,155, 55,111,158, 57,115,
+134, 25, 52,215,206, 4, 44,250,217,216,216,128,109,127,160,201,164,150,254,100,212, 1,163,128,214, 0,180, 22, 40,173,213,125,
+150, 59,214, 61, 1,163,147, 1,248, 1, 64, 0,177, 80, 50, 32, 64, 83,189, 68, 26, 56,168,220, 76, 42, 0,150,245, 64,164, 78,
+150, 94, 96, 89, 79,228,110, 47,106,249,130,110,123, 56,144, 1,176,184,183, 4, 3, 10,107, 17, 98,138,123, 76,128, 89,214, 3,
+217,144,109, 1,163, 21,192,160,170, 3, 24, 30, 98, 17, 55,169, 54, 25,225, 33, 67,240,202,119,128, 0, 26,189, 20,126, 20,140,
+130, 81, 48, 10, 70, 40, 0, 8,160,209, 27,193, 70,193, 40, 24, 5,163, 96,132, 2,128, 0, 26,173, 0, 70,193, 40, 24, 5,163,
+ 96,132, 2,128, 0, 26,173, 0, 70,193, 40, 24, 5,163, 96,132, 2,128, 0, 26,173, 0, 70,193, 40, 24, 5,163, 96,132, 2,128,
+ 0, 26,189, 20,158, 58,122,241, 28,139, 70, 83,189,247,192, 96,245,234,213,100,232,189,127,255,254,221,187,119,201,211, 59,154,
+ 54, 70,245,142,234, 29, 42,122,241, 0,128, 0,194,185, 17,140,200, 83, 48,169,174,151,234, 32, 45,244, 35, 3, 27,219,172,165,
+156,120,212, 0,203, 80, 60,123, 47,241,187, 25,174,183,183,183,183,184,184,152,164,219,210,225,122,175, 76,229,211,201,254, 68,
+198, 77,235,122,194, 83,254,191,249, 11,100,204,154, 53, 11,124,105, 45, 9,192, 76,125,197,159, 79,159, 56, 57, 57,129,117, 64,
+104,104, 40,237,162,128,200,125, 21, 88,253, 59, 80,122,113,153, 70,159, 4,204,200,200,200, 4, 6,144, 45,108,191,126,253, 98,
+ 6,159,237,252,255,255,127,134, 81, 48, 10,168, 7, 0, 2,136, 5, 87, 90,199,154,212, 24, 9,221, 42, 7,201, 36,228,233, 37,
+166, 69, 76, 54,216,189,123, 55, 3,135, 38,158, 82,184,188,188, 92, 76, 76, 12, 77, 10, 88,160,227, 55, 22,162, 23, 82,244,159,
+ 56,113, 2, 82, 13,144,164,247,223,181, 58, 38,173,166, 69,251, 64,199, 21, 0,217, 16, 41,160, 8, 65, 31,241,125, 42,250,247,
+159, 97,197, 14,144, 70, 79,123, 86,109,149,171,192, 58, 0, 84,225, 17, 81, 13, 8,203,157,122,125,251,197,225,107,242, 95,127,
+114,123,186,127,144,150, 96, 60,115,230,216,167, 79, 63,156,156,156,104,148,206,104,218,104,192,163,151, 96,137, 73,124,178, 36,
+ 21, 0,227,183,171,171,171,180,180,148,152,253,198,200, 0, 88,214,179,128, 1,100,231, 26, 48,145, 0, 13,249,251,247,239, 31,
+ 48, 0, 50,104,228,224,173, 91,183,226, 15, 28, 47, 47,194,167, 73,111,219,182,141, 36,245,163,128,110, 0,178, 31, 24,109,221,
+ 63, 64, 0,177,144, 84,250, 27, 27, 27,159, 61,123,150, 96, 38,196,154,169,240,232, 69, 51, 7, 88, 22, 67,134, 53,200, 62, 96,
+ 50,205,119, 22, 3,167,218,172, 85, 14,160,166,241,106,126, 80,233, 79,168, 4,199, 60, 59, 30, 88,130,227, 63,149, 5,174, 23,
+200, 6,182,160, 45,192,128, 36,189,144, 18, 31, 66,118,192,118,107, 3, 75,255,178, 96,142,174,181, 63,240,120,144,255,123,177,
+142, 26,243,215,239,255,139, 98, 57, 78, 92,253,243,253,235,255,111,191, 24, 28, 13,174, 94,189,245,151, 96, 87,224,222,227,254,
+115,167,185,121,249, 24, 37, 36,197, 69,197, 85, 30,222,253,165,160,245,155,149,227,213,158,245,111,214,175, 95, 31, 24, 24, 56,
+154, 85,168, 2,128,241,235,235,235, 11,172, 3,208,210,176,145,145, 81, 99, 99, 35, 80, 10,123,139,140,133,133, 13, 6, 30, 63,
+126,172,170,170, 10,172, 6,120,121,121,239,220,185,195,195,195,115,250,244,233,227,199,143,103,103,103,227, 76,249,224,168,135,
+231, 95,120, 78,132,136, 0,185,144, 86, 2, 86,176,105,211, 38, 76, 45,112, 17, 32,151,152, 2,125,227,198,141, 36,169,167, 10,
+120,241,226,133,132,132,196,104,146,195, 83,238,227, 2, 0, 1,196, 66, 82,233,143,223, 38, 60, 7,149,224, 63,226, 28,173,244,
+239,232,232,168,168,168,128,139, 16, 95, 7,164, 25,207, 98, 16, 86,155,181,203, 1,222,234,119,117,117, 5, 50, 32, 36,230,184,
+ 24,114, 9,142,181,244,199,236, 19, 96,122, 10,222,210, 7,214, 88,200, 65, 65,140, 94,172, 45,125, 96,233,143,223,155, 34,223,
+139, 84,229,153, 57,217, 25,229,165,152,223,188,255,247,251, 15,243,219, 15,255, 63,126,249,127,231,201, 63, 6, 38, 6, 17,174,
+ 75, 64,127, 41, 41, 41, 97,213,251,239,255,106, 77,101,165,227, 47, 94, 42,202,137,234,232, 41, 49,179, 11,201, 43,190,127,255,
+253,199,171, 23,127,159,188,252,193,197, 2,212,170,143, 75, 47,237, 70,132,136,143, 98,242,244, 98,182, 72,104, 61,150, 2, 12,
+ 71,160,165, 90, 90, 90,155, 55,111, 70,142, 14, 96, 38,194, 83,250, 3, 1, 43, 43, 43, 7, 7,199,155, 55,111,212,212,212, 12,
+ 13, 13,129,245,193,164, 73,147,128,173,126, 93, 93,221,117,235,214, 1, 43,128, 75,151, 46, 1,171, 4, 92,253, 0,127,127,127,
+136,127,113,229, 98, 60,133, 50,176,236,134,132, 12,214, 6, 28, 80,252,229,203,151,196, 84, 0, 36,169,135, 20,223,251,247,239,
+199, 42,229,232,232, 72, 76,201, 14,212, 46, 37, 37,165,174,174, 62, 90, 13,144, 10, 0, 2,136, 5, 51,119,225,106,191,211,199,
+ 65,192,220, 2, 44,253,137,172, 48,112,142,246, 48,164, 1,201,213,179,204, 24,216,190,227, 25,253, 71, 43,193,209, 42, 51,252,
+ 37, 56, 4,192, 43,143, 19, 39, 78, 32, 55,255,137,209,187,172,148, 7, 51,151, 70,247,124,197,175,235,223,191,127,236, 92,140,
+ 76, 76, 12, 92,156, 12, 31, 62,253,251,249,255, 63, 55, 39,227,143,127, 12,223,127,254,151, 17,101,250,247,135,225,246,227,191,
+123,246,236,193,218, 9,248,244,241,132,128, 0, 55, 27,219,255,212, 4,243,191,127,255,191,120,245,235,209,211, 15, 12,172,143,
+ 57, 5,127, 62,127,245,128,137,237,227,181,107, 31,158,190,220, 67,234, 92, 2,133, 35, 66,200, 55,139, 17, 3,144, 79,220,195,
+188,191, 19, 23,120,247,206, 5,206, 22, 18,218,131,171,136, 36, 88,223, 32,139,224,169,123,128, 73,203,199,199, 7, 82,238, 95,
+189,122, 21,194,128,180,253,129,226,120,108,100,103,103,255,250,245,171,166,166, 38,176,236, 3, 38,164,228,228,100,160,224,239,
+223,191, 23, 44, 88, 0,236, 64,159, 59,119,110,229,202,149,223,191,127,199,188,235, 6, 2,188,189,189,201,142,148,185,115,231,
+226,175, 68,137,105,209,195, 13, 33, 82, 61, 3,248,188, 38, 96,241,253,236, 25,250,133, 62, 64, 65,226, 11,244,103, 96, 48, 90,
+ 13, 96, 2,248,152, 15,214,174, 0, 64, 0,177, 16,211,138,167,164, 56, 38, 21, 32,183,163,137,106,245,207, 74,103,144,100,152,
+229, 11,202,138,179,206,166,193, 71,123,192,173,254,143,200,253, 0,252, 37,248,171, 87,175,224,165, 54,145, 37, 56,126, 0,169,
+ 87,128,229, 5,174,195, 54,240, 20, 64,144,241, 31, 76,189, 64, 45,111,174, 21, 73,130, 7,127, 32, 34,223,255,254,255,241,139,
+225, 55,152,251,251,207,255,255, 76, 32,198,229, 75,103,129,245, 40, 3, 3, 27,154,177, 31, 63, 94,101,101, 23, 20, 17, 18,248,
+240,238,219,135,143, 31, 78,156,121,241,244,229,127, 54,238,111,210, 42, 95,190,127,123,163,170,247, 91, 65,243,231,202,217,103,
+239,220,185,195,192,192, 49,154,115, 40,108,254, 3, 1,176,249, 15, 44,238,183,108,217,162,173,173, 29, 26, 26, 74,176,244,135,
+ 84, 0,175, 95,191,230,226,226,178,179,179,235,233,233, 1,118, 8,128,201, 96,225,194,133,192,210, 31,216,200,216,187,119,239,
+229,203,151, 69, 68, 68,240, 92,101, 3,172,191,113, 13, 1,205,158, 61, 27,143,213, 84, 25, 2, 2, 26, 66,198, 16, 16,176,212,
+198,172, 0,200, 56,190,105,180, 26, 32, 21, 0, 4,208,224, 58, 14, 26,243, 94, 17, 34, 7, 7, 64,237,253,138,251, 12,204,108,
+105,110, 10, 12, 2, 10,179,192, 23,255,225, 31,253,167,202, 32, 6,100,226, 23,222,246, 71, 6,144, 89, 1,204,238, 5,145, 45,
+214,165, 37,220,152,189, 1,222, 79,197, 15,126,253,127,241, 6,216,250, 99,226,225, 2,117,213,129,133,254,143,159, 12,192, 58,
+ 0, 72,254,250,205,240,227, 59,195,175,159,176, 22, 40,106,229,193,243,167,232,233, 35, 57, 89, 69,158,255,172, 44,111,190,127,
+223,127,240,241,181, 59, 79,223,189,251,162,109,252,247,235,143, 63, 63,126,254,253,254,237,223,139, 71, 12,223,191, 50,116,119,
+119,143,158, 16,133,181,167, 66,100,130,132, 52,255,181,180,180,128, 13,127, 96,101, 0,172, 0, 32,157, 0,130,165, 63,100, 8,
+200,192,192,128,131,131, 3, 88,232, 39, 37, 37,181,183,183, 3, 75,210,147, 39, 79, 30, 60,120,240,210,165, 75, 31, 63,126, 84,
+ 85, 85,253,244,233, 19,158, 91,110, 2, 2, 2, 48,219, 22,144, 30, 15,254,254,193, 64, 13, 1, 97,237, 4,144,212,252, 31,173,
+ 6,200, 6, 0, 1, 52, 40, 42, 0,200,208, 63,164,155,140, 92, 7,192, 51, 27,100,176,158,248,145, 98, 72,185, 15,108,248,131,
+ 71,129,216,102, 45,165,190,155, 33, 43,127, 92, 92, 92,246,236,217,131,171, 43,131,171, 55,131,181,112, 39,102, 44, 40,190,242,
+171,148, 56, 83,148, 47, 27,176,184,231,231,101,100, 98, 4, 55,252, 25,254,255,248,198,240,245,215,127, 96,183,224,235,143,255,
+255,254, 99,191,249, 35, 62,255,171,174,254, 61, 9,141,119,187,183,191,122,247,238,135,129,229, 39, 61,161, 47, 12,172, 63,127,
+124,251,247,234,233,255,175, 95, 25,255,252, 97, 20, 18, 97,100, 96,252, 55,154, 43,168, 2, 32,233, 25,121, 66, 5, 88, 19, 32,
+ 23,205, 88,103, 2,128, 37,123, 89, 89, 25, 11, 11,203,162, 69,139,230,207,159,159,152,152,216,209,209, 1, 44,145, 31, 60,120,
+240,253,251,119, 96, 54, 1,182,253, 51, 50, 50,240, 44, 94, 34,123,234,117,160,134,128,176,118, 2,200, 59,189,117, 20,144, 10,
+ 0, 2,104,176,244, 0,144,135,173, 49, 11,122, 92,133, 44, 50,152,117, 54, 13, 86,244,223, 94, 61,233, 62,120, 21, 16,162, 62,
+192, 51, 10, 68,201, 8, 15,208, 97,240,230, 63,164, 55, 0,103, 3,123, 0,144, 61, 86,152,147,207, 4, 75,127,200, 42, 32, 76,
+189,127,254, 50,124,253,246,255,231, 47,208,148, 47,144,100, 97,135, 10, 2, 43,128,239,191,255,191,125,247,255,245,251,255,231,
+174,253,249,247, 15, 52,148,119,245, 41,138,153,127,254, 48, 60,123,252,235,241,221,247, 71,142,191, 7, 54,242,174,221,248,231,
+ 19,245,135,141,229,255,235,151, 12, 71,118, 49,124,250,244,255,255, 63, 6, 27, 39, 70, 14, 14, 6, 79, 79,127,252, 43, 13, 55,
+ 44, 72, 15, 72,160,104,133, 46, 37, 55,136,145,116,239, 2, 28, 8, 9,237,161, 91, 98, 70, 75,192, 64,174,145,145,209,185,115,
+231, 54,111,222,140, 44,142,107, 42, 24,216,182, 16, 16, 16,128, 52,162,231,205,155, 7,236, 7, 0,107, 2, 72,205, 1,148,250,
+240,225, 3,176, 7,240,237, 27,190,187, 94, 82, 83, 83,145,135,110, 32,205,127,252,227, 63, 3, 59, 4,132,214, 9,160,164,249,
+ 15,209, 62,218,246, 39, 18, 0, 4,208, 96,169, 0,206,158, 61,139,107,237, 10, 80,156,192,250, 81,118,238,213, 10,135, 24,254,
+156,101, 80,228, 78,107, 85,156,117, 0,216,209,158, 5,171, 12, 92,137, 31, 5, 66, 94, 9,138,185, 42, 20, 51,135, 3, 75, 49,
+ 72,233,143, 60, 3, 12,105,251, 67,184, 88,123, 0,112,189,228,149, 44,183,111,223,126,116,101,210, 63,209,127, 76, 44, 12,172,
+ 76,160,156,246,251,223,127, 96,225,254,249,243,255, 95,191, 25,254,252, 6,213, 7,133, 69,160,238,212,213,167, 79, 48,245, 62,
+188, 53, 81, 91,251,223,225,131,127, 25,153, 24, 94,191, 96,228,224,100, 56,184,131,225,215,119, 96, 9,193,160,103,196,250,236,
+209, 63,123,123,111, 96,190,197,179,147, 16, 88,250,119,101, 51,148, 77, 37,191, 14,160,228, 2, 97,242,244,226, 26,214,160, 15,
+128,172,252,241,241,241,129, 68, 61,164, 59, 11,108,230, 99, 85,252,239,223,191,243,231,207,219,218,218,194, 69,128,117, 0,164,
+ 44,254,253,251,247,223,191,127,129,145, 40, 42, 42,138,107, 18, 24, 62, 10, 68, 70,251,125, 0,135,128,208, 58, 1,100, 55,255,
+ 71,139,126, 82, 1, 64, 0,145, 86, 1, 0, 11, 98, 90,236,132,132, 52,150,129,185, 2,200,112,113,113, 65,107,251, 67,138, 81,
+226,183,170,194, 87, 1, 65,184,196,180,253,145,103,128, 33, 0,194,133, 44, 6,197,175, 23, 94,250,163,205, 7, 16,163, 23, 23,
+ 0, 54,255,113,233, 85, 85, 85,157, 63,231,183,179, 5, 43,176, 0,248,253,235, 31, 59, 27, 40,175,126,254,250,255,231,239,255,
+192,162,255,236,149,191,127,255,253,199,181,142, 19,168,119,241,194, 63,246, 14,204,129,209,204, 95, 62,255,255,252,145,225,235,
+103, 70, 69,213,255,127,127, 51,178, 48,113,124,120,247,239,217,147, 95, 37,133, 62,248,219,254, 19,242, 25,212,228, 24, 38, 23,
+ 49,228,246, 81, 84, 7,144,221, 39, 32, 79, 47,229,235, 62,201, 75,249,192,210,191,161,161, 1,185,177,223,213,213, 5,228,226,
+218, 29,246,235,215, 47, 96, 17,246,227,199, 15,102,102,102,200,221,103,107,215,174, 13, 14, 14,254,254,253, 59, 80,240,231,207,
+159, 60, 60, 60,192,106, 0,191,119,200, 91, 11, 52,176, 67, 64,240, 78, 0,132, 49, 90,244,211, 7, 0, 4, 16, 9, 21, 0,133,
+165, 63, 30,237,192, 66, 31, 82,202, 67,198,205,225, 75, 78,145, 27,254,104, 21, 3, 10, 96,102,100, 96, 99, 98,224,100,102,224,
+ 97, 97,248,249,121,117, 59, 43, 3,231,169,180, 16, 69, 6, 78,161, 89,139,137,106,248, 99, 93,243, 3, 41,193,241, 47,138, 71,
+ 46,253,145,231, 3,136,209,139,191,244,199,163,183,173,115, 70, 81,126, 6, 7, 7,176,181,200,160,171,206, 12, 13,171,203,127,
+127,255,253,255,247, 31,115, 73, 73, 9, 30,195,155, 90,102,148,148,100, 0,123, 12,191,126,255,255,251,135, 1,216,133,112,240,
+102,248,252,129,241,198, 69, 96, 1,195,228,231, 27,132,191,244,111, 72,102, 80, 1, 31, 73,162, 44,205, 64, 97, 63, 96, 36, 0,
+204, 61, 95,160,149, 93, 96,128, 75, 11,176, 2, 0,150,245,160,237, 24,250,250,127,254,252, 97,101,101, 5,182,169,129,141, 24,
+ 96,233,255,237,219, 55, 96,243, 95, 80, 80, 16,207, 50, 80, 56,128, 15,168, 18, 51,248, 51, 24,134,128,224,157, 0, 50,194,153,
+200,237, 2,163, 0, 19, 0, 4, 16,177, 21, 0,141,218,254, 88,187,246,152, 3, 62,100, 91, 77,112,244,159,146,210,159, 1,117,
+166, 23, 94,135, 49,128, 87,211, 18,212,139,107, 38,128, 24,189,125, 19,103, 0,131,139,137,137,225,200, 89,208,136, 63,100,214,
+ 23, 60,244, 95, 66, 80,111, 79,207,140,140, 76,240,134, 15, 38,144,150, 83,135, 24,190,126,249,247,255, 31,131,159,159,183,187,
+187, 59,158,210,191, 60,134, 65,128,135,225,217, 27, 6, 78,118,134,127,255, 25,184, 57, 24, 90,211, 25,170,103, 14,243, 58, 0,
+ 87,247,130,152, 52,137, 86,250,103,100,100, 64,138,254,205,155, 55, 3, 75, 73,172,213, 0,176, 2, 96, 98, 98, 2,182,103, 63,
+127,254,124,230,204, 25, 67, 67, 67, 96, 53,240,241,227,199,139, 23, 47, 42, 42, 42, 10, 11, 11, 3, 75,127,160, 8,193, 14, 13,
+100, 71, 24, 73, 29,130, 1, 31, 2, 34,175,237, 79,182,174, 81, 0, 4, 0, 1,132, 94, 1,224, 90,242, 79,228,234, 55, 74,122,
+208, 64, 5,152,135,178, 17, 44, 13,103,165,205, 4,141,246,220, 98, 0, 33, 4,248, 8, 70,247,201,118, 51, 49,165, 48,220, 71,
+192, 50, 2,178,159, 0, 88,109,144,122,149, 49, 80,239,210, 18,110, 72,125, 64,234, 13,189,240,224,130,204,250, 18,223,225,152,
+ 49, 29,161,247,203, 39, 80, 1,225,231,231, 71, 56,172,150, 80,191, 24,165,181,222, 1, 28,250,103, 64,157,230, 5, 6, 56,176,
+ 76,220,178,101, 11,166, 20, 90, 5, 0, 84, 6,108,224, 3, 25,114,114,114, 31, 62,124,168,173,173, 5, 86, 0,210,210,210, 95,
+190,124, 1, 10, 66,102, 2, 8, 90, 77,198, 40,208,139, 23, 47, 40,247, 50, 85, 12, 25, 5,116, 3, 0, 1, 52, 40, 46,133,135,
+ 3, 96, 17, 70,134, 57,100,175,240,161, 98,159,134,224,209,111,100,116, 5,136, 9, 46,172,108, 82,245, 18, 83,250, 83,210,204,
+ 31,168,116, 69,149,248, 37,207, 16,248,113,158,240, 19, 61, 53, 53, 53,231,205,155,247, 15, 12,240,180,223, 33,173,123,160, 26,
+ 96, 65, 15, 57, 12, 14, 92,193,255,163,195, 97,112,163, 96,120, 3,172,155,123, 0, 2,104,244, 82,248, 81, 48, 10, 70,193, 40,
+ 24,161, 0, 32,128, 70,111, 4, 27, 5,163, 96, 20,140,130, 17, 10, 0, 2,104,180, 2, 24, 5,163, 96, 20,140,130, 17, 10, 0,
+ 2,104,180, 2, 24, 5,163, 96, 20,140,130, 17, 10, 0, 2,104,180, 2, 24, 5,163, 96, 20,140,130, 17, 10, 0, 2, 8,203,165,
+240,200, 71, 50, 32,223,199,130, 44, 62,140, 47, 89, 70, 94,138, 10,247,251,232,133,212, 67, 43,172, 72,210,136,223,222,214,214,
+ 86, 8,163,186,186,122,164,197, 47,213,131,122, 52, 31, 13,136, 94, 60, 0, 32,128,168,118, 22, 16,228, 68, 79,226,212,178, 97,
+234,133,179,209, 78, 3, 37,242,254, 13, 10, 1,252, 90, 96, 72,113, 6,191, 63,143, 14, 53,240,173, 91,183,224,119, 18, 20, 21,
+ 21, 13,254, 67, 16,209,194,234,250,245,235, 12,224, 53,142, 52,181, 20,152, 12,252, 3,210, 55,110,152,137,150, 12,182,109, 63,
+ 7, 20,196,154, 48,128, 82, 88,141,242,242, 52, 34,222, 94, 96,233,239,235,171, 12,103,227,170, 3,112,129,207, 95, 62,223,123,
+118,239,219,255,111, 12,140, 12,108,255, 88,229, 68,229, 69,133, 69, 9,234, 58,118,236, 24, 50,215,202,202,106,180,161, 58, 10,
+104, 4, 0, 2,136,154,135,193, 17,121,137,202,213,167, 31, 48, 5,209,202, 92,228,237,136,248,139, 99, 34,119, 9,225,169, 60,
+ 32, 38, 64, 74, 52,204, 5,218, 16, 89,172,139,101,145,173,150, 86,148, 5,146, 47,127,252,248,243, 29,124, 30,255,135, 79, 12,
+224,243,139,240,157, 96, 1, 6,200, 23, 82,246,245,245, 17,115, 1, 58, 19, 35,104, 35, 46,132, 4, 2,172,140,233, 51,104, 82,
+ 89, 34,135, 21,164,232, 39, 62,172,200,174,191, 33,165, 63,184,224, 6,213, 1,196, 27, 5,169, 48, 48, 42, 0,210,156,241,235,
+ 87,249,206,157,105,238,238,179,124,125, 59, 33,189, 1, 34,171,129, 35, 87,143,200, 27,202, 38, 7, 39, 8,114, 9,254,251,243,
+247,199,255,159, 59, 78,238,218,119,112,175,149,146, 53, 7, 7, 7,158,210, 63, 51, 51, 19, 89,100,250,244,233,163,117,192, 40,
+160, 4, 32,223, 5,134,150, 61, 1, 2,136,202,167,129,162,157,139, 73, 6, 32,227,200, 46,130,219,226,241,180,229,225,183, 16,
+ 3,217, 16, 18, 77,150,168,131, 36, 5,248, 46,221, 91,193,201, 32,243,151,225,232,171, 57,231, 46,222,125, 27,212, 49,159,118,
+209,121,233,242, 21, 61, 93, 29, 96, 89,127,229, 10,136, 1, 20,129, 48,224, 34,255,240,134, 7,254, 27, 31,241, 92, 26, 14, 9,
+171,132,132, 4, 32, 27, 66,162,151,254,192,128,194, 22, 23, 64, 41,103,231,237,233,233,158,100,215, 1,192,210, 31,236,236, 89,
+ 27, 55, 16, 46,226,225, 90, 72, 45,235, 49,155,255, 64, 50, 56,120,237,206,157, 32, 50, 45,237, 46,164, 55, 64,176, 43, 0, 76,
+ 51,251,111,238,203,206,201, 52, 17, 53,228,228,231,255,255,235,207,191,255,127,153, 89,216, 84, 92, 84,110, 24,223,236,152,213,
+105, 46, 98, 1, 57,232, 13, 43,120,243,230, 13,156,237,109,203,109,158,127, 52,162,243, 7, 92,196,201,201,137,120, 47,108,216,
+176, 1,243,100, 80, 58,232,165, 10, 32,227,170,119,200, 62,228,209,147, 33,112,149,254, 16, 46,114, 29, 0, 16, 64, 44,200, 93,
+123, 82,216,108,152, 54,189,122,245, 10,126, 18, 50,158, 26,130,129, 93, 3, 79, 25,205,136, 81,100, 19, 51, 20,131,167,216,194,
+115,151, 0,176, 96, 2, 54,210, 49,203,125,200,165,196,240,138, 1, 15, 0, 54,252,159,190,255,184, 46, 35, 88,152,209,250,238,
+236, 18,165, 64,165,221, 52, 46,253,129, 0, 82,232, 3,129,142,142, 14, 92, 4,210, 39,128,139, 80,210,198,199, 90, 76, 67,194,
+ 10,179,220, 95,176, 96, 1, 48,172, 60,173, 13,183, 31, 61,207,192,203,205,240,233, 11, 45,188, 12, 30,207,153,133,107, 84, 7,
+ 63, 8,248, 84,133,189,128,227,107, 35,102,240, 39, 45,109, 39,144, 1, 33, 33, 82, 64, 6,254, 58,224,204,141, 51,201, 41,137,
+182,170, 14,127,127,254,252,243,247, 15, 35, 11, 48, 1, 51,255,103,248,247,242,245, 51, 77, 81,141,170,140,170,150,174, 22,103,
+ 29,156, 93,195, 11, 23, 46, 32, 42, 0,169, 5,104,133,254,190,125,251,136,172, 3,128, 37,248,182,218,237, 94,205, 12,100,148,
+227, 64,189, 93, 93, 93,101,101,101, 3, 82, 7, 0,203,241,155, 55,111, 62,123,246, 44, 50, 50,146, 36,141, 64, 93,163, 21, 0,
+246,102, 95, 57,168, 40,155,213, 89,129, 38, 14, 16, 64,136, 10, 0, 62,193,139,118, 46, 63, 86,113,180,179,230,145,171, 7,200,
+ 49,106,200,195, 65,200, 7,174, 1,107, 8,204, 33, 2,204, 11, 52,136, 25,186,161, 10, 88,181,106, 21,102,209, 15, 25,229,128,
+148,254, 64, 17, 60,218,159,220,123,244,117,125, 29, 79,210, 68, 96, 77, 32, 46,204,121,111,253, 61, 80,233, 47,192, 7, 26, 2,
+ 98,101, 38,198, 1,192,224,130,143, 2, 17,121,158, 4,176,172,151,227,102,152, 18,195,144,178,128, 65,148,139,225,250, 7,116,
+145,171, 68,220,152,130, 89,173, 18,236, 72, 53, 53, 53, 97, 22,253, 64, 70, 87,130,207,228, 29, 39, 36,148, 36, 95, 60,124,137,
+171,249, 15,100,224,233, 4, 16, 28,213, 1,183,244,211,209,218,251,144,250,128,152, 20,210,181, 12,139,215,212, 50,136, 74, 33,
+144,114, 31, 66,254,242, 85, 97,219,124, 7,191,250,111,223,191,113,169,113, 90, 72,154,255,252,250,149,133,157,157,133, 5,154,
+197,238,221,185,179,105,227,198,164,196, 4, 5,118, 57, 67,123,131, 39, 87,158,200, 72, 18,158,214,107,221,150,112,240,224,193,
+144, 16, 6,228, 30, 0, 49,117, 0,164,244,103, 80,232,223, 86, 91, 72,106, 29, 0,212, 59, 97,194, 4, 53, 53,181,201,147, 39,
+231,230,230,210,179, 14,128, 23,253,228,233,133,104, 36,163,235, 48,188,155,255,144,210, 31,194, 0,214, 1,200,157, 0,128, 0,
+162,230, 16, 16,176,112,135,140, 14, 3,107, 2,228, 10, 0,206,197,127,203, 10,174,169, 96,130,153, 60, 44, 44,140,114,199,195,
+ 11, 68,180,134, 63,228, 42, 74, 92,179,234,223, 25, 30,125, 9, 52,255,207, 91,194,224, 82,251,133, 97, 57,195, 28, 80,145,244,
+127,117, 9,107,220,228, 63,127,136,186, 91, 17,152,205, 72,173,228, 94,205, 99,104,156,193, 32, 43,195,240,114, 11,219,194,185,
+191, 18, 86, 96, 17,161,124,220, 12, 15,128, 79,249, 62,223,208,193,171,205,193,163, 90,176,170, 35, 69, 95, 71, 66,221,167, 5,
+ 79, 88,225,137,119,252, 3, 68,144,196, 0, 47,253,129, 92,200,220, 47,177,197, 25, 95, 27,145,101, 61, 26, 0, 22,247,104, 34,
+ 59,145,250, 1,184,192,243, 87,207,221, 66,221,120,249, 4,255, 50,254, 57,124,240,208,231, 47, 95,124,253,252, 94,191,122,181,
+102,237,186,228,196, 4,118, 14,118,166,255,172,238, 70,238,147,246, 79, 38,166, 2, 0,130,247,239, 73,190, 1, 13, 94,250,131,
+ 56, 36,214, 1, 64,189, 13, 13, 13, 42, 42, 32,191, 43, 43, 43,211,173, 31, 64, 73,209,143,220,252,135, 48, 70, 43, 0, 34, 1,
+ 64, 0, 81,121, 14, 0, 88,208, 67,110,119, 65,190, 40, 17,114, 66, 50, 49,115, 3,152, 83,193,196, 12, 1,225,186,122,151,120,
+ 0,105,230, 99,142,249,224,111,254, 3,193,142,202, 6,223,246,190, 63, 46,214,192,112,228, 57,126,103,247,221,183, 64,193, 63,
+ 46,185,191, 47,139, 48,138,102, 17, 83,246,225,239, 12, 97, 5,111, 3,150,231, 38, 62,190,149, 81,246,117,239, 47, 9, 17,236,
+ 34,100,244, 0,136,172, 21,128, 13,127, 80, 83,194,215,238,196,179, 87,188,250,188, 79,119,222,101,224, 96, 15,206,141, 19,146,
+241,161, 93, 50,197, 92,249, 67, 94, 7, 17,235, 32, 18,174,117, 65,192,226,222,125,150,123,240, 90,134,180,157, 32, 6,144, 75,
+ 76, 39,224,203,143,207, 34,156,194,127,126,124,251,207,244,223,212,204,108,253,250,245, 19,250,250,254,253,255, 31, 29, 19, 45,
+ 36, 44,244,237,203,151, 63,127,255,240,178,242,253,102,250, 77,164,155, 63,124,248, 0, 95, 23, 68,204,108, 48, 74,233, 15, 1,
+ 68,215, 1, 64,189,192, 92, 96,102,102, 6, 23,209,209,209,129,140,119,209,174, 14,160,188,232, 71,110,254, 51,128, 47,133, 31,
+237, 4, 16, 9, 0, 2,136, 5, 79, 97,132, 71, 28,207, 17,114,144, 97, 34,200,108, 48,100, 86, 0,210, 45, 0,138, 35, 79, 39,
+208,162,104, 32, 27,224, 26,241, 39,120, 19,125,208,140,181,255,253, 20, 95, 90, 26, 9, 51, 88,115, 6, 79,254,243,252, 53,131,
+ 0, 31,203,219,229, 91, 38,156,101, 96,102, 38,198,241,100,156,117,124,177, 40,210,196,128, 65, 41,247,138, 54, 79,226, 77,249,
+ 80,134, 41,101,152, 34,180,235, 1, 0,195,196,214, 84,221,197, 90,205, 87,183,172,119,194,244,107,103,159,102, 56,153,188,216,
+184,237,227,251, 79,100,196, 5,218, 0, 17,174,116,133,181,201, 79, 94,212, 99,154,131,117,174, 24, 88,228, 1, 11, 62, 96,233,
+ 15,175, 12,128, 36,176, 26, 0,150,254,155, 55,223,133, 76, 0, 64,102,137,245,236,226,209,234, 86,208,225,157,255, 24,254,255,
+251,195,206,201, 17, 19, 27,219, 88, 95, 47, 46, 46, 46, 45, 33,241,227,235,151,191,255,129,226,127,241, 92,231, 2, 44,226,215,
+172, 89,243,246,237,219, 79,159, 62,193,171,106,248,186, 32,130, 43,130,128, 37,120,111,202, 85, 6, 14, 21,134, 23, 83, 81, 36,
+ 56, 84,128,226,197,115,240,213, 1, 64,189,254,254,254,192, 18, 31,104, 59,178,184,156,156, 28, 80,124,192,231,132,137,108,254,
+143,118, 2, 72, 2, 0, 1,196,130,153,157,200,216, 8, 6, 1,144, 91, 27,145, 59, 1,144, 18, 31, 40, 2, 95, 54, 14,148,250,
+ 78,116,179,148,152,233, 95,202,151,129, 66,154,249, 88,167,130, 9, 26,123,183, 59,141, 53,120,242,247,103,183, 88,142, 79,254,
+189, 54,151,209,171,103, 83, 86,200,195, 77,247,125,187, 22, 49,176,208,234,190,229,178,213, 12, 59,187,214,107, 63,116,103,120,
+243,181,212,181, 12,171, 8, 25, 61, 0,226,155,255, 27,215, 55, 48, 75,107,241, 48,168, 61, 58, 56,235, 51,227,255, 83,183, 30,
+187, 92,121,138, 55,228, 31,193, 6,235,102,194, 75,124, 32,216,187,215, 19, 77, 22,107,186,194, 53,224, 67,198,210, 82, 50,150,
+ 6, 1,155,255,144,162, 31, 72, 34,183,253, 33,179,196,192,202, 0, 77, 61, 47, 39,239,179,143,207,204, 20,204,191,255,252,193,
+240,253,199,159, 95,191,171,202,203, 25,153, 24,190,125,253, 2,172, 23,254,252,253,207,206,194,250,250,203,107,214,191,108,184,
+108, 12,129, 13,249, 3, 27,254,144, 60, 5, 95, 23,244,252,249,115,252,174, 5,150,209,192, 82, 30, 88,214,107, 42,162,152,127,
+253,254,175,226, 57,218,248, 75,112,160, 44,176,148, 7, 54,255,129, 37, 62,178,248,149, 43, 87, 54,110,220, 72,187,210, 95, 2,
+ 12,168, 50,250, 15, 7,163,157, 0, 34, 1, 64, 0, 81,179,144,130, 87, 15,192,162, 31, 88, 1, 64, 6,127, 48,107,133,253,231,
+ 63, 16, 83, 70, 19,159,183, 41, 89, 6, 10,111,254,163, 21,253,144,234,138,160, 27, 46,222,125,251,251,114,227, 75,134,163, 18,
+ 94, 61, 12, 31, 63,221,157, 85,162,156,217,255, 98,126, 9, 3, 43, 11,244,154, 46, 26,128, 71, 95, 25, 52,197, 2,241,139,208,
+168, 7, 0, 12,150,112, 23,115,254,127,130,223, 24, 88,215,246,231, 78,219,114,161,212,195, 38,161,111, 89, 72,219, 98, 26, 77,
+215, 67, 42,120,216, 62, 0,210,106,125,146, 6,124,176,118, 2,210,192,109,124,228,210, 31,222,252,199, 5,164,196,164,118, 28,
+222,105, 37,107,197,197,205,243,239,223,127,166,255,127,254, 49, 50, 2, 67, 27,216,246,255,243,239,255,159, 63,127,190,127,252,
+186,245,244, 86,121, 49,121, 98,220,128,188, 34,168, 58,215,218, 91,234,222,172,211, 12,164,214, 1,196,148,254,112,189, 64,223,
+117,117,117, 73, 74, 74, 66,155, 56,119,239, 2, 35,157, 14,109,127, 74,170, 1,180,230,255,104, 39,128,120, 0, 16, 64,180,218,
+ 8, 6, 41,238,145,107, 5, 34,111, 44, 65,203,219, 68, 22, 43,228, 45, 3,197,108,254, 19, 95,244, 67,135,128, 58,230,175, 99,
+ 96,240,104,247,254,191,186,132, 49,172, 23, 88, 31, 48, 10, 9,222,121,242, 9,212,252,103,102,166, 81,156, 97,174,250, 39,105,
+ 31, 0,158, 74, 17,127,173, 0,105,254,167, 56,232, 21,244, 76,172,172, 42, 23,229, 19,187,122,237, 81,194,181,101,180, 94,169,
+133, 89,106,195,135,206,136, 91, 62, 68,120,192, 7, 15, 64, 43,253,225, 35, 63,184,102,131, 57, 56, 56, 88, 30,176,238,127,120,
+ 32, 84, 55,228,211,143, 79,140,160,102, 0, 16,255,251,251,247,255,191, 63,127,184,217,121,143,125, 60,127,251,248, 29, 87, 35,
+210,111, 49,186,155,202, 64,220, 50, 80, 68, 29, 32,249,232,250,115, 57, 34, 75,127,184,222,178,178,178,201,147, 39, 11, 8, 8,
+188,125,251,182,161,161,129,158, 35, 63,100, 84, 3,152,205,255,209, 78, 0,241, 0, 32,128,168,185, 15, 0,179, 55,128,188,205,
+ 21,210, 9, 32,169,113, 74,135,195, 24,224,205,127,228, 5,160, 64,111,194,171, 13,130, 91,121, 33,117, 64, 96,251,188,255,107,
+ 25, 68, 18,102, 30, 40, 8,177,233, 92,202,192,202,202,205,193, 70, 35, 55,195, 23,251,163, 49, 72,218, 7, 64, 70, 15, 0,210,
+252, 47,152,181,185, 42,217, 77, 74,194, 1, 62,232, 71,124, 88,193,202,110, 79,103,231,237,176,241, 31, 18,198,238,144, 91,244,
+240,147, 33,168, 59,224, 67, 16, 32,151,251,144,222, 0,230,176,149,161,134,225,230,101,155,255,134,255,177,151,181, 23,230, 21,
+254,241,251, 7, 48,180,217, 88,216, 62,124,255,118,226,201,222, 5, 75, 22, 58,106, 57,146, 97,117,235,182,132,133, 11, 23,150,
+148, 16,181, 9, 0, 86, 7, 48,144, 84,250,195,245,230,230,230, 14,224, 62, 0,120, 53, 64,164, 98, 82,183, 11,140, 28,224, 19,
+ 83,187,101, 73,243,172,206, 10,228,125, 0,200, 51,109, 0, 1, 68,205,125, 0,104,189, 1,204,226,158,212,107, 11,137, 4,148,
+ 47, 3,133,212, 52,144, 91,118,225,149,156, 18, 24, 16,217, 15, 96,128,109,254,178,175,154, 1, 97,124,165, 77,140, 82,222,220,
+166,164, 90, 5, 54,255, 93,247,156,140,174, 95, 4,116, 6,114,215,138,248,176,162, 86, 63,128,212, 77, 97, 20, 14, 7, 97,150,
+254,160, 69,162, 24, 19, 0,112,224,168,231,116,112,205,225,227,114, 39,172,205,173,165,121,165, 25,254,253,127,253,227,237,177,
+115,199, 94, 92,125,225,164,233,196,206,206, 78,135,204, 15,169, 3,200, 43,193, 33,253,128,129,157,245, 29,109,188, 83, 17, 96,
+110, 1,131, 0,128, 0,162,230, 16, 16,230, 62, 38,172, 11, 52, 9, 94, 66, 73,106, 9, 69,225, 50, 80,200, 82,159, 61, 96, 64,
+ 82,113, 6,233, 43, 80, 98, 53,230, 88, 54, 37,103,230,208,161, 10,113,173,153, 77, 94, 88, 97,118, 2,136,119, 6,174,178, 30,
+216, 9,128,203, 18, 83,148,147, 49, 28, 4, 90, 11,148,214,234, 62,203, 29,235,158, 0,252,147, 1,102,218,102,223,190,125, 59,
+185,241,228,151, 95,160,198, 0, 59, 19,155,156,184,188,166, 1, 9,167,230, 89, 89, 89,173, 93,187, 22,121, 69,208,239,223,191,
+ 73, 10,106, 74, 74,240,193,188,230,103, 20,144,218, 9,192, 85,252, 2, 4, 16, 11,253,139, 21,252, 27,133, 72, 45,158, 40,191,
+ 52,156,236,226,140,242,102, 47, 29, 70,207,177, 14,255,192, 78,220,160, 95, 88, 81,226,113, 82,219,233,212, 29, 14, 2,149,242,
+ 15,177,136,155, 84,155, 16,212,203,197,197,165,163,170, 75,137,179,131,131,131, 71,139,176, 81, 64,121, 29,128, 75, 10, 32,128,
+ 70, 47,133, 31, 5,163, 96, 20,140,130, 17, 10, 0, 2,104,244, 70,176, 81, 48, 10, 70,193, 40, 24,161, 0, 32,128, 70, 43,128,
+ 81, 48, 10, 70,193, 40, 24,161, 0, 32,192, 0, 52,101,156,138,244,239,185,126, 0, 0, 0, 0, 73, 69, 78, 68,174, 66, 96,130,
};
diff --git a/source/blender/src/butspace.c b/source/blender/src/butspace.c
index a068ec8c71e..a702f294d47 100644
--- a/source/blender/src/butspace.c
+++ b/source/blender/src/butspace.c
@@ -41,6 +41,7 @@
#include "MEM_guardedalloc.h"
+#include "DNA_color_types.h"
#include "DNA_object_types.h"
#include "DNA_scene_types.h"
#include "DNA_screen_types.h"
@@ -48,6 +49,7 @@
#include "DNA_space_types.h"
#include "DNA_texture_types.h"
+#include "BKE_colortools.h"
#include "BKE_global.h"
#include "BKE_main.h"
#include "BKE_library.h"
@@ -239,6 +241,195 @@ void test_texpoin_but(char *name, ID **idpp)
*idpp= NULL;
}
+/* ----------- custom button group ---------------------- */
+
+static void curvemap_buttons_zoom_in(void *cumap_v, void *unused)
+{
+ CurveMapping *cumap = cumap_v;
+ float d;
+
+ /* we allow 5 times zoom */
+ if( (cumap->curr.xmax - cumap->curr.xmin) > 0.2f*(cumap->clipr.xmax - cumap->clipr.xmin) ) {
+ d= 0.1154f*(cumap->curr.xmax - cumap->curr.xmin);
+ cumap->curr.xmin+= d;
+ cumap->curr.xmax-= d;
+ d= 0.1154f*(cumap->curr.ymax - cumap->curr.ymin);
+ cumap->curr.ymin+= d;
+ cumap->curr.ymax-= d;
+ }
+}
+
+static void curvemap_buttons_zoom_out(void *cumap_v, void *unused)
+{
+ CurveMapping *cumap = cumap_v;
+ float d;
+
+ /* we allow 5 times zoom */
+ if( (cumap->curr.xmax - cumap->curr.xmin) < 5.0f*(cumap->clipr.xmax - cumap->clipr.xmin) ) {
+ d= 0.15f*(cumap->curr.xmax - cumap->curr.xmin);
+ cumap->curr.xmin-= d;
+ cumap->curr.xmax+= d;
+ d= 0.15f*(cumap->curr.ymax - cumap->curr.ymin);
+ cumap->curr.ymin-= d;
+ cumap->curr.ymax+= d;
+ }
+}
+
+static void curvemap_buttons_setclip(void *cumap_v, void *unused)
+{
+ CurveMapping *cumap = cumap_v;
+
+ curvemapping_changed(cumap, 0);
+}
+
+static void curvemap_buttons_delete(void *cumap_v, void *unused)
+{
+ CurveMapping *cumap = cumap_v;
+
+ curvemap_remove(cumap->cm+cumap->cur, SELECT);
+ curvemapping_changed(cumap, 0);
+}
+
+/* NOTE: this is a block-menu, needs 0 events, otherwise the menu closes */
+static uiBlock *curvemap_clipping_func(void *cumap_v)
+{
+ CurveMapping *cumap = cumap_v;
+ uiBlock *block;
+ uiBut *bt;
+
+ block= uiNewBlock(&curarea->uiblocks, "curvemap_clipping_func", UI_EMBOSS, UI_HELV, curarea->win);
+
+ /* use this for a fake extra empy space around the buttons */
+ uiDefBut(block, LABEL, 0, "", -4, 16, 128, 106, NULL, 0, 0, 0, 0, "");
+
+ bt= uiDefButBitI(block, TOG, CUMA_DO_CLIP, 1, "Use Clipping",
+ 0,100,120,18, &cumap->flag, 0.0, 0.0, 10, 0, "");
+ uiButSetFunc(bt, curvemap_buttons_setclip, cumap, NULL);
+
+ uiBlockBeginAlign(block);
+ uiDefButF(block, NUM, 0, "Min X ", 0,74,120,18, &cumap->clipr.xmin, -10.0, cumap->clipr.xmax, 10, 0, "");
+ uiDefButF(block, NUM, 0, "Min Y ", 0,56,120,18, &cumap->clipr.ymin, -10.0, cumap->clipr.ymax, 10, 0, "");
+ uiDefButF(block, NUM, 0, "Max X ", 0,38,120,18, &cumap->clipr.xmax, cumap->clipr.xmin, 10.0, 10, 0, "");
+ uiDefButF(block, NUM, 0, "Max Y ", 0,20,120,18, &cumap->clipr.ymax, cumap->clipr.ymin, 10.0, 10, 0, "");
+
+ uiBlockSetDirection(block, UI_RIGHT);
+
+ return block;
+}
+
+
+static void curvemap_tools_dofunc(void *cumap_v, int event)
+{
+ CurveMapping *cumap = cumap_v;
+ CurveMap *cuma= cumap->cm+cumap->cur;
+
+ switch(event) {
+ case 0:
+ curvemap_reset(cuma, &cumap->clipr);
+ curvemapping_changed(cumap, 0);
+ break;
+ case 1:
+ cumap->curr= cumap->clipr;
+ break;
+ case 2: /* set vector */
+ curvemap_sethandle(cuma, 1);
+ curvemapping_changed(cumap, 0);
+ break;
+ case 3: /* set auto */
+ curvemap_sethandle(cuma, 0);
+ curvemapping_changed(cumap, 0);
+ break;
+ }
+ addqueue(curarea->win, REDRAW, 1);
+}
+
+static uiBlock *curvemap_tools_func(void *cumap_v)
+{
+ uiBlock *block;
+ short yco= 0, menuwidth=120;
+
+ block= uiNewBlock(&curarea->uiblocks, "curvemap_tools_func", UI_EMBOSSP, UI_HELV, curarea->win);
+ uiBlockSetButmFunc(block, curvemap_tools_dofunc, cumap_v);
+
+ uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1, "Reset View", 0, yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 0, 1, "");
+ uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1, "Vector Handle", 0, yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 0, 2, "");
+ uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1, "Auto Handle", 0, yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 0, 3, "");
+ uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1, "Reset Curve", 0, yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 0, 0, "");
+
+ uiBlockSetDirection(block, UI_RIGHT);
+ uiTextBoundsBlock(block, 50);
+ return block;
+}
+
+/* still unsure how this call evolves... we use labeltype for defining what curve-channels to show */
+void curvemap_buttons(uiBlock *block, CurveMapping *cumap, char labeltype, short event, short redraw, rctf *rect)
+{
+ uiBut *bt;
+ float dx, fy= rect->ymax-18.0f;
+ int icon;
+ short xco, yco;
+
+ yco= (short)(rect->ymax-18.0f);
+
+ /* curve choice options + tools/settings, 8 icons */
+ dx= (rect->xmax-rect->xmin)/(8.0f);
+
+ uiBlockBeginAlign(block);
+ if(labeltype=='v') { /* vector */
+ xco= (short)rect->xmin;
+ if(cumap->cm[0].curve)
+ uiDefButI(block, ROW, redraw, "X", xco, yco+2, dx, 16, &cumap->cur, 0.0, 0.0, 0.0, 0.0, "");
+ xco= (short)(rect->xmin+1.0f*dx);
+ if(cumap->cm[1].curve)
+ uiDefButI(block, ROW, redraw, "Y", xco, yco+2, dx, 16, &cumap->cur, 0.0, 1.0, 0.0, 0.0, "");
+ xco= (short)(rect->xmin+2.0f*dx);
+ if(cumap->cm[2].curve)
+ uiDefButI(block, ROW, redraw, "Z", xco, yco+2, dx, 16, &cumap->cur, 0.0, 2.0, 0.0, 0.0, "");
+ }
+ else if(labeltype=='c') { /* color */
+ xco= (short)rect->xmin;
+ if(cumap->cm[0].curve)
+ uiDefButI(block, ROW, redraw, "R", xco, yco+2, dx, 16, &cumap->cur, 0.0, 0.0, 0.0, 0.0, "");
+ xco= (short)(rect->xmin+1.0f*dx);
+ if(cumap->cm[1].curve)
+ uiDefButI(block, ROW, redraw, "G", xco, yco+2, dx, 16, &cumap->cur, 0.0, 1.0, 0.0, 0.0, "");
+ xco= (short)(rect->xmin+2.0f*dx);
+ if(cumap->cm[2].curve)
+ uiDefButI(block, ROW, redraw, "B", xco, yco+2, dx, 16, &cumap->cur, 0.0, 2.0, 0.0, 0.0, "");
+ }
+ /* else no channels ! */
+ uiBlockEndAlign(block);
+
+ xco= (short)(rect->xmin+3.5f*dx);
+ uiBlockSetEmboss(block, UI_EMBOSSN);
+ bt= uiDefIconBut(block, BUT, redraw, ICON_ZOOMIN, xco, yco, dx, 14, NULL, 0.0, 0.0, 0.0, 0.0, "Zoom in");
+ uiButSetFunc(bt, curvemap_buttons_zoom_in, cumap, NULL);
+
+ xco= (short)(rect->xmin+4.25f*dx);
+ bt= uiDefIconBut(block, BUT, redraw, ICON_ZOOMOUT, xco, yco, dx, 14, NULL, 0.0, 0.0, 0.0, 0.0, "Zoom out");
+ uiButSetFunc(bt, curvemap_buttons_zoom_out, cumap, NULL);
+
+ xco= (short)(rect->xmin+5.0f*dx);
+ bt= uiDefIconBlockBut(block, curvemap_tools_func, cumap, event, ICON_MODIFIER, xco, yco, dx, 18, "Tools");
+
+ xco= (short)(rect->xmin+6.0f*dx);
+ if(cumap->flag & CUMA_DO_CLIP) icon= ICON_CLIPUV_HLT; else icon= ICON_CLIPUV_DEHLT;
+ bt= uiDefIconBlockBut(block, curvemap_clipping_func, cumap, event, icon, xco, yco, dx, 18, "Clipping Options");
+
+ xco= (short)(rect->xmin+7.0f*dx);
+ bt= uiDefIconBut(block, BUT, redraw, ICON_X, xco, yco, dx, 18, NULL, 0.0, 0.0, 0.0, 0.0, "Delete points");
+ uiButSetFunc(bt, curvemap_buttons_delete, cumap, NULL);
+
+ uiBlockSetEmboss(block, UI_EMBOSS);
+
+ uiDefBut(block, BUT_CURVE, event, "",
+ rect->xmin, rect->ymin, rect->xmax-rect->xmin, fy-rect->ymin,
+ cumap, 0.0f, 1.0f, 0, 0, "");
+
+
+}
+
+
/* --------------------------------- */
diff --git a/source/blender/src/buttons_editing.c b/source/blender/src/buttons_editing.c
index 5137af7a12b..c6ca4ffed3b 100644
--- a/source/blender/src/buttons_editing.c
+++ b/source/blender/src/buttons_editing.c
@@ -49,11 +49,11 @@
#include "DNA_action_types.h"
#include "DNA_armature_types.h"
#include "DNA_camera_types.h"
+#include "DNA_color_types.h"
#include "DNA_constraint_types.h"
#include "DNA_curve_types.h"
#include "DNA_effect_types.h"
#include "DNA_group_types.h"
-#include "DNA_image_types.h"
#include "DNA_key_types.h"
#include "DNA_lamp_types.h"
#include "DNA_lattice_types.h"
@@ -76,6 +76,7 @@
#include "BKE_blender.h"
#include "BKE_curve.h"
+#include "BKE_colortools.h"
#include "BKE_depsgraph.h"
#include "BKE_global.h"
#include "BKE_key.h"
@@ -1479,7 +1480,7 @@ static void editing_panel_shapes(Object *ob)
}
if(key->type && ob->shapenr!=1)
uiDefBut(block, TEX, B_MODIFIER_RECALC, "VGroup: ", 10, 90, 150,19, &kb->vgroup, 0.0, 31.0, 0, 0, "Vertex Weight Group name, to blend with Basis Shape");
-
+
}
/* *************************** FONT ******************************** */
diff --git a/source/blender/src/drawnode.c b/source/blender/src/drawnode.c
index ee62ff00d4c..626e72ccecf 100644
--- a/source/blender/src/drawnode.c
+++ b/source/blender/src/drawnode.c
@@ -361,9 +361,20 @@ static int node_shader_buts_normal(uiBlock *block, bNodeTree *ntree, bNode *node
return (int)(node->width-NODE_DY);
}
+static int node_shader_buts_curve(uiBlock *block, bNodeTree *ntree, bNode *node, rctf *butr)
+{
+ if(block) {
+ if(node->type==SH_NODE_CURVE_VEC)
+ curvemap_buttons(block, node->storage, 'v', B_NODE_EXEC, B_REDR, butr);
+ else
+ curvemap_buttons(block, node->storage, 'c', B_NODE_EXEC, B_REDR, butr);
+ }
+ return (int)(node->width-NODE_DY);
+}
+
static int node_shader_buts_mapping(uiBlock *block, bNodeTree *ntree, bNode *node, rctf *butr)
{
- if(block && (node->flag & NODE_OPTIONS)) {
+ if(block) {
TexMapping *texmap= node->storage;
short dx= (short)((butr->xmax-butr->xmin)/7.0f);
short dy= (short)(butr->ymax-19);
@@ -472,7 +483,7 @@ static int node_shader_buts_mix_rgb(uiBlock *block, bNodeTree *ntree, bNode *nod
static int node_shader_buts_valtorgb(uiBlock *block, bNodeTree *ntree, bNode *node, rctf *butr)
{
- if(block && (node->flag & NODE_OPTIONS)) {
+ if(block) {
if(node->storage) {
draw_colorband_buts_small(block, node->storage, butr, B_NODE_EXEC);
}
@@ -496,6 +507,10 @@ static void node_shader_set_butfunc(bNodeType *ntype)
case SH_NODE_NORMAL:
ntype->butfunc= node_shader_buts_normal;
break;
+ case SH_NODE_CURVE_VEC:
+ case SH_NODE_CURVE_RGB:
+ ntype->butfunc= node_shader_buts_curve;
+ break;
case SH_NODE_MAPPING:
ntype->butfunc= node_shader_buts_mapping;
break;
diff --git a/source/blender/src/editnode.c b/source/blender/src/editnode.c
index 2cc87b29095..1881ea08a56 100644
--- a/source/blender/src/editnode.c
+++ b/source/blender/src/editnode.c
@@ -143,9 +143,12 @@ static void shader_node_event(SpaceNode *snode, short event)
// bNode *node;
switch(event) {
- case B_NODE_EXEC:
- snode_handle_recalc(snode);
- break;
+ case B_NODE_EXEC:
+ snode_handle_recalc(snode);
+ break;
+ case B_REDR:
+ allqueue(REDRAWNODE, 1);
+ break;
}
}
@@ -1020,7 +1023,7 @@ static void node_add_menu(SpaceNode *snode)
short event, mval[2];
/* shader menu, still hardcoded defines... solve */
- event= pupmenu("Add Node%t|Output%x1|Geometry%x108|Material%x100|Texture%x106|Mapping%x109|Normal%x107|Value %x102|Color %x101|Mix Color %x103|ColorRamp %x104|Color to BW %x105");
+ event= pupmenu("Add Node%t|Output%x1|Geometry%x108|Material%x100|Texture%x106|Mapping%x109|Normal%x107|RGB Curves%x111|Vector Curves%x110|Value %x102|Color %x101|Mix Color %x103|ColorRamp %x104|Color to BW %x105");
if(event<1) return;
getmouseco_areawin(mval);
@@ -1416,12 +1419,13 @@ void node_make_group(SpaceNode *snode)
/* ******************** main event loop ****************** */
-/* special version to prevent overlapping buttons */
+/* special version to prevent overlapping buttons, has a bit of hack... */
int node_uiDoBlocks(SpaceNode *snode, ListBase *lb, short event)
{
bNode *node;
rctf rect;
ListBase listb= *lb;
+ void *prev;
int retval= UI_NOTHING;
short mval[2];
@@ -1437,12 +1441,19 @@ int node_uiDoBlocks(SpaceNode *snode, ListBase *lb, short event)
if(node->block) {
if(node == visible_node(snode, &rect)) {
+ /* when there's menus, the prev pointer becomes zero! */
+ prev= ((struct Link *)node->block)->prev;
+
lb->first= lb->last= node->block;
retval= uiDoBlocks(lb, event);
+
+ ((struct Link *)node->block)->prev= prev;
+
break;
}
}
}
+
*lb= listb;
return retval;
@@ -1506,6 +1517,9 @@ void winqreadnodespace(ScrArea *sa, void *spacedata, BWinEvent *evt)
dx= (float)(0.1154*(G.v2d->cur.xmax-G.v2d->cur.xmin));
G.v2d->cur.xmin+= dx;
G.v2d->cur.xmax-= dx;
+ dx= (float)(0.1154*(G.v2d->cur.ymax-G.v2d->cur.ymin));
+ G.v2d->cur.ymin+= dx;
+ G.v2d->cur.ymax-= dx;
test_view2d(G.v2d, sa->winx, sa->winy);
doredraw= 1;
break;
@@ -1513,6 +1527,9 @@ void winqreadnodespace(ScrArea *sa, void *spacedata, BWinEvent *evt)
dx= (float)(0.15*(G.v2d->cur.xmax-G.v2d->cur.xmin));
G.v2d->cur.xmin-= dx;
G.v2d->cur.xmax+= dx;
+ dx= (float)(0.15*(G.v2d->cur.ymax-G.v2d->cur.ymin));
+ G.v2d->cur.ymin-= dx;
+ G.v2d->cur.ymax+= dx;
test_view2d(G.v2d, sa->winx, sa->winy);
doredraw= 1;
break;
diff --git a/source/blender/src/interface.c b/source/blender/src/interface.c
index 97433921660..05d7718da90 100644
--- a/source/blender/src/interface.c
+++ b/source/blender/src/interface.c
@@ -64,6 +64,7 @@
#include "BLI_blenlib.h"
#include "BLI_arithb.h"
+#include "DNA_color_types.h"
#include "DNA_screen_types.h"
#include "DNA_space_types.h"
#include "DNA_userdef_types.h"
@@ -73,6 +74,7 @@
#include "DNA_vfont_types.h"
#include "BKE_blender.h"
+#include "BKE_colortools.h"
#include "BKE_global.h"
#include "BKE_library.h"
#include "BKE_texture.h"
@@ -2502,6 +2504,9 @@ static uiBlock *ui_do_but_BLOCK(uiBut *but, int event)
but->flag &= ~UI_SELECT;
uibut_do_func(but);
+ if(but->retval)
+ addqueue(curarea->win, UI_BUT_EVENT, (short)but->retval);
+
return block;
}
@@ -3324,6 +3329,142 @@ static int ui_do_but_NORMAL(uiBut *but)
return but->retval;
}
+static int ui_do_but_CURVE(uiBut *but)
+{
+ CurveMapping *cumap= (CurveMapping *)but->poin;
+ CurveMap *cuma= cumap->cm+cumap->cur;
+ CurveMapPoint *cmp= cuma->curve;
+ float fx, fy, zoomx, zoomy, offsx, offsy;
+ short mval[2], mvalo[2];
+
+ uiGetMouse(mywinget(), mval);
+
+ /* calculate offset and zoom */
+ zoomx= (but->x2-but->x1)/(cumap->curr.xmax-cumap->curr.xmin);
+ zoomy= (but->y2-but->y1)/(cumap->curr.ymax-cumap->curr.ymin);
+ offsx= cumap->curr.xmin;
+ offsy= cumap->curr.ymin;
+
+ if(G.qual & LR_CTRLKEY) {
+
+ fx= ((float)mval[0] - but->x1)/zoomx + offsx;
+ fy= ((float)mval[1] - but->y1)/zoomy + offsy;
+
+ curvemap_insert(cuma, fx, fy);
+ curvemapping_changed(cumap, 0);
+
+ ui_draw_but(but);
+ ui_block_flush_back(but->block);
+ }
+ else {
+ float dist, mindist= 200.0f; // 14 pixels radius
+ int a, sel= -1;
+
+
+ /* check for selecting of a point */
+ for(a=0; a<cuma->totpoint; a++) {
+ fx= but->x1 + zoomx*(cmp[a].x-offsx);
+ fy= but->y1 + zoomy*(cmp[a].y-offsy);
+ dist= (fx-mval[0])*(fx-mval[0]) + (fy-mval[1])*(fy-mval[1]);
+ if(dist < mindist) {
+ sel= a;
+ mindist= dist;
+ }
+ }
+ /* ok, we move a point */
+ if(sel!= -1) {
+ int moved_point;
+ int moved_mouse= 0;
+
+ /* deselect all if this one is deselect. except if we hold shift */
+ if((G.qual & LR_SHIFTKEY)==0 && (cmp[sel].flag & SELECT)==0)
+ for(a=0; a<cuma->totpoint; a++)
+ cmp[a].flag &= ~SELECT;
+ cmp[sel].flag |= SELECT;
+
+ /* draw to show select updates */
+ ui_draw_but(but);
+ ui_block_flush_back(but->block);
+
+ /* while move mouse, do move points around */
+ while(get_mbut() & L_MOUSE) {
+
+ uiGetMouse(mywinget(), mvalo);
+
+ if(mval[0]!=mvalo[0] || mval[1]!=mvalo[1]) {
+ moved_mouse= 1; /* for selection */
+ moved_point= 0; /* for ctrl grid, can't use orig coords because of sorting */
+
+ fx= (mvalo[0]-mval[0])/zoomx;
+ fy= (mvalo[1]-mval[1])/zoomy;
+ for(a=0; a<cuma->totpoint; a++) {
+ if(cmp[a].flag & SELECT) {
+ float origx= cmp[a].x, origy= cmp[a].y;
+ cmp[a].x+= fx;
+ cmp[a].y+= fy;
+ if( (get_qual() & LR_SHIFTKEY) ) {
+ cmp[a].x= 0.125f*floor(0.5f + 8.0f*cmp[a].x);
+ cmp[a].y= 0.125f*floor(0.5f + 8.0f*cmp[a].y);
+ }
+ if(cmp[a].x!=origx || cmp[a].y!=origy)
+ moved_point= 1;
+ }
+ }
+ curvemapping_changed(cumap, 0); /* no remove doubles */
+
+ ui_draw_but(but);
+ ui_block_flush_back(but->block);
+
+ if(moved_point) {
+ mval[0]= mvalo[0];
+ mval[1]= mvalo[1];
+ }
+ }
+ BIF_wait_for_statechange();
+ }
+
+ if(moved_mouse==0) {
+ /* deselect all, select one */
+ if((G.qual & LR_SHIFTKEY)==0) {
+ for(a=0; a<cuma->totpoint; a++)
+ cmp[a].flag &= ~SELECT;
+ cmp[sel].flag |= SELECT;
+ }
+ }
+ else
+ curvemapping_changed(cumap, 1); /* remove doubles */
+
+ ui_draw_but(but);
+ ui_block_flush_back(but->block);
+ }
+ else {
+ /* we move the view */
+ while(get_mbut() & L_MOUSE) {
+
+ uiGetMouse(mywinget(), mvalo);
+
+ if(mval[0]!=mvalo[0] || mval[1]!=mvalo[1]) {
+ fx= (mvalo[0]-mval[0])/zoomx;
+ fy= (mvalo[1]-mval[1])/zoomy;
+ cumap->curr.xmin-=fx;
+ cumap->curr.ymin-=fy;
+ cumap->curr.xmax-=fx;
+ cumap->curr.ymax-=fy;
+
+ ui_draw_but(but);
+ ui_block_flush_back(but->block);
+
+ mval[0]= mvalo[0];
+ mval[1]= mvalo[1];
+ }
+ }
+ BIF_wait_for_statechange();
+ }
+ }
+
+ return but->retval;
+}
+
/* ************************************************ */
void uiSetButLock(int val, char *lockstr)
@@ -3524,6 +3665,9 @@ static int ui_do_button(uiBlock *block, uiBut *but, uiEvent *uevent)
case BUT_NORMAL:
retval= ui_do_but_NORMAL(but);
break;
+ case BUT_CURVE:
+ retval= ui_do_but_CURVE(but);
+ break;
#ifdef INTERNATIONAL
case CHARTAB:
@@ -5807,6 +5951,23 @@ uiBut *uiDefIconTextBlockBut(uiBlock *block, uiBlockFuncFP func, void *arg, int
return but;
}
+/* Block button containing icon */
+uiBut *uiDefIconBlockBut(uiBlock *block, uiBlockFuncFP func, void *arg, int retval, int icon, short x1, short y1, short x2, short y2, char *tip)
+{
+ uiBut *but= ui_def_but(block, BLOCK, retval, "", x1, y1, x2, y2, arg, 0.0, 0.0, 0.0, 0.0, tip);
+
+ but->icon= (BIFIconID) icon;
+ but->flag|= UI_HAS_ICON;
+
+ but->flag|= UI_ICON_LEFT;
+ but->flag|= UI_ICON_RIGHT;
+
+ but->block_func= func;
+ ui_check_but(but);
+
+ return but;
+}
+
void uiDefKeyevtButS(uiBlock *block, int retval, char *str, short x1, short y1, short x2, short y2, short *spoin, char *tip)
{
uiBut *but= ui_def_but(block, KEYEVT|SHO, retval, str, x1, y1, x2, y2, spoin, 0.0, 0.0, 0.0, 0.0, tip);
diff --git a/source/blender/src/interface_draw.c b/source/blender/src/interface_draw.c
index cb41a45b798..d910a394e61 100644
--- a/source/blender/src/interface_draw.c
+++ b/source/blender/src/interface_draw.c
@@ -55,6 +55,8 @@
#include "BLI_blenlib.h"
#include "BLI_arithb.h"
+#include "DNA_color_types.h"
+#include "DNA_key_types.h"
#include "DNA_packedFile_types.h"
#include "DNA_screen_types.h"
#include "DNA_space_types.h"
@@ -64,8 +66,10 @@
#include "DNA_vfont_types.h"
#include "BKE_blender.h"
+#include "BKE_colortools.h"
#include "BKE_font.h"
#include "BKE_global.h"
+#include "BKE_key.h"
#include "BKE_utildefines.h"
#include "datatoc.h" /* std font */
@@ -211,7 +215,7 @@ static void ui_draw_icon(uiBut *but, BIFIconID icon)
else if(but->flag & UI_ACTIVE);
else blend= -60;
}
- BIF_icon_draw_blended((int)(xs+0.5f), (int)(ys+0.5f), icon, but->themecol, blend);
+ BIF_icon_draw_blended(xs, ys, icon, but->themecol, blend);
glDisable(GL_BLEND);
@@ -2050,6 +2054,126 @@ static void ui_draw_but_NORMAL(uiBut *but)
if(old[a])
glEnable(GL_LIGHT0+a);
}
+}
+
+static void ui_draw_but_curve_grid(uiBut *but, float zoomx, float zoomy, float offsx, float offsy, float step)
+{
+ float dx, dy, fx, fy;
+
+ glBegin(GL_LINES);
+ dx= step*zoomx;
+ fx= but->x1 + zoomx*(-offsx);
+ if(fx > but->x1) fx -= dx*( floor(fx-but->x1));
+ while(fx < but->x2) {
+ glVertex2f(fx, but->y1);
+ glVertex2f(fx, but->y2);
+ fx+= dx;
+ }
+
+ dy= step*zoomy;
+ fy= but->y1 + zoomy*(-offsy);
+ if(fy > but->y1) fy -= dy*( floor(fy-but->y1));
+ while(fy < but->y2) {
+ glVertex2f(but->x1, fy);
+ glVertex2f(but->x2, fy);
+ fy+= dy;
+ }
+ glEnd();
+
+}
+
+static void ui_draw_but_CURVE(uiBut *but)
+{
+ CurveMapping *cumap= (CurveMapping *)but->poin;
+ CurveMap *cuma= cumap->cm+cumap->cur;
+ CurveMapPoint *cmp;
+ float fx, fy, dx, dy, fac[2], zoomx, zoomy, offsx, offsy;
+ GLint scissor[4];
+ int a;
+
+ /* need scissor test, curve can draw outside of boundary */
+ glGetIntegerv(GL_VIEWPORT, scissor);
+ fx= but->x1; fy= but->y1;
+ ui_graphics_to_window(but->win, &fx, &fy);
+ dx= but->x2; dy= but->y2;
+ ui_graphics_to_window(but->win, &dx, &dy);
+ glScissor((int)floor(fx), (int)floor(fy), (int)ceil(dx-fx), (int)ceil(dy-fy));
+
+ /* calculate offset and zoom */
+ zoomx= (but->x2-but->x1-2.0*but->aspect)/(cumap->curr.xmax - cumap->curr.xmin);
+ zoomy= (but->y2-but->y1-2.0*but->aspect)/(cumap->curr.ymax - cumap->curr.ymin);
+ offsx= cumap->curr.xmin-but->aspect/zoomx;
+ offsy= cumap->curr.ymin-but->aspect/zoomy;
+
+ /* backdrop */
+ if(cumap->flag & CUMA_DO_CLIP) {
+ BIF_ThemeColorShade(TH_BUT_NEUTRAL, -20);
+ glRectf(but->x1, but->y1, but->x2, but->y2);
+ BIF_ThemeColor(TH_BUT_NEUTRAL);
+ glRectf(but->x1 + zoomx*(cumap->clipr.xmin-offsx),
+ but->y1 + zoomy*(cumap->clipr.ymin-offsy),
+ but->x1 + zoomx*(cumap->clipr.xmax-offsx),
+ but->y1 + zoomy*(cumap->clipr.ymax-offsy));
+ }
+ else {
+ BIF_ThemeColor(TH_BUT_NEUTRAL);
+ glRectf(but->x1, but->y1, but->x2, but->y2);
+ }
+
+ /* grid, every .25 step */
+ BIF_ThemeColorBlend(TH_BUT_NEUTRAL, TH_BUT_OUTLINE, 0.06f);
+ ui_draw_but_curve_grid(but, zoomx, zoomy, offsx, offsy, 0.25f);
+ /* grid, every 1.0 step */
+ BIF_ThemeColorBlend(TH_BUT_NEUTRAL, TH_BUT_OUTLINE, 0.12f);
+ ui_draw_but_curve_grid(but, zoomx, zoomy, offsx, offsy, 1.0f);
+ /* axes */
+ BIF_ThemeColorBlend(TH_BUT_NEUTRAL, TH_BUT_OUTLINE, 0.25f);
+ glBegin(GL_LINES);
+ glVertex2f(but->x1, but->y1 + zoomy*(-offsy));
+ glVertex2f(but->x2, but->y1 + zoomy*(-offsy));
+ glVertex2f(but->x1 + zoomx*(-offsx), but->y1);
+ glVertex2f(but->x1 + zoomx*(-offsx), but->y2);
+ glEnd();
+
+ /* the curve */
+ BIF_ThemeColor(TH_TEXT);
+ glBegin(GL_LINE_STRIP);
+
+ if(cuma->table==NULL)
+ curvemapping_changed(cumap, 0); /* 0 = no remove doubles */
+ cmp= cuma->table;
+
+ glVertex2f(but->x1, but->y1 + zoomy*(cmp[0].y-offsy)); /* first point */
+ for(a=0; a<=CM_TABLE; a++) {
+ fx= but->x1 + zoomx*(cmp[a].x-offsx);
+ fy= but->y1 + zoomy*(cmp[a].y-offsy);
+ glVertex2f(fx, fy);
+ }
+ glVertex2f(but->x2, but->y1 + zoomy*(cmp[a-1].y-offsy)); /* last point */
+ glEnd();
+
+ /* the points, use aspect to make them visible on edges */
+ cmp= cuma->curve;
+ glPointSize(3.0f);
+ bglBegin(GL_POINTS);
+ for(a=0; a<cuma->totpoint; a++) {
+ if(cmp[a].flag & SELECT)
+ BIF_ThemeColor(TH_TEXT_HI);
+ else
+ BIF_ThemeColor(TH_TEXT);
+ fac[0]= but->x1 + zoomx*(cmp[a].x-offsx);
+ fac[1]= but->y1 + zoomy*(cmp[a].y-offsy);
+ bglVertex2fv(fac);
+ }
+ bglEnd();
+ glPointSize(1.0f);
+
+ /* restore scissortest */
+ glScissor(scissor[0], scissor[1], scissor[2], scissor[3]);
+
+ /* outline */
+ BIF_ThemeColor(TH_BUT_OUTLINE);
+ fdrawbox(but->x1, but->y1, but->x2, but->y2);
}
@@ -2175,6 +2299,9 @@ void ui_draw_but(uiBut *but)
case BUT_NORMAL:
ui_draw_but_NORMAL(but);
break;
+ case BUT_CURVE:
+ ui_draw_but_CURVE(but);
+ break;
default:
but->embossfunc(but->type, but->themecol, but->aspect, but->x1, but->y1, but->x2, but->y2, but->flag);
diff --git a/source/blender/src/interface_icons.c b/source/blender/src/interface_icons.c
index a5e4c0fe825..d245e0e1427 100644
--- a/source/blender/src/interface_icons.c
+++ b/source/blender/src/interface_icons.c
@@ -57,6 +57,7 @@
#include "DNA_camera_types.h"
#include "DNA_image_types.h"
#include "DNA_scene_types.h"
+#include "DNA_screen_types.h"
#include "DNA_space_types.h"
#include "BKE_global.h"
@@ -73,10 +74,13 @@
#include "BIF_gl.h"
#include "BIF_glutil.h"
+#include "BIF_interface.h"
#include "BIF_interface_icons.h"
#include "BIF_previewrender.h"
#include "BIF_resources.h" /* elubie: should be removed once the enum for the ICONS is in BIF_preview_icons.h */
+#include "interface.h"
+
#include "PIL_time.h"
#include "RE_renderconverter.h"
@@ -727,7 +731,7 @@ void BIF_icon_draw(float x, float y, int icon_id)
if (!di->rect) return; /* something has gone wrong! */
- glRasterPos2f(x, y);
+ ui_rasterpos_safe(x, y, di->aspect);
/* di->rect contains image in 'rendersize', we only scale if needed */
if(di->rw!=di->w && di->rh!=di->h) {