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>2005-12-18 16:46:01 +0300
committerTon Roosendaal <ton@blender.org>2005-12-18 16:46:01 +0300
commite14ff3de3d4a2c9ee11ea53dde4a3a0e33395c0b (patch)
tree04cf3f1c27eecc66086394118ae80a180d2c4e1f /source/blender
parent510403277be6c5b34d01b386bfbf66871348f555 (diff)
Orange:
- Sunday merger with bf-blender - Foundations for new Node editor in Blender, generic framework that can be used for Material/Texture, Compositing, Logic or maybe even Sequencer. Note: this doesn't do anything yet, nor save! Is just to get this nice in CVS now. :)
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/blenkernel/BKE_node.h45
-rw-r--r--source/blender/blenkernel/intern/node.c87
-rw-r--r--source/blender/blenloader/intern/readfile.c8
-rw-r--r--source/blender/blenloader/intern/writefile.c3
-rw-r--r--source/blender/include/BIF_interface.h3
-rw-r--r--source/blender/include/BIF_resources.h4
-rw-r--r--source/blender/include/BIF_spacetypes.h1
-rw-r--r--source/blender/include/BSE_headerbuttons.h8
-rw-r--r--source/blender/include/BSE_node.h36
-rw-r--r--source/blender/include/blendef.h7
-rw-r--r--source/blender/include/mydevice.h1
-rw-r--r--source/blender/makesdna/DNA_node_types.h86
-rw-r--r--source/blender/makesdna/DNA_screen_types.h5
-rw-r--r--source/blender/makesdna/DNA_space_types.h19
-rw-r--r--source/blender/makesdna/intern/makesdna.c2
-rw-r--r--source/blender/python/api2_2x/Image.c11
-rw-r--r--source/blender/python/api2_2x/Lamp.c142
-rw-r--r--source/blender/python/api2_2x/doc/Lamp.py68
-rw-r--r--source/blender/src/blenderbuttons.c2952
-rw-r--r--source/blender/src/buttons_object.c13
-rw-r--r--source/blender/src/drawnode.c129
-rw-r--r--source/blender/src/drawtime.c9
-rw-r--r--source/blender/src/editnode.c379
-rw-r--r--source/blender/src/editscreen.c12
-rw-r--r--source/blender/src/edittime.c9
-rw-r--r--source/blender/src/fluidsim.c1
-rw-r--r--source/blender/src/header_node.c126
-rw-r--r--source/blender/src/headerbuttons.c4
-rw-r--r--source/blender/src/interface.c41
-rw-r--r--source/blender/src/interface_draw.c3
-rw-r--r--source/blender/src/space.c71
-rw-r--r--source/blender/src/spacetypes.c1
32 files changed, 2767 insertions, 1519 deletions
diff --git a/source/blender/blenkernel/BKE_node.h b/source/blender/blenkernel/BKE_node.h
new file mode 100644
index 00000000000..0c7bfc2bc50
--- /dev/null
+++ b/source/blender/blenkernel/BKE_node.h
@@ -0,0 +1,45 @@
+/**
+ * $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. The Blender
+ * Foundation also sells licenses for use in proprietary software under
+ * the Blender License. See http://www.blender.org/BL/ for information
+ * about this.
+ *
+ * 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 LICENSE BLOCK *****
+ */
+
+#ifndef BKE_NODE_H
+#define BKE_NODE_H
+
+struct bNodeTree;
+struct bNode;
+struct ListBase;
+
+void nodeFreeNode(struct bNodeTree *ntree, struct bNode *node);
+void nodeFreeTree(struct bNodeTree *ntree);
+struct bNode *nodeAddNode(struct bNodeTree *ntree, char *name);
+
+#endif
+
diff --git a/source/blender/blenkernel/intern/node.c b/source/blender/blenkernel/intern/node.c
new file mode 100644
index 00000000000..e3be25d86ef
--- /dev/null
+++ b/source/blender/blenkernel/intern/node.c
@@ -0,0 +1,87 @@
+/**
+ * $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 LICENSE BLOCK *****
+ */
+
+#include <stdlib.h>
+
+#include "DNA_ID.h"
+#include "DNA_node_types.h"
+
+#include "BKE_blender.h"
+#include "BKE_node.h"
+
+#include "BLI_blenlib.h"
+
+#include "MEM_guardedalloc.h"
+
+/* ************** Add stuff ********** */
+
+bNode *nodeAddNode(struct bNodeTree *ntree, char *name)
+{
+ bNode *node= MEM_callocN(sizeof(bNode), "new node");
+ BLI_addtail(&ntree->nodes, node);
+ BLI_strncpy(node->name, name, NODE_MAXSTR);
+ return node;
+}
+
+
+
+/* ************** Free stuff ********** */
+
+/* goes over entire tree */
+static void node_unlink_node(bNodeTree *ntree, bNode *node)
+{
+
+}
+
+void nodeFreeNode(bNodeTree *ntree, bNode *node)
+{
+ if(ntree)
+ node_unlink_node(ntree, node);
+
+ BLI_freelistN(&node->inputs);
+ BLI_freelistN(&node->outputs);
+
+ MEM_freeN(node);
+}
+
+void nodeFreeTree(bNodeTree *ntree)
+{
+ bNode *node, *next;
+
+ for(node= ntree->nodes.first; node; node= next) {
+ next= node->next;
+ nodeFreeNode(NULL, node); /* NULL -> no unlinking needed */
+ }
+ BLI_freelistN(&ntree->links);
+ BLI_freelistN(&ntree->inputs);
+ BLI_freelistN(&ntree->outputs);
+
+ MEM_freeN(ntree);
+}
+
diff --git a/source/blender/blenloader/intern/readfile.c b/source/blender/blenloader/intern/readfile.c
index 0cccf770fda..1cabaf1435c 100644
--- a/source/blender/blenloader/intern/readfile.c
+++ b/source/blender/blenloader/intern/readfile.c
@@ -3084,6 +3084,10 @@ static void direct_link_screen(FileData *fd, bScreen *sc)
soops->storeflag |= SO_TREESTORE_CLEANUP; // at first draw
}
}
+ else if(sl->spacetype==SPACE_NODE) {
+ SpaceNode *snode= (SpaceNode *)sl;
+ snode->nodetree= NULL;
+ }
}
sa->v1= newdataadr(fd, sa->v1);
@@ -4800,12 +4804,12 @@ static void do_versions(FileData *fd, Library *lib, Main *main)
if(v3d->twtype==0) v3d->twtype= V3D_MANIP_TRANSLATE;
}
#ifndef SHOWDEPGRAPH
- if(sl->spacetype==SPACE_OOPS) {
+ else if(sl->spacetype==SPACE_OOPS) {
if ( ((SpaceOops *)sl)->type==SO_DEPSGRAPH)
((SpaceOops *)sl)->type=SO_OOPS;
}
#endif
- if(sl->spacetype==SPACE_TIME) {
+ else if(sl->spacetype==SPACE_TIME) {
SpaceTime *stime= (SpaceTime *)sl;
if(stime->redraws==0)
stime->redraws= TIME_ALL_3D_WIN|TIME_ALL_ANIM_WIN;
diff --git a/source/blender/blenloader/intern/writefile.c b/source/blender/blenloader/intern/writefile.c
index b13c9917c81..23d9d04ce3b 100644
--- a/source/blender/blenloader/intern/writefile.c
+++ b/source/blender/blenloader/intern/writefile.c
@@ -1293,6 +1293,9 @@ static void write_screens(WriteData *wd, ListBase *scrbase)
else if(sl->spacetype==SPACE_TIME){
writestruct(wd, DATA, "SpaceTime", 1, sl);
}
+ else if(sl->spacetype==SPACE_NODE){
+ writestruct(wd, DATA, "SpaceNode", 1, sl);
+ }
sl= sl->next;
}
diff --git a/source/blender/include/BIF_interface.h b/source/blender/include/BIF_interface.h
index aa3b873abd2..bae8bfd685b 100644
--- a/source/blender/include/BIF_interface.h
+++ b/source/blender/include/BIF_interface.h
@@ -300,6 +300,9 @@ extern int uiAlignPanelStep(struct ScrArea *sa, float fac);
extern void uiPanelControl(int);
extern void uiSetPanelHandler(int);
+extern void uiDrawBoxShadow(unsigned char alpha, float minx, float miny, float maxx, float maxy);
+extern void *uiSetCurFont_ext(float aspect);
+
void shade_buttons_change_3d(void);
#endif /* BIF_INTERFACE_H */
diff --git a/source/blender/include/BIF_resources.h b/source/blender/include/BIF_resources.h
index b9b1d1f63bf..d026d61b16f 100644
--- a/source/blender/include/BIF_resources.h
+++ b/source/blender/include/BIF_resources.h
@@ -50,7 +50,7 @@ typedef enum {
ICON_NLA,
ICON_SCRIPTWIN,
ICON_TIME,
- ICON_SPACE1,
+ ICON_NODE,
ICON_SPACE2,
ICON_SPACE3,
ICON_SPACE4,
@@ -91,7 +91,7 @@ typedef enum {
ICON_MAYBE_ITS_A_LASSO,
ICON_BLANK1, /* ATTENTION, someone decided to use this throughout blender
and didn't care to neither rename it nor update the PNG */
- ICON_BLANK2,
+ ICON_VERSE,
ICON_MOD_BOOLEAN,
ICON_ARMATURE,
ICON_PAUSE,
diff --git a/source/blender/include/BIF_spacetypes.h b/source/blender/include/BIF_spacetypes.h
index 0b07be60129..e825acf676f 100644
--- a/source/blender/include/BIF_spacetypes.h
+++ b/source/blender/include/BIF_spacetypes.h
@@ -62,4 +62,5 @@ SpaceType *spacetext_get_type (void);
SpaceType *spacescript_get_type (void);
SpaceType *spaceview3d_get_type (void);
SpaceType *spacetime_get_type (void);
+SpaceType *spacenode_get_type (void);
diff --git a/source/blender/include/BSE_headerbuttons.h b/source/blender/include/BSE_headerbuttons.h
index 4f2179cca28..d5369692638 100644
--- a/source/blender/include/BSE_headerbuttons.h
+++ b/source/blender/include/BSE_headerbuttons.h
@@ -40,7 +40,7 @@ struct SpaceIpo;
struct Ipo;
/* these used to be in blender/src/headerbuttons.c: */
-#define SPACEICONMAX 15 /* See release/datafiles/blenderbuttons */
+#define SPACEICONMAX 16 /* See release/datafiles/blenderbuttons */
#define XIC 20
#define YIC 20
@@ -89,8 +89,9 @@ void seq_buttons(void);
void sound_buttons(void);
void text_buttons(void);
void script_buttons(void);
-void time_buttons(struct ScrArea *sa);
void view3d_buttons(void);
+void time_buttons(struct ScrArea *sa);
+void node_buttons(struct ScrArea *sa);
void do_global_buttons(unsigned short event);
void do_global_buttons2(short event);
@@ -108,9 +109,10 @@ void do_oops_buttons(short event);
void do_seq_buttons(short event);
void do_sound_buttons(unsigned short event);
void do_text_buttons(unsigned short event);
-void do_time_buttons(struct ScrArea *sa, unsigned short event);
void do_script_buttons(unsigned short event);
void do_view3d_buttons(short event);
+void do_time_buttons(struct ScrArea *sa, unsigned short event);
+void do_node_buttons(struct ScrArea *sa, unsigned short event);
void do_headerbuttons(short event);
diff --git a/source/blender/include/BSE_node.h b/source/blender/include/BSE_node.h
new file mode 100644
index 00000000000..cd159f9e448
--- /dev/null
+++ b/source/blender/include/BSE_node.h
@@ -0,0 +1,36 @@
+/**
+ * $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 opt ion) 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 BLOCK *****
+ */
+
+#ifndef BSE_NODE_H
+#define BSE_NODE_H
+
+
+
+#endif
+
diff --git a/source/blender/include/blendef.h b/source/blender/include/blendef.h
index c79370513fa..5963d5e3e14 100644
--- a/source/blender/include/blendef.h
+++ b/source/blender/include/blendef.h
@@ -370,10 +370,13 @@
#define B_TL_NEXTKEY 755
#define B_TL_STOP 756
-/* NLA: 801-900 */
+/* NLA: 801-850 */
#define B_NLAHOME 801
-/* FREE 900 - 999 */
+/* NODE: 851-900 */
+#define B_NODEHOME 851
+
+/* FREE 901 - 999 */
#define B_NOTHING -1
diff --git a/source/blender/include/mydevice.h b/source/blender/include/mydevice.h
index bc0ed319ed7..8db7d7ce194 100644
--- a/source/blender/include/mydevice.h
+++ b/source/blender/include/mydevice.h
@@ -251,6 +251,7 @@
#define ONLOAD_SCRIPT 0x4035
#define SCREEN_HANDLER 0x4036
#define REDRAWANIM 0x4037
+#define REDRAWNODE 0x4038
#endif /* !__MYDEVICE_H__ */
diff --git a/source/blender/makesdna/DNA_node_types.h b/source/blender/makesdna/DNA_node_types.h
new file mode 100644
index 00000000000..2b54b434624
--- /dev/null
+++ b/source/blender/makesdna/DNA_node_types.h
@@ -0,0 +1,86 @@
+/**
+ * $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 LICENSE BLOCK *****
+ */
+
+#ifndef DNA_NODE_TYPES_H
+#define DNA_NODE_TYPES_H
+
+#include "DNA_vec_types.h"
+#include "DNA_listBase.h"
+
+struct ID;
+struct SpaceNode;
+
+#define NODE_MAXSTR 32
+
+typedef struct bNodeSocket {
+ struct bNodeSocket *next, *prev;
+
+ char name[32];
+ int type, flag;
+
+ float locx, locy;
+
+} bNodeSocket;
+
+/* limit data in bNode to what we want to see saved? */
+typedef struct bNode {
+ struct bNode *next, *prev;
+
+ char name[32];
+ int type, flag;
+
+ ListBase inputs, outputs;
+ struct ID *id; /* optional link to libdata */
+
+ float locx, locy; /* root offset for drawing */
+ rctf tot; /* entire boundbox */
+ rctf prv; /* optional preview area */
+
+ int (*drawfunc)(struct SpaceNode *, struct bNode *);
+
+} bNode;
+
+typedef struct bNodeLink {
+ struct bNodeLink *next, *prev;
+
+ bNode *from, *to;
+
+} bNodeLink;
+
+/* the basis for a Node tree, all links and nodes reside internal here */
+typedef struct bNodeTree {
+ ListBase nodes, links;
+
+ ListBase inputs, outputs; /* default inputs and outputs, for solving tree */
+
+} bNodeTree;
+
+
+#endif
+
diff --git a/source/blender/makesdna/DNA_screen_types.h b/source/blender/makesdna/DNA_screen_types.h
index ad45ae7d58d..e0b2a337d9f 100644
--- a/source/blender/makesdna/DNA_screen_types.h
+++ b/source/blender/makesdna/DNA_screen_types.h
@@ -172,11 +172,12 @@ enum {
SPACE_ACTION,
SPACE_NLA,
SPACE_SCRIPT,
- SPACE_TIME
+ SPACE_TIME,
+ SPACE_NODE
/* SPACE_LOGIC */
};
-/* Adding a new space type? Change SPACEICONMAX in headerbuttons.c */
+/* Adding a new space type? Change SPACEICONMAX in BSE_headerbuttons.h */
/* -- should rather handle this with the above enum... */
#endif
diff --git a/source/blender/makesdna/DNA_space_types.h b/source/blender/makesdna/DNA_space_types.h
index 5a7e84c62ef..cc8f1b3cad1 100644
--- a/source/blender/makesdna/DNA_space_types.h
+++ b/source/blender/makesdna/DNA_space_types.h
@@ -48,7 +48,7 @@ struct Image;
struct SpaceIpo;
struct BlendHandle;
struct TreeStore;
-
+struct bNodeTree;
/**
* The base structure all the other spaces
@@ -292,6 +292,23 @@ typedef struct SpaceTime {
} SpaceTime;
+typedef struct SpaceNode {
+ SpaceLink *next, *prev;
+ int spacetype;
+ float blockscale;
+ struct ScrArea *area;
+
+ View2D v2d;
+
+ struct ID *from;
+ int flag;
+ float aspect;
+ void *curfont;
+
+ struct bNodeTree *nodetree;
+
+} SpaceNode;
+
#
diff --git a/source/blender/makesdna/intern/makesdna.c b/source/blender/makesdna/intern/makesdna.c
index d0186deefad..5417164f915 100644
--- a/source/blender/makesdna/intern/makesdna.c
+++ b/source/blender/makesdna/intern/makesdna.c
@@ -123,6 +123,7 @@ char *includefiles[] = {
"DNA_action_types.h",
"DNA_constraint_types.h",
"DNA_nla_types.h",
+ "DNA_node_types.h",
// if you add files here, please add them at the end
// of makesdna.c (this file) as well
@@ -1129,4 +1130,5 @@ int main(int argc, char ** argv)
#include "DNA_action_types.h"
#include "DNA_constraint_types.h"
#include "DNA_nla_types.h"
+#include "DNA_node_types.h"
/* end of list */
diff --git a/source/blender/python/api2_2x/Image.c b/source/blender/python/api2_2x/Image.c
index f7d135fe7b3..3d5a2c08df5 100644
--- a/source/blender/python/api2_2x/Image.c
+++ b/source/blender/python/api2_2x/Image.c
@@ -126,7 +126,7 @@ static PyObject *M_Image_New( PyObject * self, PyObject * args)
if( !img )
return ( EXPP_ReturnPyObjError( PyExc_MemoryError,
"couldn't create PyObject Image_Type" ) );
- // image_changed(img, 0);
+
return Image_CreatePyObject( img );
}
@@ -894,9 +894,6 @@ static PyObject *Image_reload( BPy_Image * self )
free_image_buffers( img ); /* force read again */
img->ok = 1;
- if( G.sima )
- image_changed( G.sima, 0 );
-
Py_RETURN_NONE;
}
@@ -1104,12 +1101,10 @@ static PyObject *Image_getAttr( BPy_Image * self, char *name )
attr = PyInt_FromLong( self->image->animspeed );
else if( strcmp( name, "packed" ) == 0 ) {
if (self->image->packedfile) {
- attr = Py_True;
+ attr = EXPP_incr_ret_True();
} else {
- attr = Py_False;
+ attr = EXPP_incr_ret_False();
}
- Py_INCREF(attr);
-
} else if( strcmp( name, "bindcode" ) == 0 )
attr = PyInt_FromLong( self->image->bindcode );
else if( strcmp( name, "users" ) == 0 )
diff --git a/source/blender/python/api2_2x/Lamp.c b/source/blender/python/api2_2x/Lamp.c
index f3e6214e966..a54e2988763 100644
--- a/source/blender/python/api2_2x/Lamp.c
+++ b/source/blender/python/api2_2x/Lamp.c
@@ -117,6 +117,12 @@
#define EXPP_LAMP_COL_MIN 0.0
#define EXPP_LAMP_COL_MAX 1.0
+/* Raytracing settings */
+#define EXPP_LAMP_RAYSAMPLES_MIN 1
+#define EXPP_LAMP_RAYSAMPLES_MAX 16
+#define EXPP_LAMP_AREASIZE_MIN 0.01
+#define EXPP_LAMP_AREASIZE_MAX 100.0
+
/* Lamp_setComponent() keys for which color to get/set */
#define EXPP_LAMP_COMP_R 0x00
#define EXPP_LAMP_COMP_G 0x01
@@ -177,6 +183,10 @@ static PyObject *Lamp_getTypesConst( void );
static PyObject *Lamp_getMode( BPy_Lamp * self );
static PyObject *Lamp_getModesConst( void );
static PyObject *Lamp_getSamples( BPy_Lamp * self );
+static PyObject *Lamp_getRaySamplesX( BPy_Lamp * self );
+static PyObject *Lamp_getRaySamplesY( BPy_Lamp * self );
+static PyObject *Lamp_getAreaSizeX( BPy_Lamp * self );
+static PyObject *Lamp_getAreaSizeY( BPy_Lamp * self );
static PyObject *Lamp_getBufferSize( BPy_Lamp * self );
static PyObject *Lamp_getHaloStep( BPy_Lamp * self );
static PyObject *Lamp_getEnergy( BPy_Lamp * self );
@@ -201,6 +211,10 @@ static PyObject *Lamp_oldsetName( BPy_Lamp * self, PyObject * args );
static PyObject *Lamp_oldsetType( BPy_Lamp * self, PyObject * args );
static PyObject *Lamp_oldsetMode( BPy_Lamp * self, PyObject * args );
static PyObject *Lamp_oldsetSamples( BPy_Lamp * self, PyObject * args );
+static PyObject *Lamp_oldsetRaySamplesX( BPy_Lamp * self, PyObject * args );
+static PyObject *Lamp_oldsetRaySamplesY( BPy_Lamp * self, PyObject * args );
+static PyObject *Lamp_oldsetAreaSizeX( BPy_Lamp * self, PyObject * args );
+static PyObject *Lamp_oldsetAreaSizeY( BPy_Lamp * self, PyObject * args );
static PyObject *Lamp_oldsetBufferSize( BPy_Lamp * self, PyObject * args );
static PyObject *Lamp_oldsetHaloStep( BPy_Lamp * self, PyObject * args );
static PyObject *Lamp_oldsetEnergy( BPy_Lamp * self, PyObject * args );
@@ -220,6 +234,10 @@ static int Lamp_setName( BPy_Lamp * self, PyObject * args );
static int Lamp_setType( BPy_Lamp * self, PyObject * args );
static int Lamp_setMode( BPy_Lamp * self, PyObject * args );
static int Lamp_setSamples( BPy_Lamp * self, PyObject * args );
+static int Lamp_setRaySamplesX( BPy_Lamp * self, PyObject * args );
+static int Lamp_setRaySamplesY( BPy_Lamp * self, PyObject * args );
+static int Lamp_setAreaSizeX( BPy_Lamp * self, PyObject * args );
+static int Lamp_setAreaSizeY( BPy_Lamp * self, PyObject * args );
static int Lamp_setBufferSize( BPy_Lamp * self, PyObject * args );
static int Lamp_setHaloStep( BPy_Lamp * self, PyObject * args );
static int Lamp_setEnergy( BPy_Lamp * self, PyObject * args );
@@ -252,6 +270,14 @@ static PyMethodDef BPy_Lamp_methods[] = {
"() - return Lamp mode flags (or'ed value)"},
{"getSamples", ( PyCFunction ) Lamp_getSamples, METH_NOARGS,
"() - return Lamp samples value"},
+ {"getRaySamplesX", ( PyCFunction ) Lamp_getRaySamplesX, METH_NOARGS,
+ "() - return Lamp raytracing samples on the X axis"},
+ {"getRaySamplesY", ( PyCFunction ) Lamp_getRaySamplesY, METH_NOARGS,
+ "() - return Lamp raytracing samples on the Y axis"},
+ {"getAreaSizeX", ( PyCFunction ) Lamp_getAreaSizeX, METH_NOARGS,
+ "() - return Lamp area size on the X axis"},
+ {"getAreaSizeY", ( PyCFunction ) Lamp_getAreaSizeY, METH_NOARGS,
+ "() - return Lamp area size on the Y axis"},
{"getBufferSize", ( PyCFunction ) Lamp_getBufferSize, METH_NOARGS,
"() - return Lamp buffer size value"},
{"getHaloStep", ( PyCFunction ) Lamp_getHaloStep, METH_NOARGS,
@@ -288,6 +314,14 @@ static PyMethodDef BPy_Lamp_methods[] = {
"([up to eight str's]) - Set Lamp mode flag(s)"},
{"setSamples", ( PyCFunction ) Lamp_oldsetSamples, METH_VARARGS,
"(int) - change Lamp samples value"},
+ {"setRaySamplesX", ( PyCFunction ) Lamp_oldsetRaySamplesX, METH_VARARGS,
+ "(int) - change Lamp ray X samples value in [1,16]"},
+ {"setRaySamplesY", ( PyCFunction ) Lamp_oldsetRaySamplesY, METH_VARARGS,
+ "(int) - change Lamp ray Y samples value in [1,16]"},
+ {"setAreaSizeX", ( PyCFunction ) Lamp_oldsetAreaSizeX, METH_VARARGS,
+ "(float) - change Lamp ray X size for area lamps, value in [0.01, 100.0]"},
+ {"setAreaSizeY", ( PyCFunction ) Lamp_oldsetAreaSizeY, METH_VARARGS,
+ "(float) - change Lamp ray Y size for area lamps, value in [0.01, 100.0]"},
{"setBufferSize", ( PyCFunction ) Lamp_oldsetBufferSize, METH_VARARGS,
"(int) - change Lamp buffer size value"},
{"setHaloStep", ( PyCFunction ) Lamp_oldsetHaloStep, METH_VARARGS,
@@ -404,6 +438,22 @@ static PyGetSetDef BPy_Lamp_getseters[] = {
(getter)Lamp_getSamples, (setter)Lamp_setSamples,
"Lamp shadow map samples",
NULL},
+ {"raySamplesX",
+ (getter)Lamp_getRaySamplesX, (setter)Lamp_setRaySamplesX,
+ "Lamp raytracing samples on the X axis",
+ NULL},
+ {"raySamplesY",
+ (getter)Lamp_getRaySamplesY, (setter)Lamp_setRaySamplesY,
+ "Lamp raytracing samples on the Y axis",
+ NULL},
+ {"areaSizeX",
+ (getter)Lamp_getAreaSizeX, (setter)Lamp_setAreaSizeX,
+ "Lamp X size for an arealamp",
+ NULL},
+ {"areaSizeY",
+ (getter)Lamp_getAreaSizeY, (setter)Lamp_setAreaSizeY,
+ "Lamp Y size for an arealamp",
+ NULL},
{"softness",
(getter)Lamp_getSoftness, (setter)Lamp_setSoftness,
"Lamp shadow sample area size",
@@ -889,6 +939,49 @@ static PyObject *Lamp_getSamples( BPy_Lamp * self )
"couldn't get Lamp.samples attribute" ) );
}
+static PyObject *Lamp_getRaySamplesX( BPy_Lamp * self )
+{
+ PyObject *attr = PyInt_FromLong( self->lamp->ray_samp );
+
+ if( attr )
+ return attr;
+
+ return ( EXPP_ReturnPyObjError( PyExc_RuntimeError,
+ "couldn't get Lamp.raySamplesX attribute" ) );
+}
+
+static PyObject *Lamp_getRaySamplesY( BPy_Lamp * self )
+{
+ PyObject *attr = PyInt_FromLong( self->lamp->ray_sampy );
+
+ if( attr )
+ return attr;
+
+ return ( EXPP_ReturnPyObjError( PyExc_RuntimeError,
+ "couldn't get Lamp.raySamplesY attribute" ) );
+}
+
+static PyObject *Lamp_getAreaSizeX( BPy_Lamp * self )
+{
+ PyObject *attr = PyFloat_FromDouble( self->lamp->area_size );
+ if( attr )
+ return attr;
+
+ return ( EXPP_ReturnPyObjError( PyExc_RuntimeError,
+ "couldn't get Lamp.areaSizeX attribute" ) );
+}
+
+static PyObject *Lamp_getAreaSizeY( BPy_Lamp * self )
+{
+ PyObject *attr = PyFloat_FromDouble( self->lamp->area_sizey );
+
+ if( attr )
+ return attr;
+
+ return ( EXPP_ReturnPyObjError( PyExc_RuntimeError,
+ "couldn't get Lamp.areaSizeY attribute" ) );
+}
+
static PyObject *Lamp_getBufferSize( BPy_Lamp * self )
{
PyObject *attr = PyInt_FromLong( self->lamp->bufsize );
@@ -1097,6 +1190,35 @@ static int Lamp_setSamples( BPy_Lamp * self, PyObject * value )
EXPP_LAMP_SAMPLES_MAX, 'h' );
}
+
+static int Lamp_setRaySamplesX( BPy_Lamp * self, PyObject * value )
+{
+ return EXPP_setIValueClamped ( value, &self->lamp->ray_samp,
+ EXPP_LAMP_RAYSAMPLES_MIN,
+ EXPP_LAMP_RAYSAMPLES_MAX, 'h' );
+}
+
+static int Lamp_setRaySamplesY( BPy_Lamp * self, PyObject * value )
+{
+ return EXPP_setIValueClamped ( value, &self->lamp->ray_sampy,
+ EXPP_LAMP_RAYSAMPLES_MIN,
+ EXPP_LAMP_RAYSAMPLES_MAX, 'h' );
+}
+
+static int Lamp_setAreaSizeX( BPy_Lamp * self, PyObject * value )
+{
+ return EXPP_setFloatClamped ( value, &self->lamp->area_size,
+ EXPP_LAMP_AREASIZE_MIN,
+ EXPP_LAMP_AREASIZE_MAX );
+}
+
+static int Lamp_setAreaSizeY( BPy_Lamp * self, PyObject * value )
+{
+ return EXPP_setFloatClamped ( value, &self->lamp->area_sizey,
+ EXPP_LAMP_AREASIZE_MIN,
+ EXPP_LAMP_AREASIZE_MAX );
+}
+
static int Lamp_setBufferSize( BPy_Lamp * self, PyObject * value )
{
return EXPP_setIValueClamped ( value, &self->lamp->bufsize,
@@ -1480,6 +1602,26 @@ static PyObject *Lamp_oldsetSamples( BPy_Lamp * self, PyObject * args )
return EXPP_setterWrapper ( (void *)self, args, (setter)Lamp_setSamples );
}
+static PyObject *Lamp_oldsetRaySamplesX( BPy_Lamp * self, PyObject * args )
+{
+ return EXPP_setterWrapper ( (void *)self, args, (setter)Lamp_setRaySamplesX );
+}
+
+static PyObject *Lamp_oldsetRaySamplesY( BPy_Lamp * self, PyObject * args )
+{
+ return EXPP_setterWrapper ( (void *)self, args, (setter)Lamp_setRaySamplesY );
+}
+
+static PyObject *Lamp_oldsetAreaSizeX( BPy_Lamp * self, PyObject * args )
+{
+ return EXPP_setterWrapper ( (void *)self, args, (setter)Lamp_setAreaSizeX );
+}
+
+static PyObject *Lamp_oldsetAreaSizeY( BPy_Lamp * self, PyObject * args )
+{
+ return EXPP_setterWrapper ( (void *)self, args, (setter)Lamp_setAreaSizeY );
+}
+
static PyObject *Lamp_oldsetBufferSize( BPy_Lamp * self, PyObject * args )
{
return EXPP_setterWrapper ( (void *)self, args, (setter)Lamp_setBufferSize );
diff --git a/source/blender/python/api2_2x/doc/Lamp.py b/source/blender/python/api2_2x/doc/Lamp.py
index cd90cb5fc8a..e6ac1c05f4a 100644
--- a/source/blender/python/api2_2x/doc/Lamp.py
+++ b/source/blender/python/api2_2x/doc/Lamp.py
@@ -118,6 +118,18 @@ class Lamp:
@ivar samples: Lamp shadow map samples.
Value is clamped to the range [1,16].
@type samples: int
+ @ivar raySamplesX: Lamp raytracing X samples (X is used for the Y axis with square area lamps).
+ Value is clamped to the range [1,16].
+ @type raySamplesX: int
+ @ivar raySamplesY: Lamp raytracing Y samples (Y is only used for rectangle area lamps).
+ Value is clamped to the range [1,16].
+ @type raySamplesY: int
+ @ivar areaSizeX: Lamp X size (X is used for the Y axis with square area lamps)
+ Value is clamped to the range [0.01,100.0].
+ @type areaSizeX: float
+ @ivar areaSizeY: Lamp Y size (Y is only used for rectangle area lamps).
+ Value is clamped to the range [0.01,100.0].
+ @type areaSizeY: float
@ivar softness: Lamp shadow sample area size.
Value is clamped to the range [1.0,100.0].
@type softness: float
@@ -201,6 +213,62 @@ class Lamp:
@param samples: The new samples value.
"""
+ def getRaySamplesX():
+ """
+ Get this lamp's raytracing sample value on the X axis.
+ This value is only used for area lamps.
+ @rtype: int
+ """
+
+ def setRaySamplesX():
+ """
+ Set the lamp's raytracing sample value on the X axis, between 1 and 16.
+ This value is only used for area lamps.
+ @rtype: int
+ """
+
+ def getRaySamplesY():
+ """
+ Get this lamp's raytracing sample value on the Y axis.
+ This value is only used for rectangle area lamps.
+ @rtype: int
+ """
+
+ def setRaySamplesY():
+ """
+ Set the lamp's raytracing sample value on the Y axis, between 1 and 16.
+ This value is only used for rectangle area lamps.
+ @rtype: int
+ """
+
+ def getAreaSizeX():
+ """
+ Get this lamp's size on the X axis.
+ This value is only used for area lamps.
+ @rtype: int
+ """
+
+ def setAreaSizeX():
+ """
+ Set this lamp's size on the X axis.
+ This value is only used for area lamps.
+ @rtype: int
+ """
+
+ def getAreaSizeY():
+ """
+ Get this lamp's size on the Y axis.
+ This value is only used for rectangle area lamps.
+ @rtype: int
+ """
+
+ def setAreaSizeY():
+ """
+ Set this lamp's size on the Y axis.
+ This value is only used for rectangle area lamps.
+ @rtype: int
+ """
+
def getBufferSize():
"""
Get this lamp's buffer size.
diff --git a/source/blender/src/blenderbuttons.c b/source/blender/src/blenderbuttons.c
index fc3483b048f..fa827f92b33 100644
--- a/source/blender/src/blenderbuttons.c
+++ b/source/blender/src/blenderbuttons.c
@@ -1,1469 +1,1491 @@
/* DataToC output of file <blenderbuttons> */
-int datatoc_blenderbuttons_size= 46828;
+int datatoc_blenderbuttons_size= 47528;
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,182, 98, 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, 95,157,150,158,158, 14, 36,103,206,156,
- 73,103, 27,103,204,152,193,200,200, 56,236,155, 12, 16,207, 2, 65,100,100,228,154, 53,107, 32,236,144,144,144,209,198,212,240,
-139,104,122,102,162, 81, 48, 32, 0, 32,128, 88,104,145, 2,110,223,190,221,211,211, 3, 97,151,148,148,168,170,170,210,173,208,
- 7, 50, 30, 63,126, 12,100,203,202,202, 66,164,104,157,136,129, 54, 62,120,240, 0,200, 80, 80, 80,160,115,197,131,171,104,198,
-229,113, 96,155, 29,191, 9,203,151, 47,199,239,126,160, 21,171, 86,173,130,176,215,175, 95,239,234,234, 10, 97, 3,107, 2,218,
-213, 1,198,198,198, 64,242,236,217,179,100,200,142, 76,112,239,222,189,206,206, 78, 56,183,188,188, 92, 73, 73,105,144, 87, 27,
- 3,232,230,145, 12, 0, 2,136, 5, 79, 33, 14, 33, 73, 45,190, 33,197,144, 81,153,133,176,174,196,219,203, 47,122,186,122,232,
- 83, 44, 2,203,125,120,161,143, 75,132, 22, 0,232, 53, 96,209,255, 0, 12,118,236,216, 65,255,118, 19,188,242,131,212,127, 93,
- 93, 93, 64,110, 89, 89, 25, 86,197,129,129,129, 16,198,159, 63,127,127,253,254,249,235,231, 47, 8,248,243,231, 15, 46, 45, 88,
- 75,127, 52, 0,172, 9,104, 90, 7,224,169,189, 32, 21,192, 40,192,213, 14, 0, 2, 72,193, 74,135,100, 9,177,154,140, 44, 48,
-128,110, 30,225, 0, 32,128,112, 86, 0,192, 38,124,137,182, 6,144, 36, 41, 14,128, 17, 9, 41,250, 33, 92, 32,195,117,113, 0,
-176, 26, 24,168,238, 36,164, 14,160,181,213,240, 58,192,195,195, 3, 72, 2,217,116,243, 44, 48, 96,247,239,223, 15,100, 56, 58,
- 58,162,213, 1,120, 0,176,184,255,245,235,247,175, 95, 40,165,255,153, 51,103, 76, 76, 76, 8,218, 24, 22, 22, 6, 31, 2,218,
-189,123, 55,188, 2, 32, 35,183, 19, 25, 74,192,214, 61,176,244,119,115,115, 67, 22,220,181,107, 23,176,191, 2, 97, 99,157,138,
- 24,225,165, 63,114,216,146, 81, 46,147,173,133,140,126, 0,181,220, 60, 10,200, 0, 0, 1,196,130,167,249,111, 39, 42,218,195,
-112,131,248, 78, 0,114,233,191, 59,118, 3,180,104, 88, 28, 0, 20, 1,138, 19,140, 75,204, 86, 0,169, 77, 0, 92, 77,126, 90,
- 36, 35, 52, 51,225,117,192,239,223,127,102,204,152, 65,121, 35,136, 24,237,104,165, 63, 92, 35,214,144, 68, 41,253,127, 3, 75,
-255,159, 63,193,149, 0,188,244,255,255,239, 63, 49,165, 63, 80, 37,132,221,219,219, 11,111,242,195, 39, 3,136,119, 51,154,179,
-137, 7,240,162, 31, 88, 3, 25, 26, 26,142,230, 97,228, 81, 20,172,137, 7,158, 36,128, 10, 8,142,171, 32,143,166,194, 53, 18,
- 19, 77,200, 9, 15,174,158, 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,128, 29, 51, 72, 1, 16, 4,162, 40,132, 29,165, 43,216,186, 67,116, 19,111,101, 71, 16,218,116,165,136, 22,
- 66, 95, 63,197, 64,165, 25, 45,251,136,136,136, 12,168,111,156, 95, 37,190,255, 24,176, 8,120,178, 17,115,198, 65,127, 99, 12,
-142, 16, 61, 51, 1,231,185, 38,161,166,159,100,251,176, 14, 72, 51,241, 5,253,193,250, 51,178,145, 3,128,212, 86,235,210,221,
-232,174, 64,227,174,108,192, 36,105, 23,117,126,240,247,244,247, 1,251,107, 48,127, 36,253,189,247,243, 50,103, 67,101,149, 32,
- 11,133, 33,234,161,249, 19, 98, 22, 78, 14,198,165,231, 66,250, 3,253,168,114, 72,255, 90,213,255, 51,206,218, 38,156,148, 38,
-123, 26,229,239,126, 96, 92, 44,233,127,247,177,187,140, 25,244,199, 93,178,214, 58,231, 74, 99, 6,253,149, 82,232,255,107, 80,
-164, 77, 0,118,172,102, 5, 64, 16, 6,215, 78, 82, 93,123,255,187,189, 93, 34, 88, 94,154,142, 70,100,216, 12,164,139, 10,130,
-138, 32,202,190, 63,200,200,127, 30, 95,129,155, 56, 3,101, 62,163, 63,153, 6, 28,153, 3,112, 87,200, 37, 31,208,243,151,183,
- 75, 57, 0,155,219, 55,231, 92,105,134, 67,217,250, 28, 95,155,164,113,190,114,174, 58, 58, 53,206,153,186, 13,185, 63,194,127,
- 20,255,140,254,222,123,107,173, 89, 77,237,116, 66,235,229,156,245,177,119,184, 34,255, 62, 70,127,130,126, 0, 80, 74,141,211,
-208,202,184,146,175, 21,122,202, 71,242,184, 37, 66,146,179,236, 35,145, 3,138,174, 77,232, 31, 2,141,198, 1,133,237, 16, 64,
- 44,120,154,255, 16, 64,252, 76, 0,124,232, 31,121,200, 8,206,134,203, 82, 55,189,162,173,249,129,112,177, 50,168, 8,102,204,
-152, 1,159,248,133,143,248, 3, 29, 3, 20,255,241,253, 59,241, 21, 0, 80,203,252,249,243,159, 60,125,202,202,204, 44, 46, 33,
- 1, 47,253,243,242,242,180,181,181,241,100, 27,160,141, 64,101,240, 58, 0,185, 95,130,127, 6,226, 23,184,252,255, 13, 42,253,
-255, 66, 74,127, 96,109,240,237,219,183, 47, 95,190,124,254, 76, 84, 5, 0, 31, 2,130, 0,226,219,254,171, 86,175, 98,248,207,
-240,230,213, 43, 32, 23, 52,216, 4,236,234,255,255, 15,170, 3, 86,175, 14, 11, 13, 37, 38,129, 33,151,254,172,172,172,236,236,
-236, 28, 96, 64,164,203, 71, 1,193,145, 31, 60, 5, 55,169,171,171,177,142, 8,225, 7,161,161,161,144,162,159,164,213, 4,240,
-210, 31, 90,162,177,176, 0, 91, 54,163, 99, 65, 68, 2,128, 0, 98,194,211,252,135, 0,226, 59, 1,111, 47,191, 64, 54, 4,141,
- 13,151,165, 34, 0, 38, 44, 72,209,143,127,193, 15,213,231,129, 33,235,253,119,236,216, 1,239, 7, 64, 74,127, 61, 61,189, 31,
-192, 26,224,251,119, 80, 25,247,255, 63,193, 44, 55,117,218, 84, 96,235, 91, 70, 90,250,247,223,191,104,165, 63,193,108, 3,169,
- 3,144, 27, 92,144,213,168, 88,251, 37, 40, 21,192,175,223,144,210,255,244,169,211,223,190,127, 7,150,158, 31, 63,126,252,240,
-225,195,251,247,239,137, 15, 1,200, 40, 16,241, 67,255,160, 4,240,230,237,219,183,111,222,188,125, 7,162,193, 76,160,160,134,
-166,230, 59, 48,131,152,230, 63,144, 4,150,254,208,134, 63, 55, 55, 15, 15, 47, 47, 15, 47,144, 49,154,141,113,149,230,196, 55,
-192, 33, 43, 8,224, 12, 92,108,146,108, 71, 27, 17, 34,168,203,197,197, 5, 88, 7, 0, 75,127, 87, 87, 87,226,251, 28,192,178,
- 30, 88,226,195,185,163,165, 63, 73, 0, 32,128,152,240, 55,255,145, 59, 1,248, 13, 42, 41, 41, 57,215,117,130, 1, 60,235, 11,
- 84, 12, 95, 69, 10,100, 3, 69,128,108,160, 44, 80, 13,237,124, 66,139,150, 62,254, 12,147,145,145, 1,100, 0, 75,211,107,215,
-174,157, 63,119, 78, 95, 79,255,199, 15,112, 7,224,251,247, 37,139, 23, 67,100,241, 36,247,222,222, 94, 45, 77, 45, 96, 5, 0,
- 12,165, 63,191,127, 61,125,242,148, 12, 55, 32,179, 33, 27, 17, 8,244, 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,128,128,120,171, 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,229,226,226,226, 1,150,253, 64,204,195,197,201,
-197,249,226,197,139,209,108, 12, 1,229,229,229,240,242, 23, 62,185, 10, 97, 64, 4, 33, 10,136,108,182,227, 31, 23,194, 95,250,
- 19,223,246, 71,115, 51,176, 14, 0,150,254, 36,185, 25,185, 14, 24, 45,253, 73, 5, 0, 1,132,101, 8, 8,185,249, 15, 23,233,
- 97,184,129,223, 32,200, 80, 15,176,153, 15, 89,250,217, 19, 11,173, 48, 32,165, 63,164,249, 79,112, 53,209,237,213, 54,228,117,
- 2,240,148,254,180, 91, 6, 10, 41,115,129, 13,127, 51, 51,179, 31, 63,127,126,255,241, 29,220,250,255, 14, 98,252,248, 49,101,
-202, 20, 92, 57, 7,178, 82,243,239,223,191,103,207,158, 99,101, 97,134,132,204,253, 7, 15,158, 62,125,186,124,249,138,200,200,
- 8,160, 8,188, 31,128, 53,131,193, 7,157,208, 90,112, 4, 87,160, 66,218,254,199,143, 31,255,250,229, 27,104,220, 31, 84, 30,
-127,250,244,233,227,167, 79, 95,136, 31, 72,129, 52,255,225, 59,129,137,169, 6,128,138,225,108, 69, 5, 5, 96,209, 15,100, 0,
- 75,255,251,224, 94, 11,178, 44, 30, 96,105,101,201,206,198,206,201,201, 9,236, 1,176,179,179,179,178,178,210,185,214, 31,228,
- 0,121,181, 12,124,241, 12,188, 38, 64, 83,128,191, 16,199, 58,148, 79, 82,207,131,200,106,131, 90,110,134,212, 1,163,165, 63,
-169, 0, 32,128, 88, 48,199,127,252, 14, 28,198, 94, 58, 19, 90, 15, 10,105, 62, 64, 86,130, 66,202,125,248,224, 15,176,249, 79,
- 48, 53,144, 93, 76, 19,172, 3,104,218, 15, 64,203, 33, 75, 22, 47, 1,150,254,144, 29, 86, 88,215,227, 35,175,211,255,247,239,
-175,158,190,209,197,139,151,174, 95,187,198,194,202, 10, 44, 25,159, 60,125, 2,108,234, 50, 51, 51,135,133,133, 1,235, 0, 6,
- 6,126, 76, 19,128,218, 33,185, 11, 98, 59,218, 62, 0,252, 14, 6,150,254, 71,143, 30,253, 2, 4,160, 89,223, 79,224,210, 31,
- 72,124,254,242,249,203,215,111,223, 8,122, 22, 88,244,159, 1, 3, 6,140,101,160,248,171, 1, 7, 7, 7,228,128,130,148,251,
-231,207,159,103, 32, 98,251,177, 49, 24, 0, 25, 60, 92, 60, 28,160,194,159,131,141,141,141,137,137,105,180,244, 71, 3,200,229,
-230,234,213,171,129,173,105, 6,212, 9, 85, 98,150, 84, 34,183, 45, 72, 93,205, 76,198,184, 63, 85,220, 12,175, 3, 70,211, 0,
-169, 0, 32,128, 88,208, 90,241, 20, 54,150,225, 41, 0,190, 19, 24, 50, 46, 68,135,173, 88, 3, 88, 7,192,217,255,255,255,143,
-137,141,153, 50,101, 42,120,156,253, 15, 63, 63, 63,193,122,238,214,173, 91,192, 22, 45, 68, 47,144,141,166,236, 30,142, 67,157,
-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,175, 4, 32, 94, 35, 21,221, 60, 10,200, 0, 0, 1, 68,253,195,224,128,177, 5, 26,250,239,162,235, 89, 64, 3, 91, 7,
-192, 1, 35, 35, 35,124, 47, 46,214,210,159, 42, 0,243,204, 6,200,178, 81,130, 77, 54,170,100, 36,184, 33,192,210,156,212,179,
- 31, 28,192,128, 84, 27, 71,207,249, 33,163, 45, 66,221, 72,167,220, 25,131,220,205, 35, 22, 0, 4, 16, 77, 78, 3,165,188, 39,
- 65,118,202,219,182,109,219,208,202, 0,148, 27, 62,154, 91, 70,193,144, 75,198,163, 96,144, 0,128, 0, 98,244,137,169, 29, 13,
-133, 81, 48, 10, 70,193, 40, 24,129, 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,244, 82,248, 81,189,163,122,105,174, 23,215,242, 92, 90,235, 29,141,163, 81,189,248, 1, 64, 0,141,246, 0,
- 70,193, 40,160, 45,128,156,110, 15, 33, 73, 5,196, 28,169, 63, 10,176,130,155, 55,111,142, 6, 2, 65, 0, 16, 64,163, 21,192,
- 64,130,107,215,174,165, 35, 1, 32,119,240,235, 29, 5, 36,129,123,247,238, 65, 14, 54, 0,146,200,199, 30, 16, 95,250, 67,142,
-149, 37,251, 76, 30, 92, 34, 84,212, 75,225,157, 28,180,168,222,128,165,127,127,127,255,104,242, 35, 8, 0, 2,136,101,248,121,
-233,240,225,195,182,182,182,131,223,157,144,116,223,219,219, 11, 23, 41, 46, 46,102, 32,250, 50, 72, 32,249,111,165, 32,162, 38,
- 15,159, 72, 7,189,163,128, 84,128,124,212, 1, 73,167, 26, 32,151,254, 64,146,145,145,145,248, 35, 22, 40,217, 45, 72,134, 94,
-200, 57,254,120,156, 7,236,253, 64, 14,249,193,227, 89, 76,189, 4,117,225, 47,253,255,253,251, 55,107,214,172,165, 75,151, 70,
- 71, 71,143,166, 67, 92, 0, 32,128,134, 97, 15, 96,201,146,101, 67,162,244,207,207,207, 71, 46,253, 33,149, 1, 80,144,152, 6,
-215,130, 92,110,228, 18, 28, 82,160, 3, 5,105,170,247,227,199,143,153,153,153,240, 91,104, 94,188,120, 1,212,210,218,218,218,
-220,220, 92, 85, 85, 5, 57,175, 31, 23, 96,251,248, 85, 55,115, 62,207,254,251, 16,238,159, 23,127,174,166,255,184,212,202,118,
-164, 89,112,115,149,252,185, 93,210,195, 53,131,145,113,158, 62, 90,233, 15, 1, 36,245, 3,232,220, 3,128,156,227, 15, 81,185,
- 7, 12,208,202,113,252, 55,124,193,245, 98,234, 34,163,115, 0, 47,253,129,205, 41, 96,233,127,228,200, 17,134, 81,128, 27, 0,
- 4,208,112,171, 0,128,205,127, 96, 91,105,144,199, 58,100,200, 69, 78, 78, 14,222,240,135,180,253,225,130,120,198,100, 32, 82,
-113, 54,108,176,198,251,123, 32,130,176, 33,130, 52,210, 11, 4, 39, 79,158,228,224,224, 56,126,252, 56, 34,245, 48, 49, 85, 87,
- 87,215,214,214,198,199,199,111,221,186, 21,143, 94,137,147,215,254,115,176,114, 29,127, 4, 23, 97,100,250,175, 87,253,203,166,
-246,189,121,252,171,211, 91,165, 71,179, 34,102,233,207, 8, 3, 68,214, 1,200, 19, 6,233,168,128,129,208,116, 2, 37,122,225,
-117,192,187,119, 46, 51,103,190, 39,169,244,199, 90,127,192,117,145,218, 43, 5,150,254,125,125,125,192, 16, 3,166,204, 51,103,
-206, 0, 75,131,209,228,132, 31, 0, 4, 16, 19,254,194,148,140, 16,164,112,124, 25,104, 35, 68, 35,121,145, 7,108,254,207,152,
- 49,141,236, 78, 0,125, 82,204,196,137, 19,225,109,127, 96,209,223, 11, 6,240, 58, 0,200, 6, 42,192,163, 23,222,126, 7, 22,
-223,183,183,197, 2, 17,188, 28, 7, 74, 17,175, 23,210, 38, 37, 82, 47,176,244, 57,118,236, 24,176, 55,253,232,209,163,231,207,
-159,163, 73, 61,124,248, 80, 82, 82,146, 1,183,102,201, 99, 87,158, 68, 91,179, 61,250,200,248, 28,126,232, 52, 35, 88,134,225,
-221, 67,118, 33,201,239,195, 44, 95,221,187,119, 15, 79, 81,139,103, 50, 0,173,237,143,118,175, 28,254, 58, 0,249, 6,174,153,
-168,128,129,208,253, 92,200,178,255, 87, 9, 34, 35, 6, 18,239,246,130,148,251, 36,149,227,200,245, 7, 16,145, 87,250, 3,187,
-167, 19, 38, 76, 0,182,253, 11, 10, 10,128,117, 0,164, 45, 56,125,250,244,209, 82, 30, 15, 0, 8, 32, 22, 60, 69,225,210,165,
-203, 33, 9,142,248, 33,117, 72,210,140,137,137,129,104, 1, 26, 2, 41, 83,136,140, 75,160,250, 37, 75,150, 0,181,131,139,242,
- 37, 36, 89, 13,111,254, 67,242, 9, 25, 51, 1, 16,219, 73,181,148, 18, 0, 41,253,225,229, 62, 50,151,112,213, 13, 46,253, 33,
-108, 80, 29,224,181, 24,109, 96, 7,191, 94,120,140,128,235,128,116,130,122,129, 69,252,175, 95,191,140,141,141,129,189, 43, 96,
- 39, 32, 40, 40, 8, 84,103,252,251,215,222,222,254,229,203, 23, 86, 86, 86, 96,246,195,165, 87,232,225, 83,166, 95,127, 62, 24,
- 43,176, 30,121,198,114,252,229,239, 32, 69, 80, 28,253,251,127,169,157,237,221, 23,222,239,172, 60,174,153,183,135, 83,166, 34,
-216,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,111,110,137,140,182, 63, 48,215,195,239,134,180,177,177, 1,102,231,209,210,159, 32, 0, 8, 32, 22,220, 69,225,178,153,
- 51, 65,193,151,145,145, 69,100,153, 8, 25,215,214,210,210,130,139,216,130, 1,164, 79, 64, 48, 70,225,165, 63,220, 46, 82,139,
- 99,160,155, 99, 98,162,192, 53, 80, 20,144, 77,106,229, 1,180, 14,126,159,193,144,152, 70,166, 39, 56,122,244,168,185,185, 57,
-176, 60, 2,146, 27, 54,108, 8, 8, 8,128, 12, 1, 85, 86, 86, 2, 25,111,223,190, 93,190,124, 57, 80,202,212,212, 20, 83,175,
-252,209, 51, 47,204, 53,129,133,217, 87,115, 89,230, 13,207,127, 7, 40,130,135,128, 24,244, 42,127, 1,181,126,125,251,113,223,
-114, 21,121,243, 47,122,166, 79,134, 65, 64,225,191, 84, 29, 14, 86,131, 1,102, 33,142,124,167, 10,174,107,165,177, 94,220, 56,
-224, 0, 88,159, 97, 46,117,133,140,237,144, 10,200,208, 5, 57, 51,156,133,133,165,176,176,240,204,153, 51,163, 67,255, 68, 2,
-128, 0,194, 94, 1, 0,219,254,144,146, 20, 8,162,163, 35,129, 92,130, 5, 34,100,168, 7,185,244,135, 3,136, 32, 80, 1, 86,
- 89,164,226, 27,165,244,135, 48,128,130, 68,150,197,192, 40, 7, 22, 79, 16,197, 64, 18, 88, 1, 16,223, 9,128,151,254,200,185,
-139,200, 58,143,146,246, 11,114,171,159,164,230, 63,100,196, 6,216,234,135,116, 2, 84, 73,105,254, 67,245,134,167,195,239,126,
- 34,168,247,247,239,223,192, 76,197,203,203,123,233,210,165,191,127,255,126,250,244,233,250,245,235,194,194,194,112, 5, 64,182,
-183,183,247,180,105,211, 48, 43, 0,230,223,191,101,207, 92,102,227,149,102,189,244,246,227, 95,222,207,159,216,254, 94,255,194,
- 32,204, 1, 87,192, 45,252,199,212,251,201,194,105,182,195,163, 2, 0,134, 42,230,208, 7,230, 37,139,144, 30, 0,218,134, 29,
-146,214,234, 16,191,217,135,190,222,127, 15,233, 10, 32,247, 6,136,239, 64, 0,195,141,140,210,127,233,210,165,135, 14, 29,250,
-191, 74,144, 49,236,125,127,127, 63,176,226, 4, 54, 77,102,204,152, 49, 90,190, 19, 4, 0, 1,196,130,181, 52, 4,134, 32,114,
- 65, 12,172, 0,128,197, 43,176, 87,133,199,160,137, 19, 39, 66,134,110,176, 2,160, 20, 80, 1,158,244, 13, 25,124, 71, 43,115,
-193,229,248, 18, 98,202,113,228, 46, 11, 4,196,198, 70, 47, 94,188,148,152,114, 28,185,244, 71,107, 97, 17,212,139,199,203,120,
- 0,176,159, 4, 47,238,225,163,255,200,179, 2, 64, 5,120,244, 50,133, 67,135,242, 33,117, 0, 3,210,154, 78,166,240,247, 36,
-232, 13, 79, 39, 82,239,133, 11, 23,228,228,228,128,109, 43, 8,119,209,162, 69,199,143, 31,247,241,241, 65, 86,243,242,229, 75,
- 14, 14, 14, 76,189, 10, 23, 46,124,144,147, 60, 89,152, 4,225,178, 45,186,253,247,248, 71, 38, 31, 20,149, 31, 95,114,178,115,
-252, 30, 54,153, 10, 88,178, 43, 41, 41,225,185,235,170,188,188,156,200,107, 14,145,135,128,112,117, 8, 6,109, 32,144,161, 30,
- 82,113,146,164,119,217,178,165, 7, 14, 28, 96, 92, 3,106,142,236,170,225,117,107,249,108,103,103, 55,186,244,147, 72, 0, 16,
- 64, 44,152,165, 33,114,243, 31,222, 9, 0, 22,166,200,181, 2, 86,128, 71, 22, 82,148, 19,108,254, 99, 45, 97, 9,118, 2, 32,
-110, 70, 46,253, 33,131,128, 64, 7, 3,197,129, 89, 8, 79,213,133, 89,250,147, 84, 7,144, 55, 82, 4,233, 9, 61,122,244, 8,
-178,230, 7,185,225, 15, 20,196,213,145, 66,214,187,232,200, 47,200,186, 29,228,198, 59, 80,144, 70,122,129,197, 61,178, 79,237,
-237,237,187,187,187,157,157,157,255,253,251,215,214,214, 6, 36,191,127,255, 14, 12,103,172, 49,168,126,252,248, 37, 91, 7, 56,
-247,143,189,228,223,238,199, 12,206, 98,255,255, 49, 92,106, 99,253,242,143,231,221,119,190,119,140, 66,126, 49, 23,135, 83,190,
- 2,150,239,248,167, 91, 73, 41, 26, 87,129,200, 61, 97,196,244, 71,225,233, 22,235,106, 78, 60,247, 53, 34,235, 5,182,163, 73,
-210,139,217,138,135,220,225, 76,159, 1, 55,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, 30, 1,228,229,229,167, 76,153, 66,100, 89,182, 13, 85,239, 63,121, 30,206, 41,
-154, 64,134,246, 76, 86, 6, 6, 96,171,255, 61, 24, 61, 28,174, 25, 12, 94, 16, 67, 24,116,184, 45, 14,107, 73, 13, 23, 33,184,
- 10,136, 12,189,152,173,120, 34,251, 55,148,135, 45, 48, 25, 3,203,125, 32,123,193,254, 95, 43,142,253, 2, 22, 5,163,251, 25,
- 73, 2, 0, 1,132, 82, 1,224, 41,220, 33,211,185, 4, 19, 31,217, 10,200,190,201, 22,127,133, 68,161,179,105,157, 93,175, 93,
-187, 6, 95,253, 9, 25,162,193, 63, 77,130,166, 23,178,131,151,158,122, 71, 1,169,160,188,188, 28, 62, 22, 4,100,211,199, 82,
- 58,239, 4, 30, 88,224,222,242,121,168, 56,117, 16, 2,128, 0, 98, 25, 13,130, 1, 4,192, 98,151,236, 36, 59, 80,122, 71, 1,
-169, 99, 65,144,147, 18,128, 36,241,237, 98,148,213,159,176,193, 31, 92, 75, 66,113,141,231,224, 23,161,133, 94, 90, 84, 93,248,
- 1,176,243, 10, 12, 22, 63,255, 52,104,119,115,251, 57, 8,195,203,211,104, 52,237, 17, 3, 0, 2,104,180, 2, 24, 5,163,128,
-182,192,197,197, 5, 88, 1, 16, 63,177, 73,121,105, 59,176, 61, 0,250,214, 22,255, 33, 59, 10, 71, 1,121, 0, 32,128, 70, 47,
-133, 31,137,128,243,231,141,239,236, 26,163,225, 48, 10, 70,193, 8, 7, 0, 1, 52,122, 28,244, 72, 4,163,165,255, 40, 24, 5,
-163, 0, 8, 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,136, 38,151,194,223,191,122,156,129,233,135,164,140,244,231,239, 95,
-223,191,253,170,166,105, 67,188,222, 35,231,238, 50,252, 99,127,249,244, 41, 55, 39,183,160, 16,183,185,137, 34,241,122, 41,113,
-243,211,103,171,217, 56,254,176,115,176, 48,179, 48,255,101, 96,228, 99, 11, 36, 94,175,128,144,177,160,160, 32, 39, 39, 39, 3,
- 35,227,181,203,155,240,219,203, 41,125,131,120, 55,127,127,138, 50, 88, 47,197,245,146,120,189,207,190,137,163,232,253, 73,130,
-189,207, 80, 39, 9,164,127,145,112,189,234, 83, 54,245,193,160, 87, 27, 91, 56,119,118,174, 46, 47,199,114,212,204, 85,212,112,
-230,148,249, 69, 66, 28, 61, 97, 67, 73, 27,210, 36,196,209,230,167, 40,113,244,227, 39, 55,241,122, 57,216,191,162, 24,229, 55,
-133,120,189,190,155,114,144,185,197, 47, 72, 56, 54,167, 87, 34,131, 70,121,112, 84, 47,141,244,226, 1, 0, 1,132,111, 25,104,
-234,129, 34, 70,199,248, 89,255,245,137, 49,232,222,149, 93,140, 12,255,120,216, 57,231,207, 92,182,112,225, 68,107, 23,235, 63,
- 95,191,105,105,216,253,251,199,144, 93,246, 87, 75, 75,253,206,157,135, 63,190,255,225,149,180,198,212,123,244,252,171,255, 12,
-140, 95,126,126, 79, 47,106,105,156,228,254,236,234, 89, 96,242,222,118,241, 9, 19, 19,195,196,134,154, 91,183,110, 42, 40,200,
-179,115,178, 8, 11,178, 99,234,189,190,121, 59, 59, 59, 59, 23, 23, 23, 47, 47,175,128,128,128,176,144,176,144,144, 32, 63,191,
- 0, 15, 55, 55, 51, 11,203,191,127,127,191,127,255,254,249,211,231, 11,223, 62,226,114,249,157, 91, 43,217, 57,190,243,240,114,
-112,112,177,179,176, 49, 51, 50, 49, 50,177, 48,255,103,222,245,251, 15, 35,219, 31, 87,252,190,190,255,136, 73, 68, 68,132,131,
-251,199,207,159, 63,152,152,153, 24, 25, 25,164,100,109, 63,124,120,255,237,243, 21,218, 85,218,179,102,205, 74, 75, 75, 27,109,
-188, 16, 4,184,138,123, 82,213, 0,129, 4, 39,215,211,167, 79, 89, 57,216,255,113,113,209,211, 11,223,222, 93, 56,182,119, 5,
-178,136, 75,104,199,224, 12,237,197,139, 22,177,179,177,253,251,247,143,155,135,199,215,207,111, 52,249, 13, 9, 0, 16, 64, 4,
-246, 1,252,223,187, 48,205,153,112, 29, 16,234,167,242,211, 73,232,247,151, 15, 44,127,153,204,244,100,226,227,161,103,138, 1,
- 75,240, 19,199, 23,136,200, 73,255,251,242,201,222, 92,247,217,179,247,123,206,255, 65,211,155,158,222,198,192,198,207,200,197,
-247,159,249,255,197,107,137,243, 86,236,132,136, 3,107, 14, 15, 75, 75,134, 47, 47, 24, 24,120,239, 94,190,206, 42, 34, 96,109,
-161,195, 35, 32,134,105, 59, 35,104,139, 12,168,220,102,102, 2,150,249,204, 44,172, 32, 0, 36, 89, 88, 88,254,252, 97,100, 98,
- 98,198,179,131,230,226,249, 89,252,252, 44,188, 60, 60,162, 98,194, 60,188, 92,127,255,255,253,241,243,251,239,191,127,185,120,
-184, 68,197, 36,255,254,123,240,248,134, 2, 86,141, 59,118,223,226,229,229, 17, 16, 16,252,246,141,243,219, 55, 46, 14, 14,118,
- 70,240,112, 26,176,190,249,246,237,219,155,247,124,111,222,188,121,251,230,165,181,165, 44, 86,237,171, 59, 9, 93,147,148,224,
- 34, 40, 46,136,181,244,167, 98, 29, 80,213,221, 13, 36,219, 74, 75,201,208, 91,217,213, 5, 36,219,203,202,136,215,114,229,233,
-211, 91,183,110, 1, 25, 65,142,142, 68,106,153,185, 10,116, 18, 14,242,173, 88, 64, 54,132,100,128,157,143, 6,100,167, 97, 59,
- 66, 18, 88,178,227, 47,223,137, 41,253, 21, 5,133,190,255,250, 9,100,176,113,114,252,250,254,227,223,215,111,111, 94, 60,151,
-212,213,197,163, 69, 82, 89,141,160,191,248,229, 53,111,236,219, 72, 80, 25,176,244,183,113,137,224, 16, 52, 32, 42,176, 66,223,
- 17, 84, 18, 22, 22,182, 42,116, 15, 86, 41,199, 61,175,225,108, 45, 1, 80,201,240,234,199,191,239,127, 64, 33,252, 21, 76,206,
- 52, 23, 80,227,101,197,170,183,167,167,167,170,160,196, 63, 40,240,199,143,239, 19,251,251,166, 76,153,146,147,147, 67, 97,226,
-188,115,231, 78, 55, 56,125, 18,220, 88,112,252,248,241, 7, 15, 30,188,125,251,246,243,231,207,192,134,160,176,176,176,130,130,
-130, 37,176,244, 24, 5, 96,176,101, 73, 51,156,141,182,238, 31, 32,128,240, 85, 0,179, 29,250,130, 79,180,254, 59,182, 53,205,
-138, 1,127, 29,240,243,203, 59, 9, 21,231,150,210,160, 5, 51, 15, 64, 68, 14, 30,155,241,245,219, 79, 47,151,124, 43,235,132,
-136, 48, 39, 78, 78,246, 95,127,255,124,254,246, 75,205, 2,243,208,158,135, 12,191, 24,130,162,167,167, 22, 65,187,150, 30, 86,
- 14,192,242,116,195,190,157,219,142, 30, 95, 52,127,218,143,239, 63,217,152, 89,120,184,216,248,216,254,222,121,244, 2,189,138,
-250,207,240, 31, 92, 14,128, 73, 48,227, 31,136,250,247,255,223, 95, 48,248, 3, 6, 88,157,125,242,248, 44, 49, 81,102, 94, 94,
-110, 89, 89, 57,117, 77, 85, 30, 30,174,119, 31,222, 62,123,241,252,245,219, 55,255,254,252,231,230,226, 86, 87,211,226, 23,120,
-116,229, 4, 15,154,198, 77, 27, 78, 49,176,176,127,103, 97, 98, 99,103,251,246,141, 3, 88, 7,128, 42, 0, 70,208,158,148,111,
- 32,240,229,219,183,175, 95,191,124,122,251,250,217,146, 5,231,248,149,177, 31,140,213,189,168, 27, 87,120,150,198, 97, 47,145,
-223,191,127,143,204, 22, 18, 18,130,148,134,130,130,130,119,239,222, 93,189,122, 53, 73,181, 2,155, 56,116,252, 1,104,168, 32,
-185,105,107,214,234,213,217,217,217,191, 95,189, 34,166,244, 23, 19, 19, 11,114,115,251,205,206,222,219,219, 27,236,228, 68,204,
-241,150, 64, 15,246, 52, 52, 64, 71, 42,234,235,123, 27, 27,177,178,113,105, 71,174, 3,128, 12, 99, 99,227, 61,123,238,185,184,
- 40, 17, 89,250,107, 72, 72, 10,240,241, 65,106, 26,110, 14,206,231,175, 95,125,122,255,129, 71, 64,240,225,233, 51,242,166, 38,
-120, 52,250,165,149,196, 4,251,170, 42, 64, 91, 15,245,189,147,225, 82,141,197,185, 64,242,209,246,189,102,106,178, 68, 13,245,
- 16, 89,250, 67, 91, 22, 66,132, 84, 16,222,143,198,205,194,120,177, 49,153,145, 79,228,239,189,139, 63,239, 93,189,245,238,171,
-201,118,124,241, 59, 99,230,204,162,244,236,184,148,164,213, 75, 87, 0, 75,222,150,206, 46,222,134, 22,248,165, 17,148, 20,253,
-160,188,128,183,117, 2, 44,241,119,237,218,245,251,247,111,101,101,101, 91, 91, 91,126,126,254, 15, 31, 62, 60,123,246,236,254,
-253,251, 64,210,205,205, 13, 88, 31,140,150,254,104, 92,228, 58, 0, 32,128,208, 43,128,180,219,176,163,117,192, 59,236,254,255,
-251,194,240,235,231,239, 3,203,210, 28, 24, 8,245, 3,216,180, 52,213,153,152, 14,220,250,240,150,129,225,250,199,167,183,129,
-253,229,141, 91, 39,125,123,243, 55, 58,177, 16,216,156,247,243,181,252,203,194,131, 75,243,173, 91,215,129,106,188,244,129,205,
- 58, 41, 6, 6,249, 31, 63,127,133,120,184,113, 8, 48, 45, 90,182, 3,216,141, 88,179, 98, 1,243,159,207,154,242,236,119, 30,
- 97,244, 81,128,101, 61, 24,128,202,250,191,127,126,253,254,245,243,231,207,239, 63,190, 67,238, 5,253,243,231, 55,168, 64,254,
-254,157, 1,219,108, 55, 63,223,127, 96, 95, 65, 72, 72, 88, 69, 89, 85, 77, 69, 3,216, 85,248,243,247,223,171,215,239,126,254,
-248,253,247,223,215,215, 47,223,200, 72,127,215, 80,213, 56,119,126, 3, 3,131, 4,178, 70,118, 38,160,173,223,127,127,251,243,
-149,153,129,131,157, 13, 88,250, 3,251, 27,255,254,253, 1, 90,250,245,219,183, 87, 47,159, 93,189,116,230,237,171,103, 64, 71,
- 49, 49, 18, 59,205, 62,111,250, 60, 8, 35, 41, 51, 9,103,238, 70,186,103, 10,200, 46, 42, 42,122,244,232, 17,208, 82,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, 28,254,144,131,225,210,195, 8,
- 28, 87, 9,108,251, 3, 75,127, 80, 66, 97, 99, 83, 83, 83, 91,187,111, 31, 49, 93, 1,202,207, 64, 6,150,242,192, 66, 31,114,
- 97, 8,156, 12, 13, 13, 37, 88,250,171,137,137, 3, 75,127,102, 38,166,172,152,232,239, 63,126,246,206,157,203,197,201,249, 3,
- 8,190,127,103, 98, 97,126,124,254,188,172,161, 33, 46,189,144, 82,254,246,131, 7,200, 92, 50,128,185, 83,196,158,213, 21,174,
-126,201,255,217, 85,137,212, 2, 63,203, 19,114,155, 35, 86, 17, 92, 0,216,240,127,248,229,239, 65, 87, 81,214,252,153,159,162,
- 21, 89, 4,197, 8,150,254,123,247,238, 85,144,148, 74,201,202,168, 40, 44,155, 50,127,134,153,145,209,140,201, 51, 10,202, 74,
-150, 90,154, 95,190,124, 89, 23,111, 87,137, 96,209,175,162,162,130, 95, 61,176,244, 23, 21, 21, 53, 52, 52, 4,102,118,240,176,
-193, 63,112,142, 22,146,144,144, 0,214, 1, 64,217,224,224,224,209,210, 63,173, 28, 58,108, 56,171,179, 2,173, 14, 0, 8, 32,
-148, 10, 32,245, 88,229, 55,102,142,127,127,255,253, 99,100,230,253,255,157,225,247, 15, 70, 6,102, 6,105, 53,214, 95, 95,255,
-239,153,151,230,146,132,183, 14,248,199,204,204, 12,102, 0, 91, 76, 50,252,210,234, 15,111,174,153, 62,115, 62,211, 79, 46, 55,
- 71,235, 29,123,143,126,251,198,192, 37,196,143,169,141,147, 75,253,251,183,155,192,226, 27, 38, 0,108,227, 63, 99, 98,118,136,
-139, 79,254,199,254,117,203,214,121,126,190, 73, 92,220, 12,223,222,190, 71, 43,133,161,182,130, 90,250,255,128,109,124, 96, 43,
-224,231,143,159,192,194, 30,152, 2,128, 85,215,175, 95,191,128,133, 47, 80, 28,212, 32,255,242,133,129, 31,125,232,246,224,254,
-153, 18,226,160, 90,130,133,153,245,239,191,255,239,222,126,252,245,231,215,203, 23,111, 63,188,255,252,237,235, 47,134,239,127,
-254,253,123,193,204,114, 69, 74, 70,158,155,147, 19,219,184, 19, 3,195,159, 95,223,223,191,126,245,253,203,191,223, 63,152,129,
-149,199,159,223,175, 94, 62,189,118,233,236,203,103,143,193, 87, 82, 48,131, 18, 37, 35, 53,247,169, 67, 26,248,179,102,205, 10,
- 9, 9, 49, 48, 48, 96,103,103,239,235,235, 35,207, 40, 72,243,223, 66, 71, 71, 92, 92, 28, 88,130,251,216,219, 75,145, 94, 7,
- 8,130,203,125, 86, 49, 49,160, 9, 64,146, 96, 63, 0,216,246,103,253,249,115,237,218,181,200, 93, 1,226,135,131,200, 6,144,
-114, 31,249, 74, 22, 96,245, 73,176, 2, 0,214,229,162, 66, 66,137, 33, 33, 31, 62,126,122,253,238, 45,120, 76, 17, 4,128, 9,
-140,157,147,235,211,219, 55,159, 31, 63,225,149,197, 57, 53, 7, 44,253,151,172,221,140, 92, 1, 64,250, 1,230, 70,122, 94,142,
-246, 68,184,250, 51, 3, 3, 47,175,176,129,139, 31,247,238, 77,115,233, 51,250,127,105,225,132,159, 59,230,139,205, 62, 7,172,
- 9,152,249,132,254,188,127, 5, 44,253,129, 29,130,175,127,254, 51,227,104,201,220,191,115,103,219,166,173, 11,103, 47,156, 52,
-119,218,140,190, 9, 66,194, 66, 45,109, 45,139,150, 45,181,181,176,158, 55,119, 94, 80,104,144,173,181, 45,121,165, 63, 68, 4,
- 79, 29,112,252,248,113, 96,174, 55, 50, 50, 2,102,115, 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,254,129,240,247,171, 63,126,254,230,
-228,225, 96, 96, 3, 85, 12,159, 63,125, 18, 67,186,127, 10,165, 2, 0,183,254,129,133,239,207,159,191,190,179,126,103,254, 2,
-242,209,159,223,127,128,205, 76, 96,211, 24,216, 39, 0,182,216,128,117, 0,102, 5,192,206,254,235,239, 95,214, 95,191,254,188,
-255,240,233,206, 29, 96,135,241,213,143,159, 63, 63,126, 2,102,246,143, 95,190,255, 4, 22,220,223,191,255,253,250,237,207,227,
-167,111,222,189,255, 10,236, 45,160,183, 76, 97,140, 95,223,191, 61,189,127,251,245,179,199, 47, 94, 61,254,252,233, 3,164,220,
- 7,146,144, 19, 74, 8, 22,255,165,113,165,120,198,130,176, 76,218,176, 64,163, 76, 80, 80, 16, 88,227, 34, 31, 54, 73,106,243,
- 31, 88,139,128,198,184, 69, 69, 25, 41,171,165, 32,229, 62,176, 14,192,211, 9,184,242,244, 41, 3,248,236,107, 96,139, 12,210,
- 15, 0, 21, 55,151, 46, 1,201,117,251,247,227,175, 3,138,235,235, 33, 35, 93, 64,118, 73, 67, 3,188, 79,128,103,228, 7, 25,
- 0,155,255,104,227,200,144, 67,143,225, 99, 65, 88,129, 0, 11,203,143, 95, 63,129, 33,124,227,222, 93,160,141,215,110,221,254,
-245,235, 55,176, 62, 7,134, 63,208, 49,192, 70,199,247,175,223,118,175, 90, 25,132,116,152, 43, 26,128,151,254, 49,193,190, 40,
- 3,143,231, 46,169, 42,202,179, 19,118, 56,108,236,130, 93, 21, 88,244, 3,251, 1, 64,228, 25,152,252,155, 69,149,134, 37,196,
-187,231,108,114,106,175,178, 57,216,157, 34,255,158,217,241,247, 19,104, 82,225, 85,182,149,252,204,227,192, 70, 18, 86, 29,234,
-170,234, 92, 92,220,147,230, 76,117,180,183, 55,183,180,216,181,109,231,141, 59,183,128,237, 50, 14,118,118,107, 99,235,173,155,
-182,190,121,245, 38, 48, 48,144,248,162, 31,216,108,223,189,123, 55,116,152,180,187, 27, 79,239,246,193,131, 7,202,202,202, 16,
-198,197,139, 23,229,229,229, 21, 21, 21,223,191,127,127,230,204, 25, 37, 37, 37, 96, 35, 3, 40, 2,148, 26,173, 0,240, 0,128,
- 0,194, 50, 7,144,198,120,241,255,193,101,140,204, 44, 12,185,115,243, 31, 72, 78,234, 91,200,192,203, 51,189,246,102,106,155,
- 58,243,158, 89,105,178,154,179, 84,179, 64,131, 27, 76,204,200,186, 84,248,100,174, 92, 90, 7,102, 2,155, 10, 95,193, 71,189,
-255,102,248,253,147,229, 31,176,233, 0, 42,211,215,111,216, 5, 36,173, 61,177,148, 17, 59, 46,255,247, 48,212, 65,106, 91, 3,
- 93,197,202,192,202,241,135,241,239, 63,112, 17, 26, 30, 13, 58, 83,254,225,177, 89, 88, 43,128, 63,127,255, 50,253,254,195,196,
-244, 19,220, 13,100,252,251,247,207,207,159, 63,128, 13, 53, 96,177, 6,236, 88, 0,187, 2,192,158, 1,187,172, 36,154, 70, 96,
-191,225,215,239,127, 12,223,127,189,121,243,254,219, 55, 96, 86,103, 1,230,240,159, 64,252,247, 55,176, 87,241, 31,168,153,233,
-247,231, 47,191, 94,191,254,252,245,251, 31, 6, 6, 53, 28,229, 63,148,241,243,199,247,143, 31,222,129, 39,156,193,147,210,164,
-196,193,205,135, 55,213,229,213,241,140,252, 32, 15,136,115,194,186, 35,192,146,232,222,189,123,144,210, 31, 88, 13,240,243,243,
-127,252,248,241,195,135, 15,196,140,153, 64,154,255,192,110, 50,132,155,147,147, 51,121,242,100,242, 58, 1,112, 19, 32, 3, 65,
-248, 71,255, 25,121,121,129, 14, 46, 43, 43, 3, 54,162,127,191,127, 15,116,115, 69, 78, 14,193,126, 0,242, 88, 63,174,249, 0,
- 76, 93,157,132,166,217,207,130, 1,132,141,121, 34,214,251,119,239,120,120,121,223,188,127,191,255,228, 73, 22, 38,230,159,191,
-127,127,251,254, 29,152,216, 32, 85,209,159,223,192, 84,245, 19,127, 80, 99, 14,251, 0, 69, 32,157, 0, 85, 5,133, 71,247,238,
-144, 20,194,192, 58,224,235,235,147,219,215,207, 37,163, 31, 64,112,228, 7, 14, 46,172,154,109, 16, 95,200,174,168, 7,106, 69,
-189,121,126,235, 29,104,165, 41,187,165,207,163,191,127,184,166,156,196,170,229,211,167, 79,236,156, 28, 42,138,138,247,159, 60,
-126,251,250,109,120, 76,244,182,189,187, 39,118,244,174,223,182, 73, 85, 81, 53, 46, 56,246,248,185,163,235,215,174, 13,196, 61,
- 20, 3, 47,253,129, 69,191,171, 43,104,221, 29,164, 2,128, 87, 9,184,192,219,183,111,109,109,109,129,121, 28, 88,202, 31, 61,
-122, 84, 75, 75, 11,152,162,100,101,101,129,157, 99,112, 35,140, 73, 82, 82, 18, 30,197,163, 0, 43, 0, 8, 32, 22, 44,165,255,
-190, 5,192,230, 49,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, 0,108,115,163, 85, 0,119, 62,125, 82, 19,224,251,243,147,225,206,129, 37, 42, 14,238, 12, 12, 32,217,223,191,
-126,179, 50, 48,125,249, 1, 90, 68,225,225, 96,196, 41, 44,141,213, 17, 30,186,140,219, 46,254,103, 5, 54,247,229,220,127, 61,
- 58, 12,233, 4,176,178,177,255,102,248,193,195, 9,186, 59,112,211,182,229,223,223, 62,182, 80, 22,192, 86, 1,252, 7,141,254,
- 51, 2,221,195, 8,169, 15,128, 37,254,247,239,223, 33, 45,101, 80,245,240,231, 15, 80, 68, 20, 67,227,143, 31,127,192,227, 54,
-255,126,254,252,251,249,243,119, 96, 94, 6,178,127,255,254, 11,172,191,152, 88,152, 25,152, 24,255,131,178, 58,227,159,127, 95,
-191,255,248,139, 47,119,193,107, 1,104,193,207, 8,107,251, 67,248,140,248,155,255,164, 70, 24, 23,108, 25, 34,114,233, 15,108,
-239, 0,187,192, 64,159,194, 91,202,196, 52,255, 21, 68, 68, 32, 92, 32,131,145,145,134, 71, 42,194, 71,255,255,127,254, 92, 91,
- 91,251,243,237, 91,200,245,143, 42,224, 26,136,245,231, 79, 95, 95,223,167,175, 94, 73, 83,117,133, 37,124,132, 7, 62, 1,128,
- 6,140,141,141,225, 61,128,171, 79,209,101,255,252,252,245,225,215, 59, 96,247, 81,128,159,159, 3,152, 20,255,254, 1, 6, 44,
-164, 61,241,251,247,111, 96,163, 3,127, 56,223,126,240, 0, 62, 3,140, 60, 22,132, 60, 51, 76, 42,224, 22, 53, 7,182,163,200,
-208, 72,252, 28,128,253,238,215,175, 20,214, 0, 59, 1,140,138,122,242,243,207,191,249,241,143,155,133,241,215,145, 13, 55,239,
-221,199,149, 64,190,255,249,117,246,248,169, 9, 61,253, 86, 14, 54, 53, 77, 13, 59,183,239, 92,186,104,177,165,157,141,172,130,
- 28, 11, 23,235,222,195,123,151, 45, 92,188,110,195,218,173, 91,183,122,123,123, 99,106,135,220,147, 3, 47,250, 73, 2,192, 52,
- 15, 44,241, 65, 9, 88, 65, 1, 24,155,192,238, 26, 48,191, 3, 91,253,236,236,236,192,198, 16, 80,144,151,151, 23,168,102, 36,
-151,239,192,150,205,150, 37,205,104,195, 62,200, 0, 32,128, 80, 6,246, 64, 35, 63,135,151, 50,112,114, 60,248,244,139,225,251,
- 71,246,127,223,244,116,148, 24,222,126, 99,248,245,199, 65, 95, 13,180, 48,243,247, 15,102, 70,240, 16,205, 63,204, 50,241,195,
-173, 15,143, 88,216, 25, 60,252, 10,151, 77, 2, 54, 82,126, 49,124,251,249,247, 59,195,134,253, 23,246,156, 6,221, 23, 47, 35,
-167, 8, 42, 88,113, 0, 47,125,198,223, 63, 24, 54,109,221, 97,226,150, 11,106,254, 51,176, 50,115, 50,132,249,132,122,217,249,
- 3,101,159, 60,188,251,255, 55,246, 82, 24, 50, 7,252, 7,216,234,255,245,235, 7,176, 29,254, 29,180,254, 6, 24,235,192, 20,
-240,233, 35,176,117,242,249,203,151, 47,160, 33, 32,204, 17,222,175,255,190,127,255, 3, 68, 95,191,254,250,252,249,199,167,207,
-223, 63,127,249,241,229,203,207, 79, 31,127,124,254,252,243,243, 39, 16,250,248,241,231,199, 15,223,223,191,255,142,213, 98, 88,
-209, 15, 93,130, 4, 46,248, 25,225,109,117, 6,226,142,169,213,180,212, 60,186,237,232,206,125, 59, 33,245, 1,176, 55,128, 71,
- 49, 48,137,179,192,194,176, 11,188, 10,179,162,162, 2,114,202, 60,242,178, 72, 98,154,255,226,226, 40, 91,144,178,179,179,183,
- 30, 58,244,140,136,197, 60, 88, 1,176,249,143,191, 10, 1, 54,243, 33,140,149, 43, 87,222,121, 1, 90,202,181,229,192, 1,184,
-224,205,155, 55, 69, 69, 69,105,148, 7, 32,165, 60,242, 21,137, 16, 54,158,241, 31, 80, 69,203,199,251,239,239,223, 79,239,222,
-131,150,243,126,120,255,245,219, 55, 32, 2, 38,166,175, 31, 63,125,254,240,225,199,247,111,191,126,252, 0, 38, 59, 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, 31, 62, 16,239, 12, 34, 43, 3, 96,249, 14,204,230,192,150, 62,176,213,111,102,102,166,173,173, 13,218,148,195,193, 1,
- 44,250,245,245,245, 5, 4, 4, 32,171, 66, 71,120, 27, 31,185,119,139,217,211, 5, 8, 32, 68, 15, 32,237,214,180,255,175, 31,
-252, 96,229,216,243,138, 11, 24,215, 10, 31,158, 51,175,107,217,158,222,220,173,165, 34, 41,200,145,171,193,201, 48,245,252,255,
-223,191, 30, 51, 75,160, 12,129, 32, 0, 15, 48,197, 2,169,139,151, 54,235, 27,248,214,213, 44,218,184,174,111,215,254,235,142,
-150,218, 44, 44,236,187, 15,159,251,207,204,242,235,239, 95,252,110,245, 48,212,216,113,246, 6, 67,111, 71,136,175,151,143,143,
-239,206,125,235,255,252,254,225,237, 30,201,244,247, 55, 43, 51, 51,142, 57,128,255,144, 30, 3,116,237,231,191,127,204,160,225,
- 32, 38, 80,135, 0,216, 28,254, 7, 93, 37,132,165, 2,248,198,198,200,248,157,149, 21,180,243, 11, 92,141, 48,252, 5,117, 23,
-128,232, 63, 35,243, 31,144, 94, 6, 96,243, 31, 88,247,253, 3,246, 0,184, 4,113,182,254,145, 89,140,140,144,130, 24, 41,175,
- 48,226,107,254, 3, 75,127,104, 43,117,193, 30, 32, 2, 50,128,149, 1,131, 23,190, 32, 2,251,151, 97,205,154, 53,144,188,167,
-168,168, 8,233,232, 0,155,165,192, 30, 0,193, 10, 0, 88,250, 67,154,255,138,212, 43,112, 89,193, 3, 71,222,246, 56, 39, 54,
-173,116,117,123,123,123,129,205,124, 96, 65, 15,236, 13, 4,128, 79,198, 87, 87, 87,135, 11, 62,124,248, 80,132,157, 93, 2,214,
- 35,161,238, 28, 0, 16, 64,174,100, 65,190,246,150,224,165,181,239,223,124,100,100,248, 3, 26, 62,124,249,141,141,131, 3,216,
-161,132,244, 0,190, 3,219, 8, 95,191,254,252,249, 19, 88,162,121,224,190,123, 22, 82,202, 67, 70,129,204,141,244, 78,158,187,
- 4,151, 66,155, 18,192,217,188,125,125,242,228,129,245,206, 94, 17,208,202,224,227,237,155,151,142,146,209,240, 39,126,252, 7,
-212, 87,123,247,245, 81,138,233,255,251,151,196,102,159,251,250,231,255,167,104, 69,254,101,247, 63, 37, 10, 3, 75,127, 38,220,
- 21,124,118, 78, 78,109, 71,139,152,176,200,239,127,127,111, 63,190, 23, 29, 25,181,104,201,146,141, 27, 54, 69, 69, 71,253,252,
-241,243,240,153, 99,223,191,127, 73, 75, 72,216,123,252, 56,230, 58, 14, 96,140,220,185,115,199, 13,220, 65, 68,235, 7,148,150,
-150,226, 31, 5, 18, 22, 22,126,246,236,153,160,160,224,140, 25, 51, 76, 77, 77, 13, 13, 13,217,216,216,128, 57,255,196,137, 19,
- 22, 22, 22, 64, 5, 64, 89, 97, 28,115,135, 35,182, 14, 64, 3, 0, 1,132,168, 0,102,169,101, 57,124,157,121,235,201,251,231,
-190,224, 70,199,201,138,255, 91,166, 75,189,188,223,111, 31,196,240,225, 29, 67,219,130,255, 79,111,252,229,228,254,240, 14,212,
-125,103,100, 66, 95, 19,112,240,192, 70,123, 7,103, 80,193,250,239,247,157, 15,143, 24, 24,254,170,240, 41, 58, 58,234,137,139,
- 72,188,253,248, 9,212, 65,248,245,231,249,135,175,154,216, 28, 33, 35,103,249,228,209,113,112,154,101,241, 0,173, 4,101,217,
-113,249,247,206, 45,107, 94,190,121, 38, 44, 0,234,226, 9,176,177, 74, 10,240,224, 40,131,255,131,139,247,127,144, 93, 0,160,
- 25, 97,166,191,192, 50,157, 17, 92, 18,255,135,238, 14,192, 82, 1, 68, 70,229, 47, 94,212, 8,204,218,204,204,144,177,163,255,
-255,254,254, 7,246,236, 65,253,123, 96, 33,203, 8,236,233, 48,254,253,251,255,231,239,127,249,153,141,104, 91,171,145,102, 0,
-254,195, 57,240,162, 31, 65,225,237, 4,192, 75,127, 52, 54,168, 14,192, 1,128, 5, 16,176,232, 1, 22,223,144, 10, 96, 13, 24,
- 0,185,202,202,202, 64,219, 39, 78,156, 8,236, 16,188,123,135,111, 55, 80, 9, 24,236,216,177,227,235, 75,148, 19, 11,128,245,
-193,253,251,247, 25,240,110, 10,195,220,249, 5, 44,250,129,213, 9, 48,124,125,236,237,165,113,207, 31, 0, 75,118, 43, 61,189,
-183, 15, 30, 0, 75,249, 91,176,181, 64,170,146,146, 69, 69, 69, 71,143, 30, 85, 83, 83,211,145,150,198, 51,237,129, 60,238, 79,
-252, 28, 0,242,100, 64,121, 57,104,209,231,189,123,208,182, 63,124, 91, 0,158,133, 64, 60,210, 98,223,159,191, 0,182,241,191,
- 2, 27,153,111, 94, 51, 50,130, 86,254,254,248,241, 3,146,204,238, 95,187,254,251,215, 79, 60, 75,128, 80,122,183,142,246, 64,
- 4, 95, 18, 74,204, 16,208,151, 55,167,128,165, 63,200, 25,220,220, 27,145, 58, 1, 38,182,129, 52, 45, 41, 76,182,191, 58,227,
-201, 96, 96,236,242, 42,219, 74, 98,218, 49, 96,125, 32,200,198,248,246,221,123, 22, 70, 70, 22,188,253,217,184,184, 56, 56,123,
-243,230,205, 94,222,158, 91, 54,109, 89,181,106, 85, 67,117,237,174, 3,123,153, 89,152,165,101,164,129, 1,201,192,134,101, 33,
-159,138,138, 10,102, 53, 0,153, 6,192,191,190, 25,216,210,191,119,239,158,150,150, 86, 65, 65,193,138, 21, 43,248,249,249,111,
-220,184,129,220, 69, 7,202, 42,144, 59,224, 54, 66, 0, 64, 0,161,204, 1, 28, 48, 76,103,128,173,108,222,242, 74,192, 71,148,
-241,255,153,109,255,143,111, 2,149,108, 28, 28, 63,184,120,119, 11, 56,188,176,116, 1,143, 69,160,111, 8,188,121,235,215,145,
- 19,109,160,146,148,153, 3, 50, 92,113,231,211,243,186,156,164,111,223,126,126,250, 14,154, 3,248,197,196,238,228, 17,130,213,
- 17,181,213, 9, 59,182,130,183,213,252,133,156,193,242,199, 67,151, 49, 34,171,143,139,139,157, 15, 60, 7,192,250,239,135,180,
- 40,142,242, 5,180, 43, 20, 84,124, 67, 26,137,255, 24, 65, 16,178, 55, 24, 84,250,254,199, 55, 46,242,237, 27,231,247,239,159,
-129,157, 0, 96, 31, 0, 88,230, 3, 13, 1,247, 0,254,125, 3,109,127,100, 4,138,252, 6, 54,169,153, 24,177,217, 9, 46,217,
-255,195,235,128,255,152,125, 34,200, 84, 64, 76, 98, 32,174,115, 57,174, 31,191, 78,106,108, 1,125,242,253,251,119, 93, 93, 93,
- 37, 37,165, 7, 15, 30,172, 2,239,146,133, 84, 6, 16,208,209,209, 65,176, 14, 0,130,140,140, 12, 76,193,224,248,120, 6, 34,
- 54,133, 65,182,230, 34, 3, 95, 7, 7,130,179,199, 18,176,134, 24,114,111, 0,216,240, 55, 81, 87,103,251,250, 21,191,151, 41,
- 73,223,200,165, 60,242, 46, 10, 6, 34,246, 9,115, 74, 74,124,187,125,231,239,159, 63,159,222,127, 0,247,174, 64,205,136,247,
- 47, 95,125,122,255, 30,232, 42, 60,205,127,180,201,128, 37,107, 55, 35, 47,253, 68,158, 30,192,145, 46, 47,158,216, 15, 89, 79,
-193,176,113, 53,104, 1,168,145,125,132,144,152, 1, 45,203,129,255, 40,117, 0,195,108,131,140,186, 23,255,254,233, 47, 56,117,
-202, 67, 92,123,203, 75, 96,233,207,203, 74,236,142, 22, 96,228,238, 59,176,207,201,213,121,211,218, 13,205,157, 29,229, 31, 63,
- 2,219,101, 43, 87,174, 21, 17, 17,121,244, 9,167, 46,180,106,128,129,208, 22, 48, 32,176,180,180, 4,182,241,207,157, 59,103,
-100,100,228,236,236,188,127,255,126, 57, 57, 57, 96, 11,201,222,222, 30, 24, 65, 64,113, 86, 86,214, 17,190, 4, 8,178, 15, 0,
-222, 3, 64,227, 2, 1, 64, 0,225,220, 9, 12,236, 7,204,189,188, 71,231,239, 85, 9,214,143, 63,254,179,220,254, 47,192,252,
-250,211, 11, 11,232, 54, 66, 38,108, 3, 50,162, 66,134, 94, 9,113,127,255,195,155,234,255,191,124,253,196,204,194,207,192,196,
- 85,214, 67, 96,167,146,135,183,206,134,169, 21, 12, 76,223, 24, 96,141,117, 30, 30,254,191,191,223, 51,252,255,250,240,216, 44,
- 19, 61, 57,124, 41, 23, 84, 70, 48, 2,139, 97,208,168, 13, 35,120, 44,158, 17, 54, 12,143,145,190,145, 65,122, 70,217,148,201,
-109,159, 63,127,100, 97,129,236, 34, 1,246,241, 65, 61,128, 47, 95,126,253,250, 3,170, 83,152, 89,152,186,218, 39, 96,106,244,
-244, 7,117, 48,119,110, 62,241, 23, 60, 10,252, 31,226, 4,232,156, 47,212,246,248,148, 16, 60,254, 77,105, 78,121,112,247, 1,
- 25, 49, 10, 76,223,239,193,235,103,140,141,141,205,204,204, 94,191,126,125,247,238, 93,208,194,196,127,255,214,174, 93, 75,176,
- 14,200,137,143,231, 20, 19,243,193, 54, 92,147, 3,174, 0, 56,113, 23,229,144, 12,137,166, 87, 26,117, 46,129, 32, 0,246, 6,
-172,193,189, 1, 49, 78, 78, 29, 43, 43,154,166,126,180,242, 29, 24, 98,104,179,193, 4,235, 0, 97, 85,149,207,239,223,179,176,
-179,253,252,249,227,239,111, 96,154,248,199, 43, 40,248,241,221, 59, 96,233,143,191,249, 15,223, 8, 6,153, 0, 56,121,238, 18,
-176, 2,128,143,254,227,218, 23,166, 38,249,254,205,219, 55,171, 86, 47,135,139,132, 69, 39,191,251, 69,218,186, 79,204, 49, 31,
- 12, 17, 70,130,253, 0,134,237,208,131, 28, 84, 54, 66,247,222,127,252,253,151,120, 55, 56, 57, 56, 93, 20,188,232,230,237,145,
- 26,155,172,167,175,187,105,227,230,227, 23,206,166,165,165, 61, 34,116, 72, 25,188, 26,232, 6, 3,130, 59, 28,129,181, 5,176,
-199,176,101,203, 22, 96,147, 8,216,111,128,172,133,187,122,245, 42,176,237, 15, 44,253,225,117,201, 8, 7,104,155,129,145, 1,
- 64, 0,225, 59, 10,226,159,174,203, 37, 6,151, 75,164,216,164,163, 99, 61,105,210,162,188,252, 72,105,121, 96,170,253,201,202,
-206,241,228,249, 39,123,223, 56, 98,244, 26, 26, 42, 37, 36,132, 45,152,183,142,225,223, 67, 6, 6,150, 63, 63,190, 75, 75,242,
-203,241,253, 33,216, 40, 6,150,184,255, 65,144,225, 63,108,255, 50, 3,164, 63, 64,132,165, 57,185, 85, 64,178,170, 50,143,153,
-153,233, 63,104,140, 5,216, 9,248,251,229, 11,168,248,103, 98, 98,156, 62, 29,223, 41,137,238,190,160,106, 96,219,134,163,255,
- 17,197, 63, 40,107, 37,167, 71, 18,180,247,227,151,143, 88,143,250, 33, 8,128,101, 16,176, 19,240,247,239,223, 79,159, 62, 49,
- 51, 51, 3, 25, 18, 18, 18,191,127,255, 70,206, 42,192, 58, 0,215,153, 16,144,166,186, 32, 89,203, 61,133, 32, 85, 42,137, 37,
- 62, 38, 16, 39,113, 88,150,236, 57, 0,180,146, 29,235, 90, 32,130,219,193, 20,204, 76,129,228,141,131, 7,127,124,251,254,239,
-239, 95, 77, 99, 99, 93, 43, 59, 30,105,188, 1,248,159,241,225,253,187, 64,154,141,129, 33, 41, 8, 58,165, 3, 20, 65,102, 99,
- 93, 42,124,235, 57, 48, 73, 8,134, 71,167, 60,124,252,226,196,161, 45, 64,145, 85, 75,231,154,219,249,240,138,219, 16, 19, 80,
- 97,160,125, 24,132, 79,122,248,203,136,125, 19,194,163, 64,137,237,207,126, 80,171,208,209, 7,131, 51,103,206,236, 61,113, 80,
- 88, 68,152,164, 67, 74, 32,213, 0, 49, 42,121,121,121,131,131,131,143, 31, 63, 14,108, 6,157, 58,117,106,244, 44, 32,204,209,
-127,180,210, 31,109, 62, 0, 32,128,168,127, 41,188,178,134,233,214,157,119, 2,188,185,196,164,101,223,125,254, 99,239, 29, 75,
-188, 94, 75, 83, 13, 75,211,170,244,244, 58, 6,134,151,130,188, 44,114, 66,255, 8,107,137, 14,167,220,205,109,237,147,128,100,
- 94, 94,238,239, 95,191,254,253, 7, 45,181,236,239,239, 39, 82,175, 87, 0,232,124,211,173,235,143, 48, 50, 50,165,101,197,208,
- 33, 82,129, 37, 32,176, 31,240,235,215, 47, 72,177, 8, 41, 16,135,235,249,160, 4, 79,152, 32, 30, 16,115,234, 39, 46,160, 97,
-111, 79,188,226,231,247,110,154,171,202,144,109,215,219, 95, 42, 60,226, 42, 46,161, 54,164,106,196,117,202, 27, 18, 96,250,195,
-200,254,157, 9,251,252,255,221,207,127,212,120,241, 20, 8,228, 44, 20, 54, 49, 49,161, 67, 34,177, 4,131,209,226, 30, 87, 29,
-128, 71, 22, 32,128, 70, 47,133, 31,146, 96,244, 86,247, 81, 48, 10, 70, 1,229, 0, 32,128, 70,111, 4, 27,146, 96,180,244, 31,
- 5,163, 96, 20, 80, 14, 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,136, 38,151,194,143,234, 29,213, 59, 56,245, 66, 78,131,
- 24, 13,171, 81,189, 35, 74, 47, 30, 0, 16, 64, 44,104,217,131, 24, 61, 88,179, 16, 37,122, 71, 1,169, 0, 87, 65, 54, 10, 72,
- 13, 37, 34, 67,242,209,163, 71, 79,159, 62,101,103,103, 23, 17, 17,145,147,147,163,155, 23,224,103,190, 14,230, 28,244,234,213,
-171,167, 79,159,226, 87, 35, 45, 45, 45,134,109,247, 9, 37,122, 71, 1,229, 0, 32,128,208,151,253, 18,220,121,143,231,208, 71,
- 52,189,152, 71, 19,211,244,204, 97,250, 23, 46,248, 21, 20, 20, 20,104,106,106,146,173, 61, 52, 52,212,197,197, 5,143, 94,170,
-212, 1,238,238,238, 64,114,231,206,157,116,208,251,245,235,215,181,107,215, 66, 46,133, 15, 14, 14, 54,196,125,159, 34,166,103,
- 9, 94, 10, 63, 99,198, 12,172,173, 13,252,161, 68, 76, 24, 2, 75,168,159, 63,127, 2,173,224,224,224,248,241,227, 7,176, 38,
- 56,125,250,180,190,190, 62,158,155,170,172,173,173, 9,250,235,249,243,231,192,194,157,160, 50, 96,233, 15, 57,238,155,152,176,
- 34,102, 47, 72, 88, 88, 24,254,116, 5, 1,242,242,242, 12,224,243,150,129,126,135,196, 29,158, 52, 9, 44,193,139,138,138,240,
- 88,250,254,253,123,115,115,115,172, 65, 13,212,171,165,165,133, 71,239,203,151, 47,107,107,107, 71,155, 59,148, 0, 60,151,194,
- 3, 4, 16,203,176,241, 36,253, 27,197, 27,103,120,224,146, 10,200,220, 65, 73,103, 8, 79,245,176,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,192,226,160,183,183, 87, 65, 65, 65, 80,144,240, 94,104, 96,201,187,125,251,118, 8,219,195,195, 99,199,142, 29, 88,217,
-120, 2, 25,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,195, 32, 20, 68, 35, 81,101, 6, 24,130, 34, 61,131,
- 48, 5, 61,101,182,178,216, 32, 18,227,208,230,137,111, 33,100, 43, 54, 33,141,139, 92,101, 91,194, 66,248,251,238,190, 37,115,
- 23, 21,128,156,243,160, 67,188,206,135, 17,253,120,174,166,230, 21, 39,134, 67, 76, 35, 62,110,147, 11, 15,113, 47,203, 2, 75,
-110,118, 58, 27, 65, 11,133,151,108,200,111,129,247, 79, 41,181, 80,248,211,149,199,251,203,158,145, 18, 10,143, 6,140,180, 2,
-191,135,194, 51, 49,214,182, 15,133,167, 78, 96,231,211, 9, 35, 84,240,254,173,134, 37,224,253,105, 50,238, 53, 20,190,148,162,
-148,226, 86, 7, 2, 32, 44,223, 60,190,156, 78,128,129,204,118,188, 9, 0, 33, 4, 57,104,127,179,239,175,124, 2,198, 31,178,
-142, 49,162, 1, 20,134,115,110,144,253,123,192,254,222,251, 94, 3,164,141, 56, 40,164,233,135,107,173,213, 90, 35, 87,178,151,
-173,192, 24, 67,129,241, 82, 80,159,127,246, 95, 89,165,230,194,239, 67,225,223, 2,176,119,245, 40, 12,131, 96, 52, 32,189,129,
- 91, 15,225,232, 1,218,205, 11,184,123, 12,239,147,123,120, 24, 71,221,116, 19,250,234, 71, 37,132,196,216, 31, 58,148,190, 65,
- 36, 1,135,160,239, 39,131,239,147, 2,208, 40,172,243,100, 16, 56,108,176,150,207,106, 0,182,221,207,255, 28,111,102, 22,172,
- 77,151,167, 47,111, 3, 29, 7,236,255,116, 47, 69,185, 82, 41, 60,198, 17, 23,191,194,165, 2, 75, 97, 5,140,135, 43,128, 82,
-225,250, 95,139, 2,239, 96,179, 20,254, 48,244,228,156, 33, 0,198, 24,228,128, 16,194,233,209, 10,143, 9,148, 32,198,216, 79,
- 78, 96,255,166,202, 36, 0,148, 3,106, 19,217,104,222, 2,239,183,218,231, 47,108,108,216,109,231,156, 82, 10, 74,192, 57,199,
- 28,236, 15, 49, 72, 41, 49,198, 6,217,223, 90, 75,135,113,149, 3,246, 48,207,115, 39, 4,120,239,181,214,123,111, 75, 41,231,
- 10,124,109, 10,199, 66, 8, 41, 37, 25,142,191,253, 95,178,255,180, 85, 10,127, 19, 64,212,172, 0, 48, 7, 46,136,156, 25,166,
- 86, 29,224,229,229, 69,106, 63,128,160, 11, 9, 26, 21,156,179,115,237, 20,247, 1, 28,185,130, 95,114, 66,106,243, 31,210,240,
- 7,150,218,192,182, 18, 48, 7,146, 81, 1, 64, 0, 68, 35,176, 14,192,229, 17,200,232, 63, 3,236, 82,120,248,217,241,144, 75,
-225, 33,130,120, 34,218,195,195, 3, 62,159,228,233,233, 9,239, 19,224, 25,249,193,108,133, 96, 94, 10, 15, 31, 11,194, 10,238,
-220,185, 3,190, 98, 26,196, 0,218,120,243,230, 77,200,225, 75,144, 75,225,129,229, 14,176,122, 88,191,126, 61,158,162, 28, 94,
-250, 3,123, 27,104,181, 17, 73,163, 58, 64,197, 16, 7,147,218, 21, 32, 3,252,254,253,219,200,200,232,192,129, 3, 38, 38, 38,
-192, 88,131, 12,178, 1,185,238,238,238,127,254,252, 33,166,244, 7,146,173,173,173,184,198,130,168, 14,128,205, 14, 96,135, 18,
- 88,167, 2,131, 5,232,114, 96, 28, 65, 74,127, 96,125, 0,116,246,104,209, 79, 16, 0, 4, 16, 53, 43, 0,170, 79, 2,147, 81,
- 7, 0,155,147, 36,245, 3, 32, 89,107,233,210,165,104,226,219,182,109, 3, 10, 18,105,200,137,251, 90, 22,138,215,200, 27,249,
-129, 36, 86, 96,242, 37,251, 52, 55, 72,233, 79, 82, 45, 2,105,254,163, 93, 10, 79, 94, 39, 0,110, 2,158, 75,225,225, 77,126,
- 96,153, 2,108,204,170,170,170, 2, 27,209,236,236,236,252,252,252, 45, 45, 45, 4,251, 1,200, 99,253,184,230, 3,200,168,218,
-129, 5, 49, 92, 13,230,137, 88,192, 6, 62, 47, 47, 47,176,212, 59,118,236, 24,176,241, 11,185,104, 26,126, 41, 60,176,160,252,
- 73,232, 82,120,204, 97, 31,120, 91, 30, 24,221,175, 72,188,125, 19, 24,191,144, 21, 65,100, 52, 23,136, 63,217, 16, 24, 17,165,
-165,165,144, 28, 7,180,238,246,237,219, 12,160, 99,122, 13,129,245, 31, 49,235,112, 40, 41,235, 33,149, 7, 25, 6, 2,227, 17,
- 24, 59,150,150,150,240,131,231,128,174, 5,246, 93, 70, 11,119, 6,164, 59,129,145,135,128,144, 83, 59, 64, 0, 13,246, 73, 96,
-250,212, 1, 64,245,144,126, 43,188, 35, 76,100,233, 15,108,254, 83,183,207, 68,135,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,170,143,149, 65,122, 0,184, 46,133,135, 87,186,152,235,166,129,101, 10,176, 14,248,241,227, 7,176,150, 2,214, 85,144,
-235, 54,225,151,194, 3, 25,248, 75,127, 72,165,142, 57, 22,132, 60, 51, 76, 42, 32, 91, 35,241,115, 0,192,250,216,219,219, 27,
-152,131,184,184,184, 28, 28, 28,128, 33, 0,140, 50, 96, 13,189, 96,193, 2, 38, 38,218,110, 26, 5,150,245,240,225, 35, 72, 6,
- 36,190, 58, 1, 54,104, 30, 61,122, 20, 30, 14, 58, 24,120,229,202,149,160,171,199, 70, 1, 90, 63, 24,199,189,240, 0, 1, 52,
-216,119, 2,147, 49, 19, 0, 4,196, 55,222,225,133, 5,188,223, 74,124,233, 15, 1, 70,134, 6,123,247,237, 95,182,143, 11, 82,
- 31, 0,123, 3, 36, 57, 21, 88, 12,237, 1, 3, 72,105, 78,204,210, 64,248,253, 54,144,139,189, 72, 45,253, 33,205,127,204, 75,
-225,215,172, 89, 3,145, 34, 3, 16,188, 20, 30, 88,136, 64, 24,192,252,121,225, 2,232,114,243, 21, 43, 86,192, 5,105,122, 41,
- 60,124,205, 15, 90,173,137,191,203, 5,108,254, 3, 75,121,160, 11,223,188,121, 3, 36,191,129,193,151, 47, 95, 62,125,250, 4,
- 44, 95,128,189, 1, 96, 15,224, 47,238, 59,174,145, 11,107,180,121,123,180,117,253,248,107, 17,100,103, 19,151, 54, 40, 2, 11,
- 23, 46, 4,150,251,192,210,255,218,181,107, 7, 14, 28, 0,150,254,117,117,117,192,186,185,178,178,146,152, 10,192, 22, 27, 32,
-169, 14, 0,102, 67, 82, 75,127,200, 32, 36,164,244, 7, 2, 32,195,158,148,179,187, 71, 8, 0,246, 0,224, 51, 1,200, 0, 32,
-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, 47, 23, 32,197, 4,113, 43, 50, 65, 69, 45,252, 94,
-120, 82, 75,127, 72,243, 31,107, 99,159,188, 78, 0,164,218,200,201,201,193, 25, 80,193,193,200,151,194,199,196,128,110, 77, 64,
-187, 20, 62, 54, 22,231,189, 17, 20,206, 1, 48,144,117, 41,188,176,176,240,219,183,111,129,237,253,215,175, 95, 3,123, 0,240,
- 75,225,191,126,253, 10,172, 9,128,165, 63,176, 26, 64, 27,220, 71, 6,144, 82, 30, 50, 10,132,118, 19, 25, 30, 93,104,165, 63,
-100, 19, 0, 50,151,140,134, 63,241,227, 63, 64,112,251,246,109, 96,116, 0, 61,104,105,105, 9, 36,129,129, 6, 44, 79, 55,109,
-218,196,204,204, 76, 76, 5, 64, 73, 43, 30,217, 4,146,116, 25,131, 1,144,113,238,220, 57,160,155,109,108,108,128, 73, 11,216,
-203, 68, 94, 48, 61, 98, 1,100, 21, 16,218, 36, 48,242, 42, 32,128, 0,236, 93, 49, 14,128, 32, 12,252, 0, 79, 32,225, 25,204,
- 36,254,136,111,242, 4, 38,190,193,226,233, 37, 77, 21,163,213,193, 56,216,169, 49, 12,166,150, 94,165, 71,238,187, 67,224, 55,
-171,191,198,128, 91,189,255,161,191, 96,128, 45,113, 15,125, 75,226,142,186,240,100, 4, 93,190,191,136,194,143, 61, 20,137,116,
- 39,156,188,241,230, 23,225, 4,149, 17,213, 95, 14,148, 70,195,119, 12, 33, 80,255, 29, 0, 64, 46,144,126,168, 37,197,247, 88,
-183,189, 7, 96,159, 1,232, 36, 68, 76, 0,171, 8,172, 62, 49, 59,143,149,247,190,214, 74,229,181,222, 59, 17, 72, 68,225, 57,
- 19, 54,146,121,166,213,164,127,183,156,228, 72,185,199, 98,189,137, 30,211, 73,141, 70,198,103,206, 25,237,127, 74, 9,120,224,
-156,107,173, 25, 1, 64, 42, 56, 27,169,103, 35,129,187,189, 63,247, 14, 34, 86, 74,129,131,210, 31, 99, 68,220,240, 43,243,207,
-129, 47,109, 22, 64, 44,152,249,141,108,179,208, 82, 39,114,251, 5,185, 89, 68,187,210, 31,152,236, 40, 95, 81, 67,188,226,199,
- 79, 94,224,146,226,228,228, 34,168, 29,235,192, 52,145, 0, 88,160, 0, 75,252,189,123,247,194,239,133,135, 47, 6, 37,166, 14,
-195,122, 41, 60,100,199, 13,193, 46, 8,102,165,158,155,155,139,167,244,135, 0, 33, 33, 33,200, 16, 63,176, 53,141,220,240,175,
-169,169,193,159,228, 40,220, 7,128, 28, 26,104, 91, 37, 8,214,247,246,246,246,219,182,109,251,243,231,207,135, 15,144, 75,225,
- 65, 46, 1,118, 8,128, 92, 32,155,248,134, 60,208, 94,228,165,159,200,211, 3,248, 75,127, 6,114,231,120, 40,175, 3, 42, 42,
- 42, 14, 30, 60, 8,140,166,246,246,118, 96,139, 1,216, 1,130,108,137, 32, 56,196, 71, 70, 43, 30, 89, 47,169, 0, 88, 51, 61,
-125,250, 20,121, 31,192,197,139, 23,129, 93, 55, 96,171,130,200,117,171, 35, 1,160, 77, 2, 35, 3,128, 0, 98,193, 95,136,227,
-234,219,210, 26,144, 81,250,211, 57,159,180,180,180,224,223,223, 72,176,178,164,100, 72, 23, 82,104, 66,150,225, 3, 25,144,189,
- 96,240,123,225,241,148,107,144,139,221,129,133, 23,242, 28, 0,164,121, 91, 86, 86,134,191,180,197,170,151,212, 33, 35, 34, 27,
-254,212,234,146, 34,135, 3,230,165,240,248,235, 0, 96,176,120,123,123, 3, 91,178,108,108,108, 63,127,254, 4,214, 1,192, 16,
- 22, 16, 16, 0, 22, 88,120, 14,234, 64,206, 71,240,233, 95,160,189, 64,245,240,188,131, 43,151, 65,146, 4,218,182, 97, 82,231,
-126, 49,199,124, 72, 26, 5,130,212, 1,240,205, 95, 89, 89, 89, 16, 6,176, 39,132, 71,203,179,103,207,144,119,123,173, 88,177,
-130,224, 9, 63,184,244,146, 4, 46,128, 1,154,224, 19, 48, 24, 45,247, 25,144,238, 4, 70, 46,250,145, 87, 1, 1, 4, 16, 11,
- 21,203,119, 76,189,244,169, 45,232, 95,250, 3,129, 40, 24,144,173, 93, 9, 12,168,229, 24,248,248, 15,114,217,135,245,178, 79,
-178,143,124,160, 80, 47,214,222, 0,145,128,236, 57, 0,180, 36,129,181,203, 69, 48,217, 0,187,149,119,239,222,221,191,127,255,
-247,239,223,255,254,253,107, 96, 96, 16, 22, 22, 70, 48,238, 78,156, 56, 1,239, 70,192, 69,144,217,184, 82, 5,188,113, 0,169,
- 57,128, 57,136, 96,101, 3, 7, 97,148,221,159, 76,118, 14,146,150,150, 14, 12, 12,196,175,166,185,185,153,234,122, 71, 1, 73,
-117, 0,102,233, 15, 4, 0, 1,196, 66,173, 50,116,244,180,166, 1, 7,104, 81, 64,252,145,176, 67,200, 83, 3, 98,148, 50, 24,
- 16,175, 30,216,191, 33,242,156, 31, 60,141, 3, 50,170, 91,106,213,208,164, 2, 49, 49, 49,178,195,150, 18,189,163,128,248, 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, 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,240, 82,248,209, 11,184, 71,245, 14, 81,189,155,253,166, 16,175,215,119, 83,
- 14,181,244,110,244, 37, 65,175,255,102, 20,189, 62, 54,210, 12,224,189, 11,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,187,119,239, 38,232,134, 53,107,214, 16, 31, 83,144, 93,208, 88,239, 16,198, 7, 66,223,129,169,255,160,131,152, 86,
- 11,145,160,209,184,159, 65, 41, 30,156,188, 22, 48,156, 45, 34, 57,124, 67,222, 32,236, 93, 35,130, 71, 33,176,244,252,250,245,
-235,174, 93,187,128,201, 56,148, 85, 88, 66, 86,244,199,215,239,156,223,254, 88,151,164,218,249,134,111,153, 59, 99,243,222,189,
-110,110,110,116, 72, 18,127,255,254, 5,186, 65, 95, 95, 95, 77, 77,237,220,185,115, 63,126,252, 80, 85, 85,197, 60, 28, 30, 43,
-248,243,231,207,197, 51,231,101,146, 13,203,204,180, 79,236,234, 89,123,217, 65, 85,199,137, 72,189,163,128, 12, 0, 16, 64, 68,
- 85, 0,196, 28,233, 67,149, 11,184, 85,207,221, 21,124,251,133,145,225,255,175,191,204,191,223,125,121,242,230,227,131, 41,103,
-121, 28,205, 69,180, 53,240,232, 58,187, 63, 93, 3,186, 74,155,121,253,174,127,135, 79,255, 79,139, 96, 0,138, 20,181,146, 86,
-148,147,116, 1, 55,174,154,131,214, 87,118,128,202,162, 80,208, 22, 33, 33, 33, 44, 71, 6,189,123,231, 2, 14,106, 65,250, 44,
- 9,135,149,254,255,193,165,191,221,145, 35, 71,240, 84, 0,122,250,187,158, 61, 91,187,104, 62,148,123,235,198, 77, 32,153,146,
-184,238,227,151,156,207, 31,240, 85,243, 43, 87,174,196,239, 12,226, 55,253, 99,166,228,140,244,244, 25,196, 85, 30,200,215,208,
-147, 0,148,226, 17,135,178,145, 81, 1,192,124,135,231,228, 81, 8,184,123,247,238,129, 85,171,154, 92,194, 12,162,179,216,196,
- 5, 25, 88,152, 24, 24,152, 24,254,253,103,248,199,250,239,231,127,175,248,180, 71,147, 58,142, 29, 59,102,101,101, 69,235,194,
-148,137,137,201,192,192,224,192,129, 3,192, 58,192,204,204,236,197,139, 23, 23, 47, 94,212,211,211, 35,230,152, 25,160,103,157,
-157, 92,219,251, 54,149, 39, 92,182,240,200,180, 48,223, 83, 50,249,137,154,105, 28, 86,189,144,216,196, 95, 61, 0,101, 73,174,
-236,135, 17, 64,187, 16, 24,209,247,130,173,254, 7, 8, 32, 22, 98, 51,140,203,170,153,161,239,137,175, 3,200,184,128, 91,230,
-238, 75, 35, 78, 65, 54, 73,254,191, 12,255, 57, 63,112,189,120,253,250,197,231,143,138,236, 60, 55,118, 30, 1, 70,175, 40,238,
- 58, 0, 88,214,223,184,203,244,255, 63,199, 95, 70,246, 0,215,223,129,110,223, 25, 24,254,193,218, 77, 36,230, 86, 18,203,110,
-248,145,141,144,131,168, 76, 42,238,117,158, 5,214, 36, 97, 4,171, 1,130,117, 42,193,253,159,144, 91,144, 48,132,137, 61, 86,
-229,246, 94,190,158, 85,145, 16,118,113,232,114, 53,151, 79,100,148,254,125,125,125,192,220, 94,220, 6,189,248, 9, 79, 14, 7,
-150,254, 22,230,107, 45,204, 25, 26, 27, 17,130, 81, 81, 12,224, 59,220,166, 44, 95,133,175, 14, 0, 22, 10,144,195,239,128,133,
- 96,120,120, 56,228,212, 35,130, 5, 34,214,182, 63,228,192, 12,184, 59, 51, 50,136, 45,253,201, 4,198,125, 12,176,139,218, 65,
- 21,128, 81, 47,195,185, 98, 26, 89,181,111,223,190,233,129,105,138, 78,174, 12,204, 63, 25, 89,153, 24, 89,152, 24,153, 89,255,
-255,103,252,247,245,207,255,191,127,129, 77,170,212,248,172,172,186,252,187,226,226, 36,109,106, 35, 3, 0,243,130,164,164, 36,
- 48,156, 15, 30, 60,120,227,198, 13, 87, 87, 87, 75, 75,203,147, 39, 79,106,107,107, 19,212,123,100,239,242, 32,131,111,103, 63,
- 51, 71,213,127,177, 49,156,152, 83, 16,222, 83,254,161,188,103,169,146, 97, 20,158,194, 29, 94,188, 0,163, 24, 77,132,242, 43,
- 55,134, 55, 0, 8, 32, 22, 34, 75,127, 16,119,181, 32, 49,117, 0,121, 23,112, 43,220,120,166,206,198,205,246,255, 15,103, 79,
-233,159,111,191, 56,138, 91,249,217, 56,126,176,126,255,250,227, 59, 39, 3,227,243,131, 39,216,100, 36,249,249,249,177,234,189,
-113,151, 97,214, 10, 96,137,255, 13,140, 24,108, 77,153, 2,221, 24, 97,117, 0, 3,176, 55, 48,107, 5, 81, 97, 65,234, 5,220,
-144,210, 31, 82,244, 67, 74,127,120,112,117, 18, 81, 7,220,237,184,139, 75, 74,185, 2, 95, 22, 5,182,253,145, 47, 51, 65,149,
- 74, 7, 75,225, 59,167,236,205,101,201,154, 41,254,255, 25,254, 91, 10,213, 88,187,104, 31,217,125,181,119,117, 20,195,234,255,
-245, 69,211,164,212,137,109, 74,127,121,152, 46,205,193,240,237,237, 85, 96,227,139, 87, 76, 15, 82,250, 79,159, 62, 29,171, 98,
- 94,129, 43,192,210, 31,194, 62,121,146, 1,124,103, 31, 8,192,119,248, 71,134, 77,153, 49,167,154,233,159, 44,158, 65, 30, 10,
- 19, 58, 48,102, 33,165, 63, 82,125,144, 62, 99, 6,246,100,201, 20,246, 30,222,124, 96, 4,227,127,161,168,178,140,144, 81, 25,
- 16,229,141,218,231, 97, 10,127, 15, 25,176, 1,130,127,255, 18, 10, 10, 10, 32,226, 64, 6,176, 38, 96, 82, 77,134, 26, 12, 86,
-131,166,151, 37, 28,221, 94,228,123, 24, 65,178,184,237,253,241,227,135,132,188, 2,195,191, 95, 76,236, 12,140, 44,204,127, 62,
-127,252,113,239,254,235, 39, 79,101,172, 28, 24,217, 4, 24,127,255, 98, 96,102,234,204, 44,113,157,213, 80, 84, 84, 68, 73, 48,
-226,219, 86, 10,110,140,127,255,254, 93, 72, 72, 8,216, 62, 0,134,246,253,251,247, 23, 44, 88,160,169,169,249,225,195, 7,130,
- 29, 44,160, 94,121,166,147,146,114, 30, 31, 14, 94,254,248,158,125,241,150, 63,219, 78, 44,201, 11,229,100,249, 6,140, 53, 44,
- 21,192,232,184, 16, 65,128, 25, 89,104,125, 2,128, 0, 98,193, 95,244, 3,131,152,209, 21,118,134,226,158, 48,134, 80,194,205,
- 37, 72,185,255,237,219, 82, 96,156,254,248, 49, 15, 88, 90, 17,115, 1,183,216,243,119, 98,226, 28, 28,245, 89,127,223,188,251,
-243,236, 13, 11, 27, 43, 23, 35, 51, 55, 16, 49,179, 8,177,114,188,255,252,225,249,190, 99,252,129,158, 88,245,162,149,239,135,
- 79,255, 3, 87, 0, 12,125,213,140,255, 25, 25, 24,255, 19,219, 21, 32,245, 2,110,228,210, 31, 29,128,235, 0,146,166, 16, 4,
-211,160, 97,254,126,214, 76, 98,156, 74,118, 39,166,122,138, 31,164,232,183,210, 6,221, 37, 0, 36,143, 93, 5, 85, 3,141,125,
-217, 51,103, 18,219, 89, 6, 22, 65,233,133, 87, 32,249,214,198,198, 6, 88, 1,224, 42,253,129,192,206,230, 52,156,109,106,202,
- 48,123, 54,195,254,253, 12,170,170, 64,167, 34,122, 12, 6,186,215, 47, 93,148,197, 53,166, 76,252,112, 16,158,158, 22,114,233,
-207, 0,154, 6,192, 25,206,192,110, 1,164, 12,199, 90,203,254,131,149, 59,192,198, 14, 48, 28, 54, 31, 66,153,112,155, 62, 99,
- 38,196, 87, 10, 10, 10,192,236, 51,113,226, 68,136, 56,144, 1,172, 0,118,238,220, 9, 63,183,146, 1, 67, 47,164, 59, 2,212,
-149,154,154,138,105,239, 31, 88, 56,204,154, 61, 27,104,239,150,195, 79,209, 74, 67, 22, 94, 94, 6, 86,230,191,223, 62, 92,223,
-182,119,233,170, 53,211,158,129, 44, 58,213,200,167,106,231,245,243,209,227,171, 23,207, 94,190,127,235,227,139, 23, 87,174, 0,
- 35, 78,130,140,210, 4,243,216, 53,204, 18,252,217,179,103,181,181,181, 61, 61, 61,191,126,253, 2,118,221,120,121,121,191,126,
-253,122,234,212, 41,252,201, 18,162,247,195,147,163,141,243, 31,205, 45,144,122,247,149,141,141,133, 73, 70,144,227,197,155, 95,
-233, 93,127,244, 77,140,229,112,247,234, 32,213, 0, 60,162, 49, 25,163, 0,173,244, 71,174, 21, 0, 2,136, 9, 87,158,129,156,
-123,142, 16,221, 67,212, 57, 83,144, 27, 96,190,125, 91, 6, 41,253,225,163,210,248,111,134, 97, 57,112,150,255,221,231,127,108,
- 44,191,206, 94,253,121,253,222,143, 93,135, 25,190,255,100,251,255,159,139,129,153,133,129,241,231,191, 63,239,126,254,152,182,
-123, 11, 46,237,125,213,160,102, 62, 28,128,217,144,252,251,255,230,157,255, 69,173, 36, 52, 19, 32, 23,112, 51, 16,113, 57, 23,
- 80, 22,249, 16,127, 68,243, 31,169, 14,160,195, 21, 78,164,130,187,231,191, 0, 67, 6, 94,250, 3, 65, 80, 61,107,207,170, 72,
- 27, 87, 96,247,252, 63, 88,150, 48, 88,182,108, 89,113, 27, 35,143,168, 46, 48,100, 61, 2, 51,143, 28, 57,130, 71,241, 63,166,
-199,210, 82, 40,103,159,233,235,131, 74,255,184, 56,148,241, 34, 89,217,167,120,134,128,128, 32, 60, 60,156, 25, 21,192, 69,240,
-187, 22, 61, 37, 19, 89,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,228, 64,128,112,177,218, 11,204, 47, 76, 92,236,191, 95, 60,156, 89, 83,
-179,224,235,135,247,246, 22, 16,241,185, 75, 22, 52,148,164,168, 21, 69, 54, 93,222,183,234,253,125, 87, 63, 63, 34, 59,184,192,
-226, 30,152, 11,206,159, 63,143, 84,101,206,192, 58,202, 7, 9,144,203,151, 47, 31, 60,120, 48, 50, 50,114,202,148, 41, 95,190,
-124,129, 28,160, 13,236,151,240,240,240,132,133,133, 89, 91, 91,227, 42,250, 65,122,143,175,189,181,179,168,168,178,119,115,189,
-212,245,167, 44, 31,191, 48,255, 99,100,120,251,229,215,127, 97,229,194,170, 86,159,128, 24,156, 85, 53,176, 26, 7,103,216,153,
- 96,128,149, 49, 10,112,149,254, 64, 0, 16, 64, 44, 88,139,126, 50, 58,134,104, 34,144,210, 31,185, 91,128,231, 2,110,150,183,
- 31,222,253,103,101,123,251,142, 99,195, 62, 70, 22, 38,134, 31,191,254,127,254,202,248,231, 15, 43,176,245,247,255,223,143,191,
-127, 62,255,249,197,240, 15,231,152, 47,100,178,183,175, 26, 75,234, 2, 79, 14,147,236, 29, 98, 46,224, 70,107,254,159,233, 80,
-194,172, 12,136,185,194, 91,185, 66, 25,207, 88, 16,213, 65,215,140, 98, 11,193, 26,120,233, 15, 1, 16, 17, 75,161,171, 64, 89,
-130, 14, 94,186,116,233,161, 67,135,222,190,117, 22, 22,222,203, 35,162, 3, 76, 45, 76, 76, 76,120,230,217, 30, 61, 98, 64,174,
- 7,129,137,203,204, 12,196,184,125,155, 97,234, 84,168,224,187,119, 12, 44, 44, 56, 71, 23, 9, 14,247,147,119,242, 59, 60, 65,
-226,247,114,126,126, 62,188, 21,143, 92,148,227, 55, 92, 81, 81, 17, 62,250, 15, 7,144, 78, 0, 80, 10,209, 9, 64, 5,201,210,
-106,183,174, 94,123, 42, 40, 8, 12,210,188,188,188, 73,147, 38, 17,111,175,237, 79,129,255,255,190,164,180, 85,235,134,132,204,
-108,107,131,223,223, 50,243,246, 21,104,207,248,240,225,221,187,119, 3,173, 6,103,240,111, 4, 75,127, 72,151, 14, 24, 56,192,
- 86,182,129,129, 1,176, 38, 0,106,204,204,204,124,252, 25, 75, 21,251,228,201, 19,127,127,127,160,215,182,109,219, 6,185, 50,
-147, 1,188,164,135, 1,124,143, 16,158,121, 90,160,248,189,155, 23, 26,202,146,132, 85, 87,159, 95, 29,127,233, 49,227,163,151,
- 44, 12,255,153,126,254,250,253,238,191,112,118,114, 22,121, 75,128, 40,185,215,100, 68, 1,128, 0,162,206, 70,176,153, 48, 0,
-107, 20,163, 71, 24, 80, 28,174, 6, 83,251,181, 39,143, 78,191,121,118,245,254,189,151,247, 31,124,122,240,228,243,227,167,127,
-190,125,255,253,251,207,231,191,191,190,253,253,243,243, 63,176, 0,248,255,159, 80,140,194,215,252,220,184, 11, 98, 3, 27,254,
-224,182, 63, 83,111, 53, 57,183,158, 17,211, 74, 2, 22,244,240,178, 30,194, 70, 22, 65,174, 18, 8,116,155,222,207,130,140,252,
- 64, 16,173,163, 28,220,216, 7, 7,212, 43,208,221, 94,235, 26,127,151, 21,212, 3, 25,192,110, 1, 49,109,255, 64,187, 67,192,
- 94,157,224,137,189,253,213,160,220,107,103,103,135,103,240, 7, 52, 18, 34, 35,171,172,204, 0, 71, 55,110, 48, 64, 14,202, 84,
- 85,253, 15, 44, 30,133,132, 64, 72, 69,133,193,213,157, 64,249, 14,111,245, 35, 55,135,225, 55,193, 82,146,104,241,168, 1,150,
-152,104,133, 56,180,211,217,215,135,127,125,170,139,139, 11,252, 42,118,100, 0, 20, 68,233, 4,160,130, 67,215, 30, 37, 37,103,
-159, 93,182,172,178,178, 18,179,214,129,216,187,119,239, 94,172,165,155,157,150,220,188,185, 83,141,163,162,218,219,219,177, 90,
- 13,172, 60,156,157,157,137, 44, 76,129,113, 10,180, 5, 24, 56, 64,245,144,218, 29,210,252, 7,214, 4, 88,213,255,254,253,123,
-203,150, 45,215,174, 93,187,125,251,246,215,175, 95,129, 92,160,224,175, 95,191, 2, 2, 2, 8,182, 41,127,254,252,121,118,109,
-212,143, 91,147,119, 30,188,123,255, 57,243,167,175, 76,127,255, 51, 60,253,202,153, 93, 84, 77, 80, 47,176, 22,135,172,235, 5,
-146,144, 26, 61, 29, 12,128,186, 32,140,209, 34, 30, 79,243, 31, 8, 0, 2,136, 9, 51, 75, 32,119,120,145, 7, 52,136,177, 6,
- 50,102,202,197,133,152,159,130,172, 86,196,127, 1, 55, 43, 27, 51, 48,202,159,124,253,240,232,227,187,215,159,222,127,252,241,
-227,253,175,239,175,127,126,127,254,227,219,211, 31, 95,222,253,254,249,254,223,239, 95,168, 3,184, 40,109, 31, 83,212,242, 20,
- 54, 37,144, 18,206,243, 31,216, 51,102, 96, 35,198,229,100, 95,192,141,101,240,135,232,210, 31,255,100, 47,141,192,209, 61, 87,
- 33, 12, 13, 49,247,160,122, 86, 56,234, 93, 21,197,200,192,136, 63,179,249,219, 28,140, 47, 2,149,254,192, 20,178,241,168, 3,
- 3,248,184,124,130, 54,170,105,168, 35, 85, 33, 12, 83,166, 48,220,185, 3,234, 7, 52, 54,254,135, 3, 65, 65, 65,252, 61,128,
-191, 96, 0,153, 3,248, 11, 3,164, 78, 9,144, 10, 32, 77,117,180,118, 55,176, 79, 0,244, 62,174, 86, 60,188, 5,138,181,230,
-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,218, 61,123,246, 96,222,162, 53,247,233,173,231,218, 90,210,210,210,255,254,253,195, 90,121, 96, 21,196, 21,209,
-240, 5, 54,192, 38, 63, 3,108,243, 4,214,139,228, 32,158,149,149,149,125,244,232, 17,176,147,161,162,162,194,194,194, 2,169,
-179, 45, 44, 44,136,105,170, 43,107, 24,206,218, 37,112,105, 91,189,173,165, 38, 55, 7, 19, 55,215, 95, 78,246,159,158,254, 68,
-141, 57, 3,203, 43,120,253, 52, 58, 4, 68, 6, 0, 8, 32, 38, 92, 45, 35,120, 53,240,127,119, 40, 49, 61,101, 56,128, 92,149,
- 7, 41,247, 33, 36,193, 11,184, 53,173,172,254,240,112,189,255,255,247,218,215,247, 87, 62,190,189,250,233,205,213, 79,239,174,
-125,125,119,231,219,251,183, 63,127,124,249,243,231,217,183,175,120,110,224, 11,116, 99,236,171,102, 6,162,255, 12,204,255, 25,
-153,210, 34, 24, 83, 35,216,146,195, 69,149,149,197,255, 49,176, 50, 48, 16,238, 12,146,113, 1, 55, 92, 49,164,172,199, 44,241,
- 87,175, 94, 77,204, 13,174,192,192, 1,230,231,138,179, 21,144,250, 0,210, 27,160, 29, 40, 9, 91,126,252, 93,235,177,171,208,
- 69, 53,192,230,191,133, 96, 13,132,221,154,189,101, 6,238, 73, 96, 96,161,208, 95,195,144, 80,228, 44,112, 98,143, 99,151, 61,
-147, 55,195,129, 3, 7,136, 76, 18,242,242,242,112,182,147, 19,131,128, 0,176,131,197,224,137, 58,163,111, 98,106,138,167, 7,
-128,217,246,135,136, 16,211, 3, 64, 27,196,135, 3, 96,147,145, 24,199, 3, 91,250,104, 55,106, 1, 11,113, 98,182,167,193,235,
- 54,100,238, 63,220,237, 24, 80,147,153,145,241,223,183,159,172, 18,242,233, 45, 45, 9,220, 2, 2, 7,142, 67,135,134, 98, 18,
- 26,122,230,220,238, 91, 94,167,235, 20, 38,168,184,123,211, 38,204, 6, 74, 64, 70,186,182,142, 14,100,130, 26, 94, 65,194,107,
- 80,100, 46,214, 1, 31, 96,225, 14,153,227,133, 12,250,195,203,122, 96,147, 31, 50,209, 10,172, 9,112, 53,255,129,178,172,172,
-172,192,198,254,199,143, 31,129, 53, 19, 39, 39,167,168,168,168,128,128, 0,254, 91, 36,225,122,217,217,217,131, 51, 38, 45, 56,
-109,242,224,241, 39,113,126,102, 75,117, 70, 61,197,255,220,124,124,163,165, 51,173,155,255, 64, 0, 16, 64, 44,120,170, 86,148,
-161, 52,226,122, 0,200, 23,112, 11, 9,173,102, 32,238, 2,238, 47,250, 42,223,110,221,250,246,231,231,167,175,223,238,254,254,
-205,250, 15, 52,132,244,241,247,143,127,224,220,179,237,229,253,175,127,126,227, 29,147, 97, 44,106, 69, 36,110,240,100,192,191,
-191, 12, 63,175,223,249, 60,111,229, 39, 34, 75,127, 6, 18, 47,224, 6,185,167, 51, 12,107,176, 64, 42, 3,130, 19, 0,192,226,
- 30, 94, 53,174, 6, 3, 6,200,141,240,180,220,194,165,234,252,137, 97,213,127, 72, 39, 0, 50, 19, 80, 86, 80,127,236,170,118,
-207,170,168,170,169,222,248, 29, 12,108,251,195,118,159, 29, 96, 0, 79,239,255,255,191, 26,156, 66,254,175, 94,141,111,225,105,
- 72, 80,240,238,157,187, 24,192, 11,255, 29, 29,161,105, 10, 24,183, 91,182, 48,248,248,128,216,230,150, 22,122,218, 58,248,123,
- 0,152,108, 34, 91,136,240,148,201,196,196,132, 92,254, 2,155,140,196,236, 2,131, 12,154,195,103, 2, 32,189, 1,252,205,127,
- 6,164, 85, 15,200,235,121,240, 47,133,128,100,183, 63,159, 63,179,138, 8, 49,115,241,104, 7,135, 52,185,185, 86, 65,150,114,
- 26, 26,253,253,254,131, 85, 88, 92,215,194, 65, 65, 70,113,210,245,227, 58, 58, 58,207, 79,163,220, 72,154, 1, 74,186,160,144,
-205, 2,150,221,224,213,162,127,144,194, 10,216, 40, 7,138,192, 23,152,122,163,150, 5,192,146, 29, 50,212, 3,105, 71,163, 13,
-245, 0,217,120, 74,127,136,179,129,197, 61,176,189,127,227,198,141,115,231,206, 1,227,136,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, 22,207,114,160, 81,128, 7, 0, 4, 16, 11, 49,249, 7, 20,148, 68,172, 1,165,228, 2,110, 41, 49,241,203, 63, 30,
-124,100,250,247,226,199, 23,134,223,191,255, 2, 99,157,129,225,250,151, 15, 79,191,125,130, 92,192,141,183, 2,248, 15,108,245,
-207, 90,241, 31, 62, 7,160,161,252,135,153,225, 43, 73,165, 63, 3,233, 23,112,131,215,140, 2, 59,170,103,224,229,190, 73,197,
- 61, 72,233,111, 98, 98, 66,176,249,143,220, 49, 66,102,131,234, 0,188, 0,188,176,234,189,171,235, 44, 6,140,185, 10,136, 84,
-122, 58,190,139,221,219,178,183, 84, 79,245, 61,190,234,191,165,208, 85,200, 62,128, 19,239, 91, 24, 25, 24, 91,179, 55, 51, 48,
- 60,195, 99, 47,176,244, 7,102,185,192,192,192,217,179, 63, 65,178, 36, 35,108, 61, 10,100,115, 50, 4,108, 62,108,137,169, 55,
- 59, 47,119,234,164,201,192,230, 63,178,123,189,188, 24,234,234, 24,118,238,182,112,194,187, 74, 24, 50,158, 16, 18, 18,178,114,
-229, 74,172,155,194,136,172, 9, 32, 27,193,144,199,148,103,128, 4,211,241,172, 7,133,199, 8,176,213, 15,169, 0,128,189, 1,
- 98,154,255,200,133, 20,241,138,129, 77,230, 23, 15, 31, 40, 42,171,254,251,243,147,241,207, 95, 22, 94, 62, 94, 35, 19, 30, 67,
-211,127, 95,255,252,253,246,243,255,159,191, 12,127,255,149, 79,239, 9,143, 10,199,108, 92,255, 89, 33,136,199,100, 52, 89,255,
-205,232, 10,128, 69, 60,176,244,135,100, 1,248, 61,192,200,117, 0,126, 15,170,171,171, 79,158, 60,249,245,235,215,174,174,174,
-103,206,156, 1,150,254, 64, 45, 4,239, 76,133,232,181, 48, 55,207, 72,206,184,255,228,126,108,114,198,201,221, 11,159,127,126,
-103, 98,239, 42, 46,163,134,214, 81,192,218,123,128, 23, 80,152,251,191, 70, 55,130, 17, 3, 0, 2,136,133,200,204, 67,100,219,
- 31,185, 68, 35,233, 2,238,159,246,198,106, 12,198, 79,103, 46, 96,224,228,120,255,255,207,175, 63,127,254,253,255, 39,204,207,
-255,228,235, 71,130,123, 98,209, 22,122,194,230, 0,254,146, 84,250, 51,144,126,138, 3,100,223, 0,164,172,135,140, 80, 33,151,
-254, 4,141,194,122, 69, 45,241, 0,121,183, 29, 82, 32, 19,238, 62, 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, 65, 84,192, 6, 62,208, 4, 17, 49, 96, 63, 96, 29, 60,243,127,254,172,102,104,172, 35, 46,227,202,242, 31, 95,
- 41,137,171, 7, 0,159, 0, 32,114, 21, 16,176,140, 0,214, 1,240,229, 49,240,126, 0,241, 51, 1,144, 98,136, 96,243,159,108,
-224,228,228,148,189,106, 86,211,231, 15, 6,246, 54, 76,226,130, 32,235,126,255, 7, 29,231,192,192,202,200,204,194,200,198, 60,
-123, 70, 31,159,179,137,178,178, 50,213,247, 64, 65,134,122,166, 79,159, 14, 36,245,245,245, 73,210,123,247,238,221,189,123,247,
- 2, 99,193,214,214, 22, 24,188,104, 67,255,192, 40, 3,198, 53, 90,176,195, 1,176,199,176,104,193, 66, 54,102,246,144,200, 16,
-160, 26, 27,175, 20,148,122,235,207, 31,136,222,209, 85, 61,180, 24,255, 1, 2,128, 0, 98,161,150, 53, 84,185,128,219, 49, 61,
-225,222,221,123,231,182,239,252,250,243, 23,176, 3,171,108,102,228, 33, 23, 73,176, 36, 37,123,170, 7, 82,130,147,119, 1, 55,
-220, 4,200,154, 81, 96,161, 15,175, 69,136,113, 15,196, 94,242,156,157,158, 46,136,203,215,192,182, 63,145,134,168,185,124,154,
-233, 2, 55,129,216,115, 32,192,165, 60, 99,124, 17,244,124, 46, 72,174, 4, 10, 2,203,125,110,185, 80,130,218, 95, 62,119,155,
- 53,203,237, 31,211, 99,126,190,143, 64, 46,228,248, 7,130, 73,144,188, 85,158,120,234, 0, 50, 52,194,103, 2, 72,106,254,227,
-105,189, 98, 31, 21, 84, 86,150,200,203,155,176,107,215,189,230, 13,161,172,194, 2,224, 3,221,190,127,251,147, 95, 82,201,204,
- 37,180,109,225,204,139, 34,140,110,164, 28,230,243,247,239, 31, 98,230,192,136, 28,234,193,229,187, 91,183,110, 1, 73, 13, 13,
-141,183,111,223,178,176,176, 0, 75,109, 97, 97, 97, 6,216,249,116,108,108,160, 85, 24, 88, 43, 0,160,174, 83,167, 78,253,251,
-195,104,101,173,255,228,201, 19,160,202, 95,191,126,201,200,200, 64,164, 62,126,252, 8,236,232, 0, 13, 97,103,103,199,211,238,
-132,212, 13,200,140,209, 33, 32,226, 1, 64, 0,177,208,200, 92,242, 11,101,101, 37,165,156, 76,186,249,159,236, 11,184, 49,171,
- 1, 50,236, 37,207, 58, 60,174,165,245, 25,112,224, 6, 62, 3,218,184, 11, 49, 69, 63, 50, 96,250, 39,251,249,131, 44,145,138,
- 93,193,128,138, 94, 32,239,104, 48, 96,171,159,224, 8, 62, 86, 64,146, 46, 96,169,199,197,197, 21, 24, 24, 8, 57,210,249, 17,
-236, 72,231,163,123,119, 67,142,116,118,182,112,198,165,119,246,251,246, 84,193, 74, 20, 33,188,167,135,226,170, 3,200,240,163,
-169,169, 41,100,201,255,191,127,255,128, 37, 56,144,241,250,245,107, 32,201,195,195,195, 0, 94, 12, 10, 36, 89, 89, 89,177,250,
-215,199,199, 7,162, 0,168,247,199,143, 31, 12,160,141, 35,143,128, 36,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, 53,
-146,185,201,193,120,157,133,233, 25, 19,195, 55,240,201,255,204,255,192, 39,255,128,151, 40,254,135,156, 3,193,204,240,171,180,
- 21,116,112, 10,218,116,247, 80,244,175, 12, 41,203, 30,158,160, 46,131, 27,189, 68,123, 84,239,168,222,145,169, 23, 15, 0, 8,
-160,161,221, 3,104,234, 88,149, 26,193,166,169,252,251,198,221,255,144,253, 95,125,213, 76, 69,173,136,237,254,189, 53, 76,192,
-202, 0,121,159, 48, 46,176,255, 24,232, 80,123,214,255,191,205,109,157, 62,190,124,116,249,246,195,191,223,126,208,231,102,221,
-145, 6,174,223, 60,247,235,199, 55, 94, 94, 41,146, 22,194, 98, 93,214, 77,228, 66, 64, 74,244, 66,128,162,162, 34,100, 53, 42,
-228, 68,101,146,252,139,124, 18, 34,121,107, 73, 71,193, 40,160, 17, 0, 8, 32,244, 10, 96,225,162,185,248, 53,196,199, 37,227,
-146,162, 68, 47,217, 96,246,138, 95,125,213,200,151,130, 33, 74,127, 96,185,207, 8,218, 50,243, 95, 67, 25,116, 64,208,190,135,
-248, 74,255, 59,215,111,169,104, 41, 75, 73, 11, 60,121,120,131,149, 83, 68, 75, 67,109,251,198,141,123,246,236,161,117, 29, 64,
-231, 11,229, 7, 22, 92,186,184, 71, 65,230,167,174,242,255,127,255,254,126,252,248,228,198,149, 51, 95,126, 74,154, 24,219, 18,
-169,253,227,235, 57,204,204,208, 61,107,119, 38, 84, 24, 52,253, 34,222,106,228, 82,123,237,218,181, 37, 37, 37, 36,185, 28, 88,
-250, 23, 20, 20, 48, 50, 50,246,247,247,147, 81,136,147,121,161,252,200, 0,248,143, 10,102, 0, 7,220,172,217,179,113,213,235,
-240, 45, 2,144, 83,131,224,103, 7, 65, 66,123,132, 95, 10, 15, 1,200,215, 64,162, 13,132, 0, 4, 16,253,122, 0, 76, 12,212,
-223,204,221, 91,205,206,200,240, 19, 92,214, 51,104, 64, 79, 86,102,182, 53,253,119,248,244,127,176,200,127,248, 37, 1, 96,159,
-227, 44,253, 47,157, 57,163, 32, 37,115,233,248,137,147,191,126,191,127,243,158,141,157, 87,211,208, 90,223,218,109,255,102,208,
- 14, 97, 26,213, 1,104, 23,202, 47, 88,176,224,235,215,175, 36, 93, 74, 60, 80,224,194,249, 61,236, 44,239, 88,152,126,253,248,
-241,247,227, 87, 78, 27, 59,194, 39,247, 94,187,113,142,151,227,173,147, 53,187,130,188, 50, 31, 31,255,239, 63,127, 94,191,126,
- 35,254,232,241,237,187,247,142, 29,125,103,101,237, 79,140,189,192,210,255,239,157, 86,178,157, 77,246,217, 27,144,219, 93,224,
-103, 1,225,185,209,101,176, 1, 96, 11, 6, 88,219,161, 28,127, 68,195,210, 16,118, 1, 43,169,218, 30,173, 99, 60,153, 2, 43,
-196, 25, 96,151,173, 33, 76, 74,153,241,213, 44,124, 50,214,106,117,251,246,237, 16,182,135,135,199,142, 29, 59,176,178, 71, 75,
-127, 76, 46,188, 26, 0, 8, 32,236, 21,192,209, 35, 39,173,109,204,169,235,142,127,132,110,230, 34,242,134, 38, 20, 51, 25,153,
-110,223, 1, 21,253, 64,116,227, 46,211,255,255, 28,127, 25,217, 3, 92,127, 7,186,125,135,117, 5, 8,143,252, 28,217,183, 87,
- 81, 82,244,202,197, 43,213,205, 13,112,241,214,198, 54, 38,102, 70, 35, 99,163,237, 59,246, 18,172, 0,254,253,251, 7, 44,196,
-239,220,185,195,201,201,169,171,171,171,162,162, 66,100,233, 15,191, 83, 12, 88,250, 67, 24, 57, 57, 57,144, 90,129,254,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,160,205, 66,192,230, 63,252,138, 21, 96, 63, 0, 88, 7,204,
-198,214, 32, 37, 92,210,209,189, 7, 0, 73,186,107,214,172, 33,239, 94, 45,226, 1,188, 49, 62,115,230, 12, 82,237, 97,146, 15,
-134,232,253,187, 82, 0,222,154, 31,156,225, 57,116, 1,188,196, 71,171, 15, 0, 2, 8,103, 15, 0, 88, 7, 0, 73, 82,171,129,
- 35,121,183,177,138,219, 76, 82, 37, 62, 70, 33, 61, 56, 98,170,129,210, 22,208,205,115,125,213,160, 19, 64,103,173,248, 7,190,
-232, 14,116, 8,173,173, 41, 19,248, 94,248,127,176,177, 32, 96, 13,193,136,107, 8, 72, 83, 81,252,225,221, 87,200,165, 63, 16,
- 84,215, 87,181, 53,119, 73, 90,234, 9, 10,240,226,119,195,247,239,223,129, 37,194,195,135, 80,211,129, 77, 15, 47, 47, 47,127,
-127, 2, 77, 90, 60, 23,202, 67,234, 0, 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,132, 57, 7,237,114, 71,130,215, 58, 34,143,108,160, 29,101, 12,100,195,135, 59,200, 24, 71,106,110,
-110,246,245,245, 37,245,180, 6, 96, 29, 0,180,119,213,170, 85,184,142, 99, 99, 0,159,165,140,214, 51,128, 92, 9, 9, 20, 71,
-107, 19, 0, 11,122,204,179, 3,224,199, 43,129,239,225,202, 32,169,147,129,172,151, 57,252,195,191,149, 2,163,133, 53,213,155,
-255,200, 81,134, 22,125, 0, 1, 68, 96, 31, 0,176, 26,128,212, 4, 68, 2,172, 5, 61,145,165, 63, 4, 28, 60,120,240, 41, 24,
-144,116,150, 19,210, 28, 0, 8, 28, 62,253, 15,210,136,232,171,102,236,173, 97, 4,150,254,255, 25, 88,177,106,252,246,225,241,
-139,119, 95,138,235,234, 48,165, 62,124,124,247,254,245, 11, 70, 66,141,145,213,171, 87,195, 75,127, 8,216,182,109,219,245,235,
-215,241, 55,255,145,207,127,134, 55,255,145,235, 0,122, 94, 40, 15, 41,253, 9, 42, 3, 54,255, 57, 88,158,115,114,178,114,176,
-179, 41, 42, 42,152,152,153, 9, 10, 10,178,176, 48,179,177, 49, 11, 9,114, 60,125,252, 0,151, 70,150,255, 79,121,121, 56,191,
-125,255,115,229,202,237,103, 47, 62, 62,122,242,233,214,189, 95,207, 95,124,126,253,250,195,237, 91,247, 84,148,149,165,165,248,
-222,190,126, 52,104,155,255,104, 55,130,225,191,214, 17, 37,119,129,143,177,196,122,161, 60,121, 29, 8, 96,161, 12,185,182,133,
-120,176,119,239, 94, 96, 18,133,156, 86,139,167,201,140,124,249, 59,242,133,192,200,214,225,178, 26, 98, 44,228,238, 48,242,122,
- 69,171, 10,185,177,203, 50, 48,224, 63,204,206,195,195,195,211,211, 19, 50,206, 3, 97, 64,216, 30, 48, 48, 90, 7,224, 7, 0,
- 1, 68,212, 28, 0,121,189, 1,178,193,237,219,160,110, 4,176, 14,144,150,150, 38,174, 33,204,216, 87,253, 31,220, 9, 96,128,
- 55,249,193,137, 7, 52,146,120,243, 14, 68,252, 23,214, 57,128,115,231,239,126,249,130,101, 46,177,163,190,158,157,157,227,251,
-247,143,127,255,253,193,111,247,185,115,231, 48, 5,207,158, 61,171,169,169, 73,100,243, 63, 33, 33, 1,179, 50,160, 93, 39, 0,
-109,168, 7, 94,250, 19,204,192,239,223,189, 18,225,101,252,243,247,223,175,223,127, 94,191,121,199,202,198,241,243,231,239,223,
-127,254,254,249,243,239,207,223,255, 31,222,191,193,165,145,141,245, 43, 7,167,204,219,183, 31, 63,125,254,246,238,253,119, 62,
- 97,125, 43, 61,189, 83, 71,119, 72,253,250,243,241,211, 71,117,117,101,118, 54,150,175,159,223, 13,206,230, 63,176,132, 66,187,
- 76, 17,216, 3, 32,114, 38, 0, 88,115, 96,222, 1, 9, 63, 86, 26, 23,128, 95,174,144,145, 33,228,236,140, 56,253, 13,152, 35,
-128,228,166, 77,155,222,188,121, 67,228,188,212,158, 61,123, 32,165, 63, 68,253,218,181,107,113,149,194,200,253, 63,200,133,192,
-144,235, 1, 32,183,196, 64,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, 76,225, 31,176,234, 53,195,113,243, 27,242, 88, 63,174,249,128,209, 82, 30,121,228, 7,173, 7, 0, 16,
- 64,212,223, 9,140,214,222, 39,169,249,255,241,227, 71,228,106, 0,152,121, 8,246, 3, 82, 35,152,129, 9,184,168, 21, 84,202,
-247, 85, 67,145, 6,226,170, 93, 80,243, 31,143,246,218,234,154,206,246, 38,204,108,163,172, 40,207, 47,192,205,241,239,215,151,
-111,191,105, 17, 31, 11,192, 0,153,141, 44,130, 92, 37, 80,189,244, 71,110,214, 65,184,144,158, 56,193,177,133,191,127, 25,190,
-126,251,253,245,235,175, 79,159,126,190,124,249,254,217,179, 55,159, 63,255,252,242,229, 55,176, 6,253,250,245,247,199, 15, 31,
-113, 14, 28,253,252,243,227,199,223,223,191,127,241,242,178,201, 74,243,113,113,131,154,123, 74,202, 10, 50, 82,124,252,124, 28,
-255,255,255,253,253,231,223,207,159, 95, 7,103,243,191,168,168, 8,107,201, 78,176, 19,128,121,151, 36, 4, 0, 5, 9,222,249,
-131, 52,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,151,200, 35,224, 83,195,217, 53,149,
-127, 1,219,254, 16, 0,172, 6,192,247, 65, 50,192,122, 3,144, 81, 32,230,222,106,198,191, 12, 60,135, 30, 18,101, 59, 48,115,
- 50,115,113,188, 99, 21,225,250,253,228,206,211,255, 78, 14,118,248,213, 3, 91,211,199,142, 29, 67, 19, 36,120, 13, 50,188,232,
-199, 44,235,105, 87,250, 67, 92, 11,105,226, 65,174,199,130, 52,238, 48,135,122,177, 2, 65, 33,209,103,247,175,176,179, 49,255,
-250,253,239,199,207, 39,143,159,188,125,247,254,211,187,119,223,222,190,251, 14, 68, 2, 66, 10,184, 52,190,124,243,255,197,203,
- 55,154,154,202, 31,222,191,103,101, 97,250,244,249,201,215, 15,255,180, 84,190,138,139,138,114,113,113,177,179,115, 62,127,241,
-153,145, 89,112,112,102, 30,172,215,184, 67,102, 2,240,107,132,244, 15,224,119, 73,194,107, 14, 6, 82,174,148, 9, 11, 11,131,
-183,136, 33,183, 86, 0, 99, 45, 56, 56, 24, 88,253,224,223,236,131,214,246,135, 0,228,254, 4, 50,192,117, 37, 36, 68, 28,152,
- 90, 32,119,175, 67,196, 31, 99,179, 23,168, 38, 43, 43, 19,114,187, 14,184,218,128,244,191, 65,157, 6,136,251,241,212, 28, 64,
-189, 83, 29, 5,195, 39,124, 67, 27, 11, 2,138, 64,244, 38, 57,178,142, 22,226,148,128,180,242, 14, 56,123, 86,103, 5,176, 14,
-128,247, 3, 0, 2,136,133, 22, 69, 63,176,213, 15,153, 13, 38,169,249, 15, 7,200,165, 63,176, 7,135,231, 30, 49, 13,149,127,
-144,101,254,182,166, 12,135, 79, 35,196,225, 99, 65, 41,225, 60,255, 25,254,254,103, 96,100,250, 79, 84, 95, 7,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,255,175, 95,191,
-194,203,122, 32,137, 54, 13, 64,228,133,242,228, 1,200,197, 79,192, 32,133, 76, 81, 18,211,246,135, 0,125, 93,227,235, 87,206,
-254,127,250,233,219,247,223,239,217,127,252,103,120,255,227,199, 31, 96,111,224,213,155,111,207,158,127,177,117,148,199,165,241,
-251, 47,145,123,247, 95, 43, 41,202, 41, 42,202,188,125,251, 70, 80,224,175,170, 42,191,152,168, 18, 7, 39,231,135, 15, 95,206,
-158,187,241,228,233, 39, 9, 25,237,193,147, 97,254,131,111,187,132, 20,188,240,242, 23,235, 90,126, 44,163, 21, 72, 43, 24,129,
-157, 0,248, 93,146, 16,208,215,215,183,107,215, 46, 92,122, 33, 49, 2,185,240, 7,114,217, 50,114,145, 13,169, 0,128,173,120,
- 60,227, 63, 72,195, 71,123, 73,186,221, 8,215,149,144, 16,113, 72,241,141,171, 16,135, 44, 49,154, 54,109, 58,100,134,195,192,
- 64, 31, 62,112, 15,107,209,227,188,105, 0,162,151, 41,236, 61, 68,111,168, 37, 59, 60, 96,194,250,191, 50, 48, 48,224,111,253,
- 3,243, 26,124,129,147,167,167, 39, 60,118, 70, 71,126,136, 4, 0, 1,196, 50, 72, 90,253, 16, 16, 17, 17, 65,146,122, 70,216,
- 64,127,160, 27, 99,160, 27, 19, 52, 83, 49,254, 79,139, 0, 38, 4,214,127,255,249,149,149,249,254, 49,188,102,100,248,251,143,
-184, 5,202,223,222,189,224,144,209,184,191,103,137, 40, 11, 83,108,117, 21, 49, 90, 56, 57, 57,171,170,170, 72, 90, 6, 10,185,
-125, 62, 39, 39, 7, 83, 10, 82, 37,208,116, 21, 16,228,242, 63,248, 29,170, 36,173, 42,145,145, 87, 63,115, 98,167,152, 8,176,
-225,206, 2, 30,219,249,251,233,243,175,119,239,191,203, 42,106,219, 88,217,227,210,229,229, 21,188,107,251,252, 19,167,174,218,
- 90,235,203,203,203,255,254,245,195,208, 64,143,155,159,255,225,189, 71, 79,159,125, 56,122,252,250,251,207,252,129,150,246,131,
- 39, 87,100,102, 64, 6, 88, 24, 51,129, 5, 34,184, 64,255,135, 84,238, 51, 49, 49,226,185, 96, 29,116, 57,251,127,120, 1,200,
-248,239,223, 63,120, 39, 0,200, 0,150, 86, 30, 30,238,176, 74,134,193, 59,186, 22,115,172, 3, 87,169, 13,148,197, 95,250, 35,
- 3,160, 74, 92,237,125, 60,169, 2,243, 74, 72,184, 56,158,203,194,224, 53, 7,176,252, 5, 55,255, 25,145,235, 15,252,246, 34,
-235, 93, 85,200,131, 92, 45,194,185, 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,235,119,255,107, 66,135,251, 25,139, 90, 17,183,197,130, 7,130,254,253,101,248,121,253,
-206,103,200,213,240, 54,166,191, 5,212, 9, 55,255, 63,124,251,254,254,204, 54, 85, 89,214, 43, 79, 73, 24,146,102, 98, 98, 50,
- 3, 3,226,181,128, 47,148,239,132,143,246, 64, 58, 1, 16, 46, 49, 23,202, 83, 62, 16, 4,105,205, 17, 51,242,131, 18,173,224,
- 82,254,214,141,107,207,238, 61, 4,150,131,127,255,254,231,224, 20, 82,211,212, 9, 12, 32,112, 41,152,152,180,222,137, 83, 59,
-128, 61, 6, 93, 29, 37,105, 41,145, 71,143, 95,190,191,124,247,230,173, 71,123,247, 93,122,248,244,127, 74,106, 46,145, 14,184,
-191,229, 51,217,190,126,240,224, 1,145, 42,255,173, 20, 36, 94,214,119, 19, 94,189,119,231,195, 59, 1,160, 81,163,123, 11,144,
- 21,160,233,197,218, 33, 64, 46, 43, 73,107, 30,145,152,133,113, 93, 9, 73,204, 85,145,240,130, 30, 77, 25, 49,205,139,127, 15,
-215,174,153, 16, 7,234,190, 88,162, 12,245,192,185,184, 42,128,209,125, 0, 68,130, 89,157, 21,200,163, 64,200, 0, 32,128, 88,
-168,146,116,168, 2,200,104,243,206, 94,241, 23, 86,220,163, 28,248,115,227, 46,131,134,242, 31,102,134,175,144,210, 31, 8,142,
-156,254,229,163, 78,160,244,191,123,235,188,185,179, 15,139,136,249,221, 91,167, 88, 94,172, 41, 43,173,236,234,110,167,145,103,
- 49, 47,148, 71, 46,253,233,176, 11,140,212,162, 31,185, 14, 0,162, 11,151,207,190,124,241,146,155,155, 27, 79,195, 31,165, 32,
-208, 51, 6,162,165, 75,102, 94,187,121, 82, 82,156,135,131,131,245,203,151, 95, 79,159,127, 98,100,145, 77, 73,141, 35,210,106,
- 30,161, 34,178,253, 11, 89,206, 63, 0,224, 92, 49,131,114, 34, 98, 33,233, 89, 18,188, 64, 70, 54,204,200, 16,130, 85, 27,228,
- 20,142,184,202,107,130,229, 56,121,119, 73,194,189,137, 60,242, 51, 10,168, 8,124, 98,106, 33,179,190,192, 58, 0, 89, 16,206,
- 6, 8, 32,244, 10,128,146,227,122,104,113,212, 15, 49,224,198, 93, 38,240,102,224,255,105,176, 1, 36,216, 42,160,127,105,225,
- 44,179, 86,254, 33,104, 2,176,244,215, 86,231, 43,206,111,250,206, 38,179,110,207, 83,101, 53, 80, 91,158,231,244,150,226,146,
-202,222, 30, 26,214, 1,228, 93, 40, 63, 24, 0,104,207,151, 46,201,186,162, 99,210,143, 28, 59,248,250,237,235,239, 47,190,113,
-112, 8,203, 40,234, 17, 89,127, 48, 80,118, 1, 44, 85, 66,245,255,255,127, 12,228, 29,103,114,111, 1,116, 57,208,189,133,180,
-142, 23,146,134,125, 6, 9,112,243, 9, 39,216,150,199,213,185, 30,157, 3, 32,190, 14,192, 44,253,129, 0, 32,128,134,195,125,
- 0,255, 25, 32,190,248,131,124,248, 15,184, 91,192,172,170,194,193,192,240,133,160, 9,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,142, 39,227, 66,249, 33, 13,136, 47,241, 7,178,203,252,190, 35,
- 77,176, 2, 69,104,181, 16,249,122,129,173,254,179, 69, 12,163, 0, 7, 8,201,158, 50,128,245,250, 8,169, 3,112, 73, 1, 4,
-208,232,165,240, 67, 6,140, 94, 8, 51, 10, 70,193, 40,160, 46, 0, 8,160,209, 10, 96, 20,140,130, 81, 48, 10, 70, 40, 0, 8,
-160,209, 59,129, 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,248, 75,225,237,205,164,113,169,252,250,238, 5,132,193, 45, 36, 1, 97, 28, 60,
-245, 20, 89,193, 79, 81,113, 92,122,119,247, 67,247,217,186, 22, 66,215, 24,176,191,126, 73,164,189,152,128,120,123, 49, 1,154,
-189, 38,134, 82,184, 84,190,185,127, 21,194, 16, 81,132,158,139,112,230,252, 51,106,249,215, 99, 55,246, 3,232,249,165,164, 98,
- 97, 71, 1, 79, 17,135,154,191,195, 53,141, 90,241,139,172,247,230,205,155,200,231,163, 21, 22, 22,170,171,171,211, 40, 93,141,
-234,165,138,222,203,151, 47, 67, 24,186,186,186,164,234,197,188,226,105, 52,156, 7, 68, 47, 30, 0, 16, 64,216,151,129,254,249,
-243,231,199,143, 31,140,204,172,160,107,122,254,252,102, 99,101, 97,103,103, 39,181,110, 1, 26, 2,178,128,133,180,149,166,192,
- 66, 31, 88,220, 67,138,126, 9, 89, 5, 32,249, 2,247, 65,243,152,133, 32,176,248,131, 20,133, 83, 55,157, 2,146,217,126,102,
- 12,131, 27, 0, 11,125, 96,113, 15, 41,250,181, 77,172,129,228,213, 51, 71,105,237,223,205, 95,190,236,252,250,213,157,155, 27,
- 72, 50,188,124,121,170,188, 12, 40,104,214,217, 69, 83,159, 30, 56,112, 96,197,138, 21,192,116, 5, 23,225,224,224,136,136,136,
-112,112,112, 24,109,136, 13, 42, 0, 44,244,129,197, 61,164,232, 39, 53, 77, 66, 78,238,130, 20,253, 36,165, 73,228,243, 77,201,
- 91,223, 73,198,149,130,163, 0, 32,128,176,148,206,159, 62,127,145, 84, 51,181,215,213,224, 98,103,253,255,255,255,223,191,255,
-175,220,126,120,255,210, 97, 78,118, 86, 34, 15,233, 4, 2, 30,142, 7,218,170,247,174,220, 82,250,250, 83,129,248,162, 31, 72,
-114,242, 11, 3, 25,144,162, 31,107,111, 0, 79,251,215, 44,186, 2,200,128, 36, 59, 76, 89,172,235,157,144,141,101, 99, 99, 99,
- 0,239, 47,255,247, 15,116,149,216,223,191,127, 33,238, 97, 98,102,197,223,232, 6, 2, 73, 49, 80,219,249,215,167, 15, 63,193,
-213,222,151, 63,127, 33,238,225, 23,147,193,223,222,231,151, 82, 6, 50, 32,217, 12, 91,111, 64,144,186,254, 5,130,156,151,160,
-158, 1,164,244,135, 20,253,160,182,249,174,221,200,178, 62,120, 99,234, 35,247,155,183, 60,175, 63,188,189, 35, 38,160, 41,243,
- 70,133,152,200, 5,182,253, 87,174, 92,137, 92,250, 3, 1,144,203,201,201, 41, 41, 41,137,214, 15, 24,222, 96,207,158, 61, 36,
-221, 50,141,231, 48, 68, 90, 20,253,144, 52, 9,100, 96,166, 73, 88,111, 64, 16, 79,249, 11, 76,147, 64, 6,102,154,132,200,226,
- 74,147, 64,217,233, 11,150, 35,184, 9,145,164,122, 25,185,254,160,103,136, 13,114,176, 5,219,218,113,228, 88, 0, 8, 32,244,
- 10,224,235,247, 95,206,126, 81,178, 98,252, 92, 28, 44,192,114,240,239, 63, 6, 22,102, 70, 33,126, 13,109, 85,185, 61, 59,183,
-254,253,253,149,152, 58,224,215,175, 95,154,218,247,245, 53,238, 51, 51,253, 61,112, 70,154,141,149,240,105,174,192,130, 24, 88,
-212,242,243,129,238, 95,132,144,104,178,192, 42, 1, 87, 87, 0, 88,222, 1,147, 93,124,120, 16,144, 13, 33,209,100,129,201,145,
- 96, 51, 4,232, 47, 25, 25, 25, 32, 9,116,252,215,175, 95,129,165,255,251,247,239,137,173,237, 88,152,231, 77, 88,207,206,207,
-240,242, 1,195,233, 47, 79, 95,191,184,179,184,191,146, 96,195, 31,152,205,100,164, 64, 67, 91, 16, 18,235, 88, 16,121,254,197,
-115, 14, 0,176,124, 7, 22,253,205, 57,217, 64,118, 51,172,232, 95,114,235, 22,162,244, 39,116,136,192,131,255,135, 25,204,158,
- 70,200,197,252,252,167,194,254,239,255,245, 55,123,207,239,190,169,242, 47, 11,191,127,251,251,251,191,127,255,142,124,252, 53,
-132, 13, 20, 4,246, 3,104,121, 83,249,160, 43,253, 87,173, 90,245,254,189,235,234,213,161,196,168,135,156,206, 79,159, 18, 13,
- 88,190, 3,211,228,173,243,199,128, 69, 63,114,154,220,183,117,157,184,184, 56,124, 44, 8, 87,249,139, 39, 77,130, 74,103,248,
-241,170,132, 74,127, 32, 0,114,201,168, 3, 70, 1, 25, 0, 32,128, 80, 38,129, 63,127,254,108,227, 22,168, 33, 39,204,206,202,
- 4, 44,253, 95,188,120,113,249,226,249, 95,127,128,204,255,194,252, 92,110,158, 62,223,127,254, 33,198, 80,118,214, 87,202,114,
- 47, 24,152, 25,181, 84, 31,179,179,188, 36,169,244, 71,105,105,126,250, 12, 44,244,129, 82,152, 29, 2,172,165, 33, 50, 88,184,
-114, 29,176,208, 7, 74, 97, 54, 70,208, 0,176,225, 15, 44,247,249,248,248,238,221,187, 7, 44,244, 65,213, 30,209,165, 63,176,
-225, 15, 44,253, 3,115, 91, 60,163,172,182, 92,121,250,226, 59, 3,169,165, 63, 50,120,242,236, 5,176,175, 45, 42,200, 7,174,
-154,153,201,240,175, 71,112, 60,168,133,198,194, 74,176,244, 7,130,218, 41, 83,129, 8, 82,250, 3,123, 3,165,110,224,118,191,
- 40, 27,190,242,136,127,155, 91,136, 84,162,124, 22, 43, 19, 15, 55, 3, 23, 19, 3,179,180,184,181, 77,176,243, 61,169,126,252,
-131, 63, 32, 23, 46, 92,200, 0,187,242, 12,153,132, 43, 24,228, 32, 45, 45, 45, 52,116,245,210,165, 75, 41, 47,253,133,132,246,
- 16,169,101, 38, 24, 48, 50, 50, 34, 95,217, 72,187,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, 77,100,233,143,168, 3, 72,185, 20,118, 20,224, 1,192, 38, 63, 50,
- 66,150, 2, 8, 32, 68, 5, 0, 44,245,132, 21,244, 20, 36, 4,126,252,254, 11,172,173,119,238,220,177,104,225,130, 75, 23, 47,
-150, 22, 21, 48, 51, 51, 1,251, 2,124, 92,236, 10,122, 54,192, 38, 27,126,203,126,255,254,173,173,250,144,143,231,219,188,133,
-175,152, 24,255,155,233,222, 4,138, 16,116, 34, 90,233, 15, 41,250,191,127,124, 11,175, 24,128, 34,184,244,162,165, 60, 72,178,
- 59,181,180, 3,158, 40,129, 34,120,172, 86, 86, 86, 22, 22, 22,254,244,233, 19,176, 38, 96, 98, 98, 2,122, 16, 88,250, 67, 58,
- 58, 4, 79,227, 90,187, 97,125,193,132, 93,235, 39,215, 0,107, 2, 46,110,161,199,127,159, 2, 75,127, 30,112, 62, 97,198,171,
- 23,173,244,135, 20,253, 31,159,221,213,144, 17,251,252,237, 7, 59, 23, 59,195,223,191,164,250,183,114,246,150,171,231,142,235,
- 40,105,125,252,139,179,158,134,148,254,192, 86, 63,176,232,135,136, 0,139,126, 32,186,151,222,184,235,218, 37,109, 51, 37,134,
-183, 56, 35,235, 34,219, 22,107, 7, 81, 81,110,205,239,255, 63, 51,252,124,197,246,243,221,207,191,159,127,252,251,254,143,141,
- 71,218,214,100,205,133, 54, 92, 26, 33, 67,255,144,107,173,224,217, 30,206, 6, 74, 1, 21, 12,254, 92, 4, 44,184,169,210,246,
- 7,150,254, 85, 85, 68,157, 52, 14, 47,244,145,239,101,164, 29, 0,166, 73,200,185,132,103,207,158, 5,150,251,192, 52, 9, 41,
-253, 25,192,183, 54,146,151, 38,187, 18,124,174,220,125, 44,161, 36,201,240,245, 27, 77, 29,143,220, 93, 24,237, 58, 16, 15, 0,
- 2, 8, 49, 4,244,243,231, 79, 67, 13, 13, 46, 78, 86, 96,123,255,239, 63,134,163,135,143, 52, 54,183,252,251,207,112,251,206,
-157, 75, 23, 47,232,232,232, 51, 51, 51,170, 43,201,220, 59,247,135,147, 19,111,131,154,229,149,154,194, 51, 6, 22,198,199,207,
-127, 3, 73, 61,141,135,167, 46,191,250,207, 64,236,146, 27,248, 56, 15, 90,159, 0, 88, 25,128,215, 2, 61,197,163, 23, 62,206,
-131,214, 30, 1, 38, 68,208,218,152,215,216,251, 34,127,254,252,225,226,226, 2, 22,253,130,130,130,223,190,125,131, 92,213, 34,
- 42, 42,250,246,237, 91,130,103, 84,253,120,207, 96,198,201, 89, 58,249,176,171, 62,195,195,243, 12,144, 59,105,128,220, 73,133,
-142,127,255,253, 37,198,191,240,233, 53,103, 99, 13, 22, 94,166,157, 7,174, 25,106,200,242,241,176, 31, 60,115, 71, 68, 81,251,
- 1,234, 42, 32, 92,254,221,116,237, 63,195,115, 6, 63,103,198,217, 91,238, 9, 11, 42, 6, 89, 51,226,241, 47,100,204,103,231,
- 87,232,121,215,255, 27,250, 25,164, 63, 50,166,214,255,111,108,102, 96,250,206,120,170,109,138,184, 56,214, 83,185,127,104, 60,
-148, 23,240,250,244,247,203,207,247,119, 22, 63, 90,118,196,239,189, 86,138,163, 91, 46, 15,167,160, 58, 7,139, 32,139,223,199,
-211,235, 78,155,154,152,226,236,108, 50, 49,193,195, 19,153, 61, 84, 64, 64,192, 47,106,149,254,242,242,242, 68, 22,106,240,114,
- 31,210, 9, 32,251, 12, 87, 34,129,147,119, 16,176, 31, 12,172, 0,128,229,190, 49,152,193, 0,190,222,206,195,222, 4,146, 38,
-117,117,117, 31,224, 93, 97, 2, 79,147,207, 55,116,240,106,115,240,168, 22,172,234, 72,209,215,145, 80,247,105, 1,122,135,248,
-213, 41, 20,214, 1,163, 0, 25,224, 57, 12, 14, 32,128, 16, 21,192,191,127,255,184,216,217,126,253,249,207,196,200, 0, 68,245,
- 77, 45,192,106,224,235,215, 47, 47, 94, 60, 23, 23,151,248,255,255,223,159, 63, 12, 28,172, 44,204,172,248,134, 8,128,133,169,
-150,242, 19, 17,193, 79,160, 33, 63,240, 69,159,140,140,255,141,180,111,159,188, 36, 78,204,114, 32, 72, 51, 31,115, 56, 8, 79,
-243, 31,185,209,129, 89,244, 19,108,254,131, 6,100,222,188, 17, 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, 15,242, 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,135,166,110,198, 28, 44, 26,173, 12,240, 84, 6,200,117, 0, 64, 0,161,204, 1,252,135,172,129,249,207, 0, 44,250,153,
- 64,101, 55,195,186,181,107, 2,131, 66, 68, 68,197, 32,153,246, 63,161, 51,187,153,153, 94,105,171, 64, 47, 71,212,211,225, 2,
- 55, 93, 24,140,180,238, 1,197,137,113, 28,242,152, 15,154, 56,124, 43, 0, 46,128, 60,230,131, 38, 14, 95, 26,143, 21,124,250,
-244,233,243,231,207,192, 14, 16,176, 10,124,253,250, 53,100,252, 7,216, 21,248,242,229, 11,193, 33,160,245,147,107, 14, 92, 97,
-248,248,128,225,247,119,134, 73,229,142,144,241,159,115,231, 25, 46, 60, 63, 74,204,122,169,143,207,238, 10,241,115, 11, 11,113,
-171,171,105,222,187,255,250,214,211,183,114,194,252, 63, 95,190,250,243,251, 15,124, 43, 0, 30,255, 90, 57,248,219, 56, 70,174,
-223,188,106,255,161, 85,203,250,138,131,139,219, 46,253,102,120,253,246, 21, 30,255,194, 71,252, 19,173,204,163,181,228, 87,173,
-223,119,233,210,131,190,203,103, 87,184,198, 49,204, 61,246,244,233,107,248, 86, 0, 44, 67, 4, 63,216,255,254,122,243,235, 23,
-232,242,119,113,105, 89, 13, 77,205, 79,156,160,153,146,239,255,190, 49,253,252,202,249,149,249,229,115,236, 21, 0, 36, 24,127,
-128, 1,124,216, 7,109, 69,208,176, 28,246, 33,187,244, 71,110,254, 67,230, 30,224,157, 0, 90,123, 25,152, 38,209, 68,224,105,
- 18,190, 21, 0, 79,154,180, 53, 85,119,177, 86,107,109,234,233,157,176,173,110,201,190, 12, 39,147, 23, 27,183,125,124,255, 9,
- 87,137, 12, 20,207, 76,136,196, 20,207, 36,101, 18,120,180,184,199, 15,208, 70,255,145, 59, 4, 0, 1,196,132,220, 67,255,248,
-229, 27, 51, 19,227,159, 63,127,255,253,255,255,231, 31,104,210,254,226,133,243, 78,206,160, 27,236,254,254,255,207,204,196,252,
-249,219,175, 63,191,126,226,108,254,255,253,171, 40,253, 92, 84,232, 35,164, 50,177, 50,227,129, 92,174, 10,236, 4, 24,106,222,
-249,243,247, 47, 49,205,127,172, 83,193,196, 54,135,177, 77, 67, 17,212, 43, 40, 40, 8, 44,247,129, 61, 0, 96, 53, 32, 42, 42,
- 10,153, 16, 6, 22, 79, 31, 62,124, 32, 88, 1,164,181,174, 0,150,251,252, 10, 12,192,106, 32,175,115, 63,176,244, 15,202,111,
-127,242,239,197,210,190, 50, 96, 72, 18,211,252, 55, 54, 86, 19, 85, 82, 16, 19, 21, 97, 3,134, 60,227,255,215, 95,191,191,255,
-252,131, 72,255,246,118,108, 8,208, 84,228,227, 19,230, 18,149,250,253,238,253,249, 45,203, 63,188,123, 68,100,154,152,215,145,
-195, 80,232,194,242,231,151,194, 87,134, 87,204,159, 38, 61, 63,205,192,198, 71, 96,188,235,238,167, 55, 76,223, 31,177,125, 51,
- 81,113,212,138,227,185, 39,120, 64, 84,244,188,172,197,189,143, 76,159,127,254,255,254,109,201, 63, 14, 30, 94, 60,109,255,161,
- 8,210,211, 5, 49, 71,126,136,159, 13, 38,187,244, 71, 46,232,225,149, 16,228,198,118,154,250, 23,152, 38,143, 31, 63, 14, 25,
-247, 55, 54, 54,102, 0, 95, 68,188,114,211, 54,226,211,228,198,245, 13,238,229,185, 94, 94,206, 34,236,204,159, 25,255,239,188,
-245,248,248,149,167, 4,139,111,180, 58, 0,194, 29,157, 4,166, 86,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, 91, 68, 68,228,237,219,183, 64, 18,114, 75, 53,126,189,175, 95,220,169,105,217, 15,236, 1,116,
- 23,219,126,249,243,183,168,115,245,196,242,208,226,190, 45, 44,140,140,132,202,127, 80, 83, 75, 82, 68,128,149,129,245, 47, 3,
-227,243,251, 87, 31,190,250,168, 44, 42,116,241,221,179,115,119,159, 18,211,252, 15, 78, 42, 98, 21, 98, 96, 98,102, 88,176,237,
-254,218,105,165, 73, 29, 51,139,124,245,179,157,229, 9,250, 23,216,252,239,245, 11, 99,248,192,193,192,200,202,208,219, 19,114,
-250,240, 46,231, 76,198,246, 92,198, 19,101,120,154,255, 64,112,241,133,136,205,247,143, 95, 56,153,191,113,112, 40, 7,179, 2,
- 11,253,143, 76,172,127, 24,212,254,255,253,246,251,205,243,163,147, 63, 70, 71, 41, 15,179,252,131,117,193, 62,145,221, 2,178,
- 75,127, 6,212,209,127,180, 5,163, 52,157, 9,184,117,254, 24,124,220, 63, 43, 41,108, 7,108, 44,104,187,146, 18,193,189, 11,
-192, 52, 25,238, 98,206,255, 79,240, 27, 3,235,218,254,220,105, 91, 46,148,122,216, 36,244, 45, 11,105, 91, 76,176,222, 2,237,
- 29, 67,170, 3,224, 91,201, 70, 87,244,211, 26, 0, 4, 16,162, 7, 0,108,249,126,120,126,231,238,227,183, 44,172,204,192, 62,
-192,239, 63,127,207,157, 59,187,104,209,252, 95,127,255,255,254,251,143,141,133,233,213,251, 47, 79,175, 31,231,196, 49, 5, 12,
- 44, 58, 53,149, 31, 66,155,255,224,126,255,218, 37,106,160, 1, 32,166,255, 64,196,196,244,207, 66,255,250, 95,220,157, 0,180,
-230, 63,124, 21, 16,176,232, 39, 88,250,163, 53,255,225, 43, 16,128, 69, 33,193,210, 16,156,159,223,127,249,242,133,149,149, 21,
-210,252,255,247,239, 31,132, 36,166, 2, 88,220, 95,121,238,233, 65, 30, 9,208,196, 47, 47, 11, 51,176, 62,224, 99,103,253,240,
-238, 9,176,249,207,194,196, 68,176,249, 47, 43,196,123,237,222,253, 63,191,126,177,179,176,125,249,242,227,226,253,103,192,162,
-159, 96,233, 15,241,175,127, 78,243,210, 73, 19,191,253, 99,144, 85,150,185,114,245, 4,176,244, 39,210,191, 64, 80,164,108,178,
-249,246, 62,134,143,127, 24, 56, 68,118,159,186, 6, 44,253,129, 69, 63,254,210, 31, 8,244,127,249, 28,221,125,138,225,215,231,
- 47,140,159,223, 51,125,249,200,242,251,247,223, 79,236, 63,190,113, 60,187,191,162,234,182,130,129, 26,158, 25, 96, 32,128,167,
- 28, 14, 48, 64, 19, 28,228, 0,210,234, 7,150,233, 12,224,217, 96,130, 19,194,148,148,254,192, 34, 30, 87,159,137,166,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,238, 22,140,246, 3,168, 93, 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,248,175, 33, 7, 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,135,
-119,206, 33, 99, 13,104,122,186, 32, 25,165, 63,195,128, 78,105, 2,211,164,165,165, 37, 90,154, 4,150,254, 12,160,169, 96, 46,
-252,122,129,205,127,215, 61, 39,163,235, 23,217,217,217,137,163,246, 38,201,174,174, 32,117, 0,193, 0,193,172, 44, 71,235, 12,
- 60,229, 62,242, 76, 0, 64, 0, 97, 41,223,128,237,223,159,239, 30,159, 59, 0, 90, 46, 2,185,112,153,157,157, 29,115,110, 22,
- 13,176,178,178,242, 19,113,228, 3, 30, 0, 25,240, 97, 6, 54,249,255,124, 99, 70, 42,250,137, 57,177, 26, 50,224, 3, 44, 10,
-145, 75, 67, 98,138,126,126, 81,169, 95,184,167,181,241,131,232,230,197,183,111, 92, 37,219,191,167,110, 61,134,100, 51,228,210,
-159, 96,209, 15, 1,113, 70,220,228,249, 23, 20,167,253,101,144,162, 31, 94,250, 19, 89,244,195,129,167, 98, 8, 3,164,114, 35,
-110,141, 12,176, 73, 11,217,244, 11,108,239,195,119,255, 2, 25,144,230, 63,144, 49,248,143,130, 32, 99, 13, 40, 45, 26,233,180,
- 6, 88,211, 36,193,162, 31, 2, 92,107,102, 83,177,232, 39,169, 58, 28, 45,235,113, 1,180, 27,225, 25, 48,230,129, 1, 2, 8,
-123, 3,151,133,133, 5,215, 88, 13, 45, 0,100,148, 31, 82,244, 51,144, 88,244, 67, 70,189,201, 43, 10, 25, 64, 43,151,254, 17,
-211,189,192, 10, 94,189,251, 72,188, 69,200, 0, 50,202, 79, 94,209, 79,137,127, 33,163,252,155,191,124, 33,187,232, 31, 5,195,
- 21, 64,150,120, 62,122,251,141,140,162, 31, 82,254,194, 71,123,134,110,253, 55, 92,235, 0, 60,178, 0, 1, 52,122, 39,240, 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,240,151,194,143, 52,189, 63, 94, 60, 38, 94, 47,135,132,236,104, 56,143,234, 29,213, 59,170,151, 70,151,194, 3, 4,
-208,160,238, 1,144,186, 11,252,222,189,123,123, 96, 0,200, 30,173,222,241,128,143, 31, 63, 62,122,244,232,248,241,227,231,206,
-157, 3, 50,200, 51,100,232,158,242, 54, 10, 72, 5, 55,111,222, 36, 73,113, 70, 70, 6,217, 22,145,173,119, 20,144, 10, 0, 2,
-136,101,208,186,140,212, 18, 28,168,190,163,163, 35, 44, 44, 12, 89,187,146,146, 18,241,218,129, 96,245,234,213,161,161,161, 74,
- 96,128, 95,125, 90, 90, 26, 65, 51,129,142,193,186, 26,122,247,238,249,196,232,125,255,158,155, 70, 97,251,234,213,171,159, 63,
-127, 50, 50, 50,114,112,112,252,248,241, 3, 88, 1,156, 62,125, 90, 95, 95, 95, 69, 69,133, 36,115,136, 57, 42, 3, 92,145,103,
- 18,163,108,230,204,233,212,214,155,142, 67,241, 76,100, 41,252,219,136,128,169,162, 77, 36,248,255,214,187, 44, 7, 80, 78,172,
-252,219,117,234,255,182,187,145,162,235, 24,216, 53, 8, 58,207,221, 29,116,164,238,206,157, 59,201,136, 44,200, 89,208,233,233,
-130,148,172,172, 7,150,170,253,253,253, 4, 55,220,165,166,166, 1,235,116,204, 88, 45, 41, 41, 38, 70, 59, 60, 85, 76,152, 48,
-193,222,222, 30, 88,142, 47, 91,182,236,211,167, 79, 4, 45, 69, 41,146, 88,152, 35,172,216,210, 51,210,187,118,116,151,184,150,
- 64, 4,103,207,158,133, 85,111, 76, 12,104,151, 50, 55, 55,150,156, 2,185,217, 41, 33, 33, 97,116, 71, 2, 50,128,236, 11,131,
-175,254, 7, 8, 32,236, 21, 0,230, 97, 35, 52, 58,126,132,138, 21, 0,188,244, 7,186, 19,178, 39, 5,104, 2,145, 21, 0,164,
-242,128, 20,103,144,115,175,202,203,203, 9,235, 93, 45, 68,200, 96,156, 33,246,213,151,192, 45,234, 12, 68, 28,146, 70,222, 61,
- 24,192,182,191,152, 24,244,130, 7, 78, 78, 78, 96,101,240,225,195, 7,126,126,254, 83,167, 64,151, 39, 19, 83, 7, 0,131, 23,
- 18, 74,192, 16, 11, 14, 14, 6, 6, 56,193,154, 96,211,166, 13, 16,134,159, 95, 0, 46, 54, 46,189,223,143,229, 64,131,196,106,
- 10,156,141,204, 5, 50,112,233,221,177, 3,229,114,179, 67,135, 14,181,181,181, 33, 7,212,146, 37, 75,240, 39,140,206,206,206,
- 86, 7, 3,160, 87,129, 45, 3,228, 44,240,127,249, 93, 6,226,234,191, 1,204, 68,200,165, 63,208,203,192, 24, 95,186,116,233,
-145, 35, 71,188,162,170,113, 41, 62,134,113,133,246,250,213,160,210,255,223,191,127,179,102,205, 2,106,231,147,179,199, 90,232,
-195,187,131, 55,110,220, 0,114, 35, 35, 65,245,101, 84, 84, 20, 49,213, 70,207,110,232, 45,196, 47,118, 62, 7,234, 93,150,207,
- 5, 52,178,220,163,140, 1, 28,123,203, 23, 46,203,176,199,215, 39, 48, 54, 54, 38,190,169, 55, 90,250, 35, 3,128, 0, 98,194,
- 90,172, 0,179, 55, 48,178,209, 50, 60,145, 3, 50,148,140,189, 32,235,133, 52,198,137,215, 11,116,176, 11, 24, 64,234, 0,146,
- 18, 4,164,244, 7, 90, 7,204, 36, 16, 75,137,244, 5, 99,216,123, 8,194, 35,130, 11,240,108,153, 14, 65,120, 68, 8,150,254,
-255,193,128,248,209,152,247,239,223, 3,203,122, 96, 5,144,148,148, 20, 29, 29,205,198,198, 6,172, 3,128,253, 0,160,247,153,
-153,153, 33, 71, 1,227, 1,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, 37,182, 62, 82,100, 45, 90,224, 87,155, 95, 96,217, 31, 65,140, 57,192,240, 41, 45,
- 45, 85, 84, 84, 36,195, 13, 64,189,192,182,191,176,240, 94,202,219,254,240,210,159, 36,237,240,210,191,184,184, 24,143,118,228,
-228, 7,108,254,219,217,217, 1, 25,192, 58, 0,216, 15, 32, 88,110,160,233, 13,183, 4,181, 74,151,229,115, 2,251, 1,101,238,
-165,248,245, 2,219,254, 64,187,128,221,113, 23, 12, 0,145, 26,109,254,227, 41,253,129, 0, 32,128,152,176,117, 57,161, 23, 67,
- 67,218,209,240,230, 30, 49,197, 49, 36,207, 80,146,223,200, 27,192,193, 90,166,147,170, 5, 94,121, 0,155,255, 4,207,191, 29,
- 88, 0, 47,253,209, 50, 18,254,204, 6,108,251,127,251,246,141,137,137, 9,232, 71, 32,251,217,179,103,172,172,172, 44, 96, 0,
-100, 64,142,234, 68,219,208,143,102,254,196,137, 19,129, 69,127, 72, 72, 8,176, 64, 1, 26, 2, 44, 28,129,108,160,212,164, 73,
-147,134, 89,110,129,151,254, 64, 54,176,236,134,183, 45, 32,129, 15,239, 32, 18, 89,190, 0,149, 1, 67, 12,152,168,200,155, 53,
-169,172,172, 4,234,197, 19, 53,120, 74,255,190,190, 62, 96,148, 1, 43, 18, 96,241,125,248,240, 97, 6,240,137, 76,196,151,254,
- 16,237,192, 52,115,230,204, 25,136,118,130, 54, 2,213, 71, 68, 64,171, 70, 96, 29,224,224,224, 0,180,125,227,198,141, 4, 7,
- 18,129,205,127, 6, 70,134,165,121,208,243, 39,128,253,128, 72,107,118, 80, 63, 0, 47,192, 83, 74,140,118, 11,208, 74,255,180,
-114,244, 82, 17, 32,128, 88,176, 38, 86,248,197,208,247,144, 46,134, 38,152,214,169, 85,250, 83,165, 2,160, 4, 0, 43, 15,178,
- 61, 66, 55, 64, 70, 81,242,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,196,131, 54,145,224, 86, 7, 3,150,116,180,113,255,147,
-255,183,221,187, 71,204,240, 32, 82, 19, 30, 82, 71, 66, 74, 58, 96, 24, 18,223, 38,133,232, 85, 85, 85,101, 32,122,186, 5, 25,
-100,102,102,194, 7,187,128,108, 96,241, 13, 52,132,248,210,223,222, 26,116, 36, 35,176,237, 95, 82, 82, 2,108,152, 67,180,251,
-250,165,226,191,216, 15,222,252,135, 3,200, 88,208,182,109,219, 52, 52, 52,128, 77,118,252,122,195, 45, 81, 14,230, 2,143, 5,
- 49, 44, 95,118,254,166,196, 77,252,122, 71, 1, 25,165, 63, 16, 0, 4, 16,246, 57, 0, 96,151, 10,210,240,135, 95, 12, 77, 82,
-233,143,181, 29,138,103,120, 26,151, 94,100,113,218, 29,248, 7,244, 41,252,216,113,100, 55,144, 55, 98,251,127,149, 32,217, 46,
-249,226, 67,120,194, 19,238, 72,180, 18, 1,206,133, 40,192, 26, 92,239,222,189,227,229,229, 5,146,199,142, 29, 3, 86, 3,192,
-210, 31,216,228,135, 92,125, 3,172, 15,126,255,254,253,243,231, 79, 60,245, 10,164, 87,132, 25, 38, 64,145, 53,107,214, 0,101,
-241, 4, 23,229,115, 0,192,178, 30,185,184,135,176,137,172, 6,128, 69, 18,169,117,192,255,173,119,129,129, 10, 73,249,240,201,
-164,255, 43,238, 3, 5,137,159, 91, 66,174, 35, 25, 96, 23,187,147, 55, 40, 1,236, 4, 64,102, 47,136,215, 14,140, 74,248,248,
-187,141,141, 13,176, 4, 39,169,237, 15,212,254,231,207, 31,100,237, 7,143,254,237,233,204, 32,216,252,135,148,248,152,160,191,
-191,223, 59,186, 6,151, 94,164,209,127,212,254, 1, 17,122, 71, 1,217, 0, 32,128, 88,240,164, 90, 72,243,159,206,109,127,228,
-145, 40,250, 44,229, 68, 30,237, 65, 94, 31,130,191, 68,195,217,159,133,141,254,147, 81, 19,192, 71,255,241,215, 4,155, 54,109,
- 66, 19, 89,188,120,113,108,108, 44, 82,179,218, 15,232, 11,204, 99,254,128, 37, 62,176,244,255,241,227, 7, 63, 63, 63, 59, 59,
- 59, 48,123,255, 7, 93,246,249, 23, 40, 14, 44,253,129, 12,130,189, 10, 92,195,128,192,134, 42, 29, 6,205,112,205, 6, 19, 3,
- 32,117, 0, 9, 25,227, 64, 36,166,103, 35, 69,214,146, 52, 53,133,220,252,135,215,211, 68, 54, 44,144,155,255, 88,171,124,252,
- 96,217,178,101, 16, 67,128,117, 0, 25, 67,255,144,150, 31,176,107, 88, 88, 88,120,230,204, 25,152,118, 2,201, 99,226,196,137,
-182,182,182,200, 34, 43, 86,172, 56,120,240, 32, 48, 93, 65, 90, 36,120,214,167, 79,152, 56, 33,194, 2,165,249, 31, 61,233,219,
-138, 99,191,129,122, 13,163, 12, 51,236, 51,136, 95,219, 62, 10,136,108,254, 3, 1, 64, 0, 49,225,105, 23, 67, 18, 1,124, 50,
- 0,255, 48, 92,121,121, 57,121,238,195,165, 87, 9,124, 31, 41,241,173,120, 52, 0, 89, 17, 68,234,176, 41, 49,139, 59, 7, 3,
-240, 3, 3, 56, 23, 82,250,195, 5, 49,107, 8, 8, 0, 54,255,129,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,177, 11,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,246, 30,192,172,
- 89,179,224, 67,255,240,201, 0,252,133, 35,164, 28,135,180,229, 73, 29,174, 65,211, 11,233, 19, 0, 5,201, 27,246,129, 47, 3,
-165, 39,128, 52,252,201, 27,255,129, 52,252,137, 25,255,129,151,254,112, 6,188,172,199, 42,136, 6,132,133,133,223,190,125, 11,
-108,239,191,126,253, 26,216, 3, 0,182,239, 32, 61,128,175, 95,191, 2,107, 2, 96,233, 15,172, 6,202,202,112,206,185, 65,154,
-249, 88,151, 8, 67,100,241,186,153, 10,115, 0, 68,138, 35, 3,200,176, 9,122, 1, 87, 93,221,218,218, 42, 34, 34, 66,211, 36,
-129,217,252,135, 3,130, 51, 1,152,205,127,146,218,254,209,209,209, 49, 49, 49,192,200, 5,122,191,170,170, 10,216,251, 33,254,
- 66,155,154, 10,251, 3, 7, 14, 48,174, 1,221,207,186,171,134,215,173,229, 51, 80,123,107, 39,168, 21,143,191, 11, 2, 89,251,
- 15,110,245, 47, 59,120,240,240,127,198,255,133, 5,133,234,234,234,196, 88, 10,212, 27, 97,197,138,104,245, 51,128,244,138,187,
- 73,144, 49,243, 49, 10,176,148,231,157, 21,152, 21, 3,100,132, 0, 32,128, 88,240,180,253,129,165, 63,242,100, 0,193,174, 43,
-114, 57, 78, 94, 63, 0,162,151,194,145, 31,136,155,201, 44,199, 7,125,130,131, 12, 82,193,175,234, 70,238, 7, 96, 21, 68, 6,
- 50, 50, 50,119,238,220, 1,150,248,192, 38,255,239,223,191, 33, 67,255, 63,126,252,128,172, 37,133,204, 9, 43, 43, 43,227,169,
- 89,129,134, 67, 58, 1,240,148, 0, 12,106, 52, 17, 28,195, 86,212,159, 3, 64, 30, 17,194, 21, 86, 88,197, 65,139, 56,171,171,
-195,195,195, 87,174, 92, 73,252, 64, 37, 26,187, 77, 36, 56,217, 97,121,228, 30,236, 27,193,220,221,221,239,223,191,143,182, 11,
- 1, 2,128,226, 12,120, 55,133,133,134,174, 14, 13,117,118,117,189,135, 57,217,240,246,173, 51, 3,195,251,244,116,156, 57, 17,
-126, 21, 34,164,147,177,107,215, 46, 6, 82,174, 51, 99, 98, 98, 4, 53, 98, 32,165,255,165, 63,243,247,131, 46,194, 4,150,254,
-196,100, 13, 72,114, 2,182,250,129,100, 97, 81,161,186,154, 58,145,150,150,150,149,128,245, 50, 0, 91,253, 16,189, 18,110,146,
-160,209,166,209,194,159,246, 0, 32,128, 88,112,117,231,225, 19,191,240,101, 30,196,140,137, 83,101, 44,136,212, 29, 0, 35, 16,
-192,135, 92,224,101, 28,100,247, 6,178, 32,214, 49, 83, 96, 27,109,219,182,109,127,254,252,249,240,225, 3,100, 14,128, 1,188,
- 58, 8,200, 5,178, 9,198, 93,126,126,254,196,137, 19, 33,213, 0,242,184, 63, 80,156,214,117, 39,176,184, 39,166,208,199, 90,
- 26, 98, 86, 12,192, 38, 54,145,165, 63,102, 41, 12,155, 16, 38,220, 76,193,122,164,193,131, 7, 15, 24,136, 88, 98, 0, 31,128,
- 69,117,185, 11, 49,254, 5,246,243,128, 69, 63,242,224, 59, 49, 0,168,253,223, 74, 65, 96,185, 15,100, 47,216,255,107,197,177,
- 95, 64,237,135,143,147, 48, 90,117,232,208,161,130,130, 2, 34, 91,253,112, 0, 73,132, 43,143,255, 6,234,149,112,151,132,213,
- 39, 68,233,133,108,247,133, 76,239,163, 69,211,232, 78, 96, 6,108,215,129,161,237, 4, 6, 8, 32, 22,172,217, 3,178,169, 10,
-185,233, 71,112, 8, 8, 45,123,144, 93, 7, 80,110, 8,252, 52, 8, 34, 1,176,178,193, 58,132, 77, 76, 37,132, 57,230, 67,252,
- 40, 16,230,152, 15,145,163, 64,240,153,106,228,188,141, 85, 16,107, 51,205,219,219,123,233,210,165,108,108,108, 63,127,254, 4,
-214, 1,255,254,253, 19, 16, 16,120,255,254, 61, 49,155,159,181,180,180,128,230,239,222,189, 27,178,236, 7,178, 39, 96,200,101,
-176,125,251,246, 1, 3, 97,203,150, 45,100,148,254,240,178,242, 94,121, 57,158,174,106,105,105, 41, 3,142,229,115,101,101,101,
-248,231, 0,210,211, 5,113,233, 5,182,253,137, 41,199, 9,246,129,240, 0,247,150,207,112, 54, 73,165,255,180,105,211,200,139,
-142,158,238, 94, 80,147,159, 2,128,181,178,132,223, 62, 61, 10,240, 0,128, 0,194,185, 12,148,160, 8, 77, 1, 61,119, 0, 96,
-206,245, 17, 93,205,144, 89,240,129,244,114,146,233, 90,200,232, 22,164,114, 66, 27,233, 66, 22,196,239,163,232,232,232,187,119,
-239,238,223,191,255,251,247,239,127,255,254,245,245,245, 5, 22,229,196,135,185, 43, 24, 64,218,110, 68, 54,252,169, 53, 7,128,
-139,141,167, 52, 68, 91,151, 66,204,110, 38, 6,200, 81, 63,203,239, 70,138,162, 84, 0, 41,159, 12,147, 29, 87,176,164, 71, 64,
- 42, 75,136, 20,214,158, 22,158,240,119,118,118, 38,152, 32,201,144,130,251, 23, 24, 35,129,129,129,144,211,135, 72, 5, 76,225,
-239,129,218,253,252,211, 32,109, 5,200,162, 79,228, 99, 30,104, 1,140, 99,140,200,214, 11,108,224,227,170,231, 32, 82,163, 0,
- 63, 0, 8,160,193,120, 24, 28, 25,205, 22,250, 55, 66, 41,177,145,146, 83,222,168,229, 83,101, 48, 64, 19,252,245,235, 23, 51,
- 24, 80, 59, 66,167, 15,144, 94, 44, 9, 9,114,124, 24,225,190,221, 54,208, 81, 63,144,145, 79,184, 32,176,244,103,248,207, 0,
- 57, 46,112,120,100, 28, 12,237,132,135,222,169,190, 28, 19,255, 57, 63,180,171, 44, 71, 7,133,128, 0, 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, 88, 70,131, 96, 20,140,130, 81,128, 12, 24, 49, 89,255,225,196, 40, 24, 86, 0, 32,128, 70,123, 0,
- 35, 20, 96, 61, 28,124, 20,140, 2, 70, 48,102, 4,157, 1,205,136, 1, 70,247,102, 13, 55, 0, 16, 64,163,151,194,143, 80,189,
-190,182, 51,135,183,127,227,252,116, 17,205, 28, 38, 38,200,114, 85,248,138,198,255, 48, 0, 81,176,104,211,101,100,189, 31, 30,
-236,231,224,224,128,168,135, 28,160,141,172, 23,114,106,222,191,127,255,128,236,223,191,127,243,202,218,141,128,116,197,200,204,
-194,254,255,223,159,127,255,254,108, 57,242, 4,121, 81, 40, 46,189,192, 32,122,249,242,165,132,132, 4, 25,246, 82,162,119, 52,
-239, 51,144,178, 82, 11, 32,128,134,252, 16, 80,117, 53,226, 10,187,214, 86, 51,250,233, 61, 5,186, 84,175,213,172, 21,206, 32,
-213,229,184,246,169,226, 18, 39,213,156,225,214, 87,253,245,149,229,237,125,213, 31,151,164,255, 60,190,245, 95,241, 9,175,214,
- 55, 62,121, 54,110, 94, 92,234,143, 28, 57, 98, 99, 99, 3, 41,250, 33,133, 56,164, 17, 11, 47,196,255,193,192,195,135, 15,209,
-244,158, 59,119,206,216,216,152,147,147,147,133,133, 5,168, 17,174, 29, 82,238,255,133,129,159, 63,127,158, 61,123,214, 65,214,
-110,240,135, 30,208,229,111,223,190, 61,126,252,184,128,128, 0,218,198, 8,194,125, 2, 70, 38,118, 14, 33, 1, 65,245,175, 95,
-158,126,249,252, 24,212, 13, 96,252,207,240, 31,223,136, 16, 48,148,214,172, 89,115,235,214, 45, 32, 27, 24,140,197,197,197,196,
- 91, 7,209,123,239,238, 29, 96,152,179,177,179, 23, 20, 20,210,116, 23,194, 8, 7, 0, 1, 52,136, 42, 0, 92, 39, 77, 50,224,
- 61,104, 12, 82,112, 35, 23,229,196, 3, 74,244, 14, 39, 64,225,222, 81, 58,148, 94,159, 31, 94,255,120,104,213,183,111, 63, 21,
-204,153, 56,101, 24, 85, 31, 93, 50,101,184,248,254, 39,207, 5,174,184, 55,140,210, 88, 53, 93,187,118, 13, 88,130, 0, 11, 59,
- 22, 24,128, 84, 6,144,134,255,159, 63,127,128, 37, 56,176,253, 14, 44,253,247,237,219,199, 44,108,130,172,247,219,183,111,231,
-207,159,183,176,176, 96, 99, 99,131, 95,154, 6,212, 14, 44,155,254,128, 1, 80,227,247,239,223,129,106,190,124,249, 50,152, 99,
-182,170,170, 10, 57, 19,125,254,252,217,192,192,128, 12,189,139,151,157,229,228, 20, 3, 22,200,160, 10,128,145,225, 63,100,183,
- 0,238, 98,249,217,179,103,192,144,137,138,138, 82, 82, 82,130,156, 75, 33, 36, 36,100, 98, 98,130, 85,113,130, 59,202,206,184,
-203, 55,110, 28,224,229, 42,234,111, 50, 52,210,121,254,228,213,174,109, 7, 20,116, 12, 63,125,250, 56, 90, 88,147, 13,208,198,
-123,145,151,254, 3, 4, 16, 11,214,178, 0, 82, 10,224, 98,211,168,244,207,202,194,126, 79,250,251,247,239,151, 47, 95,142,167,
- 14,128,148,224,164, 54,225, 41,212, 11,111,251,147,209,252, 71,187,121, 6,151, 2, 26,133, 54,164,199, 0, 39, 33,130,239,222,
-129,118,205, 8, 9,237, 25,132,201,247,215,227,107,236,199, 22,255,252,246, 47, 72,133, 89, 93,244,207, 63,161,255,172, 66,204,
-159,223,178,113,126,254,174,121,113,202, 89,181,140,111, 92,242,216,218,173,140,215,175, 95, 7,150,224, 78, 78, 78,144,114, 28,
- 8,128,133, 56,228,234, 27, 96, 33, 14,108,191, 63,126,252,120,255,254,253,192,154, 0,109,231, 27, 80, 25, 80,205,197,139, 23,
-129,245, 7,176, 1,203,206,206, 14,209, 11,169, 0,128, 26,129,165,219,229,203,151,127,252,248, 65,112,211,220,131, 7, 15,128,
-182, 0, 75, 94,160, 27,196,197,197, 85, 85, 85, 33,131, 75,196, 0, 74,244, 2,157, 90, 83, 83, 3, 63, 12, 21, 88,154, 3,107,
- 68, 49, 49, 49, 97, 97, 97, 34, 75,255,121, 73, 73, 94,134,134, 64,182, 68,110, 46, 39,151,248,151, 79,143, 62,125,188,251,255,
-255, 95,208,129,113,255, 8, 92, 72, 7, 44,238, 69, 68, 68, 22, 45, 90, 20, 31, 31,191,105,211, 38, 32,247,208,161, 67,191,126,
-253, 98, 96,144,195,170,254,109,123, 17,156,205,243,235,183,212,159, 31, 5,165,245,253, 61,141,221, 61,211,164,153,254, 78,235,
-233,115,138,136,194,165,119, 20,144, 84,250, 51, 32, 29, 5, 10, 4, 0, 1,132,189, 7,128,124, 4, 10, 46, 54,213, 1,253,207,
-112,166,194, 0, 20,172, 14, 32, 9,192,235,212,249,129,139, 48,101, 19,215,199,209,180, 25, 14, 49, 28,153, 36,120,109,247, 0,
-130, 31, 31,222,168,221,223,250,138,249,175, 10, 63,131,188,220,127,102, 61, 54, 22, 37, 37,182,159, 63,126, 30,125,252,243, 35,
- 11,243, 63,214, 31,123, 22, 51,121,229,255, 99, 65, 31, 11,130, 95,126, 41, 40, 40,232,232,232, 8, 44, 58,129,197, 40,176, 33,
- 15,105,248, 3,203,110, 96, 43,245,224,193,131, 76, 96,128, 85, 47, 80,229,213,171, 87,109,108,108,248,248,248,128,218,129, 34,
-192,210, 31, 88,138,125,250,244,233,244,233,211,192,106, 0,104, 26,100, 38, 0, 23,184,116,233,210,177, 99,199,238,223,191, 15,
-212, 2,180, 93, 66, 66, 2,216, 10,182,178,178,226,230, 38,188, 21,156,108,189, 64, 39, 65,110,254, 65, 22,132,156, 11, 13,108,
- 69, 17, 83,133, 48, 49,179, 33,115, 95, 76,158, 44, 17, 32,211,221, 61,241,247,239,175,224,192, 97,252, 7, 44,253,255,131,186,
- 0,255,113,143,191,157, 60,121,178,162,162, 2, 24,104, 65, 65, 65,178,178,178,192,138,118,219,182,109,230,238,132, 54,253, 50,
- 50, 46,185,243,124,237,237,167,155, 54, 46,100,102,102, 44,202,141,213,151, 16,153, 85, 80, 63,155, 24,189,163, 0, 71,233,143,
-220,228, 71,171, 15, 0, 2,136,132, 85, 64,180, 62,238, 81, 9, 55,160, 69, 19,158, 66,189, 12,100,141,251, 83,189, 45, 15,191,
-204,146,248, 66, 28,171, 74, 96,219,159,200,230, 63,176, 16, 4, 22,127,152, 92,100, 65, 76, 0, 87, 3,191,101, 16,147,139, 21,
-188,187,122,238,217,211, 79, 98,188, 44, 74,188,255, 89, 68,254,177, 88,122,112,235, 47,230, 52,234,101,231,231,100,251,242,253,
-219,183,191,114,204,223,222, 95, 58,134,165, 20, 99, 98,130, 92,118,127,251,246,109, 96,107, 29, 88,136, 11,131, 1,176,101, 42,
- 32, 32,240,241,227, 71, 96,155, 20, 88, 60, 65, 70,249,209,244, 66,196,129,197, 46,176, 14,184,117,235, 22, 23, 23, 23, 80, 23,
-176,249, 44, 42, 42,202,195,195, 3, 20, 1, 86, 33,144,161, 33,204,202, 3,185,253,190,123,247,238,187,119,239, 42, 42, 42,186,
-187,187,155,153,153,125,251,246,109,223,190,125,192,142, 5,176,250, 33,216,246,223,189,103,239,189,231, 31,121, 85, 44,212,220,
-147,165,205,252,222,255,100, 2,138, 16,212, 11, 44,253,129, 21, 6,176,242, 0, 22,193,122,122,122,240, 97, 28, 8,131, 96,233,
- 15, 44,250,185,121,164,132,132,117,150,174,184,148, 52,111,222,182,243,231,129, 8,216, 3, 96, 0, 77,119,127,133,170, 97, 4,
- 34,124,235,129,128, 5, 61,176,213,159,147,147,195,203,203, 11, 12,186,181,107,215, 2, 29,243,230,205, 27, 53, 53, 53,130,169,
-107,226,249,219, 61, 39,174,204,238,169,100, 97,254,206,244,247,115,215,132,121, 43, 15,157,125,198,196, 66,234, 9,163,163,128,
- 72, 0, 16, 64, 44,196, 23,244,131,121, 42,102,196, 86, 3,144,161, 27,146, 70,111, 48,187, 23,240,126, 0,193,158,199,231,207,
-159,129,205, 82, 96,179,218,212,212, 20,141,123,234,212, 41,136, 32, 86, 0,145, 5,146,192,150, 41,176, 25, 11, 44, 26, 32,130,
-200, 92,172,128,239,199,219,109,143,126, 72,191,103, 54,228, 99, 20,125,205,160,194,194,207,196, 40,252,255,199,203,175, 47, 25,
-175, 62,250,247,226,235, 15, 96, 25,204,240,239, 22,131,145, 59,174, 10,128,157,157, 29, 88, 10, 75, 75, 75,187,186,186, 2, 75,
-118, 96, 17,249,246,237, 91, 96,145, 4,148, 2, 22,241,144,227,143,254, 97,232,133,104, 7, 42, 0, 38,123, 96,199, 87, 69, 69,
-133,159,159,255,203,151, 47,231,207,159, 7,214, 10, 64, 51,127,130, 1,158, 86, 17,176,122,123,242,228,137,190,190,190,131,131,
-131,140,140,204,215,175, 95,129,245, 7,176,155,123,252,248,113,130,131, 57, 64,189, 47,223,125, 20, 82,179, 80,178, 13, 23,144,
- 81,251,249,245,195,163,147, 91,111,239, 93, 72, 80, 47,100,246, 2,216,185, 17, 23, 23, 7, 22,184,192,154, 0, 82,244, 67,198,
-130,128,108,172, 55,228, 64,171, 61, 22, 14, 1, 65,117, 1, 33,117, 38, 38, 86, 96,113, 63,119,254,254,164, 68, 71,136,222,212,
-212, 84,160,227, 33,122,193, 94, 6, 23, 5,216,166, 1,128, 1,187,121,243,230,172,172, 44, 73, 73,208, 1,159,123,247,238, 5,
- 86,102,156, 96,224,237,237,125,236,218,119, 60,190, 94,118,243,113,239,233, 27,115, 58,202,101,212,229,191,126,121,191,113,251,
-233, 75,151,111, 10,252,255,199,246,226,165,119, 78,244,209,171,223, 71,203,107, 82, 1,218, 73, 63,152, 29, 2,128, 0, 98,193,
- 44, 11,224,135,220,226, 98, 15, 42, 64,118,193, 77,161, 94,178,199,127, 40,111,245, 19, 35,133,167, 40, 39,123,213, 16, 48, 39,
- 3,139,251,247,239,223, 99,229, 18, 9,128,181, 5,176,252, 5, 22,250, 10, 10, 10,152, 92, 76,240,250,205,227, 99,207,191,123,
-115,113, 29,126,252, 79,202,136, 93,241,231,217,247,215,178,214,119, 93,250,247,224,227,151, 95,255,159,126,254,203,201,194,244,
-231,227, 11,126,108,237, 24,120, 29, 0, 44, 49, 31, 62,124,120,227,198, 13,109,109,109,160,131, 79,156, 56, 1, 25,217,199, 53,
-136, 15,212, 11,233, 4, 64,244, 2,235,128,199,143, 31,235,234,234, 2,139,111, 96,253, 1, 20, 1,138, 67, 86, 7,225,233, 1,
- 60,122,244, 8,104,190,177,177, 49,176,244, 7, 42, 6,118, 65,204,205,205,129, 86, 3,197,129, 53, 7,254, 80, 2,170,249,199,
-196, 38,109,224, 2, 44,253,153,152, 89, 57,249, 68,229,204,189, 31,158,216,132, 95, 47,208,157, 31, 62,124,120,250,244,169,156,
-156,156,181,181, 53,208, 82,200,200, 79,124,124, 60, 68, 1,176, 14,195, 99, 41, 7,135,176,176,168,254,175,159, 31,223,188, 61,
-255,243,231,251,223,191, 65,243,219, 16,189, 47, 95,188,128,235, 5,181,254,113,212,122,207,159, 63, 95,186,116,105,116,116, 52,
- 48,172, 24,192,215,209, 0,123, 3,149,149,149,192,218, 8,166, 4,231,242,196, 91,159,190,149, 31,188,208, 81,146,110,235,227,
-242,245,203,155, 85,235, 14,206,156,187,118,123, 81,130,210,171, 39,157,159, 94, 8, 9, 9,227,209, 59, 10,136, 28, 11,194,172,
- 18, 0, 2,136, 5,235, 80, 12, 65,246, 32, 7,148,175,209, 36, 6,180,152,182,208,255, 6, 49,228,178, 27,173, 50,160,198, 97,
-144, 56,193,205,155, 55, 97,243,120, 88,184, 36, 1, 96, 17,188,123,247,110,200, 37, 30,200, 92,172,221,252,139,239,190,127,252,
-245,239,226,235, 63,207, 62,252, 17, 63,193,162,183,234,206,195, 7, 87,111,158,252,245,135,133,249,215, 63,134, 31,191,254,191,
-255,255, 79, 84,240, 63,214, 66, 28,190, 0, 20,178,140,231,229,203,151,242,242,242,192,122, 11, 50,236, 3, 36, 17, 27,156, 8,
- 1,248,166, 1, 8, 57, 56,111,142, 3, 86, 78,144, 91, 80, 20, 21, 21,145, 43,182, 51,103,206, 0, 73, 96,240, 66, 46,221,195,
-117,237, 15, 48,180,128,228,247,111, 47,191,124,126,252,247,239, 15,100,189,155,192, 85, 53,176, 27, 4,210,251, 31,251,216, 63,
- 48, 30, 39, 79,158, 12,108,230,219,216,216, 0,185, 71,143, 30,221,176, 97, 67,118,118, 54, 82,233,143, 19, 60,255,246, 51,118,
-219,137,130, 48,239,144,216,224,111, 63, 62,173,223,116, 96,194,180,101,139,220, 76,129,165,255,104,217, 77,245,154, 0,185, 14,
- 0, 8, 32,106,238, 4, 70, 30,137,198,197, 30, 78, 96, 48,148, 2,144,177,123,226,199,127,240,204, 25,224,143, 35, 96,241,225,
-234,234, 42, 40, 40,136,149, 75, 18, 0,234, 2,234,133, 23,247,104, 92, 52,240,253, 47,223,111, 70,134, 51,111,126,190,250,251,
-119,239,189, 31,171, 86,255,216,247, 68,244, 14, 27,255,147,143,191, 31,127,254,247,245, 15,195,183, 63,255,217,133, 37,112, 21,
-217,144,149,254,127,255,254,253,243,231,143,176,176, 48, 15, 15, 15,176, 14,248,253,251, 55, 68, 4,109, 59, 24,178, 94,200, 74,
-127,160,154,239,223,191, 3,185,178,178,178,192,150,181,164,164, 36,176,218, 0,182,193,129, 53, 31,196,100, 60,227,162,192,102,
- 56,176,175,112,246,236,217, 39, 79,158, 64,174,225, 60,121,242,228,151, 47, 95,128,226,192,206, 7,254, 32, 2,170, 97,250,247,
-235,233,249, 61, 31,158,220,250,247,247,247,247, 79,175, 31,157,220,250,235,235,123,252,122,225,142,249,246,237, 27,124,118, 26,
-216, 9,184,122,245, 42,176, 28,135, 92,218,254,241, 35,206,245,148, 64,191,254,249,253,133,147, 91,130,131, 83, 8,178, 35, 24,
- 89,239,236,217,179, 33,122,255,161, 6, 24,176, 3,183,104,209, 34, 96,235,161,169,169,201,207,207,207,199,199, 7,210, 21,216,
-188,121,115,105,105, 41,176,203,133,199,155, 64,189,139, 23, 47,142,200,202,113, 90,115,176, 36, 46, 40,175, 44,243,199,175, 47,
-247,239, 62,158, 57,115,213, 6, 95, 43, 7, 89, 49,226, 19, 21,176,178, 25, 45,220,241,143, 5,193,203,125,228,121, 96,128, 0,
-162,254, 81, 16,152,183,167, 98,178,169,220,222,199, 88,200,143,220,228,199,223,252,199,212,123, 10, 40, 84, 93,141,201, 38,102,
- 8,136,120,189,212,234, 13,192, 23,243, 16,223,252,127,247,206, 5, 62,115, 64, 82, 7, 66, 65, 65,193,215,215, 23,216, 12,196,
-202, 37, 18, 0,213, 3,117,193, 7,124,208,184, 88,212,171,170,168,114, 51,243, 50, 50,252,254,255,255,250,251, 95, 75,239,252,
- 92,126,236,217,233,187,239,158,125,103,120,251,227,239,221, 47,255,159,255,252, 47,171,172,130,181, 52,132,172,218, 4, 22,214,
-192, 66, 28, 88,118,235,232,232,128,171, 76, 33, 51, 51, 51, 72, 33, 14, 41,199, 49, 11,113, 72,225, 14,172, 39,128, 10,128,213,
-188,178,178,242,135, 15, 31, 30, 63,126,252,238,221, 59,160, 83,129,189, 10,160, 56,208, 4,136, 50, 92, 46, 55, 53, 53,149,145,
-145, 1, 22,160, 59,118,236,216, 2, 6,135, 15, 31, 6, 54,204, 45, 45, 45,241,204,121,192,245,138, 11,241,191,189,119,225,230,
-238,249, 87,183, 78,191,190,117,230,195,227, 27,216,153,254,225,215, 11,172,156,128,205,109, 62, 62,190,139, 23, 47, 2,107, 29,
-228,106, 0,210,150, 95,186,116, 41,158, 18,249,215,207,143, 31, 63,220, 97,101,229, 22, 16,210,224,230,145, 6, 50, 32,125, 2,
- 32,120,118,114,234,254, 69,121,174, 26, 95,192, 21, 0, 3,116, 27, 24, 56,216,182,110,221,202,201,201, 9, 52, 22, 24, 50, 22,
- 22, 22,240,174, 64, 76, 76, 12,176, 35,130,223,155,219,182,109,229,227,227,177,179, 55, 55, 48,210, 11,204, 74,250,198,248,231,
-245,171,119, 25,185,205,157, 38, 42, 70, 98, 36,180, 45,128,165,127, 87, 87,215,104, 29, 64, 76, 53,128, 38, 2, 16, 64,116,218,
- 8, 54, 32,141,101,242,198,232,205, 90, 91,145,203,110, 32,151,234,122,225,109,237,196,245,113,120, 20,208,122, 79, 22,220, 22,
-228,157, 1,248,181, 0, 75, 31,103,103,103, 96, 25,138,201, 5,150,170,248, 66, 6, 44, 11, 36, 13, 13, 13,129,229, 20, 92, 16,
-153,139, 21, 72,171,105,233, 94, 61, 43,255,254,227,155,191,255, 62,253,248,195, 14, 44,173,127,254,145,227, 97,121,255,231,207,
-211,175,160, 21, 68,222,170,226,220, 10, 90, 95,176,141,135,192, 87,124,234,234,234,234,235,235, 3, 11, 38,200,194, 77,160,179,
-129, 69,213,250,245,235, 33, 27, 2,128, 34,140, 24,122, 33,187,189,128,233, 86, 77, 77, 13, 88,127,188,126,253, 26,178,132, 20,
-104, 26, 80,228,213,171, 87, 16,189, 64, 17, 60,245, 37,176,103, 3, 89,202, 9, 44,145,225, 75, 57,129, 46, 33,184, 26, 7,164,
-215,197, 25,164,247,238,201,103,231,119, 67,245, 90, 59, 17,212, 11, 44,253,141,140,140,142, 30, 61, 10,212, 43, 45, 45, 13, 52,
-135,155,155,187,170,170,106,210,164, 73,192,174, 15,208,246,190,190, 62, 92,119,196, 3,171,188,143,239,239, 0,139,117,126, 33,
- 53, 9, 41,203,239,223,223,124,249,244,176,187,103, 82, 99, 67,149,148, 12,195,242,124, 46,198,176,247,142,113, 12,144, 26, 19,
-190, 17,248,214,173, 91,192, 52, 96, 99, 99, 3, 52, 31, 88,229, 0,229,166, 76,153, 18, 30, 30, 14,169,110,241,131,155, 55,111,
-133, 4,251, 71, 68,248,233,232,170,191,253,252,241,203,199, 55,105,121,205,205,129,206,206,255,190,145, 84,250, 79,152, 48, 1,
- 24, 41,192, 90, 39, 55, 55, 55, 32, 32, 96,180,160, 71, 30,240,193, 90,238,195, 1, 64, 0,177,208,167,160, 39,184,130, 40, 36,
- 36,132,188,157,192,184, 0,242, 70, 45,242,234, 0, 82, 75,127,226,245,226, 95,117, 67,235,163, 29,224,227, 69,112, 91,144,247,
- 4, 16, 4,192,114, 16,121,181, 15,156,139,103, 9, 16, 92, 22, 77, 13,126, 45, 16, 32,165,168,252,195,204,246,207,169,109, 15,
- 62, 50,240, 48,178,202,243, 48, 61,253,203,200,204,206,114,232,213,223, 31,255, 24, 68,217,153,149, 77,236,190, 8, 42, 96, 43,
-206, 64, 77,120, 96,139, 27,216, 14, 5,150,137,159, 62,125, 2,150,221,144, 10, 0,216,126, 7, 86, 90,192, 50,107,243,230,205,
-144,225, 32,180,108, 0, 20,129,108, 27,214,212,212,132,140,222, 0,245, 66,210, 54,164,223, 0, 20, 7,246, 6,190,124,249,130,
- 63, 97,235,233,233, 1, 75,100,242, 54,115,145,167, 23,232,108, 41, 41, 41,119,119,119, 96,173,115,227,198,141, 71,143, 30, 1,
-107, 59, 1, 1, 1, 96, 85, 52,103,206, 28, 92,123,113,145, 70,129,190,125,120,127,243,199,143,119, 2,130,106, 60,188,178,188,
-124,114, 95, 63, 63,237,232,156, 27, 25,225, 2,172, 0, 96, 1,251, 31,185, 6,240,242,242,218,182,109, 27,176,195, 1, 12, 16,
- 63, 63,191,133, 11, 23, 2,235,117, 13, 13, 13, 98,252,232,237,237,181,126,253,230, 79, 31,222, 62,121,246, 60, 63, 59,174,180,
-162, 45,208,201,202,230,231, 39, 6, 86, 98,203, 37, 96,233,223,208,208, 0,233,134, 2, 59,106,192,126, 64, 89, 89,217,104, 29,
-128,191, 62, 64, 6, 0, 1, 68,205, 10,128,194, 21, 68,100,148,242, 16,240,230,205,220,234, 83, 27,177, 14,248, 16,156,254, 5,
-234, 61, 85,189, 17,173,193,142, 60,140,131,167, 28,127, 51,247,205,169,141,213,228,233, 29, 40, 48, 20, 79, 13, 82,176,114,188,
-244,243,207,235,125,123, 89,255,124,191,244,249,255,158,207,127,216, 24, 25,133,255,255,119,148, 20,176,119,115, 22, 50,118,192,
-209,158, 5,245, 0,128, 77, 96, 96,121, 4,108,194, 3, 11,122, 96, 49, 10, 41,196, 33,141,119, 81, 81, 81,107,107,235,157, 59,
-119, 98, 14,227, 0, 69,128, 85, 5,176,185, 13, 84, 15,108,213, 66,186, 17, 12,176,121, 5, 32, 23,168, 0,216,171, 56,113,226,
- 4,193,105,112, 5, 48, 32,211,227,100,233, 5,214, 1,192, 18, 31,232, 60, 96, 15, 0,216,233, 1,246, 93,128,130, 79,159, 62,
-245,244,244, 4, 54,255, 9,106,255,251,247,231,215, 47, 79,127,253,250,200,249,233, 1,159,128, 50, 23,143, 20, 16,237,218,251,
-146,209, 89, 28,214,152, 3,147, 48,245, 86, 86, 86,192,128, 5,150,254,192,154, 64, 88, 88, 56, 46, 46,238,192,129, 3, 68, 58,
-213,210,210,138,157,157,157,239,218,217,236,236,100, 25, 53,213,174,130,228, 5,211, 22, 78, 97,254, 65,124,233, 95, 94, 94, 14,
-244,236,179,103,207, 56, 57, 57,129,145, 2,236,238,180,182,182, 86, 87, 87,143,214, 1,240, 49, 31, 96,161,143,231, 40, 8,128,
- 0,162,114, 15, 96, 64, 86, 16, 97, 45,212,136,108,254, 99,234, 69,110,191, 67,198,115,112,149,227,148,232,197, 83, 22,147, 90,
- 70, 15,251,147,224,128, 37,154,129,179,187,176,148,204,235,235, 87,152, 31,222, 83,249,253,156, 87, 88,220, 74, 87, 67,219, 88,
-231,187, 4,206,253, 65,192,146, 26,216,246, 7, 54,243, 33,131,245,192,174, 0,144, 1, 57,206, 1, 62, 58, 36, 43, 43, 11,172,
- 3, 48, 11, 44, 96,105, 98, 96, 96, 0,172, 3,128,229, 59, 68, 37,124, 81, 13,252, 36, 56,160, 81,134,134,134,103,207,158, 29,
-156,129, 6,116,188, 24, 24,168,171,171, 3,253, 11,172,198,128,222, 7,134, 70, 53, 81,243, 82,255,127,255,250,252,251,215,151,
-239,223, 95,179,179, 11,178,178,241, 50, 49,177, 44, 89,186, 53, 38,218, 27, 90, 11,162,170,134,116, 44,122,123,123,129, 21, 45,
-144,161,166,166, 70,252,181,210, 70, 70,198,204,166,166, 73, 13, 16,189,255,213,212,212,213, 2, 2,240,143, 10, 34,131,206,206,
-206,209, 82,158,152, 58, 0,107,233, 15, 4, 0, 1, 52,108, 47,132, 33,123,233, 39,114,145, 77,106, 19,158, 18,189,163, 0, 63,
-144,213,212, 6, 34, 32, 3,126,246, 38,254,125, 65,161,161,161,130,130,130,144,165, 62,192, 18, 16, 50,164, 3,233, 1, 64, 38,
-126, 33, 7,130, 42, 43, 43, 3, 5,143, 92,249,138,172,119,194,132, 9,171, 87,175,134, 40, 0,157, 20,132,227, 56,104, 96,203,
-151,224,160,202, 32,169, 65,121,192,128,196,230, 2,164, 26,248, 12, 44,253,129,102, 0,131, 13,162, 23,215,152, 23,228,200, 79,
- 72, 80,147,228, 60, 96, 48, 23, 22, 22,146,161,119,180,153, 79,124, 29,128, 75, 10, 32,128, 70, 47,133, 31, 5,163, 96, 20, 96,
-148, 11, 12, 12,232,135, 61,252, 31,189, 17,108, 24, 2,128, 0, 26,189, 18,114, 20,140,130, 81,128,209,248,103, 24,189, 1,114,
- 68, 0,128, 0, 26,189, 18,114, 20,140,130, 81, 48, 10, 70, 40, 0, 8,160,209, 10, 96, 20,140,130, 81, 48, 10, 70, 40, 0, 8,
-160,209, 10, 96, 20,140,130, 81, 48, 10, 70, 40, 0, 8,160,209, 75,225, 71,245,142,234, 37,172, 55, 61, 61,221, 63, 32,125,227,
- 6, 44, 71,110,140,134,213,128,235,109,133,173,184,195,181,200,117,244, 82,120, 92, 0, 32,128, 88,208, 82, 57,166, 10, 34,215,
-141, 13, 42,189, 68,106, 31, 40, 55, 15, 30,128,231,204, 9, 92,231,199, 98,245,254,240,222,139, 0, 41,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,212, 74, 25,200,103, 7,250,218,206,196, 83,109, 64,206, 22, 29, 42,197,
-226,225,195,135,197,197,197,229,229,229, 9, 30,201,137, 12,128,165,127, 90, 90, 26, 3,195,172,141,163, 7,142, 13, 62,240,235,
- 87,249,206,157,105,238,238,179,124,125, 59, 33,189,129,209,106, 0,107, 99, 14,179, 61, 7, 16, 64,195,100, 25, 40,188,196,103,
-100,100,248,183, 82,112,240, 59,248,247,175,175,143, 31, 93,254,245,235,183,138,162,128,131,141,156, 0, 63,251,251, 15, 63,158,
- 62,255,114,251,222,243, 15, 31,223,200,202,233,178,178,225,188,250,245,253,155, 91,199, 14,206,102,102,248, 20,238,205, 96,109,
-204,160, 44,207,112,231,193,255, 35,103,190,111,219,127,113,235,218, 82, 43,251, 84, 65, 17, 53, 34,157, 65, 76,169,141,150, 98,
- 48, 59, 13,144,131,228, 6,115, 29,240,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,142, 6, 8,160, 97, 82, 1, 0, 59, 1,144, 58, 96, 72,148,254, 64,240,228,209,101,113,
- 17, 14, 83, 67, 69,240,253, 74,140,255,254,253,231,227, 97,231, 86,102, 83,144,229,191,118,243, 13, 80, 86, 81,197, 2,151, 94,
- 96,233,111,107,252,169, 32,145,129,153, 25, 84,225,253,254,195,192,205,197,160,169,194, 96, 97,192,176,101,255, 39,160,172,119,
-112, 55,229, 67, 64, 36, 85, 27,144, 58, 96,112, 6,245,245,235,215,207,157, 59,199,202,202,138, 44,248,253,251,247,185,115,231,
-222,187,119, 47, 34, 34,130, 24, 67, 54,110, 0,122, 57, 29, 76,146, 0,224,247, 36, 67,142,189, 67,227,226,137, 17, 6,164, 19,
- 3,241,112,113,182,135,254,255, 23,121,251, 86,233,193, 3,225,167, 79,159,136,137, 61, 82, 82,250, 40, 38,246,159,232, 19,121,
-129,238, 36,230,156, 62, 60, 90,240,115,169,165, 23, 62,248,147,150,182, 19,200,128,144, 16, 41, 32, 99,180, 14,192,218,134,131,
- 28, 13, 4, 23, 1, 8,160, 97,181, 10,136,113,136,184,243,221,235, 59,191,127,255, 54, 51,146,132,139, 48, 49, 49,178,177, 49,
-115,114,176,176,178, 50, 41, 43, 10, 2,123, 6, 64, 53,184, 70,126,128,109,255,194, 36,134, 31, 63, 25,238, 63,102,120,255,145,
-225,195, 39,134,101,155, 24,114, 27, 24,170,122, 24,172,140, 24,152,254,127, 2,170, 25, 77,244, 16,112,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,225, 12,209,130,135,139, 95, 47,114,113,143,135,139, 11, 64,202,125, 8,
-249,203, 87,101, 52,217, 35, 23,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,170, 13, 1, 97,245, 44,229,243, 31,244, 25,249,185,124,249, 50,174,210, 31, 94, 7,224,186, 35,
- 37, 58, 58,122, 41, 24, 0, 25,112,255, 2,139,126,160, 8, 68,150, 62,121, 1, 63, 23, 19,240,189,124,169,120,242,228, 47, 38,
- 38, 86, 70,134, 63,255,254,255,251,253,247,223,159, 63,162,135, 15,125, 20, 17,249, 41, 67,236, 74, 18, 96,177,123,229,202, 21,
- 67, 67, 67, 3, 3, 3,226,181, 32,119,110,208,184, 68,118, 35, 72, 45,253, 49,139,251,157, 72,253,128, 81, 64, 16, 0, 4, 16,
-122, 5,128, 57,125, 74,100,161,134,171, 48, 37, 70, 47, 45,198,142,137, 92,166,130,117, 2,153, 72,189,104,202,136,159,139,126,
-249,250,139,163,181, 28,176, 65,118,248,248,227,111,223,127, 3, 69,140,244, 37, 68,133, 57, 31, 63,253,124,231,254,123, 22, 22,
- 38, 85, 37,193,163, 39,191,170,107, 98,209,123,247,193, 15,107, 99,134,159,191, 25,182, 31,100,216,127,252,191,148, 56,163,146,
- 28,131,179, 13,131,134, 50, 35, 11, 51,232, 28,117, 11, 3,134,238,153, 63,240, 15,248, 16,100,224,105, 53,192, 71,252,209,198,
- 37, 6,225, 4,192,131, 7, 15,240,151,254, 16, 53,184,164,236,192, 0, 82,226, 67, 10,125,120,197, 0,191,208,152,234,128,194,
-230, 63, 16, 8, 92,191,241,235,247,111, 38, 38,166,255,204,204,160, 75, 17, 32, 7,218,253,253,199,126,233, 18,241, 21, 0, 3,
-248, 94,201,163, 71,143, 2,187,170,210,210,210, 82, 82, 82,180,174, 3,200,107,251, 3,139,123,247, 89,238,193,107, 25,210,118,
-130, 24, 64, 46,164, 86, 96,219,124,103,180,112, 71, 3, 88,215,245, 1, 4, 16,225, 85, 64,196,175, 11,194,108, 21, 18,217, 78,
-196, 90, 79, 16, 95,241, 96,117, 57,158,203,211,113, 21,211,240, 9,100, 34,245, 98, 85, 6, 49, 13,216,176,255,183, 10,231,108,
- 4,120,205, 15,104, 9,202,227,103,159,190,127, 7, 93,107,165,162, 36, 8,172, 0, 46, 94,125,117,243,246, 59, 14, 14,102,101,
- 69,129,247, 31,177, 31, 52,255,248,249,127,101,121,144,249, 30,118, 12, 6, 90,140,236,108, 12,127,254,128,250, 1, 2,188, 12,
-247, 30, 49,184,219, 49,200,203,128,212,208, 52, 37,193,203,125, 34,135,164, 7, 10, 96, 29,196, 32,213,169,144,178, 30, 94, 1,
-208,180,244,135, 3, 92, 87,183,227,185,210, 29, 14, 88,239,222,249,249,251, 23, 35, 51,203,223,255,255,129,233,228,207,223,127,
-191,129, 29,129,191,127, 25,111,223,100, 96,240, 34,213, 37,192,126, 0,176, 35,197,205,205,205,207,207, 79,124, 29, 64,228,224,
- 15,133,165,127,117,117,117,107,107, 43,176,244,135, 87, 6, 64, 18, 88, 13, 0, 75,255,205,155,239, 66, 38, 0, 32,179,196,122,
-118,241,163,165, 63,102,233, 15, 4, 0, 1, 52, 88,134,128,176, 22,166, 68, 22,196, 36,173, 85,197,110, 2,149,214, 14, 1, 93,
- 66,140, 81,252,252,172,239, 63,252, 16, 17,226, 10,245,211, 0,230, 79,118,118,102,102, 96,123,237,255,127, 31, 55,101,111, 87,
-101,160, 9,111,223,127, 7,170,193,170, 87, 86,146,241,238,195,255, 26,202, 12, 78,150,160, 33,175, 27,119, 24,244, 52, 24, 4,
-249, 24, 60, 29, 24,254,253, 99, 0,118, 2,110,221, 7,169,193, 31,200, 4, 25,196,111, 36,161,100,220,140,214, 0,243,166,151,
- 85,171, 86,161, 52, 26,254,255, 15, 15, 15, 39,190, 14,160, 91,233, 79, 70,221, 0, 7,239,100,164,217,110,220,252,207,202,192,
-246, 15, 52,239,251,251,239,159, 95,255,255,126,251,243,231,187,138, 6, 25,142,209,209,209, 1,246, 0,136, 44,253, 25,192,215,
-124, 2,155,252,240,226, 27,141,139, 11, 64,122, 9,112,101,104, 92,130, 0,216,252,135, 20,253, 64, 18,185,237, 15,153, 37, 6,
- 86, 6,163,165, 63,214,210, 31, 8, 0, 2,104, 56,172, 2, 34,216,243, 32, 8,254,255,103, 96, 10,127, 79,121, 29, 0, 89,140,
-196, 20,246, 30, 79,243, 31, 8,196, 69,120, 30, 63,253, 12,172, 0,250,166,159,182,179,146, 53,210, 19,103,100,101,132, 44, 7,
-130,172,212, 0,202, 2,213, 96,213,171,172,192,113,244,236,119, 96, 5, 32, 98,204, 80,145,201,144,159,192,192,207, 11, 26,249,
-105,156,196,208,144, 15, 82,112,244, 44, 72, 13, 73, 3,101,100,207,121, 12,242,173, 0,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,128,129,208,142, 78,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, 13,206,101,160, 74, 74, 74,167, 79,159,198,115,199, 8,145,215,243,194,135,128,128, 36,173,123, 0,192,
-146, 29, 82,244,227, 26, 2,194, 37,133,168,213,100,100,222,218,218,253,221,127,224, 23, 27, 43,207,127,150, 31,255,254,125,252,
-245,235,179,147,243,127, 57, 57,162, 59,196,140,192,242,151,248,161,127,184, 22,120,113,143,198, 37,169, 14,192,181,118, 22, 15,
- 64, 43,253,225, 35, 63,163,179,193,248, 75,127, 32, 0, 8,160,209, 10,128,154, 0, 58, 1, 64,104, 20, 72, 72, 84,229,195,199,
- 55, 39,207, 62, 51, 55,150,242,116, 81,218,177,247,222,214, 93,160, 84, 91, 83,108, 5, 44,253,129,226,236,236,108,184,246, 3,
- 27, 89,102,109, 93, 91,218, 63, 15,180, 18,116, 70, 11,104,245,167,139, 53,104, 37,104,127, 45,168,244,239,159,199,240,151,129,
-143,248,253,192,164,182,217,113,245, 24, 6,231, 42, 32,101,101,229,203,151, 47,227,234, 4, 0,155,255,198,198,198,196,152, 3,
- 89, 12, 10, 89, 20, 4,100, 19, 95, 7,160,109, 52, 35,114,223, 25,188, 14,192, 37, 75, 64, 63, 19,211, 47,115,243, 55, 82, 82,
- 95, 46, 93,226,121,244,232,135,162,226, 87,109,237,191,178,178, 12, 68, 95,182, 69, 94,217,141,172, 5,141,139,223,227,200,178,
-104,246,146,234, 12, 8, 64, 46,247, 33,189, 1, 82,135, 52,135, 25,192,179,166, 3, 32,128, 70, 43, 0, 44,171,119,232, 96,148,
-172,156,238,227, 71,151,215,110,185,169,162, 40,232,237,166, 44, 40,192,241,254,195,143,243,151, 95, 2,219,254,192,210, 31, 40,
-139, 71,175,149,125,234,225,131,179,143,157,253,228,237,196, 48,187, 29,180, 19,248,238, 67,134,185,171, 64,109,127, 96,233, 15,
-148,165,188, 64, 39,163,244, 31,156,243,192, 22, 22, 22, 7, 15, 30,100,196,216, 3, 5, 44,253, 85, 84, 84,128, 53, 4, 49,165,
- 63,242,232, 63,164, 43, 64,100, 29, 64,118,113,134,171,148, 39, 92,250,195,234,128,127,242,242,223,128,136,172, 64, 35,163,216,
-197,239, 83,252, 6, 82,162, 23,127,233, 15, 90, 36, 58,226, 39, 0, 24,176,237, 7,134, 87, 9, 0, 1, 68,120, 25, 40,241, 83,
-172,196, 44, 3, 37, 94, 47,241,218, 41,177, 23,171,239,200,179,151,164,185,104, 86, 54,110, 37, 21,139,119,175,239,220,123,240,
-252,248,153, 39,240,179,128,196,197,164, 8,158, 5, 36, 40,162,230, 29,220,125,238,248,180,149, 91,111,181, 77,165,213, 89, 64,
- 68,246, 24, 6,115,233, 15, 4, 18, 18, 18,225,225,225, 55,111,222, 60,115,230, 12, 51,104,174,157, 9, 88,244,179,177,177, 1,
-219,254,234,234,234,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,168, 14,212,193,128, 12,141,152,101, 61,144, 13,217, 22, 48, 90, 1, 12,170, 58,128,225, 33, 22,113,147,106,147, 17,
- 30, 50, 4,175,124, 7, 8,160,209, 75,225, 71,193, 40, 24, 5,163, 96,132, 2,128, 0, 26,189, 17,108, 20,140,130, 81, 48, 10,
- 70, 40, 0, 8,160,209, 10, 96, 20,140,130, 81, 48, 10, 70, 40, 0, 8,160,209, 10, 96, 20,140,130, 81, 48, 10, 70, 40, 0, 8,
-160,209, 10, 96, 20,140,130, 81, 48, 10, 70, 40, 0, 8,160,209, 75,225,169,163, 23,207,177,104, 52,213,123, 15, 12, 86,175, 94,
- 77,134,222,251,247,239,223,189,123,151, 60,189,163,105, 99, 84,239,168,222,161,162, 23, 15, 0, 8, 32,156, 27,193,136, 60, 5,
-147,234,122,169, 14,210, 66, 63, 50,176,177,205, 90,202,137, 71, 13,176, 12,197,179,247, 18,191,155,225,122,123,123,123,139,139,
-139, 73,186, 45, 29,174,247, 74, 31,159, 78,209, 39,210,111, 90,255,175,247,125,202,255, 95,127,129,172, 89,179,102,129, 47,173,
- 37, 30,252, 55,101, 94,241,251,247, 39, 78, 78, 78, 96, 29, 16, 26, 26, 74,187, 40, 32,114, 95, 5, 86,255, 14,148, 94, 92,166,
-209, 39, 1, 51, 50, 50, 50,129, 1,100, 11,219,175, 95,191,152,193,103, 59,255,255,255,159, 97, 20,140, 2,234, 1,128, 0, 98,
-193,149,214,177, 38, 53, 70, 66,183,202, 65, 50, 9,121,122,137,105, 17,147, 13,118,239,222,205,192,161,137,167, 20, 46, 47, 47,
- 23, 19, 19, 67,147, 2, 22,232,248,141,133,232,133, 20,253, 39, 78,156,128, 84, 3, 36,233,253,127,161,150,209,160,121,209, 65,
-208,113, 5, 64, 54, 52,172, 12,154, 9,250,136,247, 90, 17, 48,152,151, 31, 5,105,244, 52,100,213,150,190, 10,172, 3, 64, 21,
- 30, 17,213,128,156,208,201,251,151, 95, 30,121, 46,255,149,135,219,195,225,131,180, 40,227,153,211,199, 62,125,254,225,228,228,
- 68,163,116, 70,211, 70, 3, 30,189, 4, 75, 76,226,147, 37,169, 0, 24,191, 93, 93, 93,165,165,165,196,236, 55, 70, 6,192,178,
-158, 5, 12, 32, 59,215,128,137, 4,104,200,223,191,127,255,128, 1,144, 65, 35, 7,111,221,186, 21,127,224,120,121, 17, 62, 77,
-122,219,182,109, 36,169, 31, 5,116, 3,144,253,192,104,235,254, 1, 2,136,133,164,210,223,216,216,248,236,217,179, 4, 51, 33,
-214, 76,133, 71, 47,154, 57,192,178, 24, 50,172, 65,246, 1,147,105,190,179, 24, 56,213,102,173,114, 0, 53,141, 87,243,131, 74,
-127, 66, 37, 56,230,217,241,192, 18, 28,255,169, 44,112,189, 64, 54,176, 5,109, 1, 6, 36,233,133,148,248, 16,178,179,145, 1,
- 94,250,151,249,115,116,109,252,129,199,131,252, 55,139,181,229,152,191,254,248, 95,228,195,113,226,246,159,239, 63,255,127,255,
-205,224, 40,125,245,202,163,191, 4,187, 2,143, 47,245,159,125,205,205,199,205, 40, 46, 38, 46, 38,173,242,240,201, 79,117,181,
- 63,236,204,175, 54,111,121,179,126,253,250,192,192,192,209,172, 66, 21, 0,140, 95, 95, 95, 95, 96, 29,128,150,134,141,140,140,
- 26, 27, 27,129, 82,216, 91,100, 44, 44,108, 48,240,248,241, 99, 85, 85, 85, 96, 53,192,203,203,123,231,206, 29, 30, 30,158,211,
-167, 79, 31, 63,126, 60, 59, 59, 27,103,202, 7, 71, 61, 60,255,194,115, 34, 68, 4,200,133,180, 18,176,130, 77,155, 54, 97,106,
-129,139, 0,185,196, 20,232, 27, 55,110, 36, 73, 61, 85,192,139, 23, 47, 36, 36, 36, 70,147, 28,158,114, 31, 23, 0, 8, 32, 22,
-146, 74,127,252, 54,225, 57,168, 4,255, 17,231,104,165,127, 71, 71, 71, 69, 69, 5, 92,132,248, 58, 32,205,120, 22,131,176,218,
-172, 93, 14,240, 86,191,171,171, 43,144, 1, 33, 49,199,197,144, 75,112,172,165, 63,102,159, 0,211, 83,240,150, 62,176,198, 66,
- 14, 10, 98,244, 98,109,233, 3, 75,127,252,222, 20,190, 85,164, 42,197,204,201,198,168, 32,202,244,250,211,255, 63,127,153,223,
-124,254,255,241,219,255,187, 47,255, 1,179,158,200,191, 75, 64,127, 41, 41, 41, 97,111, 17,191, 90,173, 34,167,244,250,245, 75,
- 5, 25, 81, 93,109, 37, 22, 30, 65, 37,153, 15,223,255,126,124,254,252,239,211,247, 63, 56,127, 2,181,234,227,210, 75,187, 17,
- 33,226,163,152, 60,189,152, 45, 18, 90,143,165, 0,195, 17,104,169,150,150,214,230,205,155,145,163, 3,152,137,240,148,254, 64,
-192,202,202,202,193,193,241,230,205, 27, 53, 53, 53, 67, 67, 67, 96,125, 48,105,210, 36, 96,171, 95, 87, 87,119,221,186,117,192,
- 10,224,210,165, 75,192, 42, 1, 87, 63,192,223,223, 31,226, 95, 92,185, 24, 79,161, 12, 44,187, 33, 33,131,181, 1, 7, 20,127,
-249,242, 37, 49, 21, 0, 73,234, 33,197,247,254,253,251,177, 74, 57, 58, 58, 18, 83,178, 3,181, 75, 73, 73,169,171,171,143, 86,
- 3,164, 2,128, 0, 98,193,204, 93,184,218,239,244,113, 16, 48,183, 0, 75,127, 34, 43, 12,156,163, 61, 12,105, 64,114,245, 44,
- 51, 6,182,239,120, 70,255,209, 74,112,180,202, 12,127, 9, 14, 1,240,202,227,196,137, 19,200,205,127, 98,244, 46,205,227,193,
-188,198, 56,122,210, 87,252,186,254,253,251,199,193,198,200,204,196,192,197,206,240,225,219,255, 95,127,255,115,115, 48, 2,155,
-255,223,127,253,151, 22,100,250,247,143,225,214,243,191,123,246,236,193,218, 9,248,244,252, 4, 63, 43, 55, 43,235,255,212, 80,
-179,191,127,254,191,120,255,235,209,253,143, 76, 12,143, 5, 4,126,190,122,249,128,141,249,227,181, 7, 31,158,254,216, 67,226,
- 92, 2,165, 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,217, 51, 52,113,160, 32,241, 5,250, 51, 48, 24,173, 6, 48, 1,124,204, 7,107, 87, 0, 32,128, 88,136,105,197, 83, 82, 28,
-147, 10,144,219,209, 68,181,250,103,165, 51, 72, 50,204,242, 5,101,197, 89,103,211,224,163, 61,224, 86,255, 71,228,126, 0,254,
- 18,252,213,171, 87,240, 82,155,200, 18, 28, 63,128,212, 43,192,242, 2,247, 97, 27, 56, 11, 32,200,248, 15,166, 94, 96,153,245,
-250, 64,145,132, 28,243,151,239,160,226, 11, 88, 83,127,251,245,255,251, 47,134,223,127, 64, 70,129,110, 0, 7, 23,106,151, 47,
-158, 5,214,163, 12, 12,108,104,198,126,120,121,149, 77, 84, 80, 84, 64,224,195,251,239, 31, 62,190, 63,113,245,229,211,247,255,
-185,184,190, 41,203,127,249,254,229,141,158,234,111, 45,133,159,179,150,159,189,115,231, 14, 3, 3,199,104,206,161,176,249, 15,
- 4,192,230, 63,176,184,223,178,101,139,182,182,118,104,104, 40,193,210, 31, 82, 1,188,126,253,154,139,139,203,206,206,174,167,
-167, 7,216, 33, 0, 38,131,133, 11, 23, 2, 75,127, 96, 35, 99,239,222,189,151, 47, 95, 22, 17, 17,193,115,149, 13,176,254,198,
- 53, 4, 52,123,246,108, 60, 86, 83,101, 8, 8,104, 8, 25, 67, 64,192, 82, 27,179, 2, 32,227,248,166,209,106,128, 84, 0, 16,
- 64,131,235, 56,104,204,123, 69,136, 28, 28, 0,181,247, 43,238, 51, 48,179,165,185, 41, 48, 8, 40,204, 2, 95,252,135,127,244,
-159, 42,131, 24,144,137, 95,120,219, 31, 25, 64,102, 5, 48,187, 23, 68,182, 88,151,230,113, 99,246, 6,120,175, 21,223,255,249,
-255,197,135,127,140,140, 76,220, 63, 64, 93,245, 63,127,255,255,248,205,240,227, 23,232,154,248,159, 96,198,239, 63,176, 22, 40,
-106,229,193,115,181,232,233, 51, 57, 5, 57, 30, 38, 14,230,183,223,191,239, 61,253,228,214,227,167,111,223,125, 49,209,251,251,
-243,219,159, 31,191,254,126,255,241,239,225, 99,134,111,223, 25,186,187,187, 71, 79,136,194,218, 83, 33, 50, 65, 66,154,255, 90,
- 90, 90,192,134, 63,176, 50, 0, 86, 0,144, 78, 0,193,210, 31, 50, 4,100, 96, 96,192,193,193, 1, 44,244,147,146,146,218,219,
-219,129, 37,233,201,147, 39, 15, 30, 60,120,233,210,165,143, 31, 63,170,170,170,126,250,244, 9,207, 45, 55, 1, 1, 1,152,157,
- 27, 72,143, 7,127,255, 96,160,134,128,176,118, 2, 72,106,254,143, 86, 3,100, 3,128, 0, 26, 20, 21, 0,100,232, 31,210, 77,
- 70,174, 3,224,153, 13, 50, 88, 79,252, 72, 49,164,220, 7, 54,252,193,163, 64,108,179,150, 82,223,205,144,149, 63, 46, 46, 46,
-123,246,236,193,213,149,193,213,155,193, 90,184, 19, 51, 22, 20, 55,229,171,148, 16, 83,148, 13, 27,176,172,231,227, 98,100,102,
- 4,229,243, 95,127,255, 3,185, 95,127,254,255,250,227, 63,176, 67,240,247, 31, 3,214,133, 45, 64,189, 6,234,247, 84, 85,222,
-237, 56,248,234,221,199, 31, 22,122,159,204,248,191,176,178,253,252,246,227,223,147,231, 64,189,140,127,255, 50,138, 8, 49, 50,
- 48,254, 27,205, 21, 84, 1,144,244,140, 60,161, 2,172, 9,144,139,102,172, 51, 1,192,146,189,172,172,140,133,133,101,209,162,
- 69,243,231,207, 79, 76, 76,236,232,232, 0,150,200, 15, 30, 60,248,254,253, 59, 48,155, 0,219,254, 25, 25, 25,120, 22, 47,145,
- 61,245, 58, 80, 67, 64, 88, 59, 1,228,157,222, 58, 10, 72, 5, 0, 1, 52, 88,122, 0,200,195,214,152, 5, 61,174, 66, 22, 25,
-204, 58,155, 6, 43,250,111,175,158,116, 31,188, 10, 8, 81, 31,224, 25, 5,162,100,132, 7,232, 48,120,243, 31,210, 27,128,179,
-129, 61, 0,200, 30, 43,204,201,103,130,165, 63,100, 21, 16,166, 94, 96,225,254,237, 39,176,184,255,255,225, 43,176,225,255,159,
- 21, 28,123,127,254,130, 26,254,192,162,255,237,231,255,175, 63,253, 63,255,224, 15,176,144, 1,150, 20, 87,159, 50,160,233,125,
-252,252,215,157, 59,239,143,157,123, 15,108,228,221,184,243, 47,210,239, 15,203,255,255, 47, 94, 49,236, 58,204,240,249,219,255,
-127,255, 24,156, 44, 24, 57,217, 25,188,188,253,241,175, 52,220,176, 32, 61, 32,129,162, 21,186,148,220, 32, 70,210,189, 11,112,
- 32, 36,180,135,110,137, 25, 45, 1, 3,185, 70, 70, 70,231,206,157,219,188,121, 51,178, 56,174,169, 96, 96,219, 66, 64, 64, 0,
-210,136,158, 55,111, 30,176, 31, 0,172, 9, 32, 53, 7, 80,234,195,135, 15,192, 30,192,183,111,248,238,122, 73, 77, 77, 69, 30,
-186,129, 52,255,241,143,255, 12,236, 16, 16, 90, 39,128,146,230, 63, 68,251,104,219,159, 72, 0, 16, 64,131,165, 2, 56,123,246,
- 44,174,181, 43, 64,113, 2,235, 71,217,185, 87, 43, 28, 98,248,115,150, 65,145, 59,173, 85,113,214, 1, 96, 71,123, 22,172, 50,
-112, 37,126, 20, 8,121, 37, 40,230,170, 80,204, 28, 14, 44,197, 32,165, 63,242, 12, 48,164,237, 15,225, 98,237, 1,192,245,146,
- 87,178,220,190,125,251,209,209, 73,255,255,255, 99,252,198,192,198, 2,222, 37,244,231,255,223,255,160, 18, 28,216, 15, 0, 86,
- 6, 64, 84, 88, 12,234, 78, 93,125,250, 4, 83,239,131,163, 19,181, 21,254, 29, 58,255,151,137,137,225,197,107, 70, 78, 14,134,
-157,135, 25,190,125, 99,252,255,143,193, 72,139,245,209,179,127,246, 78,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,111,198,111,103, 29, 86, 96, 1,240,
-251,207, 63, 14, 86, 96,227,142,225,243,143,255, 63,255,128, 6,127,206,222,253,251,231,223,127, 92,235, 56,129,122, 23,205,254,
- 99,111,192, 28,229, 3,154, 70,254,248,153,225,243, 87, 70, 21,249,255,127,254, 0,115, 60,199,219, 15,255,158,190,248, 85, 88,
-238,131,191,237, 63, 33,159, 65, 77,142, 97,114, 17, 67,110, 31, 69,117, 0,217,125, 2,242,244, 82,190,238,147,188,148, 15, 44,
-253, 27, 26, 26,144, 27,251, 93, 93, 93, 64, 46,174,221, 97,191,126,253, 2, 22, 97, 63,126,252, 96,102,102,230,226,226, 2,138,
-172, 93,187, 54, 56, 56,248,251,247,239, 64,193,159, 63,127,242,240,240, 0,171, 1,252,222, 33,111, 45,208,192, 14, 1,193, 59,
- 1, 16,198,104,209, 79, 31, 0, 16, 64, 36, 84, 0, 20,150,254,120,180, 3, 11,125, 72, 41, 15, 25, 55,135, 47, 57, 69,110,248,
-163, 85, 12, 40,128,153,145,129,141,137,129,147,153,129,135,133,225,231,231,213,237,172, 12,156,167,210, 66, 20, 25, 56,133,102,
- 45, 38,170,225,143,117,205, 15,164, 4,199,191, 40, 30,185,244, 71,158, 15, 32, 70, 47,254,210, 31,143,222,246,222, 25,133,185,
- 25,156,236,192,214, 34,131,142, 28, 51,176,240, 6,150, 6,144,162,255,239,127,230,146,146, 18, 60,134, 55,119,205, 40, 46,200,
- 0, 86, 21,160,126,195, 95, 6, 96, 75,207,203,145,225,227,103,198, 11, 87,191,255,248,205,228,231, 23,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,253,147,103,
- 0,131, 11,152,209,142,220,248, 3, 89, 15, 10,206,114, 64,189, 37, 4,245,246, 78,152,145,153,153, 14,209, 5, 36, 15,157,102,
-248,250, 13, 84,158,248,249,121,187,187,187,227, 41,253,203, 99, 24, 4,120, 24,158,189, 97, 0,213, 61,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, 60,110, 72,125, 64,234, 13,189,240,
-224,130,204,250, 18,223,225,152, 62, 29,161,247,243, 23, 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,172,144,129, 12, 57, 57,185, 15, 31, 62,212,214,
-214, 2, 43, 0,105,105,233, 47, 95,190, 0, 5, 33, 51, 1, 4,173, 38, 99, 20,232,197,139, 23,148,123,153, 42,134,140, 2,186,
- 1,128, 0, 26, 20,151,194,195, 1,176, 8, 35,195, 28,178, 87,248, 80,177, 79, 67,240,232, 55, 50,186, 2,196, 4, 23, 86, 54,
-169,122,137, 41,253, 41,105,230, 15, 84,186,162, 74,252,146,103, 8,252, 56, 79,248,137,158,154,154,154,243,230,205,251, 7, 6,
-120,218,239,144,214, 61, 80, 13,176,160,135, 28, 6,199, 0,158, 25,166,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,216,178,122,232,253,121,116,168,129,
-111,221,186, 5,191,147,160,168,168,104,240, 31,130,136, 22, 86,215,175, 95,103, 0,175,113,164,169,165,192,100,224, 31,144,190,
-113,195, 76,180,100,176,109,251, 57,160, 32,214,132, 1,148,194,106,148,151,167, 17,241,246, 2, 75,127, 95, 95,101, 56, 27, 87,
- 29,128, 11,124,254,242,249,222,179,123,223,254,127, 99, 96,100, 96,251,199, 42, 39, 42, 47, 42, 44, 58,218,234, 28, 5,131, 7,
- 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,251, 79, 16,255,195, 39, 6,240,249,
- 69,248, 78,176, 0, 3,228, 11, 41,251,250,250,136,185, 0,157,137, 17,180, 17, 23, 66, 2, 1, 86,198,244, 25, 52,169, 44,145,
-195, 10, 82,244, 19, 31, 86,100,215,223,144,210, 31, 92,112,131,234, 0,226,141,130, 84, 24, 24, 21, 0,105,206,248,245,171,124,
-231,206, 52,119,247, 89,190,190,157,144,222, 0,145,213,192,145,171, 71,228, 13,101,147,131, 19, 4,185, 4,255,253,249,251,227,
-255,207, 29, 39,119,237, 59,184,215, 74,201,154,131, 99,244,190,157, 81, 64, 63,128,124, 23, 24, 90,246, 4, 8, 32, 42,159, 6,
-138,118, 46, 38, 25,128,140, 35,187, 8,110,139,199,211,150,135,223, 66, 12,100, 67, 72, 52, 89,162, 14,146, 20,224,187,116,111,
- 5, 39,131,204, 95,134,163,175,230,156,187,120,247,109, 80,199,124,218, 69,231,165,203, 87,244,116,117,128,101,253,149, 43, 32,
- 6, 80, 4,194,128,139,252,195, 27, 30,248,111,124,196,115,105, 56, 36,172, 18, 18, 18,128,108, 8,137, 94,250, 67, 14,151,192,
-166,209,217,121,123,122,186, 39,217,117, 0,176,244, 7, 59,123,214,198, 13,132,139,120,184, 22, 82,203,122,204,230, 63,144, 12,
- 14, 94,187,115, 39,136, 76, 75,187, 11,233, 13, 16,236, 10, 0,211,204,254,155,251,178,115, 50, 77, 68, 13, 57,249,249,255,255,
- 2,157,210,196,204,194,166,226,162,114,195,248,102,199,172, 78,115, 17, 11,200, 65,111,180, 6, 27, 54,108,192, 60, 25,148, 14,
-122,169, 2,200,184,234, 29,178, 15,121,244,100, 8, 92,165, 63,132,139, 92, 7, 0, 4, 16, 11,114,215,158, 20, 54, 27,166, 77,
-175, 94,189,130,159,132,140,167,134, 96, 96,215,192, 83, 70, 51, 98, 20,217,196, 12,197,224, 41,182,240,220, 37, 0, 44,152,128,
-141,116,204,114, 31,114, 41, 49,188, 98,192, 3,128, 13,255,167,239, 63,174,203, 8, 22,102,180,190, 59,187, 68, 41, 80,105, 55,
-141, 75,127, 32,128, 20,250, 64,160,163,163, 3, 23,129,244, 9,224, 34,148,180,241,177, 22,211,144,176,194, 44,247, 23, 44, 88,
- 0, 12, 43, 79,107,195,237, 71,207, 51,240,114, 51,124,250, 66, 11, 47,131,199,115,102,225, 26,213, 33, 66, 47,201, 99, 65,240,
-193,159,180,180,157, 64, 6,132,132, 72, 1, 25,248,235,128, 51, 55,206, 36,167, 36,218,170, 58,252,253,249,243,207,223, 63,140,
-160, 83,187,153,255, 51,252,123,249,250,153,166,168, 70, 85, 70, 85, 75, 87,139,179,142, 11, 29, 74,255,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, 37, 59, 49, 41,132,146,177, 32, 72,185, 15, 33,
-127,249,170,176,109,190,131, 95,253,183,239,223,184,212, 56, 45, 36,205,127,126,253,202,194,206,206,194, 2,205, 98,247,238,220,
-217,180,113, 99, 82, 98,130, 2,187,156,161,189,193,147, 43, 79,100, 36,101,104,151,176, 33,165, 63,131, 66,255,182,218, 66, 82,
-235, 0,160,222, 9, 19, 38,168,169,169, 77,158, 60, 57, 55, 55,151,158,117, 0,188,232, 39, 79, 47, 68, 35, 25, 93,135,225,221,
-252,135,148,254, 16, 6,176, 14, 64,238, 4, 0, 4, 16, 53,135,128,128,133, 59,100,116, 24, 88, 19, 32, 87, 0,112, 46,254, 91,
- 86,112, 77, 5, 19,204,228, 97, 97, 97,148, 59, 30, 94, 32,162, 53,252, 33, 87, 81,226,154, 85,255,206,240,232, 75,160,249,127,
-222, 18, 6,151,218, 47, 12,203, 25,230,128,138,164,255,171, 75, 88,227, 38,255,249, 67,212,221,138,192,108, 70,106, 37,247,106,
- 30, 67,227, 12, 6, 89, 25,134,151, 91,216, 22,206,253,149,176, 2,139, 8,229,227,102,120, 0,124,202,247,249,134, 14, 94,109,
- 14, 30,213,130, 85, 29, 41,250, 58, 18,234, 62, 45,120,194, 10, 79,188,227, 31, 32,130, 36, 6,120, 33, 14,228, 66,230,126,137,
- 31, 62, 34,111, 44, 8, 88,220,163,137,236, 68,234, 7,224, 2,207, 95, 61,119, 11,117,227,229, 19,252,203,248,231,240,193, 67,
-159,191,124,241,245,243,123,253,234,213,154,181,235,146, 19, 19,216, 57,216,153,254,179,186, 27,185, 79,218, 63,153,118, 21, 0,
-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,225, 32, 92, 99, 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,143,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,107,255, 0, 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, 9, 94,231, 66, 73,233,223,155,114,149,129, 67,133,225,197, 84,
- 20, 9, 14, 21,160,120,241, 28,124,117, 0, 80,175,191,191, 63,176,196,127,251,246, 45,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,134,131,128,205,127, 72,209, 15, 36,145,219,254,144, 89, 98, 96,101,128,166,158,151,147,247,217,199,103,102, 10,230,223,
-127,254, 96,248,254,227,207,175,223, 85,229,229,140, 76, 12,223,190,126, 1,214, 11,127,254,254,103,103, 97,125,253,229, 53,235,
- 95, 54, 90,164, 13, 96, 25, 13, 44,229,129,101,189,166, 34,138,249,215,239,255, 42,158,163,141,191, 4, 7,202, 2, 75,121, 96,
-243, 31, 88,226, 35,139, 95,185,114,101,227,198,141,180, 43,253, 37,192,128, 42,163,255,112, 48,218, 9, 32, 18, 0, 4, 16, 53,
- 11, 41,120,245, 0, 44,250,129, 21, 0,100,240, 7,179, 86,216,127,254, 3, 49,101, 52,241,121,155,146,101,160,240,230, 63, 90,
-209, 15,169,174, 8,186,225,226,221,183,191, 47, 55,190,100, 56, 42,225,213,195,240,241,211,221, 89, 37,202,153,253, 47,230,151,
- 48,176,178, 48, 48,209,234,152,141, 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, 26, 37, 15,204, 58,128,152,
-210, 31,174, 23,232,187,174,174, 46, 73, 73, 73,104, 19,231,238, 93, 96,164,211,161,237, 79, 73, 53,128,214,252, 31,237, 4, 16,
- 15, 0, 2,136, 86, 27,193, 32,197, 61,114,173, 64,228,141, 37,104,121,155,200, 98,133,188,101,160,152,205,127,226,139,126,232,
- 16, 80,199,252,117, 12, 12, 30,237,222,255, 87,151, 48,134,245, 2,235, 3, 70, 33,193, 59, 79, 62,129,154,255,204,204, 52,138,
- 51,204, 85,255, 36,237, 3,192, 83, 41,226,175, 21, 32,205,255, 20, 7,189,130,158,137,149, 85,229,162,124, 98, 87,175, 61, 74,
-184,182,140,214, 43,181, 48, 75,109,248,208, 25,113,203,135, 8, 15,248,224, 1,104,165, 63,124,228, 7,215,108, 48, 7, 7, 7,
-203, 3,214,253, 15, 15,132,234,134,124,250,241,137, 17,212, 12, 0,226,127,127,255,254,255,247,231, 15, 55, 59,239,177,143,231,
-111, 31,191,227,106,228, 74,187,224, 66,212, 1,146,143,174, 63,151, 35,178,244,135,235, 45, 43, 43,155, 60,121,178,128,128,192,
-219,183,111, 27, 26, 26,232, 57,242, 67, 70, 53,128,217,252, 31,237, 4, 16, 15, 0, 2,136,154,251, 0, 48,123, 3,200,219, 92,
- 33,157, 0,146, 26,167,116, 56,140, 1,222,252, 71, 94, 0, 10,244, 38,188,218, 32,184,149, 23, 82, 7, 4,182,207,251,191,150,
- 65, 36, 97,230,129,130, 16,155,206,165, 12,172,172,220, 28,108, 52,114, 51,124,177, 63, 26,131,164,125, 0,100,244, 0, 32,205,
-255,130, 89,155,171,146,221,164, 36, 28,224,131,126,196,135, 21,172,236,246,116,118,222, 14, 27,255, 33, 97,236, 14,185, 69, 15,
- 63, 25,130,186, 3, 62, 4, 1,114,185, 15,233, 13, 96, 14, 91, 25,106, 24,110, 94,182,249,111,248, 31,123, 89,123, 97, 94,225,
- 31,191,127, 0, 67,155,141,133,237,195,247,111, 39,158,236, 93,176,100,161,163,150, 35,173, 19, 54,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, 77,122,102,123, 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, 59, 90, 6,141,130, 1,175, 3,112, 73, 1, 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, 24, 0, 6,130,137,141, 90,232,228,185, 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,185, 30, 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, 95,157,150,158,158, 14,
+ 36,103,206,156, 73,103, 27,103,204,152,193,200,200, 56,236,155, 12, 16,207, 2, 65,100,100,228,154, 53,107, 32,236,144,144,144,
+209,198,212,240,139,104,122,102,162, 81, 48, 32, 0, 32,128, 88,104,145, 2,110,223,190,221,211,211, 3, 97,151,148,148,168,170,
+170,210,173,208, 7, 50, 30, 63,126, 12,100,203,202,202, 66,164,104,157,136,129, 54, 62,120,240, 0,200, 80, 80, 80,160,115,197,
+131,171,104,198,229,113, 96,155, 29,191, 9,203,151, 47,199,239,126,160, 21,171, 86,173,130,176,215,175, 95,239,234,234, 10, 97,
+ 3,107, 2,218,213, 1,198,198,198, 64,242,236,217,179,100,200,142, 76,112,239,222,189,206,206, 78, 56,183,188,188, 92, 73, 73,
+105,144, 87, 27, 3,232,230,145, 12, 0, 2,136, 5, 79, 33, 14, 33, 73, 45,190, 33,197,144, 81,153,133,176,174,196,219,203, 47,
+122,186,122,232, 83, 44, 2,203,125,120,161,143, 75,132, 22, 0,232, 53, 96,209,255, 0, 12,118,236,216, 65,255,118, 19,188,242,
+131,212,127, 93, 93, 93, 64,110, 89, 89, 25, 86,197,129,129,129, 16,198,159, 63,127,127,253,254,249,235,231, 47, 8,248,243,231,
+ 15, 46, 45, 88, 75,127, 52, 0,172, 9,104, 90, 7,224,169,189, 32, 21,192, 40,192,213, 14, 0, 2, 72,193, 74,135,100, 9,177,
+154,140, 44, 48,128,110, 30,225, 0, 32,128,112, 86, 0,192, 38,124,137,182, 6,144, 36, 41, 14,128, 17, 9, 41,250, 33, 92, 32,
+195,117,113, 0,176, 26, 24,168,238, 36,164, 14,160,181,213,240, 58,192,195,195, 3, 72, 2,217,116,243, 44, 48, 96,247,239,223,
+ 15,100, 56, 58, 58,162,213, 1,120, 0,176,184,255,245,235,247,175, 95, 40,165,255,153, 51,103, 76, 76, 76, 8,218, 24, 22, 22,
+ 6, 31, 2,218,189,123, 55,188, 2, 32, 35,183, 19, 25, 74,192,214, 61,176,244,119,115,115, 67, 22,220,181,107, 23,176,191, 2,
+ 97, 99,157,138, 24,225,165, 63,114,216,146, 81, 46,147,173,133,140,126, 0,181,220, 60, 10,200, 0, 0, 1,196,130,167,249,111,
+ 39, 42,218,195,112,131,248, 78, 0,114,233,191, 59,118, 3,180,104, 88, 28, 0, 20, 1,138, 19,140, 75,204, 86, 0,169, 77, 0,
+ 92, 77,126, 90, 36, 35, 52, 51,225,117,192,239,223,127,102,204,152, 65,121, 35,136, 24,237,104,165, 63, 92, 35,214,144, 68, 41,
+253,127, 3, 75,255,159, 63,193,149, 0,188,244,255,255,239, 63, 49,165, 63, 80, 37,132,221,219,219, 11,111,242,195, 39, 3,136,
+119, 51,154,179,137, 7,240,162, 31, 88, 3, 25, 26, 26,142,230, 97,228, 81, 20,172,137, 7,158, 36,128, 10, 8,142,171, 32,143,
+166,194, 53, 18, 19, 77,200, 9, 15,174,158, 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,128, 29, 51, 72, 1, 16, 4,162, 40,132, 29,165, 43,216,186, 67,116, 19,111,101, 71, 16,218,
+116,165,136, 22, 66, 95, 63,197, 64,165, 25, 45,251,136,136,136, 12,168,111,156, 95, 37,190,255, 24,176, 8,120,178, 17,115,198,
+ 65,127, 99, 12,142, 16, 61, 51, 1,231,185, 38,161,166,159,100,251,176, 14, 72, 51,241, 5,253,193,250, 51,178,145, 3,128,212,
+ 86,235,210,221,232,174, 64,227,174,108,192, 36,105, 23,117,126,240,247,244,247, 1,251,107, 48,127, 36,253,189,247,243, 50,103,
+ 67,101,149, 32, 11,133, 33,234,161,249, 19, 98, 22, 78, 14,198,165,231, 66,250, 3,253,168,114, 72,255, 90,213,255, 51,206,218,
+ 38,156,148, 38,123, 26,229,239,126, 96, 92, 44,233,127,247,177,187,140, 25,244,199, 93,178,214, 58,231, 74, 99, 6,253,149, 82,
+232,255,107, 80,164, 77, 0,118,172,102, 5, 64, 16, 6,215, 78, 82, 93,123,255,187,189, 93, 34, 88, 94,154,142, 70,100,216, 12,
+164,139, 10,130,138, 32,202,190, 63,200,200,127, 30, 95,129,155, 56, 3,101, 62,163, 63,153, 6, 28,153, 3,112, 87,200, 37, 31,
+208,243,151,183, 75, 57, 0,155,219, 55,231, 92,105,134, 67,217,250, 28, 95,155,164,113,190,114,174, 58, 58, 53,206,153,186, 13,
+185, 63,194,127, 20,255,140,254,222,123,107,173, 89, 77,237,116, 66,235,229,156,245,177,119,184, 34,255, 62, 70,127,130,126, 0,
+ 80, 74,141,211,208,202,184,146,175, 21,122,202, 71,242,184, 37, 66,146,179,236, 35,145, 3,138,174, 77,232, 31, 2,141,198, 1,
+133,237, 16, 64, 44,120,154,255, 16, 64,252, 76, 0,124,232, 31,121,200, 8,206,134,203, 82, 55,189,162,173,249,129,112,177, 50,
+168, 8,102,204,152, 1,159,248,133,143,248, 3, 29, 3, 20,255,241,253, 59,241, 21, 0, 80,203,252,249,243,159, 60,125,202,202,
+204, 44, 46, 33, 1, 47,253,243,242,242,180,181,181,241,100, 27,160,141, 64,101,240, 58, 0,185, 95,130,127, 6,226, 23,184,252,
+255, 13, 42,253,255, 66, 74,127, 96,109,240,237,219,183, 47, 95,190,124,254, 76, 84, 5, 0, 31, 2,130, 0,226,219,254,171, 86,
+175, 98,248,207,240,230,213, 43, 32, 23, 52,216, 4,236,234,255,255, 15,170, 3, 86,175, 14, 11, 13, 37, 38,129, 33,151,254,172,
+172,172,236,236,236, 28, 96, 64,164,203, 71, 1,193,145, 31, 60, 5, 55,169,171,171,177,142, 8,225, 7,161,161,161,144,162,159,
+164,213, 4,240,210, 31, 90,162,177,176, 0, 91, 54,163, 99, 65, 68, 2,128, 0, 98,194,211,252,135, 0,226, 59, 1,111, 47,191,
+ 64, 54, 4,141, 13,151,165, 34, 0, 38, 44, 72,209,143,127,193, 15,213,231,129, 33,235,253,119,236,216, 1,239, 7, 64, 74,127,
+ 61, 61,189, 31,192, 26,224,251,119, 80, 25,247,255, 63,193, 44, 55,117,218, 84, 96,235, 91, 70, 90,250,247,223,191,104,165, 63,
+193,108, 3,169, 3,144, 27, 92,144,213,168, 88,251, 37, 40, 21,192,175,223,144,210,255,244,169,211,223,190,127, 7,150,158, 31,
+ 63,126,252,240,225,195,251,247,239,137, 15, 1,200, 40, 16,241, 67,255,160, 4,240,230,237,219,183,111,222,188,125, 7,162,193,
+ 76,160,160,134,166,230, 59, 48,131,152,230, 63,144, 4,150,254,208,134, 63, 55, 55, 15, 15, 47, 47, 15, 47,144, 49,154,141,113,
+149,230,196, 55,192, 33, 43, 8,224, 12, 92,108,146,108, 71, 27, 17, 34,168,203,197,197, 5, 88, 7, 0, 75,127, 87, 87, 87,226,
+251, 28,192,178, 30, 88,226,195,185,163,165, 63, 73, 0, 32,128,152,240, 55,255,145, 59, 1,248, 13, 42, 41, 41, 57,215,117,130,
+ 1, 60,235, 11, 84, 12, 95, 69, 10,100, 3, 69,128,108,160, 44, 80, 13,237,124, 66,139,150, 62,254, 12,147,145,145, 1,100, 0,
+ 75,211,107,215,174,157, 63,119, 78, 95, 79,255,199, 15,112, 7,224,251,247, 37,139, 23, 67,100,241, 36,247,222,222, 94, 45, 77,
+ 45, 96, 5, 0, 12,165, 63,191,127, 61,125,242,148, 12, 55, 32,179, 33, 27, 17, 8,244, 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,128,128,120,171, 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,229,226,226,226, 1,150,253, 64,
+204,195,197,201,197,249,226,197,139,209,108, 12, 1,229,229,229,240,242, 23, 62,185, 10, 97, 64, 4, 33, 10,136,108,182,227, 31,
+ 23,194, 95,250, 19,223,246, 71,115, 51,176, 14, 0,150,254, 36,185, 25,185, 14, 24, 45,253, 73, 5, 0, 1,132,101, 8, 8,185,
+249, 15, 23,233, 97,184,129,223, 32,200, 80, 15,176,153, 15, 89,250,217, 19, 11,173, 48, 32,165, 63,164,249, 79,112, 53,209,237,
+213, 54,228,117, 2,240,148,254,180, 91, 6, 10, 41,115,129, 13,127, 51, 51,179, 31, 63,127,126,255,241, 29,220,250,255, 14, 98,
+252,248, 49,101,202, 20, 92, 57, 7,178, 82,243,239,223,191,103,207,158, 99,101, 97,134,132,204,253, 7, 15,158, 62,125,186,124,
+249,138,200,200, 8,160, 8,188, 31,128, 53,131,193, 7,157,208, 90,112, 4, 87,160, 66,218,254,199,143, 31,255,250,229, 27,104,
+220, 31, 84, 30,127,250,244,233,227,167, 79, 95,136, 31, 72,129, 52,255,225, 59,129,137,169, 6,128,138,225,108, 69, 5, 5, 96,
+209, 15,100, 0, 75,255,251,224, 94, 11,178, 44, 30, 96,105,101,201,206,198,206,201,201, 9,236, 1,176,179,179,179,178,178,210,
+185,214, 31,228, 0,121,181, 12,124,241, 12,188, 38, 64, 83,128,191, 16,199, 58,148, 79, 82,207,131,200,106,131, 90,110,134,212,
+ 1,163,165, 63,169, 0, 32,128, 88, 48,199,127,252, 14, 28,198, 94, 58, 19, 90, 15, 10,105, 62, 64, 86,130, 66,202,125,248,224,
+ 15,176,249, 79, 48, 53,144, 93, 76, 19,172, 3,104,218, 15, 64,203, 33, 75, 22, 47, 1,150,254,144, 29, 86, 88,215,227, 35,175,
+211,255,247,239,175,158,190,209,197,139,151,174, 95,187,198,194,202, 10, 44, 25,159, 60,125, 2,108,234, 50, 51, 51,135,133,133,
+ 1,235, 0, 6, 6,126, 76, 19,128,218, 33,185, 11, 98, 59,218, 62, 0,252, 14, 6,150,254, 71,143, 30,253, 2, 4,160, 89,223,
+ 79,224,210, 31, 72,124,254,242,249,203,215,111,223, 8,122, 22, 88,244,159, 1, 3, 6,140,101,160,248,171, 1, 7, 7, 7,228,
+128,130,148,251,231,207,159,103, 32, 98,251,177, 49, 24, 0, 25, 60, 92, 60, 28,160,194,159,131,141,141,141,137,137,105,180,244,
+ 71, 3,200,229,230,234,213,171,129,173,105, 6,212, 9, 85, 98,150, 84, 34,183, 45, 72, 93,205, 76,198,184, 63, 85,220, 12,175,
+ 3, 70,211, 0,169, 0, 32,128, 88,208, 90,241, 20, 54,150,225, 41, 0,190, 19, 24, 50, 46, 68,135,173, 88, 3, 88, 7,192,217,
+255,255,255,143,137,141,153, 50,101, 42,120,156,253, 15, 63, 63, 63,193,122,238,214,173, 91,192, 22, 45, 68, 47,144,141,166,236,
+ 30,142, 67,157,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,175, 4, 32, 94, 35, 21,221, 60, 10,200, 0, 0, 1, 68,253,195,224,128,177, 5, 26,250,239,162,235, 89,
+ 64, 3, 91, 7,192, 1, 35, 35, 35,124, 47, 46,214,210,159, 42, 0,243,204, 6,200,178, 81,130, 77, 54,170,100, 36,184, 33,192,
+210,156,212,179, 31, 28,192,128, 84, 27, 71,207,249, 33,163, 45, 66,221, 72,167,220, 25,131,220,205, 35, 22, 0, 4, 16, 77, 78,
+ 3,165,188, 39, 65,118,202,219,182,109,219,208,202, 0,148, 27, 62,154, 91, 70,193,144, 75,198,163, 96,144, 0,128, 0, 98,244,
+137,169, 29, 13,133, 81, 48, 10, 70,193, 40, 24,129, 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,244, 82,248, 81,189,163,122,105,174, 23,215,242, 92, 90,235, 29,141,163, 81,189,248, 1, 64,
+ 0,141,246, 0, 70,193, 40,160, 45,128,156,110, 15, 33, 73, 5,196, 28,169, 63, 10,176,130,155, 55,111,142, 6, 2, 65, 0, 16,
+ 64,163, 21,192, 64,130,107,215,174,165, 35, 1, 32,119,240,235, 29, 5, 36,129,123,247,238, 65, 14, 54, 0,146,200,199, 30, 16,
+ 95,250, 67,142,149, 37,251, 76, 30, 92, 34, 84,212, 75,225,157, 28,180,168,222,128,165,127,127,127,255,104,242, 35, 8, 0, 2,
+136,101,248,121,233,240,225,195,182,182,182,131,223,157,144,116,223,219,219, 11, 23, 41, 46, 46,102, 32,250, 50, 72, 32,249,111,
+165, 32,162, 38, 15,159, 72, 7,189,163,128, 84,128,124,212, 1, 73,167, 26, 32,151,254, 64,146,145,145,145,248, 35, 22, 40,217,
+ 45, 72,134, 94,200, 57,254,120,156, 7,236,253, 64, 14,249,193,227, 89, 76,189, 4,117,225, 47,253,255,253,251, 55,107,214,172,
+165, 75,151, 70, 71, 71,143,166, 67, 92, 0, 32,128,134, 97, 15, 96,201,146,101, 67,162,244,207,207,207, 71, 46,253, 33,149, 1,
+ 80,144,152, 6,215,130, 92,110,228, 18, 28, 82,160, 3, 5,105,170,247,227,199,143,153,153,153,240, 91,104, 94,188,120, 1,212,
+210,218,218,218,220,220, 92, 85, 85, 5, 57,175, 31, 23, 96,251,248, 85, 55,115, 62,207,254,251, 16,238,159, 23,127,174,166,255,
+184,212,202,118,164, 89,112,115,149,252,185, 93,210,195, 53,131,145,113,158, 62, 90,233, 15, 1, 36,245, 3,232,220, 3,128,156,
+227, 15, 81,185, 7, 12,208,202,113,252, 55,124,193,245, 98,234, 34,163,115, 0, 47,253,129,205, 41, 96,233,127,228,200, 17,134,
+ 81,128, 27, 0, 4,208,112,171, 0,128,205,127, 96, 91,105,144,199, 58,100,200, 69, 78, 78, 14,222,240,135,180,253,225,130,120,
+198,100, 32, 82,113, 54,108,176,198,251,123, 32,130,176, 33,130, 52,210, 11, 4, 39, 79,158,228,224,224, 56,126,252, 56, 34,245,
+ 48, 49, 85, 87, 87,215,214,214,198,199,199,111,221,186, 21,143, 94,137,147,215,254,115,176,114, 29,127, 4, 23, 97,100,250,175,
+ 87,253,203,166,246,189,121,252,171,211, 91,165, 71,179, 34,102,233,207, 8, 3, 68,214, 1,200, 19, 6,233,168,128,129,208,116,
+ 2, 37,122,225,117,192,187,119, 46, 51,103,190, 39,169,244,199, 90,127,192,117,145,218, 43, 5,150,254,125,125,125,192, 16, 3,
+166,204, 51,103,206, 0, 75,131,209,228,132, 31, 0, 4, 16, 19,254,194,148,140, 16,164,112,124, 25,104, 35, 68, 35,121,145, 7,
+108,254,207,152, 49,141,236, 78, 0,125, 82,204,196,137, 19,225,109,127, 96,209,223, 11, 6,240, 58, 0,200, 6, 42,192,163, 23,
+222,126, 7, 22,223,183,183,197, 2, 17,188, 28, 7, 74, 17,175, 23,210, 38, 37, 82, 47,176,244, 57,118,236, 24,176, 55,253,232,
+209,163,231,207,159,163, 73, 61,124,248, 80, 82, 82,146, 1,183,102,201, 99, 87,158, 68, 91,179, 61,250,200,248, 28,126,232, 52,
+ 35, 88,134,225,221, 67,118, 33,201,239,195, 44, 95,221,187,119, 15, 79, 81,139,103, 50, 0,173,237,143,118,175, 28,254, 58, 0,
+249, 6,174,153,168,128,129,208,253, 92,200,178,255, 87, 9, 34, 35, 6, 18,239,246,130,148,251, 36,149,227,200,245, 7, 16,145,
+ 87,250, 3,187,167, 19, 38, 76, 0,182,253, 11, 10, 10,128,117, 0,164, 45, 56,125,250,244,209, 82, 30, 15, 0, 8, 32, 22, 60,
+ 69,225,210,165,203, 33, 9,142,248, 33,117, 72,210,140,137,137,129,104, 1, 26, 2, 41, 83,136,140, 75,160,250, 37, 75,150, 0,
+181,131,139,242, 37, 36, 89, 13,111,254, 67,242, 9, 25, 51, 1, 16,219, 73,181,148, 18, 0, 41,253,225,229, 62, 50,151,112,213,
+ 13, 46,253, 33,108, 80, 29,224,181, 24,109, 96, 7,191, 94,120,140,128,235,128,116,130,122,129, 69,252,175, 95,191,140,141,141,
+129,189, 43, 96, 39, 32, 40, 40, 8, 84,103,252,251,215,222,222,254,229,203, 23, 86, 86, 86, 96,246,195,165, 87,232,225, 83,166,
+ 95,127, 62, 24, 43,176, 30,121,198,114,252,229,239, 32, 69, 80, 28,253,251,127,169,157,237,221, 23,222,239,172, 60,174,153,183,
+135, 83,166, 34,216,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,111,110,137,140,182, 63, 48,215,195,239,134,180,177,177, 1,102,231,209,210,159, 32, 0, 8, 32, 22,220,
+ 69,225,178,153, 51, 65,193,151,145,145, 69,100,153, 8, 25,215,214,210,210,130,139,216,130, 1,164, 79, 64, 48, 70,225,165, 63,
+220, 46, 82,139, 99,160,155, 99, 98,162,192, 53, 80, 20,144, 77,106,229, 1,180, 14,126,159,193,144,152, 70,166, 39, 56,122,244,
+168,185,185, 57,176, 60, 2,146, 27, 54,108, 8, 8, 8,128, 12, 1, 85, 86, 86, 2, 25,111,223,190, 93,190,124, 57, 80,202,212,
+212, 20, 83,175,252,209, 51, 47,204, 53,129,133,217, 87,115, 89,230, 13,207,127, 7, 40,130,135,128, 24,244, 42,127, 1,181,126,
+125,251,113,223,114, 21,121,243, 47,122,166, 79,134, 65, 64,225,191, 84, 29, 14, 86,131, 1,102, 33,142,124,167, 10,174,107,165,
+177, 94,220, 56,224, 0, 88,159, 97, 46,117,133,140,237,144, 10,200,208, 5, 57, 51,156,133,133,165,176,176,240,204,153, 51,163,
+ 67,255, 68, 2,128, 0,194, 94, 1, 0,219,254,144,146, 20, 8,162,163, 35,129, 92,130, 5, 34,100,168, 7,185,244,135, 3,136,
+ 32, 80, 1, 86, 89,164,226, 27,165,244,135, 48,128,130, 68,150,197,192, 40, 7, 22, 79, 16,197, 64, 18, 88, 1, 16,223, 9,128,
+151,254,200,185,139,200, 58,143,146,246, 11,114,171,159,164,230, 63,100,196, 6,216,234,135,116, 2, 84, 73,105,254, 67,245,134,
+167,195,239,126, 34,168,247,247,239,223,192, 76,197,203,203,123,233,210,165,191,127,255,126,250,244,233,250,245,235,194,194,194,
+112, 5, 64,182,183,183,247,180,105,211, 48, 43, 0,230,223,191,101,207, 92,102,227,149,102,189,244,246,227, 95,222,207,159,216,
+254, 94,255,194, 32,204, 1, 87,192, 45,252,199,212,251,201,194,105,182,195,163, 2, 0,134, 42,230,208, 7,230, 37,139,144, 30,
+ 0,218,134, 29,146,214,234, 16,191,217,135,190,222,127, 15,233, 10, 32,247, 6,136,239, 64, 0,195,141,140,210,127,233,210,165,
+135, 14, 29,250,191, 74,144, 49,236,125,127,127, 63,176,226, 4, 54, 77,102,204,152, 49, 90,190, 19, 4, 0, 1,196,130,181, 52,
+ 4,134, 32,114, 65, 12,172, 0,128,197, 43,176, 87,133,199,160,137, 19, 39, 66,134,110,176, 2,160, 20, 80, 1,158,244, 13, 25,
+124, 71, 43,115,193,229,248, 18, 98,202,113,228, 46, 11, 4,196,198, 70, 47, 94,188,148,152,114, 28,185,244, 71,107, 97, 17,212,
+139,199,203,120, 0,176,159, 4, 47,238,225,163,255,200,179, 2, 64, 5,120,244, 50,133, 67,135,242, 33,117, 0, 3,210,154, 78,
+166,240,247, 36,232, 13, 79, 39, 82,239,133, 11, 23,228,228,228,128,109, 43, 8,119,209,162, 69,199,143, 31,247,241,241, 65, 86,
+243,242,229, 75, 14, 14, 14, 76,189, 10, 23, 46,124,144,147, 60, 89,152, 4,225,178, 45,186,253,247,248, 71, 38, 31, 20,149, 31,
+ 95,114,178,115,252, 30, 54,153, 10, 88,178, 43, 41, 41,225,185,235,170,188,188,156,200,107, 14,145,135,128,112,117, 8, 6,109,
+ 32,144,161, 30, 82,113,146,164,119,217,178,165, 7, 14, 28, 96, 92, 3,106,142,236,170,225,117,107,249,108,103,103, 55,186,244,
+147, 72, 0, 16, 64, 44,152,165, 33,114,243, 31,222, 9, 0, 22,166,200,181, 2, 86,128, 71, 22, 82,148, 19,108,254, 99, 45, 97,
+ 9,118, 2, 32,110, 70, 46,253, 33,131,128, 64, 7, 3,197,129, 89, 8, 79,213,133, 89,250,147, 84, 7,144, 55, 82, 4,233, 9,
+ 61,122,244, 8,178,230, 7,185,225, 15, 20,196,213,145, 66,214,187,232,200, 47,200,186, 29,228,198, 59, 80,144, 70,122,129,197,
+ 61,178, 79,237,237,237,187,187,187,157,157,157,255,253,251,215,214,214, 6, 36,191,127,255, 14, 12,103,172, 49,168,126,252,248,
+ 37, 91, 7, 56,247,143,189,228,223,238,199, 12,206, 98,255,255, 49, 92,106, 99,253,242,143,231,221,119,190,119,140, 66,126, 49,
+ 23,135, 83,190, 2,150,239,248,167, 91, 73, 41, 26, 87,129,200, 61, 97,196,244, 71,225,233, 22,235,106, 78, 60,247, 53, 34,235,
+ 5,182,163, 73,210,139,217,138,135,220,225, 76,159, 1, 55,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, 30, 1,228,229,229,167, 76,153, 66,100, 89,182, 13, 85,239, 63,
+121, 30,206, 41,154, 64,134,246, 76, 86, 6, 6, 96,171,255, 61, 24, 61, 28,174, 25, 12, 94, 16, 67, 24,116,184, 45, 14,107, 73,
+ 13, 23, 33,184, 10,136, 12,189,152,173,120, 34,251, 55,148,135, 45, 48, 25, 3,203,125, 32,123,193,254, 95, 43,142,253, 2, 22,
+ 5,163,251, 25, 73, 2, 0, 1,132, 82, 1,224, 41,220, 33,211,185, 4, 19, 31,217, 10,200,190,201, 22,127,133, 68,161,179,105,
+157, 93,175, 93,187, 6, 95,253, 9, 25,162,193, 63, 77,130,166, 23,178,131,151,158,122, 71, 1,169,160,188,188, 28, 62, 22, 4,
+100,211,199, 82, 58,239, 4, 30, 88,224,222,242,121,168, 56,117, 16, 2,128, 0, 98, 25, 13,130, 1, 4,192, 98,151,236, 36, 59,
+ 80,122, 71, 1,169, 99, 65,144,147, 18,128, 36,241,237, 98,148,213,159,176,193, 31, 92, 75, 66,113,141,231,224, 23,161,133, 94,
+ 90, 84, 93,248, 1,176,243, 10, 12, 22, 63,255, 52,104,119,115,251, 57, 8,195,203,211,104, 52,237, 17, 3, 0, 2,104,180, 2,
+ 24, 5,163,128,182,192,197,197, 5, 88, 1, 16, 63,177, 73,121,105, 59,176, 61, 0,250,214, 22,255, 33, 59, 10, 71, 1,121, 0,
+ 32,128, 70, 47,133, 31,137,128,243,231,141,239,236, 26,163,225, 48, 10, 70,193, 8, 7, 0, 1, 52,122, 28,244, 72, 4,163,165,
+255, 40, 24, 5,163, 0, 8, 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,136, 38,151,194,223,191,122,156,129,233,135,164,140,
+244,231,239, 95,223,191,253,170,166,105, 67,188,222, 35,231,238, 50,252, 99,127,249,244, 41, 55, 39,183,160, 16,183,185,137, 34,
+241,122, 41,113,243,211,103,171,217, 56,254,176,115,176, 48,179, 48,255,101, 96,228, 99, 11, 36, 94,175,128,144,177,160,160, 32,
+ 39, 39, 39, 3, 35,227,181,203,155,240,219,203, 41,125,131,120, 55,127,127,138, 50, 88, 47,197,245,146,120,189,207,190,137,163,
+232,253, 73,130,189,207, 80, 39, 9,164,127,145,112,189,234, 83, 54,245,193,160, 87, 27, 91, 56,119,118,174, 46, 47,199,114,212,
+204, 85,212,112,230,148,249, 69, 66, 28, 61, 97, 67, 73, 27,210, 36,196,209,230,167, 40,113,244,227, 39, 55,241,122, 57,216,191,
+162, 24,229, 55,133,120,189,190,155,114,144,185,197, 47, 72, 56, 54,167, 87, 34,131, 70,121,112, 84, 47,141,244,226, 1, 0, 1,
+132,111, 25,104,234,129, 34, 70,199,248, 89,255,245,137, 49,232,222,149, 93,140, 12,255,120,216, 57,231,207, 92,182,112,225, 68,
+107, 23,235, 63, 95,191,105,105,216,253,251,199,144, 93,246, 87, 75, 75,253,206,157,135, 63,190,255,225,149,180,198,212,123,244,
+252,171,255, 12,140, 95,126,126, 79, 47,106,105,156,228,254,236,234, 89, 96,242,222,118,241, 9, 19, 19,195,196,134,154, 91,183,
+110, 42, 40,200,179,115,178, 8, 11,178, 99,234,189,190,121, 59, 59, 59, 59, 23, 23, 23, 47, 47,175,128,128,128,176,144,176,144,
+144, 32, 63,191, 0, 15, 55, 55, 51, 11,203,191,127,127,191,127,255,254,249,211,231, 11,223, 62,226,114,249,157, 91, 43,217, 57,
+190,243,240,114,112,112,177,179,176, 49, 51, 50, 49, 50,177, 48,255,103,222,245,251, 15, 35,219, 31, 87,252,190,190,255,136, 73,
+ 68, 68,132,131,251,199,207,159, 63,152,152,153, 24, 25, 25,164,100,109, 63,124,120,255,237,243, 21,218, 85,218,179,102,205, 74,
+ 75, 75, 27,109,188, 16, 4,184,138,123, 82,213, 0,129, 4, 39,215,211,167, 79, 89, 57,216,255,113,113,209,211, 11,223,222, 93,
+ 56,182,119, 5,178,136, 75,104,199,224, 12,237,197,139, 22,177,179,177,253,251,247,143,155,135,199,215,207,111, 52,249, 13, 9,
+ 0, 16, 64, 4,246, 1,252,223,187, 48,205,153,112, 29, 16,234,167,242,211, 73,232,247,151, 15, 44,127,153,204,244,100,226,227,
+161,103,138, 1, 75,240, 19,199, 23,136,200, 73,255,251,242,201,222, 92,247,217,179,247,123,206,255, 65,211,155,158,222,198,192,
+198,207,200,197,247,159,249,255,197,107,137,243, 86,236,132,136, 3,107, 14, 15, 75, 75,134, 47, 47, 24, 24,120,239, 94,190,206,
+ 42, 34, 96,109,161,195, 35, 32,134,105, 59, 35,104,139, 12,168,220,102,102, 2,150,249,204, 44,172, 32, 0, 36, 89, 88, 88,254,
+252, 97,100, 98, 98,198,179,131,230,226,249, 89,252,252, 44,188, 60, 60,162, 98,194, 60,188, 92,127,255,255,253,241,243,251,239,
+191,127,185,120,184, 68,197, 36,255,254,123,240,248,134, 2, 86,141, 59,118,223,226,229,229, 17, 16, 16,252,246,141,243,219, 55,
+ 46, 14, 14,118, 70,240,112, 26,176,190,249,246,237,219,155,247,124,111,222,188,121,251,230,165,181,165, 44, 86,237,171, 59, 9,
+ 93,147,148,224, 34, 40, 46,136,181,244,167, 98, 29, 80,213,221, 13, 36,219, 74, 75,201,208, 91,217,213, 5, 36,219,203,202,136,
+215,114,229,233,211, 91,183,110, 1, 25, 65,142,142, 68,106,153,185, 10,116, 18, 14,242,173, 88, 64, 54,132,100,128,157,143, 6,
+100,167, 97, 59, 66, 18, 88,178,227, 47,223,137, 41,253, 21, 5,133,190,255,250, 9,100,176,113,114,252,250,254,227,223,215,111,
+111, 94, 60,151,212,213,197,163, 69, 82, 89,141,160,191,248,229, 53,111,236,219, 72, 80, 25,176,244,183,113,137,224, 16, 52, 32,
+ 42,176, 66,223, 17, 84, 18, 22, 22,182, 42,116, 15, 86, 41,199, 61,175,225,108, 45, 1, 80,201,240,234,199,191,239,127, 64, 33,
+252, 21, 76,206, 52, 23, 80,227,101,197,170,183,167,167,167,170,160,196, 63, 40,240,199,143,239, 19,251,251,166, 76,153,146,147,
+147, 67, 97,226,188,115,231, 78, 55, 56,125, 18,220, 88,112,252,248,241, 7, 15, 30,188,125,251,246,243,231,207,192,134,160,176,
+176,176,130,130,130, 37,176,244, 24, 5, 96,176,101, 73, 51,156,141,182,238, 31, 32,128,240, 85, 0,179, 29,250,130, 79,180,254,
+ 59,182, 53,205,138, 1,127, 29,240,243,203, 59, 9, 21,231,150,210,160, 5, 51, 15, 64, 68, 14, 30,155,241,245,219, 79, 47,151,
+124, 43,235,132,136, 48, 39, 78, 78,246, 95,127,255,124,254,246, 75,205, 2,243,208,158,135, 12,191, 24,130,162,167,167, 22, 65,
+187,150, 30, 86, 14,192,242,116,195,190,157,219,142, 30, 95, 52,127,218,143,239, 63,217,152, 89,120,184,216,248,216,254,222,121,
+244, 2,189,138,250,207,240, 31, 92, 14,128, 73, 48,227, 31,136,250,247,255,223, 95, 48,248, 3, 6, 88,157,125,242,248, 44, 49,
+ 81,102, 94, 94,110, 89, 89, 57,117, 77, 85, 30, 30,174,119, 31,222, 62,123,241,252,245,219, 55,255,254,252,231,230,226, 86, 87,
+211,226, 23,120,116,229, 4, 15,154,198, 77, 27, 78, 49,176,176,127,103, 97, 98, 99,103,251,246,141, 3, 88, 7,128, 42, 0, 70,
+208,158,148,111, 32,240,229,219,183,175, 95,191,124,122,251,250,217,146, 5,231,248,149,177, 31,140,213,189,168, 27, 87,120,150,
+198, 97, 47,145,223,191,127,143,204, 22, 18, 18,130,148,134,130,130,130,119,239,222, 93,189,122, 53, 73,181, 2,155, 56,116,252,
+ 1,104,168, 32,185,105,107,214,234,213,217,217,217,191, 95,189, 34,166,244, 23, 19, 19, 11,114,115,251,205,206,222,219,219, 27,
+236,228, 68,204,241,150, 64, 15,246, 52, 52, 64, 71, 42,234,235,123, 27, 27,177,178,113,105, 71,174, 3,128, 12, 99, 99,227, 61,
+123,238,185,184, 40, 17, 89,250,107, 72, 72, 10,240,241, 65,106, 26,110, 14,206,231,175, 95,125,122,255,129, 71, 64,240,225,233,
+ 51,242,166, 38,120, 52,250,165,149,196, 4,251,170, 42, 64, 91, 15,245,189,147,225, 82,141,197,185, 64,242,209,246,189,102,106,
+178, 68, 13,245, 16, 89,250, 67, 91, 22, 66,132, 84, 16,222,143,198,205,194,120,177, 49,153,145, 79,228,239,189,139, 63,239, 93,
+189,245,238,171,201,118,124,241, 59, 99,230,204,162,244,236,184,148,164,213, 75, 87, 0, 75,222,150,206, 46,222,134, 22,248,165,
+ 17,148, 20,253,160,188,128,183,117, 2, 44,241,119,237,218,245,251,247,111,101,101,101, 91, 91, 91,126,126,254, 15, 31, 62, 60,
+123,246,236,254,253,251, 64,210,205,205, 13, 88, 31,140,150,254,104, 92,228, 58, 0, 32,128,208, 43,128,180,219,176,163,117,192,
+ 59,236,254,255,251,194,240,235,231,239, 3,203,210, 28, 24, 8,245, 3,216,180, 52,213,153,152, 14,220,250,240,150,129,225,250,
+199,167,183,129,253,229,141, 91, 39,125,123,243, 55, 58,177, 16,216,156,247,243,181,252,203,194,131, 75,243,173, 91,215,129,106,
+188,244,129,205, 58, 41, 6, 6,249, 31, 63,127,133,120,184,113, 8, 48, 45, 90,182, 3,216,141, 88,179, 98, 1,243,159,207,154,
+242,236,119, 30, 97,244, 81,128,101, 61, 24,128,202,250,191,127,126,253,254,245,243,231,207,239, 63,190, 67,238, 5,253,243,231,
+ 55,168, 64,254,254,157, 1,219,108, 55, 63,223,127, 96, 95, 65, 72, 72, 88, 69, 89, 85, 77, 69, 3,216, 85,248,243,247,223,171,
+215,239,126,254,248,253,247,223,215,215, 47,223,200, 72,127,215, 80,213, 56,119,126, 3, 3,131, 4,178, 70,118, 38,160,173,223,
+127,127,251,243,149,153,129,131,157, 13, 88,250, 3,251, 27,255,254,253, 1, 90,250,245,219,183, 87, 47,159, 93,189,116,230,237,
+171,103, 64, 71, 49, 49, 18, 59,205, 62,111,250, 60, 8, 35, 41, 51, 9,103,238, 70,186,103, 10,200, 46, 42, 42,122,244,232, 17,
+208, 82,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, 28,254,144,131,
+225,210,195, 8, 28, 87, 9,108,251, 3, 75,127, 80, 66, 97, 99, 83, 83, 83, 91,187,111, 31, 49, 93, 1,202,207, 64, 6,150,242,
+192, 66, 31,114, 97, 8,156, 12, 13, 13, 37, 88,250,171,137,137, 3, 75,127,102, 38,166,172,152,232,239, 63,126,246,206,157,203,
+197,201,249, 3, 8,190,127,103, 98, 97,126,124,254,188,172,161, 33, 46,189,144, 82,254,246,131, 7,200, 92, 50,128,185, 83,196,
+158,213, 21,174,126,201,255,217, 85,137,212, 2, 63,203, 19,114,155, 35, 86, 17, 92, 0,216,240,127,248,229,239, 65, 87, 81,214,
+252,153,159,162, 21, 89, 4,197, 8,150,254,123,247,238, 85,144,148, 74,201,202,168, 40, 44,155, 50,127,134,153,145,209,140,201,
+ 51, 10,202, 74,150, 90,154, 95,190,124, 89, 23,111, 87,137, 96,209,175,162,162,130, 95, 61,176,244, 23, 21, 21, 53, 52, 52, 4,
+102,118,240,176,193, 63,112,142, 22,146,144,144, 0,214, 1, 64,217,224,224,224,209,210, 63,173, 28, 58,108, 56,171,179, 2,173,
+ 14, 0, 8, 32,148, 10, 32,245, 88,229, 55,102,142,127,127,255,253, 99,100,230,253,255,157,225,247, 15, 70, 6,102, 6,105, 53,
+214, 95, 95,255,239,153,151,230,146,132,183, 14,248,199,204,204, 12,102, 0, 91, 76, 50,252,210,234, 15,111,174,153, 62,115, 62,
+211, 79, 46, 55, 71,235, 29,123,143,126,251,198,192, 37,196,143,169,141,147, 75,253,251,183,155,192,226, 27, 38, 0,108,227, 63,
+ 99, 98,118,136,139, 79,254,199,254,117,203,214,121,126,190, 73, 92,220, 12,223,222,190, 71, 43,133,161,182,130, 90,250,255,128,
+109,124, 96, 43,224,231,143,159,192,194, 30,152, 2,128, 85,215,175, 95,191,128,133, 47, 80, 28,212, 32,255,242,133,129, 31,125,
+232,246,224,254,153, 18,226,160, 90,130,133,153,245,239,191,255,239,222,126,252,245,231,215,203, 23,111, 63,188,255,252,237,235,
+ 47,134,239,127,254,253,123,193,204,114, 69, 74, 70,158,155,147, 19,219,184, 19, 3,195,159, 95,223,223,191,126,245,253,203,191,
+223, 63,152,129,149,199,159,223,175, 94, 62,189,118,233,236,203,103,143,193, 87, 82, 48,131, 18, 37, 35, 53,247,169, 67, 26,248,
+179,102,205, 10, 9, 9, 49, 48, 48, 96,103,103,239,235,235, 35,207, 40, 72,243,223, 66, 71, 71, 92, 92, 28, 88,130,251,216,219,
+ 75,145, 94, 7, 8,130,203,125, 86, 49, 49,160, 9, 64,146, 96, 63, 0,216,246,103,253,249,115,237,218,181,200, 93, 1,226,135,
+131,200, 6,144,114, 31,249, 74, 22, 96,245, 73,176, 2, 0,214,229,162, 66, 66,137, 33, 33, 31, 62,126,122,253,238, 45,120, 76,
+ 17, 4,128, 9,140,157,147,235,211,219, 55,159, 31, 63,225,149,197, 57, 53, 7, 44,253,151,172,221,140, 92, 1, 64,250, 1,230,
+ 70,122, 94,142,246, 68,184,250, 51, 3, 3, 47,175,176,129,139, 31,247,238, 77,115,233, 51,250,127,105,225,132,159, 59,230,139,
+205, 62, 7,172, 9,152,249,132,254,188,127, 5, 44,253,129, 29,130,175,127,254, 51,227,104,201,220,191,115,103,219,166,173, 11,
+103, 47,156, 52,119,218,140,190, 9, 66,194, 66, 45,109, 45,139,150, 45,181,181,176,158, 55,119, 94, 80,104,144,173,181, 45,121,
+165, 63, 68, 4, 79, 29,112,252,248,113, 96,174, 55, 50, 50, 2,102,115, 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,254,129,240,247,171,
+ 63,126,254,230,228,225, 96, 96, 3, 85, 12,159, 63,125, 18, 67,186,127, 10,165, 2, 0,183,254,129,133,239,207,159,191,190,179,
+126,103,254, 2,242,209,159,223,127,128,205, 76, 96,211, 24,216, 39, 0,182,216,128,117, 0,102, 5,192,206,254,235,239, 95,214,
+ 95,191,254,188,255,240,233,206, 29, 96,135,241,213,143,159, 63, 63,126, 2,102,246,143, 95,190,255, 4, 22,220,223,191,255,253,
+250,237,207,227,167,111,222,189,255, 10,236, 45,160,183, 76, 97,140, 95,223,191, 61,189,127,251,245,179,199, 47, 94, 61,254,252,
+233, 3,164,220, 7,146,144, 19, 74, 8, 22,255,165,113,165,120,198,130,176, 76,218,176, 64,163, 76, 80, 80, 16, 88,227, 34, 31,
+ 54, 73,106,243, 31, 88,139,128,198,184, 69, 69, 25, 41,171,165, 32,229, 62,176, 14,192,211, 9,184,242,244, 41, 3,248,236,107,
+ 96,139, 12,210, 15, 0, 21, 55,151, 46, 1,201,117,251,247,227,175, 3,138,235,235, 33, 35, 93, 64,118, 73, 67, 3,188, 79,128,
+103,228, 7, 25, 0,155,255,104,227,200,144, 67,143,225, 99, 65, 88,129, 0, 11,203,143, 95, 63,129, 33,124,227,222, 93,160,141,
+215,110,221,254,245,235, 55,176, 62, 7,134, 63,208, 49,192, 70,199,247,175,223,118,175, 90, 25,132,116,152, 43, 26,128,151,254,
+ 49,193,190, 40, 3,143,231, 46,169, 42,202,179, 19,118, 56,108,236,130, 93, 21, 88,244, 3,251, 1, 64,228, 25,152,252,155, 69,
+149,134, 37,196,187,231,108,114,106,175,178, 57,216,157, 34,255,158,217,241,247, 19,104, 82,225, 85,182,149,252,204,227,192, 70,
+ 18, 86, 29,234,170,234, 92, 92,220,147,230, 76,117,180,183, 55,183,180,216,181,109,231,141, 59,183,128,237, 50, 14,118,118,107,
+ 99,235,173,155,182,190,121,245, 38, 48, 48,144,248,162, 31,216,108,223,189,123, 55,116,152,180,187, 27, 79,239,246,193,131, 7,
+202,202,202, 16,198,197,139, 23,229,229,229, 21, 21, 21,223,191,127,127,230,204, 25, 37, 37, 37, 96, 35, 3, 40, 2,148, 26,173,
+ 0,240, 0,128, 0,194, 50, 7,144,198,120,241,255,193,101,140,204, 44, 12,185,115,243, 31, 72, 78,234, 91,200,192,203, 51,189,
+246,102,106,155, 58,243,158, 89,105,178,154,179, 84,179, 64,131, 27, 76,204,200,186, 84,248,100,174, 92, 90, 7,102, 2,155, 10,
+ 95,193, 71,189,255,102,248,253,147,229, 31,176,233, 0, 42,211,215,111,216, 5, 36,173, 61,177,148, 17, 59, 46,255,247, 48,212,
+ 65,106, 91, 3, 93,197,202,192,202,241,135,241,239, 63,112, 17, 26, 30, 13, 58, 83,254,225,177, 89, 88, 43,128, 63,127,255, 50,
+253,254,195,196,244, 19,220, 13,100,252,251,247,207,207,159, 63,128, 13, 53, 96,177, 6,236, 88, 0,187, 2,192,158, 1,187,172,
+ 36,154, 70, 96,191,225,215,239,127, 12,223,127,189,121,243,254,219, 55, 96, 86,103, 1,230,240,159, 64,252,247, 55,176, 87,241,
+ 31,168,153,233,247,231, 47,191, 94,191,254,252,245,251, 31, 6, 6, 53, 28,229, 63,148,241,243,199,247,143, 31,222,129, 39,156,
+193,147,210,164,196,193,205,135, 55,213,229,213,241,140,252, 32, 15,136,115,194,186, 35,192,146,232,222,189,123,144,210, 31, 88,
+ 13,240,243,243,127,252,248,241,195,135, 15,196,140,153, 64,154,255,192,110, 50,132,155,147,147, 51,121,242,100,242, 58, 1,112,
+ 19, 32, 3, 65,248, 71,255, 25,121,121,129, 14, 46, 43, 43, 3, 54,162,127,191,127, 15,116,115, 69, 78, 14,193,126, 0,242, 88,
+ 63,174,249, 0, 76, 93,157,132,166,217,207,130, 1,132,141,121, 34,214,251,119,239,120,120,121,223,188,127,191,255,228, 73, 22,
+ 38,230,159,191,127,127,251,254, 29,152,216, 32, 85,209,159,223,192, 84,245, 19,127, 80, 99, 14,251, 0, 69, 32,157, 0, 85, 5,
+133, 71,247,238,144, 20,194,192, 58,224,235,235,147,219,215,207, 37,163, 31, 64,112,228, 7, 14, 46,172,154,109, 16, 95,200,174,
+168, 7,106, 69,189,121,126,235, 29,104,165, 41,187,165,207,163,191,127,184,166,156,196,170,229,211,167, 79,236,156, 28, 42,138,
+138,247,159, 60,126,251,250,109,120, 76,244,182,189,187, 39,118,244,174,223,182, 73, 85, 81, 53, 46, 56,246,248,185,163,235,215,
+174, 13,196, 61, 20, 3, 47,253,129, 69,191,171, 43,104,221, 29,164, 2,128, 87, 9,184,192,219,183,111,109,109,109,129,121, 28,
+ 88,202, 31, 61,122, 84, 75, 75, 11,152,162,100,101,101,129,157, 99,112, 35,140, 73, 82, 82, 18, 30,197,163, 0, 43, 0, 8, 32,
+ 22, 44,165,255,190, 5,192,230, 49,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, 0,108,115,163, 85, 0,119, 62,125, 82, 19,224,251,243,147,225,206,129, 37, 42, 14,238, 12, 12,
+ 32,217,223,191,126,179, 50, 48,125,249, 1, 90, 68,225,225, 96,196, 41, 44,141,213, 17, 30,186,140,219, 46,254,103, 5, 54,247,
+229,220,127, 61, 58, 12,233, 4,176,178,177,255,102,248,193,195, 9,186, 59,112,211,182,229,223,223, 62,182, 80, 22,192, 86, 1,
+252, 7,141,254, 51, 2,221,195, 8,169, 15,128, 37,254,247,239,223, 33, 45,101, 80,245,240,231, 15, 80, 68, 20, 67,227,143, 31,
+127,192,227, 54,255,126,254,252,251,249,243,119, 96, 94, 6,178,127,255,254, 11,172,191,152, 88,152, 25,152, 24,255,131,178, 58,
+227,159,127, 95,191,255,248,139, 47,119,193,107, 1,104,193,207, 8,107,251, 67,248,140,248,155,255,164, 70, 24, 23,108, 25, 34,
+114,233, 15,108,239, 0,187,192, 64,159,194, 91,202,196, 52,255, 21, 68, 68, 32, 92, 32,131,145,145,134, 71, 42,194, 71,255,255,
+127,254, 92, 91, 91,251,243,237, 91,200,245,143, 42,224, 26,136,245,231, 79, 95, 95,223,167,175, 94, 73, 83,117,133, 37,124,132,
+ 7, 62, 1,128, 6,140,141,141,225, 61,128,171, 79,209,101,255,252,252,245,225,215, 59, 96,247, 81,128,159,159, 3,152, 20,255,
+254, 1, 6, 44,164, 61,241,251,247,111, 96,163, 3,127, 56,223,126,240, 0, 62, 3,140, 60, 22,132, 60, 51, 76, 42,224, 22, 53,
+ 7,182,163,200,208, 72,252, 28,128,253,238,215,175, 20,214, 0, 59, 1,140,138,122,242,243,207,191,249,241,143,155,133,241,215,
+145, 13, 55,239,221,199,149, 64,190,255,249,117,246,248,169, 9, 61,253, 86, 14, 54, 53, 77, 13, 59,183,239, 92,186,104,177,165,
+157,141,172,130, 28, 11, 23,235,222,195,123,151, 45, 92,188,110,195,218,173, 91,183,122,123,123, 99,106,135,220,147, 3, 47,250,
+ 73, 2,192, 52, 15, 44,241, 65, 9, 88, 65, 1, 24,155,192,238, 26, 48,191, 3, 91,253,236,236,236,192,198, 16, 80,144,151,151,
+ 23,168,102, 36,151,239,192,150,205,150, 37,205,104,195, 62,200, 0, 32,128, 80, 6,246, 64, 35, 63,135,151, 50,112,114, 60,248,
+244,139,225,251, 71,246,127,223,244,116,148, 24,222,126, 99,248,245,199, 65, 95, 13,180, 48,243,247, 15,102, 70,240, 16,205, 63,
+204, 50,241,195,173, 15,143, 88,216, 25, 60,252, 10,151, 77, 2, 54, 82,126, 49,124,251,249,247, 59,195,134,253, 23,246,156, 6,
+221, 23, 47, 35,167, 8, 42, 88,113, 0, 47,125,198,223, 63, 24, 54,109,221, 97,226,150, 11,106,254, 51,176, 50,115, 50,132,249,
+132,122,217,249, 3,101,159, 60,188,251,255, 55,246, 82, 24, 50, 7,252, 7,216,234,255,245,235, 7,176, 29,254, 29,180,254, 6,
+ 24,235,192, 20,240,233, 35,176,117,242,249,203,151, 47,160, 33, 32,204, 17,222,175,255,190,127,255, 3, 68, 95,191,254,250,252,
+249,199,167,207,223, 63,127,249,241,229,203,207, 79, 31,127,124,254,252,243,243, 39, 16,250,248,241,231,199, 15,223,223,191,255,
+142,213, 98, 88,209, 15, 93,130, 4, 46,248, 25,225,109,117, 6,226,142,169,213,180,212, 60,186,237,232,206,125, 59, 33,245, 1,
+176, 55,128, 71, 49, 48,137,179,192,194,176, 11,188, 10,179,162,162, 2,114,202, 60,242,178, 72, 98,154,255,226,226, 40, 91,144,
+178,179,179,183, 30, 58,244,140,136,197, 60, 88, 1,176,249,143,191, 10, 1, 54,243, 33,140,149, 43, 87,222,121, 1, 90,202,181,
+229,192, 1,184,224,205,155, 55, 69, 69, 69,105,148, 7, 32,165, 60,242, 21,137, 16, 54,158,241, 31, 80, 69,203,199,251,239,239,
+223, 79,239,222,131,150,243,126,120,255,245,219, 55, 32, 2, 38,166,175, 31, 63,125,254,240,225,199,247,111,191,126,252, 0, 38,
+ 59, 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, 31, 62, 16,239, 12, 34, 43, 3, 96,249, 14,204,230,192,150, 62,176,213,111,102,102,166,173,173, 13,218,
+148,195,193, 1, 44,250,245,245,245, 5, 4, 4, 32,171, 66, 71,120, 27, 31,185,119,139,217,211, 5, 8, 32, 68, 15, 32,237,214,
+180,255,175, 31,252, 96,229,216,243,138, 11, 24,215, 10, 31,158, 51,175,107,217,158,222,220,173,165, 34, 41,200,145,171,193,201,
+ 48,245,252,255,223,191, 30, 51, 75,160, 12,129, 32, 0, 15, 48,197, 2,169,139,151, 54,235, 27,248,214,213, 44,218,184,174,111,
+215,254,235,142,150,218, 44, 44,236,187, 15,159,251,207,204,242,235,239, 95,252,110,245, 48,212,216,113,246, 6, 67,111, 71,136,
+175,151,143,143,239,206,125,235,255,252,254,225,237, 30,201,244,247, 55, 43, 51, 51,142, 57,128,255,144, 30, 3,116,237,231,191,
+127,204,160,225, 32, 38, 80,135, 0,216, 28,254, 7, 93, 37,132,165, 2,248,198,198,200,248,157,149, 21,180,243, 11, 92,141, 48,
+252, 5,117, 23,128,232, 63, 35,243, 31,144, 94, 6, 96,243, 31, 88,247,253, 3,246, 0,184, 4,113,182,254,145, 89,140,140,144,
+130, 24, 41,175, 48,226,107,254, 3, 75,127,104, 43,117,193, 30, 32, 2, 50,128,149, 1,131, 23,190, 32, 2,251,151, 97,205,154,
+ 53,144,188,167,168,168, 8,233,232, 0,155,165,192, 30, 0,193, 10, 0, 88,250, 67,154,255,138,212, 43,112, 89,193, 3, 71,222,
+246, 56, 39, 54,173,116,117,123,123,123,129,205,124, 96, 65, 15,236, 13, 4,128, 79,198, 87, 87, 87,135, 11, 62,124,248, 80,132,
+157, 93, 2,214, 35,161,238, 28, 0, 16, 64,174,100, 65,190,246,150,224,165,181,239,223,124,100,100,248, 3, 26, 62,124,249,141,
+141,131, 3,216,161,132,244, 0,190, 3,219, 8, 95,191,254,252,249, 19, 88,162,121,224,190,123, 22, 82,202, 67, 70,129,204,141,
+244, 78,158,187, 4,151, 66,155, 18,192,217,188,125,125,242,228,129,245,206, 94, 17,208,202,224,227,237,155,151,142,146,209,240,
+ 39,126,252, 7,212, 87,123,247,245, 81,138,233,255,251,151,196,102,159,251,250,231,255,167,104, 69,254,101,247, 63, 37, 10, 3,
+ 75,127, 38,220, 21,124,118, 78, 78,109, 71,139,152,176,200,239,127,127,111, 63,190, 23, 29, 25,181,104,201,146,141, 27, 54, 69,
+ 69, 71,253,252,241,243,240,153, 99,223,191,127, 73, 75, 72,216,123,252, 56,230, 58, 14, 96,140,220,185,115,199, 13,220, 65, 68,
+235, 7,148,150,150,226, 31, 5, 18, 22, 22,126,246,236,153,160,160,224,140, 25, 51, 76, 77, 77, 13, 13, 13,217,216,216,128, 57,
+255,196,137, 19, 22, 22, 22, 64, 5, 64, 89, 97, 28,115,135, 35,182, 14, 64, 3, 0, 1,132,168, 0,102,169,101, 57,124,157,121,
+235,201,251,231,190,224, 70,199,201,138,255, 91,166, 75,189,188,223,111, 31,196,240,225, 29, 67,219,130,255, 79,111,252,229,228,
+254,240, 14,212,125,103,100, 66, 95, 19,112,240,192, 70,123, 7,103, 80,193,250,239,247,157, 15,143, 24, 24,254,170,240, 41, 58,
+ 58,234,137,139, 72,188,253,248, 9,212, 65,248,245,231,249,135,175,154,216, 28, 33, 35,103,249,228,209,113,112,154,101,241, 0,
+173, 4,101,217,113,249,247,206, 45,107, 94,190,121, 38, 44, 0,234,226, 9,176,177, 74, 10,240,224, 40,131,255,131,139,247,127,
+144, 93, 0,160, 25, 97,166,191,192, 50,157, 17, 92, 18,255,135,238, 14,192, 82, 1, 68, 70,229, 47, 94,212, 8,204,218,204,204,
+144,177,163,255,255,254,254, 7,246,236, 65,253,123, 96, 33,203, 8,236,233, 48,254,253,251,255,231,239,127,249,153,141,104, 91,
+171,145,102, 0,254,195, 57,240,162, 31, 65,225,237, 4,192, 75,127, 52, 54,168, 14,192, 1,128, 5, 16,176,232, 1, 22,223,144,
+ 10, 96, 13, 24, 0,185,202,202,202, 64,219, 39, 78,156, 8,236, 16,188,123,135,111, 55, 80, 9, 24,236,216,177,227,235, 75,148,
+ 19, 11,128,245,193,253,251,247, 25,240,110, 10,195,220,249, 5, 44,250,129,213, 9, 48,124,125,236,237,165,113,207, 31, 0, 75,
+118, 43, 61,189,183, 15, 30, 0, 75,249, 91,176,181, 64,170,146,146, 69, 69, 69, 71,143, 30, 85, 83, 83,211,145,150,198, 51,237,
+129, 60,238, 79,252, 28, 0,242,100, 64,121, 57,104,209,231,189,123,208,182, 63,124, 91, 0,158,133, 64, 60,210, 98,223,159,191,
+ 0,182,241,191, 2, 27,153,111, 94, 51, 50,130, 86,254,254,248,241, 3,146,204,238, 95,187,254,251,215, 79, 60, 75,128, 80,122,
+183,142,246, 64, 4, 95, 18, 74,204, 16,208,151, 55,167,128,165, 63,200, 25,220,220, 27,145, 58, 1, 38,182,129, 52, 45, 41, 76,
+182,191, 58,227,201, 96, 96,236,242, 42,219, 74, 98,218, 49, 96,125, 32,200,198,248,246,221,123, 22, 70, 70, 22,188,253,217,184,
+184, 56, 56,123,243,230,205, 94,222,158, 91, 54,109, 89,181,106, 85, 67,117,237,174, 3,123,153, 89,152,165,101,164,129, 1,201,
+192,134,101, 33,159,138,138, 10,102, 53, 0,153, 6,192,191,190, 25,216,210,191,119,239,158,150,150, 86, 65, 65,193,138, 21, 43,
+248,249,249,111,220,184,129,220, 69, 7,202, 42,144, 59,224, 54, 66, 0, 64, 0,161,204, 1, 28, 48, 76,103,128,173,108,222,242,
+ 74,192, 71,148,241,255,153,109,255,143,111, 2,149,108, 28, 28, 63,184,120,119, 11, 56,188,176,116, 1,143, 69,160,111, 8,188,
+121,235,215,145, 19,109,160,146,148,153, 3, 50, 92,113,231,211,243,186,156,164,111,223,126,126,250, 14,154, 3,248,197,196,238,
+228, 17,130,213, 17,181,213, 9, 59,182,130,183,213,252,133,156,193,242,199, 67,151, 49, 34,171,143,139,139,157, 15, 60, 7,192,
+250,239,135,180, 40,142,242, 5,180, 43, 20, 84,124, 67, 26,137,255, 24, 65, 16,178, 55, 24, 84,250,254,199, 55, 46,242,237, 27,
+231,247,239,159,129,157, 0, 96, 31, 0, 88,230, 3, 13, 1,247, 0,254,125, 3,109,127,100, 4,138,252, 6, 54,169,153, 24,177,
+217, 9, 46,217,255,195,235,128,255,152,125, 34,200, 84, 64, 76, 98, 32,174,115, 57,174, 31,191, 78,106,108, 1,125,242,253,251,
+119, 93, 93, 93, 37, 37,165, 7, 15, 30,172, 2,239,146,133, 84, 6, 16,208,209,209, 65,176, 14, 0,130,140,140, 12, 76,193,224,
+248,120, 6, 34, 54,133, 65,182,230, 34, 3, 95, 7, 7,130,179,199, 18,176,134, 24,114,111, 0,216,240, 55, 81, 87,103,251,250,
+ 21,191,151, 41, 73,223,200,165, 60,242, 46, 10, 6, 34,246, 9,115, 74, 74,124,187,125,231,239,159, 63,159,222,127, 0,247,174,
+ 64,205,136,247, 47, 95,125,122,255, 30,232, 42, 60,205,127,180,201,128, 37,107, 55, 35, 47,253, 68,158, 30,192,145, 46, 47,158,
+216, 15, 89, 79,193,176,113, 53,104, 1,168,145,125,132,144,152, 1, 45,203,129,255, 40,117, 0,195,108,131,140,186, 23,255,254,
+233, 47, 56,117,202, 67, 92,123,203, 75, 96,233,207,203, 74,236,142, 22, 96,228,238, 59,176,207,201,213,121,211,218, 13,205,157,
+ 29,229, 31, 63, 2,219,101, 43, 87,174, 21, 17, 17,121,244, 9,167, 46,180,106,128,129,208, 22, 48, 32,176,180,180, 4,182,241,
+207,157, 59,103,100,100,228,236,236,188,127,255,126, 57, 57, 57, 96, 11,201,222,222, 30, 24, 65, 64,113, 86, 86,214, 17,190, 4,
+ 8,178, 15, 0,222, 3, 64,227, 2, 1, 64, 0,225,220, 9, 12,236, 7,204,189,188, 71,231,239, 85, 9,214,143, 63,254,179,220,
+254, 47,192,252,250,211, 11, 11,232, 54, 66, 38,108, 3, 50,162, 66,134, 94, 9,113,127,255,195,155,234,255,191,124,253,196,204,
+194,207,192,196, 85,214, 67, 96,167,146,135,183,206,134,169, 21, 12, 76,223, 24, 96,141,117, 30, 30,254,191,191,223, 51,252,255,
+250,240,216, 44, 19, 61, 57,124, 41, 23, 84, 70, 48, 2,139, 97,208,168, 13, 35,120, 44,158, 17, 54, 12,143,145,190,145, 65,122,
+ 70,217,148,201,109,159, 63,127,100, 97,129,236, 34, 1,246,241, 65, 61,128, 47, 95,126,253,250, 3,170, 83,152, 89,152,186,218,
+ 39, 96,106,244,244, 7,117, 48,119,110, 62,241, 23, 60, 10,252, 31,226, 4,232,156, 47,212,246,248,148, 16, 60,254, 77,105, 78,
+121,112,247, 1, 25, 49, 10, 76,223,239,193,235,103,140,141,141,205,204,204, 94,191,126,125,247,238, 93,208,194,196,127,255,214,
+174, 93, 75,176, 14,200,137,143,231, 20, 19,243,193, 54, 92,147, 3,174, 0, 56,113, 23,229,144, 12,137,166, 87, 26,117, 46,129,
+ 32, 0,246, 6,172,193,189, 1, 49, 78, 78, 29, 43, 43,154,166,126,180,242, 29, 24, 98,104,179,193, 4,235, 0, 97, 85,149,207,
+239,223,179,176,179,253,252,249,227,239,111, 96,154,248,199, 43, 40,248,241,221, 59, 96,233,143,191,249, 15,223, 8, 6,153, 0,
+ 56,121,238, 18,176, 2,128,143,254,227,218, 23,166, 38,249,254,205,219, 55,171, 86, 47,135,139,132, 69, 39,191,251, 69,218,186,
+ 79,204, 49, 31, 12, 17, 70,130,253, 0,134,237,208,131, 28, 84, 54, 66,247,222,127,252,253,151,120, 55, 56, 57, 56, 93, 20,188,
+232,230,237,145, 26,155,172,167,175,187,105,227,230,227, 23,206,166,165,165, 61, 34,116, 72, 25,188, 26,232, 6, 3,130, 59, 28,
+129,181, 5,176,199,176,101,203, 22, 96,147, 8,216,111,128,172,133,187,122,245, 42,176,237, 15, 44,253,225,117,201, 8, 7,104,
+155,129,145, 1, 64, 0,225, 59, 10,226,159,174,203, 37, 6,151, 75,164,216,164,163, 99, 61,105,210,162,188,252, 72,105,121, 96,
+170,253,201,202,206,241,228,249, 39,123,223, 56, 98,244, 26, 26, 42, 37, 36,132, 45,152,183,142,225,223, 67, 6, 6,150, 63, 63,
+190, 75, 75,242,203,241,253, 33,216, 40, 6,150,184,255, 65,144,225, 63,108,255, 50, 3,164, 63, 64,132,165, 57,185, 85, 64,178,
+170, 50,143,153,153,233, 63,104,140, 5,216, 9,248,251,229, 11,168,248,103, 98, 98,156, 62, 29,223, 41,137,238,190,160,106, 96,
+219,134,163,255, 17,197, 63, 40,107, 37,167, 71, 18,180,247,227,151,143, 88,143,250, 33, 8,128,101, 16,176, 19,240,247,239,223,
+ 79,159, 62, 49, 51, 51, 3, 25, 18, 18, 18,191,127,255, 70,206, 42,192, 58, 0,215,153, 16,144,166,186, 32, 89,203, 61,133, 32,
+ 85, 42,137, 37, 62, 38, 16, 39,113, 88,150,236, 57, 0,180,146, 29,235, 90, 32,130,219,193, 20,204, 76,129,228,141,131, 7,127,
+124,251,254,239,239, 95, 77, 99, 99, 93, 43, 59, 30,105,188, 1,248,159,241,225,253,187, 64,154,141,129, 33, 41, 8, 58,165, 3,
+ 20, 65,102, 99, 93, 42,124,235, 57, 48, 73, 8,134, 71,167, 60,124,252,226,196,161, 45, 64,145, 85, 75,231,154,219,249,240,138,
+219, 16, 19, 80, 97,160,125, 24,132, 79,122,248,203,136,125, 19,194,163, 64,137,237,207,126, 80,171,208,209, 7,131, 51,103,206,
+236, 61,113, 80, 88, 68,152,164, 67, 74, 32,213, 0, 49, 42,121,121,121,131,131,131,143, 31, 63, 14,108, 6,157, 58,117,106,244,
+ 44, 32,204,209,127,180,210, 31,109, 62, 0, 32,128,168,127, 41,188,178,134,233,214,157,119, 2,188,185,196,164,101,223,125,254,
+ 99,239, 29, 75,188, 94, 75, 83, 13, 75,211,170,244,244, 58, 6,134,151,130,188, 44,114, 66,255, 8,107,137, 14,167,220,205,109,
+237,147,128,100, 94, 94,238,239, 95,191,254,253, 7, 45,181,236,239,239, 39, 82,175, 87, 0,232,124,211,173,235,143, 48, 50, 50,
+165,101,197,208, 33, 82,129, 37, 32,176, 31,240,235,215, 47, 72,177, 8, 41, 16,135,235,249,160, 4, 79,152, 32, 30, 16,115,234,
+ 39, 46,160, 97,111, 79,188,226,231,247,110,154,171,202,144,109,215,219, 95, 42, 60,226, 42, 46,161, 54,164,106,196,117,202, 27,
+ 18, 96,250,195,200,254,157, 9,251,252,255,221,207,127,212,120,241, 20, 8,228, 44, 20, 54, 49, 49,161, 67, 34,177, 4,131,209,
+226, 30, 87, 29,128, 71, 22, 32,128, 70, 47,133, 31,146, 96,244, 86,247, 81, 48, 10, 70, 1,229, 0, 32,128, 70,111, 4, 27,146,
+ 96,180,244, 31, 5,163, 96, 20, 80, 14, 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,136, 38,151,194,143,234, 29,213, 59, 56,
+245, 66, 78,131, 24, 13,171, 81,189, 35, 74, 47, 30, 0, 16, 64, 44,104,217,131, 24, 61, 88,179, 16, 37,122, 71, 1,169, 0, 87,
+ 65, 54, 10, 72, 13, 37, 34, 67,242,209,163, 71, 79,159, 62,101,103,103, 23, 17, 17,145,147,147,163,155, 23,224,103,190, 14,230,
+ 28,244,234,213,171,167, 79,159,226, 87, 35, 45, 45, 45,134,109,247, 9, 37,122, 71, 1,229, 0, 32,128,208,151,253, 18,220,121,
+143,231,208, 71, 52,189,152, 71, 19,211,244,204, 97,250, 23, 46,248, 21, 20, 20, 20,104,106,106,146,173, 61, 52, 52,212,197,197,
+ 5,143, 94,170,212, 1,238,238,238, 64,114,231,206,157,116,208,251,245,235,215,181,107,215, 66, 46,133, 15, 14, 14, 54,196,125,
+159, 34,166,103, 9, 94, 10, 63, 99,198, 12,172,173, 13,252,161, 68, 76, 24, 2, 75,168,159, 63,127, 2,173,224,224,224,248,241,
+227, 7,176, 38, 56,125,250,180,190,190, 62,158,155,170,172,173,173, 9,250,235,249,243,231,192,194,157,160, 50, 96,233, 15, 57,
+238,155,152,176, 34,102, 47, 72, 88, 88, 24,254,116, 5, 1,242,242,242, 12,224,243,150,129,126,135,196, 29,158, 52, 9, 44,193,
+139,138,138,240, 88,250,254,253,123,115,115,115,172, 65, 13,212,171,165,165,133, 71,239,203,151, 47,107,107,107, 71,155, 59,148,
+ 0, 60,151,194, 3, 4, 16,203,176,241, 36,253, 27,197, 27,103,120,224,146, 10,200,220, 65, 73,103, 8, 79,245,176,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,192,226,160,183,183, 87, 65, 65, 65, 80,144,240, 94,104, 96,201,187,125,251,118, 8,219,195,195, 99,199,
+142, 29, 88,217,120, 2, 25,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,195, 32, 20, 68, 35, 81,101, 6, 24,
+130, 34, 61,131, 48, 5, 61,101,182,178,216, 32, 18,227,208,230,137,111, 33,100, 43, 54, 33,141,139, 92,101, 91,194, 66,248,251,
+238,190, 37,115, 23, 21,128,156,243,160, 67,188,206,135, 17,253,120,174,166,230, 21, 39,134, 67, 76, 35, 62,110,147, 11, 15,113,
+ 47,203, 2, 75,110,118, 58, 27, 65, 11,133,151,108,200,111,129,247, 79, 41,181, 80,248,211,149,199,251,203,158,145, 18, 10,143,
+ 6,140,180, 2,191,135,194, 51, 49,214,182, 15,133,167, 78, 96,231,211, 9, 35, 84,240,254,173,134, 37,224,253,105, 50,238, 53,
+ 20,190,148,162,148,226, 86, 7, 2, 32, 44,223, 60,190,156, 78,128,129,204,118,188, 9, 0, 33, 4, 57,104,127,179,239,175,124,
+ 2,198, 31,178,142, 49,162, 1, 20,134,115,110,144,253,123,192,254,222,251, 94, 3,164,141, 56, 40,164,233,135,107,173,213, 90,
+ 35, 87,178,151,173,192, 24, 67,129,241, 82, 80,159,127,246, 95, 89,165,230,194,239, 67,225,223, 2,176,119,245, 40, 12,131, 96,
+ 52, 32,189,129, 91, 15,225,232, 1,218,205, 11,184,123, 12,239,147,123,120, 24, 71,221,116, 19,250,234, 71, 37,132,196,216, 31,
+ 58,148,190, 65, 36, 1,135,160,239, 39,131,239,147, 2,208, 40,172,243,100, 16, 56,108,176,150,207,106, 0,182,221,207,255, 28,
+111,102, 22,172, 77,151,167, 47,111, 3, 29, 7,236,255,116, 47, 69,185, 82, 41, 60,198, 17, 23,191,194,165, 2, 75, 97, 5,140,
+135, 43,128, 82,225,250, 95,139, 2,239, 96,179, 20,254, 48,244,228,156, 33, 0,198, 24,228,128, 16,194,233,209, 10,143, 9,148,
+ 32,198,216, 79, 78, 96,255,166,202, 36, 0,148, 3,106, 19,217,104,222, 2,239,183,218,231, 47,108,108,216,109,231,156, 82, 10,
+ 74,192, 57,199, 28,236, 15, 49, 72, 41, 49,198, 6,217,223, 90, 75,135,113,149, 3,246, 48,207,115, 39, 4,120,239,181,214,123,
+111, 75, 41,231, 10,124,109, 10,199, 66, 8, 41, 37, 25,142,191,253, 95,178,255,180, 85, 10,127, 19, 64,212,172, 0, 48, 7, 46,
+136,156, 25,166, 86, 29,224,229,229, 69,106, 63,128,160, 11, 9, 26, 21,156,179,115,237, 20,247, 1, 28,185,130, 95,114, 66,106,
+243, 31,210,240, 7,150,218,192,182, 18, 48, 7,146, 81, 1, 64, 0, 68, 35,176, 14,192,229, 17,200,232, 63, 3,236, 82,120,248,
+217,241,144, 75,225, 33,130,120, 34,218,195,195, 3, 62,159,228,233,233, 9,239, 19,224, 25,249,193,108,133, 96, 94, 10, 15, 31,
+ 11,194, 10,238,220,185, 3,190, 98, 26,196, 0,218,120,243,230, 77,200,225, 75,144, 75,225,129,229, 14,176,122, 88,191,126, 61,
+158,162, 28, 94,250, 3,123, 27,104,181, 17, 73,163, 58, 64,197, 16, 7,147,218, 21, 32, 3,252,254,253,219,200,200,232,192,129,
+ 3, 38, 38, 38,192, 88,131, 12,178, 1,185,238,238,238,127,254,252, 33,166,244, 7,146,173,173,173,184,198,130,168, 14,128,205,
+ 14, 96,135, 18, 88,167, 2,131, 5,232,114, 96, 28, 65, 74,127, 96,125, 0,116,246,104,209, 79, 16, 0, 4, 16, 53, 43, 0,170,
+ 79, 2,147, 81, 7, 0,155,147, 36,245, 3, 32, 89,107,233,210,165,104,226,219,182,109, 3, 10, 18,105,200,137,251, 90, 22,138,
+215,200, 27,249,129, 36, 86, 96,242, 37,251, 52, 55, 72,233, 79, 82, 45, 2,105,254,163, 93, 10, 79, 94, 39, 0,110, 2,158, 75,
+225,225, 77,126, 96,153, 2,108,204,170,170,170, 2, 27,209,236,236,236,252,252,252, 45, 45, 45, 4,251, 1,200, 99,253,184,230,
+ 3,200,168,218,129, 5, 49, 92, 13,230,137, 88,192, 6, 62, 47, 47, 47,176,212, 59,118,236, 24,176,241, 11,185,104, 26,126, 41,
+ 60,176,160,252, 73,232, 82,120,204, 97, 31,120, 91, 30, 24,221,175, 72,188,125, 19, 24,191,144, 21, 65,100, 52, 23,136, 63,217,
+ 16, 24, 17,165,165,165,144, 28, 7,180,238,246,237,219, 12,160, 99,122, 13,129,245, 31, 49,235,112, 40, 41,235, 33,149, 7, 25,
+ 6, 2,227, 17, 24, 59,150,150,150,240,131,231,128,174, 5,246, 93, 70, 11,119, 6,164, 59,129,145,135,128,144, 83, 59, 64, 0,
+ 13,246, 73, 96,250,212, 1, 64,245,144,126, 43,188, 35, 76,100,233, 15,108,254, 83,183,207, 68,135,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,170,143,149, 65,122, 0,184, 46,133,135, 87,186,152,235,166,129,101, 10,176, 14,248,241,227, 7,176,150,
+ 2,214, 85,144,235, 54,225,151,194, 3, 25,248, 75,127, 72,165,142, 57, 22,132, 60, 51, 76, 42, 32, 91, 35,241,115, 0,192,250,
+216,219,219, 27,152,131,184,184,184, 28, 28, 28,128, 33, 0,140, 50, 96, 13,189, 96,193, 2, 38, 38,218,110, 26, 5,150,245,240,
+225, 35, 72, 6, 36,190, 58, 1, 54,104, 30, 61,122, 20, 30, 14, 58, 24,120,229,202,149,160,171,199, 70, 1, 90, 63, 24,199,189,
+240, 0, 1, 52,216,119, 2,147, 49, 19, 0, 4,196, 55,222,225,133, 5,188,223, 74,124,233, 15, 1, 70,134, 6,123,247,237, 95,
+182,143, 11, 82, 31, 0,123, 3, 36, 57, 21, 88, 12,237, 1, 3, 72,105, 78,204,210, 64,248,253, 54,144,139,189, 72, 45,253, 33,
+205,127,204, 75,225,215,172, 89, 3,145, 34, 3, 16,188, 20, 30, 88,136, 64, 24,192,252,121,225, 2,232,114,243, 21, 43, 86,192,
+ 5,105,122, 41, 60,124,205, 15, 90,173,137,191,203, 5,108,254, 3, 75,121,160, 11,223,188,121, 3, 36,191,129,193,151, 47, 95,
+ 62,125,250, 4, 44, 95,128,189, 1, 96, 15,224, 47,238, 59,174,145, 11,107,180,121,123,180,117,253,248,107, 17,100,103, 19,151,
+ 54, 40, 2, 11, 23, 46, 4,150,251,192,210,255,218,181,107, 7, 14, 28, 0,150,254,117,117,117,192,186,185,178,178,146,152, 10,
+192, 22, 27, 32,169, 14, 0,102, 67, 82, 75,127,200, 32, 36,164,244, 7, 2, 32,195,158,148,179,187, 71, 8, 0,246, 0,224, 51,
+ 1,200, 0, 32,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, 47, 23, 32,197, 4,113, 43, 50, 65,
+ 69, 45,252, 94,120, 82, 75,127, 72,243, 31,107, 99,159,188, 78, 0,164,218,200,201,201,193, 25, 80,193,193,200,151,194,199,196,
+128,110, 77, 64,187, 20, 62, 54, 22,231,189, 17, 20,206, 1, 48,144,117, 41,188,176,176,240,219,183,111,129,237,253,215,175, 95,
+ 3,123, 0,240, 75,225,191,126,253, 10,172, 9,128,165, 63,176, 26, 64, 27,220, 71, 6,144, 82, 30, 50, 10,132,118, 19, 25, 30,
+ 93,104,165, 63,100, 19, 0, 50,151,140,134, 63,241,227, 63, 64,112,251,246,109, 96,116, 0, 61,104,105,105, 9, 36,129,129, 6,
+ 44, 79, 55,109,218,196,204,204, 76, 76, 5, 64, 73, 43, 30,217, 4,146,116, 25,131, 1,144,113,238,220, 57,160,155,109,108,108,
+128, 73, 11,216,203, 68, 94, 48, 61, 98, 1,100, 21, 16,218, 36, 48,242, 42, 32,128, 0,236, 93, 49, 14,128, 32, 12,252, 0, 79,
+ 32,225, 25,204, 36,254,136,111,242, 4, 38,190,193,226,233, 37, 77, 21,163,213,193, 56,216,169, 49, 12,166,150, 94,165, 71,238,
+187, 67,224, 55,171,191,198,128, 91,189,255,161,191, 96,128, 45,113, 15,125, 75,226,142,186,240,100, 4, 93,190,191,136,194,143,
+ 61, 20,137,116, 39,156,188,241,230, 23,225, 4,149, 17,213, 95, 14,148, 70,195,119, 12, 33, 80,255, 29, 0, 64, 46,144,126,168,
+ 37,197,247, 88,183,189, 7, 96,159, 1,232, 36, 68, 76, 0,171, 8,172, 62, 49, 59,143,149,247,190,214, 74,229,181,222, 59, 17,
+ 72, 68,225, 57, 19, 54,146,121,166,213,164,127,183,156,228, 72,185,199, 98,189,137, 30,211, 73,141, 70,198,103,206, 25,237,127,
+ 74, 9,120,224,156,107,173, 25, 1, 64, 42, 56, 27,169,103, 35,129,187,189, 63,247, 14, 34, 86, 74,129,131,210, 31, 99, 68,220,
+240, 43,243,207,129, 47,109, 22, 64, 44,152,249,141,108,179,208, 82, 39,114,251, 5,185, 89, 68,187,210, 31,152,236, 40, 95, 81,
+ 67,188,226,199, 79, 94,224,146,226,228,228, 34,168, 29,235,192, 52,145, 0, 88,160, 0, 75,252,189,123,247,194,239,133,135, 47,
+ 6, 37,166, 14,195,122, 41, 60,100,199, 13,193, 46, 8,102,165,158,155,155,139,167,244,135, 0, 33, 33, 33,200, 16, 63,176, 53,
+141,220,240,175,169,169,193,159,228, 40,220, 7,128, 28, 26,104, 91, 37, 8,214,247,246,246,246,219,182,109,251,243,231,207,135,
+ 15,144, 75,225, 65, 46, 1,118, 8,128, 92, 32,155,248,134, 60,208, 94,228,165,159,200,211, 3,248, 75,127, 6,114,231,120, 40,
+175, 3, 42, 42, 42, 14, 30, 60, 8,140,166,246,246,118, 96,139, 1,216, 1,130,108,137, 32, 56,196, 71, 70, 43, 30, 89, 47,169,
+ 0, 88, 51, 61,125,250, 20,121, 31,192,197,139, 23,129, 93, 55, 96,171,130,200,117,171, 35, 1,160, 77, 2, 35, 3,128, 0, 98,
+193, 95,136,227,234,219,210, 26,144, 81,250,211, 57,159,180,180,180,224,223,223, 72,176,178,164,100, 72, 23, 82,104, 66,150,225,
+ 3, 25,144,189, 96,240,123,225,241,148,107,144,139,221,129,133, 23,242, 28, 0,164,121, 91, 86, 86,134,191,180,197,170,151,212,
+ 33, 35, 34, 27,254,212,234,146, 34,135, 3,230,165,240,248,235, 0, 96,176,120,123,123, 3, 91,178,108,108,108, 63,127,254, 4,
+214, 1,192, 16, 22, 16, 16, 0, 22, 88,120, 14,234, 64,206, 71,240,233, 95,160,189, 64,245,240,188,131, 43,151, 65,146, 4,218,
+182, 97, 82,231,126, 49,199,124, 72, 26, 5,130,212, 1,240,205, 95, 89, 89, 89, 16, 6,176, 39,132, 71,203,179,103,207,144,119,
+123,173, 88,177,130,224, 9, 63,184,244,146, 4, 46,128, 1,154,224, 19, 48, 24, 45,247, 25,144,238, 4, 70, 46,250,145, 87, 1,
+ 1, 4, 16, 11, 21,203,119, 76,189,244,169, 45,232, 95,250, 3,129, 40, 24,144,173, 93, 9, 12,168,229, 24,248,248, 15,114,217,
+135,245,178, 79,178,143,124,160, 80, 47,214,222, 0,145,128,236, 57, 0,180, 36,129,181,203, 69, 48,217, 0,187,149,119,239,222,
+221,191,127,255,247,239,223,255,254,253,107, 96, 96, 16, 22, 22, 70, 48,238, 78,156, 56, 1,239, 70,192, 69,144,217,184, 82, 5,
+188,113, 0,169, 57,128, 57,136, 96,101, 3, 7, 97,148,221,159, 76,118, 14,146,150,150, 14, 12, 12,196,175,166,185,185,153,234,
+122, 71, 1, 73,117, 0,102,233, 15, 4, 0, 1,196, 66,173, 50,116,244,180,166, 1, 7,104, 81, 64,252,145,176, 67,200, 83, 3,
+ 98,148, 50, 24, 16,175, 30,216,191, 33,242,156, 31, 60,141, 3, 50,170, 91,106,213,208,164, 2, 49, 49, 49,178,195,150, 18,189,
+163,128,248, 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, 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,240, 82,248,209, 11,184, 71,245, 14, 81,189,155,253,166, 16,
+175,215,119, 83, 14,181,244,110,244, 37, 65,175,255,102, 20,189, 62, 54,210, 12,224,189, 11,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,187,119,239, 38,232,134, 53,107,214, 16, 31, 83,144, 93,208, 88,239, 16,198, 7, 66,223,129,169,255,
+160,131,152, 86, 11,145,160,209,184,159, 65, 41, 30,156,188, 22, 48,156, 45, 34, 57,124, 67,222, 32,236, 93, 35,130, 71, 33,176,
+244,252,250,245,235,174, 93,187,128,201, 56,148, 85, 88, 66, 86,244,199,215,239,156,223,254, 88,151,164,218,249,134,111,153, 59,
+ 99,243,222,189,110,110,110,116, 72, 18,127,255,254, 5,186, 65, 95, 95, 95, 77, 77,237,220,185,115, 63,126,252, 80, 85, 85,197,
+ 60, 28, 30, 43,248,243,231,207,197, 51,231,101,146, 13,203,204,180, 79,236,234, 89,123,217, 65, 85,199,137, 72,189,163,128, 12,
+ 0, 16, 64, 68, 85, 0,196, 28,233, 67,149, 11,184, 85,207,221, 21,124,251,133,145,225,255,175,191,204,191,223,125,121,242,230,
+227,131, 41,103,121, 28,205, 69,180, 53,240,232, 58,187, 63, 93, 3,186, 74,155,121,253,174,127,135, 79,255, 79,139, 96, 0,138,
+ 20,181,146, 86,148,147,116, 1, 55,174,154,131,214, 87,118,128,202,162, 80,208, 22, 33, 33, 33, 44, 71, 6,189,123,231, 2, 14,
+106, 65,250, 44, 9,135,149,254,255,193,165,191,221,145, 35, 71,240, 84, 0,122,250,187,158, 61, 91,187,104, 62,148,123,235,198,
+ 77, 32,153,146,184,238,227,151,156,207, 31,240, 85,243, 43, 87,174,196,239, 12,226, 55,253, 99,166,228,140,244,244, 25,196, 85,
+ 30,200,215,208,147, 0,148,226, 17,135,178,145, 81, 1,192,124,135,231,228, 81, 8,184,123,247,238,129, 85,171,154, 92,194, 12,
+162,179,216,196, 5, 25, 88,152, 24, 24,152, 24,254,253,103,248,199,250,239,231,127,175,248,180, 71,147, 58,142, 29, 59,102,101,
+101, 69,235,194,148,137,137,201,192,192,224,192,129, 3,192, 58,192,204,204,236,197,139, 23, 23, 47, 94,212,211,211, 35,230,152,
+ 25,160,103,157,157, 92,219,251, 54,149, 39, 92,182,240,200,180, 48,223, 83, 50,249,137,154,105, 28, 86,189,144,216,196, 95, 61,
+ 0,101, 73,174,236,135, 17, 64,187, 16, 24,209,247,130,173,254, 7, 8, 32, 22, 98, 51,140,203,170,153,161,239,137,175, 3,200,
+184,128, 91,230,238, 75, 35, 78, 65, 54, 73,254,191, 12,255, 57, 63,112,189,120,253,250,197,231,143,138,236, 60, 55,118, 30, 1,
+ 70,175, 40,238, 58, 0, 88,214,223,184,203,244,255, 63,199, 95, 70,246, 0,215,223,129,110,223, 25, 24,254,193,218, 77, 36,230,
+ 86, 18,203,110,248,145,141,144,131,168, 76, 42,238,117,158, 5,214, 36, 97, 4,171, 1,130,117, 42,193,253,159,144, 91,144, 48,
+132,137, 61, 86,229,246, 94,190,158, 85,145, 16,118,113,232,114, 53,151, 79,100,148,254,125,125,125,192,220, 94,220, 6,189,248,
+ 9, 79, 14, 7,150,254, 22,230,107, 45,204, 25, 26, 27, 17,130, 81, 81, 12,224, 59,220,166, 44, 95,133,175, 14, 0, 22, 10,144,
+195,239,128,133, 96,120,120, 56,228,212, 35,130, 5, 34,214,182, 63,228,192, 12,184, 59, 51, 50,136, 45,253,201, 4,198,125, 12,
+176,139,218, 65, 21,128, 81, 47,195,185, 98, 26, 89,181,111,223,190,233,129,105,138, 78,174, 12,204, 63, 25, 89,153, 24, 89,152,
+ 24,153, 89,255,255,103,252,247,245,207,255,191,127,129, 77,170,212,248,172,172,186,252,187,226,226, 36,109,106, 35, 3, 0,243,
+130,164,164, 36, 48,156, 15, 30, 60,120,227,198, 13, 87, 87, 87, 75, 75,203,147, 39, 79,106,107,107, 19,212,123,100,239,242, 32,
+131,111,103, 63, 51, 71,213,127,177, 49,156,152, 83, 16,222, 83,254,161,188,103,169,146, 97, 20,158,194, 29, 94,188, 0,163, 24,
+ 77,132,242, 43, 55,134, 55, 0, 8, 32, 22, 34, 75,127, 16,119,181, 32, 49,117, 0,121, 23,112, 43,220,120,166,206,198,205,246,
+255, 15,103, 79,233,159,111,191, 56,138, 91,249,217, 56,126,176,126,255,250,227, 59, 39, 3,227,243,131, 39,216,100, 36,249,249,
+249,177,234,189,113,151, 97,214, 10, 96,137,255, 13,140, 24,108, 77,153, 2,221, 24, 97,117, 0, 3,176, 55, 48,107, 5, 81, 97,
+ 65,234, 5,220,144,210, 31, 82,244, 67, 74,127,120,112,117, 18, 81, 7,220,237,184,139, 75, 74,185, 2, 95, 22, 5,182,253,145,
+ 47, 51, 65,149, 74, 7, 75,225, 59,167,236,205,101,201,154, 41,254,255, 25,254, 91, 10,213, 88,187,104, 31,217,125,181,119,117,
+ 20,195,234,255,245, 69,211,164,212,137,109, 74,127,121,152, 46,205,193,240,237,237, 85, 96,227,139, 87, 76, 15, 82,250, 79,159,
+ 62, 29,171, 98, 94,129, 43,192,210, 31,194, 62,121,146, 1,124,103, 31, 8,192,119,248, 71,134, 77,153, 49,167,154,233,159, 44,
+158, 65, 30, 10, 19, 58, 48,102, 33,165, 63, 82,125,144, 62, 99, 6,246,100,201, 20,246, 30,222,124, 96, 4,227,127,161,168,178,
+140,144, 81, 25, 16,229,141,218,231, 97, 10,127, 15, 25,176, 1,130,127,255, 18, 10, 10, 10, 32,226, 64, 6,176, 38, 96, 82, 77,
+134, 26, 12, 86,131,166,151, 37, 28,221, 94,228,123, 24, 65,178,184,237,253,241,227,135,132,188, 2,195,191, 95, 76,236, 12,140,
+ 44,204,127, 62,127,252,113,239,254,235, 39, 79,101,172, 28, 24,217, 4, 24,127,255, 98, 96,102,234,204, 44,113,157,213, 80, 84,
+ 84, 68, 73, 48,226,219, 86, 10,110,140,127,255,254, 93, 72, 72, 8,216, 62, 0,134,246,253,251,247, 23, 44, 88,160,169,169,249,
+225,195, 7,130, 29, 44,160, 94,121,166,147,146,114, 30, 31, 14, 94,254,248,158,125,241,150, 63,219, 78, 44,201, 11,229,100,249,
+ 6,140, 53, 44, 21,192,232,184, 16, 65,128, 25, 89,104,125, 2,128, 0, 98,193, 95,244, 3,131,152,209, 21,118,134,226,158, 48,
+134, 80,194,205, 37, 72,185,255,237,219, 82, 96,156,254,248, 49, 15, 88, 90, 17,115, 1,183,216,243,119, 98,226, 28, 28,245, 89,
+127,223,188,251,243,236, 13, 11, 27, 43, 23, 35, 51, 55, 16, 49,179, 8,177,114,188,255,252,225,249,190, 99,252,129,158, 88,245,
+162,149,239,135, 79,255, 3, 87, 0, 12,125,213,140,255, 25, 25, 24,255, 19,219, 21, 32,245, 2,110,228,210, 31, 29,128,235, 0,
+146,166, 16, 4,211,160, 97,254,126,214, 76, 98,156, 74,118, 39,166,122,138, 31,164,232,183,210, 6,221, 37, 0, 36,143, 93, 5,
+ 85, 3,141,125,217, 51,103, 18,219, 89, 6, 22, 65,233,133, 87, 32,249,214,198,198, 6, 88, 1,224, 42,253,129,192,206,230, 52,
+156,109,106,202, 48,123, 54,195,254,253, 12,170,170, 64,167, 34,122, 12, 6,186,215, 47, 93,148,197, 53,166, 76,252,112, 16,158,
+158, 22,114,233,207, 0,154, 6,192, 25,206,192,110, 1,164, 12,199, 90,203,254,131,149, 59,192,198, 14, 48, 28, 54, 31, 66,153,
+112,155, 62, 99, 38,196, 87, 10, 10, 10,192,236, 51,113,226, 68,136, 56,144, 1,172, 0,118,238,220, 9, 63,183,146, 1, 67, 47,
+164, 59, 2,212,149,154,154,138,105,239, 31, 88, 56,204,154, 61, 27,104,239,150,195, 79,209, 74, 67, 22, 94, 94, 6, 86,230,191,
+223, 62, 92,223,182,119,233,170, 53,211,158,129, 44, 58,213,200,167,106,231,245,243,209,227,171, 23,207, 94,190,127,235,227,139,
+ 23, 87,174, 0, 35, 78,130,140,210, 4,243,216, 53,204, 18,252,217,179,103,181,181,181, 61, 61, 61,191,126,253, 2,118,221,120,
+121,121,191,126,253,122,234,212, 41,252,201, 18,162,247,195,147,163,141,243, 31,205, 45,144,122,247,149,141,141,133, 73, 70,144,
+227,197,155, 95,233, 93,127,244, 77,140,229,112,247,234, 32,213, 0, 60,162, 49, 25,163, 0,173,244, 71,174, 21, 0, 2,136, 9,
+ 87,158,129,156,123,142, 16,221, 67,212, 57, 83,144, 27, 96,190,125, 91, 6, 41,253,225,163,210,248,111,134, 97, 57,112,150,255,
+221,231,127,108, 44,191,206, 94,253,121,253,222,143, 93,135, 25,190,255,100,251,255,159,139,129,153,133,129,241,231,191, 63,239,
+126,254,152,182,123, 11, 46,237,125,213,160,102, 62, 28,128,217,144,252,251,255,230,157,255, 69,173, 36, 52, 19, 32, 23,112, 51,
+ 16,113, 57, 23, 80, 22,249, 16,127, 68,243, 31,169, 14,160,195, 21, 78,164,130,187,231,191, 0, 67, 6, 94,250, 3, 65, 80, 61,
+107,207,170, 72, 27, 87, 96,247,252, 63, 88,150, 48, 88,182,108, 89,113, 27, 35,143,168, 46, 48,100, 61, 2, 51,143, 28, 57,130,
+ 71,241, 63,166,199,210, 82, 40,103,159,233,235,131, 74,255,184, 56,148,241, 34, 89,217,167,120,134,128,128, 32, 60, 60,156, 25,
+ 21,192, 69,240,187, 22, 61, 37, 19, 89,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,228, 64,128,112,177,218, 11,204, 47, 76, 92,236,191, 95,
+ 60,156, 89, 83,179,224,235,135,247,246, 22, 16,241,185, 75, 22, 52,148,164,168, 21, 69, 54, 93,222,183,234,253,125, 87, 63, 63,
+ 34, 59,184,192,226, 30,152, 11,206,159, 63,143, 84,101,206,192, 58,202, 7, 9,144,203,151, 47, 31, 60,120, 48, 50, 50,114,202,
+148, 41, 95,190,124,129, 28,160, 13,236,151,240,240,240,132,133,133, 89, 91, 91,227, 42,250, 65,122,143,175,189,181,179,168,168,
+178,119,115,189,212,245,167, 44, 31,191, 48,255, 99,100,120,251,229,215,127, 97,229,194,170, 86,159,128, 24,156, 85, 53,176, 26,
+ 7,103,216,153, 96,128,149, 49, 10,112,149,254, 64, 0, 16, 64, 44, 88,139,126, 50, 58,134,104, 34,144,210, 31,185, 91,128,231,
+ 2,110,150,183, 31,222,253,103,101,123,251,142, 99,195, 62, 70, 22, 38,134, 31,191,254,127,254,202,248,231, 15, 43,176,245,247,
+255,223,143,191,127, 62,255,249,197,240, 15,231,152, 47,100,178,183,175, 26, 75,234, 2, 79, 14,147,236, 29, 98, 46,224, 70,107,
+254,159,233, 80,194,172, 12,136,185,194, 91,185, 66, 25,207, 88, 16,213, 65,215,140, 98, 11,193, 26,120,233, 15, 1, 16, 17, 75,
+161,171, 64, 89,130, 14, 94,186,116,233,161, 67,135,222,190,117, 22, 22,222,203, 35,162, 3, 76, 45, 76, 76, 76,120,230,217, 30,
+ 61, 98, 64,174, 7,129,137,203,204, 12,196,184,125,155, 97,234, 84,168,224,187,119, 12, 44, 44, 56, 71, 23, 9, 14,247,147,119,
+242, 59, 60, 65,226,247,114,126,126, 62,188, 21,143, 92,148,227, 55, 92, 81, 81, 17, 62,250, 15, 7,144, 78, 0, 80, 10,209, 9,
+ 64, 5,201,210,106,183,174, 94,123, 42, 40, 8, 12,210,188,188,188, 73,147, 38, 17,111,175,237, 79,129,255,255,190,164,180, 85,
+235,134,132,204,108,107,131,223,223, 50,243,246, 21,104,207,248,240,225,221,187,119, 3,173, 6,103,240,111, 4, 75,127, 72,151,
+ 14, 24, 56,192, 86,182,129,129, 1,176, 38, 0,106,204,204,204,124,252, 25, 75, 21,251,228,201, 19,127,127,127,160,215,182,109,
+219, 6,185, 50,147, 1,188,164,135, 1,124,143, 16,158,121, 90,160,248,189,155, 23, 26,202,146,132, 85, 87,159, 95, 29,127,233,
+ 49,227,163,151, 44, 12,255,153,126,254,250,253,238,191,112,118,114, 22,121, 75,128, 40,185,215,100, 68, 1,128, 0,162,206, 70,
+176,153, 48, 0,107, 20,163, 71, 24, 80, 28,174, 6, 83,251,181, 39,143, 78,191,121,118,245,254,189,151,247, 31,124,122,240,228,
+243,227,167,127,190,125,255,253,251,207,231,191,191,190,253,253,243,243, 63,176, 0,248,255,159, 80,140,194,215,252,220,184, 11,
+ 98, 3, 27,254,224,182, 63, 83,111, 53, 57,183,158, 17,211, 74, 2, 22,244,240,178, 30,194, 70, 22, 65,174, 18, 8,116,155,222,
+207,130,140,252, 64, 16,173,163, 28,220,216, 7, 7,212, 43,208,221, 94,235, 26,127,151, 21,212, 3, 25,192,110, 1, 49,109,255,
+ 64,187, 67,192, 94,157,224,137,189,253,213,160,220,107,103,103,135,103,240, 7, 52, 18, 34, 35,171,172,204, 0, 71, 55,110, 48,
+ 64, 14,202, 84, 85,253, 15, 44, 30,133,132, 64, 72, 69,133,193,213,157, 64,249, 14,111,245, 35, 55,135,225, 55,193, 82,146,104,
+241,168, 1,150,152,104,133, 56,180,211,217,215,135,127,125,170,139,139, 11,252, 42,118,100, 0, 20, 68,233, 4,160,130, 67,215,
+ 30, 37, 37,103,159, 93,182,172,178,178, 18,179,214,129,216,187,119,239, 94,172,165,155,157,150,220,188,185, 83,141,163,162,218,
+219,219,177, 90, 13,172, 60,156,157,157,137, 44, 76,129,113, 10,180, 5, 24, 56, 64,245,144,218, 29,210,252, 7,214, 4, 88,213,
+255,254,253,123,203,150, 45,215,174, 93,187,125,251,246,215,175, 95,129, 92,160,224,175, 95,191, 2, 2, 2, 8,182, 41,127,254,
+252,121,118,109,212,143, 91,147,119, 30,188,123,255, 57,243,167,175, 76,127,255, 51, 60,253,202,153, 93, 84, 77, 80, 47,176, 22,
+135,172,235, 5,146,144, 26, 61, 29, 12,128,186, 32,140,209, 34, 30, 79,243, 31, 8, 0, 2,136, 9, 51, 75, 32,119,120,145, 7,
+ 52,136,177, 6, 50,102,202,197,133,152,159,130,172, 86,196,127, 1, 55, 43, 27, 51, 48,202,159,124,253,240,232,227,187,215,159,
+222,127,252,241,227,253,175,239,175,127,126,127,254,227,219,211, 31, 95,222,253,254,249,254,223,239, 95,168, 3,184, 40,109, 31,
+ 83,212,242, 20, 54, 37,144, 18,206,243, 31,216, 51,102, 96, 35,198,229,100, 95,192,141,101,240,135,232,210, 31,255,100, 47,141,
+192,209, 61, 87, 33, 12, 13, 49,247,160,122, 86, 56,234, 93, 21,197,200,192,136, 63,179,249,219, 28,140, 47, 2,149,254,192, 20,
+178,241,168, 3, 3,248,184,124,130, 54,170,105,168, 35, 85, 33, 12, 83,166, 48,220,185, 3,234, 7, 52, 54,254,135, 3, 65, 65,
+ 65,252, 61,128,191, 96, 0,153, 3,248, 11, 3,164, 78, 9,144, 10, 32, 77,117,180,118, 55,176, 79, 0,244, 62,174, 86, 60,188,
+ 5,138,181,230,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,218, 61,123,246, 96,222,162, 53,247,233,173,231,218, 90,210,210,210,255,254,253,195, 90,121, 96,
+ 21,196, 21,209,240, 5, 54,192, 38, 63, 3,108,243, 4,214,139,228, 32,158,149,149,149,125,244,232, 17,176,147,161,162,162,194,
+194,194, 2,169,179, 45, 44, 44,136,105,170, 43,107, 24,206,218, 37,112,105, 91,189,173,165, 38, 55, 7, 19, 55,215, 95, 78,246,
+159,158,254, 68,141, 57, 3,203, 43,120,253, 52, 58, 4, 68, 6, 0, 8, 32, 38, 92, 45, 35,120, 53,240,127,119, 40, 49, 61,101,
+ 56,128, 92,149, 7, 41,247, 33, 36,193, 11,184, 53,173,172,254,240,112,189,255,255,247,218,215,247, 87, 62,190,189,250,233,205,
+213, 79,239,174,125,125,119,231,219,251,183, 63,127,124,249,243,231,217,183,175,120,110,224, 11,116, 99,236,171,102, 6,162,255,
+ 12,204,255, 25,153,210, 34, 24, 83, 35,216,146,195, 69,149,149,197,255, 49,176, 50, 48, 16,238, 12,146,113, 1, 55, 92, 49,164,
+172,199, 44,241, 87,175, 94, 77,204, 13,174,192,192, 1,230,231,138,179, 21,144,250, 0,210, 27,160, 29, 40, 9, 91,126,252, 93,
+235,177,171,208, 69, 53,192,230,191,133, 96, 13,132,221,154,189,101, 6,238, 73, 96, 96,161,208, 95,195,144, 80,228, 44,112, 98,
+143, 99,151, 61,147, 55,195,129, 3, 7,136, 76, 18,242,242,242,112,182,147, 19,131,128, 0,176,131,197,224,137, 58,163,111, 98,
+106,138,167, 7,128,217,246,135,136, 16,211, 3, 64, 27,196,135, 3, 96,147,145, 24,199, 3, 91,250,104, 55,106, 1, 11,113, 98,
+182,167,193,235, 54,100,238, 63,220,237, 24, 80,147,153,145,241,223,183,159,172, 18,242,233, 45, 45, 9,220, 2, 2, 7,142, 67,
+135,134, 98, 18, 26,122,230,220,238, 91, 94,167,235, 20, 38,168,184,123,211, 38,204, 6, 74, 64, 70,186,182,142, 14,100,130, 26,
+ 94, 65,194,107, 80,100, 46,214, 1, 31, 96,225, 14,153,227,133, 12,250,195,203,122, 96,147, 31, 50,209, 10,172, 9,112, 53,255,
+129,178,172,172,172,192,198,254,199,143, 31,129, 53, 19, 39, 39,167,168,168,168,128,128, 0,254, 91, 36,225,122,217,217,217,131,
+ 51, 38, 45, 56,109,242,224,241, 39,113,126,102, 75,117, 70, 61,197,255,220,124,124,163,165, 51,173,155,255, 64, 0, 16, 64, 44,
+120,170, 86,148,161, 52,226,122, 0,200, 23,112, 11, 9,173,102, 32,238, 2,238, 47,250, 42,223,110,221,250,246,231,231,167,175,
+223,238,254,254,205,250, 15, 52,132,244,241,247,143,127,224,220,179,237,229,253,175,127,126,227, 29,147, 97, 44,106, 69, 36,110,
+240,100,192,191,191, 12, 63,175,223,249, 60,111,229, 39, 34, 75,127, 6, 18, 47,224, 6,185,167, 51, 12,107,176, 64, 42, 3,130,
+ 19, 0,192,226, 30, 94, 53,174, 6, 3, 6,200,141,240,180,220,194,165,234,252,137, 97,213,127, 72, 39, 0, 50, 19, 80, 86, 80,
+127,236,170,118,207,170,168,170,169,222,248, 29, 12,108,251,195,118,159, 29, 96, 0, 79,239,255,255,191, 26,156, 66,254,175, 94,
+141,111,225,105, 72, 80,240,238,157,187, 24,192, 11,255, 29, 29,161,105, 10, 24,183, 91,182, 48,248,248,128,216,230,150, 22,122,
+218, 58,248,123, 0,152,108, 34, 91,136,240,148,201,196,196,132, 92,254, 2,155,140,196,236, 2,131, 12,154,195,103, 2, 32,189,
+ 1,252,205,127, 6,164, 85, 15,200,235,121,240, 47,133,128,100,183, 63,159, 63,179,138, 8, 49,115,241,104, 7,135, 52,185,185,
+ 86, 65,150,114, 26, 26,253,253,254,131, 85, 88, 92,215,194, 65, 65, 70,113,210,245,227, 58, 58, 58,207, 79,163,220, 72,154, 1,
+ 74,186,160,144,205, 2,150,221,224,213,162,127,144,194, 10,216, 40, 7,138,192, 23,152,122,163,150, 5,192,146, 29, 50,212, 3,
+105, 71,163, 13,245, 0,217,120, 74,127,136,179,129,197, 61,176,189,127,227,198,141,115,231,206, 1,227,136,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, 22,207,114,160, 81,128, 7, 0, 4, 16, 11, 49,249, 7, 20,148, 68,172, 1,165,228, 2,110, 41, 49,
+241,203, 63, 30,124,100,250,247,226,199, 23,134,223,191,255, 2, 99,157,129,225,250,151, 15, 79,191,125,130, 92,192,141,183, 2,
+248, 15,108,245,207, 90,241, 31, 62, 7,160,161,252,135,153,225, 43, 73,165, 63, 3,233, 23,112,131,215,140, 2, 59,170,103,224,
+229,190, 73,197, 61, 72,233,111, 98, 98, 66,176,249,143,220, 49, 66,102,131,234, 0,188, 0,188,176,234,189,171,235, 44, 6,140,
+185, 10,136, 84,122, 58,190,139,221,219,178,183, 84, 79,245, 61,190,234,191,165,208, 85,200, 62,128, 19,239, 91, 24, 25, 24, 91,
+179, 55, 51, 48, 60,195, 99, 47,176,244, 7,102,185,192,192,192,217,179, 63, 65,178, 36, 35,108, 61, 10,100,115, 50, 4,108, 62,
+108,137,169, 55, 59, 47,119,234,164,201,192,230, 63,178,123,189,188, 24,234,234, 24,118,238,182,112,194,187, 74, 24, 50,158, 16,
+ 18, 18,178,114,229, 74,172,155,194,136,172, 9, 32, 27,193,144,199,148,103,128, 4,211,241,172, 7,133,199, 8,176,213, 15,169,
+ 0,128,189, 1, 98,154,255,200,133, 20,241,138,129, 77,230, 23, 15, 31, 40, 42,171,254,251,243,147,241,207, 95, 22, 94, 62, 94,
+ 35, 19, 30, 67,211,127, 95,255,252,253,246,243,255,159,191, 12,127,255,149, 79,239, 9,143, 10,199,108, 92,255, 89, 33,136,199,
+100, 52, 89,255,205,232, 10,128, 69, 60,176,244,135,100, 1,248, 61,192,200,117, 0,126, 15,170,171,171, 79,158, 60,249,245,235,
+215,174,174,174,103,206,156, 1,150,254, 64, 45, 4,239, 76,133,232,181, 48, 55,207, 72,206,184,255,228,126,108,114,198,201,221,
+ 11,159,127,126,103, 98,239, 42, 46,163,134,214, 81,192,218,123,128, 23, 80,152,251,191, 70, 55,130, 17, 3, 0, 2,136,133,200,
+204, 67,100,219, 31,185, 68, 35,233, 2,238,159,246,198,106, 12,198, 79,103, 46, 96,224,228,120,255,255,207,175, 63,127,254,253,
+255, 39,204,207,255,228,235, 71,130,123, 98,209, 22,122,194,230, 0,254,146, 84,250, 51,144,126,138, 3,100,223, 0,164,172,135,
+140, 80, 33,151,254, 4,141,194,122, 69, 45,241, 0,121,183, 29, 82, 32, 19,238, 62, 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, 65, 84,192, 6, 62,208, 4, 17, 49, 96, 63, 96, 29, 60,243,127,254,172,102,104,172, 35, 46,227,
+202,242, 31, 95, 41,137,171, 7, 0,159, 0, 32,114, 21, 16,176,140, 0,214, 1,240,229, 49,240,126, 0,241, 51, 1,144, 98,136,
+ 96,243,159,108,224,228,228,148,189,106, 86,211,231, 15, 6,246, 54, 76,226,130, 32,235,126,255, 7, 29,231,192,192,202,200,204,
+194,200,198, 60,123, 70, 31,159,179,137,178,178, 50,213,247, 64, 65,134,122,166, 79,159, 14, 36,245,245,245, 73,210,123,247,238,
+221,189,123,247, 2, 99,193,214,214, 22, 24,188,104, 67,255,192, 40, 3,198, 53, 90,176,195, 1,176,199,176,104,193, 66, 54,102,
+246,144,200, 16,160, 26, 27,175, 20,148,122,235,207, 31,136,222,209, 85, 61,180, 24,255, 1, 2,128, 0, 98,161,150, 53, 84,185,
+128,219, 49, 61,225,222,221,123,231,182,239,252,250,243, 23,176, 3,171,108,102,228, 33, 23, 73,176, 36, 37,123,170, 7, 82,130,
+147,119, 1, 55,220, 4,200,154, 81, 96,161, 15,175, 69,136,113, 15,196, 94,242,156,157,158, 46,136,203,215,192,182, 63,145,134,
+168,185,124,154,233, 2, 55,129,216,115, 32,192,165, 60, 99,124, 17,244,124, 46, 72,174, 4, 10, 2,203,125,110,185, 80,130,218,
+ 95, 62,119,155, 53,203,237, 31,211, 99,126,190,143, 64, 46,228,248, 7,130, 73,144,188, 85,158,120,234, 0, 50, 52,194,103, 2,
+ 72,106,254,227,105,189, 98, 31, 21, 84, 86,150,200,203,155,176,107,215,189,230, 13,161,172,194, 2,224, 3,221,190,127,251,147,
+ 95, 82,201,204, 37,180,109,225,204,139, 34,140,110,164, 28,230,243,247,239, 31, 98,230,192,136, 28,234,193,229,187, 91,183,110,
+ 1, 73, 13, 13,141,183,111,223,178,176,176, 0, 75,109, 97, 97, 97, 6,216,249,116,108,108,160, 85, 24, 88, 43, 0,160,174, 83,
+167, 78,253,251,195,104,101,173,255,228,201, 19,160,202, 95,191,126,201,200,200, 64,164, 62,126,252, 8,236,232, 0, 13, 97,103,
+103,199,211,238,132,212, 13,200,140,209, 33, 32,226, 1, 64, 0,177,208,200, 92,242, 11,101,101, 37,165,156, 76,186,249,159,236,
+ 11,184, 49,171, 1, 50,236, 37,207, 58, 60,174,165,245, 25,112,224, 6, 62, 3,218,184, 11, 49, 69, 63, 50, 96,250, 39,251,249,
+131, 44,145,138, 93,193,128,138, 94, 32,239,104, 48, 96,171,159,224, 8, 62, 86, 64,146, 46, 96,169,199,197,197, 21, 24, 24, 8,
+ 57,210,249, 17,236, 72,231,163,123,119, 67,142,116,118,182,112,198,165,119,246,251,246, 84,193, 74, 20, 33,188,167,135,226,170,
+ 3,200,240,163,169,169, 41,100,201,255,191,127,255,128, 37, 56,144,241,250,245,107, 32,201,195,195,195, 0, 94, 12, 10, 36, 89,
+ 89, 89,177,250,215,199,199, 7,162, 0,168,247,199,143, 31, 12,160,141, 35,143,128, 36,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, 53,146,185,201,193,120,157,133,233, 25, 19,195, 55,240,201,255,204,255,192, 39,255,128,151, 40,254,135,156, 3,193,
+204,240,171,180, 21,116,112, 10,218,116,247, 80,244,175, 12, 41,203, 30,158,160, 46,131, 27,189, 68,123, 84,239,168,222,145,169,
+ 23, 15, 0, 8,160,161,221, 3,104,234, 88,149, 26,193,166,169,252,251,198,221,255,144,253, 95,125,213, 76, 69,173,136,237,254,
+189, 53, 76,192,202, 0,121,159, 48, 46,176,255, 24,232, 80,123,214,255,191,205,109,157, 62,190,124,116,249,246,195,191,223,126,
+208,231,102,221,145, 6,174,223, 60,247,235,199, 55, 94, 94, 41,146, 22,194, 98, 93,214, 77,228, 66, 64, 74,244, 66,128,162,162,
+ 34,100, 53, 42,228, 68,101,146,252,139,124, 18, 34,121,107, 73, 71,193, 40,160, 17, 0, 8, 32,244, 10, 96,225,162,185,248, 53,
+196,199, 37,227,146,162, 68, 47,217, 96,246,138, 95,125,213,200,151,130, 33, 74,127, 96,185,207, 8,218, 50,243, 95, 67, 25,116,
+ 64,208,190,135,248, 74,255, 59,215,111,169,104, 41, 75, 73, 11, 60,121,120,131,149, 83, 68, 75, 67,109,251,198,141,123,246,236,
+161,117, 29, 64,231, 11,229, 7, 22, 92,186,184, 71, 65,230,167,174,242,255,127,255,254,126,252,248,228,198,149, 51, 95,126, 74,
+154, 24,219, 18,169,253,227,235, 57,204,204,208, 61,107,119, 38, 84, 24, 52,253, 34,222,106,228, 82,123,237,218,181, 37, 37, 37,
+ 36,185, 28, 88,250, 23, 20, 20, 48, 50, 50,246,247,247,147, 81,136,147,121,161,252,200, 0,248,143, 10,102, 0, 7,220,172,217,
+179,113,213,235,240, 45, 2,144, 83,131,224,103, 7, 65, 66,123,132, 95, 10, 15, 1,200,215, 64,162, 13,132, 0, 4, 16,253,122,
+ 0, 76, 12,212,223,204,221, 91,205,206,200,240, 19, 92,214, 51,104, 64, 79, 86,102,182, 53,253,119,248,244,127,176,200,127,248,
+ 37, 1, 96,159,227, 44,253, 47,157, 57,163, 32, 37,115,233,248,137,147,191,126,191,127,243,158,141,157, 87,211,208, 90,223,218,
+109,255,102,208, 14, 97, 26,213, 1,104, 23,202, 47, 88,176,224,235,215,175, 36, 93, 74, 60, 80,224,194,249, 61,236, 44,239, 88,
+152,126,253,248,241,247,227, 87, 78, 27, 59,194, 39,247, 94,187,113,142,151,227,173,147, 53,187,130,188, 50, 31, 31,255,239, 63,
+127, 94,191,126, 35,254,232,241,237,187,247,142, 29,125,103,101,237, 79,140,189,192,210,255,239,157, 86,178,157, 77,246,217, 27,
+144,219, 93,224,103, 1,225,185,209,101,176, 1, 96, 11, 6, 88,219,161, 28,127, 68,195,210, 16,118, 1, 43,169,218, 30,173, 99,
+ 60,153, 2, 43,196, 25, 96,151,173, 33, 76, 74,153,241,213, 44,124, 50,214,106,117,251,246,237, 16,182,135,135,199,142, 29, 59,
+176,178, 71, 75,127, 76, 46,188, 26, 0, 8, 32,236, 21,192,209, 35, 39,173,109,204,169,235,142,127,132,110,230, 34,242,134, 38,
+ 20, 51, 25,153,110,223, 1, 21,253, 64,116,227, 46,211,255,255, 28,127, 25,217, 3, 92,127, 7,186,125,135,117, 5, 8,143,252,
+ 28,217,183, 87, 81, 82,244,202,197, 43,213,205, 13,112,241,214,198, 54, 38,102, 70, 35, 99,163,237, 59,246, 18,172, 0,254,253,
+251, 7, 44,196,239,220,185,195,201,201,169,171,171,171,162,162, 66,100,233, 15,191, 83, 12, 88,250, 67, 24, 57, 57, 57,144, 90,
+129,254,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,160,205, 66,192,230, 63,252,138, 21, 96, 63,
+ 0, 88, 7,204,198,214, 32, 37, 92,210,209,189, 7, 0, 73,186,107,214,172, 33,239, 94, 45,226, 1,188, 49, 62,115,230, 12, 82,
+237, 97,146, 15,134,232,253,187, 82, 0,222,154, 31,156,225, 57,116, 1,188,196, 71,171, 15, 0, 2, 8,103, 15, 0, 88, 7, 0,
+ 73, 82,171,129, 35,121,183,177,138,219, 76, 82, 37, 62, 70, 33, 61, 56, 98,170,129,210, 22,208,205,115,125,213,160, 19, 64,103,
+173,248, 7,190,232, 14,116, 8,173,173, 41, 19,248, 94,248,127,176,177, 32, 96, 13,193,136,107, 8, 72, 83, 81,252,225,221, 87,
+200,165, 63, 16, 84,215, 87,181, 53,119, 73, 90,234, 9, 10,240,226,119,195,247,239,223,129, 37,194,195,135, 80,211,129, 77, 15,
+ 47, 47, 47,127,127, 2, 77, 90, 60, 23,202, 67,234, 0, 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,132, 57, 7,237,114, 71,130,215, 58, 34,143,108,160, 29,101, 12,100,195,135, 59,200,
+ 24, 71,106,110,110,246,245,245, 37,245,180, 6, 96, 29, 0,180,119,213,170, 85,184,142, 99, 99, 0,159,165,140,214, 51,128, 92,
+ 9, 9, 20, 71,107, 19, 0, 11,122,204,179, 3,224,199, 43,129,239,225,202, 32,169,147,129,172,151, 57,252,195,191,149, 2,163,
+133, 53,213,155,255,200, 81,134, 22,125, 0, 1, 68, 96, 31, 0,176, 26,128,212, 4, 68, 2,172, 5, 61,145,165, 63, 4, 28, 60,
+120,240, 41, 24,144,116,150, 19,210, 28, 0, 8, 28, 62,253, 15,210,136,232,171,102,236,173, 97, 4,150,254,255, 25, 88,177,106,
+252,246,225,241,139,119, 95,138,235,234, 48,165, 62,124,124,247,254,245, 11, 70, 66,141,145,213,171, 87,195, 75,127, 8,216,182,
+109,219,245,235,215,241, 55,255,145,207,127,134, 55,255,145,235, 0,122, 94, 40, 15, 41,253, 9, 42, 3, 54,255, 57, 88,158,115,
+114,178,114,176,179, 41, 42, 42,152,152,153, 9, 10, 10,178,176, 48,179,177, 49, 11, 9,114, 60,125,252, 0,151, 70,150,255, 79,
+121,121, 56,191,125,255,115,229,202,237,103, 47, 62, 62,122,242,233,214,189, 95,207, 95,124,126,253,250,195,237, 91,247, 84,148,
+149,165,165,248,222,190,126, 52,104,155,255,104, 55,130,225,191,214, 17, 37,119,129,143,177,196,122,161, 60,121, 29, 8, 96,161,
+ 12,185,182,133,120,176,119,239, 94, 96, 18,133,156, 86,139,167,201,140,124,249, 59,242,133,192,200,214,225,178, 26, 98, 44,228,
+238, 48,242,122, 69,171, 10,185,177,203, 50, 48,224, 63,204,206,195,195,195,211,211, 19, 50,206, 3, 97, 64,216, 30, 48, 48, 90,
+ 7,224, 7, 0, 1, 68,212, 28, 0,121,189, 1,178,193,237,219,160,110, 4,176, 14,144,150,150, 38,174, 33,204,216, 87,253, 31,
+220, 9, 96,128, 55,249,193,137, 7, 52,146,120,243, 14, 68,252, 23,214, 57,128,115,231,239,126,249,130,101, 46,177,163,190,158,
+157,157,227,251,247,143,127,255,253,193,111,247,185,115,231, 48, 5,207,158, 61,171,169,169, 73,100,243, 63, 33, 33, 1,179, 50,
+160, 93, 39, 0,109,168, 7, 94,250, 19,204,192,239,223,189, 18,225,101,252,243,247,223,175,223,127, 94,191,121,199,202,198,241,
+243,231,239,223,127,254,254,249,243,239,207,223,255, 31,222,191,193,165,145,141,245, 43, 7,167,204,219,183, 31, 63,125,254,246,
+238,253,119, 62, 97,125, 43, 61,189, 83, 71,119, 72,253,250,243,241,211, 71,117,117,101,118, 54,150,175,159,223, 13,206,230, 63,
+176,132, 66,187, 76, 17,216, 3, 32,114, 38, 0, 88,115, 96,222, 1, 9, 63, 86, 26, 23,128, 95,174,144,145, 33,228,236,140, 56,
+253, 13,152, 35,128,228,166, 77,155,222,188,121, 67,228,188,212,158, 61,123, 32,165, 63, 68,253,218,181,107,113,149,194,200,253,
+ 63,200,133,192,144,235, 1, 32,183,196, 64,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, 76,225, 31,176,234, 53,195,113,243, 27,242, 88, 63,174,249,128,209, 82, 30,121,228, 7,
+173, 7, 0, 16, 64,212,223, 9,140,214,222, 39,169,249,255,241,227, 71,228,106, 0,152,121, 8,246, 3, 82, 35,152,129, 9,184,
+168, 21, 84,202,247, 85, 67,145, 6,226,170, 93, 80,243, 31,143,246,218,234,154,206,246, 38,204,108,163,172, 40,207, 47,192,205,
+241,239,215,151,111,191,105, 17, 31, 11,192, 0,153,141, 44,130, 92, 37, 80,189,244, 71,110,214, 65,184,144,158, 56,193,177,133,
+191,127, 25,190,126,251,253,245,235,175, 79,159,126,190,124,249,254,217,179, 55,159, 63,255,252,242,229, 55,176, 6,253,250,245,
+247,199, 15, 31,113, 14, 28,253,252,243,227,199,223,223,191,127,241,242,178,201, 74,243,113,113,131,154,123, 74,202, 10, 50, 82,
+124,252,124, 28,255,255,255,253,253,231,223,207,159, 95, 7,103,243,191,168,168, 8,107,201, 78,176, 19,128,121,151, 36, 4, 0,
+ 5, 9,222,249,131, 52,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,151,200, 35,224, 83,
+195,217, 53,149,127, 1,219,254, 16, 0,172, 6,192,247, 65, 50,192,122, 3,144, 81, 32,230,222,106,198,191, 12, 60,135, 30, 18,
+101, 59, 48,115, 50,115,113,188, 99, 21,225,250,253,228,206,211,255, 78, 14,118,248,213, 3, 91,211,199,142, 29, 67, 19, 36,120,
+ 13, 50,188,232,199, 44,235,105, 87,250, 67, 92, 11,105,226, 65,174,199,130, 52,238, 48,135,122,177, 2, 65, 33,209,103,247,175,
+176,179, 49,255,250,253,239,199,207, 39,143,159,188,125,247,254,211,187,119,223,222,190,251, 14, 68, 2, 66, 10,184, 52,190,124,
+243,255,197,203, 55,154,154,202, 31,222,191,103,101, 97,250,244,249,201,215, 15,255,180, 84,190,138,139,138,114,113,113,177,179,
+115, 62,127,241,153,145, 89,112,112,102, 30,172,215,184, 67,102, 2,240,107,132,244, 15,224,119, 73,194,107, 14, 6, 82,174,148,
+ 9, 11, 11,131,183,136, 33,183, 86, 0, 99, 45, 56, 56, 24, 88,253,224,223,236,131,214,246,135, 0,228,254, 4, 50,192,117, 37,
+ 36, 68, 28,152, 90, 32,119,175, 67,196, 31, 99,179, 23,168, 38, 43, 43, 19,114,187, 14,184,218,128,244,191, 65,157, 6,136,251,
+241,212, 28, 64,189, 83, 29, 5,195, 39,124, 67, 27, 11, 2,138, 64,244, 38, 57,178,142, 22,226,148,128,180,242, 14, 56,123, 86,
+103, 5,176, 14,128,247, 3, 0, 2,136,133, 22, 69, 63,176,213, 15,153, 13, 38,169,249, 15, 7,200,165, 63,176, 7,135,231, 30,
+ 49, 13,149,127,144,101,254,182,166, 12,135, 79, 35,196,225, 99, 65, 41,225, 60,255, 25,254,254,103, 96,100,250, 79, 84, 95, 7,
+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,
+255,175, 95,191,194,203,122, 32,137, 54, 13, 64,228,133,242,228, 1,200,197, 79,192, 32,133, 76, 81, 18,211,246,135, 0,125, 93,
+227,235, 87,206,254,127,250,233,219,247,223,239,217,127,252,103,120,255,227,199, 31, 96,111,224,213,155,111,207,158,127,177,117,
+148,199,165,241,251, 47,145,123,247, 95, 43, 41,202, 41, 42,202,188,125,251, 70, 80,224,175,170, 42,191,152,168, 18, 7, 39,231,
+135, 15, 95,206,158,187,241,228,233, 39, 9, 25,237,193,147, 97,254,131,111,187,132, 20,188,240,242, 23,235, 90,126, 44,163, 21,
+ 72, 43, 24,129,157, 0,248, 93,146, 16,208,215,215,183,107,215, 46, 92,122, 33, 49, 2,185,240, 7,114,217, 50,114,145, 13,169,
+ 0,128,173,120, 60,227, 63, 72,195, 71,123, 73,186,221, 8,215,149,144, 16,113, 72,241,141,171, 16,135, 44, 49,154, 54,109, 58,
+100,134,195,192, 64, 31, 62,112, 15,107,209,227,188,105, 0,162,151, 41,236, 61, 68,111,168, 37, 59, 60, 96,194,250,191, 50, 48,
+ 48,224,111,253, 3,243, 26,124,129,147,167,167, 39, 60,118, 70, 71,126,136, 4, 0, 1,196, 50, 72, 90,253, 16, 16, 17, 17, 65,
+146,122, 70,216, 64,127,160, 27, 99,160, 27, 19, 52, 83, 49,254, 79,139, 0, 38, 4,214,127,255,249,149,149,249,254, 49,188,102,
+100,248,251,143,184, 5,202,223,222,189,224,144,209,184,191,103,137, 40, 11, 83,108,117, 21, 49, 90, 56, 57, 57,171,170,170, 72,
+ 90, 6, 10,185,125, 62, 39, 39, 7, 83, 10, 82, 37,208,116, 21, 16,228,242, 63,248, 29,170, 36,173, 42,145,145, 87, 63,115, 98,
+167,152, 8,176,225,206, 2, 30,219,249,251,233,243,175,119,239,191,203, 42,106,219, 88,217,227,210,229,229, 21,188,107,251,252,
+ 19,167,174,218, 90,235,203,203,203,255,254,245,195,208, 64,143,155,159,255,225,189, 71, 79,159,125, 56,122,252,250,251,207,252,
+129,150,246,131, 39, 87,100,102, 64, 6, 88, 24, 51,129, 5, 34,184, 64,255,135, 84,238, 51, 49, 49,226,185, 96, 29,116, 57,251,
+127,120, 1,200,248,239,223, 63,120, 39, 0,200, 0,150, 86, 30, 30,238,176, 74,134,193, 59,186, 22,115,172, 3, 87,169, 13,148,
+197, 95,250, 35, 3,160, 74, 92,237,125, 60,169, 2,243, 74, 72,184, 56,158,203,194,224, 53, 7,176,252, 5, 55,255, 25,145,235,
+ 15,252,246, 34,235, 93, 85,200,131, 92, 45,194,185, 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,235,119,255,107, 66,135,251, 25,139, 90, 17,183,197,130, 7,130,254,253,
+101,248,121,253,206,103,200,213,240, 54,166,191, 5,212, 9, 55,255, 63,124,251,254,254,204, 54, 85, 89,214, 43, 79, 73, 24,146,
+102, 98, 98, 50, 3, 3,226,181,128, 47,148,239,132,143,246, 64, 58, 1, 16, 46, 49, 23,202, 83, 62, 16, 4,105,205, 17, 51,242,
+131, 18,173,224, 82,254,214,141,107,207,238, 61, 4,150,131,127,255,254,231,224, 20, 82,211,212, 9, 12, 32,112, 41,152,152,180,
+222,137, 83, 59,128, 61, 6, 93, 29, 37,105, 41,145, 71,143, 95,190,191,124,247,230,173, 71,123,247, 93,122,248,244,127, 74,106,
+ 46,145, 14,184,191,229, 51,217,190,126,240,224, 1,145, 42,255,173, 20, 36, 94,214,119, 19, 94,189,119,231,195, 59, 1,160, 81,
+163,123, 11,144, 21,160,233,197,218, 33, 64, 46, 43, 73,107, 30,145,152,133,113, 93, 9, 73,204, 85,145,240,130, 30, 77, 25, 49,
+205,139,127, 15,215,174,153, 16, 7,234,190, 88,162, 12,245,192,185,184, 42,128,209,125, 0, 68,130, 89,157, 21,200,163, 64,200,
+ 0, 32,128, 88,168,146,116,168, 2,200,104,243,206, 94,241, 23, 86,220,163, 28,248,115,227, 46,131,134,242, 31,102,134,175,144,
+210, 31, 8,142,156,254,229,163, 78,160,244,191,123,235,188,185,179, 15,139,136,249,221, 91,167, 88, 94,172, 41, 43,173,236,234,
+110,167,145,103, 49, 47,148, 71, 46,253,233,176, 11,140,212,162, 31,185, 14, 0,162, 11,151,207,190,124,241,146,155,155, 27, 79,
+195, 31,165, 32,208, 51, 6,162,165, 75,102, 94,187,121, 82, 82,156,135,131,131,245,203,151, 95, 79,159,127, 98,100,145, 77, 73,
+141, 35,210,106, 30,161, 34,178,253, 11, 89,206, 63, 0,224, 92, 49,131,114, 34, 98, 33,233, 89, 18,188, 64, 70, 54,204,200, 16,
+130, 85, 27,228, 20,142,184,202,107,130,229, 56,121,119, 73,194,189,137, 60,242, 51, 10,168, 8,124, 98,106, 33,179,190,192, 58,
+ 0, 89, 16,206, 6, 8, 32,244, 10,128,146,227,122,104,113,212, 15, 49,224,198, 93, 38,240,102,224,255,105,176, 1, 36,216, 42,
+160,127,105,225, 44,179, 86,254, 33,104, 2,176,244,215, 86,231, 43,206,111,250,206, 38,179,110,207, 83,101, 53, 80, 91,158,231,
+244,150,226,146,202,222, 30, 26,214, 1,228, 93, 40, 63, 24, 0,104,207,151, 46,201,186,162, 99,210,143, 28, 59,248,250,237,235,
+239, 47,190,113,112, 8,203, 40,234, 17, 89,127, 48, 80,118, 1, 44, 85, 66,245,255,255,127, 12,228, 29,103,114,111, 1,116, 57,
+208,189,133,180,142, 23,146,134,125, 6, 9,112,243, 9, 39,216,150,199,213,185, 30,157, 3, 32,190, 14,192, 44,253,129, 0, 32,
+128,134,195,125, 0,255, 25, 32,190,248,131,124,248, 15,184, 91,192,172,170,194,193,192,240,133,160, 9,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,142, 39,227, 66,249, 33, 13,136, 47,241, 7,178,
+203,252,190, 35, 77,176, 2, 69,104,181, 16,249,122,129,173,254,179, 69, 12,163, 0, 7, 8,201,158, 50,128,245,250, 8,169, 3,
+112, 73, 1, 4,208,232,165,240, 67, 6,140, 94, 8, 51, 10, 70,193, 40,160, 46, 0, 8,160,209, 27,193,134, 12, 24, 45,205, 71,
+193, 40, 24, 5,212, 5, 0, 1, 52,122, 39,240, 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, 0, 61,191,148, 84, 44,236, 40,224, 41,226, 80,243,119,184,166, 81, 43,126,145,245,222,188,121, 19,249,124,180,194,194,
+ 66,117,117,117, 26,165,171, 81,189, 84,209,123,249,242,101, 8, 67, 87, 87,151, 84,189,152, 87, 60,141,134,243,128,232,197, 3,
+ 0, 2, 8,251, 36,240,159, 63,127,126,252,248,193,200,204, 10,186,166,231,207,111, 54, 86, 22,118,118,118, 82,235, 22,160, 33,
+ 32, 11, 88, 72,155,103, 6, 22,250,192,226, 30, 82,244, 75,200, 42, 0,201, 23,184, 15,154,199, 44, 4,129,197, 31,164, 40,156,
+186,233, 20,144,204,246, 51, 99, 24,220, 0, 88,232, 3,139,123, 72,209,175,109, 98, 13, 36,175,158, 57, 74,107,255,110,254,242,
+101,231,215,175,238,220,220, 64,146,225,229,203, 83,229,101, 64, 65,179,206, 46,154,250,244,192,129, 3, 43, 86,172, 0,166, 43,
+184, 8, 7, 7, 71, 68, 68,132,131,131,195,104, 67,108, 80, 1, 96,161, 15, 44,238, 33, 69, 63,169,105, 18,114,114, 23,164,232,
+ 39, 41, 77, 34,159,111, 74,222,250, 78, 50,174, 20, 28, 5, 0, 1,132,165,116,254,244,249,139,164,154,169,189,174, 6, 23, 59,
+235,255,255,255,255,254,253,127,229,246,195,251,151, 14,115,178,179, 18,121, 72, 39, 16,240,112, 60,208, 86,189,119,229,150,210,
+215,159, 10,196, 23,253, 64,146,147, 95, 24,200,128, 20,253, 88,123, 3,120,218,191,102,209, 21, 64, 6, 36,217, 97,202, 98, 93,
+240,138,108, 44, 27, 27, 27, 3,120,127,249,191,127,160,171,196,254,254,253, 11,113, 15, 19, 51, 43,254, 70, 55, 16, 72,138,129,
+218,206,191, 62,125,248, 9,174,246,190,252,249, 11,113, 15,191,152, 12,254,246, 62,191,148, 50,144, 1,201,102,216,122, 3,130,
+212,245, 47, 16,228,188, 4,245, 12, 32,165, 63,164,232, 7,181,205,119,237, 70,150,245,193, 27, 83, 31,185,223,188,229,121,253,
+225,237, 29, 49, 1, 77,153, 55, 42,196, 68, 46,176,237,191,114,229, 74,228,210, 31, 8,128, 92, 78, 78, 78, 73, 73, 73,180,126,
+192,240, 6,123,246,236, 33,233,150,105, 60,135, 33,210,162,232,135,164, 73, 32, 3, 51, 77,194,122, 3,130,120,202, 95, 96,154,
+ 4, 50, 48,211, 36, 68, 22, 87,154, 4,202, 78, 95,176, 28,193, 77,136, 36,213,203,200,245, 7, 61, 67,108,144,131, 45,216,214,
+142, 35,199, 2, 64, 0,161, 87, 0, 95,191,255,114,246,139,146, 21,227,231,226, 96, 1,150,131,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,223,191,127, 79,108,109,199,
+194, 60,111,194,122,118,126,134,151, 15, 24, 78,127,121,250,250,197,157,197,253,149, 4, 27,254,192,108, 38, 35, 5, 26,218,130,
+144, 88,199,130,200,243, 47,158,115, 0,128,229, 59,176,232,111,206,201, 6,178,155, 97, 69,255,146, 91,183, 16,165, 63,161, 67,
+ 4, 30,252, 63,204, 96,246, 52, 66, 46,230,231, 63, 21,246,127,255,175,191,217,123,126,247, 77,149,127, 89,248,253,219,223,223,
+255,253,251,119,228,227,175, 33,108,160, 32,176, 31, 64,203,155,202, 7, 93,233,191,106,213,170,247,239, 93, 87,175, 14, 37, 70,
+ 61,228,116,126,250,148,104,192,242, 29,152, 38,111,157, 63, 6, 44,250,145,211,228,190,173,235,196,197,197,225, 99, 65,184,202,
+ 95, 60,105, 18, 84, 58,195,143, 87, 37, 84,250, 3, 1,144, 75, 70, 29, 48, 10,200, 0, 0, 1,132, 50, 9,252,249,243,103, 27,
+183, 64, 13, 57, 97,118, 86, 38, 96,233,255,226,197,139,203, 23,207,255,250, 3,100,254, 23,230,231,114,243,244,249,254,243, 15,
+ 49,134,178,179,190, 82,150,123,193,192,204,168,165,250,152,157,229, 37, 73,165, 63, 74, 75,243,211,103, 96,161, 15,148,194,236,
+ 16, 96, 45, 13,145,193,194,149,235,128,133, 62, 80, 10,179, 49,130, 6,128, 13,127, 96,185,207,199,199,119,239,222, 61, 96,161,
+ 15,170,246,136, 46,253,129, 13,127, 96,233, 31,152,219,226, 25,101,181,229,202,211, 23,223, 25, 72, 45,253,145,193,147,103, 47,
+128,125,109, 81, 65, 62,112,213,204, 76,134,127, 61,130,227, 65, 45, 52, 22, 86,130,165, 63, 16,212, 78,153, 10, 68,144,210, 31,
+216, 27, 40,117, 3,183,251, 69,217,240,149, 71,252,219,220, 66,164, 18,229,179, 88,153,120,184, 25,184,152, 24,152,165,197,173,
+109,130,157,239, 73,245,227, 31,252, 1,185,112,225, 66, 6,216,149,103,200, 36, 92,193, 32, 7,105,105,105,161,161,171,151, 46,
+ 93, 74,121,233, 47, 36,180,135, 72, 45, 51,193,128,145,145, 17,249,202, 70,218,149,254,173, 85,133,171, 87,175,158, 51,185, 7,
+185,244, 7,138, 76,153, 50, 5, 79,154, 68, 46,253, 49,211,164,167, 53,248,212, 41, 94,110, 34, 75,127, 68, 29, 64,202,165,176,
+163, 0, 15, 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, 96,240,
+231, 34, 96,193, 77,149,182, 63,176,244,175,170, 34,234,164,113,120,161,143,124, 47, 35,237, 0, 48, 77, 66,206, 37, 60,123,246,
+ 44,176,220, 7,166, 73, 72,233,207, 0,190,181,145,188, 52,217,149,224,115,229,238, 99, 9, 37, 73,134,175,223,104,234,120,228,
+238,194,104,215,129,120, 0, 16, 64,136, 33,160,159, 63,127, 26,106,104,112,113,178, 2,219,251,127,255, 49, 28, 61,124,164,177,
+185,229,223,127,134,219,119,238, 92,186,120, 65, 71, 71,159,153,153, 81, 93, 73,230,222,185, 63,156,156,120, 27,212, 44,175,212,
+ 20,158, 49,176, 48, 62,126,254, 27, 72,234,105, 60, 60,117,249,213,127, 6, 98,151,220,192,199,121,208,250, 4,192,202, 0,188,
+ 22,232, 41, 30,189,240,113, 30,180,246, 8, 48, 33,130,214,198,188,198,222, 23,249,243,231, 15, 23, 23, 23,176,232, 23, 20, 20,
+252,246,237, 27,228,170, 22, 81, 81,209,183,111,223, 18, 60,163,234,199,123, 6, 51, 78,206,210,201,135, 93,245, 25, 30,158,103,
+128,220, 73, 3,228, 78, 42,116,252,251,239, 47, 49,254,133, 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,236,161, 2, 2, 2,126, 81,171,244,151,
+151,151, 39,178, 80,131,151,251,144, 78, 0,217,103,184, 18, 9,156,188,131,128,253, 96, 96, 5, 0, 44,247,141,193, 12, 6,240,
+245,118, 30,246, 38,144, 52,169,171,171,251, 0,239, 10, 19,120,154,124,190,161,131, 87,155,131, 71,181, 96, 85, 71,138,190,142,
+132,186, 79, 11,208, 59,196,175, 78,161,176, 14, 24, 5,200, 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, 52, 32,243,230,141,152,152, 24,100,153, 19,176,179, 2,
+153,251,229,231,231,103,101,101,125,252,248, 49,254,233,139,249,123, 14,166,248,216, 59,128,217,183,254,128,198,127,128, 12, 7,
+ 53, 6,190,150,253,133, 37, 86, 4,221, 12,108,100, 1, 73, 57, 49,161,247, 63,127,178,240, 49,255,120,253, 13, 88, 52, 74,202,
+203,236,218,119,154, 72,255,198, 23,183,222, 63,186,151,229, 5,195, 7,113, 6, 96, 37,102,161,160,232,100,143,111,137, 42,242,
+136,255,146,240,148,181, 63,111, 50,168,252, 96, 56,201,194,192,195,194,224,107, 44,227, 27,143,175,171, 36, 45,244,235,215, 59,
+214, 63,191,129,165,255,241, 4,126,187, 64,127, 13, 49,205, 43,187, 14, 24,134,126,101,253,245,245,143,198,191,215, 47,241, 77,
+212, 67, 74,124,200, 28, 0, 50,123,144, 15,251, 0, 75,109, 96,209, 31, 13, 6,244, 44,253,209,198,124, 32, 23,167,208,161,140,
+243, 8,142, 81, 82, 82, 2, 86, 0,144,210, 31,216,246, 23,151,148, 36, 41, 77,166,249,218,157,120,246,138, 87,159,247,233,206,
+187, 12, 28,236,193,185,113, 66, 50, 62, 52,117, 51,230, 96,209,104,101,128,167, 50, 64,174, 3, 0, 2, 8,101, 14,224, 63,100,
+ 13,204,127, 6, 96,209,207, 4, 42,187, 25,214,173, 93, 19, 24, 20, 34, 34, 42, 6,201,180,255, 9,157,217,205,204,244, 74, 91,
+ 5,122, 57,162,158, 14, 23,184,233,194, 96,164,117, 15, 40, 78,140,227,144,199,124,208,196,225, 91, 1,112, 1,228, 49, 31, 52,
+113,248,210,120,172,224,211,167, 79,159, 63,127, 6,118,128,128, 85,224,235,215,175, 33,227, 63,192,174,192,151, 47, 95, 8, 14,
+ 1,173,159, 92,115,224, 10,195,199, 7, 12,191,191, 51, 76, 42,119,132,140,255,156, 59,207,112,225,249, 81, 98,214, 75,125,124,
+118, 87,136,159, 91, 88,136, 91, 93, 77,243,222,253,215,183,158,190,149, 19,230,255,249,242,213,159,223,127,224, 91, 1,240,248,
+215,202,193,223,198, 49,114,253,230, 85,251, 15,173, 90,214, 87, 28, 92,220,118,233, 55,195,235,183,175,240,248, 23, 62,226,159,
+104,101, 30,173, 37,191,106,253,190, 75,151, 30,244, 93, 62,187,194, 53,142, 97,238,177,167, 79, 95,195,183, 2, 96, 25, 34,248,
+193,254,247,215,155, 95,191, 64,151,191,139, 75,203,106,104,106,126,226, 4,205,148,124,255,247,141,233,231, 87,206,175,204, 47,
+159, 99,175, 0, 32,193,248, 3, 12,224,195, 62,104, 43,130,134,229,176, 15,217,165, 63,114,243, 31, 50,247, 0,239, 4,208,218,
+203,192, 52,137, 38, 2, 79,147,240,173, 0,120,210,164,173,169,186,139,181, 90,107, 83, 79,239,132,109,117, 75,246,101, 56,153,
+188,216,184,237,227,251, 79,184, 74,100,160,120,102, 66, 36,166,120, 38, 41,147,192,163,197, 61,126,128, 54,250,143,220, 33, 0,
+ 8, 32, 38,228, 30,250,199, 47,223,152,153, 24,255,252,249,251,239,255,255, 63,255, 64,147,246, 23, 47,156,119,114, 6,221, 96,
+247,247,255,127,102, 38,230,207,223,126,253,249,245, 19,103,243,255,239, 95, 69,233,231,162, 66, 31, 33,149,137,149, 25, 15,228,
+114, 85, 96, 39,192, 80,243,206,159,191,127,137,105,254, 99,157, 10, 38,182, 57,140,109, 26,138,160, 94, 65, 65, 65, 96,185, 15,
+236, 1, 0,171, 1, 81, 81, 81,200,132, 48,176,120,250,240,225, 3,193, 10, 32,173,117, 5,176,220,231, 87, 96, 0, 86, 3,121,
+157,251,129,165,127, 80,126,251,147,127, 47,150,246,149, 1, 67,146,152,230,191,177,177,154,168,146,130,152,168, 8, 27, 48,228,
+ 25,255,191,254,250,253,253,231, 31, 68,250,183,183, 99, 67,128,166, 34, 31,159, 48,151,168,212,239,119,239,207,111, 89,254,225,
+221, 35, 34,211,196,188,142, 28,134, 66, 23,150, 63,191, 20,190, 50,188, 98,254, 52,233,249,105, 6, 54, 62, 2,227, 93,119, 63,
+189, 97,250,254,136,237,155,137,138,163, 86, 28,207, 61,193, 3,162,162,231,101, 45,238,125,100,250,252,243,255,247,111, 75,254,
+113,240,240,226,105,251, 15, 69,144,158, 46,136, 57,242, 67,252,108, 48,217,165, 63,114, 65, 15,175,132, 32, 55,182,211,212,191,
+192, 52,121,252,248,113,200,184,191,177,177, 49, 3,248, 34,226,149,155,182, 17,159, 38, 55,174,111,112, 47,207,245,242,114, 22,
+ 97,103,254,204,248,127,231,173,199,199,175, 60, 37, 88,124,163,213, 1, 16,238,232, 36, 48,181,138,126, 92,227, 63, 64, 0, 16,
+ 64,136, 97, 25, 96, 9,120,251,218, 37, 5, 41, 33, 78, 86,150,191,127,255,129,175,104,102, 72, 75,207, 6,118, 9,254,130,119,
+ 3,124,251,241,227,250,173,123,108,108, 56, 7, 69,254,252,126,103,168,117, 31,158,233,179, 10,239,175, 93,162, 10,233, 51,152,
+232,220, 61,113, 81,147,133, 89,148, 96,243, 31,173,232, 7, 10, 50, 32,237, 4,198,223,252, 71, 75,142, 64, 65, 6,164,157,177,
+184,192,223,191,127, 37, 36, 36,128, 61,128,151, 47, 95, 2,217, 34, 34, 34,111,223,190, 5,146,144, 91,170,241,235,125,253,226,
+ 78, 77,203,126, 96, 15,160,187,216,246,203,159,191, 69,157,171, 39,150,135, 22,247,109, 97, 97,100, 36, 84,254,131,154, 90,146,
+ 34, 2,172, 12,172,127, 25, 24,159,223,191,250,240,213, 71,101, 81,161,139,239,158,157,187,251,148,152,230,127,112, 82, 17,171,
+ 16, 3, 19, 51,195,130,109,247,215, 78, 43, 77,234,152, 89,228,171,159,237, 44, 79,208,191,192,230,127,175, 95, 24,195, 7, 14,
+ 6, 70, 86,134,222,158,144,211,135,119, 57,103, 50,182,231, 50,158, 40,195,211,252, 7,130,139, 47, 68,108,190,127,252,194,201,
+252,141,131, 67, 57,152, 21, 88,232,127,100, 98,253,195,160,246,255,239,183,223,111,158, 31,157,252, 49, 58, 74,121,152,229, 31,
+172, 11,246,137,236, 22,144, 93,250, 51,160,142,254,163, 45, 24,165,233, 76,192,173,243,199,224,227,254, 89, 73, 97, 59, 96, 99,
+ 65,219,149,148, 8,238, 93, 0,166,201,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,130,245, 22,104,239, 24, 82, 29, 0,223, 74, 54,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,224, 32, 7,144, 86, 63,176, 76,103, 0,207, 6, 19,156, 16,166,164,244, 7, 22,
+241,184,250, 76, 52, 93, 14, 4, 76,147,240, 53, 63, 53,181,133,192, 52, 41, 46, 46, 14, 89, 23, 4, 17, 39,152, 38, 83, 28,244,
+ 10,122, 38,126,126,249, 74,148, 79,236,234,181, 71,192,210, 31,178,140,149,200, 58, 15, 14,144, 71,117, 70,251, 1,148,128, 45,
+ 75,154,183,224,189, 71, 4, 32,128, 80, 38,102,121,121,121,207, 30,216,240,255,191,159,130,148, 48, 47, 23,187,150,142,129,150,
+182, 62, 11, 19,195,151,239,127, 31, 61,127,119,234,192, 86, 30,110, 46, 92, 6,125,253,246, 77, 77,254,249,143,159, 28,255, 33,
+215,230,253,103,224,228,248, 1, 76,198,239, 62,176, 3, 5,120,185,255,232,170, 61, 56,124,198, 16,104, 5,254,230, 63,188,213,
+ 15,228,178,254,255,205,240, 7,186,122,236, 47, 11, 23,193,230, 63,188,213, 15,225,126,124, 5, 93,114,128,103, 59, 46,188, 14,
+ 0,146,192,126, 0,144,124,247,238, 29, 31, 31, 31,100,252,135,152, 75, 89,193,171,254,219, 51, 67,237, 25, 38, 29,158, 86,237,
+ 29, 82, 60,113, 89, 71, 54,176, 7,192,198,206, 65,176,249,127,237,209, 43, 21, 89,145,189,123, 78, 48,128,183, 95, 2,201,223,
+ 63,161,125,109, 86,220,218, 33,205,255,150, 36,231,188,250, 5,178, 74,140, 36,249, 23,210,252,119, 91, 63,111, 87,116, 36,163,
+140, 5, 3,120, 75, 48, 3,248,112, 8,136, 2, 95, 30, 30, 60,206,214,251, 89,118,113,251,150, 31,234,199, 20, 84,117, 62,113,
+ 50,220,103,120,248,249,193,235,215,109,127,191,188,151, 41,140, 43,198, 31, 80,211,167, 79, 7, 22,247,223,191,127,135, 23, 97,
+ 64, 46, 80,112, 72,100, 36, 72,171,255, 37,120,155, 52, 49,179,193,192,246, 50,121,165, 63, 3,236,242,119, 60, 5, 31,169,123,
+137,137, 4,192, 52,217,218, 80,179,110,243,118,119, 27, 35,120,154, 4, 34,227,123,247, 60,130, 99, 30,189,253, 38, 39,204,133,
+191,249, 95, 48,107,115, 85,178,155,148,132, 3,164, 22,129, 56, 21, 79, 95,138,112,183, 96,180, 31, 64,237,250, 0, 77, 4, 32,
+128,208, 87,230,240,241,242,156, 59,176,225,190,140,186,146,170, 38, 31, 55,231,191,255, 12,223,127,254,186,119,239,222,235,123,
+ 23,120,121,184,153,112,183,106, 57, 57, 56, 86,237,176,199,211,198, 7,234,229,230, 38,208,220,131,172, 1, 5, 54,249,255,253,
+253, 13, 42,253,193,224, 55, 35, 43,174,195, 24,144, 1,100,253, 25,176, 9, 12, 47, 7,137, 44,253,225,117, 0,124,243, 23,176,
+ 14,192, 25, 64, 56,234,128,197,176,141, 80,179,219, 96,123, 98,127,127,193,127, 13, 57,176,249,127,234,205,135, 11,183, 65, 3,
+ 62,240,114,159, 96,233, 15, 1,192,230,255, 90, 35,238,156, 64, 13, 50,252, 11,108,254, 23,111, 90,197,216, 90,191, 93,220,124,
+194,151, 43,112,113, 67, 22, 86, 25, 14,194, 39, 62, 1,251, 1,219, 55,253,120,242,254,238,235,183,207, 95,222,226, 97,254,203,
+103,173,103,235, 24,231, 56,188,115, 14, 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, 77, 90,200,166, 95, 96,123, 31,190,251, 23,200,128, 52,255,129,140,193,127, 20, 4,
+ 25,107, 64,105,209, 72,167, 53,192,154, 38, 9, 22,253, 16,224, 90, 51,155,138, 69, 63, 73,213,225,104, 89,143, 11,160,221, 8,
+207,128, 49, 15, 12, 16, 64,216, 27,184, 44, 44, 44,184,198,106,104, 1, 32,163,252,144,162,159,129,196,162, 31, 50,234, 77, 94,
+ 81,200, 0, 90,185,244,143,152,238, 5, 86,240,234,221, 71,226, 45, 66, 6,144, 81,126,242,138,126, 74,252, 11, 25,229,223,252,
+229, 11,217, 69,255, 40, 24,174, 0,178,196,243,209,219,111,100, 20,253,144,242, 23, 62,218, 51,116,235,191,225, 90, 7,224,145,
+ 5, 8,160,209, 75,225, 71,193, 40, 24, 5,163, 96,132, 2,128, 0, 26,189, 17,108, 20,140,130, 81, 48, 10, 70, 40, 0, 8,160,
+209, 10, 96, 20,140,130, 81, 48, 10, 70, 40, 0, 8,160,209, 10, 96, 20,140,130, 81, 48, 10, 70, 40, 0, 8,160,209, 10, 96, 20,
+140,130, 81, 48, 10, 70, 40, 0, 8,160,129,191, 20,126,164,233,253,241,226, 49,241,122, 57, 36,100, 71,195,121, 84,239,168,222,
+ 81,189, 52,186, 20, 30, 32,128, 6,117, 15,128,212, 93,224,247,238,221,219, 3, 3, 64,246,104,245,142, 7,124,252,248,241,209,
+163, 71,199,143, 31, 63,119,238, 28,144, 65,158, 33, 67,247,148,183, 81, 64, 42,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,103, 34, 75,225,223, 70, 4, 76, 21,109, 34,193,255,
+183,222,101, 57,128,114, 98,229,223,174, 83,255,183,221,141, 20, 93,199,192,174, 65,208,121,238,238,160, 35,117,119,238,220, 73,
+ 70,100, 65,206,130, 78, 79, 23,164,100,101, 61,176, 84,237,239,239, 39,184,225, 46, 53, 53, 13, 88,167, 99,198,106, 73, 73, 49,
+ 49,218,225,169, 98,194,132, 9,246,246,246,192,114,124,217,178,101,159, 62,125, 34,104, 41, 74,145,196,194, 28, 97,197,150,158,
+145,222,181,163,187,196,181, 4, 34, 56,123,246, 44,172,122, 99, 98, 64,187,148,185,185,177,228, 20,200,205, 78, 9, 9, 9,163,
+ 59, 18,144, 1,100, 95, 24,124,245, 63, 64, 0, 97,175, 0, 48, 15, 27,161,209,241, 35, 84,172, 0,224,165, 63,208,157,144, 61,
+ 41, 64, 19,136,172, 0, 32,149, 7,164, 56,131,156,123, 85, 94, 94, 78, 88,239,106, 33, 66, 6,227, 12,177,175,190, 4,110, 81,
+103, 32,226,144, 52,242,238,193, 0,182,253,197,196,160, 23, 60,112,114,114, 2, 43,131, 15, 31, 62,240,243,243,159, 58, 5,186,
+ 60,153,152, 58, 0, 24,188,144, 80, 2,134, 88,112,112, 48, 48,192, 9,214, 4,155, 54,109,128, 48,252,252, 2,112,177,113,233,
+253,126, 44, 7, 26, 36, 86, 83,224,108,100, 46,144,129, 75,239,142, 29, 40,151,155, 29, 58,116,168,173,173, 13, 57,160,150, 44,
+ 89,130, 63, 97,116,118,118,182, 58, 24, 0,189, 10,108, 25, 32,103,129,255,203,239, 50, 16, 87,255, 13, 96, 38, 66, 46,253,129,
+ 94, 6,198,248,210,165, 75,143, 28, 57,226, 21, 85,141, 75,241, 49,140, 43,180,215,175, 6,149,254,255,254,253,155, 53,107, 22,
+ 80, 59,159,156, 61,214, 66, 31,222, 29,188,113,227, 6,144, 27, 25, 9,170, 47,163,162,162,136,169, 54,122,118, 67,111, 33,126,
+177,243, 57, 80,239,178,124, 46,160,145,229, 30,101, 12,224,216, 91,190,112, 89,134, 61,190, 62,129,177,177, 49,241, 77,189,209,
+210, 31, 25, 0, 4, 16, 19,214, 98, 5,152,189,129,145,141,150,225,137, 28,144,161,100,236, 5, 89, 47,164, 49, 78,188, 94,160,
+131, 93,192, 0, 82, 7,144,148, 32, 32,165, 63,208, 58, 96, 38,129, 88, 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, 12, 57, 10, 24, 15,184,118,237, 26,208,222, 53,107,214, 64,130, 11,104,233,218,181,107,129,
+ 13, 61,160, 56,157,147, 50, 90,101, 64,163, 38, 8,176,244, 7, 38,137, 40,177,245,145, 34,107,209, 2,191,218,252, 2,203,254,
+ 8, 98,204, 1,134, 79,105,105,169,162,162, 34, 25,110, 0,234, 5,182,253,133,133,247, 82,222,246,135,151,254, 36,105,135,151,
+254,197,197,197,120,180, 35, 39, 63, 96,243,223,206,206, 14,200, 0,214, 1,192,126, 0,193,114, 3, 77,111,184, 37,168, 85,186,
+ 44,159, 19,216, 15, 40,115, 47,197,175, 23,216,246, 7,218, 5,236,142,187, 96, 0,136,212,104,243, 31, 79,233, 15, 4, 0, 1,
+196,132,173,203, 9,189, 24, 26,210,142,134, 55,247,136, 41,142, 33,121,134,146,252, 70,222, 0, 14,214, 50,157, 84, 45,240,202,
+ 3,216,252, 39,120,254,237,192, 2,120,233,143,150,145,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, 52,243, 39, 78,156, 8, 44,250, 67, 66, 66,128, 5, 10,208, 16, 96,
+225, 8,100, 3,165, 38, 77,154, 52,204,114, 11,188,244, 7,178,129,101, 55,188,109, 1, 9,124,120, 7,145,200,242, 5,168, 12,
+ 24, 98,192, 68, 69,222,172, 73,101,101, 37, 80, 47,158,168,193, 83,250,247,245,245, 1,163, 12, 88,145, 0,139,239,195,135, 15,
+ 51,128, 79,100, 34,190,244,135,104, 7,166,153, 51,103,206, 64,180, 19,180, 17,168, 62, 34, 2, 90, 53, 2,235, 0, 7, 7, 7,
+160,237, 27, 55,110, 36, 56,144, 8,108,254, 51, 48, 50, 44,205,131,158, 63, 1,236, 7, 68, 90,179,131,250, 1,120, 1,158, 82,
+ 98,180, 91,128, 86,250,167,149,163,151,138, 0, 1,196,130, 53,177,194, 47,134,190,135,116, 49, 52,193,180, 78,173,210,159, 42,
+ 21, 0, 37, 0, 88,121,144,237, 17,186, 1, 50,138,146,215,175, 95, 3,115, 50,176,165,127,231,206, 29,160,118, 96, 94,253,245,
+235, 23, 48,251, 1, 43, 0, 32,249,247,239, 95, 96,245,176,126,253,122, 92, 17,189,119, 47,168, 29, 10, 44,241,145, 21, 64,216,
+144,226, 9, 79, 10, 65, 30,225,193,197,198,211,216,199, 53, 22,132,103,240, 7,109,228, 7,210, 38, 37, 30,180,137, 4,183, 58,
+ 24,176,164,163,141,251,159,252,191,237,222, 61, 98,134, 7,145,154,240,144, 58, 18, 82,210, 1,195,144,248, 54, 41, 68,175,170,
+170, 42, 3,209,211, 45,200, 32, 51, 51, 19, 62,216, 5,100, 3,139,111,160, 33,196,151,254,246,214,160, 35, 25,129,109,255,146,
+146, 18, 96,195, 28,162,221,215, 47, 21,255,197,126,240,230, 63, 28, 64,198,130,182,109,219,166,161,161, 1,108,178,227,215, 27,
+110,137,114, 48, 23,120, 44,136, 97,249,178,243, 55, 37,110,226,215, 59, 10,200, 40,253,129, 0, 32,128,176,207, 1, 0,187, 84,
+144,134, 63,252, 98,104,146, 74,127,172,237, 80, 60,195,211,184,244, 34,139,211,238,192, 63,160, 79,225,199,142, 35,187,129,188,
+ 17,219,255,171, 4,201,118,201, 23, 31,194, 19,158,112, 71,162,149, 8,112, 46, 68, 1,214,224,122,247,238, 29, 47, 47, 47,144,
+ 60,118,236, 24,176, 26, 0,150,254,192, 38, 63,228,234, 27, 96,125,240,251,247,239,159, 63,127,226,169, 87, 32,189, 34,204, 48,
+ 1,138,172, 89,179, 6, 40,139, 39,184, 40,159, 3, 0,150,245,200,197, 61,132, 77,100, 53, 0, 44,146, 72,173, 3,254,111,189,
+ 11, 12, 84, 72,202,135, 79, 38,253, 95,113, 31, 40, 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,216,180,105, 19,154,200,226,197,139, 99, 99, 99,145,154,213,126, 64, 95, 96, 30,243, 7, 44,241,129,165,255,143,
+ 31, 63,248,249,249,217,217,217,129,217,251, 63,232,178,207,191, 64,113, 96,233, 15,100, 16,236, 85,224, 26, 6, 4, 54, 84,233,
+ 48,104,134,107, 54,152, 24, 0,169, 3, 72,200, 24, 7, 34, 49, 61, 27, 41,178,150,164,169, 41,228,230, 63,188,158, 38,178, 97,
+129,220,252,199, 90,229,227, 7,203,150, 45,131, 24, 2,172, 3,200, 24,250,135,180,252,128, 93,195,194,194,194, 51,103,206,192,
+180, 19, 72, 30, 19, 39, 78,180,181,181, 69, 22, 89,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,128, 31, 24,192,185,144,210, 31, 46,136, 89, 67, 64, 0,176,249, 15, 44,229,223,191,127,255,230,205,
+ 27, 32,249, 13, 12,190,124,249,242,233,211,167,143, 31, 63, 2,123, 3,192, 30, 0,158, 43,125,128, 5, 16,176,165, 79,176, 18,
+ 29, 84,224, 16, 18,128, 11, 2,189, 15,103,227, 25,215, 70, 30,247, 71,110,203,147,212, 44, 64, 83, 12, 44,142,129, 97, 72,246,
+ 76, 0, 80, 47, 49, 73, 26, 88,226, 3,139, 93,200,196, 47,176, 14,128,248,157,248, 75, 23,170,203,237,129,218,255,173, 20, 0,
+106, 7, 54,189, 33,218, 15, 29,251, 7,107,142,227,108,254,195, 7,124, 64,227, 54,203,151,102,102,102, 2,205, 41, 40, 40, 32,
+104, 53,168,249,207,192,184, 20,214,252,143,154,248,141, 57,226,227,242, 99,191,128,122, 59,119,116,141, 22,226, 52, 42,253,129,
+ 0, 32,128,176,247, 0,102,205,154, 5, 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,188,244,135, 51,224,101, 61, 86, 65, 52,
+ 32, 44, 44,252,246,237, 91, 96,123,255,245,235,215,192, 30, 0,176,125, 7,233, 1,124,253,250, 21, 88, 19, 0, 75,127, 96, 53,
+ 80, 86,134,115,206, 13,210,204,199,186, 68, 24, 34,139,215,205, 84,152, 3, 32, 82, 28, 25, 64,134, 77,208, 11,184,234,234,214,
+214, 86, 17, 17, 17,154, 38, 9,204,230, 63, 28, 16,156, 9,192,108,254,147,212,246,143,142,142,142,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,
+ 55,114, 63, 0,171, 32, 50,144,145,145,185,115,231, 14,176,196, 7, 54,249,127,255,254, 13, 25,250,255,241,227, 7,100, 45, 41,
+100, 78, 88, 89, 89, 25, 79,205, 10, 52, 28,210, 9,128,167, 4, 96, 80,163,137,224, 24,182,162,254, 28, 0,242,136, 16,174,176,
+194, 42, 14, 90,196, 89, 93, 29, 30, 30,190,114,229, 74,226, 7, 42,209,216,109, 34,193,201, 14,203, 35,247, 96,223, 8,230,238,
+238,126,255,254,125,180, 93, 8, 16, 0, 20,103,192,187, 41, 44, 52,116,117,104,168,179,171,235, 61,204,201,134,183,111,157, 25,
+ 24,222,167,167,227,204,137,240,171, 16, 33,157,140, 93,187,118, 49,144,114,157, 25, 19, 19, 35,168, 17, 3, 41,253, 47,253,153,
+191, 31,116, 17, 38,176,244, 39, 38,107, 64,146, 19,176,213, 15, 36, 11,139, 10,213,213,212,137,180,180,180,172, 4,172,151, 1,
+216,234,135,232,149,112,147, 4,141, 54,141, 22,254,180, 7, 0, 1,196,130,171, 59, 15,159,248,133, 47,243, 32,102, 76,156, 42,
+ 99, 65,164,238, 0, 24,129, 0, 62,228, 2, 47,227, 32,187, 55,144, 5,177,142,153, 2,219,104,219,182,109,251,243,231,207,135,
+ 15, 31, 32,115, 0, 12,224,213, 65, 64, 46,144, 77, 48,238,242,243,243, 39, 78,156, 8,169, 6,144,199,253,129,226,180,174, 59,
+129,197, 61, 49,133, 62,214,210, 16,179, 98, 0, 54,177,137, 44,253, 49, 75, 97,216,132, 48,225,102, 10,214, 35, 13, 30, 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,104,217,131,236, 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, 64,142,250, 89,126, 55, 82, 20,165, 2, 72,249,100,
+152,236,184,130, 37, 61, 2, 82, 89, 66,164,176,246,180,240,132,191,179,179, 51,193, 4, 73,134, 20,220,191,192, 24, 9, 12, 12,
+132,156, 62, 68, 42, 96, 10,127, 15,212,238,231,159, 6,105, 43, 64, 22,125, 34, 31,243, 64, 11, 96, 28, 99, 68,182, 94, 96, 3,
+ 31, 87, 61, 7,145, 26, 5,248, 1, 64, 0, 13,198,195,224,200,104,182,208,191, 17, 74,137,141,148,156,242, 70, 45,159, 42,131,
+ 1,154,224,175, 95,191,152,193,128,218, 17, 58,125,128,244, 98, 73, 72,144,227,195, 8,247,237,182,129,142,250,129,140,124,194,
+ 5,129,165, 63,195,127, 6,200,113,129,195, 35,227, 96,104, 39, 60,244, 78,245,229,152,248,207,249,161, 93,101, 57, 58, 40, 4,
+ 4, 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,196, 50, 26, 4,163, 96, 20,140, 2,100,192,136,201,250, 15, 39, 70,193,
+176, 2, 0, 1, 52,218, 3, 24,161, 0,235,225,224,163, 96, 20, 48,130, 49, 35,232, 12,104, 70, 12, 48,186, 55,107,184, 1,128,
+ 0, 26,189, 20,126,132,234,245,181,157, 57,188,253, 27,231,167,139,104,230, 48, 49, 65,150,171,194, 87, 52,254,135, 1,136,130,
+ 69,155, 46, 35,235,253,240, 96, 63, 7, 7, 7, 68, 61,228, 0,109,100,189,144, 83,243,254,253,251, 7,100,255,254,253,155, 87,
+214,110, 4,164, 43, 70,102, 22,246,255,255,254,252,251,247,103,203,145, 39,200,139, 66,113,233, 5, 6,209,203,151, 47, 37, 36,
+ 36,200,176,151, 18,189,163,121,159,129,148,149, 90, 0, 1, 52,228,135,128,170,171, 17, 87,216,181,182,154,209, 79,239, 41,208,
+165,122,173,102,173,112, 6,169, 46,199,181, 79, 21,151, 56,169,230, 12,183,190,234,175,175, 44,111,239,171,254,184, 36,253,231,
+241,173,255,138, 79,120,181,190,241,201,179,113,243,226, 82,127,228,200, 17, 27, 27, 27, 72,209, 15, 41,196, 33,141, 88,120, 33,
+254, 15, 6, 30, 62,124,136,166,247,220,185,115,198,198,198,156,156,156, 44, 44, 44, 64,141,112,237,144,114,255, 47, 12,252,252,
+249,243,236,217,179, 14,178,118,131, 63,244,128, 46,127,251,246,237,241,227,199, 5, 4, 4,208, 54, 70, 16,238, 19, 48, 50,177,
+115, 8, 9, 8,170,127,253,242,244,203,231,199,160,110, 0,227,127,134,255,248, 70,132,128,161,180,102,205,154, 91,183,110, 1,
+217,192, 96, 44, 46, 46, 38,222, 58,136,222,123,119,239, 0,195,156,141,157,189,160,160,144,166,187, 16, 70, 56, 0, 8,160, 65,
+ 84, 1,224, 58,105,146, 1,239, 65, 99,144,130, 27,185, 40, 39, 30, 80,162,119, 56, 1, 10,247,142,210,161,244,250,252,240,250,
+199, 67,171,190,125,251,169, 96,206,196, 41,195,168,250,232,146, 41,195,197,247, 63,121, 46,112,197,189, 97,148,198,170,233,218,
+181,107,192, 18, 4, 88,216,177,192, 0,164, 50,128, 52,252,255,252,249, 3, 44,193,129,237,119, 96,233,191,111,223, 62,102, 97,
+ 19,100,189,223,190,125, 59,127,254,188,133,133, 5, 27, 27, 27,252,210, 52,160,118, 96,217,244, 7, 12,128, 26,191,127,255, 14,
+ 84,243,229,203,151,193, 28,179, 85, 85, 85,200,153,232,243,231,207, 6, 6, 6,100,232, 93,188,236, 44, 39,167, 24,176, 64, 6,
+ 85, 0,140, 12,255, 33,187, 5,112, 23,203,207,158, 61, 3,134, 76, 84, 84,148,146,146, 18,228, 92, 10, 33, 33, 33, 19, 19, 19,
+172,138, 19,220, 81,118,198, 93,190,113,227, 0, 47, 87, 81,127,147,161,145,206,243, 39,175,118,109, 59,160,160, 99,248,233,211,
+199,209,194,154,108,128, 54,222,139,188,244, 31, 32,128, 88,176,150, 5,144, 82, 0, 23,155, 70,165,127, 86, 22,246,123,210,223,
+191,127,191,124,249,114, 60,117, 0,164, 4, 39,181, 9, 79,161, 94,120,219,159,140,230, 63,218,205, 51,184, 20,208, 40,180, 33,
+ 61, 6, 56, 9, 17,124,247, 14,180,107, 70, 72,104,207, 32, 76,190,191, 30, 95, 99, 63,182,248,231,183,127, 65, 42,204,234,162,
+127,254, 9,253,103, 21, 98,254,252,150,141,243,243,119,205,139, 83,206,170,101,124,227,146,199,214,110,101,188,126,253, 58,176,
+ 4,119,114,114,130,148,227, 64, 0, 44,196, 33, 87,223, 0, 11,113, 96,251,253,241,227,199,251,247,239, 7,214, 4,104, 59,223,
+128,202,128,106, 46, 94,188, 8,172, 63,128, 13, 88,118,118,118,136, 94, 72, 5, 0,212, 8, 44,221, 46, 95,190,252,227,199, 15,
+130,155,230, 30, 60,120, 0,180, 5, 88,242, 2,221, 32, 46, 46,174,170,170, 10, 25, 92, 34, 6, 80,162, 23,232,212,154,154, 26,
+248, 97,168,192,210, 28, 88, 35,138,137,137, 9, 11, 11, 19, 89,250,207, 75, 74,242, 50, 52, 4,178, 37,114,115, 57,185,196,191,
+124,122,244,233,227,221,255,255,255,130, 14,140,251, 71,224, 66, 58, 96,113, 47, 34, 34,178,104,209,162,248,248,248, 77,155, 54,
+ 1,185,135, 14, 29,250,245,235, 23, 3,131, 28, 86,245,111,219,139,224,108,158, 95,191,165,254,252, 40, 40,173,239,239,105,236,
+238,153, 38,205,244,119, 90, 79,159, 83, 68, 20, 46,189,163,128,164,210,159, 1,233, 40, 80, 32, 0, 8, 32,236, 61, 0,228, 35,
+ 80,112,177,169, 14,232,127,134, 51, 21, 6,160, 96,117, 0, 73, 0, 94,167,206, 15, 92,132, 41,155,184, 62,142,166,205,112,136,
+225,200, 36,193,107,187, 7, 16,252,248,240, 70,237,254,214, 87,204,127, 85,248, 25,228,229,254, 51,235,177,177, 40, 41,177,253,
+252,241,243,232,227,159, 31, 89,152,255,177,254,216,179,152,201, 43,255, 31, 11,250, 88, 16,252,242, 75, 65, 65, 65, 71, 71, 71,
+ 96,209, 9, 44, 70,129, 13,121, 72,195, 31, 88,118, 3, 91,169, 7, 15, 30,100, 2, 3,172,122,129, 42,175, 94,189,106, 99, 99,
+195,199,199, 7,212, 14, 20, 1,150,254,192, 82,236,211,167, 79,167, 79,159, 6, 86, 3, 64,211, 32, 51, 1,184,192,165, 75,151,
+142, 29, 59,118,255,254,125,160, 22,160,237, 18, 18, 18,192, 86,176,149,149, 21, 55, 55,225,173,224,100,235, 5, 58, 9,114,243,
+ 15,178, 32,228, 92,104, 96, 43,138,152, 42,132,137,153, 13,153,251, 98,242,100,137, 0,153,238,238,137,191,127,127, 5, 7, 14,
+227, 63, 96,233,255, 31,212, 5,248,143,123,252,237,228,201,147, 21, 21, 21,192, 64, 11, 10, 10,146,149,149, 5, 86,180,219,182,
+109, 51,119, 39,180,233,151,145,113,201,157,231,107,111, 63,221,180,113, 33, 51, 51, 99, 81,110,172,190,132,200,172,130,250,217,
+196,232, 29, 5, 56, 74,127,228, 38, 63, 90,125, 0, 16, 64, 36,172, 2,162,245,113,143, 74,184, 1, 45,154,240, 20,234,101, 32,
+107,220,159,234,109,121,248,101,150,196, 23,226, 88, 85, 2,219,254, 68, 54,255,129,133, 32,176,248,195,228, 34, 11, 98, 2,184,
+ 26,248, 45,131,152, 92,172,224,221,213,115,207,158,126, 18,227,101, 81,226,253,207, 34,242,143,197,210,131, 91,127, 49,167, 81,
+ 47, 59, 63, 39,219,151,239,223,190,253,149, 99,254,246,254,210, 49, 44,165, 24, 19, 19,228,178,251,219,183,111, 3, 91,235,192,
+ 66, 92, 24, 12,128, 45, 83, 1, 1,129,143, 31, 63, 2,219,164,192,226, 9, 50,202,143,166, 23, 34, 14, 44,118,129,117,192,173,
+ 91,183,184,184,184,128,186,128,205,103, 81, 81, 81, 30, 30, 30,160, 8,176, 10,129, 12, 13, 97, 86, 30,200,237,247,221,187,119,
+223,189,123, 87, 81, 81,209,221,221,221,204,204,236,219,183,111,251,246,237, 3,118, 44,128,213, 15,193,182,255,238, 61,123,239,
+ 61,255,200,171, 98,161,230,158, 44,109,230,247,254, 39, 19, 80,132,160, 94, 96,233, 15,172, 48,128,149, 7,176, 8,214,211,211,
+131, 15,227, 64, 24, 4, 75,127, 96,209,207,205, 35, 37, 36,172,179,116,197,165,164,121,243,182,157, 63, 15, 68,192, 30, 0, 3,
+104,186,251, 43, 84, 13, 35, 16,225, 91, 15, 4, 44,232,129,173,254,156,156, 28, 94, 94, 94, 96,208,173, 93,187, 22,232,152, 55,
+111,222,168,169,169, 17, 76, 93, 19,207,223,238, 57,113,101,118, 79, 37, 11,243,119,166,191,159,187, 38,204, 91,121,232,236, 51,
+ 38, 22, 82, 79, 24, 29, 5, 68, 2,128, 0, 98, 33,190,160, 31,204, 83, 49, 35,182, 26,128, 12,221,144, 52,122,131,217,189,128,
+247, 3, 8,246, 60, 62,127,254, 12,108,150, 2,155,213,166,166,166,104,220, 83,167, 78, 65, 4,177, 2,136, 44,144, 4,182, 76,
+129,205, 88, 96,209, 0, 17, 68,230, 98, 5,124, 63,222,110,123,244, 67,250, 61,179, 33, 31,163,232,107, 6, 21, 22,126, 38, 70,
+225,255, 63, 94,126,125,201,120,245,209,191, 23, 95,127, 0,203, 96,134,127,183, 24,140,220,113, 85, 0,236,236,236,192, 82, 88,
+ 90, 90,218,213,213, 21, 88,178, 3,139,200,183,111,223, 2,139, 36,160, 20,176,136,135, 28,127,244, 15, 67, 47, 68, 59, 80, 1,
+ 48,217, 3, 59,190, 42, 42, 42,252,252,252, 95,190,124, 57,127,254, 60,176, 86, 0,154,249, 19, 12,240,180,138,128,213,219,147,
+ 39, 79,244,245,245, 29, 28, 28,100,100,100,190,126,253, 10,172, 63,128,221,220,227,199,143, 19, 28,204, 1,234,125,249,238,163,
+144,154,133,146,109,184,128,140,218,207,175, 31, 30,157,220,122,123,239, 66,130,122, 33,179, 23,192,206,141,184,184, 56,176,192,
+ 5,214, 4,144,162, 31, 50, 22, 4,100, 99,189, 33, 7, 90,237,177,112, 8, 8,170, 11, 8,169, 51, 49,177, 2,139,251,185,243,
+247, 39, 37, 58, 66,244,166,166,166, 2, 29, 15,209, 11,246, 50,184, 40,192, 54, 13, 0, 12,216,205,155, 55,103,101,101, 73, 74,
+130, 14,248,220,187,119, 47,176, 50,227, 4, 3,111,111,239, 99,215,190,227,241,245,178,155,143,123, 79,223,152,211, 81, 46,163,
+ 46,255,245,203,251,141,219, 79, 95,186,124, 83,224,255, 63,182, 23, 47,189,115,162,143, 94,253, 62, 90, 94,147, 10,208, 78,250,
+193,236, 16, 0, 4, 16, 11,102, 89, 0, 63,228, 22, 23,123, 80, 1,178, 11,110, 10,245,146, 61,254, 67,121,171,159, 24, 41, 60,
+ 69, 57,217,171,134,128, 57, 25, 88,220,191,127,255, 30, 43,151, 72, 0,172, 45,128,229, 47,176,208, 87, 80, 80,192,228, 98,130,
+215,111, 30, 31,123,254,221,155,139,235,240,227,127, 82, 70,236,138, 63,207,190,191,150,181,190,235,210,191, 7, 31,191,252,250,
+255,244,243, 95, 78, 22,166, 63, 31, 95,240, 99,107,199,192,235, 0, 96,137,249,240,225,195, 27, 55,110,104,107,107, 3, 29,124,
+226,196, 9,200,200, 62,174, 65,124,160, 94, 72, 39, 0,162, 23, 88, 7, 60,126,252, 88, 87, 87, 23, 88,124, 3,235, 15,160, 8,
+ 80, 28,178, 58, 8, 79, 15,224,209,163, 71, 64,243,141,141,141,129,165, 63, 80, 49,176, 11, 98,110,110, 14,180, 26, 40, 14,172,
+ 57,240,135, 18, 80,205, 63, 38, 54,105, 3, 23, 96,233,207,196,204,202,201, 39, 42,103,238,253,240,196, 38,252,122,129,238,252,
+240,225,195,211,167, 79,229,228,228,172,173,173,129,150, 66, 70,126,226,227,227, 33, 10,128,117, 24, 30, 75, 57, 56,132,133, 69,
+245,127,253,252,248,230,237,249,159, 63,223,255,254, 13,154,223,134,232,125,249,226, 5, 92, 47,168,245,143,163,214,123,254,252,
+249,210,165, 75,163,163,163,129, 97,197, 0,190,142, 6,216, 27,168,172,172, 4,214, 70, 48, 37, 56,151, 39,222,250,244,173,252,
+224,133,142,146,116, 91, 31,151,175, 95,222,172, 90,119,112,230,220,181,219,139, 18,148, 94, 61,233,252,244, 66, 72, 72, 24,143,
+222, 81, 64,228, 88, 16,102,149, 0, 16, 64, 44, 88,135, 98, 8,178, 7, 57,160,124,141, 38, 49,160,197,180,133,254, 55,136, 33,
+151,221,104,149, 1, 53, 14,131,196, 9,110,222,188, 9,155,199,195,194, 37, 9, 0,139,224,221,187,119, 67, 46,241, 64,230, 98,
+237,230, 95,124,247,253,227,175,127, 23, 95,255,121,246,225,143,248, 9, 22,189, 85,119, 30, 62,184,122,243,228,175, 63, 44,204,
+191,254, 49,252,248,245,255,253,255,127,162,130,255,177, 22,226,240, 5,160,144,101, 60, 47, 95,190,148,151,151, 7,214, 91,144,
+ 97, 31, 32,137,216,224, 68, 8,192, 55, 13, 64,200,193,121,115, 28,176,114,130,220,130,162,168,168,136, 92,177,157, 57,115, 6,
+ 72, 2,131, 23,114,233, 30,174,107,127,128,161, 5, 36,191,127,123,249,229,243,227,191,127,127, 32,235,221, 4,174,170,129,221,
+ 32,144,222,255,216,199,254,129,241, 56,121,242,100, 96, 51,223,198,198, 6,200, 61,122,244,232,134, 13, 27,178,179,179,145, 74,
+127,156,224,249,183,159,177,219, 78, 20,132,121,135,196, 6,127,251,241,105,253,166, 3, 19,166, 45, 91,228,102, 10, 44,253, 71,
+203,110,170,215, 4,200,117, 0, 64, 0, 81,115, 39, 48,242, 72, 52, 46,246,112, 2,131,161, 20,128,140,221, 19, 63,254,131,103,
+206, 0,127, 28, 1,139, 15, 87, 87, 87, 65, 65, 65,172, 92,146, 0, 80, 23, 80, 47,188,184, 71,227,162,129,239,127,249,126, 51,
+ 50,156,121,243,243,213,223,191,123,239,253, 88,181,250,199,190, 39,162,119,216,248,159,124,252,253,248,243,191,175,127, 24,190,
+253,249,207, 46, 44,129,171,200,134,172,244,255,251,247,239,159, 63,127,132,133,133,121,120,120,128,117,192,239,223,191, 33, 34,
+104,219,193,144,245, 66, 86,250, 3,213,124,255,254, 29,200,149,149,149, 5,182,172, 37, 37, 37,129,213, 6,176, 13, 14,172,249,
+ 32, 38,227, 25, 23, 5, 54,195,129,125,133,179,103,207, 62,121,242, 4,114, 13,231,201,147, 39,191,124,249, 2, 20, 7,118, 62,
+240, 7, 17, 80, 13,211,191, 95, 79,207,239,249,240,228,214,191,191,191,191,127,122,253,232,228,214, 95, 95,223,227,215, 11,119,
+204,183,111,223,224,179,211,192, 78,192,213,171, 87,129,229, 56,228,210,246,143, 31,113,174,167, 4,250,245,207,239, 47,156,220,
+ 18, 28,156, 66,144, 29,193,200,122,103,207,158, 13,209,251, 15, 53,192,128, 29,184, 69,139, 22, 1, 91, 15, 77, 77, 77,126,126,
+126, 62, 62, 62,144,174,192,230,205,155, 75, 75, 75,129, 93, 46, 60,222, 4,234, 93,188,120,113, 68, 86,142,211,154,131, 37,113,
+ 65,121,101,153, 63,126,125,185,127,247,241,204,153,171, 54,248, 90, 57,200,138, 17,159,168,128,149,205,104,225,142,127, 44, 8,
+ 94,238, 35,207, 3, 3, 4, 16,245,143,130,192,188, 61, 21,147, 77,229,246, 62,198, 66,126,228, 38, 63,254,230, 63,166,222, 83,
+ 64,161,234,106, 76, 54, 49, 67, 64,196,235,165, 86,111, 0,190,152,135,248,230,255,187,119, 46,240,153, 3,146, 58, 16, 10, 10,
+ 10,190,190,190,192,102, 32, 86, 46,145, 0,168, 30,168, 11, 62,224,131,198,197,162, 94, 85, 69,149,155,153,151,145,225,247,255,
+255,215,223,255, 90,122,231,231,242, 99,207, 78,223,125,247,236, 59,195,219, 31,127,239,126,249,255,252,231,127, 89,101, 21,172,
+165, 33,100,213, 38,176,176, 6, 22,226,192,178, 91, 71, 71, 7, 92,101, 10,153,153,153, 65, 10,113, 72, 57,142, 89,136, 67, 10,
+119, 96, 61, 1, 84, 0,172,230,149,149,149, 63,124,248,240,248,241,227,119,239,222, 1,157, 10,236, 85, 0,197,129, 38, 64,148,
+225,114,185,169,169,169,140,140, 12,176, 0,221,177, 99,199, 22, 48, 56,124,248, 48,176, 97,110,105,105,137,103,206, 3,174, 87,
+ 92,136,255,237,189, 11, 55,119,207,191,186,117,250,245,173, 51, 31, 30,223,192,206,244, 15,191, 94, 96,229, 4,108,110,243,241,
+241, 93,188,120, 17, 88,235, 32, 87, 3,144,182,252,210,165, 75,241,148,200,191,126,126,252,248,225, 14, 43, 43,183,128,144, 6,
+ 55,143, 52,144, 1,233, 19, 0,193,179,147, 83,247, 47,202,115,213,248, 2,174, 0, 24,160,219,192,192,193,182,117,235, 86, 78,
+ 78, 78,160,177,192,144,177,176,176,128,119, 5, 98, 98, 98,128, 29, 17,252,222,220,182,109, 43, 31, 31,143,157,189,185,129,145,
+ 94, 96, 86,210, 55,198, 63,175, 95,189,203,200,109,238, 52, 81, 49, 18, 35,161,109, 1, 44,253,187,186,186, 70,235, 0, 98,170,
+ 1, 52, 17,128, 0,162,211, 70,176, 1,105, 44,147, 55, 70,111,214,218,138, 92,118, 3,185, 84,215, 11,111,107, 39,174,143,195,
+163,128,214,123,178,224,182, 32,239, 12,192,175, 5, 88,250, 56, 59, 59, 3,203, 80, 76, 46,176, 84,197, 23, 50, 96, 89, 32,105,
+104,104, 8, 44,167,224,130,200, 92,172, 64, 90, 77, 75,247,234, 89,249,247, 31,223,252,253,247,233,199, 31,118, 96,105,253,243,
+143, 28, 15,203,251, 63,127,158,126, 5,173, 32,242, 86, 21,231, 86,208,250,130,109, 60, 4,190,226, 83, 87, 87, 87, 95, 95, 31,
+ 88, 48, 65, 22,110, 2,157, 13, 44,170,214,175, 95, 15,217, 16, 0, 20, 97,196,208, 11,217,237, 5, 76,183,106,106,106,192,250,
+227,245,235,215,144, 37,164, 64,211,128, 34,175, 94,189,130,232, 5,138,224,169, 47,129, 61, 27,200, 82, 78, 96,137, 12, 95,202,
+ 9,116, 9,193,213, 56, 32,189, 46,206, 32,189,119, 79, 62, 59,191, 27,170,215,218,137,160, 94, 96,233,111,100,100,116,244,232,
+ 81,160, 94,105,105,105,160, 57,220,220,220, 85, 85, 85,147, 38, 77, 2,118,125,128,182,247,245,245,225,186, 35, 30, 88,229,125,
+124,127, 7, 88,172,243, 11,169, 73, 72, 89,126,255,254,230,203,167,135,221, 61,147, 26, 27,170,164,100, 24,150,231,115, 49,134,
+189,119,140, 99,128,212,152,240,141,192,183,110,221, 2,166, 1, 27, 27, 27,160,249,192, 42, 7, 40, 55,101,202,148,240,240,112,
+ 72,117,139, 31,220,188,121, 43, 36,216, 63, 34,194, 79, 71, 87,253,237,231,143, 95, 62,190, 73,203,107,110, 14,116,118,254,247,
+141,164,210,127,194,132, 9,192, 72, 1,214, 58,185,185,185, 1, 1, 1,163, 5, 61,242,128, 15,214,114, 31, 14, 0, 2,136,133,
+ 62, 5, 61,193, 21, 68, 33, 33, 33,228,237, 4,198, 5,144, 55,106,145, 87, 7,144, 90,250, 19,175, 23,255,170, 27, 90, 31,237,
+ 0, 31, 47,130,219,130,188, 39,128, 32, 0,150,131,200,171,125,224, 92, 60, 75,128,224,178,104,106,240,107,129, 0, 41, 69,229,
+ 31,102,182,127, 78,109,123,240,145,129,135,145, 85,158,135,233,233, 95, 70,102,118,150, 67,175,254,254,248,199, 32,202,206,172,
+108, 98,247, 69, 80, 1, 91,113, 6,106,194, 3, 91,220,192,118, 40,176, 76,252,244,233, 19,176,236,134, 84, 0,192,246, 59,176,
+210, 2,150, 89,155, 55,111,134, 12, 7,161,101, 3,160, 8,100,219,176,166,166, 38,100,244, 6,168, 23,146,182, 33,253, 6,160,
+ 56,176, 55,240,229,203, 23,252, 9, 91, 79, 79, 15, 88, 34,147,183,153,139, 60,189, 64,103, 75, 73, 73,185,187,187, 3,107,157,
+ 27, 55,110, 60,122,244, 8, 88,219, 9, 8, 8, 0,171,162, 57,115,230,224,218,139,139, 52, 10,244,237,195,251,155, 63,126,188,
+ 19, 16, 84,227,225,149,229,229,147,251,250,249,105, 71,231,220,200, 8, 23, 96, 5, 0, 11,216,255,200, 53,128,151,151,215,182,
+109,219,128, 29, 14, 96,128,248,249,249, 45, 92,184, 16, 88,175,107,104,104, 16,227, 71,111,111,175,245,235, 55,127,250,240,246,
+201,179,231,249,217,113,165, 21,109,129, 78, 86, 54, 63, 63, 49,176, 18, 91, 46, 1, 75,255,134,134, 6, 72, 55, 20,216, 81, 3,
+246, 3,202,202,202, 70,235, 0,252,245, 1, 50, 0, 8, 32,106, 86, 0, 20,174, 32, 34,163,148,135,128, 55,111,230, 86,159,218,
+136,117,192,135,224,244, 47, 80,239,169,234,141,104, 13,118,228, 97, 28, 60,229,248,155,185,111, 78,109,172, 38, 79,239, 64,129,
+161,120,106,144,130,149,227,165,159,127, 94,239,219,203,250,231,251,165,207,255,247,124,254,195,198,200, 40,252,255,191,163,164,
+128,189,155,179,144,177, 3,142,246, 44,168, 7, 0,108, 2, 3,203, 35, 96, 19, 30, 88,208, 3,139, 81, 72, 33, 14,105,188,139,
+138,138, 90, 91, 91,239,220,185, 19,115, 24, 7, 40, 2,172, 42,128,205,109,160,122, 96,171, 22,210,141, 96,128,205, 43, 0,185,
+ 64, 5,192, 94,197,137, 19, 39, 8, 78,131, 43,128, 1,153, 30, 39, 75, 47,176, 14, 0,150,248, 64,231, 1,123, 0,192, 78, 15,
+176,239, 2, 20,124,250,244,169,167,167, 39,176,249, 79, 80,251,223,191, 63,191,126,121,250,235,215, 71,206, 79, 15,248, 4,148,
+185,120,164,128,104,215,222,151,140,206,226,176,198, 28,152,132,169,183,178,178, 2, 6, 44,176,244, 7,214, 4,194,194,194,113,
+113,113, 7, 14, 28, 32,210,169,150,150, 86,236,236,236,124,215,206,102,103, 39,203,168,169,118, 21, 36, 47,152,182,112, 10,243,
+ 15,226, 75,255,242,242,114,160,103,159, 61,123,198,201,201, 9,140, 20, 96,119,167,181,181,181,186,186,122,180, 14,128,143,249,
+ 0, 11,125, 60, 71, 65, 0, 4, 16,149,123, 0, 3,178,130, 8,107,161, 70,100,243, 31, 83, 47,114,251, 29, 50,158,131,171, 28,
+167, 68, 47,158,178,152,212, 50,122,216,159, 4, 7, 44,209, 12,156,221,133,165,100, 94, 95,191,194,252,240,158,202,239,231,188,
+194,226, 86,186, 26,218,198, 58,223, 37,112,238, 15, 2,150,212,192,182, 63,176,153, 15, 25,172, 7,118, 5,128, 12,200,113, 14,
+240,209, 33, 89, 89, 89, 96, 29,128, 89, 96, 1, 75, 19, 3, 3, 3, 96, 29, 0, 44,223, 33, 42,225,139,106,224, 39,193, 1,141,
+ 50, 52, 52, 60,123,246,236,224, 12, 52,160,227,197,192, 64, 93, 93, 29,232, 95, 96, 53, 6,244, 62, 48, 52,170,137,154,151,250,
+255,251,215,231,223,191,190,124,255,254,154,157, 93,144,149,141,151,137,137,101,201,210,173, 49,209,222,208, 90, 16, 85, 53,164,
+ 99,209,219,219, 11,172,104,129, 12, 53, 53, 53,226,175,149, 54, 50, 50,102, 54, 53, 77,106,128,232,253,175,166,166,174, 22, 16,
+128,127, 84, 16, 25,116,118,118,142,150,242,196,212, 1, 88, 75,127, 32, 0, 8,160, 97,123, 33, 12,217, 75, 63,145,139,108, 82,
+155,240,148,232, 29, 5,248,129,172,166, 54, 16, 1, 25,240,179, 55,241,239, 11, 10, 13, 13, 21, 20, 20,132, 44,245, 1,150,128,
+144, 33, 29, 72, 15, 0, 50,241, 11, 57, 16, 84, 89, 89, 25, 40,120,228,202, 87,100,189, 19, 38, 76, 88,189,122, 53, 68, 1,232,
+164, 32, 28,199, 65, 3, 91,190, 4, 7, 85, 6, 73, 13,202, 3, 6, 36, 54, 23, 32,213,192,103, 96,233, 15, 52, 3, 24,108, 16,
+189,184,198,188, 32, 71,126, 66,130,154, 36,231, 1,131,185,176,176,144, 12,189,163,205,124,226,235, 0, 92, 82, 0, 1, 52,122,
+ 41,252, 40, 24, 5,163, 0,163, 92, 96, 96, 64, 63,236,225,255,232,141, 96,195, 16, 0, 4,208,232,149,144,163, 96, 20,140, 2,
+140,198, 63,195,232, 13,144, 35, 2, 0, 4,208,232,149,144,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,141, 94, 10, 63,170,119, 84, 47, 97,189,
+233,233,233,254, 1,233, 27, 55, 96, 57,114, 99, 52,172, 6, 92,111, 43,108,197, 29,174, 69,174,163,151,194,227, 2, 0, 1,196,
+130,150,202, 49, 85, 16,185,110,108, 80,233, 37, 82,251, 64,185,121,240, 0, 60,103, 78,224, 58, 63, 22,171,247,105,231,113,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,106,165, 12,228,179, 3,125,109,103,226,169, 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,172,141, 57,204,246, 28, 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, 49,165, 54, 90,138,193,236, 52, 64, 14,146,
+163, 81, 29,240,238,221,187,188,188,111,162,162, 12,161,161, 12, 29, 29,160, 11,185,254,252,249, 3,172, 0,196,196,196,128, 21,
+ 0,176, 79, 32, 37, 37, 69,208,144, 23, 47, 94,188,122,245,234,229,203,151,174,174,174, 75,150, 44, 97, 0,239,245,141,138,138,
+194,127,128, 29, 50,216,182,253, 28,176,244, 7,147,163, 96,112, 53,255,129,100,112,240,218,157, 59, 65,100, 90,218, 93, 72,111,
+ 96,180, 43,128, 89,244,195, 69,144,115, 52, 64, 0, 13,147, 10, 0,216, 9,128,212, 1, 67,162,244, 7,130, 39,143, 46,139,139,
+112,152, 26, 42,130,239, 87, 98,252,247,239, 63, 31, 15, 59,183, 50,155,130, 44,255,181,155,111,128,178,138, 42, 22,184,244, 2,
+ 75,127, 91,227, 79, 5,137, 12,204,204,160, 10,239,247, 31, 6,110, 46, 6, 77, 21, 6, 11, 3,134, 45,251, 63, 1,101,189,131,
+187, 41, 31, 2, 34,169,218,128,212, 1,180, 8, 40, 33, 33,161, 45, 91, 56,101,101,191, 3,123, 0,239,223,179,168,128,193,151,
+ 47, 95,238,221,187,119,224,192,129, 79,159, 62, 1,203,113,252,253,128,235,215,175,159, 59,119,142,149,149, 21, 89,240,251,247,
+239,115,231,206, 5, 26, 18, 17, 17, 65,140, 51, 54,110, 0,122, 57, 29, 76,146, 0,224,247, 36, 67,142,189, 67,227,226,137, 17,
+ 6,164, 19, 3,241,112,113,182,135,254,255, 23,121,251, 86,233,193, 3,225,167, 79,159,136,137, 61, 82, 82,250, 40, 38,246,159,
+232, 19,121,129,238, 36,230,156, 62, 60, 90,240,115,169,165, 23, 62,248,147,150,182, 19,200,128,144, 16, 41, 32, 99,180, 14,192,
+218,134,131, 28, 13, 4, 23, 1, 8,160, 97,181, 10,136,113,136,184,243,221,235, 59,191,127,255, 54, 51,146,132,139, 48, 49, 49,
+178,177, 49,115,114,176,176,178, 50, 41, 43, 10, 2,123, 6, 64, 53,184, 70,126,128,109,255,194, 36,134, 31, 63, 25,238, 63,102,
+120,255,145,225,195, 39,134,101,155, 24,114, 27, 24,170,122, 24,172,140, 24,152,254,127, 2,170, 25, 54,113,170,171,171,187,113,
+163,166,152, 24, 67, 84, 20,139,132,132, 41,176,188,246,245,245,245,241,241,113,119,119, 23, 23, 23, 7,150,236, 43, 87,174,188,
+123,247, 46,174,139, 18, 47, 93,186,116,225,194, 5,180,210, 31, 14,246,239,223,127,245,234, 85, 60,101,241,161, 67,135,224,165,
+ 45,164,244,135,176,129,226,196, 84,120,167, 96, 0, 43,151,200,250, 21, 63, 23,107,233,175,116,227,134,237,158, 61,178,183,238,
+176,125,250, 36,121,235,134,206,150,205,162, 23, 47, 50, 16,125,167, 55,208,133,192, 98, 23,216,103, 34, 62,154, 32, 90,240,112,
+241,235, 69, 46,238,241,112,113, 1, 72,185, 15, 33,127,249,170, 48,140, 2,164,162, 31,255, 89, 15, 0, 1, 52, 88,122, 0, 84,
+105, 63,254,167,134,189,228, 13,101,192,111,218, 34,102,140,229,245,155,231,234,202, 66,144,114, 31, 77,138,131,157,229,195,199,
+159,106,202, 66,183,238, 61,199, 58, 25,112,239,238,173,112,208,145, 92, 12, 59, 14, 49, 76, 93,204,224,102,203,224,229,192,112,
+227, 14,195,249,171,255, 57, 57, 24, 13,181, 25,220,237, 25,214,237,188,101,100, 73,181, 33, 32,172,158,165,124,254,131, 72, 0,
+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, 93,
+215, 7, 16, 64,132, 87, 1, 17,191, 46, 8,179, 85, 72,100, 59, 17,107, 61, 65,124,197,131,213,229,120, 46, 79,199, 85, 76,195,
+ 39,144,137,212,139, 85, 25,196, 52, 96,195,254,223, 42,156,179, 17,224, 53, 63,160,230,234,227,103,159,190,127, 7, 93,107,165,
+162, 36, 8,172, 0, 46, 94,125,117,243,246, 59, 14, 14,102,101, 69,129,247, 31,177, 31, 52,255,248,249,127,101,121,144,249, 30,
+118, 12, 6, 90,140,236,108, 12,127,254,128,250, 1, 2,188, 12,247, 30, 49,184,219, 49,200,203,128,212,208, 52, 37,193,203,125,
+ 34,135,164, 7, 10, 96, 29,196, 32,213,169,144,178, 30, 94, 1,208,180,244,135, 3, 92, 87,183,227,185,210, 29, 14, 88,239,222,
+249,249,251, 23, 35, 51,203,223,255,255,129,233,228,207,223,127,191,129, 29,129,191,127, 25,111,223,100, 96,240, 34,213, 37,192,
+126, 0,176, 35,197,205,205,205,207,207, 79,124, 29, 64,228,224, 15,133,165,127,117,117,117,107,107, 43,176,244,135, 87, 6, 64,
+ 18, 88, 13, 0, 75,255,205,155,239, 66, 38, 0, 32,179,196,122,118,241,163,165, 63,102,233, 15, 4, 0, 1, 52, 88,134,128,176,
+ 22,166, 68, 22,196, 36,173, 85,197,110, 2,149,214, 14, 1, 93, 66,140, 81,252,252,172,239, 63,252, 16, 17,226, 10,245,211, 0,
+230, 79,118,118,102,102, 96,123,237,255,127, 31, 55,101,111, 87,101,160, 9,111,223,127, 7,170,193,170, 87, 86,146,241,238,195,
+255, 26,202, 12, 78,150,160, 33,175, 27,119, 24,244, 52, 24, 4,249, 24, 60, 29, 24,254,253, 99, 0,118, 2,110,221, 7,169,193,
+ 31,200, 4, 25,196,111, 36,161,100,220,140, 24, 0,108,191, 2, 91,160,119,239,222, 5,182,196,109,109,109,121,120,120, 32, 39,
+ 6, 43, 40, 40,156, 58, 37,214,216,248,148,145,145,241,213, 43, 53, 53, 53,133,107,207,176,232, 69, 19, 89,181,106, 21, 74,163,
+225,255,255,240,240,112,226,235, 0,186,149,254,100,212, 13,112,240, 78, 70,154,237,198,205,255,172, 12,108,255, 64,243,190,191,
+255,254,249,245,255,239,183, 63,127,190,171,104,144,225, 24, 29, 29, 29, 96,248, 19, 89,250, 51,128,175,249, 4, 54,249,225,197,
+ 55, 26, 23, 23,128,244, 18,224,202,208,184, 4, 1,176,249, 15, 41,250,129, 36,114,219, 31, 50, 75, 12,172, 12, 70, 75,127,172,
+165, 63, 16, 0, 4,208,112, 88, 5, 68,176,231, 65, 16,252,255,207,192, 20,254,158,242, 58, 0,178, 24,137, 41,236, 61,158,230,
+ 63, 16,136,139,240, 60,126,250, 25, 88, 1,244, 77, 63,109,103, 37,107,164, 39,206,200,202, 8, 89, 14, 4, 89,169, 1,148, 5,
+170,193,170, 87, 89,129,227,232,217,239,192, 10, 64,196,152,161, 34,147, 33, 63,129,129,159, 23, 52,242,211, 56,137,161, 33, 31,
+164,224,232, 89,144, 26,146, 6,202,200,158,243,160,195, 86,128, 55,111,222, 64,238, 65,220,186,117,235,163, 71,143, 60, 60, 60,
+ 20, 21, 21, 63,127,254,252,254,253,251,235,215,255, 28, 56, 0, 44, 44, 76, 28, 29, 29,101,100,100,174, 61,123,141,166, 23,216,
+110,197,127, 99,215,159, 63,127, 6, 91, 98,134,151,254,120,170, 1,252,117,192, 39, 45,109,246, 75,151,254,253,255,207,205,196,
+194,204,204,248, 7, 88,250,255,254,253,249,215,175,223,250,250, 36,185,132,139,139,139,164, 57, 0,120,113,143,139, 75,139, 58,
+ 0,216,204, 79, 3,183,241,145, 75,127,120,243,127, 20, 48, 16,218,209, 9, 16, 64,163,199, 65,195, 90,139, 84, 90, 63, 10,173,
+ 3,240, 86, 39,162,162,146,119,238, 63,211,215, 22,171,200,183, 88,176,252, 50, 39, 7,139,129,142, 24,252, 58,229,127,255,254,
+223,185,255, 94, 92, 12,251,168,171,146,178,218,214,125, 23, 19,130, 25,254,223, 99,176, 8, 98, 80,146,101, 88,186, 17, 38,151,
+207,240,247, 47,195,214,125, 32, 53,180, 11, 40,172,253, 51,218, 45, 3,189,113,227,134,166,230,253,249,243,129,204,191, 77, 77,
+151,214,173,251,166,174,174, 14,172, 0,238,221,187,247,242,229, 75, 35, 35, 35, 96, 19, 30,215, 50, 80, 37, 37,165,211,167, 79,
+227,185, 99,132,200,235,121,225, 67, 64, 64,146,214, 61, 0, 96,201, 14, 41,250,113, 13, 1,225,146, 66,212,106, 50, 50,111,109,
+237,254,238, 63,240,139,141,149,231, 63,203,143,127,255, 62,254,250,245,217,201,249,191,156, 28,209, 29, 98, 70, 96,249, 75,252,
+208, 63, 92, 11,188,184, 71,227,146, 84, 7,224, 90, 59,139, 7,160,149,254,240,145,159,209,217, 96,252,165, 63, 16, 0, 4,208,
+104, 5, 64, 77, 0,157, 0, 32, 52, 10, 36, 36,170,242,225,227,155,147,103,159,153, 27, 75,121,186, 40,237,216,123,111,235, 46,
+ 80,170,173, 41,182, 2,150,254, 64,113,118,118, 54, 92,251,129,141, 44,179,182,174, 45,237,159, 7, 90, 9, 58,163, 5,180,250,
+211,197, 26,180, 18,180,191, 22, 84,250,247,207, 99,248,203,192, 71,252,126, 96, 82,219,236,184,122, 12,180, 91, 5,244,245,235,
+ 87, 67,195, 31,144,146,196,196,228,255,142, 29,247,110,221,186, 5,217, 8,230,224,224, 96,111,111,143,103, 19,128,178,178,242,
+229,203,151,113,117, 2,128,205,127, 99, 99, 99, 98,220, 0, 89, 12, 10, 89, 20, 4,100, 19, 95, 7,160,109, 52, 35,114,223, 25,
+188, 14,192, 37, 75, 64, 63, 19,211, 47,115,243, 55, 82, 82, 95, 46, 93,226,121,244,232,135,162,226, 87,109,237,191,178,178, 12,
+ 68, 95,182, 69, 94,217,141,172, 5,141,139,223,227,200,178,104,246,146,234, 12, 8, 64, 46,247, 33,189, 1, 82,135, 52,135, 25,
+192,179,166, 3, 32,128, 70, 43, 0, 44,171,119,232, 96,148,172,156,238,227, 71,151,215,110,185,169,162, 40,232,237,166, 44, 40,
+192,241,254,195,143,243,151, 95, 2,219,254,192,210, 31, 40,139, 71,175,149,125,234,225,131,179,143,157,253,228,237,196, 48,187,
+ 29,180, 19,248,238, 67,134,185,171, 64,109,127, 96,233, 15,148,165,188, 64, 39,163,244,167,209, 28,128,132,132,196,131, 7, 34,
+103,206,128,134,119,110,221,226, 51, 53,213, 18, 22, 22,134,239, 4, 38,120, 20,132,133,133,197,193,131, 7, 25, 49,246, 64, 1,
+ 75,127, 21, 21, 21, 96, 13, 65, 76,233,143, 60,250, 15,233, 10, 16, 89, 7,144, 93,156,225, 42,229, 9,151,254,176, 58,224,159,
+188,252, 55, 32, 34, 43,204,201, 40,118,241,251, 20,191,129,148,232,197, 95,250,131, 22,137,142,248, 9, 0, 6,108,251,129,225,
+ 85, 2, 64, 0, 17, 94, 6, 74,252, 20, 43, 49,203, 64,137,215, 75,188,118, 74,236,197,234, 59,242,236, 37,105, 46,154,149,141,
+ 91, 73,197,226,221,235, 59,247, 30, 60, 63,126,230, 9,252, 44, 32,113, 49, 41,130,103, 1, 9,138,168,121, 7,119,159, 59, 62,
+109,229,214, 91,109, 83,105,117, 22, 16,145, 61, 6, 90,175, 1, 85, 87, 87,191,120,209, 43, 49,241, 12,184, 7, 96, 18, 22,166,
+207,197,197, 69, 82,253, 17, 30, 30,126,243,230,205, 51,103,206, 48,131,230,218,153,128, 69, 63, 27, 27, 27,176,237, 15, 52,153,
+212,210,159,140, 58, 96, 20,208, 26,128,214, 2,165,181,186,207,114,199,186, 39, 96,116, 50, 0, 63, 0, 8, 32, 22, 74, 6, 4,
+104,170,151, 72, 3, 7,149,155, 73, 5,192,178, 30,136,212,201,210, 11, 44,235,137,220,237, 69, 45, 95,208,109, 15, 7, 50, 0,
+ 22,247,150, 96, 64, 97, 45, 66, 76,113,143, 9, 48,203,122, 32, 27,178, 45, 96,180, 2, 24, 84,117, 0,195, 67, 44,226, 38,213,
+ 38, 35, 60,100, 8, 94,249, 14, 16, 64,163,151,194,143,130, 81, 48, 10, 70,193, 8, 5, 0, 1, 52,122, 35,216, 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,163,151,194, 83, 71, 47,158, 99,209,104,170,247, 30, 24,172,
+ 94,189,154, 12,189,247,239,223,191,123,247, 46,121,122, 71,211,198,168,222, 81,189, 67, 69, 47, 30, 0, 16, 64, 56, 55,130, 17,
+121, 10, 38,213,245, 82, 29,164,133,126,100, 96, 99,155,181,148, 19,143, 26, 96, 25,138,103,239, 37,126, 55,195,245,246,246,246,
+ 22, 23, 23,147,116, 91, 58, 92,239,149, 62, 62,157,162, 79,164,223,180,254, 95,239,251,148,255,191,254, 2, 89,179,102,205, 2,
+ 95, 90, 75, 60,248,111,202,188,226,247,239, 79,156,156,156,192, 58, 32, 52, 52,148,118, 81, 64,228,190, 10,172,254, 29, 40,189,
+184, 76,163, 79, 2,102,100,100,100, 2, 3,200, 22,182, 95,191,126, 49,131,207,118,254,255,255, 63,195, 40, 24, 5,212, 3, 0,
+ 1,196,130, 43,173, 99, 77,106,140,132,110,149,131,100, 18,242,244, 18,211, 34, 38, 27,236,222,189,155,129, 67, 19, 79, 41, 92,
+ 94, 94, 46, 38, 38,134, 38, 5, 44,208,241, 27, 11,209, 11, 41,250, 79,156, 56, 1,169, 6, 72,210,251,255, 66, 45,163, 65,243,
+162,131,160,227, 10,128,108,104, 88, 25, 52, 19,244, 17,239,181, 34, 96, 48, 47, 63, 10,210,232,105,200,170, 45,125, 21, 88, 7,
+128, 42, 60, 34,170, 1, 57,161,147,247, 47,191, 60,242, 92,254, 43, 15,183,135,195, 7,105, 81,198, 51,167,143,125,250,252,195,
+201,201,137, 70,233,140,166,141, 6, 60,122, 9,150,152,196, 39, 75, 82, 1, 48,126,187,186,186, 74, 75, 75,137,217,111,140, 12,
+128,101, 61, 11, 24, 64,118,174, 1, 19, 9,208,144,191,127,255,254, 1, 3, 32,131, 70, 14,222,186,117, 43,254,192,241,242, 34,
+124,154,244,182,109,219, 72, 82, 63, 10,232, 6, 32,251,129,209,214,253, 3, 4, 16, 11, 73,165,191,177,177,241,217,179,103, 9,
+102, 66,172,153, 10,143, 94, 52,115,128,101, 49,100, 88,131,236, 3, 38,211,124,103, 49,112,170,205, 90,229, 0,106, 26,175,230,
+ 7,149,254,132, 74,112,204,179,227,129, 37, 56,254, 83, 89,224,122,129,108, 96, 11,218, 2, 12, 72,210, 11, 41,241, 33,100,103,
+ 35, 3,188,244, 47,243,231,232,218,248, 3,143, 7,249,111, 22,107,203, 49,127,253,241,191,200,135,227,196,237, 63,223,127,254,
+255,254,155,193, 81,250,234,149, 71,127, 9,118, 5, 30, 95,234, 63,251,154,155,143,155, 81, 92, 76, 92, 76, 90,229,225,147,159,
+234,106,127,216,153, 95,109,222,242,102,253,250,245,129,129,129,163, 89,133, 42, 0, 24,191,190,190,190,192, 58, 0, 45, 13, 27,
+ 25, 25, 53, 54, 54, 2,165,176,183,200, 88, 88,216, 96,224,241,227,199,170,170,170,192,106,128,151,151,247,206,157, 59, 60, 60,
+ 60,167, 79,159, 62,126,252,120,118,118, 54,206,148, 15,142,122,120,254,133,231, 68,136, 8,144, 11,105, 37, 96, 5,155, 54,109,
+194,212, 2, 23, 1,114,137, 41,208, 55,110,220, 72,146,122,170,128, 23, 47, 94, 72, 72, 72,140, 38, 57, 60,229, 62, 46, 0, 16,
+ 64, 44, 36,149,254,248,109,194,115, 80, 9,254, 35,206,209, 74,255,142,142,142,138,138, 10,184, 8,241,117, 64,154,241, 44, 6,
+ 97,181, 89,187, 28,224,173,126, 87, 87, 87, 32, 3, 66, 98,142,139, 33,151,224, 88, 75,127,204, 62, 1,166,167,224, 45,125, 96,
+141,133, 28, 20,196,232,197,218,210, 7,150,254,248,189, 41,124,171, 72, 85,138,153,147,141, 81, 65,148,233,245,167,255,127,254,
+ 50,191,249,252,255,227,183,255,119, 95,254, 3,102, 61,145,127,151,128,254, 82, 82, 82,194,222, 34,126,181, 90, 69, 78,233,245,
+235,151, 10, 50,162,186,218, 74, 44, 60,130, 74, 50, 31,190,255,253,248,252,249,223,167,239,127,112,254, 4,106,213,199,165,151,
+118, 35, 66,196, 71, 49,121,122, 49, 91, 36,180, 30, 75, 1,134, 35,208, 82, 45, 45,173,205,155, 55, 35, 71, 7, 48, 19,225, 41,
+253,129,128,149,149,149,131,131,227,205,155, 55,106,106,106,134,134,134,192,250, 96,210,164, 73,192, 86,191,174,174,238,186,117,
+235,128, 21,192,165, 75,151,128, 85, 2,174,126,128,191,191, 63,196,191,184,114, 49,158, 66, 25, 88,118, 67, 66, 6,107, 3, 14,
+ 40,254,242,229, 75, 98, 42, 0,146,212, 67,138,239,253,251,247, 99,149,114,116,116, 36,166,100, 7,106,151,146,146, 82, 87, 87,
+ 31,173, 6, 72, 5, 0, 1,196,130,153,187,112,181,223,233,227, 32, 96,110, 1,150,254, 68, 86, 24, 56, 71,123, 24,210,128,228,
+234, 89,102, 12,108,223,241,140,254,163,149,224,104,149, 25,254, 18, 28, 2,224,149,199,137, 19, 39,144,155,255,196,232, 93,154,
+199,131,121,141,113,244,164,175,248,117,253,251,247,143,131,141,145,153,137,129,139,157,225,195,183,255,191,254,254,231,230, 96,
+ 4, 54,255,191,255,250, 47, 45,200,244,239, 31,195,173,231,127,247,236,217,131,181, 19,240,233,249, 9,126, 86,110, 86,214,255,
+169,161,102,127,255,252,127,241,254,215,163,251, 31,153, 24, 30, 11, 8,252,124,245,242, 1, 27,243,199,107, 15, 62, 60,253,177,
+135,196,185, 4, 74, 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,220,135,109,224, 44,128, 32,227, 63,152,122,129,
+101,214,235, 3, 69, 18,114,204, 95,190,131,138, 47, 96, 77,253,237,215,255,239,191, 24,126,255, 1, 25, 5,186, 1, 28, 92,168,
+ 93,190,120, 22, 88,143, 50, 48,176,161, 25,251,225,229, 85, 54, 81, 65, 81, 1,129, 15,239,191,127,248,248,254,196,213,151, 79,
+223,255,231,226,250,166, 44,255,229,251,151, 55,122,170,191,181, 20,126,206, 90,126,246,206,157, 59, 12, 12, 28,163, 57,135,194,
+230, 63, 16, 0,155,255,192,226,126,203,150, 45,218,218,218,161,161,161, 4, 75,127, 72, 5,240,250,245,107, 46, 46, 46, 59, 59,
+187,158,158, 30, 96,135, 0,152, 12, 22, 46, 92, 8, 44,253,129,141,140,189,123,247, 94,190,124, 89, 68, 68, 4,207, 85, 54,192,
+250, 27,215, 16,208,236,217,179,241, 88, 77,149, 33, 32,160, 33,100, 12, 1, 1, 75,109,204, 10,128,140,227,155, 70,171, 1, 82,
+ 1, 64, 0, 13,174,227,160, 49,239, 21, 33,114,112, 0,212,222,175,184,207,192,204,150,230,166,192, 32,160, 48, 11,124,241, 31,
+254,209,127,170, 12, 98, 64, 38,126,225,109,127,100, 0,153, 21,192,236, 94, 16,217, 98, 93,154,199,141,217, 27,224,189, 86,124,
+255,231,255, 23, 31,254, 49, 50, 50,113,255, 0,117,213,255,252,253,255,227, 55,195,143, 95,160,107,226,127,130, 25,191,255,192,
+ 90,160,168,149, 7,207,213,162,167,207,228, 20,228,120,152, 56,152,223,126,255,190,247,244,147, 91,143,159,190,125,247,197, 68,
+239,239,207,111,127,126,252,250,251,253,199,191,135,143, 25,190,125,103,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,118,110, 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,220,148,175, 82, 66, 76, 81, 54,108,192,178,158,143,139,
+145,153, 17,148,207,127,253,253, 15,228,126,253,249,255,235,143,255,192, 14,193,223,127, 12, 88, 23,182, 0,245, 26,168,223, 83,
+ 85,121,183,227,224,171,119, 31,127, 88,232,125, 50,227,255,194,202,246,243,219,143,127, 79,158, 3,245, 50,254,253,203, 40, 34,
+196,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,129,133,251,183,159,192,226,254,255,135,175,192,134,
+255,127, 86,112,236,253,249, 11,106,248, 3,139,254,183,159,255,191,254,244,255,252,131, 63,192, 66, 6, 88, 82, 92,125,202,128,
+166,247,241,243, 95,119,238,188, 63,118,238, 61,176,145,119,227,206,191, 72,191, 63, 44,255,255,191,120,197,176,235, 48,195,231,
+111,255,255,253, 99,112,178, 96,228,100,103,240,242,246,199,191,210,112,195,130,244,128, 4,138, 86,232, 82,114,131, 24, 73,247,
+ 46,192,129,144,208, 30,186, 37,102,180, 4, 12,228, 26, 25, 25,157, 59,119,110,243,230,205,200,226,184,166,130,129,109, 11, 1,
+ 1, 1, 72, 35,122,222,188,121,192,126, 0,176, 38,128,212, 28, 64,169, 15, 31, 62, 0,123, 0,223,190,225,187,235, 37, 53, 53,
+ 21,121,232, 6,210,252,199, 63,254, 51,176, 67, 64,104,157, 0, 74,154,255, 16,237,163,109,127, 34, 1, 64, 0, 13,150, 10,224,
+236,217,179,184,214,174, 0,197, 9,172, 31,101,231, 94,173,112,136,225,207, 89, 6, 69,238,180, 86,197, 89, 7,128, 29,237, 89,
+176,202,192,149,248, 81, 32,228,149,160,152,171, 66, 49,115, 56,176, 20,131,148,254,200, 51,192,144,182, 63,132,139,181, 7, 0,
+215, 75, 94,201,114,251,246,237, 71, 71, 39,253,255,255,143,241, 27, 3, 27, 11,120,151,208,159,255,127,255,131, 74,112, 96, 63,
+ 0, 88, 25, 0, 81, 97, 49,168, 59,117,245,233, 19, 76,189, 15,142, 78,212, 86,248,119,232,252, 95, 38, 38,134, 23,175, 25, 57,
+ 57, 24,118, 30,102,248,246,141,241,255, 63, 6, 35, 45,214, 71,207,254,217, 59,121, 3,243, 45,158,157,132,192,210,191, 43,155,
+161,108, 42,249,117, 0, 37, 23, 8,147,167, 23,215,176, 6,125, 0,100,229,143,143,143, 15, 36,234, 33,221, 89, 96, 51, 31,171,
+226,127,255,254,157, 63,127,222,214,214, 22, 46, 2,172, 3, 32,101,241,239,223,191,255,254,253, 11,140, 68, 81, 81, 81, 92,147,
+192,240, 81, 32, 50,218,239, 3, 56, 4,132,214, 9, 32,187,249, 63, 90,244,147, 10, 0, 2,136,180, 10, 0, 88, 16,211, 98, 39,
+ 36,164,177, 12,204, 21, 64,134,139,139, 11, 90,219, 31, 82,140, 18,191, 85, 21,190, 10, 8,194, 37,166,237,143, 60, 3, 12, 1,
+ 16, 46,100, 49, 40,126,189,240,210, 31,109, 62,128, 24,189,184, 0,176,249,143, 75,175,170,170,234,188, 25,191,157,117, 88,129,
+ 5,192,239, 63,255, 56, 88,129,141, 59,134,207, 63,254,255,252, 3, 26,252, 57,123,247,239,159,127,255,113,173,227, 4,234, 93,
+ 52,251,143,189, 1,115,148, 15,104, 26,249,227,103,134,207, 95, 25, 85,228,255,255,249, 3,204,241, 28,111, 63,252,123,250,226,
+ 87, 97,185, 15,254,182,255,132,124, 6, 53, 57,134,201, 69, 12,185,125, 20,213, 1,100,247, 9,200,211, 75,249,186, 79,242, 82,
+ 62,176,244,111,104,104, 64,110,236,119,117,117, 1,185,184,118,135,253,250,245, 11, 88,132,253,248,241,131,153,153, 25,114,247,
+217,218,181,107,131,131,131,191,127,255, 14, 20,252,249,243, 39, 15, 15, 15,176, 26,192,239, 29,242,214, 2, 13,236, 16, 16,188,
+ 19, 0, 97,140, 22,253,244, 1, 0, 1, 68, 66, 5, 64, 97,233,143, 71, 59,176,208,135,148,242,144,113,115,248,146, 83,228,134,
+ 63, 90,197,128, 2,152, 25, 25,216,152, 24, 56,153, 25,120, 88, 24,126,126, 94,221,206,202,192,121, 42, 45, 68,145,129, 83,104,
+214, 98,162, 26,254, 88,215,252, 64, 74,112,252,139,226,145, 75,127,228,249, 0, 98,244,226, 47,253,241,232,109,239,157, 81,152,
+155,193,201, 14,108, 45, 50,232,200, 49, 3, 11,111, 96,105, 0, 41,250,255,254,103, 46, 41, 41,193, 99,120,115,215,140,226,130,
+ 12, 96, 85, 1,234, 55,252,101, 0,182,244,188, 28, 25, 62,126,102,188,112,245,251,143,223, 76,126,126, 65,248, 75,255,134,100,
+ 6, 21,240,145, 36,202,210, 12, 20,246, 3, 70, 2,192,220,243, 5, 90,217, 5, 6,184,180, 0, 43, 0, 96, 89, 15,218,142,161,
+175,255,231,207, 31, 86, 86, 86, 96,155, 26,216,136, 1,150,254,223,190,125, 3, 54,255, 5, 5, 5,241, 44, 3,133, 3,248,128,
+ 42, 49,131, 63,131, 97, 8, 8,222, 9, 32, 35,156,137,220, 46, 48, 10, 48, 1, 64, 0, 17, 91, 1,208,168,237,143,181,107,143,
+ 57,224, 67,182,213, 4, 71,255, 41, 41,253, 25, 80,103,122,225,117, 24, 3,120, 53, 45, 65,189,184,102, 2,136,209,219, 63,121,
+ 6, 48,184,128, 25,237,200,141, 63,144,245,160,224, 44, 7,212, 91, 66, 80,111,239,132, 25,153,153,233, 16, 93, 64,242,208,105,
+134,175,223, 64,229,137,159,159,183,187,187, 59,158,210,191, 60,134, 65,128,135,225,217, 27, 6, 80,221,243,159,129,155,131,161,
+ 53,157,161,122,230, 48,175, 3,112,117, 47,136, 73,147,104,165,127, 70, 70, 6,164,232,223,188,121, 51,176,148,196, 90, 13, 0,
+ 43, 0, 38, 38, 38, 96,123,246,243,231,207,103,206,156, 49, 52, 52, 4, 86, 3, 31, 63,126,188,120,241,162,162,162,162,176,176,
+ 48,176,244, 7,138, 16,236,208, 64,118,132,145,212, 33, 24,240, 33, 32,242,218,254,100,235, 26, 5, 64, 0, 16, 64,232, 21, 0,
+174, 37,255, 68,174,126,163,164, 7, 13, 84,128,121, 40, 27,193,210,112, 86,218, 76,208,104,207, 45, 6, 16, 66,128,143, 96,116,
+159,108, 55, 19, 83, 10,195,125, 4, 44, 35, 32,251, 9,128,213, 6,169, 87, 25, 3,245, 46,205,227,134,212, 7,164,222,208, 11,
+ 15, 46,200,172, 47,241, 29,142,233,211, 17,122, 63,127, 1, 21, 16,126,126,126,132,195,106, 9,245,139, 81, 90,235, 29,192,161,
+127, 6,212,105, 94, 96,128, 3,203,196, 45, 91,182, 96, 74,161, 85, 0, 64,101,192, 10, 25,200,144,147,147,251,240,225, 67,109,
+109, 45,176, 2,144,150,150,254,242,229, 11, 80, 16, 50, 19, 64,208,106, 50, 70,129, 94,188,120, 65,185,151,169, 98,200, 40,160,
+ 27, 0, 8,160, 65,113, 41, 60, 28, 0,139, 48, 50,204, 33,123,133, 15, 21,251, 52, 4,143,126, 35,163, 43, 64, 76,112, 97,101,
+147,170,151,152,210,159,146,102,254, 64,165, 43,170,196, 47,121,134,192,143,243,132,159,232,169,169,169, 57,111,222,188,127, 96,
+128,167,253, 14,105,221, 3,213, 0, 11,122,200, 97,112, 12,224,153, 97, 58, 28, 6, 55, 10,134, 55,192,186,185, 7, 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,176, 92, 10,143,124, 36, 3,242,125, 44,200,226,195,248,146,101,228,165,168,112,191,143, 94, 72, 61,180,
+194,138, 36,141,248,237,109,109,109,133, 48,170,171,171, 71, 90,252, 82, 61,168, 71,243,209,128,232,197, 3, 0, 2,136,106,103,
+ 1, 65, 78,244, 36, 78, 45, 27,166, 94, 56, 27,237, 52, 80, 34,239,223,160, 16,192,175, 5,134, 45,171,135,222,159, 71,135, 26,
+248,214,173, 91,240, 59, 9,138,138,138, 6,255, 33,136,104, 97,117,253,250,117, 6,240, 26, 71,154, 90, 10, 76, 6,254, 1,233,
+ 27, 55,204, 68, 75, 6,219,182,159, 3, 10, 98, 77, 24, 64, 41,172, 70,121,121, 26, 17,111, 47,176,244,247,245, 85,134,179,113,
+213, 1,184,192,231, 47,159,239, 61,187,247,237,255, 55, 6, 70, 6,182,127,172,114,162,242,162,194,162, 4,117,161, 93,200,131,
+231, 18,199, 81, 48, 10, 40, 4, 0, 1, 68,205,195,224,136,188, 68,229,234,211, 15,152,130,104,101, 46,242,118, 68,252,197, 49,
+145,187,132,240, 84, 30, 16, 19, 32, 37, 26,230, 2,109,136, 44,214,197,178,200, 86, 75, 43,202, 2,201,151, 63,126,252,249,254,
+ 19,196,255,240,137, 1,124,126, 17,190, 19, 44,192, 0,249, 66,202,190,190, 62, 98, 46, 64,103, 98, 4,109,196,133,144, 64,128,
+149, 49,125, 6, 77, 42, 75,228,176,130, 20,253,196,135, 21,217,245, 55,164,244, 7, 23,220,160, 58,128,120,163, 32, 21, 6, 70,
+ 5, 64,154, 51,126,253, 42,223,185, 51,205,221,125,150,175,111, 39,164, 55, 64,100, 53,112,228,234, 17,121, 67,217,228,224, 4,
+ 65, 46,193,127,127,254,254,248,255,115,199,201, 93,251, 14,238,181, 82,178,230,224,224,192, 83,250,127,221, 7,218, 24,248,247,
+ 51,104,120,246,207, 7,230, 91, 51,152,213, 50,218, 71,139,170, 81, 64, 54, 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,253, 39,161,129,137, 6,240,180, 55, 33, 97,149,144,144, 0,100, 67, 72,244,210, 31,114,184, 4, 54,141,
+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, 23,232,
+148, 38,102, 22, 54, 21, 23,149, 27,198, 55, 59,102,117,154,139, 88, 64, 14,122,195, 10,128, 69, 63,176,220,255,243,154,133,130,
+ 60, 1, 5, 27, 54,108,192, 60, 25,148, 14,122,169, 2,200,184,234, 29,178, 15,121,244,100, 8, 92,165, 63,132,139, 92, 7, 0,
+ 4, 16, 11,114,215,158, 20, 54, 27,166, 77,175, 94,189,130,159,132,140,167,134, 96, 96,215,192, 83, 70, 51, 98, 20,217,196, 12,
+197,224, 41,182,240,220, 37, 0, 44,152,128,141,116,204,114, 31,114, 41, 49,188, 98,192, 3,128, 13,255,167,239, 63,174,203, 8,
+ 22,102,180,190, 59,187, 68, 41, 80,105, 55,141, 75,127, 32,128, 20,250, 64,160,163,163, 3, 23,129,244, 9,224, 34,148,180,241,
+177, 22,211,144,176,194, 44,247, 23, 44, 88, 0, 12, 43, 79,107,195,237, 71,207, 51,240,114, 51,124,250, 66, 11, 47,131,199,115,
+102,225, 26,213, 33, 66, 47,201, 99, 65,240,193,159,180,180,157, 64, 6,132,132, 72, 1, 25,248,235,128, 51, 55,206, 36,167, 36,
+218,170, 58,252,253,249,243,207,223, 63,140,160, 83,187,153,255, 51,252,123,249,250,153,166,168, 70, 85, 70, 85, 75, 87,139,179,
+ 14,190,174,225,214,249,127,239,127,254,253,236,219,191,166,100,238,151,223,254, 60,238, 46,133,136,191,255,249,247,233,215, 63,
+249,237,147,136, 44,193,183,213,110,247,106,102, 32,163, 28, 7,234,237,234,234, 42, 43, 43, 27,144, 58, 0, 88,142,223,188,121,
+243,217,179,103,145,145,145, 36,105, 4,234, 26,173, 0,176, 55,251,202, 65, 69,217,172,206, 10, 52,113,128, 0, 66, 84, 0,240,
+ 9, 94,180,115,249,177,138,163,157, 53,143, 92, 61, 64,142, 81, 67, 30, 14, 66, 62,112, 13, 88, 67, 96, 14, 17, 96, 94,160, 65,
+204,208, 13, 85,192,170, 85,171, 48,139,126,200, 40, 7,164,244, 7,138,224,209,254,228,222,163,175,235,235,120,146, 38, 2,107,
+ 2,113, 97,206,123,235,239,129, 74,127, 1, 62,208, 16, 16, 43, 51, 49, 14, 0, 6, 23,124, 20,136,200,243, 36,128,101,189, 28,
+ 55,195,148, 24,134,148, 5, 12,162, 92, 12,215, 63,160,139, 92, 37,226,198, 20,204,106,149, 96, 71,170,169,169, 9,179,232, 7,
+ 50,186, 18,124, 38,239, 56, 33,161, 36,249,226,225, 75, 92,205,127, 32, 3, 79, 39,128,224,168, 14,184,165,159,142,214,222,135,
+148,236,196,164, 16, 74,198,130, 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,196, 62,
+173, 7,108,254,187,251, 32, 50,166, 56, 23, 11,187,103, 6,156,107, 10, 14,174,170,170, 42, 96,165, 66,176,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,196,129, 92,
+200,220, 47,241,195, 71,228,141, 5, 1,139,123, 52,145,157, 72,253, 0, 92,224,249,171,231,110,161,110,188,124,130,127, 25,255,
+ 28, 62,120,232,243,151, 47,190,126,126,175, 95,189, 90,179,118, 93,114, 98, 2, 59, 7, 59,211,127, 86,119, 35,247, 73,251, 39,
+227,170, 0, 64, 22,109,249,121,255,243, 63, 72, 15, 0, 34, 34, 47, 47, 79, 82, 9, 14, 41,253, 65, 28, 18,235, 0,160,222,134,
+134, 6, 21, 21,144,223,149,149,149,233,214, 15,160,164,232, 71,110,254, 67, 24,163, 21, 0,145, 0, 32,128,168, 60, 7, 0, 44,
+232, 33,183,187, 32, 95,148, 8, 57, 33,153,152,185, 1,204,169, 96, 98,134,128,112, 93,189, 75, 60,128, 52,243, 49,199,124,240,
+ 55,255,129, 96, 71,101,131,111,123,223, 31, 23,107, 96, 56,242, 28,191,179,251,238, 91, 80, 11,206, 37,247,247,101, 17, 70,209,
+ 44, 98,202, 62,252,157, 33,172,224,109,192,242,220,196,199,183, 50,202,190,238,253, 37, 33,130, 93,132,140, 30, 0,145,181, 2,
+176,225, 15,106, 74,248,218,157,120,246,138, 87,159,247,233,206,187, 12, 28,236,193,185,113, 66, 50, 62,180, 75,166,152, 43,127,
+200,235, 32, 98, 29, 14,194, 53, 22, 4, 44,238,221,103,185, 7,175,101, 72,219, 9, 98, 0,185,196,116, 2,190,252,248, 44,194,
+ 41,252,231,199,183,255, 76,255, 77,205,204,214,175, 95, 63,161,175,239,223,255,255,209, 49,209, 66,194, 66,223,190,124,249,243,
+247, 15, 47, 43,223,111,166,223,184, 76,248,243,154, 5,185, 7, 0, 4,129,129,129, 38, 38, 38, 12,196,173, 8, 66, 41,253, 33,
+128,232, 58, 0,168, 23,152, 11,204,204,204,224, 34, 58, 58, 58,144,241, 46,218,213, 1,148, 23,253,200,205,127, 6,240,165,240,
+163,157, 0, 34, 1, 64, 0,177,224, 41,140,240,136,227, 57, 66, 14, 50, 76, 4,153, 13,134,204, 10, 64,186, 5, 64,113,228,233,
+ 4, 90, 20, 13,100, 3, 92, 35,254, 4,111,162, 15,154,177,246,191,159,226, 75, 75, 35, 97, 6,107,206,224,201,127,158,191,102,
+ 16,224, 99,121,187,124,203,132,179, 12,204,204,196, 56,158,140,179,142, 47, 22, 69,154, 24, 48, 40,229, 94,209,230, 73,188, 41,
+ 31,202, 48,165, 12, 83,132,118, 61, 0, 96,152,216,154,170,187, 88,171,249,234,150,245, 78,152,126,237,236,211, 12, 39,147, 23,
+ 27,183,125,124,255,137,140,184, 64, 27, 32,194,149,174,176, 54,249,201,139,122, 76,115,176,246, 15,128, 69, 30,176,224, 3,150,
+254,240,202, 0, 72, 2,171, 1, 96,233,191,121,243, 93,200, 4, 0,100,150, 88,207, 46, 30,173,110, 5, 29,222,249,143,225,255,
+191, 63,236,156, 28, 49,177,177,141,245,245,226,226,226,210, 18, 18, 63,190,126,249,251, 31, 40,254, 23,207,117, 46, 64,147,127,
+110, 71,137,154, 51,252, 14,103, 74,219, 5, 4, 68, 63,124,120,125,240,192, 58,252,190, 6,150,224,189, 41, 87, 25, 56, 84, 24,
+ 94, 76, 69,145,224, 80, 1,138, 23,207,193, 87, 7, 0,245,250,251,251, 3, 75,252,183,111,223, 34,139,203,201,201, 1,197, 7,
+124, 78,152,200,230,255,104, 39,128, 36, 0, 16, 64, 44,152,217,137,140,141, 96, 16, 0,185,181, 17,185, 19, 0, 41,241,129, 34,
+240,101,227, 64,169,239, 68, 55, 75,137,153,254,165,124, 25, 40,164,153,143,117, 42,152,160,177,119,187,211, 88,131, 39,127,127,
+118,139,229,248,228,223,107,115, 25,189,122, 54,101,133, 60,220,116,223,183,107, 17, 3, 11,173,238, 91, 46, 91,205,176,179,107,
+189,246, 67,119,134, 55, 95, 75, 93,203,176,138,144,209, 3, 32,190,249,191,113,125, 3,179,180, 22, 15,131,218,163,131,179, 62,
+ 51,254, 63,117,235,177,203,149,167,120, 67,254, 17,108,176,110, 38,188,196, 7,130,189,123, 61,209,100,177,166, 43, 92, 3, 62,
+100, 44, 45, 37, 99, 56, 8,216,252,135, 20,253, 64, 18,185,237, 15,153, 37, 6, 86, 6,104,234,121, 57,121,159,125,124,102,166,
+ 96,254,253,231, 15,134,239, 63,254,252,250, 93, 85, 94,206,200,196,240,237,235, 23, 96,189,240,231,239,127,118, 22,214,215, 95,
+ 94,179,254,101,195,106,157,188,188,252, 67,216,136, 63,176,225, 95, 82,218,110, 97, 97,240,243,231,239,239,223,127, 1, 43, 0,
+130,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, 3, 19,173,142,217,120,244,149, 65, 83, 44, 16,191, 8,141,122, 0,192, 96, 9,119, 49,231,255, 39,248,141,129,117,109,127,
+238,180, 45, 23, 74, 61,108, 18,250,150,133,180, 45,166,209,116, 61,164,130,135,237, 3, 32,173,214, 39,105,192, 7,107, 99, 60,
+ 13,220,198, 71, 46,253,225,205,127, 92, 64, 74, 76,106,199,225,157, 86,178, 86, 92,220, 60,255,254,253,103,250,255,231, 31, 35,
+ 35, 48,180,129,109,255, 63,255,254,255,249,243,231,251,199,175, 91, 79,111,149, 23,195, 57,166, 15, 31,238, 55, 49, 49, 1, 54,
+252,111,220,120,138, 22, 32,224, 25, 96, 18,234, 0, 98, 74,127,184, 94,160,239,186,186,186, 36, 37, 37,161, 77,156,187,119,129,
+145, 78,135,182, 63, 37,213, 0, 90,243,127,180, 19, 64, 60, 0, 8, 32, 90,109, 4,131, 20,247,200,181, 2,145, 55,150,160,229,
+109, 34,139, 21,242,150,129, 98, 54,255,137, 47,250,161, 67, 64, 29,243,215, 49, 48,120,180,123,255, 95, 93,194, 24,214, 11,172,
+ 15, 24,133, 4,239, 60,249, 4,106,254, 51, 51,211, 40,206, 48, 87,253,147,180, 15, 0, 79,165,136,191, 86,128, 52,255, 83, 28,
+244, 10,122, 38, 86, 86,149,139,242,137, 93,189,246, 40,225,218, 50, 90,175,212,194, 44,181,225, 67,103,196, 45, 31, 34, 60,224,
+131, 7,160,149,254,240,145, 31, 92,179,193, 28, 28, 28, 44, 15, 88,247, 63, 60, 16,170, 27,242,233,199, 39, 70, 80, 51, 0,136,
+255,253,253,251,255,223,159, 63,220,236,188,199, 62,158,191,125,252,142,171, 17,177,183, 24, 41, 42,138, 1,155,255, 95,191,254,
+252, 0,110, 56, 65, 74,127, 96, 37,113,233,209, 19,194,117,128,228,163,235,207,229,136, 44,253,225,122,203,202,202, 38, 79,158,
+ 44, 32, 32,240,246,237,219,134,134, 6,122,142,252,144, 81, 13, 96, 54,255, 71, 59, 1,196, 3,128, 0,162,230, 62, 0,204,222,
+ 0,242, 54, 87, 72, 39,128,164,198, 41, 29, 14, 99,128, 55,255,145, 23,128, 2,189, 9,175, 54, 8,110,229,133,212, 1,129,237,
+243,254,175,101, 16, 73,152,121,160, 32,196,166,115, 41, 3, 43, 43, 55, 7, 27,141,220, 12, 95,236,143,198, 32,105, 31, 0, 25,
+ 61, 0, 72,243,191, 96,214,230,170,100, 55, 41, 9, 7,248,160, 31,241, 97, 5, 43,187, 61,157,157,183,195,198,127, 72, 24,187,
+ 67,110,209,195, 79,134,160,238,128, 15, 65,128, 92,238, 67,122, 3,152,195, 86,134, 26,134,155,151,109,254, 27,254,199, 94,214,
+ 94,152, 87,248,199,239, 31,192,208,102, 99, 97,251,240,253,219,137, 39,123, 23, 44, 89,232,168,229, 72,188,141,247,239,191,194,
+213, 69, 32,162, 31,192, 64, 82,233, 15,215,155,155,155, 59,128,251, 0,224,213, 0,145,138, 73,221, 46, 48,114,128, 79, 76,237,
+150, 37,205,179, 58, 43,144,247, 1, 32,207,180, 1, 4, 16, 53,247, 1,160,245, 6, 48,139,123, 82,175, 45, 36, 18, 80,190, 12,
+ 20, 82,211, 64,110,217,133, 87,114, 74, 96, 64,100, 63,128, 1,182,249,203,190,106, 6,132,241,149, 54, 49, 74,121,115,155,146,
+106, 21,216,252,119,221,115, 50,186,126, 17,208, 25,200, 93, 43,226,195,138, 90,253, 0, 82, 55,133, 81, 56, 28,132, 89,250,131,
+ 22,137, 98, 76, 0,192,129,163,158,211,193, 53,135,143,203,157,176, 54,183,150,230,149,102,248,247,255,245,143,183,199,206, 29,
+123,113,245,133,147,166, 19, 59, 59, 59,145, 54, 18, 51,238,143,191, 14, 32,175, 4,135,244, 3, 6,118,214,119,180,241, 78, 69,
+128,185, 5, 12, 2, 0, 2,136,154, 67, 64,152,251,152,176, 46,208, 36,120, 9, 37,169, 37, 20,133,203, 64, 33, 75,125,246,128,
+ 1, 73,197, 25,164,175, 64,137,213,152, 99,217,148,156,153, 67,135, 42,196,181,102, 54,121, 97,133,217, 9, 32,222, 25,184,202,
+122, 96, 39, 0, 46, 75, 76, 81, 78,198,112, 16,104, 45, 80, 90,171,251, 44,119,172,123, 2,240, 79, 6,152,105,155,125,251,246,
+237,228,198,147, 95,126,129, 26, 3,236, 76,108,114,226,242,154, 6, 36,156,154, 7, 52,255,224,129,117,200, 34,248, 71,255,177,
+150,227,148,212, 31,163,229,230,176,233, 4,224, 42,126, 1, 2,136,133,254,197, 10,254,141, 66,164, 22, 79,148, 95, 26, 78,118,
+113, 70,121,179,151, 14,163,231, 88,135,127, 96, 39,110,208, 47,172, 40,241, 56,169,237,116,234, 14, 7,129, 74,249,135, 88,196,
+ 77,170, 77, 8,234,229,226,226,210, 81,213, 37,219,205,242,242,242,152, 37, 62, 73, 59,194, 70,193, 40,192,223,230, 6, 8,160,
+209, 75,225, 71,193, 40, 24, 5,163, 96,132, 2,128, 0, 26,189, 17,108, 20,140,130, 81, 48, 10, 70, 40, 0, 8,160,209, 10, 96,
+ 20,140,130, 81, 48, 10, 70, 40, 0, 8, 48, 0,246, 46,186,226, 66,253,212, 42, 0, 0, 0, 0, 73, 69, 78, 68,174, 66, 96,130,
};
diff --git a/source/blender/src/buttons_object.c b/source/blender/src/buttons_object.c
index 67bdbf602c1..ec806a138aa 100644
--- a/source/blender/src/buttons_object.c
+++ b/source/blender/src/buttons_object.c
@@ -2220,12 +2220,11 @@ static void object_panel_fluidsim(Object *ob)
if(ob->id.lib) uiSetButLock(1, "Can't edit library data");
- uiDefButBitS(block, TOG, OB_FLUIDSIM_ENABLE, REDRAWBUTSOBJECT, "Enable", 0,yline, 75,objHeight,
- &ob->fluidsimFlag, 0, 0, 0, 0, "Sets object to participate in fluid simulation");
+ if(ob->type==OB_MESH) {
+ uiDefButBitS(block, TOG, OB_FLUIDSIM_ENABLE, REDRAWBUTSOBJECT, "Enable", 0,yline, 75,objHeight,
+ &ob->fluidsimFlag, 0, 0, 0, 0, "Sets object to participate in fluid simulation");
- if(ob->fluidsimFlag & OB_FLUIDSIM_ENABLE) {
-
- if(ob->type==OB_MESH) {
+ if(ob->fluidsimFlag & OB_FLUIDSIM_ENABLE) {
FluidsimSettings *fss= ob->fluidsimSettings;
if(fss==NULL) {
@@ -2358,12 +2357,12 @@ static void object_panel_fluidsim(Object *ob)
} else {
yline -= lineHeight + 5;
- uiDefBut(block, LABEL, 0, "Sorry - only meshes supported", 0,yline,300,objHeight, NULL, 0.0, 0, 0, 0, "");
+ uiDefBut(block, LABEL, 0, "Object not enabled for fluid simulation...", 0,yline,300,objHeight, NULL, 0.0, 0, 0, 0, "");
yline -= lineHeight;
}
} else {
yline -= lineHeight + 5;
- uiDefBut(block, LABEL, 0, "Object not enabled for fluid simulation...", 0,yline,300,objHeight, NULL, 0.0, 0, 0, 0, "");
+ uiDefBut(block, LABEL, 0, "Only Mesh Objects can participate", 0,yline,300,objHeight, NULL, 0.0, 0, 0, 0, "");
yline -= lineHeight;
}
}
diff --git a/source/blender/src/drawnode.c b/source/blender/src/drawnode.c
new file mode 100644
index 00000000000..b3646737397
--- /dev/null
+++ b/source/blender/src/drawnode.c
@@ -0,0 +1,129 @@
+/**
+ * $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 LICENSE BLOCK *****
+ */
+
+#include <math.h>
+#include <stdio.h>
+#include <string.h>
+
+#include "BLI_blenlib.h"
+#include "BLI_arithb.h"
+
+#include "DNA_action_types.h"
+#include "DNA_ipo_types.h"
+#include "DNA_object_types.h"
+#include "DNA_material_types.h"
+#include "DNA_node_types.h"
+#include "DNA_scene_types.h"
+#include "DNA_space_types.h"
+#include "DNA_screen_types.h"
+
+#include "BKE_global.h"
+#include "BKE_object.h"
+#include "BKE_material.h"
+#include "BKE_node.h"
+#include "BKE_utildefines.h"
+
+#include "BIF_gl.h"
+#include "BIF_interface.h"
+#include "BIF_mywindow.h"
+#include "BIF_resources.h"
+#include "BIF_screen.h"
+
+#include "BSE_drawipo.h"
+#include "BSE_view.h"
+#include "BMF_Api.h"
+
+#include "blendef.h"
+#include "MEM_guardedalloc.h"
+
+static void draw_nodespace_grid(SpaceNode *snode)
+{
+// float fac, step= 20.0f;
+
+ /* window is 'pixel size', like buttons */
+
+ BIF_ThemeColorShade(TH_BACK, 10);
+
+ glRectf(0.0f, 0.0f, curarea->winx, curarea->winy);
+}
+
+
+/* get from assigned ID */
+static void get_nodetree(SpaceNode *snode)
+{
+ /* note: once proper coded, remove free from freespacelist() */
+ if(snode->nodetree==NULL) {
+ snode->nodetree= MEM_callocN(sizeof(bNodeTree), "new node tree");
+ }
+
+}
+
+void drawnodespace(ScrArea *sa, void *spacedata)
+{
+ SpaceNode *snode= sa->spacedata.first;
+ float col[3];
+
+ BIF_GetThemeColor3fv(TH_BACK, col);
+ glClearColor(col[0], col[1], col[2], 0.0);
+ glClear(GL_COLOR_BUFFER_BIT);
+
+ calc_scrollrcts(sa, &(snode->v2d), sa->winx, sa->winy);
+
+ myortho2(snode->v2d.cur.xmin, snode->v2d.cur.xmax, snode->v2d.cur.ymin, snode->v2d.cur.ymax);
+ bwin_clear_viewmat(sa->win); /* clear buttons view */
+ glLoadIdentity();
+
+ /* only set once */
+ glBlendFunc( GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA );
+
+ /* aspect+font, set each time */
+ snode->aspect= (snode->v2d.cur.xmax - snode->v2d.cur.xmin)/((float)sa->winx);
+ snode->curfont= uiSetCurFont_ext(snode->aspect);
+
+ /* backdrop */
+ draw_nodespace_grid(snode);
+
+ /* nodes */
+ get_nodetree(snode);
+ if(snode->nodetree) {
+ bNode *node;
+ for(node= snode->nodetree->nodes.first; node; node= node->next) {
+ node->drawfunc(snode, node);
+ }
+ }
+
+ /* restore viewport */
+ mywinset(sa->win);
+
+ /* ortho at pixel level curarea */
+ myortho2(-0.375, sa->winx-0.375, -0.375, sa->winy-0.375);
+
+ draw_area_emboss(sa);
+ curarea->win_swap= WIN_BACK_OK;
+}
diff --git a/source/blender/src/drawtime.c b/source/blender/src/drawtime.c
index 9ec0f864cdb..1c021f835a4 100644
--- a/source/blender/src/drawtime.c
+++ b/source/blender/src/drawtime.c
@@ -1,15 +1,12 @@
/**
* $Id:
*
- * ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
+ * ***** 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. The Blender
- * Foundation also sells licenses for use in proprietary software under
- * the Blender License. See http://www.blender.org/BL/ for information
- * about this.
+ * 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
@@ -27,7 +24,7 @@
*
* Contributor(s): none yet.
*
- * ***** END GPL/BL DUAL LICENSE BLOCK *****
+ * ***** END GPL LICENSE BLOCK *****
*/
#include <math.h>
diff --git a/source/blender/src/editnode.c b/source/blender/src/editnode.c
new file mode 100644
index 00000000000..3a53602e18e
--- /dev/null
+++ b/source/blender/src/editnode.c
@@ -0,0 +1,379 @@
+/**
+ * $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 LICENSE BLOCK *****
+ */
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <math.h>
+#include <string.h>
+
+#include "MEM_guardedalloc.h"
+
+#include "DNA_action_types.h"
+#include "DNA_ipo_types.h"
+#include "DNA_object_types.h"
+#include "DNA_material_types.h"
+#include "DNA_node_types.h"
+#include "DNA_space_types.h"
+#include "DNA_screen_types.h"
+#include "DNA_scene_types.h"
+#include "DNA_userdef_types.h"
+
+#include "BKE_global.h"
+#include "BKE_library.h"
+#include "BKE_main.h"
+#include "BKE_node.h"
+#include "BKE_material.h"
+#include "BKE_utildefines.h"
+
+#include "BIF_gl.h"
+#include "BIF_interface.h"
+#include "BIF_language.h"
+#include "BIF_mywindow.h"
+#include "BIF_resources.h"
+#include "BIF_space.h"
+#include "BIF_screen.h"
+#include "BIF_toolbox.h"
+
+#include "BSE_drawipo.h"
+#include "BSE_headerbuttons.h"
+
+#include "BLI_blenlib.h"
+#include "BLI_arithb.h"
+
+#include "blendef.h"
+#include "interface.h" /* urm... for rasterpos_safe, roundbox */
+
+#include "mydevice.h"
+
+
+/* ***************************** */
+
+#define NODE_DY 20
+
+static void nodeshadow(rctf *rct, int select)
+{
+ int a;
+ char alpha= 2;
+
+ uiSetRoundBox(15);
+ glEnable(GL_BLEND);
+
+ if(select) a= 10; else a=7;
+ for(; a>0; a-=1) {
+ /* alpha ranges from 2 to 20 or so */
+ glColor4ub(0, 0, 0, alpha);
+ alpha+= 2;
+
+ gl_round_box(GL_POLYGON, rct->xmin - a, rct->ymin - a, rct->xmax + a, rct->ymax-10.0f + a, 8.0f+a);
+ }
+
+ /* outline emphasis */
+ glEnable( GL_LINE_SMOOTH );
+ glColor4ub(0, 0, 0, 100);
+ gl_round_box(GL_LINE_LOOP, rct->xmin-0.5f, rct->ymin-0.5f, rct->xmax+0.5f, rct->ymax+0.5f, 8.0f);
+ glDisable( GL_LINE_SMOOTH );
+
+ glDisable(GL_BLEND);
+}
+
+/* nice AA filled circle */
+static void socket_circle_draw(float x, float y, float size)
+{
+ /* 16 values of sin function */
+ static float si[16] = {
+ 0.00000000, 0.39435585,0.72479278,0.93775213,
+ 0.99871650,0.89780453,0.65137248,0.29936312,
+ -0.10116832,-0.48530196,-0.79077573,-0.96807711,
+ -0.98846832,-0.84864425,-0.57126821,-0.20129852
+ };
+ /* 16 values of cos function */
+ static float co[16] ={
+ 1.00000000,0.91895781,0.68896691,0.34730525,
+ -0.05064916,-0.44039415,-0.75875812,-0.95413925,
+ -0.99486932,-0.87434661,-0.61210598,-0.25065253,
+ 0.15142777,0.52896401,0.82076344,0.97952994,
+ };
+ int a;
+
+ glColor3ub(200, 200, 40);
+ glBegin(GL_POLYGON);
+ for(a=0; a<16; a++)
+ glVertex2f(x+size*si[a], y+size*co[a]);
+ glEnd();
+
+ glColor4ub(0, 0, 0, 150);
+ glEnable(GL_BLEND);
+ glEnable( GL_LINE_SMOOTH );
+ glBegin(GL_LINE_LOOP);
+ for(a=0; a<16; a++)
+ glVertex2f(x+size*si[a], y+size*co[a]);
+ glEnd();
+ glDisable( GL_LINE_SMOOTH );
+ glDisable(GL_BLEND);
+}
+
+static int node_basis_draw(SpaceNode *snode, bNode *node)
+{
+ bNodeSocket *sock;
+ rctf *rct= &node->tot;
+ float slen;
+ int trans= (U.transopts & USER_TR_BUTTONS);
+
+ nodeshadow(rct, node->flag & SELECT);
+
+ BIF_ThemeColorShade(TH_HEADER, +30);
+ uiSetRoundBox(3);
+ uiRoundBox(rct->xmin, rct->ymax-NODE_DY, rct->xmax, rct->ymax, 8);
+
+ BIF_ThemeColorShade(TH_HEADER, +10);
+ uiSetRoundBox(12);
+ uiRoundBox(rct->xmin, rct->ymin, rct->xmax, rct->ymax-NODE_DY, 8);
+
+ ui_rasterpos_safe(rct->xmin+4.0f, rct->ymax-NODE_DY+5.0f, snode->aspect);
+
+ if(node->flag & SELECT)
+ BIF_ThemeColor(TH_TEXT_HI);
+ else
+ BIF_ThemeColor(TH_TEXT);
+
+ BIF_DrawString(snode->curfont, node->name, trans);
+
+ for(sock= node->inputs.first; sock; sock= sock->next) {
+ socket_circle_draw(sock->locx, sock->locy, 5.0f);
+
+ BIF_ThemeColor(TH_TEXT);
+ ui_rasterpos_safe(sock->locx+8.0f, sock->locy-5.0f, snode->aspect);
+ BIF_DrawString(snode->curfont, sock->name, trans);
+ }
+
+ for(sock= node->outputs.first; sock; sock= sock->next) {
+ socket_circle_draw(sock->locx, sock->locy, 5.0f);
+
+ BIF_ThemeColor(TH_TEXT);
+ slen= snode->aspect*BIF_GetStringWidth(snode->curfont, sock->name, trans);
+ ui_rasterpos_safe(sock->locx-8.0f-slen, sock->locy-5.0f, snode->aspect);
+ BIF_DrawString(snode->curfont, sock->name, trans);
+ }
+
+ return 0;
+}
+
+static void node_deselectall(SpaceNode *snode, int swap)
+{
+ bNode *node;
+
+ if(swap) {
+ for(node= snode->nodetree->nodes.first; node; node= node->next)
+ if(node->flag & SELECT)
+ break;
+ if(node==NULL) {
+ for(node= snode->nodetree->nodes.first; node; node= node->next)
+ node->flag |= SELECT;
+ allqueue(REDRAWNODE, 0);
+ return;
+ }
+ /* else pass on to deselect */
+ }
+
+ for(node= snode->nodetree->nodes.first; node; node= node->next)
+ node->flag &= ~SELECT;
+
+ allqueue(REDRAWNODE, 0);
+}
+
+
+/* based on settings in tree and node,
+ - it fills it with appropriate callbacks
+ - sets drawing rect info */
+void node_update(bNodeTree *ntree, bNode *node)
+{
+ bNodeSocket *nsock;
+ float dy= 0.0f;
+ float width= 80.0f; /* width custom? */
+
+ node->drawfunc= node_basis_draw;
+
+ /* input connectors */
+ for(nsock= node->inputs.last; nsock; nsock= nsock->prev) {
+ nsock->locx= node->locx;
+ nsock->locy= node->locy + dy + NODE_DY/2;
+ dy+= NODE_DY;
+ }
+
+ /* spacer */
+ dy+= NODE_DY/2;
+
+ /* preview rect? */
+
+ /* spacer */
+ dy+= NODE_DY/2;
+
+ /* output connectors */
+ for(nsock= node->outputs.last; nsock; nsock= nsock->prev) {
+ nsock->locx= node->locx + width;
+ nsock->locy= node->locy + dy + NODE_DY/2;
+ dy+= NODE_DY;
+ }
+
+ /* header */
+ dy+= NODE_DY;
+
+ node->tot.xmin= node->locx;
+ node->tot.xmax= node->locx + width;
+ node->tot.ymin= node->locy;
+ node->tot.ymax= node->locy + dy;
+}
+
+/* editor context */
+static void node_add_menu(SpaceNode *snode)
+{
+ short event, mval[2];
+
+ getmouseco_areawin(mval);
+
+ event= pupmenu("Add Node%t|Testnode%x1");
+ if(event<1) return;
+
+ node_deselectall(snode, 0);
+
+ if(event==1) {
+ bNodeSocket *sock;
+ bNode *node= nodeAddNode(snode->nodetree, "TestNode");
+
+ areamouseco_to_ipoco(G.v2d, mval, &node->locx, &node->locy);
+ node->flag= SELECT;
+
+ /* add fake sockets */
+ sock= MEM_callocN(sizeof(bNodeSocket), "sock");
+ strcpy(sock->name, "Col");
+ BLI_addtail(&node->inputs, sock);
+ sock= MEM_callocN(sizeof(bNodeSocket), "sock");
+ strcpy(sock->name, "Spec");
+ BLI_addtail(&node->inputs, sock);
+
+ sock= MEM_callocN(sizeof(bNodeSocket), "sock");
+ strcpy(sock->name, "Diffuse");
+ BLI_addtail(&node->outputs, sock);
+
+ node_update(snode->nodetree, node);
+
+ allqueue(REDRAWNODE, 0);
+ }
+}
+
+static void node_select(SpaceNode *snode)
+{
+ bNode *node;
+ float mx, my;
+ short mval[2];
+
+ getmouseco_areawin(mval);
+ areamouseco_to_ipoco(G.v2d, mval, &mx, &my);
+
+ if((G.qual & LR_SHIFTKEY)==0)
+ node_deselectall(snode, 0);
+
+ for(node= snode->nodetree->nodes.first; node; node= node->next) {
+ if(BLI_in_rctf(&node->tot, mx, my)) {
+ node->flag |= SELECT;
+ }
+ }
+ allqueue(REDRAWNODE, 0);
+}
+
+
+void winqreadnodespace(ScrArea *sa, void *spacedata, BWinEvent *evt)
+{
+ SpaceNode *snode= spacedata;
+ float dx;
+ unsigned short event= evt->event;
+ short val= evt->val, doredraw=0;
+
+ if(sa->win==0) return;
+
+ if(val) {
+
+ if( uiDoBlocks(&sa->uiblocks, event)!=UI_NOTHING ) event= 0;
+
+ switch(event) {
+ case LEFTMOUSE:
+ node_select(snode);
+ break;
+
+ case RIGHTMOUSE:
+ node_select(snode);
+
+ break;
+ case MIDDLEMOUSE:
+ case WHEELUPMOUSE:
+ case WHEELDOWNMOUSE:
+ view2dmove(event); /* in drawipo.c */
+ break;
+ case PADPLUSKEY:
+ dx= (float)(0.1154*(G.v2d->cur.xmax-G.v2d->cur.xmin));
+ G.v2d->cur.xmin+= dx;
+ G.v2d->cur.xmax-= dx;
+ test_view2d(G.v2d, sa->winx, sa->winy);
+ doredraw= 1;
+ break;
+ case PADMINUS:
+ dx= (float)(0.15*(G.v2d->cur.xmax-G.v2d->cur.xmin));
+ G.v2d->cur.xmin-= dx;
+ G.v2d->cur.xmax+= dx;
+ test_view2d(G.v2d, sa->winx, sa->winy);
+ doredraw= 1;
+ break;
+ case HOMEKEY:
+ doredraw= 1;
+ break;
+
+ case AKEY:
+ if(G.qual==LR_SHIFTKEY)
+ node_add_menu(snode);
+ else if(G.qual==0)
+ node_deselectall(snode, 1);
+ break;
+ case DKEY:
+ break;
+ case CKEY:
+ break;
+ case GKEY:
+ break;
+ case DELKEY:
+ case XKEY:
+ if( okee("Erase selected")==0 ) break;
+ break;
+ }
+ }
+
+ if(doredraw)
+ scrarea_queue_winredraw(sa);
+}
+
+
diff --git a/source/blender/src/editscreen.c b/source/blender/src/editscreen.c
index d703e1a53c8..6ee44a1f5ed 100644
--- a/source/blender/src/editscreen.c
+++ b/source/blender/src/editscreen.c
@@ -327,10 +327,16 @@ void areawinset(short win)
G.v2d= &G.snla->v2d;
break;
case SPACE_TIME:
- {
+ {
SpaceTime *stime= curarea->spacedata.first;
G.v2d= &stime->v2d;
- }
+ }
+ break;
+ case SPACE_NODE:
+ {
+ SpaceNode *snode= curarea->spacedata.first;
+ G.v2d= &snode->v2d;
+ }
break;
default:
break;
@@ -400,6 +406,7 @@ void scrarea_do_headdraw(ScrArea *area)
case SPACE_ACTION: action_buttons(); break;
case SPACE_NLA: nla_buttons(); break;
case SPACE_TIME: time_buttons(area); break;
+ case SPACE_NODE: node_buttons(area); break;
}
uiClearButLock();
@@ -647,7 +654,6 @@ int is_allowed_to_change_screen(bScreen *new)
void splash(void *data, int datasize, char *string)
{
- extern void uiDrawBoxShadow(unsigned char alpha, float minx, float miny, float maxx, float maxy);
ImBuf *bbuf;
int oldwin;
short val;
diff --git a/source/blender/src/edittime.c b/source/blender/src/edittime.c
index 26aa3e1cbae..48c65a29cd9 100644
--- a/source/blender/src/edittime.c
+++ b/source/blender/src/edittime.c
@@ -1,15 +1,12 @@
/**
* $Id:
*
- * ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
+ * ***** 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. The Blender
- * Foundation also sells licenses for use in proprietary software under
- * the Blender License. See http://www.blender.org/BL/ for information
- * about this.
+ * 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
@@ -27,7 +24,7 @@
*
* Contributor(s): none yet.
*
- * ***** END GPL/BL DUAL LICENSE BLOCK *****
+ * ***** END GPL LICENSE BLOCK *****
*/
#include <stdio.h>
diff --git a/source/blender/src/fluidsim.c b/source/blender/src/fluidsim.c
index a89c5e876f9..cb6519253b7 100644
--- a/source/blender/src/fluidsim.c
+++ b/source/blender/src/fluidsim.c
@@ -80,6 +80,7 @@
#include "BSE_headerbuttons.h"
#include "mydevice.h"
+#include "render.h" // for RE_make_existing_file
#include "SDL.h"
#include "SDL_thread.h"
diff --git a/source/blender/src/header_node.c b/source/blender/src/header_node.c
new file mode 100644
index 00000000000..ca5cacedac6
--- /dev/null
+++ b/source/blender/src/header_node.c
@@ -0,0 +1,126 @@
+/**
+ *
+ * $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 LICENSE BLOCK *****
+ */
+
+#include <stdlib.h>
+#include <string.h>
+#include <stdio.h>
+
+#include "DNA_ID.h"
+#include "DNA_screen_types.h"
+#include "DNA_scene_types.h"
+#include "DNA_space_types.h"
+#include "DNA_view2d_types.h"
+#include "DNA_userdef_types.h"
+
+#include "BIF_gl.h"
+#include "BIF_interface.h"
+#include "BIF_resources.h"
+#include "BIF_screen.h"
+#include "BIF_space.h"
+#include "BIF_toolbox.h"
+#include "BIF_butspace.h"
+
+#include "BKE_global.h"
+#include "BKE_main.h"
+
+#include "BSE_headerbuttons.h"
+
+#include "blendef.h"
+#include "butspace.h"
+#include "mydevice.h"
+
+void do_node_buttons(ScrArea *sa, unsigned short event)
+{
+// SpaceNode *snode= sa->spacedata.first;
+
+ switch(event) {
+ ;
+ }
+}
+
+
+void node_buttons(ScrArea *sa)
+{
+// SpaceNode *snode= sa->spacedata.first;
+ uiBlock *block;
+ short xco;
+ char name[256];
+
+ sprintf(name, "header %d", sa->headwin);
+ block= uiNewBlock(&sa->uiblocks, name, UI_EMBOSS, UI_HELV, sa->headwin);
+
+ if(area_is_active_area(sa)) uiBlockSetCol(block, TH_HEADER);
+ else uiBlockSetCol(block, TH_HEADERDESEL);
+
+ sa->butspacetype= SPACE_NODE;
+
+ xco = 8;
+
+ uiDefIconTextButC(block, ICONTEXTROW,B_NEWSPACE, ICON_VIEW3D,
+ windowtype_pup(), xco, 0, XIC+10, YIC,
+ &(sa->butspacetype), 1.0, SPACEICONMAX, 0, 0,
+ "Displays Current Window Type. "
+ "Click for menu of available types.");
+
+ xco += XIC + 14;
+
+ uiBlockSetEmboss(block, UI_EMBOSSN);
+ if (sa->flag & HEADER_NO_PULLDOWN) {
+ uiDefIconButBitS(block, TOG, HEADER_NO_PULLDOWN, B_FLIPINFOMENU,
+ ICON_DISCLOSURE_TRI_RIGHT,
+ xco,2,XIC,YIC-2,
+ &(sa->flag), 0, 0, 0, 0,
+ "Show pulldown menus");
+ }
+ else {
+ uiDefIconButBitS(block, TOG, HEADER_NO_PULLDOWN, B_FLIPINFOMENU,
+ ICON_DISCLOSURE_TRI_DOWN,
+ xco,2,XIC,YIC-2,
+ &(sa->flag), 0, 0, 0, 0,
+ "Hide pulldown menus");
+ }
+ uiBlockSetEmboss(block, UI_EMBOSS);
+ xco+=XIC;
+
+ if((sa->flag & HEADER_NO_PULLDOWN)==0) {
+ /* pull down menus */
+ uiBlockSetEmboss(block, UI_EMBOSSP);
+
+// xmax= GetButStringLength("View");
+// uiDefPulldownBut(block, time_viewmenu, NULL,
+// "View", xco, -2, xmax-3, 24, "");
+// xco+= xmax;
+ }
+
+ /* always as last */
+ sa->headbutlen= xco+2*XIC;
+
+ uiDrawBlock(block);
+}
diff --git a/source/blender/src/headerbuttons.c b/source/blender/src/headerbuttons.c
index d05904c74a8..c2551bd265a 100644
--- a/source/blender/src/headerbuttons.c
+++ b/source/blender/src/headerbuttons.c
@@ -208,6 +208,7 @@ char *windowtype_pup(void)
strcat(string, "|User Preferences %x7"); //213
strcat(string, "|Outliner %x3"); //232
strcat(string, "|Buttons Window %x4"); //251
+ strcat(string, "|Node Editor %x16");
strcat(string, "|%l"); //254
@@ -1979,7 +1980,8 @@ void do_headerbuttons(short event)
else if(event<700) do_sound_buttons(event);
else if(event<750) do_action_buttons(event);
else if(event<800) do_time_buttons(curarea, event);
- else if(event<900) do_nla_buttons(event);
+ else if(event<850) do_nla_buttons(event);
+ else if(event<900) do_node_buttons(curarea, event);
else if(event>=REDRAWVIEW3D) allqueue(event, 0);
}
diff --git a/source/blender/src/interface.c b/source/blender/src/interface.c
index dfa919cc562..1cac0b6596e 100644
--- a/source/blender/src/interface.c
+++ b/source/blender/src/interface.c
@@ -117,7 +117,6 @@ uiBut *UIbuttip;
/* ************* PROTOTYPES ***************** */
static void ui_set_but_val(uiBut *but, double value);
-static void ui_set_ftf_font(uiBlock *block);
static void ui_do_but_tip(uiBut *buttip);
/* ****************************** */
@@ -3552,14 +3551,14 @@ static int ui_mouse_motion_towards_block(uiBlock *block, uiEvent *uevent)
}
-static void ui_set_ftf_font(uiBlock *block)
+static void ui_set_ftf_font(float aspect)
{
#ifdef INTERNATIONAL
- if(block->aspect<1.15) {
+ if(aspect<1.15) {
FTF_SetFontSize('l');
}
- else if(block->aspect<1.59) {
+ else if(aspect<1.59) {
FTF_SetFontSize('m');
}
else {
@@ -3646,7 +3645,7 @@ static int ui_do_block(uiBlock *block, uiEvent *uevent)
}
}
- ui_set_ftf_font(block); // sets just a pointer in ftf lib... the button dont have ftf handles
+ ui_set_ftf_font(block->aspect); // sets just a pointer in ftf lib... the button dont have ftf handles
// added this for panels in windows with buttons...
// maybe speed optimize should require test
@@ -4509,7 +4508,7 @@ static void ui_set_but_val(uiBut *but, double value)
void uiSetCurFont(uiBlock *block, int index)
{
- ui_set_ftf_font(block);
+ ui_set_ftf_font(block->aspect);
if(block->aspect<0.60) {
block->curfont= UIfont[index].xl;
@@ -4530,6 +4529,32 @@ void uiSetCurFont(uiBlock *block, int index)
}
+/* called by node editor */
+void *uiSetCurFont_ext(float aspect)
+{
+ void *curfont;
+
+ ui_set_ftf_font(aspect);
+
+ if(aspect<0.60) {
+ curfont= UIfont[0].xl;
+ }
+ else if(aspect<1.15) {
+ curfont= UIfont[0].large;
+ }
+ else if(aspect<1.59) {
+ curfont= UIfont[0].medium;
+ }
+ else {
+ curfont= UIfont[0].small;
+ }
+
+ if(curfont==NULL) curfont= UIfont[0].large;
+ if(curfont==NULL) curfont= UIfont[0].medium;
+
+ return curfont;
+}
+
void uiDefFont(unsigned int index, void *xl, void *large, void *medium, void *small)
{
if(index>=UI_ARRAY) return;
@@ -5649,12 +5674,12 @@ short pupmenu(char *instr)
md= decompose_menu_string(instr);
/* size and location, title slightly bigger for bold */
- if(md->title) width= 2*strlen(md->title)+BIF_GetStringWidth(uiBlockGetCurFont(block), md->title, (U.transopts && USER_TR_BUTTONS));
+ if(md->title) width= 2*strlen(md->title)+BIF_GetStringWidth(uiBlockGetCurFont(block), md->title, (U.transopts & USER_TR_BUTTONS));
else width= 0;
for(a=0; a<md->nitems; a++) {
char *name= md->items[a].str;
- xmax= BIF_GetStringWidth(uiBlockGetCurFont(block), md->items[a].str, (U.transopts && USER_TR_BUTTONS));
+ xmax= BIF_GetStringWidth(uiBlockGetCurFont(block), md->items[a].str, (U.transopts & USER_TR_BUTTONS));
if(xmax>width) width= xmax;
if( strcmp(name, "%l")==0) height+= PUP_LABELH;
diff --git a/source/blender/src/interface_draw.c b/source/blender/src/interface_draw.c
index e0e09e36aac..d36aa651c64 100644
--- a/source/blender/src/interface_draw.c
+++ b/source/blender/src/interface_draw.c
@@ -95,9 +95,6 @@
// globals
extern float UIwinmat[4][4];
-// local prototypes
-void uiDrawBoxShadow(unsigned char alpha, float minx, float miny, float maxx, float maxy);
-
/* ************** safe rasterpos for pixmap alignment with pixels ************* */
diff --git a/source/blender/src/space.c b/source/blender/src/space.c
index ee10006addc..67517b163de 100644
--- a/source/blender/src/space.c
+++ b/source/blender/src/space.c
@@ -76,6 +76,7 @@
#include "BKE_global.h"
#include "BKE_ipo.h"
#include "BKE_main.h"
+#include "BKE_node.h"
#include "BKE_scene.h"
#include "BKE_utildefines.h"
@@ -4423,6 +4424,47 @@ static void init_timespace(ScrArea *sa)
}
+/* ******************** SPACE: Time ********************** */
+
+extern void drawnodespace(ScrArea *sa, void *spacedata);
+extern void winqreadnodespace(struct ScrArea *sa, void *spacedata, struct BWinEvent *evt);
+
+static void init_nodespace(ScrArea *sa)
+{
+ SpaceNode *snode;
+
+ snode= MEM_callocN(sizeof(SpaceNode), "init nodespace");
+ BLI_addhead(&sa->spacedata, snode);
+
+ snode->spacetype= SPACE_NODE;
+ snode->blockscale= 0.7;
+
+ snode->v2d.tot.xmin= -10.0;
+ snode->v2d.tot.ymin= -10.0;
+ snode->v2d.tot.xmax= (float)sa->winx + 10.0f;
+ snode->v2d.tot.ymax= (float)sa->winy + 10.0f;
+
+ snode->v2d.cur.xmin= 0.0;
+ snode->v2d.cur.ymin= 0.0;
+ snode->v2d.cur.xmax= (float)sa->winx;
+ snode->v2d.cur.ymax= (float)sa->winy;
+
+ snode->v2d.min[0]= 1.0;
+ snode->v2d.min[1]= 1.0;
+
+ snode->v2d.max[0]= 32000.0f;
+ snode->v2d.max[1]= 32000.0f;
+
+ snode->v2d.minzoom= 0.5f;
+ snode->v2d.maxzoom= 1.21f;
+
+ snode->v2d.scroll= 0;
+ snode->v2d.keepaspect= 1;
+ snode->v2d.keepzoom= 1;
+ snode->v2d.keeptot= 0;
+}
+
+
/* ******************** SPACE: GENERAL ********************** */
@@ -4490,6 +4532,8 @@ void newspace(ScrArea *sa, int type)
init_nlaspace(sa);
else if(type==SPACE_TIME)
init_timespace(sa);
+ else if(type==SPACE_NODE)
+ init_nodespace(sa);
sl= sa->spacedata.first;
sl->area= sa;
@@ -4584,6 +4628,11 @@ void freespacelist(ListBase *lb)
else if(sl->spacetype==SPACE_SOUND) {
free_soundspace((SpaceSound *)sl);
}
+ else if(sl->spacetype==SPACE_NODE) {
+ SpaceNode *snode= (SpaceNode *)sl;
+ if(snode->nodetree)
+ nodeFreeTree(snode->nodetree);
+ }
}
BLI_freelistN(lb);
@@ -4615,6 +4664,10 @@ void duplicatespacelist(ScrArea *newarea, ListBase *lb1, ListBase *lb2)
}
else if(sl->spacetype==SPACE_TEXT) {
}
+ else if(sl->spacetype==SPACE_NODE) {
+ SpaceNode *snode= (SpaceNode *)sl;
+ snode->nodetree= NULL;
+ }
/* __PINFAKE */
/* else if(sfile->spacetype==SPACE_ACTION) {
SpaceAction *sa= (SpaceAction *)sfile;
@@ -4870,6 +4923,12 @@ void allqueue(unsigned short event, short val)
scrarea_queue_winredraw(sa);
}
break;
+ case REDRAWNODE:
+ if(sa->spacetype==SPACE_NODE) {
+ scrarea_queue_headredraw(sa);
+ scrarea_queue_winredraw(sa);
+ }
+ break;
case REDRAWANIM:
if ELEM6(sa->spacetype, SPACE_IPO, SPACE_SOUND, SPACE_TIME, SPACE_NLA, SPACE_ACTION, SPACE_SEQ) {
scrarea_queue_winredraw(sa);
@@ -5177,3 +5236,15 @@ SpaceType *spacetime_get_type(void)
return st;
}
+
+SpaceType *spacenode_get_type(void)
+{
+ static SpaceType *st= NULL;
+
+ if (!st) {
+ st= spacetype_new("Node");
+ spacetype_set_winfuncs(st, drawnodespace, NULL, winqreadnodespace);
+ }
+
+ return st;
+}
diff --git a/source/blender/src/spacetypes.c b/source/blender/src/spacetypes.c
index 6509aee6982..3a4c09e9e1a 100644
--- a/source/blender/src/spacetypes.c
+++ b/source/blender/src/spacetypes.c
@@ -96,6 +96,7 @@ static SpaceType *spacetype_from_area(ScrArea *area)
case SPACE_SCRIPT: return spacescript_get_type();
case SPACE_VIEW3D: return spaceview3d_get_type();
case SPACE_TIME: return spacetime_get_type();
+ case SPACE_NODE: return spacenode_get_type();
default:
newspace(area, SPACE_VIEW3D);
return spaceview3d_get_type();