Merge lp:~mc-return/compiz/compiz0.9.9.merge-plugin-wizard into lp:compiz/0.9.9

Proposed by MC Return on 2012-12-29
Status: Merged
Approved by: Daniel van Vugt on 2013-01-04
Approved revision: 3268
Merged at revision: 3538
Proposed branch: lp:~mc-return/compiz/compiz0.9.9.merge-plugin-wizard
Merge into: lp:compiz/0.9.9
Diff against target: 4956 lines (+4907/-0)
7 files modified
debian/compiz-plugins.install (+1/-0)
plugins/CMakeLists.txt (+1/-0)
plugins/wizard/CMakeLists.txt (+5/-0)
plugins/wizard/include/wizard.h (+215/-0)
plugins/wizard/include/wizard_tex.h (+2827/-0)
plugins/wizard/src/wizard.cpp (+1003/-0)
plugins/wizard/wizard.xml.in (+855/-0)
To merge this branch: bzr merge lp:~mc-return/compiz/compiz0.9.9.merge-plugin-wizard
Reviewer Review Type Date Requested Status
Daniel van Vugt Approve on 2013-01-04
Sam Spilsbury 2012-12-29 Approve on 2013-01-03
PS Jenkins bot continuous-integration Pending
Review via email: mp+141459@code.launchpad.net

Commit Message

Merged the plug-in "wizard" converted from git to bzr (including history) to
lp:compiz. (LP: #1012330)

Note: This plugin is disabled for ES2/GLES builds.

To post a comment you must log in.
3268. By MC Return on 2012-12-29

Adjusted debian/compiz-plugins.install to also install the wizard plugin

Sam Spilsbury (smspillaz) wrote :

I'm okay with this, since its not an officially maintained plugin and someone is willing to maintain it.

Daniel?

review: Approve
Daniel van Vugt (vanvugt) wrote :

Seeing wizard working has brightened up my day. That's awesome.

We have plenty of code without official maintainers. If it ever causes problems that require resources to resolve that we don't have, then it can simply be disabled.

review: Approve
MC Return (mc-return) wrote :

> Seeing wizard working has brightened up my day. That's awesome.
>
> We have plenty of code without official maintainers. If it ever causes
> problems that require resources to resolve that we don't have, then it can
> simply be disabled.

:) This one is essential (at least on January, 1st 00:00). I also love those particles. :)

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'debian/compiz-plugins.install'
2--- debian/compiz-plugins.install 2012-08-24 13:41:00 +0000
3+++ debian/compiz-plugins.install 2012-12-29 17:45:25 +0000
4@@ -46,6 +46,7 @@
5 debian/tmp/usr/*/compiz/*water.*
6 debian/tmp/usr/*/compiz/*widget.*
7 debian/tmp/usr/*/compiz/*winrules.*
8+debian/tmp/usr/*/compiz/*wizard.*
9 debian/tmp/usr/*/compiz/*wobbly.*
10 debian/tmp/usr/*/compiz/*workspacenames.*
11
12
13=== modified file 'plugins/CMakeLists.txt'
14--- plugins/CMakeLists.txt 2012-07-20 13:28:42 +0000
15+++ plugins/CMakeLists.txt 2012-12-29 17:45:25 +0000
16@@ -52,6 +52,7 @@
17 set (COMPIZ_DISABLE_PLUGIN_WIDGET ON)
18 set (COMPIZ_DISABLE_PLUGIN_SHOWMOUSE ON)
19 set (COMPIZ_DISABLE_PLUGIN_SPLASH ON)
20+ set (COMPIZ_DISABLE_PLUGIN_WIZARD ON)
21
22 endif (BUILD_GLES)
23
24
25=== added directory 'plugins/wizard'
26=== added file 'plugins/wizard/CMakeLists.txt'
27--- plugins/wizard/CMakeLists.txt 1970-01-01 00:00:00 +0000
28+++ plugins/wizard/CMakeLists.txt 2012-12-29 17:45:25 +0000
29@@ -0,0 +1,5 @@
30+find_package (Compiz REQUIRED)
31+
32+include (CompizPlugin)
33+
34+compiz_plugin (wizard PLUGINDEPS composite opengl mousepoll)
35
36=== added directory 'plugins/wizard/include'
37=== added file 'plugins/wizard/include/wizard.h'
38--- plugins/wizard/include/wizard.h 1970-01-01 00:00:00 +0000
39+++ plugins/wizard/include/wizard.h 2012-12-29 17:45:25 +0000
40@@ -0,0 +1,215 @@
41+/*
42+ * Compiz wizard particle system plugin
43+ *
44+ * wizard.h
45+ *
46+ * Written by : Sebastian Kuhlen
47+ * E-mail : DiCon@tankwar.de
48+ *
49+ * Ported to Compiz 0.9.x
50+ * Copyright : (c) 2010 Scott Moreau <oreaus@gmail.com>
51+ *
52+ * This plugin and parts of its code have been inspired by the showmouse plugin
53+ * by Dennis Kasprzyk
54+ *
55+ * This program is free software; you can redistribute it and/or
56+ * modify it under the terms of the GNU General Public License
57+ * as published by the Free Software Foundation; either version 2
58+ * of the License, or (at your option) any later version.
59+ *
60+ * This program is distributed in the hope that it will be useful,
61+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
62+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
63+ * GNU General Public License for more details.
64+ *
65+ */
66+
67+#include <core/core.h>
68+#include <composite/composite.h>
69+#include <opengl/opengl.h>
70+#include <mousepoll/mousepoll.h>
71+
72+#include "wizard_options.h"
73+#include "wizard_tex.h"
74+
75+static float
76+rRange (float avg, float range)
77+{
78+ return avg + (float)((random () & 0xff)/127.5-1.)*range;
79+}
80+
81+typedef enum
82+{
83+ TRIGGER_PERSISTENT = 0,
84+ TRIGGER_MOUSEMOVEMENT,
85+ TRIGGER_RANDOMSHOT,
86+ TRIGGER_RANDOMPERIOD
87+} TriggerType;
88+
89+typedef enum
90+{
91+ MOVEMENT_MOUSEPOSITION = 0,
92+ MOVEMENT_FOLLOWMOUSE,
93+ MOVEMENT_BOUNCE,
94+ MOVEMENT_WRAP
95+} MovementType;
96+
97+class GPoint
98+{
99+ public:
100+
101+ float strength; // Strength of this gravity source
102+ float x; // X position
103+ float y; // Y position
104+ float espeed; // Speed of the gravity source
105+ float eangle; // Angle for the movement of this gravity source
106+ int movement; // Type of movement of this gravity source
107+};
108+
109+class Particle
110+{
111+ public:
112+
113+ float c[3]; // Color
114+ float a; // alpha value
115+ float x; // X position
116+ float y; // Y position
117+ float t; // t position (age, born at 1, dies at 0)
118+ float phi; // Orientation of texture
119+ float vx; // X speed
120+ float vy; // Y speed
121+ float vt; // t speed (aging speed)
122+ float vphi; // Rotation speed
123+ float s; // size (side of the square)
124+ float snew; // Size when born (reduced to s while new)
125+ float g; // Gravity from this particle
126+};
127+
128+class Emitter
129+{
130+ public:
131+
132+ bool set_active; // Set to active in the settings
133+ bool active; // Currently active (differs from set_active for
134+ // the random period trigger)
135+ int trigger; // When to generate particles
136+ int count; // Amount of particles to be generated
137+ float h; // color hue (0..1)
138+ float dh; // color hue range
139+ float l; // color lightness (0..1)
140+ float dl; // color lightness range
141+ float a; // Alpha
142+ float da; // Alpha range
143+ float x; // X position
144+ float y; // Y position
145+ float espeed; // Speed of the emitter
146+ float eangle; // Angle for the movement of this emitter
147+ int movement; // Type of movement of this emitter
148+ float dx; // X range
149+ float dy; // Y range
150+ float dcirc; // Circular range
151+ float vx; // X speed
152+ float vy; // Y speed
153+ float vt; // t speed (aging speed)
154+ float vphi; // Rotation speed
155+ float dvx; // X speed range
156+ float dvy; // Y speed range
157+ float dvcirc; // Circular speed range
158+ float dvt; // t speed (aging speed) range
159+ float dvphi; // Rotation speed range
160+ float s; // size (side of the square)
161+ float ds; // size (side of the square) range
162+ float snew; // Size when born (reduced to s while new)
163+ float dsnew; // Size when born (reduced to s while new) range
164+ float g; // Gravity of particles
165+ float dg; // Gravity range
166+ float gp; // Part of particles that have gravity
167+};
168+
169+class ParticleSystem
170+{
171+ public:
172+
173+ int hardLimit; // Not to be exceeded
174+ int softLimit; // If exceeded, old particles age faster
175+ int lastCount; // Living particle count to evaluate softLimit
176+ float tnew; // Particle is new if t > tnew
177+ float told; // Particle is old if t < told
178+ float gx; // Global gravity x
179+ float gy; // Global gravity y
180+ Particle *particles; // The actual particles
181+ GLuint tex; // Particle Texture
182+ bool active;
183+ float darken; // Darken background
184+ GLuint blendMode;
185+ Emitter *e; // All emitters in here
186+ GPoint *g; // All gravity point sources in here
187+ int ne; // Emitter count
188+ int ng; // GPoint count
189+
190+ GLfloat *vertices_cache;
191+ int vertex_cache_count;
192+ GLfloat *coords_cache;
193+ int coords_cache_count;
194+ GLfloat *colors_cache;
195+ int color_cache_count;
196+ GLfloat *dcolors_cache;
197+ int dcolors_cache_count;
198+};
199+
200+class WizardScreen :
201+ public PluginClassHandler <WizardScreen, CompScreen>,
202+ public WizardOptions,
203+ public ScreenInterface,
204+ public CompositeScreenInterface,
205+ public GLScreenInterface
206+{
207+ public:
208+ WizardScreen (CompScreen *screen);
209+ ~WizardScreen ();
210+
211+ CompositeScreen *cScreen;
212+ GLScreen *gScreen;
213+
214+ int mx, my; //Mouse Position from polling
215+
216+ bool active;
217+
218+ ParticleSystem *ps;
219+
220+ MousePoller pollHandle;
221+
222+ void loadGPoints (ParticleSystem *ps);
223+
224+ void loadEmitters (ParticleSystem *ps);
225+
226+ void drawParticles (ParticleSystem * ps);
227+
228+ void positionUpdate (const CompPoint &pos);
229+
230+ void preparePaint (int time);
231+
232+ void donePaint ();
233+
234+ bool
235+ glPaintOutput (const GLScreenPaintAttrib &sa,
236+ const GLMatrix &transform,
237+ const CompRegion &region,
238+ CompOutput *output,
239+ unsigned int mask);
240+
241+ bool toggle ();
242+
243+ void
244+ optionChanged (CompOption *opt,
245+ WizardOptions::Options num);
246+};
247+
248+class WizardPluginVTable :
249+ public CompPlugin::VTableForScreen <WizardScreen>
250+{
251+ public:
252+ bool init ();
253+};
254+
255+COMPIZ_PLUGIN_20090315 (wizard, WizardPluginVTable);
256
257=== added file 'plugins/wizard/include/wizard_tex.h'
258--- plugins/wizard/include/wizard_tex.h 1970-01-01 00:00:00 +0000
259+++ plugins/wizard/include/wizard_tex.h 2012-12-29 17:45:25 +0000
260@@ -0,0 +1,2827 @@
261+/*
262+ * Compiz wizard particle system plugin
263+ * Texture of a single particle. Generated using GIMP.
264+ *
265+ * wizard_tex.h
266+ *
267+ * Written by : Sebastian Kuhlen
268+ * E-mail : DiCon@tankwar.de
269+ *
270+ * Ported to Compiz 0.9.x
271+ * Copyright : (c) 2010 Scott Moreau <oreaus@gmail.com>
272+ *
273+ * This plugin and parts of its code have been inspired by the showmouse plugin
274+ * by Dennis Kasprzyk
275+ *
276+ * This program is free software; you can redistribute it and/or
277+ * modify it under the terms of the GNU General Public License
278+ * as published by the Free Software Foundation; either version 2
279+ * of the License, or (at your option) any later version.
280+ *
281+ * This program is distributed in the hope that it will be useful,
282+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
283+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
284+ * GNU General Public License for more details.
285+ *
286+ */
287+
288+static const unsigned char particleTex[65536] = {
289+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
290+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
291+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
292+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
293+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
294+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
295+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
296+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
297+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
298+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
299+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
300+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
301+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
302+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
303+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
304+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
305+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
306+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
307+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
308+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
309+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
310+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
311+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
312+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
313+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
314+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
315+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
316+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
317+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
318+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
319+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
320+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
321+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
322+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
323+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377"
324+ "\377\1\377\377\377\1\377\377\377\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
325+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377"
326+ "\377\1\377\377\377\1\377\377\377\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
327+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
328+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
329+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
330+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
331+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
332+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
333+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
334+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
335+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
336+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
337+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
338+ "\0\0\0\0\0\0\0\0\0\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377"
339+ "\1\377\377\377\1\377\377\377\1\377\377\377\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
340+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1\377\377"
341+ "\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377"
342+ "\1\377\377\377\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
343+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
344+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
345+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
346+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
347+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
348+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
349+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
350+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
351+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
352+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
353+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1\377\377\377\1\377\377\377"
354+ "\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1"
355+ "\377\377\377\1\377\377\377\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
356+ "\0\0\0\0\0\0\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377"
357+ "\377\377\2\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377"
358+ "\377\1\377\377\377\1\377\377\377\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
359+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
360+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
361+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
362+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
363+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
364+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
365+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
366+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
367+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
368+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
369+ "\0\0\0\0\0\0\0\0\0\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377"
370+ "\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\2"
371+ "\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\0\0\0\0\0\0\0\0"
372+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1\377\377\377\1\377\377\377"
373+ "\1\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2"
374+ "\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377"
375+ "\377\377\1\377\377\377\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
376+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
377+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
378+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
379+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
380+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
381+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
382+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
383+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
384+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
385+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1\377"
386+ "\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377"
387+ "\377\1\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377"
388+ "\1\377\377\377\1\377\377\377\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377"
389+ "\1\377\377\377\1\377\377\377\1\377\377\377\2\377\377\377\2\377\377\377\2"
390+ "\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377"
391+ "\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377"
392+ "\377\1\377\377\377\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
393+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
394+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
395+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
396+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
397+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
398+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
399+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
400+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
401+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
402+ "\0\0\0\0\0\0\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377"
403+ "\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\2\377\377"
404+ "\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377"
405+ "\1\377\377\377\1\377\377\377\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377"
406+ "\1\377\377\377\1\377\377\377\2\377\377\377\2\377\377\377\3\377\377\377\3"
407+ "\377\377\377\3\377\377\377\3\377\377\377\2\377\377\377\2\377\377\377\2\377"
408+ "\377\377\2\377\377\377\2\377\377\377\1\377\377\377\1\377\377\377\1\377\377"
409+ "\377\1\377\377\377\1\377\377\377\1\377\377\377\1\0\0\0\0\0\0\0\0\0\0\0\0"
410+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
411+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
412+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
413+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
414+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
415+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
416+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
417+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
418+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
419+ "\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1\377\377\377\1\377\377\377\1\377\377"
420+ "\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\2\377\377\377"
421+ "\2\377\377\377\2\377\377\377\2\377\377\377\3\377\377\377\3\377\377\377\2"
422+ "\377\377\377\2\377\377\377\1\377\377\377\1\377\377\377\1\0\0\0\0\0\0\0\0"
423+ "\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\2\377\377\377\3\377"
424+ "\377\377\3\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\3\377\377"
425+ "\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377"
426+ "\2\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1"
427+ "\377\377\377\1\377\377\377\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
428+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
429+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
430+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
431+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
432+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
433+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
434+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
435+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377"
436+ "\1\0\0\0\0\0\0\0\0\377\377\377\1\377\377\377\1\0\0\0\0\377\377\377\1\377"
437+ "\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377"
438+ "\377\1\377\377\377\1\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377"
439+ "\2\377\377\377\2\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\2"
440+ "\377\377\377\2\377\377\377\1\377\377\377\1\377\377\377\1\0\0\0\0\0\0\0\0"
441+ "\377\377\377\1\377\377\377\1\377\377\377\2\377\377\377\2\377\377\377\3\377"
442+ "\377\377\4\377\377\377\4\377\377\377\4\377\377\377\3\377\377\377\3\377\377"
443+ "\377\3\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377"
444+ "\2\377\377\377\2\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1"
445+ "\377\377\377\1\377\377\377\1\377\377\377\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
446+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
447+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
448+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
449+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
450+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
451+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
452+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
453+ "\0\0\0\0\0\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377"
454+ "\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377"
455+ "\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1"
456+ "\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377"
457+ "\377\377\1\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377"
458+ "\377\3\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377"
459+ "\2\377\377\377\2\377\377\377\1\377\377\377\1\0\0\0\0\0\0\0\0\377\377\377"
460+ "\1\377\377\377\2\377\377\377\2\377\377\377\3\377\377\377\4\377\377\377\4"
461+ "\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377\3\377\377\377\3\377"
462+ "\377\377\3\377\377\377\3\377\377\377\2\377\377\377\2\377\377\377\2\377\377"
463+ "\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\1\377\377\377"
464+ "\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\0\0\0\0\0\0\0"
465+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
466+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
467+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
468+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
469+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
470+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
471+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377"
472+ "\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377"
473+ "\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1"
474+ "\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377"
475+ "\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377"
476+ "\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377"
477+ "\3\377\377\377\3\377\377\377\3\377\377\377\4\377\377\377\4\377\377\377\3"
478+ "\377\377\377\2\377\377\377\2\377\377\377\1\377\377\377\1\377\377\377\1\0"
479+ "\0\0\0\377\377\377\1\377\377\377\2\377\377\377\2\377\377\377\3\377\377\377"
480+ "\4\377\377\377\5\377\377\377\5\377\377\377\4\377\377\377\4\377\377\377\4"
481+ "\377\377\377\4\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\3\377"
482+ "\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377"
483+ "\377\2\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377"
484+ "\1\377\377\377\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
485+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
486+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
487+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
488+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
489+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
490+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
491+ "\0\0\0\0\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377"
492+ "\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377"
493+ "\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1"
494+ "\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377"
495+ "\377\377\1\377\377\377\1\377\377\377\2\377\377\377\2\377\377\377\2\377\377"
496+ "\377\3\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\4\377\377\377"
497+ "\4\377\377\377\4\377\377\377\3\377\377\377\3\377\377\377\2\377\377\377\1"
498+ "\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\2\377"
499+ "\377\377\3\377\377\377\4\377\377\377\5\377\377\377\5\377\377\377\5\377\377"
500+ "\377\5\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377\3\377\377\377"
501+ "\3\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\3"
502+ "\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377"
503+ "\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\0\0\0"
504+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
505+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
506+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
507+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
508+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
509+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
510+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1\377\377\377\1\377"
511+ "\377\377\1\377\377\377\1\377\377\377\2\377\377\377\2\377\377\377\2\377\377"
512+ "\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\1\377\377\377"
513+ "\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1"
514+ "\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\2\377"
515+ "\377\377\2\377\377\377\2\377\377\377\2\377\377\377\3\377\377\377\3\377\377"
516+ "\377\3\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377\5\377\377\377"
517+ "\4\377\377\377\3\377\377\377\2\377\377\377\1\377\377\377\1\377\377\377\1"
518+ "\377\377\377\1\377\377\377\2\377\377\377\3\377\377\377\4\377\377\377\4\377"
519+ "\377\377\6\377\377\377\6\377\377\377\6\377\377\377\5\377\377\377\5\377\377"
520+ "\377\5\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377"
521+ "\3\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\2"
522+ "\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\1\377"
523+ "\377\377\1\377\377\377\1\377\377\377\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
524+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
525+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
526+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
527+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
528+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
529+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
530+ "\0\0\0\0\0\0\0\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\2\377"
531+ "\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377"
532+ "\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\1\377\377\377"
533+ "\2\377\377\377\2\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\2"
534+ "\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377"
535+ "\377\377\3\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\4\377\377"
536+ "\377\4\377\377\377\5\377\377\377\5\377\377\377\4\377\377\377\4\377\377\377"
537+ "\2\377\377\377\2\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\2"
538+ "\377\377\377\3\377\377\377\4\377\377\377\5\377\377\377\7\377\377\377\6\377"
539+ "\377\377\6\377\377\377\6\377\377\377\5\377\377\377\5\377\377\377\5\377\377"
540+ "\377\4\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377\3\377\377\377"
541+ "\3\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\2\377\377\377\2"
542+ "\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\1\377\377\377\1\377"
543+ "\377\377\1\377\377\377\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
544+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
545+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
546+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
547+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
548+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
549+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1\377"
550+ "\377\377\1\377\377\377\1\377\377\377\1\377\377\377\2\377\377\377\2\377\377"
551+ "\377\3\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377"
552+ "\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2"
553+ "\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377"
554+ "\377\377\2\377\377\377\2\377\377\377\2\377\377\377\3\377\377\377\3\377\377"
555+ "\377\3\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377\5\377\377\377"
556+ "\5\377\377\377\6\377\377\377\5\377\377\377\4\377\377\377\3\377\377\377\2"
557+ "\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\2\377\377\377\3\377"
558+ "\377\377\5\377\377\377\6\377\377\377\7\377\377\377\7\377\377\377\7\377\377"
559+ "\377\6\377\377\377\6\377\377\377\5\377\377\377\5\377\377\377\5\377\377\377"
560+ "\4\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377\3"
561+ "\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\2\377\377\377\2\377"
562+ "\377\377\2\377\377\377\2\377\377\377\2\377\377\377\1\377\377\377\1\0\0\0"
563+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
564+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
565+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
566+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
567+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
568+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
569+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1\377\377\377\1\377\377\377"
570+ "\1\377\377\377\2\377\377\377\2\377\377\377\3\377\377\377\3\377\377\377\4"
571+ "\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\3\377"
572+ "\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377"
573+ "\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377"
574+ "\2\377\377\377\2\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\4"
575+ "\377\377\377\4\377\377\377\5\377\377\377\5\377\377\377\6\377\377\377\6\377"
576+ "\377\377\5\377\377\377\4\377\377\377\3\377\377\377\2\377\377\377\1\377\377"
577+ "\377\1\377\377\377\2\377\377\377\3\377\377\377\4\377\377\377\5\377\377\377"
578+ "\7\377\377\377\10\377\377\377\7\377\377\377\7\377\377\377\7\377\377\377\6"
579+ "\377\377\377\6\377\377\377\5\377\377\377\5\377\377\377\5\377\377\377\5\377"
580+ "\377\377\4\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377\4\377\377"
581+ "\377\3\377\377\377\3\377\377\377\3\377\377\377\2\377\377\377\2\377\377\377"
582+ "\2\377\377\377\2\377\377\377\1\377\377\377\1\377\377\377\1\0\0\0\0\0\0\0"
583+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
584+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
585+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
586+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
587+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
588+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1"
589+ "\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377"
590+ "\377\377\1\377\377\377\2\377\377\377\2\377\377\377\3\377\377\377\3\377\377"
591+ "\377\4\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377"
592+ "\3\377\377\377\3\377\377\377\3\377\377\377\2\377\377\377\2\377\377\377\2"
593+ "\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377"
594+ "\377\377\3\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\4\377\377"
595+ "\377\4\377\377\377\5\377\377\377\5\377\377\377\6\377\377\377\6\377\377\377"
596+ "\7\377\377\377\6\377\377\377\4\377\377\377\3\377\377\377\2\377\377\377\1"
597+ "\377\377\377\1\377\377\377\2\377\377\377\3\377\377\377\4\377\377\377\6\377"
598+ "\377\377\10\377\377\377\10\377\377\377\10\377\377\377\10\377\377\377\7\377"
599+ "\377\377\7\377\377\377\6\377\377\377\6\377\377\377\5\377\377\377\5\377\377"
600+ "\377\5\377\377\377\5\377\377\377\5\377\377\377\4\377\377\377\4\377\377\377"
601+ "\4\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\3"
602+ "\377\377\377\2\377\377\377\1\377\377\377\1\377\377\377\1\0\0\0\0\0\0\0\0"
603+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
604+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
605+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
606+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
607+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
608+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1\377\377\377"
609+ "\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1"
610+ "\377\377\377\1\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\3\377"
611+ "\377\377\3\377\377\377\4\377\377\377\5\377\377\377\5\377\377\377\4\377\377"
612+ "\377\4\377\377\377\4\377\377\377\4\377\377\377\3\377\377\377\3\377\377\377"
613+ "\3\377\377\377\3\377\377\377\2\377\377\377\2\377\377\377\3\377\377\377\2"
614+ "\377\377\377\2\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\3\377"
615+ "\377\377\4\377\377\377\4\377\377\377\5\377\377\377\6\377\377\377\6\377\377"
616+ "\377\7\377\377\377\7\377\377\377\7\377\377\377\5\377\377\377\4\377\377\377"
617+ "\3\377\377\377\2\377\377\377\1\377\377\377\2\377\377\377\4\377\377\377\5"
618+ "\377\377\377\7\377\377\377\10\377\377\377\11\377\377\377\11\377\377\377\10"
619+ "\377\377\377\10\377\377\377\7\377\377\377\7\377\377\377\6\377\377\377\6\377"
620+ "\377\377\6\377\377\377\6\377\377\377\5\377\377\377\5\377\377\377\5\377\377"
621+ "\377\4\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377\3\377\377\377"
622+ "\3\377\377\377\3\377\377\377\2\377\377\377\2\377\377\377\1\377\377\377\1"
623+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
624+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
625+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
626+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
627+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
628+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1\377\377\377"
629+ "\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1"
630+ "\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\2\377\377\377\2\377"
631+ "\377\377\2\377\377\377\3\377\377\377\4\377\377\377\4\377\377\377\5\377\377"
632+ "\377\6\377\377\377\5\377\377\377\5\377\377\377\4\377\377\377\4\377\377\377"
633+ "\4\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\3"
634+ "\377\377\377\3\377\377\377\2\377\377\377\2\377\377\377\3\377\377\377\3\377"
635+ "\377\377\3\377\377\377\4\377\377\377\4\377\377\377\5\377\377\377\5\377\377"
636+ "\377\6\377\377\377\6\377\377\377\7\377\377\377\10\377\377\377\7\377\377\377"
637+ "\5\377\377\377\4\377\377\377\3\377\377\377\2\377\377\377\1\377\377\377\2"
638+ "\377\377\377\4\377\377\377\5\377\377\377\7\377\377\377\11\377\377\377\12"
639+ "\377\377\377\11\377\377\377\11\377\377\377\10\377\377\377\7\377\377\377\7"
640+ "\377\377\377\7\377\377\377\7\377\377\377\6\377\377\377\6\377\377\377\6\377"
641+ "\377\377\5\377\377\377\5\377\377\377\5\377\377\377\4\377\377\377\4\377\377"
642+ "\377\4\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\2\377\377\377"
643+ "\1\377\377\377\1\377\377\377\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
644+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
645+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
646+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
647+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
648+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377"
649+ "\377\377\1\377\377\377\1\377\377\377\1\377\377\377\2\377\377\377\2\377\377"
650+ "\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377"
651+ "\2\377\377\377\2\377\377\377\2\377\377\377\3\377\377\377\3\377\377\377\4"
652+ "\377\377\377\4\377\377\377\5\377\377\377\6\377\377\377\6\377\377\377\6\377"
653+ "\377\377\5\377\377\377\5\377\377\377\5\377\377\377\4\377\377\377\3\377\377"
654+ "\377\3\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377"
655+ "\3\377\377\377\3\377\377\377\3\377\377\377\4\377\377\377\4\377\377\377\4"
656+ "\377\377\377\5\377\377\377\5\377\377\377\6\377\377\377\7\377\377\377\10\377"
657+ "\377\377\10\377\377\377\7\377\377\377\6\377\377\377\5\377\377\377\3\377\377"
658+ "\377\2\377\377\377\1\377\377\377\3\377\377\377\5\377\377\377\6\377\377\377"
659+ "\10\377\377\377\13\377\377\377\12\377\377\377\12\377\377\377\11\377\377\377"
660+ "\11\377\377\377\10\377\377\377\10\377\377\377\7\377\377\377\7\377\377\377"
661+ "\6\377\377\377\6\377\377\377\6\377\377\377\6\377\377\377\5\377\377\377\5"
662+ "\377\377\377\5\377\377\377\4\377\377\377\4\377\377\377\3\377\377\377\3\377"
663+ "\377\377\2\377\377\377\2\377\377\377\1\377\377\377\1\0\0\0\0\0\0\0\0\0\0"
664+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377"
665+ "\1\377\377\377\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
666+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
667+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
668+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
669+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1\377\377\377\1\377\377\377"
670+ "\1\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2"
671+ "\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377"
672+ "\377\377\2\377\377\377\3\377\377\377\3\377\377\377\4\377\377\377\4\377\377"
673+ "\377\5\377\377\377\6\377\377\377\7\377\377\377\6\377\377\377\6\377\377\377"
674+ "\5\377\377\377\5\377\377\377\5\377\377\377\4\377\377\377\4\377\377\377\3"
675+ "\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\3\377"
676+ "\377\377\3\377\377\377\4\377\377\377\4\377\377\377\5\377\377\377\5\377\377"
677+ "\377\6\377\377\377\6\377\377\377\7\377\377\377\10\377\377\377\11\377\377"
678+ "\377\10\377\377\377\7\377\377\377\5\377\377\377\3\377\377\377\2\377\377\377"
679+ "\2\377\377\377\3\377\377\377\5\377\377\377\7\377\377\377\11\377\377\377\14"
680+ "\377\377\377\13\377\377\377\12\377\377\377\12\377\377\377\11\377\377\377"
681+ "\10\377\377\377\10\377\377\377\10\377\377\377\7\377\377\377\7\377\377\377"
682+ "\7\377\377\377\6\377\377\377\6\377\377\377\6\377\377\377\5\377\377\377\5"
683+ "\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377\3\377\377\377\2\377"
684+ "\377\377\2\377\377\377\1\377\377\377\1\377\377\377\1\0\0\0\0\0\0\0\0\0\0"
685+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1\377\377\377\1\377\377\377\1\377"
686+ "\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\0\0\0\0\0\0\0\0\0\0"
687+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
688+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
689+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
690+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1\377\377"
691+ "\377\1\377\377\377\2\377\377\377\2\377\377\377\3\377\377\377\3\377\377\377"
692+ "\3\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\3"
693+ "\377\377\377\2\377\377\377\2\377\377\377\3\377\377\377\3\377\377\377\4\377"
694+ "\377\377\4\377\377\377\5\377\377\377\6\377\377\377\7\377\377\377\10\377\377"
695+ "\377\7\377\377\377\6\377\377\377\6\377\377\377\5\377\377\377\5\377\377\377"
696+ "\4\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377\3\377\377\377\3"
697+ "\377\377\377\3\377\377\377\3\377\377\377\4\377\377\377\5\377\377\377\5\377"
698+ "\377\377\5\377\377\377\6\377\377\377\7\377\377\377\10\377\377\377\11\377"
699+ "\377\377\12\377\377\377\11\377\377\377\7\377\377\377\5\377\377\377\3\377"
700+ "\377\377\2\377\377\377\2\377\377\377\4\377\377\377\6\377\377\377\10\377\377"
701+ "\377\13\377\377\377\15\377\377\377\14\377\377\377\13\377\377\377\13\377\377"
702+ "\377\12\377\377\377\11\377\377\377\11\377\377\377\10\377\377\377\10\377\377"
703+ "\377\10\377\377\377\7\377\377\377\7\377\377\377\6\377\377\377\6\377\377\377"
704+ "\5\377\377\377\5\377\377\377\5\377\377\377\4\377\377\377\4\377\377\377\3"
705+ "\377\377\377\2\377\377\377\2\377\377\377\1\377\377\377\1\0\0\0\0\0\0\0\0"
706+ "\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1\377\377\377\1\377\377\377\1\377\377"
707+ "\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377"
708+ "\1\377\377\377\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
709+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
710+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
711+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
712+ "\0\0\0\0\377\377\377\1\377\377\377\1\377\377\377\2\377\377\377\2\377\377"
713+ "\377\3\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377"
714+ "\4\377\377\377\4\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\3"
715+ "\377\377\377\3\377\377\377\4\377\377\377\5\377\377\377\5\377\377\377\6\377"
716+ "\377\377\7\377\377\377\10\377\377\377\10\377\377\377\10\377\377\377\7\377"
717+ "\377\377\6\377\377\377\6\377\377\377\5\377\377\377\4\377\377\377\4\377\377"
718+ "\377\4\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377"
719+ "\4\377\377\377\5\377\377\377\5\377\377\377\6\377\377\377\6\377\377\377\7"
720+ "\377\377\377\10\377\377\377\11\377\377\377\12\377\377\377\12\377\377\377"
721+ "\7\377\377\377\5\377\377\377\3\377\377\377\2\377\377\377\2\377\377\377\4"
722+ "\377\377\377\6\377\377\377\11\377\377\377\14\377\377\377\15\377\377\377\15"
723+ "\377\377\377\14\377\377\377\13\377\377\377\12\377\377\377\12\377\377\377"
724+ "\11\377\377\377\11\377\377\377\10\377\377\377\10\377\377\377\10\377\377\377"
725+ "\7\377\377\377\7\377\377\377\6\377\377\377\6\377\377\377\5\377\377\377\5"
726+ "\377\377\377\5\377\377\377\4\377\377\377\3\377\377\377\2\377\377\377\1\377"
727+ "\377\377\1\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1\0\0\0\0\377\377\377\1\377"
728+ "\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\2\377\377"
729+ "\377\2\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377"
730+ "\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
731+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
732+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
733+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1"
734+ "\377\377\377\1\377\377\377\2\377\377\377\2\377\377\377\3\377\377\377\4\377"
735+ "\377\377\5\377\377\377\5\377\377\377\4\377\377\377\4\377\377\377\4\377\377"
736+ "\377\4\377\377\377\4\377\377\377\4\377\377\377\3\377\377\377\3\377\377\377"
737+ "\4\377\377\377\4\377\377\377\5\377\377\377\6\377\377\377\7\377\377\377\10"
738+ "\377\377\377\11\377\377\377\10\377\377\377\10\377\377\377\7\377\377\377\6"
739+ "\377\377\377\6\377\377\377\5\377\377\377\5\377\377\377\5\377\377\377\4\377"
740+ "\377\377\4\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377\5\377\377"
741+ "\377\5\377\377\377\6\377\377\377\7\377\377\377\10\377\377\377\11\377\377"
742+ "\377\12\377\377\377\13\377\377\377\13\377\377\377\10\377\377\377\6\377\377"
743+ "\377\4\377\377\377\2\377\377\377\3\377\377\377\5\377\377\377\7\377\377\377"
744+ "\12\377\377\377\15\377\377\377\16\377\377\377\15\377\377\377\14\377\377\377"
745+ "\14\377\377\377\13\377\377\377\12\377\377\377\12\377\377\377\11\377\377\377"
746+ "\11\377\377\377\10\377\377\377\10\377\377\377\7\377\377\377\7\377\377\377"
747+ "\7\377\377\377\6\377\377\377\6\377\377\377\5\377\377\377\4\377\377\377\3"
748+ "\377\377\377\2\377\377\377\2\377\377\377\1\377\377\377\1\0\0\0\0\0\0\0\0"
749+ "\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377"
750+ "\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377"
751+ "\377\2\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377"
752+ "\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
753+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
754+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
755+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1\377\377"
756+ "\377\1\377\377\377\2\377\377\377\2\377\377\377\3\377\377\377\4\377\377\377"
757+ "\5\377\377\377\6\377\377\377\6\377\377\377\5\377\377\377\5\377\377\377\5"
758+ "\377\377\377\5\377\377\377\4\377\377\377\4\377\377\377\3\377\377\377\4\377"
759+ "\377\377\4\377\377\377\5\377\377\377\6\377\377\377\7\377\377\377\10\377\377"
760+ "\377\12\377\377\377\12\377\377\377\11\377\377\377\10\377\377\377\7\377\377"
761+ "\377\6\377\377\377\6\377\377\377\5\377\377\377\5\377\377\377\5\377\377\377"
762+ "\4\377\377\377\5\377\377\377\4\377\377\377\5\377\377\377\5\377\377\377\5"
763+ "\377\377\377\6\377\377\377\7\377\377\377\10\377\377\377\11\377\377\377\12"
764+ "\377\377\377\14\377\377\377\13\377\377\377\10\377\377\377\6\377\377\377\4"
765+ "\377\377\377\2\377\377\377\3\377\377\377\5\377\377\377\10\377\377\377\13"
766+ "\377\377\377\17\377\377\377\17\377\377\377\16\377\377\377\15\377\377\377"
767+ "\14\377\377\377\13\377\377\377\12\377\377\377\12\377\377\377\12\377\377\377"
768+ "\11\377\377\377\11\377\377\377\11\377\377\377\10\377\377\377\10\377\377\377"
769+ "\7\377\377\377\6\377\377\377\6\377\377\377\5\377\377\377\4\377\377\377\3"
770+ "\377\377\377\2\377\377\377\1\377\377\377\1\0\0\0\0\0\0\0\0\0\0\0\0\377\377"
771+ "\377\1\377\377\377\1\377\377\377\1\377\377\377\2\377\377\377\2\377\377\377"
772+ "\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2"
773+ "\377\377\377\2\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377"
774+ "\377\377\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
775+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
776+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
777+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1\377\377"
778+ "\377\1\377\377\377\2\377\377\377\2\377\377\377\3\377\377\377\4\377\377\377"
779+ "\4\377\377\377\6\377\377\377\7\377\377\377\6\377\377\377\6\377\377\377\6"
780+ "\377\377\377\6\377\377\377\5\377\377\377\5\377\377\377\5\377\377\377\4\377"
781+ "\377\377\4\377\377\377\5\377\377\377\6\377\377\377\7\377\377\377\10\377\377"
782+ "\377\11\377\377\377\13\377\377\377\13\377\377\377\12\377\377\377\11\377\377"
783+ "\377\10\377\377\377\7\377\377\377\6\377\377\377\6\377\377\377\5\377\377\377"
784+ "\5\377\377\377\5\377\377\377\4\377\377\377\5\377\377\377\6\377\377\377\6"
785+ "\377\377\377\6\377\377\377\7\377\377\377\11\377\377\377\11\377\377\377\13"
786+ "\377\377\377\14\377\377\377\14\377\377\377\12\377\377\377\7\377\377\377\5"
787+ "\377\377\377\2\377\377\377\3\377\377\377\6\377\377\377\11\377\377\377\15"
788+ "\377\377\377\21\377\377\377\20\377\377\377\17\377\377\377\16\377\377\377"
789+ "\15\377\377\377\14\377\377\377\14\377\377\377\13\377\377\377\13\377\377\377"
790+ "\12\377\377\377\12\377\377\377\11\377\377\377\10\377\377\377\10\377\377\377"
791+ "\7\377\377\377\6\377\377\377\6\377\377\377\5\377\377\377\4\377\377\377\3"
792+ "\377\377\377\2\377\377\377\1\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1\377\377"
793+ "\377\1\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\3\377\377\377"
794+ "\3\377\377\377\3\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2"
795+ "\377\377\377\2\377\377\377\2\377\377\377\1\377\377\377\1\377\377\377\1\377"
796+ "\377\377\1\377\377\377\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
797+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
798+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
799+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1\377"
800+ "\377\377\1\377\377\377\1\377\377\377\2\377\377\377\3\377\377\377\3\377\377"
801+ "\377\4\377\377\377\5\377\377\377\6\377\377\377\10\377\377\377\10\377\377"
802+ "\377\7\377\377\377\7\377\377\377\6\377\377\377\6\377\377\377\6\377\377\377"
803+ "\5\377\377\377\4\377\377\377\5\377\377\377\6\377\377\377\7\377\377\377\10"
804+ "\377\377\377\11\377\377\377\13\377\377\377\14\377\377\377\13\377\377\377"
805+ "\12\377\377\377\11\377\377\377\10\377\377\377\7\377\377\377\6\377\377\377"
806+ "\5\377\377\377\6\377\377\377\5\377\377\377\5\377\377\377\5\377\377\377\6"
807+ "\377\377\377\7\377\377\377\7\377\377\377\7\377\377\377\11\377\377\377\12"
808+ "\377\377\377\13\377\377\377\15\377\377\377\16\377\377\377\12\377\377\377"
809+ "\7\377\377\377\5\377\377\377\2\377\377\377\4\377\377\377\7\377\377\377\13"
810+ "\377\377\377\16\377\377\377\22\377\377\377\21\377\377\377\17\377\377\377"
811+ "\16\377\377\377\15\377\377\377\15\377\377\377\14\377\377\377\13\377\377\377"
812+ "\13\377\377\377\12\377\377\377\12\377\377\377\11\377\377\377\10\377\377\377"
813+ "\10\377\377\377\10\377\377\377\7\377\377\377\6\377\377\377\4\377\377\377"
814+ "\3\377\377\377\2\377\377\377\2\377\377\377\1\377\377\377\1\0\0\0\0\377\377"
815+ "\377\1\377\377\377\1\377\377\377\2\377\377\377\2\377\377\377\3\377\377\377"
816+ "\3\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\3"
817+ "\377\377\377\3\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377"
818+ "\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\0\0\0\0\0\0\0\0\0\0"
819+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
820+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
821+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
822+ "\0\0\0\0\0\0\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\2\377"
823+ "\377\377\3\377\377\377\3\377\377\377\4\377\377\377\5\377\377\377\6\377\377"
824+ "\377\10\377\377\377\11\377\377\377\10\377\377\377\10\377\377\377\10\377\377"
825+ "\377\7\377\377\377\7\377\377\377\6\377\377\377\5\377\377\377\5\377\377\377"
826+ "\6\377\377\377\7\377\377\377\10\377\377\377\11\377\377\377\13\377\377\377"
827+ "\15\377\377\377\14\377\377\377\13\377\377\377\12\377\377\377\11\377\377\377"
828+ "\10\377\377\377\7\377\377\377\6\377\377\377\6\377\377\377\6\377\377\377\5"
829+ "\377\377\377\5\377\377\377\6\377\377\377\7\377\377\377\10\377\377\377\10"
830+ "\377\377\377\11\377\377\377\13\377\377\377\14\377\377\377\16\377\377\377"
831+ "\17\377\377\377\13\377\377\377\10\377\377\377\5\377\377\377\3\377\377\377"
832+ "\4\377\377\377\10\377\377\377\14\377\377\377\20\377\377\377\22\377\377\377"
833+ "\22\377\377\377\20\377\377\377\17\377\377\377\16\377\377\377\15\377\377\377"
834+ "\14\377\377\377\14\377\377\377\13\377\377\377\13\377\377\377\12\377\377\377"
835+ "\12\377\377\377\11\377\377\377\11\377\377\377\10\377\377\377\7\377\377\377"
836+ "\5\377\377\377\4\377\377\377\3\377\377\377\2\377\377\377\1\377\377\377\1"
837+ "\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\2\377\377\377\3\377"
838+ "\377\377\3\377\377\377\3\377\377\377\4\377\377\377\4\377\377\377\4\377\377"
839+ "\377\3\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377"
840+ "\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\1\377\377\377\1"
841+ "\377\377\377\1\377\377\377\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
842+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
843+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
844+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1\377\377\377\1\377\377"
845+ "\377\1\377\377\377\1\377\377\377\1\377\377\377\2\377\377\377\2\377\377\377"
846+ "\3\377\377\377\4\377\377\377\5\377\377\377\6\377\377\377\7\377\377\377\10"
847+ "\377\377\377\12\377\377\377\12\377\377\377\11\377\377\377\11\377\377\377"
848+ "\10\377\377\377\7\377\377\377\7\377\377\377\6\377\377\377\5\377\377\377\7"
849+ "\377\377\377\10\377\377\377\11\377\377\377\12\377\377\377\14\377\377\377"
850+ "\16\377\377\377\15\377\377\377\14\377\377\377\12\377\377\377\11\377\377\377"
851+ "\10\377\377\377\7\377\377\377\7\377\377\377\6\377\377\377\6\377\377\377\5"
852+ "\377\377\377\6\377\377\377\7\377\377\377\10\377\377\377\11\377\377\377\12"
853+ "\377\377\377\13\377\377\377\15\377\377\377\17\377\377\377\20\377\377\377"
854+ "\13\377\377\377\10\377\377\377\5\377\377\377\3\377\377\377\5\377\377\377"
855+ "\11\377\377\377\15\377\377\377\22\377\377\377\24\377\377\377\22\377\377\377"
856+ "\21\377\377\377\20\377\377\377\17\377\377\377\16\377\377\377\16\377\377\377"
857+ "\15\377\377\377\15\377\377\377\14\377\377\377\13\377\377\377\12\377\377\377"
858+ "\11\377\377\377\11\377\377\377\10\377\377\377\7\377\377\377\5\377\377\377"
859+ "\3\377\377\377\3\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1"
860+ "\377\377\377\2\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\4\377"
861+ "\377\377\4\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377\4\377\377"
862+ "\377\3\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377"
863+ "\3\377\377\377\2\377\377\377\2\377\377\377\1\377\377\377\1\377\377\377\1"
864+ "\377\377\377\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
865+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
866+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
867+ "\0\0\0\0\0\0\0\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377"
868+ "\377\377\1\377\377\377\1\377\377\377\1\377\377\377\2\377\377\377\3\377\377"
869+ "\377\3\377\377\377\4\377\377\377\5\377\377\377\6\377\377\377\10\377\377\377"
870+ "\12\377\377\377\13\377\377\377\13\377\377\377\12\377\377\377\12\377\377\377"
871+ "\11\377\377\377\10\377\377\377\7\377\377\377\6\377\377\377\6\377\377\377"
872+ "\10\377\377\377\11\377\377\377\13\377\377\377\14\377\377\377\16\377\377\377"
873+ "\17\377\377\377\16\377\377\377\14\377\377\377\13\377\377\377\11\377\377\377"
874+ "\10\377\377\377\10\377\377\377\7\377\377\377\6\377\377\377\6\377\377\377"
875+ "\6\377\377\377\7\377\377\377\10\377\377\377\11\377\377\377\12\377\377\377"
876+ "\14\377\377\377\15\377\377\377\17\377\377\377\21\377\377\377\15\377\377\377"
877+ "\11\377\377\377\5\377\377\377\3\377\377\377\5\377\377\377\12\377\377\377"
878+ "\17\377\377\377\25\377\377\377\25\377\377\377\24\377\377\377\22\377\377\377"
879+ "\20\377\377\377\17\377\377\377\17\377\377\377\16\377\377\377\15\377\377\377"
880+ "\15\377\377\377\14\377\377\377\13\377\377\377\12\377\377\377\11\377\377\377"
881+ "\11\377\377\377\10\377\377\377\6\377\377\377\4\377\377\377\3\377\377\377"
882+ "\2\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\2\377\377\377\3"
883+ "\377\377\377\3\377\377\377\4\377\377\377\4\377\377\377\5\377\377\377\5\377"
884+ "\377\377\5\377\377\377\5\377\377\377\4\377\377\377\4\377\377\377\4\377\377"
885+ "\377\4\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\2\377\377\377"
886+ "\2\377\377\377\2\377\377\377\2\377\377\377\1\377\377\377\1\377\377\377\1"
887+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
888+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
889+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1\377"
890+ "\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377"
891+ "\377\1\377\377\377\1\377\377\377\1\377\377\377\2\377\377\377\2\377\377\377"
892+ "\3\377\377\377\4\377\377\377\5\377\377\377\6\377\377\377\7\377\377\377\11"
893+ "\377\377\377\13\377\377\377\14\377\377\377\14\377\377\377\13\377\377\377"
894+ "\13\377\377\377\12\377\377\377\11\377\377\377\10\377\377\377\7\377\377\377"
895+ "\7\377\377\377\10\377\377\377\13\377\377\377\14\377\377\377\16\377\377\377"
896+ "\20\377\377\377\20\377\377\377\16\377\377\377\14\377\377\377\13\377\377\377"
897+ "\10\377\377\377\10\377\377\377\10\377\377\377\7\377\377\377\7\377\377\377"
898+ "\7\377\377\377\10\377\377\377\10\377\377\377\11\377\377\377\12\377\377\377"
899+ "\14\377\377\377\16\377\377\377\20\377\377\377\22\377\377\377\16\377\377\377"
900+ "\12\377\377\377\5\377\377\377\3\377\377\377\6\377\377\377\13\377\377\377"
901+ "\20\377\377\377\27\377\377\377\26\377\377\377\24\377\377\377\22\377\377\377"
902+ "\21\377\377\377\20\377\377\377\20\377\377\377\17\377\377\377\16\377\377\377"
903+ "\15\377\377\377\14\377\377\377\14\377\377\377\13\377\377\377\12\377\377\377"
904+ "\11\377\377\377\7\377\377\377\5\377\377\377\4\377\377\377\2\377\377\377\1"
905+ "\377\377\377\1\377\377\377\1\377\377\377\2\377\377\377\3\377\377\377\3\377"
906+ "\377\377\4\377\377\377\5\377\377\377\6\377\377\377\5\377\377\377\5\377\377"
907+ "\377\5\377\377\377\5\377\377\377\5\377\377\377\4\377\377\377\4\377\377\377"
908+ "\4\377\377\377\4\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\2"
909+ "\377\377\377\2\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377"
910+ "\377\377\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
911+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
912+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1\377\377"
913+ "\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377"
914+ "\1\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2"
915+ "\377\377\377\2\377\377\377\3\377\377\377\4\377\377\377\5\377\377\377\7\377"
916+ "\377\377\10\377\377\377\11\377\377\377\14\377\377\377\16\377\377\377\16\377"
917+ "\377\377\15\377\377\377\14\377\377\377\13\377\377\377\12\377\377\377\10\377"
918+ "\377\377\7\377\377\377\10\377\377\377\12\377\377\377\14\377\377\377\15\377"
919+ "\377\377\20\377\377\377\22\377\377\377\20\377\377\377\17\377\377\377\14\377"
920+ "\377\377\12\377\377\377\11\377\377\377\10\377\377\377\10\377\377\377\10\377"
921+ "\377\377\7\377\377\377\10\377\377\377\11\377\377\377\12\377\377\377\13\377"
922+ "\377\377\14\377\377\377\17\377\377\377\21\377\377\377\23\377\377\377\17\377"
923+ "\377\377\12\377\377\377\6\377\377\377\3\377\377\377\7\377\377\377\15\377"
924+ "\377\377\22\377\377\377\30\377\377\377\27\377\377\377\25\377\377\377\23\377"
925+ "\377\377\22\377\377\377\21\377\377\377\20\377\377\377\20\377\377\377\17\377"
926+ "\377\377\16\377\377\377\15\377\377\377\14\377\377\377\13\377\377\377\12\377"
927+ "\377\377\10\377\377\377\6\377\377\377\4\377\377\377\3\377\377\377\2\377\377"
928+ "\377\1\377\377\377\1\377\377\377\2\377\377\377\3\377\377\377\4\377\377\377"
929+ "\5\377\377\377\6\377\377\377\6\377\377\377\6\377\377\377\6\377\377\377\6"
930+ "\377\377\377\6\377\377\377\5\377\377\377\5\377\377\377\5\377\377\377\5\377"
931+ "\377\377\4\377\377\377\4\377\377\377\4\377\377\377\3\377\377\377\2\377\377"
932+ "\377\2\377\377\377\2\377\377\377\2\377\377\377\1\377\377\377\1\377\377\377"
933+ "\1\377\377\377\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
934+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
935+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1\377"
936+ "\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\2\377\377"
937+ "\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377"
938+ "\2\377\377\377\2\377\377\377\3\377\377\377\4\377\377\377\5\377\377\377\6"
939+ "\377\377\377\7\377\377\377\11\377\377\377\13\377\377\377\15\377\377\377\17"
940+ "\377\377\377\17\377\377\377\16\377\377\377\15\377\377\377\14\377\377\377"
941+ "\12\377\377\377\11\377\377\377\10\377\377\377\11\377\377\377\13\377\377\377"
942+ "\15\377\377\377\20\377\377\377\22\377\377\377\23\377\377\377\20\377\377\377"
943+ "\16\377\377\377\14\377\377\377\12\377\377\377\11\377\377\377\11\377\377\377"
944+ "\10\377\377\377\10\377\377\377\10\377\377\377\11\377\377\377\12\377\377\377"
945+ "\14\377\377\377\16\377\377\377\17\377\377\377\22\377\377\377\24\377\377\377"
946+ "\20\377\377\377\12\377\377\377\7\377\377\377\4\377\377\377\10\377\377\377"
947+ "\16\377\377\377\26\377\377\377\32\377\377\377\30\377\377\377\26\377\377\377"
948+ "\24\377\377\377\22\377\377\377\22\377\377\377\21\377\377\377\20\377\377\377"
949+ "\17\377\377\377\16\377\377\377\15\377\377\377\14\377\377\377\13\377\377\377"
950+ "\12\377\377\377\7\377\377\377\5\377\377\377\3\377\377\377\2\377\377\377\1"
951+ "\377\377\377\2\377\377\377\2\377\377\377\3\377\377\377\4\377\377\377\5\377"
952+ "\377\377\6\377\377\377\7\377\377\377\7\377\377\377\7\377\377\377\6\377\377"
953+ "\377\6\377\377\377\6\377\377\377\6\377\377\377\5\377\377\377\5\377\377\377"
954+ "\5\377\377\377\4\377\377\377\4\377\377\377\3\377\377\377\3\377\377\377\3"
955+ "\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\1\377\377\377\1\377"
956+ "\377\377\1\377\377\377\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
957+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
958+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1\377"
959+ "\377\377\1\377\377\377\1\377\377\377\1\377\377\377\2\377\377\377\2\377\377"
960+ "\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377"
961+ "\3\377\377\377\2\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\4"
962+ "\377\377\377\5\377\377\377\6\377\377\377\10\377\377\377\12\377\377\377\14"
963+ "\377\377\377\16\377\377\377\21\377\377\377\20\377\377\377\20\377\377\377"
964+ "\16\377\377\377\15\377\377\377\13\377\377\377\12\377\377\377\11\377\377\377"
965+ "\12\377\377\377\15\377\377\377\17\377\377\377\22\377\377\377\25\377\377\377"
966+ "\23\377\377\377\21\377\377\377\16\377\377\377\14\377\377\377\12\377\377\377"
967+ "\12\377\377\377\11\377\377\377\10\377\377\377\10\377\377\377\11\377\377\377"
968+ "\12\377\377\377\14\377\377\377\16\377\377\377\20\377\377\377\23\377\377\377"
969+ "\26\377\377\377\21\377\377\377\13\377\377\377\7\377\377\377\4\377\377\377"
970+ "\12\377\377\377\20\377\377\377\30\377\377\377\33\377\377\377\31\377\377\377"
971+ "\27\377\377\377\25\377\377\377\24\377\377\377\23\377\377\377\22\377\377\377"
972+ "\21\377\377\377\20\377\377\377\17\377\377\377\16\377\377\377\15\377\377\377"
973+ "\14\377\377\377\11\377\377\377\7\377\377\377\4\377\377\377\3\377\377\377"
974+ "\2\377\377\377\2\377\377\377\2\377\377\377\4\377\377\377\5\377\377\377\5"
975+ "\377\377\377\7\377\377\377\10\377\377\377\7\377\377\377\7\377\377\377\7\377"
976+ "\377\377\7\377\377\377\7\377\377\377\7\377\377\377\6\377\377\377\6\377\377"
977+ "\377\5\377\377\377\5\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377"
978+ "\3\377\377\377\3\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\1"
979+ "\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\0"
980+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
981+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
982+ "\0\0\0\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377"
983+ "\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2"
984+ "\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\3\377"
985+ "\377\377\3\377\377\377\3\377\377\377\3\377\377\377\4\377\377\377\6\377\377"
986+ "\377\7\377\377\377\10\377\377\377\12\377\377\377\15\377\377\377\20\377\377"
987+ "\377\23\377\377\377\22\377\377\377\21\377\377\377\17\377\377\377\15\377\377"
988+ "\377\14\377\377\377\12\377\377\377\12\377\377\377\14\377\377\377\16\377\377"
989+ "\377\21\377\377\377\24\377\377\377\26\377\377\377\23\377\377\377\20\377\377"
990+ "\377\16\377\377\377\14\377\377\377\13\377\377\377\12\377\377\377\11\377\377"
991+ "\377\11\377\377\377\12\377\377\377\13\377\377\377\14\377\377\377\16\377\377"
992+ "\377\21\377\377\377\23\377\377\377\27\377\377\377\22\377\377\377\14\377\377"
993+ "\377\7\377\377\377\5\377\377\377\13\377\377\377\22\377\377\377\34\377\377"
994+ "\377\35\377\377\377\33\377\377\377\30\377\377\377\26\377\377\377\25\377\377"
995+ "\377\24\377\377\377\23\377\377\377\22\377\377\377\21\377\377\377\17\377\377"
996+ "\377\16\377\377\377\15\377\377\377\12\377\377\377\10\377\377\377\5\377\377"
997+ "\377\3\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\4\377\377\377"
998+ "\5\377\377\377\6\377\377\377\10\377\377\377\11\377\377\377\10\377\377\377"
999+ "\10\377\377\377\10\377\377\377\10\377\377\377\7\377\377\377\7\377\377\377"
1000+ "\7\377\377\377\7\377\377\377\6\377\377\377\6\377\377\377\5\377\377\377\4"
1001+ "\377\377\377\4\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\2\377"
1002+ "\377\377\2\377\377\377\2\377\377\377\2\377\377\377\1\377\377\377\1\377\377"
1003+ "\377\1\377\377\377\1\377\377\377\1\377\377\377\1\0\0\0\0\0\0\0\0\0\0\0\0"
1004+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1005+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1\377\377\377"
1006+ "\1\377\377\377\1\377\377\377\1\377\377\377\2\377\377\377\2\377\377\377\2"
1007+ "\377\377\377\2\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\3\377"
1008+ "\377\377\3\377\377\377\3\377\377\377\4\377\377\377\3\377\377\377\4\377\377"
1009+ "\377\4\377\377\377\4\377\377\377\4\377\377\377\5\377\377\377\7\377\377\377"
1010+ "\11\377\377\377\14\377\377\377\16\377\377\377\21\377\377\377\25\377\377\377"
1011+ "\24\377\377\377\22\377\377\377\21\377\377\377\17\377\377\377\15\377\377\377"
1012+ "\13\377\377\377\13\377\377\377\16\377\377\377\20\377\377\377\23\377\377\377"
1013+ "\27\377\377\377\26\377\377\377\23\377\377\377\21\377\377\377\16\377\377\377"
1014+ "\14\377\377\377\13\377\377\377\13\377\377\377\12\377\377\377\12\377\377\377"
1015+ "\14\377\377\377\15\377\377\377\17\377\377\377\22\377\377\377\25\377\377\377"
1016+ "\30\377\377\377\24\377\377\377\15\377\377\377\7\377\377\377\5\377\377\377"
1017+ "\14\377\377\377\25\377\377\377\37\377\377\377\36\377\377\377\33\377\377\377"
1018+ "\31\377\377\377\27\377\377\377\26\377\377\377\25\377\377\377\24\377\377\377"
1019+ "\23\377\377\377\22\377\377\377\20\377\377\377\16\377\377\377\15\377\377\377"
1020+ "\11\377\377\377\6\377\377\377\4\377\377\377\2\377\377\377\2\377\377\377\3"
1021+ "\377\377\377\4\377\377\377\5\377\377\377\7\377\377\377\10\377\377\377\11"
1022+ "\377\377\377\11\377\377\377\11\377\377\377\11\377\377\377\11\377\377\377"
1023+ "\11\377\377\377\10\377\377\377\10\377\377\377\10\377\377\377\7\377\377\377"
1024+ "\6\377\377\377\5\377\377\377\5\377\377\377\4\377\377\377\4\377\377\377\4"
1025+ "\377\377\377\3\377\377\377\3\377\377\377\2\377\377\377\2\377\377\377\2\377"
1026+ "\377\377\2\377\377\377\1\377\377\377\2\377\377\377\1\377\377\377\1\377\377"
1027+ "\377\1\377\377\377\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1028+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1029+ "\0\0\0\0\0\0\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377"
1030+ "\377\377\2\377\377\377\2\377\377\377\2\377\377\377\3\377\377\377\3\377\377"
1031+ "\377\3\377\377\377\3\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377"
1032+ "\4\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377\4"
1033+ "\377\377\377\4\377\377\377\5\377\377\377\6\377\377\377\10\377\377\377\12"
1034+ "\377\377\377\14\377\377\377\17\377\377\377\22\377\377\377\26\377\377\377"
1035+ "\26\377\377\377\24\377\377\377\22\377\377\377\20\377\377\377\16\377\377\377"
1036+ "\14\377\377\377\15\377\377\377\17\377\377\377\23\377\377\377\27\377\377\377"
1037+ "\32\377\377\377\27\377\377\377\23\377\377\377\20\377\377\377\15\377\377\377"
1038+ "\15\377\377\377\13\377\377\377\12\377\377\377\12\377\377\377\14\377\377\377"
1039+ "\15\377\377\377\17\377\377\377\22\377\377\377\25\377\377\377\31\377\377\377"
1040+ "\25\377\377\377\15\377\377\377\10\377\377\377\7\377\377\377\16\377\377\377"
1041+ "\30\377\377\377\"\377\377\377\37\377\377\377\35\377\377\377\32\377\377\377"
1042+ "\31\377\377\377\30\377\377\377\26\377\377\377\25\377\377\377\23\377\377\377"
1043+ "\22\377\377\377\20\377\377\377\17\377\377\377\13\377\377\377\7\377\377\377"
1044+ "\5\377\377\377\3\377\377\377\1\377\377\377\3\377\377\377\4\377\377\377\6"
1045+ "\377\377\377\7\377\377\377\11\377\377\377\13\377\377\377\12\377\377\377\12"
1046+ "\377\377\377\12\377\377\377\11\377\377\377\11\377\377\377\11\377\377\377"
1047+ "\11\377\377\377\10\377\377\377\7\377\377\377\7\377\377\377\6\377\377\377"
1048+ "\5\377\377\377\5\377\377\377\4\377\377\377\4\377\377\377\3\377\377\377\3"
1049+ "\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377"
1050+ "\377\377\2\377\377\377\2\377\377\377\1\377\377\377\1\377\377\377\1\377\377"
1051+ "\377\1\377\377\377\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1052+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1053+ "\0\0\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\2\377\377\377"
1054+ "\2\377\377\377\2\377\377\377\2\377\377\377\3\377\377\377\3\377\377\377\3"
1055+ "\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377\5\377"
1056+ "\377\377\4\377\377\377\5\377\377\377\5\377\377\377\5\377\377\377\5\377\377"
1057+ "\377\5\377\377\377\5\377\377\377\5\377\377\377\6\377\377\377\10\377\377\377"
1058+ "\13\377\377\377\15\377\377\377\20\377\377\377\24\377\377\377\30\377\377\377"
1059+ "\30\377\377\377\26\377\377\377\24\377\377\377\21\377\377\377\16\377\377\377"
1060+ "\14\377\377\377\17\377\377\377\22\377\377\377\26\377\377\377\31\377\377\377"
1061+ "\33\377\377\377\27\377\377\377\23\377\377\377\20\377\377\377\16\377\377\377"
1062+ "\14\377\377\377\13\377\377\377\12\377\377\377\14\377\377\377\16\377\377\377"
1063+ "\20\377\377\377\23\377\377\377\27\377\377\377\33\377\377\377\30\377\377\377"
1064+ "\17\377\377\377\10\377\377\377\10\377\377\377\20\377\377\377\33\377\377\377"
1065+ "$\377\377\377!\377\377\377\36\377\377\377\33\377\377\377\31\377\377\377\30"
1066+ "\377\377\377\27\377\377\377\26\377\377\377\24\377\377\377\22\377\377\377"
1067+ "\20\377\377\377\15\377\377\377\11\377\377\377\7\377\377\377\4\377\377\377"
1068+ "\2\377\377\377\3\377\377\377\5\377\377\377\6\377\377\377\10\377\377\377\12"
1069+ "\377\377\377\14\377\377\377\13\377\377\377\13\377\377\377\13\377\377\377"
1070+ "\13\377\377\377\12\377\377\377\12\377\377\377\12\377\377\377\11\377\377\377"
1071+ "\10\377\377\377\7\377\377\377\6\377\377\377\6\377\377\377\5\377\377\377\4"
1072+ "\377\377\377\4\377\377\377\4\377\377\377\3\377\377\377\3\377\377\377\3\377"
1073+ "\377\377\3\377\377\377\3\377\377\377\2\377\377\377\2\377\377\377\2\377\377"
1074+ "\377\2\377\377\377\2\377\377\377\2\377\377\377\1\377\377\377\1\377\377\377"
1075+ "\1\377\377\377\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1076+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1\377"
1077+ "\377\377\1\377\377\377\1\377\377\377\1\377\377\377\2\377\377\377\2\377\377"
1078+ "\377\2\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377"
1079+ "\4\377\377\377\4\377\377\377\5\377\377\377\5\377\377\377\5\377\377\377\5"
1080+ "\377\377\377\5\377\377\377\6\377\377\377\5\377\377\377\6\377\377\377\6\377"
1081+ "\377\377\5\377\377\377\6\377\377\377\5\377\377\377\7\377\377\377\11\377\377"
1082+ "\377\13\377\377\377\16\377\377\377\22\377\377\377\26\377\377\377\32\377\377"
1083+ "\377\32\377\377\377\30\377\377\377\25\377\377\377\22\377\377\377\17\377\377"
1084+ "\377\15\377\377\377\20\377\377\377\24\377\377\377\30\377\377\377\35\377\377"
1085+ "\377\33\377\377\377\27\377\377\377\23\377\377\377\17\377\377\377\15\377\377"
1086+ "\377\15\377\377\377\14\377\377\377\15\377\377\377\17\377\377\377\21\377\377"
1087+ "\377\24\377\377\377\27\377\377\377\34\377\377\377\31\377\377\377\20\377\377"
1088+ "\377\10\377\377\377\11\377\377\377\22\377\377\377\37\377\377\377%\377\377"
1089+ "\377!\377\377\377\36\377\377\377\34\377\377\377\33\377\377\377\32\377\377"
1090+ "\377\31\377\377\377\26\377\377\377\24\377\377\377\23\377\377\377\21\377\377"
1091+ "\377\14\377\377\377\10\377\377\377\5\377\377\377\2\377\377\377\3\377\377"
1092+ "\377\5\377\377\377\6\377\377\377\11\377\377\377\13\377\377\377\14\377\377"
1093+ "\377\14\377\377\377\14\377\377\377\13\377\377\377\14\377\377\377\14\377\377"
1094+ "\377\13\377\377\377\12\377\377\377\11\377\377\377\10\377\377\377\7\377\377"
1095+ "\377\7\377\377\377\6\377\377\377\6\377\377\377\5\377\377\377\5\377\377\377"
1096+ "\4\377\377\377\4\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\3"
1097+ "\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\2\377\377\377\2\377"
1098+ "\377\377\2\377\377\377\2\377\377\377\2\377\377\377\1\377\377\377\1\377\377"
1099+ "\377\1\377\377\377\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1100+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1\377\377"
1101+ "\377\1\377\377\377\1\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377"
1102+ "\2\377\377\377\3\377\377\377\3\377\377\377\4\377\377\377\4\377\377\377\4"
1103+ "\377\377\377\4\377\377\377\5\377\377\377\5\377\377\377\5\377\377\377\6\377"
1104+ "\377\377\6\377\377\377\6\377\377\377\7\377\377\377\6\377\377\377\6\377\377"
1105+ "\377\6\377\377\377\6\377\377\377\7\377\377\377\6\377\377\377\7\377\377\377"
1106+ "\11\377\377\377\14\377\377\377\17\377\377\377\23\377\377\377\27\377\377\377"
1107+ "\35\377\377\377\35\377\377\377\32\377\377\377\27\377\377\377\24\377\377\377"
1108+ "\20\377\377\377\20\377\377\377\23\377\377\377\30\377\377\377\34\377\377\377"
1109+ "\40\377\377\377\33\377\377\377\26\377\377\377\22\377\377\377\20\377\377\377"
1110+ "\16\377\377\377\15\377\377\377\15\377\377\377\17\377\377\377\21\377\377\377"
1111+ "\24\377\377\377\30\377\377\377\34\377\377\377\33\377\377\377\20\377\377\377"
1112+ "\10\377\377\377\12\377\377\377\25\377\377\377#\377\377\377&\377\377\377\""
1113+ "\377\377\377\37\377\377\377\35\377\377\377\34\377\377\377\32\377\377\377"
1114+ "\31\377\377\377\27\377\377\377\25\377\377\377\23\377\377\377\16\377\377\377"
1115+ "\11\377\377\377\6\377\377\377\3\377\377\377\3\377\377\377\5\377\377\377\10"
1116+ "\377\377\377\11\377\377\377\13\377\377\377\16\377\377\377\16\377\377\377"
1117+ "\15\377\377\377\15\377\377\377\15\377\377\377\14\377\377\377\14\377\377\377"
1118+ "\14\377\377\377\12\377\377\377\12\377\377\377\11\377\377\377\10\377\377\377"
1119+ "\7\377\377\377\6\377\377\377\6\377\377\377\5\377\377\377\4\377\377\377\4"
1120+ "\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377\4\377"
1121+ "\377\377\4\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\2\377\377"
1122+ "\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\1\377\377\377"
1123+ "\1\377\377\377\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1124+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1\377\377\377"
1125+ "\1\377\377\377\1\377\377\377\2\377\377\377\2\377\377\377\3\377\377\377\3"
1126+ "\377\377\377\3\377\377\377\3\377\377\377\4\377\377\377\4\377\377\377\4\377"
1127+ "\377\377\5\377\377\377\5\377\377\377\6\377\377\377\6\377\377\377\6\377\377"
1128+ "\377\7\377\377\377\7\377\377\377\7\377\377\377\7\377\377\377\7\377\377\377"
1129+ "\10\377\377\377\7\377\377\377\7\377\377\377\7\377\377\377\7\377\377\377\7"
1130+ "\377\377\377\11\377\377\377\15\377\377\377\20\377\377\377\24\377\377\377"
1131+ "\31\377\377\377\37\377\377\377\40\377\377\377\34\377\377\377\31\377\377\377"
1132+ "\24\377\377\377\20\377\377\377\21\377\377\377\26\377\377\377\33\377\377\377"
1133+ "!\377\377\377!\377\377\377\33\377\377\377\26\377\377\377\21\377\377\377\20"
1134+ "\377\377\377\16\377\377\377\15\377\377\377\17\377\377\377\21\377\377\377"
1135+ "\24\377\377\377\30\377\377\377\35\377\377\377\34\377\377\377\21\377\377\377"
1136+ "\11\377\377\377\13\377\377\377\27\377\377\377'\377\377\377&\377\377\377#"
1137+ "\377\377\377\37\377\377\377\36\377\377\377\34\377\377\377\33\377\377\377"
1138+ "\31\377\377\377\27\377\377\377\25\377\377\377\22\377\377\377\14\377\377\377"
1139+ "\7\377\377\377\4\377\377\377\2\377\377\377\5\377\377\377\10\377\377\377\12"
1140+ "\377\377\377\15\377\377\377\17\377\377\377\17\377\377\377\17\377\377\377"
1141+ "\16\377\377\377\16\377\377\377\16\377\377\377\15\377\377\377\14\377\377\377"
1142+ "\13\377\377\377\12\377\377\377\11\377\377\377\10\377\377\377\7\377\377\377"
1143+ "\6\377\377\377\6\377\377\377\5\377\377\377\5\377\377\377\5\377\377\377\5"
1144+ "\377\377\377\5\377\377\377\5\377\377\377\4\377\377\377\4\377\377\377\4\377"
1145+ "\377\377\4\377\377\377\4\377\377\377\3\377\377\377\3\377\377\377\3\377\377"
1146+ "\377\3\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\1\377\377\377"
1147+ "\1\377\377\377\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1148+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1\377\377\377\1\377"
1149+ "\377\377\1\377\377\377\1\377\377\377\2\377\377\377\2\377\377\377\2\377\377"
1150+ "\377\3\377\377\377\3\377\377\377\4\377\377\377\4\377\377\377\5\377\377\377"
1151+ "\5\377\377\377\5\377\377\377\6\377\377\377\6\377\377\377\6\377\377\377\6"
1152+ "\377\377\377\7\377\377\377\10\377\377\377\10\377\377\377\10\377\377\377\10"
1153+ "\377\377\377\10\377\377\377\10\377\377\377\10\377\377\377\11\377\377\377"
1154+ "\10\377\377\377\10\377\377\377\10\377\377\377\12\377\377\377\15\377\377\377"
1155+ "\21\377\377\377\25\377\377\377\33\377\377\377\"\377\377\377\"\377\377\377"
1156+ "\36\377\377\377\32\377\377\377\26\377\377\377\21\377\377\377\24\377\377\377"
1157+ "\31\377\377\377\37\377\377\377&\377\377\377\40\377\377\377\32\377\377\377"
1158+ "\24\377\377\377\21\377\377\377\17\377\377\377\16\377\377\377\17\377\377\377"
1159+ "\21\377\377\377\24\377\377\377\31\377\377\377\36\377\377\377\36\377\377\377"
1160+ "\22\377\377\377\11\377\377\377\15\377\377\377\33\377\377\377,\377\377\377"
1161+ "'\377\377\377#\377\377\377\40\377\377\377\37\377\377\377\35\377\377\377\33"
1162+ "\377\377\377\31\377\377\377\27\377\377\377\25\377\377\377\17\377\377\377"
1163+ "\12\377\377\377\6\377\377\377\2\377\377\377\5\377\377\377\10\377\377\377"
1164+ "\13\377\377\377\16\377\377\377\21\377\377\377\20\377\377\377\20\377\377\377"
1165+ "\20\377\377\377\17\377\377\377\17\377\377\377\17\377\377\377\15\377\377\377"
1166+ "\14\377\377\377\13\377\377\377\12\377\377\377\11\377\377\377\10\377\377\377"
1167+ "\7\377\377\377\6\377\377\377\6\377\377\377\6\377\377\377\6\377\377\377\5"
1168+ "\377\377\377\5\377\377\377\6\377\377\377\5\377\377\377\5\377\377\377\5\377"
1169+ "\377\377\4\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377\4\377\377"
1170+ "\377\3\377\377\377\3\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377"
1171+ "\1\377\377\377\1\377\377\377\1\377\377\377\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1172+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377"
1173+ "\377\377\1\377\377\377\1\377\377\377\1\377\377\377\2\377\377\377\2\377\377"
1174+ "\377\3\377\377\377\3\377\377\377\3\377\377\377\4\377\377\377\4\377\377\377"
1175+ "\5\377\377\377\5\377\377\377\5\377\377\377\6\377\377\377\7\377\377\377\7"
1176+ "\377\377\377\7\377\377\377\10\377\377\377\10\377\377\377\10\377\377\377\11"
1177+ "\377\377\377\11\377\377\377\11\377\377\377\12\377\377\377\11\377\377\377"
1178+ "\11\377\377\377\11\377\377\377\11\377\377\377\11\377\377\377\11\377\377\377"
1179+ "\12\377\377\377\15\377\377\377\21\377\377\377\26\377\377\377\35\377\377\377"
1180+ "%\377\377\377&\377\377\377\"\377\377\377\35\377\377\377\27\377\377\377\23"
1181+ "\377\377\377\27\377\377\377\35\377\377\377#\377\377\377&\377\377\377\37\377"
1182+ "\377\377\30\377\377\377\23\377\377\377\21\377\377\377\17\377\377\377\17\377"
1183+ "\377\377\22\377\377\377\25\377\377\377\31\377\377\377\37\377\377\377!\377"
1184+ "\377\377\23\377\377\377\11\377\377\377\17\377\377\377\37\377\377\377-\377"
1185+ "\377\377(\377\377\377$\377\377\377!\377\377\377\37\377\377\377\36\377\377"
1186+ "\377\34\377\377\377\31\377\377\377\27\377\377\377\22\377\377\377\14\377\377"
1187+ "\377\7\377\377\377\4\377\377\377\6\377\377\377\11\377\377\377\14\377\377"
1188+ "\377\20\377\377\377\22\377\377\377\22\377\377\377\22\377\377\377\21\377\377"
1189+ "\377\21\377\377\377\21\377\377\377\17\377\377\377\16\377\377\377\14\377\377"
1190+ "\377\13\377\377\377\12\377\377\377\11\377\377\377\10\377\377\377\7\377\377"
1191+ "\377\7\377\377\377\7\377\377\377\7\377\377\377\7\377\377\377\6\377\377\377"
1192+ "\6\377\377\377\6\377\377\377\6\377\377\377\6\377\377\377\6\377\377\377\5"
1193+ "\377\377\377\5\377\377\377\5\377\377\377\4\377\377\377\4\377\377\377\4\377"
1194+ "\377\377\3\377\377\377\3\377\377\377\3\377\377\377\2\377\377\377\2\377\377"
1195+ "\377\1\377\377\377\1\377\377\377\1\377\377\377\1\0\0\0\0\0\0\0\0\0\0\0\0"
1196+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377"
1197+ "\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\2\377\377\377"
1198+ "\2\377\377\377\2\377\377\377\3\377\377\377\3\377\377\377\4\377\377\377\4"
1199+ "\377\377\377\5\377\377\377\6\377\377\377\6\377\377\377\6\377\377\377\7\377"
1200+ "\377\377\7\377\377\377\7\377\377\377\10\377\377\377\11\377\377\377\11\377"
1201+ "\377\377\11\377\377\377\12\377\377\377\12\377\377\377\12\377\377\377\13\377"
1202+ "\377\377\13\377\377\377\13\377\377\377\12\377\377\377\13\377\377\377\12\377"
1203+ "\377\377\12\377\377\377\12\377\377\377\15\377\377\377\22\377\377\377\30\377"
1204+ "\377\377\37\377\377\377(\377\377\377*\377\377\377$\377\377\377\37\377\377"
1205+ "\377\30\377\377\377\25\377\377\377\32\377\377\377\40\377\377\377(\377\377"
1206+ "\377%\377\377\377\35\377\377\377\26\377\377\377\23\377\377\377\21\377\377"
1207+ "\377\17\377\377\377\22\377\377\377\25\377\377\377\32\377\377\377\40\377\377"
1208+ "\377#\377\377\377\24\377\377\377\11\377\377\377\21\377\377\377#\377\377\377"
1209+ ".\377\377\377)\377\377\377$\377\377\377\"\377\377\377\40\377\377\377\36\377"
1210+ "\377\377\34\377\377\377\31\377\377\377\26\377\377\377\16\377\377\377\10\377"
1211+ "\377\377\4\377\377\377\5\377\377\377\11\377\377\377\15\377\377\377\22\377"
1212+ "\377\377\24\377\377\377\24\377\377\377\23\377\377\377\23\377\377\377\23\377"
1213+ "\377\377\22\377\377\377\21\377\377\377\17\377\377\377\16\377\377\377\14\377"
1214+ "\377\377\13\377\377\377\11\377\377\377\10\377\377\377\7\377\377\377\10\377"
1215+ "\377\377\10\377\377\377\7\377\377\377\10\377\377\377\7\377\377\377\7\377"
1216+ "\377\377\7\377\377\377\7\377\377\377\7\377\377\377\6\377\377\377\6\377\377"
1217+ "\377\6\377\377\377\6\377\377\377\5\377\377\377\4\377\377\377\4\377\377\377"
1218+ "\4\377\377\377\4\377\377\377\3\377\377\377\3\377\377\377\2\377\377\377\2"
1219+ "\377\377\377\2\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\0"
1220+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1221+ "\0\0\0\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377"
1222+ "\2\377\377\377\2\377\377\377\2\377\377\377\3\377\377\377\3\377\377\377\4"
1223+ "\377\377\377\4\377\377\377\5\377\377\377\5\377\377\377\6\377\377\377\6\377"
1224+ "\377\377\7\377\377\377\10\377\377\377\10\377\377\377\10\377\377\377\11\377"
1225+ "\377\377\11\377\377\377\12\377\377\377\13\377\377\377\13\377\377\377\13\377"
1226+ "\377\377\14\377\377\377\14\377\377\377\14\377\377\377\14\377\377\377\14\377"
1227+ "\377\377\14\377\377\377\13\377\377\377\14\377\377\377\13\377\377\377\16\377"
1228+ "\377\377\23\377\377\377\31\377\377\377!\377\377\377,\377\377\377.\377\377"
1229+ "\377'\377\377\377\40\377\377\377\31\377\377\377\27\377\377\377\35\377\377"
1230+ "\377%\377\377\377,\377\377\377#\377\377\377\33\377\377\377\25\377\377\377"
1231+ "\22\377\377\377\20\377\377\377\22\377\377\377\25\377\377\377\32\377\377\377"
1232+ "!\377\377\377&\377\377\377\25\377\377\377\11\377\377\377\24\377\377\377)"
1233+ "\377\377\3770\377\377\377*\377\377\377&\377\377\377#\377\377\377!\377\377"
1234+ "\377\37\377\377\377\34\377\377\377\31\377\377\377\21\377\377\377\12\377\377"
1235+ "\377\5\377\377\377\5\377\377\377\11\377\377\377\16\377\377\377\23\377\377"
1236+ "\377\26\377\377\377\26\377\377\377\25\377\377\377\25\377\377\377\24\377\377"
1237+ "\377\24\377\377\377\22\377\377\377\20\377\377\377\16\377\377\377\15\377\377"
1238+ "\377\13\377\377\377\12\377\377\377\11\377\377\377\11\377\377\377\11\377\377"
1239+ "\377\11\377\377\377\11\377\377\377\11\377\377\377\11\377\377\377\10\377\377"
1240+ "\377\10\377\377\377\10\377\377\377\10\377\377\377\10\377\377\377\7\377\377"
1241+ "\377\7\377\377\377\6\377\377\377\6\377\377\377\5\377\377\377\5\377\377\377"
1242+ "\4\377\377\377\4\377\377\377\4\377\377\377\3\377\377\377\3\377\377\377\2"
1243+ "\377\377\377\2\377\377\377\2\377\377\377\1\377\377\377\1\377\377\377\1\377"
1244+ "\377\377\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1245+ "\0\0\0\0\0\0\0\0\0\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377"
1246+ "\1\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\3\377\377\377\3"
1247+ "\377\377\377\3\377\377\377\4\377\377\377\4\377\377\377\5\377\377\377\5\377"
1248+ "\377\377\6\377\377\377\7\377\377\377\10\377\377\377\10\377\377\377\11\377"
1249+ "\377\377\12\377\377\377\12\377\377\377\12\377\377\377\13\377\377\377\14\377"
1250+ "\377\377\14\377\377\377\15\377\377\377\15\377\377\377\15\377\377\377\16\377"
1251+ "\377\377\16\377\377\377\16\377\377\377\15\377\377\377\16\377\377\377\15\377"
1252+ "\377\377\14\377\377\377\16\377\377\377\24\377\377\377\33\377\377\377$\377"
1253+ "\377\377/\377\377\3771\377\377\377)\377\377\377!\377\377\377\31\377\377\377"
1254+ "\32\377\377\377!\377\377\377*\377\377\377*\377\377\377!\377\377\377\30\377"
1255+ "\377\377\24\377\377\377\22\377\377\377\22\377\377\377\26\377\377\377\33\377"
1256+ "\377\377\"\377\377\377*\377\377\377\26\377\377\377\11\377\377\377\30\377"
1257+ "\377\3770\377\377\3771\377\377\377+\377\377\377'\377\377\377%\377\377\377"
1258+ "\"\377\377\377\37\377\377\377\34\377\377\377\26\377\377\377\15\377\377\377"
1259+ "\7\377\377\377\5\377\377\377\11\377\377\377\16\377\377\377\24\377\377\377"
1260+ "\27\377\377\377\27\377\377\377\27\377\377\377\30\377\377\377\27\377\377\377"
1261+ "\26\377\377\377\23\377\377\377\21\377\377\377\17\377\377\377\16\377\377\377"
1262+ "\14\377\377\377\12\377\377\377\12\377\377\377\12\377\377\377\12\377\377\377"
1263+ "\12\377\377\377\12\377\377\377\12\377\377\377\12\377\377\377\11\377\377\377"
1264+ "\12\377\377\377\11\377\377\377\11\377\377\377\11\377\377\377\10\377\377\377"
1265+ "\7\377\377\377\7\377\377\377\6\377\377\377\6\377\377\377\5\377\377\377\5"
1266+ "\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377\3\377\377\377\3\377"
1267+ "\377\377\3\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\1\377\377"
1268+ "\377\1\377\377\377\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1269+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1\377\377\377\1\377\377"
1270+ "\377\1\377\377\377\1\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377"
1271+ "\3\377\377\377\3\377\377\377\4\377\377\377\4\377\377\377\5\377\377\377\5"
1272+ "\377\377\377\6\377\377\377\7\377\377\377\10\377\377\377\10\377\377\377\11"
1273+ "\377\377\377\12\377\377\377\13\377\377\377\13\377\377\377\14\377\377\377"
1274+ "\14\377\377\377\15\377\377\377\16\377\377\377\16\377\377\377\16\377\377\377"
1275+ "\17\377\377\377\17\377\377\377\20\377\377\377\17\377\377\377\20\377\377\377"
1276+ "\17\377\377\377\16\377\377\377\16\377\377\377\16\377\377\377\25\377\377\377"
1277+ "\34\377\377\377%\377\377\3771\377\377\3774\377\377\377+\377\377\377\"\377"
1278+ "\377\377\31\377\377\377\35\377\377\377&\377\377\3771\377\377\377)\377\377"
1279+ "\377\36\377\377\377\27\377\377\377\24\377\377\377\22\377\377\377\26\377\377"
1280+ "\377\33\377\377\377#\377\377\377-\377\377\377\30\377\377\377\11\377\377\377"
1281+ "\34\377\377\3779\377\377\3772\377\377\377,\377\377\377)\377\377\377&\377"
1282+ "\377\377#\377\377\377\37\377\377\377\33\377\377\377\20\377\377\377\11\377"
1283+ "\377\377\4\377\377\377\11\377\377\377\17\377\377\377\25\377\377\377\31\377"
1284+ "\377\377\31\377\377\377\31\377\377\377\31\377\377\377\31\377\377\377\27\377"
1285+ "\377\377\24\377\377\377\22\377\377\377\20\377\377\377\16\377\377\377\15\377"
1286+ "\377\377\14\377\377\377\13\377\377\377\14\377\377\377\14\377\377\377\13\377"
1287+ "\377\377\14\377\377\377\13\377\377\377\13\377\377\377\13\377\377\377\13\377"
1288+ "\377\377\13\377\377\377\12\377\377\377\11\377\377\377\11\377\377\377\10\377"
1289+ "\377\377\7\377\377\377\7\377\377\377\6\377\377\377\6\377\377\377\6\377\377"
1290+ "\377\5\377\377\377\5\377\377\377\4\377\377\377\4\377\377\377\3\377\377\377"
1291+ "\3\377\377\377\3\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\1"
1292+ "\377\377\377\1\377\377\377\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1293+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1\377\377\377\1\377\377"
1294+ "\377\1\377\377\377\1\377\377\377\1\377\377\377\2\377\377\377\2\377\377\377"
1295+ "\2\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\4\377\377\377\4"
1296+ "\377\377\377\5\377\377\377\5\377\377\377\6\377\377\377\7\377\377\377\7\377"
1297+ "\377\377\10\377\377\377\11\377\377\377\12\377\377\377\13\377\377\377\14\377"
1298+ "\377\377\15\377\377\377\15\377\377\377\17\377\377\377\17\377\377\377\20\377"
1299+ "\377\377\20\377\377\377\20\377\377\377\22\377\377\377\22\377\377\377\22\377"
1300+ "\377\377\21\377\377\377\22\377\377\377\21\377\377\377\20\377\377\377\17\377"
1301+ "\377\377\24\377\377\377\34\377\377\377&\377\377\3773\377\377\3777\377\377"
1302+ "\377-\377\377\377#\377\377\377\31\377\377\377\"\377\377\377,\377\377\377"
1303+ "2\377\377\377&\377\377\377\33\377\377\377\27\377\377\377\24\377\377\377\26"
1304+ "\377\377\377\34\377\377\377$\377\377\377/\377\377\377\31\377\377\377\12\377"
1305+ "\377\377!\377\377\377<\377\377\3774\377\377\377-\377\377\377*\377\377\377"
1306+ "'\377\377\377#\377\377\377\37\377\377\377\25\377\377\377\13\377\377\377\5"
1307+ "\377\377\377\11\377\377\377\17\377\377\377\26\377\377\377\32\377\377\377"
1308+ "\33\377\377\377\33\377\377\377\33\377\377\377\33\377\377\377\30\377\377\377"
1309+ "\26\377\377\377\23\377\377\377\21\377\377\377\17\377\377\377\16\377\377\377"
1310+ "\15\377\377\377\16\377\377\377\15\377\377\377\16\377\377\377\15\377\377\377"
1311+ "\15\377\377\377\15\377\377\377\15\377\377\377\15\377\377\377\14\377\377\377"
1312+ "\13\377\377\377\13\377\377\377\12\377\377\377\11\377\377\377\11\377\377\377"
1313+ "\10\377\377\377\10\377\377\377\7\377\377\377\6\377\377\377\6\377\377\377"
1314+ "\6\377\377\377\5\377\377\377\5\377\377\377\4\377\377\377\4\377\377\377\3"
1315+ "\377\377\377\3\377\377\377\3\377\377\377\2\377\377\377\2\377\377\377\2\377"
1316+ "\377\377\1\377\377\377\1\377\377\377\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1317+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1\377\377\377\1\377\377"
1318+ "\377\1\377\377\377\1\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377"
1319+ "\2\377\377\377\2\377\377\377\2\377\377\377\3\377\377\377\3\377\377\377\4"
1320+ "\377\377\377\4\377\377\377\5\377\377\377\5\377\377\377\6\377\377\377\6\377"
1321+ "\377\377\7\377\377\377\10\377\377\377\11\377\377\377\12\377\377\377\13\377"
1322+ "\377\377\14\377\377\377\15\377\377\377\16\377\377\377\17\377\377\377\20\377"
1323+ "\377\377\20\377\377\377\21\377\377\377\21\377\377\377\23\377\377\377\23\377"
1324+ "\377\377\24\377\377\377\24\377\377\377\24\377\377\377\23\377\377\377\23\377"
1325+ "\377\377\22\377\377\377\21\377\377\377\24\377\377\377\34\377\377\377'\377"
1326+ "\377\3776\377\377\377;\377\377\377/\377\377\377$\377\377\377\35\377\377\377"
1327+ "'\377\377\3774\377\377\3770\377\377\377#\377\377\377\32\377\377\377\26\377"
1328+ "\377\377\26\377\377\377\34\377\377\377&\377\377\3772\377\377\377\33\377\377"
1329+ "\377\14\377\377\377(\377\377\377>\377\377\3775\377\377\377/\377\377\377,"
1330+ "\377\377\377(\377\377\377#\377\377\377\33\377\377\377\17\377\377\377\6\377"
1331+ "\377\377\11\377\377\377\20\377\377\377\30\377\377\377\34\377\377\377\35\377"
1332+ "\377\377\35\377\377\377\35\377\377\377\33\377\377\377\31\377\377\377\26\377"
1333+ "\377\377\24\377\377\377\22\377\377\377\17\377\377\377\17\377\377\377\20\377"
1334+ "\377\377\17\377\377\377\20\377\377\377\17\377\377\377\20\377\377\377\17\377"
1335+ "\377\377\17\377\377\377\16\377\377\377\16\377\377\377\15\377\377\377\14\377"
1336+ "\377\377\13\377\377\377\13\377\377\377\12\377\377\377\11\377\377\377\11\377"
1337+ "\377\377\10\377\377\377\10\377\377\377\7\377\377\377\7\377\377\377\6\377"
1338+ "\377\377\6\377\377\377\5\377\377\377\5\377\377\377\4\377\377\377\4\377\377"
1339+ "\377\3\377\377\377\3\377\377\377\3\377\377\377\2\377\377\377\2\377\377\377"
1340+ "\2\377\377\377\1\377\377\377\1\377\377\377\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1341+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1\377\377\377\1\377\377"
1342+ "\377\1\377\377\377\1\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377"
1343+ "\2\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\3"
1344+ "\377\377\377\3\377\377\377\4\377\377\377\4\377\377\377\5\377\377\377\5\377"
1345+ "\377\377\6\377\377\377\6\377\377\377\7\377\377\377\10\377\377\377\11\377"
1346+ "\377\377\12\377\377\377\13\377\377\377\14\377\377\377\15\377\377\377\17\377"
1347+ "\377\377\20\377\377\377\22\377\377\377\22\377\377\377\23\377\377\377\24\377"
1348+ "\377\377\25\377\377\377\25\377\377\377\26\377\377\377\27\377\377\377\30\377"
1349+ "\377\377\27\377\377\377\26\377\377\377\24\377\377\377\23\377\377\377\23\377"
1350+ "\377\377\34\377\377\377(\377\377\3779\377\377\377@\377\377\3772\377\377\377"
1351+ "$\377\377\377\"\377\377\377.\377\377\377=\377\377\377-\377\377\377\36\377"
1352+ "\377\377\31\377\377\377\26\377\377\377\35\377\377\377'\377\377\3775\377\377"
1353+ "\377\35\377\377\377\17\377\377\3772\377\377\377A\377\377\3776\377\377\377"
1354+ "2\377\377\377.\377\377\377(\377\377\377#\377\377\377\23\377\377\377\11\377"
1355+ "\377\377\11\377\377\377\21\377\377\377\32\377\377\377\37\377\377\377\37\377"
1356+ "\377\377\37\377\377\377\37\377\377\377\34\377\377\377\31\377\377\377\26\377"
1357+ "\377\377\24\377\377\377\22\377\377\377\21\377\377\377\22\377\377\377\22\377"
1358+ "\377\377\22\377\377\377\22\377\377\377\22\377\377\377\21\377\377\377\22\377"
1359+ "\377\377\21\377\377\377\20\377\377\377\17\377\377\377\16\377\377\377\15\377"
1360+ "\377\377\15\377\377\377\13\377\377\377\13\377\377\377\13\377\377\377\12\377"
1361+ "\377\377\11\377\377\377\10\377\377\377\10\377\377\377\10\377\377\377\7\377"
1362+ "\377\377\6\377\377\377\6\377\377\377\5\377\377\377\5\377\377\377\4\377\377"
1363+ "\377\4\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\2\377\377\377"
1364+ "\2\377\377\377\2\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1"
1365+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1\377"
1366+ "\377\377\1\377\377\377\1\377\377\377\2\377\377\377\2\377\377\377\2\377\377"
1367+ "\377\2\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\4\377\377\377"
1368+ "\4\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377\5"
1369+ "\377\377\377\5\377\377\377\5\377\377\377\6\377\377\377\7\377\377\377\7\377"
1370+ "\377\377\10\377\377\377\11\377\377\377\12\377\377\377\13\377\377\377\14\377"
1371+ "\377\377\16\377\377\377\17\377\377\377\21\377\377\377\22\377\377\377\24\377"
1372+ "\377\377\25\377\377\377\26\377\377\377\27\377\377\377\30\377\377\377\30\377"
1373+ "\377\377\32\377\377\377\32\377\377\377\31\377\377\377\30\377\377\377\27\377"
1374+ "\377\377\25\377\377\377\23\377\377\377\34\377\377\377)\377\377\377<\377\377"
1375+ "\377E\377\377\3775\377\377\377%\377\377\377'\377\377\3777\377\377\377;\377"
1376+ "\377\377(\377\377\377\35\377\377\377\31\377\377\377\36\377\377\377(\377\377"
1377+ "\3778\377\377\377\40\377\377\377\22\377\377\377>\377\377\377C\377\377\377"
1378+ "9\377\377\3774\377\377\377.\377\377\377(\377\377\377\32\377\377\377\14\377"
1379+ "\377\377\10\377\377\377\21\377\377\377\34\377\377\377!\377\377\377!\377\377"
1380+ "\377\"\377\377\377!\377\377\377\35\377\377\377\32\377\377\377\27\377\377"
1381+ "\377\24\377\377\377\23\377\377\377\23\377\377\377\24\377\377\377\25\377\377"
1382+ "\377\24\377\377\377\25\377\377\377\24\377\377\377\25\377\377\377\23\377\377"
1383+ "\377\23\377\377\377\21\377\377\377\20\377\377\377\20\377\377\377\16\377\377"
1384+ "\377\16\377\377\377\15\377\377\377\14\377\377\377\13\377\377\377\13\377\377"
1385+ "\377\12\377\377\377\11\377\377\377\10\377\377\377\10\377\377\377\7\377\377"
1386+ "\377\7\377\377\377\6\377\377\377\6\377\377\377\5\377\377\377\5\377\377\377"
1387+ "\4\377\377\377\4\377\377\377\3\377\377\377\3\377\377\377\2\377\377\377\2"
1388+ "\377\377\377\2\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\0"
1389+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1\377"
1390+ "\377\377\1\377\377\377\1\377\377\377\2\377\377\377\2\377\377\377\2\377\377"
1391+ "\377\3\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\4\377\377\377"
1392+ "\4\377\377\377\4\377\377\377\5\377\377\377\5\377\377\377\5\377\377\377\5"
1393+ "\377\377\377\6\377\377\377\5\377\377\377\6\377\377\377\6\377\377\377\6\377"
1394+ "\377\377\7\377\377\377\10\377\377\377\11\377\377\377\11\377\377\377\12\377"
1395+ "\377\377\13\377\377\377\14\377\377\377\15\377\377\377\17\377\377\377\21\377"
1396+ "\377\377\23\377\377\377\25\377\377\377\30\377\377\377\30\377\377\377\32\377"
1397+ "\377\377\33\377\377\377\33\377\377\377\34\377\377\377\34\377\377\377\35\377"
1398+ "\377\377\33\377\377\377\32\377\377\377\30\377\377\377\26\377\377\377\33\377"
1399+ "\377\377*\377\377\377?\377\377\377L\377\377\3778\377\377\377%\377\377\377"
1400+ "/\377\377\377D\377\377\3777\377\377\377#\377\377\377\35\377\377\377\36\377"
1401+ "\377\377(\377\377\377;\377\377\377#\377\377\377\27\377\377\377O\377\377\377"
1402+ "F\377\377\377<\377\377\3776\377\377\377/\377\377\377%\377\377\377\20\377"
1403+ "\377\377\7\377\377\377\22\377\377\377\37\377\377\377$\377\377\377%\377\377"
1404+ "\377%\377\377\377#\377\377\377\36\377\377\377\32\377\377\377\27\377\377\377"
1405+ "\24\377\377\377\25\377\377\377\26\377\377\377\27\377\377\377\27\377\377\377"
1406+ "\30\377\377\377\30\377\377\377\30\377\377\377\26\377\377\377\25\377\377\377"
1407+ "\24\377\377\377\23\377\377\377\22\377\377\377\20\377\377\377\20\377\377\377"
1408+ "\17\377\377\377\16\377\377\377\15\377\377\377\14\377\377\377\13\377\377\377"
1409+ "\13\377\377\377\12\377\377\377\11\377\377\377\10\377\377\377\7\377\377\377"
1410+ "\7\377\377\377\6\377\377\377\6\377\377\377\5\377\377\377\5\377\377\377\4"
1411+ "\377\377\377\4\377\377\377\4\377\377\377\3\377\377\377\3\377\377\377\2\377"
1412+ "\377\377\2\377\377\377\2\377\377\377\2\377\377\377\1\377\377\377\1\377\377"
1413+ "\377\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1\377"
1414+ "\377\377\1\377\377\377\1\377\377\377\1\377\377\377\2\377\377\377\2\377\377"
1415+ "\377\2\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\4\377\377\377"
1416+ "\4\377\377\377\4\377\377\377\5\377\377\377\5\377\377\377\5\377\377\377\6"
1417+ "\377\377\377\6\377\377\377\6\377\377\377\7\377\377\377\7\377\377\377\7\377"
1418+ "\377\377\10\377\377\377\10\377\377\377\10\377\377\377\10\377\377\377\10\377"
1419+ "\377\377\11\377\377\377\12\377\377\377\14\377\377\377\15\377\377\377\16\377"
1420+ "\377\377\17\377\377\377\21\377\377\377\23\377\377\377\25\377\377\377\30\377"
1421+ "\377\377\32\377\377\377\35\377\377\377\35\377\377\377\36\377\377\377\36\377"
1422+ "\377\377\37\377\377\377\37\377\377\377\37\377\377\377\35\377\377\377\33\377"
1423+ "\377\377\31\377\377\377\32\377\377\377*\377\377\377C\377\377\377S\377\377"
1424+ "\377<\377\377\377&\377\377\377:\377\377\377L\377\377\3771\377\377\377\"\377"
1425+ "\377\377\36\377\377\377*\377\377\377?\377\377\377&\377\377\377\36\377\377"
1426+ "\377Z\377\377\377H\377\377\377?\377\377\3778\377\377\377/\377\377\377\30"
1427+ "\377\377\377\10\377\377\377\22\377\377\377\"\377\377\377(\377\377\377(\377"
1428+ "\377\377(\377\377\377$\377\377\377\37\377\377\377\33\377\377\377\27\377\377"
1429+ "\377\27\377\377\377\30\377\377\377\31\377\377\377\32\377\377\377\33\377\377"
1430+ "\377\33\377\377\377\33\377\377\377\32\377\377\377\30\377\377\377\27\377\377"
1431+ "\377\25\377\377\377\24\377\377\377\23\377\377\377\22\377\377\377\21\377\377"
1432+ "\377\20\377\377\377\17\377\377\377\16\377\377\377\15\377\377\377\14\377\377"
1433+ "\377\13\377\377\377\12\377\377\377\11\377\377\377\10\377\377\377\10\377\377"
1434+ "\377\7\377\377\377\7\377\377\377\6\377\377\377\6\377\377\377\5\377\377\377"
1435+ "\4\377\377\377\4\377\377\377\4\377\377\377\3\377\377\377\3\377\377\377\2"
1436+ "\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\1\377\377\377\1\377"
1437+ "\377\377\1\377\377\377\1\377\377\377\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1438+ "\0\0\0\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\2\377\377\377"
1439+ "\2\377\377\377\2\377\377\377\3\377\377\377\3\377\377\377\4\377\377\377\4"
1440+ "\377\377\377\5\377\377\377\5\377\377\377\5\377\377\377\6\377\377\377\6\377"
1441+ "\377\377\6\377\377\377\7\377\377\377\7\377\377\377\10\377\377\377\10\377"
1442+ "\377\377\10\377\377\377\11\377\377\377\11\377\377\377\11\377\377\377\12\377"
1443+ "\377\377\11\377\377\377\12\377\377\377\12\377\377\377\12\377\377\377\13\377"
1444+ "\377\377\13\377\377\377\14\377\377\377\16\377\377\377\17\377\377\377\21\377"
1445+ "\377\377\23\377\377\377\25\377\377\377\30\377\377\377\32\377\377\377\35\377"
1446+ "\377\377\40\377\377\377\40\377\377\377!\377\377\377\"\377\377\377\"\377\377"
1447+ "\377#\377\377\377\"\377\377\377\40\377\377\377\35\377\377\377\32\377\377"
1448+ "\377*\377\377\377G\377\377\377]\377\377\377@\377\377\377/\377\377\377J\377"
1449+ "\377\377G\377\377\377*\377\377\377!\377\377\377+\377\377\377C\377\377\377"
1450+ "+\377\377\377)\377\377\377`\377\377\377L\377\377\377C\377\377\3778\377\377"
1451+ "\377#\377\377\377\13\377\377\377\23\377\377\377&\377\377\377,\377\377\377"
1452+ "-\377\377\377,\377\377\377&\377\377\377\40\377\377\377\33\377\377\377\31"
1453+ "\377\377\377\33\377\377\377\34\377\377\377\35\377\377\377\36\377\377\377"
1454+ "\36\377\377\377\36\377\377\377\34\377\377\377\33\377\377\377\32\377\377\377"
1455+ "\31\377\377\377\27\377\377\377\25\377\377\377\24\377\377\377\23\377\377\377"
1456+ "\22\377\377\377\21\377\377\377\17\377\377\377\16\377\377\377\15\377\377\377"
1457+ "\14\377\377\377\13\377\377\377\12\377\377\377\12\377\377\377\11\377\377\377"
1458+ "\10\377\377\377\7\377\377\377\7\377\377\377\6\377\377\377\6\377\377\377\5"
1459+ "\377\377\377\5\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377\3\377"
1460+ "\377\377\3\377\377\377\3\377\377\377\2\377\377\377\2\377\377\377\2\377\377"
1461+ "\377\1\377\377\377\1\377\377\377\1\377\377\377\1\0\0\0\0\0\0\0\0\0\0\0\0"
1462+ "\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1\377\377\377\1\377\377\377\1\377\377"
1463+ "\377\2\377\377\377\2\377\377\377\2\377\377\377\3\377\377\377\4\377\377\377"
1464+ "\4\377\377\377\5\377\377\377\5\377\377\377\5\377\377\377\6\377\377\377\6"
1465+ "\377\377\377\7\377\377\377\7\377\377\377\10\377\377\377\10\377\377\377\11"
1466+ "\377\377\377\11\377\377\377\12\377\377\377\12\377\377\377\12\377\377\377"
1467+ "\13\377\377\377\13\377\377\377\14\377\377\377\14\377\377\377\15\377\377\377"
1468+ "\14\377\377\377\15\377\377\377\15\377\377\377\15\377\377\377\15\377\377\377"
1469+ "\15\377\377\377\16\377\377\377\21\377\377\377\22\377\377\377\25\377\377\377"
1470+ "\27\377\377\377\31\377\377\377\34\377\377\377\37\377\377\377#\377\377\377"
1471+ "$\377\377\377%\377\377\377&\377\377\377'\377\377\377'\377\377\377%\377\377"
1472+ "\377\"\377\377\377\37\377\377\377*\377\377\377K\377\377\377h\377\377\377"
1473+ "D\377\377\377;\377\377\377b\377\377\377=\377\377\377)\377\377\377-\377\377"
1474+ "\377G\377\377\3770\377\377\3778\377\377\377e\377\377\377R\377\377\377F\377"
1475+ "\377\3777\377\377\377\22\377\377\377\23\377\377\377+\377\377\3772\377\377"
1476+ "\3773\377\377\377/\377\377\377'\377\377\377\40\377\377\377\34\377\377\377"
1477+ "\36\377\377\377\37\377\377\377!\377\377\377\"\377\377\377\"\377\377\377!"
1478+ "\377\377\377\37\377\377\377\36\377\377\377\34\377\377\377\33\377\377\377"
1479+ "\32\377\377\377\31\377\377\377\27\377\377\377\26\377\377\377\24\377\377\377"
1480+ "\23\377\377\377\21\377\377\377\20\377\377\377\17\377\377\377\15\377\377\377"
1481+ "\14\377\377\377\13\377\377\377\13\377\377\377\12\377\377\377\11\377\377\377"
1482+ "\10\377\377\377\10\377\377\377\7\377\377\377\7\377\377\377\6\377\377\377"
1483+ "\5\377\377\377\5\377\377\377\4\377\377\377\4\377\377\377\3\377\377\377\3"
1484+ "\377\377\377\3\377\377\377\3\377\377\377\2\377\377\377\2\377\377\377\2\377"
1485+ "\377\377\2\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\0\0\0"
1486+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1\377\377"
1487+ "\377\1\377\377\377\1\377\377\377\2\377\377\377\2\377\377\377\3\377\377\377"
1488+ "\3\377\377\377\4\377\377\377\4\377\377\377\5\377\377\377\5\377\377\377\6"
1489+ "\377\377\377\6\377\377\377\7\377\377\377\10\377\377\377\10\377\377\377\11"
1490+ "\377\377\377\12\377\377\377\12\377\377\377\13\377\377\377\13\377\377\377"
1491+ "\14\377\377\377\14\377\377\377\15\377\377\377\15\377\377\377\16\377\377\377"
1492+ "\16\377\377\377\17\377\377\377\17\377\377\377\20\377\377\377\20\377\377\377"
1493+ "\20\377\377\377\21\377\377\377\21\377\377\377\21\377\377\377\21\377\377\377"
1494+ "\22\377\377\377\24\377\377\377\26\377\377\377\30\377\377\377\33\377\377\377"
1495+ "\36\377\377\377\"\377\377\377&\377\377\377)\377\377\377*\377\377\377+\377"
1496+ "\377\377,\377\377\377-\377\377\377)\377\377\377%\377\377\377(\377\377\377"
1497+ "O\377\377\377w\377\377\377H\377\377\377O\377\377\377a\377\377\3774\377\377"
1498+ "\377-\377\377\377L\377\377\3777\377\377\377Q\377\377\377k\377\377\377X\377"
1499+ "\377\377F\377\377\377\36\377\377\377\22\377\377\3771\377\377\3779\377\377"
1500+ "\377:\377\377\3772\377\377\377(\377\377\377!\377\377\377\"\377\377\377$\377"
1501+ "\377\377&\377\377\377'\377\377\377&\377\377\377$\377\377\377\"\377\377\377"
1502+ "!\377\377\377\37\377\377\377\36\377\377\377\34\377\377\377\33\377\377\377"
1503+ "\32\377\377\377\30\377\377\377\26\377\377\377\25\377\377\377\22\377\377\377"
1504+ "\21\377\377\377\20\377\377\377\16\377\377\377\15\377\377\377\15\377\377\377"
1505+ "\13\377\377\377\12\377\377\377\12\377\377\377\11\377\377\377\11\377\377\377"
1506+ "\10\377\377\377\7\377\377\377\6\377\377\377\6\377\377\377\5\377\377\377\5"
1507+ "\377\377\377\5\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377\3\377"
1508+ "\377\377\3\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377"
1509+ "\377\2\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\0\0\0\0\0"
1510+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1\377\377\377"
1511+ "\1\377\377\377\1\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\3"
1512+ "\377\377\377\3\377\377\377\4\377\377\377\4\377\377\377\5\377\377\377\5\377"
1513+ "\377\377\6\377\377\377\6\377\377\377\7\377\377\377\10\377\377\377\10\377"
1514+ "\377\377\11\377\377\377\12\377\377\377\13\377\377\377\14\377\377\377\15\377"
1515+ "\377\377\16\377\377\377\17\377\377\377\17\377\377\377\20\377\377\377\21\377"
1516+ "\377\377\21\377\377\377\22\377\377\377\23\377\377\377\24\377\377\377\24\377"
1517+ "\377\377\25\377\377\377\24\377\377\377\25\377\377\377\26\377\377\377\26\377"
1518+ "\377\377\25\377\377\377\25\377\377\377\24\377\377\377\27\377\377\377\31\377"
1519+ "\377\377\34\377\377\377\40\377\377\377$\377\377\377*\377\377\3770\377\377"
1520+ "\3771\377\377\3773\377\377\3774\377\377\3773\377\377\377.\377\377\377'\377"
1521+ "\377\377S\377\377\377\213\377\377\377K\377\377\377o\377\377\377Q\377\377"
1522+ "\3771\377\377\377P\377\377\377@\377\377\377}\377\377\377r\377\377\377]\377"
1523+ "\377\3775\377\377\377\21\377\377\3779\377\377\377C\377\377\377C\377\377\377"
1524+ "4\377\377\377)\377\377\377'\377\377\377*\377\377\377,\377\377\377.\377\377"
1525+ "\377,\377\377\377)\377\377\377'\377\377\377$\377\377\377#\377\377\377!\377"
1526+ "\377\377\37\377\377\377\35\377\377\377\33\377\377\377\31\377\377\377\30\377"
1527+ "\377\377\26\377\377\377\25\377\377\377\23\377\377\377\22\377\377\377\20\377"
1528+ "\377\377\17\377\377\377\15\377\377\377\14\377\377\377\13\377\377\377\13\377"
1529+ "\377\377\12\377\377\377\11\377\377\377\10\377\377\377\10\377\377\377\7\377"
1530+ "\377\377\7\377\377\377\6\377\377\377\6\377\377\377\5\377\377\377\5\377\377"
1531+ "\377\4\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377\3\377\377\377"
1532+ "\3\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\1"
1533+ "\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\0"
1534+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1\377\377\377"
1535+ "\1\377\377\377\1\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\3"
1536+ "\377\377\377\3\377\377\377\3\377\377\377\4\377\377\377\4\377\377\377\5\377"
1537+ "\377\377\5\377\377\377\6\377\377\377\6\377\377\377\7\377\377\377\7\377\377"
1538+ "\377\10\377\377\377\11\377\377\377\12\377\377\377\13\377\377\377\14\377\377"
1539+ "\377\14\377\377\377\16\377\377\377\17\377\377\377\20\377\377\377\21\377\377"
1540+ "\377\24\377\377\377\25\377\377\377\26\377\377\377\27\377\377\377\30\377\377"
1541+ "\377\31\377\377\377\31\377\377\377\32\377\377\377\33\377\377\377\33\377\377"
1542+ "\377\33\377\377\377\33\377\377\377\33\377\377\377\32\377\377\377\32\377\377"
1543+ "\377\31\377\377\377\32\377\377\377\36\377\377\377\"\377\377\377(\377\377"
1544+ "\377.\377\377\3777\377\377\377;\377\377\377=\377\377\377?\377\377\377;\377"
1545+ "\377\3773\377\377\377U\377\377\377\247\377\377\377M\377\377\377\230\377\377"
1546+ "\377E\377\377\377T\377\377\377M\377\377\377\265\377\377\377\177\377\377\377"
1547+ "^\377\377\377\20\377\377\377D\377\377\377Q\377\377\377I\377\377\3776\377"
1548+ "\377\377.\377\377\3773\377\377\3776\377\377\3777\377\377\3773\377\377\377"
1549+ "/\377\377\377,\377\377\377)\377\377\377'\377\377\377$\377\377\377!\377\377"
1550+ "\377\36\377\377\377\34\377\377\377\32\377\377\377\30\377\377\377\27\377\377"
1551+ "\377\25\377\377\377\24\377\377\377\23\377\377\377\21\377\377\377\20\377\377"
1552+ "\377\16\377\377\377\15\377\377\377\14\377\377\377\14\377\377\377\12\377\377"
1553+ "\377\12\377\377\377\11\377\377\377\11\377\377\377\10\377\377\377\7\377\377"
1554+ "\377\7\377\377\377\6\377\377\377\6\377\377\377\6\377\377\377\5\377\377\377"
1555+ "\4\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377\3\377\377\377\3"
1556+ "\377\377\377\3\377\377\377\3\377\377\377\2\377\377\377\2\377\377\377\2\377"
1557+ "\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\0\0\0"
1558+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1\377\377"
1559+ "\377\1\377\377\377\1\377\377\377\1\377\377\377\2\377\377\377\2\377\377\377"
1560+ "\2\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\4\377\377\377\4"
1561+ "\377\377\377\5\377\377\377\5\377\377\377\5\377\377\377\6\377\377\377\6\377"
1562+ "\377\377\7\377\377\377\10\377\377\377\11\377\377\377\12\377\377\377\12\377"
1563+ "\377\377\13\377\377\377\14\377\377\377\15\377\377\377\16\377\377\377\17\377"
1564+ "\377\377\21\377\377\377\22\377\377\377\24\377\377\377\26\377\377\377\27\377"
1565+ "\377\377\32\377\377\377\34\377\377\377\37\377\377\377!\377\377\377!\377\377"
1566+ "\377\"\377\377\377\"\377\377\377\"\377\377\377\"\377\377\377\"\377\377\377"
1567+ "\"\377\377\377\"\377\377\377!\377\377\377\40\377\377\377\37\377\377\377$"
1568+ "\377\377\377+\377\377\3773\377\377\377?\377\377\377I\377\377\377L\377\377"
1569+ "\377O\377\377\377E\377\377\377T\377\377\377\321\377\377\377w\377\377\377"
1570+ "z\377\377\377Z\377\377\377`\377\377\377\313\377\377\377\214\377\377\377$"
1571+ "\377\377\377U\377\377\377f\377\377\377N\377\377\3779\377\377\377?\377\377"
1572+ "\377D\377\377\377B\377\377\377<\377\377\3777\377\377\3773\377\377\377/\377"
1573+ "\377\377*\377\377\377&\377\377\377\"\377\377\377\37\377\377\377\35\377\377"
1574+ "\377\33\377\377\377\31\377\377\377\27\377\377\377\25\377\377\377\24\377\377"
1575+ "\377\23\377\377\377\22\377\377\377\21\377\377\377\17\377\377\377\16\377\377"
1576+ "\377\16\377\377\377\14\377\377\377\14\377\377\377\13\377\377\377\12\377\377"
1577+ "\377\11\377\377\377\11\377\377\377\10\377\377\377\10\377\377\377\7\377\377"
1578+ "\377\6\377\377\377\6\377\377\377\6\377\377\377\5\377\377\377\5\377\377\377"
1579+ "\5\377\377\377\4\377\377\377\4\377\377\377\3\377\377\377\3\377\377\377\3"
1580+ "\377\377\377\3\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377"
1581+ "\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\0\0\0"
1582+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1"
1583+ "\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\2\377\377\377\2\377"
1584+ "\377\377\2\377\377\377\2\377\377\377\3\377\377\377\3\377\377\377\4\377\377"
1585+ "\377\4\377\377\377\5\377\377\377\5\377\377\377\5\377\377\377\6\377\377\377"
1586+ "\6\377\377\377\7\377\377\377\7\377\377\377\10\377\377\377\11\377\377\377"
1587+ "\11\377\377\377\12\377\377\377\13\377\377\377\14\377\377\377\15\377\377\377"
1588+ "\16\377\377\377\17\377\377\377\21\377\377\377\22\377\377\377\24\377\377\377"
1589+ "\25\377\377\377\30\377\377\377\31\377\377\377\34\377\377\377\36\377\377\377"
1590+ "\40\377\377\377#\377\377\377&\377\377\377)\377\377\377,\377\377\377-\377"
1591+ "\377\377-\377\377\377.\377\377\377.\377\377\377.\377\377\377-\377\377\377"
1592+ ",\377\377\377*\377\377\377.\377\377\3779\377\377\377I\377\377\377`\377\377"
1593+ "\377f\377\377\377g\377\377\377O\377\377\377\377\377\377\377\337\377\377\377"
1594+ "c\377\377\377\200\377\377\377\343\377\377\377j\377\377\377r\377\377\377\206"
1595+ "\377\377\377R\377\377\377U\377\377\377\\\377\377\377R\377\377\377I\377\377"
1596+ "\377B\377\377\377;\377\377\3773\377\377\377-\377\377\377(\377\377\377$\377"
1597+ "\377\377\40\377\377\377\35\377\377\377\33\377\377\377\31\377\377\377\27\377"
1598+ "\377\377\26\377\377\377\24\377\377\377\23\377\377\377\22\377\377\377\21\377"
1599+ "\377\377\21\377\377\377\20\377\377\377\16\377\377\377\15\377\377\377\15\377"
1600+ "\377\377\13\377\377\377\13\377\377\377\12\377\377\377\12\377\377\377\10\377"
1601+ "\377\377\10\377\377\377\10\377\377\377\7\377\377\377\7\377\377\377\6\377"
1602+ "\377\377\5\377\377\377\5\377\377\377\5\377\377\377\5\377\377\377\4\377\377"
1603+ "\377\4\377\377\377\4\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377"
1604+ "\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\1"
1605+ "\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\0\0\0\0\0\0\0\0"
1606+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1\377\377\377"
1607+ "\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\2\377\377\377\2"
1608+ "\377\377\377\2\377\377\377\2\377\377\377\3\377\377\377\3\377\377\377\3\377"
1609+ "\377\377\4\377\377\377\4\377\377\377\5\377\377\377\5\377\377\377\5\377\377"
1610+ "\377\6\377\377\377\6\377\377\377\7\377\377\377\7\377\377\377\10\377\377\377"
1611+ "\11\377\377\377\11\377\377\377\12\377\377\377\13\377\377\377\14\377\377\377"
1612+ "\15\377\377\377\15\377\377\377\17\377\377\377\20\377\377\377\21\377\377\377"
1613+ "\23\377\377\377\24\377\377\377\26\377\377\377\30\377\377\377\31\377\377\377"
1614+ "\33\377\377\377\35\377\377\377\40\377\377\377\"\377\377\377%\377\377\377"
1615+ ")\377\377\377-\377\377\3772\377\377\3779\377\377\377@\377\377\377C\377\377"
1616+ "\377D\377\377\377E\377\377\377D\377\377\377B\377\377\377>\377\377\377V\377"
1617+ "\377\377\177\377\377\377\231\377\377\377\213\377\377\377\377\377\377\377"
1618+ "\365\377\377\377\301\377\377\377\377\377\377\377\253\377\377\377\235\377"
1619+ "\377\377\177\377\377\377\204\377\377\377n\377\377\377_\377\377\377M\377\377"
1620+ "\377?\377\377\3776\377\377\377.\377\377\377)\377\377\377$\377\377\377!\377"
1621+ "\377\377\36\377\377\377\34\377\377\377\32\377\377\377\30\377\377\377\26\377"
1622+ "\377\377\25\377\377\377\24\377\377\377\23\377\377\377\22\377\377\377\21\377"
1623+ "\377\377\20\377\377\377\17\377\377\377\17\377\377\377\15\377\377\377\14\377"
1624+ "\377\377\14\377\377\377\13\377\377\377\12\377\377\377\11\377\377\377\11\377"
1625+ "\377\377\11\377\377\377\7\377\377\377\7\377\377\377\7\377\377\377\6\377\377"
1626+ "\377\6\377\377\377\5\377\377\377\5\377\377\377\4\377\377\377\4\377\377\377"
1627+ "\4\377\377\377\4\377\377\377\4\377\377\377\3\377\377\377\3\377\377\377\3"
1628+ "\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\1\377\377\377\1\377"
1629+ "\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\0\0\0"
1630+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1"
1631+ "\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\2\377\377\377\2\377"
1632+ "\377\377\2\377\377\377\2\377\377\377\2\377\377\377\3\377\377\377\3\377\377"
1633+ "\377\3\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377"
1634+ "\5\377\377\377\5\377\377\377\6\377\377\377\6\377\377\377\7\377\377\377\7"
1635+ "\377\377\377\7\377\377\377\10\377\377\377\11\377\377\377\11\377\377\377\11"
1636+ "\377\377\377\12\377\377\377\13\377\377\377\14\377\377\377\14\377\377\377"
1637+ "\16\377\377\377\17\377\377\377\17\377\377\377\21\377\377\377\22\377\377\377"
1638+ "\23\377\377\377\24\377\377\377\26\377\377\377\27\377\377\377\31\377\377\377"
1639+ "\33\377\377\377\35\377\377\377\40\377\377\377#\377\377\377&\377\377\377+"
1640+ "\377\377\3770\377\377\3777\377\377\377@\377\377\377K\377\377\377[\377\377"
1641+ "\377q\377\377\377\207\377\377\377\212\377\377\377\205\377\377\377\254\377"
1642+ "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377"
1643+ "\376\377\377\377\335\377\377\377\231\377\377\377l\377\377\377R\377\377\377"
1644+ "B\377\377\3778\377\377\3770\377\377\377*\377\377\377&\377\377\377\"\377\377"
1645+ "\377\37\377\377\377\34\377\377\377\32\377\377\377\30\377\377\377\27\377\377"
1646+ "\377\25\377\377\377\24\377\377\377\23\377\377\377\22\377\377\377\21\377\377"
1647+ "\377\20\377\377\377\17\377\377\377\17\377\377\377\16\377\377\377\15\377\377"
1648+ "\377\14\377\377\377\13\377\377\377\13\377\377\377\12\377\377\377\11\377\377"
1649+ "\377\11\377\377\377\10\377\377\377\10\377\377\377\7\377\377\377\6\377\377"
1650+ "\377\6\377\377\377\6\377\377\377\6\377\377\377\5\377\377\377\5\377\377\377"
1651+ "\4\377\377\377\4\377\377\377\4\377\377\377\3\377\377\377\3\377\377\377\3"
1652+ "\377\377\377\3\377\377\377\3\377\377\377\2\377\377\377\2\377\377\377\2\377"
1653+ "\377\377\2\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377"
1654+ "\377\1\377\377\377\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1655+ "\0\0\0\0\0\0\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377"
1656+ "\377\377\2\377\377\377\2\377\377\377\2\377\377\377\3\377\377\377\3\377\377"
1657+ "\377\3\377\377\377\3\377\377\377\3\377\377\377\4\377\377\377\4\377\377\377"
1658+ "\5\377\377\377\5\377\377\377\6\377\377\377\6\377\377\377\6\377\377\377\7"
1659+ "\377\377\377\10\377\377\377\10\377\377\377\10\377\377\377\11\377\377\377"
1660+ "\11\377\377\377\12\377\377\377\13\377\377\377\13\377\377\377\15\377\377\377"
1661+ "\15\377\377\377\16\377\377\377\17\377\377\377\20\377\377\377\22\377\377\377"
1662+ "\22\377\377\377\23\377\377\377\24\377\377\377\25\377\377\377\26\377\377\377"
1663+ "\27\377\377\377\30\377\377\377\32\377\377\377\33\377\377\377\35\377\377\377"
1664+ "\37\377\377\377!\377\377\377$\377\377\377'\377\377\377+\377\377\377/\377"
1665+ "\377\3774\377\377\377;\377\377\377C\377\377\377N\377\377\377^\377\377\377"
1666+ "v\377\377\377\235\377\377\377\353\377\377\377\377\377\377\377\377\377\377"
1667+ "\377\377\377\377\377\261\377\377\377v\377\377\377Y\377\377\377G\377\377\377"
1668+ ";\377\377\3772\377\377\377,\377\377\377'\377\377\377#\377\377\377\40\377"
1669+ "\377\377\35\377\377\377\33\377\377\377\31\377\377\377\27\377\377\377\26\377"
1670+ "\377\377\25\377\377\377\23\377\377\377\22\377\377\377\21\377\377\377\21\377"
1671+ "\377\377\20\377\377\377\17\377\377\377\16\377\377\377\16\377\377\377\15\377"
1672+ "\377\377\15\377\377\377\14\377\377\377\13\377\377\377\12\377\377\377\12\377"
1673+ "\377\377\11\377\377\377\10\377\377\377\10\377\377\377\10\377\377\377\7\377"
1674+ "\377\377\6\377\377\377\6\377\377\377\6\377\377\377\5\377\377\377\5\377\377"
1675+ "\377\5\377\377\377\4\377\377\377\4\377\377\377\3\377\377\377\3\377\377\377"
1676+ "\3\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\2\377\377\377\2"
1677+ "\377\377\377\2\377\377\377\2\377\377\377\1\377\377\377\1\377\377\377\1\377"
1678+ "\377\377\1\377\377\377\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1679+ "\0\0\0\0\0\0\0\0\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1"
1680+ "\377\377\377\1\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\3\377"
1681+ "\377\377\3\377\377\377\3\377\377\377\4\377\377\377\4\377\377\377\4\377\377"
1682+ "\377\5\377\377\377\5\377\377\377\5\377\377\377\6\377\377\377\7\377\377\377"
1683+ "\7\377\377\377\7\377\377\377\10\377\377\377\10\377\377\377\12\377\377\377"
1684+ "\12\377\377\377\12\377\377\377\13\377\377\377\14\377\377\377\15\377\377\377"
1685+ "\16\377\377\377\17\377\377\377\20\377\377\377\22\377\377\377\22\377\377\377"
1686+ "\24\377\377\377\25\377\377\377\26\377\377\377\27\377\377\377\31\377\377\377"
1687+ "\32\377\377\377\33\377\377\377\35\377\377\377\37\377\377\377!\377\377\377"
1688+ "$\377\377\377'\377\377\377*\377\377\377.\377\377\3773\377\377\3779\377\377"
1689+ "\377>\377\377\377D\377\377\377K\377\377\377S\377\377\377]\377\377\377j\377"
1690+ "\377\377\225\377\377\377\377\377\377\377\363\377\377\377\377\377\377\377"
1691+ "\377\377\377\377\377\377\377\377\377\377\377\377\332\377\377\377\320\377"
1692+ "\377\377\236\377\377\377h\377\377\377I\377\377\3776\377\377\377*\377\377"
1693+ "\377\"\377\377\377\35\377\377\377\32\377\377\377\31\377\377\377\27\377\377"
1694+ "\377\25\377\377\377\24\377\377\377\23\377\377\377\22\377\377\377\21\377\377"
1695+ "\377\20\377\377\377\20\377\377\377\17\377\377\377\16\377\377\377\16\377\377"
1696+ "\377\15\377\377\377\15\377\377\377\14\377\377\377\14\377\377\377\12\377\377"
1697+ "\377\12\377\377\377\12\377\377\377\10\377\377\377\10\377\377\377\10\377\377"
1698+ "\377\7\377\377\377\7\377\377\377\6\377\377\377\6\377\377\377\5\377\377\377"
1699+ "\5\377\377\377\5\377\377\377\5\377\377\377\4\377\377\377\4\377\377\377\3"
1700+ "\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\2\377"
1701+ "\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\1\377\377"
1702+ "\377\1\377\377\377\1\377\377\377\1\377\377\377\1\0\0\0\0\0\0\0\0\0\0\0\0"
1703+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1\377\377\377\1\377"
1704+ "\377\377\1\377\377\377\1\377\377\377\2\377\377\377\2\377\377\377\2\377\377"
1705+ "\377\3\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\4\377\377\377"
1706+ "\4\377\377\377\5\377\377\377\5\377\377\377\6\377\377\377\6\377\377\377\6"
1707+ "\377\377\377\7\377\377\377\10\377\377\377\10\377\377\377\11\377\377\377\11"
1708+ "\377\377\377\12\377\377\377\13\377\377\377\14\377\377\377\14\377\377\377"
1709+ "\16\377\377\377\17\377\377\377\17\377\377\377\21\377\377\377\22\377\377\377"
1710+ "\23\377\377\377\25\377\377\377\27\377\377\377\30\377\377\377\31\377\377\377"
1711+ "\33\377\377\377\34\377\377\377\35\377\377\377\37\377\377\377\40\377\377\377"
1712+ "\"\377\377\377#\377\377\377%\377\377\377'\377\377\377)\377\377\377,\377\377"
1713+ "\377/\377\377\3772\377\377\3775\377\377\377:\377\377\377J\377\377\377b\377"
1714+ "\377\377\207\377\377\377\217\377\377\377z\377\377\377\322\377\377\377\354"
1715+ "\377\377\377\352\377\377\377\377\377\377\377\377\377\377\377\377\377\377"
1716+ "\377\271\377\377\377\220\377\377\377y\377\377\377m\377\377\377k\377\377\377"
1717+ "h\377\377\377c\377\377\377O\377\377\377?\377\377\3774\377\377\377+\377\377"
1718+ "\377$\377\377\377\37\377\377\377\33\377\377\377\30\377\377\377\25\377\377"
1719+ "\377\22\377\377\377\21\377\377\377\17\377\377\377\16\377\377\377\15\377\377"
1720+ "\377\15\377\377\377\14\377\377\377\14\377\377\377\14\377\377\377\13\377\377"
1721+ "\377\12\377\377\377\12\377\377\377\11\377\377\377\10\377\377\377\10\377\377"
1722+ "\377\7\377\377\377\7\377\377\377\7\377\377\377\6\377\377\377\5\377\377\377"
1723+ "\5\377\377\377\5\377\377\377\5\377\377\377\5\377\377\377\4\377\377\377\4"
1724+ "\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\2\377"
1725+ "\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377"
1726+ "\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\0\0\0\0\0"
1727+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1\377"
1728+ "\377\377\1\377\377\377\1\377\377\377\1\377\377\377\2\377\377\377\2\377\377"
1729+ "\377\2\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\4\377\377\377"
1730+ "\4\377\377\377\5\377\377\377\5\377\377\377\5\377\377\377\6\377\377\377\6"
1731+ "\377\377\377\7\377\377\377\10\377\377\377\10\377\377\377\11\377\377\377\12"
1732+ "\377\377\377\13\377\377\377\13\377\377\377\14\377\377\377\15\377\377\377"
1733+ "\16\377\377\377\17\377\377\377\20\377\377\377\21\377\377\377\21\377\377\377"
1734+ "\23\377\377\377\24\377\377\377\25\377\377\377\26\377\377\377\30\377\377\377"
1735+ "\31\377\377\377\31\377\377\377\32\377\377\377\33\377\377\377\34\377\377\377"
1736+ "\36\377\377\377\37\377\377\377\40\377\377\377\"\377\377\377#\377\377\377"
1737+ "%\377\377\377*\377\377\3771\377\377\377;\377\377\377H\377\377\377Z\377\377"
1738+ "\377b\377\377\377[\377\377\377Q\377\377\377r\377\377\377\332\377\377\377"
1739+ "\236\377\377\377o\377\377\377\223\377\377\377\305\377\377\377\377\377\377"
1740+ "\377\377\377\377\377\310\377\377\377\247\377\377\377p\377\377\377`\377\377"
1741+ "\377U\377\377\377L\377\377\377H\377\377\377H\377\377\377G\377\377\377E\377"
1742+ "\377\377C\377\377\377>\377\377\3774\377\377\377-\377\377\377'\377\377\377"
1743+ "\"\377\377\377\36\377\377\377\33\377\377\377\30\377\377\377\26\377\377\377"
1744+ "\24\377\377\377\22\377\377\377\20\377\377\377\17\377\377\377\16\377\377\377"
1745+ "\15\377\377\377\13\377\377\377\12\377\377\377\11\377\377\377\10\377\377\377"
1746+ "\7\377\377\377\7\377\377\377\7\377\377\377\6\377\377\377\6\377\377\377\5"
1747+ "\377\377\377\5\377\377\377\5\377\377\377\4\377\377\377\4\377\377\377\4\377"
1748+ "\377\377\4\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\2\377\377"
1749+ "\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377"
1750+ "\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1"
1751+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377"
1752+ "\377\1\377\377\377\1\377\377\377\1\377\377\377\2\377\377\377\2\377\377\377"
1753+ "\2\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\4"
1754+ "\377\377\377\4\377\377\377\5\377\377\377\6\377\377\377\6\377\377\377\6\377"
1755+ "\377\377\7\377\377\377\7\377\377\377\10\377\377\377\11\377\377\377\11\377"
1756+ "\377\377\11\377\377\377\13\377\377\377\13\377\377\377\14\377\377\377\15\377"
1757+ "\377\377\15\377\377\377\16\377\377\377\17\377\377\377\20\377\377\377\20\377"
1758+ "\377\377\22\377\377\377\22\377\377\377\24\377\377\377\25\377\377\377\26\377"
1759+ "\377\377\27\377\377\377\30\377\377\377\31\377\377\377\31\377\377\377\32\377"
1760+ "\377\377\33\377\377\377\35\377\377\377!\377\377\377%\377\377\377*\377\377"
1761+ "\3771\377\377\3779\377\377\377C\377\377\377J\377\377\377G\377\377\377B\377"
1762+ "\377\377=\377\377\377N\377\377\377i\377\377\377\314\377\377\377v\377\377"
1763+ "\377K\377\377\377u\377\377\377\36\377\377\377\224\377\377\377\260\377\377"
1764+ "\377\223\377\377\377\342\377\377\377\226\377\377\377\223\377\377\377]\377"
1765+ "\377\377Q\377\377\377H\377\377\377A\377\377\377<\377\377\3777\377\377\377"
1766+ "6\377\377\3776\377\377\3775\377\377\3775\377\377\3774\377\377\3773\377\377"
1767+ "\3771\377\377\377,\377\377\377'\377\377\377#\377\377\377\37\377\377\377\34"
1768+ "\377\377\377\32\377\377\377\27\377\377\377\25\377\377\377\23\377\377\377"
1769+ "\21\377\377\377\20\377\377\377\16\377\377\377\14\377\377\377\13\377\377\377"
1770+ "\12\377\377\377\12\377\377\377\11\377\377\377\7\377\377\377\7\377\377\377"
1771+ "\6\377\377\377\5\377\377\377\5\377\377\377\5\377\377\377\4\377\377\377\4"
1772+ "\377\377\377\4\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\2\377"
1773+ "\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377"
1774+ "\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377"
1775+ "\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1"
1776+ "\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\2\377\377\377\2\377"
1777+ "\377\377\2\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\4\377\377"
1778+ "\377\4\377\377\377\4\377\377\377\5\377\377\377\5\377\377\377\6\377\377\377"
1779+ "\6\377\377\377\6\377\377\377\7\377\377\377\10\377\377\377\10\377\377\377"
1780+ "\11\377\377\377\11\377\377\377\12\377\377\377\13\377\377\377\13\377\377\377"
1781+ "\14\377\377\377\15\377\377\377\15\377\377\377\16\377\377\377\17\377\377\377"
1782+ "\20\377\377\377\21\377\377\377\21\377\377\377\23\377\377\377\23\377\377\377"
1783+ "\25\377\377\377\25\377\377\377\26\377\377\377\30\377\377\377\33\377\377\377"
1784+ "\35\377\377\377!\377\377\377%\377\377\377)\377\377\377/\377\377\3776\377"
1785+ "\377\377;\377\377\377:\377\377\3777\377\377\3774\377\377\3770\377\377\377"
1786+ ";\377\377\377I\377\377\377n\377\377\377\272\377\377\377^\377\377\3778\377"
1787+ "\377\377H\377\377\377\223\377\377\377/\377\377\377v\377\377\377\216\377\377"
1788+ "\377\246\377\377\377\216\377\377\377\232\377\377\377x\377\377\377\201\377"
1789+ "\377\377Y\377\377\377F\377\377\377?\377\377\3779\377\377\3775\377\377\377"
1790+ "2\377\377\377.\377\377\377,\377\377\377+\377\377\377+\377\377\377+\377\377"
1791+ "\377*\377\377\377*\377\377\377)\377\377\377)\377\377\377(\377\377\377&\377"
1792+ "\377\377\"\377\377\377\37\377\377\377\34\377\377\377\32\377\377\377\27\377"
1793+ "\377\377\25\377\377\377\22\377\377\377\21\377\377\377\17\377\377\377\15\377"
1794+ "\377\377\14\377\377\377\13\377\377\377\12\377\377\377\11\377\377\377\10\377"
1795+ "\377\377\7\377\377\377\6\377\377\377\6\377\377\377\5\377\377\377\5\377\377"
1796+ "\377\4\377\377\377\4\377\377\377\4\377\377\377\3\377\377\377\3\377\377\377"
1797+ "\3\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\1"
1798+ "\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\0"
1799+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377"
1800+ "\1\377\377\377\1\377\377\377\1\377\377\377\2\377\377\377\2\377\377\377\2"
1801+ "\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\4\377"
1802+ "\377\377\4\377\377\377\5\377\377\377\5\377\377\377\5\377\377\377\6\377\377"
1803+ "\377\6\377\377\377\7\377\377\377\7\377\377\377\10\377\377\377\10\377\377"
1804+ "\377\11\377\377\377\12\377\377\377\12\377\377\377\13\377\377\377\14\377\377"
1805+ "\377\14\377\377\377\14\377\377\377\16\377\377\377\16\377\377\377\17\377\377"
1806+ "\377\20\377\377\377\20\377\377\377\22\377\377\377\24\377\377\377\26\377\377"
1807+ "\377\30\377\377\377\33\377\377\377\35\377\377\377\40\377\377\377$\377\377"
1808+ "\377(\377\377\377-\377\377\3772\377\377\3771\377\377\377/\377\377\377-\377"
1809+ "\377\377+\377\377\377(\377\377\377/\377\377\3779\377\377\377F\377\377\377"
1810+ "m\377\377\377\246\377\377\377O\377\377\377-\377\377\3777\377\377\377N\377"
1811+ "\377\377J\377\377\3777\377\377\377b\377\377\377w\377\377\377\206\377\377"
1812+ "\377b\377\377\377\231\377\377\377s\377\377\377d\377\377\377r\377\377\377"
1813+ "S\377\377\377>\377\377\3778\377\377\3774\377\377\3770\377\377\377-\377\377"
1814+ "\377*\377\377\377(\377\377\377&\377\377\377$\377\377\377$\377\377\377$\377"
1815+ "\377\377$\377\377\377#\377\377\377#\377\377\377#\377\377\377\"\377\377\377"
1816+ "\"\377\377\377!\377\377\377!\377\377\377\36\377\377\377\33\377\377\377\30"
1817+ "\377\377\377\25\377\377\377\23\377\377\377\22\377\377\377\17\377\377\377"
1818+ "\16\377\377\377\15\377\377\377\14\377\377\377\13\377\377\377\11\377\377\377"
1819+ "\10\377\377\377\7\377\377\377\7\377\377\377\6\377\377\377\6\377\377\377\5"
1820+ "\377\377\377\5\377\377\377\4\377\377\377\4\377\377\377\3\377\377\377\3\377"
1821+ "\377\377\3\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\1\377\377"
1822+ "\377\1\377\377\377\1\377\377\377\1\377\377\377\1\0\0\0\0\0\0\0\0\0\0\0\0"
1823+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1\377\377\377\1\377"
1824+ "\377\377\1\377\377\377\1\377\377\377\2\377\377\377\2\377\377\377\3\377\377"
1825+ "\377\3\377\377\377\3\377\377\377\3\377\377\377\4\377\377\377\4\377\377\377"
1826+ "\5\377\377\377\5\377\377\377\5\377\377\377\6\377\377\377\6\377\377\377\7"
1827+ "\377\377\377\7\377\377\377\7\377\377\377\10\377\377\377\11\377\377\377\11"
1828+ "\377\377\377\11\377\377\377\12\377\377\377\13\377\377\377\13\377\377\377"
1829+ "\14\377\377\377\15\377\377\377\16\377\377\377\17\377\377\377\21\377\377\377"
1830+ "\23\377\377\377\26\377\377\377\27\377\377\377\32\377\377\377\35\377\377\377"
1831+ "\40\377\377\377#\377\377\377&\377\377\377*\377\377\377*\377\377\377)\377"
1832+ "\377\377(\377\377\377&\377\377\377$\377\377\377\"\377\377\377(\377\377\377"
1833+ ".\377\377\3776\377\377\377H\377\377\377j\377\377\377\203\377\377\377C\377"
1834+ "\377\377%\377\377\377-\377\377\3775\377\377\377]\377\377\377\40\377\377\377"
1835+ ";\377\377\377T\377\377\377f\377\377\377k\377\377\377l\377\377\377Y\377\377"
1836+ "\377\221\377\377\377[\377\377\377U\377\377\377a\377\377\377N\377\377\377"
1837+ "<\377\377\3772\377\377\377/\377\377\377,\377\377\377)\377\377\377'\377\377"
1838+ "\377%\377\377\377#\377\377\377!\377\377\377\40\377\377\377\37\377\377\377"
1839+ "\37\377\377\377\37\377\377\377\37\377\377\377\36\377\377\377\36\377\377\377"
1840+ "\36\377\377\377\36\377\377\377\34\377\377\377\33\377\377\377\32\377\377\377"
1841+ "\31\377\377\377\30\377\377\377\26\377\377\377\24\377\377\377\21\377\377\377"
1842+ "\20\377\377\377\16\377\377\377\15\377\377\377\14\377\377\377\12\377\377\377"
1843+ "\11\377\377\377\10\377\377\377\10\377\377\377\7\377\377\377\6\377\377\377"
1844+ "\6\377\377\377\5\377\377\377\5\377\377\377\4\377\377\377\4\377\377\377\3"
1845+ "\377\377\377\3\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\1\377"
1846+ "\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\0\0\0\0\0\0\0\0\0\0"
1847+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1\377\377\377\1\377\377"
1848+ "\377\1\377\377\377\1\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377"
1849+ "\2\377\377\377\3\377\377\377\3\377\377\377\4\377\377\377\4\377\377\377\4"
1850+ "\377\377\377\4\377\377\377\5\377\377\377\5\377\377\377\6\377\377\377\6\377"
1851+ "\377\377\6\377\377\377\7\377\377\377\10\377\377\377\10\377\377\377\10\377"
1852+ "\377\377\11\377\377\377\12\377\377\377\13\377\377\377\14\377\377\377\15\377"
1853+ "\377\377\16\377\377\377\20\377\377\377\22\377\377\377\23\377\377\377\26\377"
1854+ "\377\377\30\377\377\377\33\377\377\377\37\377\377\377!\377\377\377$\377\377"
1855+ "\377%\377\377\377$\377\377\377#\377\377\377\"\377\377\377!\377\377\377\37"
1856+ "\377\377\377\36\377\377\377\"\377\377\377'\377\377\377,\377\377\3774\377"
1857+ "\377\377I\377\377\377f\377\377\377k\377\377\377;\377\377\377\40\377\377\377"
1858+ "%\377\377\377+\377\377\377:\377\377\377U\377\377\377\17\377\377\377<\377"
1859+ "\377\377J\377\377\377Y\377\377\377X\377\377\377k\377\377\377I\377\377\377"
1860+ "b\377\377\377q\377\377\377K\377\377\377K\377\377\377T\377\377\377I\377\377"
1861+ "\377:\377\377\377.\377\377\377+\377\377\377(\377\377\377&\377\377\377$\377"
1862+ "\377\377\"\377\377\377\40\377\377\377\37\377\377\377\36\377\377\377\35\377"
1863+ "\377\377\33\377\377\377\33\377\377\377\33\377\377\377\33\377\377\377\33\377"
1864+ "\377\377\33\377\377\377\31\377\377\377\30\377\377\377\30\377\377\377\27\377"
1865+ "\377\377\26\377\377\377\25\377\377\377\24\377\377\377\24\377\377\377\23\377"
1866+ "\377\377\21\377\377\377\20\377\377\377\16\377\377\377\14\377\377\377\13\377"
1867+ "\377\377\12\377\377\377\11\377\377\377\10\377\377\377\10\377\377\377\7\377"
1868+ "\377\377\6\377\377\377\6\377\377\377\5\377\377\377\4\377\377\377\4\377\377"
1869+ "\377\3\377\377\377\3\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377"
1870+ "\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\0\0\0\0\0\0\0"
1871+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1\377\377\377\1\377\377\377"
1872+ "\1\377\377\377\1\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2"
1873+ "\377\377\377\3\377\377\377\3\377\377\377\4\377\377\377\4\377\377\377\4\377"
1874+ "\377\377\4\377\377\377\5\377\377\377\5\377\377\377\6\377\377\377\6\377\377"
1875+ "\377\6\377\377\377\7\377\377\377\10\377\377\377\11\377\377\377\11\377\377"
1876+ "\377\12\377\377\377\13\377\377\377\14\377\377\377\15\377\377\377\17\377\377"
1877+ "\377\21\377\377\377\22\377\377\377\24\377\377\377\26\377\377\377\30\377\377"
1878+ "\377\34\377\377\377\36\377\377\377\40\377\377\377\40\377\377\377\40\377\377"
1879+ "\377\37\377\377\377\36\377\377\377\35\377\377\377\34\377\377\377\33\377\377"
1880+ "\377\36\377\377\377!\377\377\377&\377\377\377+\377\377\3776\377\377\377H"
1881+ "\377\377\377a\377\377\377Z\377\377\3774\377\377\377\33\377\377\377\40\377"
1882+ "\377\377%\377\377\377*\377\377\377C\377\377\3771\377\377\377\23\377\377\377"
1883+ "7\377\377\377A\377\377\377N\377\377\377N\377\377\377Z\377\377\377O\377\377"
1884+ "\377@\377\377\377f\377\377\377\\\377\377\377@\377\377\377B\377\377\377J\377"
1885+ "\377\377D\377\377\3777\377\377\377-\377\377\377'\377\377\377%\377\377\377"
1886+ "#\377\377\377!\377\377\377\40\377\377\377\36\377\377\377\35\377\377\377\34"
1887+ "\377\377\377\33\377\377\377\32\377\377\377\31\377\377\377\30\377\377\377"
1888+ "\30\377\377\377\27\377\377\377\27\377\377\377\26\377\377\377\26\377\377\377"
1889+ "\25\377\377\377\24\377\377\377\23\377\377\377\22\377\377\377\22\377\377\377"
1890+ "\21\377\377\377\20\377\377\377\17\377\377\377\17\377\377\377\16\377\377\377"
1891+ "\15\377\377\377\14\377\377\377\13\377\377\377\12\377\377\377\11\377\377\377"
1892+ "\10\377\377\377\7\377\377\377\7\377\377\377\6\377\377\377\5\377\377\377\5"
1893+ "\377\377\377\4\377\377\377\4\377\377\377\3\377\377\377\3\377\377\377\2\377"
1894+ "\377\377\2\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\0\0\0"
1895+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1\377\377"
1896+ "\377\1\377\377\377\1\377\377\377\1\377\377\377\2\377\377\377\2\377\377\377"
1897+ "\2\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\4"
1898+ "\377\377\377\4\377\377\377\5\377\377\377\5\377\377\377\6\377\377\377\6\377"
1899+ "\377\377\7\377\377\377\10\377\377\377\10\377\377\377\11\377\377\377\12\377"
1900+ "\377\377\13\377\377\377\14\377\377\377\16\377\377\377\17\377\377\377\21\377"
1901+ "\377\377\22\377\377\377\25\377\377\377\27\377\377\377\31\377\377\377\32\377"
1902+ "\377\377\33\377\377\377\33\377\377\377\33\377\377\377\34\377\377\377\33\377"
1903+ "\377\377\32\377\377\377\31\377\377\377\30\377\377\377\32\377\377\377\35\377"
1904+ "\377\377!\377\377\377$\377\377\377*\377\377\3777\377\377\377G\377\377\377"
1905+ "]\377\377\377N\377\377\377/\377\377\377\30\377\377\377\34\377\377\377\40"
1906+ "\377\377\377$\377\377\377/\377\377\377I\377\377\377\34\377\377\377\27\377"
1907+ "\377\3772\377\377\377;\377\377\377E\377\377\377G\377\377\377L\377\377\377"
1908+ "S\377\377\377:\377\377\377G\377\377\377f\377\377\377M\377\377\3777\377\377"
1909+ "\377<\377\377\377B\377\377\377@\377\377\3775\377\377\377,\377\377\377%\377"
1910+ "\377\377#\377\377\377!\377\377\377\37\377\377\377\36\377\377\377\34\377\377"
1911+ "\377\33\377\377\377\32\377\377\377\31\377\377\377\31\377\377\377\30\377\377"
1912+ "\377\27\377\377\377\25\377\377\377\25\377\377\377\23\377\377\377\23\377\377"
1913+ "\377\22\377\377\377\22\377\377\377\21\377\377\377\21\377\377\377\20\377\377"
1914+ "\377\20\377\377\377\17\377\377\377\17\377\377\377\16\377\377\377\15\377\377"
1915+ "\377\14\377\377\377\14\377\377\377\13\377\377\377\13\377\377\377\12\377\377"
1916+ "\377\11\377\377\377\10\377\377\377\7\377\377\377\7\377\377\377\6\377\377"
1917+ "\377\5\377\377\377\5\377\377\377\4\377\377\377\4\377\377\377\3\377\377\377"
1918+ "\3\377\377\377\2\377\377\377\2\377\377\377\1\377\377\377\1\377\377\377\1"
1919+ "\377\377\377\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377"
1920+ "\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\2\377\377\377\2"
1921+ "\377\377\377\2\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\3\377"
1922+ "\377\377\4\377\377\377\4\377\377\377\5\377\377\377\5\377\377\377\6\377\377"
1923+ "\377\7\377\377\377\7\377\377\377\10\377\377\377\11\377\377\377\12\377\377"
1924+ "\377\13\377\377\377\15\377\377\377\16\377\377\377\17\377\377\377\21\377\377"
1925+ "\377\22\377\377\377\25\377\377\377\26\377\377\377\27\377\377\377\26\377\377"
1926+ "\377\27\377\377\377\27\377\377\377\27\377\377\377\27\377\377\377\27\377\377"
1927+ "\377\26\377\377\377\26\377\377\377\30\377\377\377\32\377\377\377\35\377\377"
1928+ "\377\40\377\377\377#\377\377\377+\377\377\3777\377\377\377F\377\377\377X"
1929+ "\377\377\377D\377\377\377+\377\377\377\26\377\377\377\31\377\377\377\34\377"
1930+ "\377\377\37\377\377\377#\377\377\3774\377\377\3777\377\377\377\20\377\377"
1931+ "\377\32\377\377\377.\377\377\3776\377\377\377>\377\377\377@\377\377\377B"
1932+ "\377\377\377L\377\377\377>\377\377\3771\377\377\377J\377\377\377X\377\377"
1933+ "\377B\377\377\3771\377\377\3776\377\377\377;\377\377\377<\377\377\3773\377"
1934+ "\377\377+\377\377\377$\377\377\377\40\377\377\377\37\377\377\377\35\377\377"
1935+ "\377\34\377\377\377\33\377\377\377\32\377\377\377\31\377\377\377\30\377\377"
1936+ "\377\27\377\377\377\27\377\377\377\25\377\377\377\24\377\377\377\23\377\377"
1937+ "\377\22\377\377\377\20\377\377\377\20\377\377\377\17\377\377\377\17\377\377"
1938+ "\377\16\377\377\377\16\377\377\377\15\377\377\377\15\377\377\377\14\377\377"
1939+ "\377\14\377\377\377\14\377\377\377\13\377\377\377\13\377\377\377\12\377\377"
1940+ "\377\11\377\377\377\11\377\377\377\10\377\377\377\10\377\377\377\7\377\377"
1941+ "\377\7\377\377\377\6\377\377\377\5\377\377\377\5\377\377\377\4\377\377\377"
1942+ "\4\377\377\377\3\377\377\377\3\377\377\377\2\377\377\377\2\377\377\377\1"
1943+ "\377\377\377\1\377\377\377\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1944+ "\0\0\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377"
1945+ "\2\377\377\377\2\377\377\377\2\377\377\377\3\377\377\377\3\377\377\377\3"
1946+ "\377\377\377\4\377\377\377\4\377\377\377\5\377\377\377\5\377\377\377\6\377"
1947+ "\377\377\7\377\377\377\7\377\377\377\10\377\377\377\11\377\377\377\12\377"
1948+ "\377\377\13\377\377\377\15\377\377\377\16\377\377\377\17\377\377\377\20\377"
1949+ "\377\377\22\377\377\377\22\377\377\377\23\377\377\377\23\377\377\377\23\377"
1950+ "\377\377\24\377\377\377\23\377\377\377\24\377\377\377\23\377\377\377\23\377"
1951+ "\377\377\23\377\377\377\26\377\377\377\27\377\377\377\32\377\377\377\34\377"
1952+ "\377\377\37\377\377\377#\377\377\377+\377\377\3776\377\377\377D\377\377\377"
1953+ "S\377\377\377<\377\377\377'\377\377\377\24\377\377\377\26\377\377\377\31"
1954+ "\377\377\377\33\377\377\377\36\377\377\377'\377\377\3779\377\377\377%\377"
1955+ "\377\377\12\377\377\377\33\377\377\377+\377\377\3771\377\377\3778\377\377"
1956+ "\377;\377\377\377:\377\377\377C\377\377\377A\377\377\3771\377\377\3777\377"
1957+ "\377\377L\377\377\377K\377\377\3779\377\377\377-\377\377\3772\377\377\377"
1958+ "6\377\377\3779\377\377\3771\377\377\377)\377\377\377$\377\377\377\37\377"
1959+ "\377\377\35\377\377\377\34\377\377\377\33\377\377\377\32\377\377\377\31\377"
1960+ "\377\377\30\377\377\377\27\377\377\377\25\377\377\377\24\377\377\377\23\377"
1961+ "\377\377\22\377\377\377\21\377\377\377\20\377\377\377\20\377\377\377\16\377"
1962+ "\377\377\16\377\377\377\15\377\377\377\15\377\377\377\15\377\377\377\14\377"
1963+ "\377\377\14\377\377\377\13\377\377\377\13\377\377\377\12\377\377\377\11\377"
1964+ "\377\377\11\377\377\377\11\377\377\377\10\377\377\377\10\377\377\377\7\377"
1965+ "\377\377\7\377\377\377\6\377\377\377\6\377\377\377\5\377\377\377\5\377\377"
1966+ "\377\4\377\377\377\4\377\377\377\3\377\377\377\3\377\377\377\2\377\377\377"
1967+ "\2\377\377\377\1\377\377\377\1\377\377\377\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1968+ "\0\0\0\0\0\0\0\0\0\0\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377"
1969+ "\1\377\377\377\2\377\377\377\2\377\377\377\3\377\377\377\3\377\377\377\3"
1970+ "\377\377\377\4\377\377\377\4\377\377\377\5\377\377\377\5\377\377\377\6\377"
1971+ "\377\377\7\377\377\377\7\377\377\377\10\377\377\377\11\377\377\377\12\377"
1972+ "\377\377\13\377\377\377\14\377\377\377\15\377\377\377\17\377\377\377\17\377"
1973+ "\377\377\17\377\377\377\20\377\377\377\20\377\377\377\20\377\377\377\21\377"
1974+ "\377\377\20\377\377\377\21\377\377\377\20\377\377\377\21\377\377\377\20\377"
1975+ "\377\377\23\377\377\377\24\377\377\377\27\377\377\377\31\377\377\377\33\377"
1976+ "\377\377\36\377\377\377#\377\377\377,\377\377\3776\377\377\377B\377\377\377"
1977+ "I\377\377\3776\377\377\377$\377\377\377\24\377\377\377\24\377\377\377\26"
1978+ "\377\377\377\31\377\377\377\33\377\377\377\35\377\377\377+\377\377\3779\377"
1979+ "\377\377\30\377\377\377\14\377\377\377\35\377\377\377(\377\377\377-\377\377"
1980+ "\3773\377\377\3777\377\377\3776\377\377\377;\377\377\377C\377\377\3773\377"
1981+ "\377\377(\377\377\377:\377\377\377L\377\377\377A\377\377\3773\377\377\377"
1982+ "*\377\377\377.\377\377\3771\377\377\3774\377\377\377.\377\377\377(\377\377"
1983+ "\377#\377\377\377\36\377\377\377\33\377\377\377\32\377\377\377\31\377\377"
1984+ "\377\30\377\377\377\27\377\377\377\27\377\377\377\25\377\377\377\24\377\377"
1985+ "\377\23\377\377\377\22\377\377\377\20\377\377\377\20\377\377\377\17\377\377"
1986+ "\377\16\377\377\377\15\377\377\377\15\377\377\377\14\377\377\377\13\377\377"
1987+ "\377\13\377\377\377\12\377\377\377\12\377\377\377\11\377\377\377\11\377\377"
1988+ "\377\11\377\377\377\10\377\377\377\10\377\377\377\7\377\377\377\7\377\377"
1989+ "\377\7\377\377\377\6\377\377\377\6\377\377\377\6\377\377\377\5\377\377\377"
1990+ "\4\377\377\377\4\377\377\377\4\377\377\377\3\377\377\377\3\377\377\377\3"
1991+ "\377\377\377\2\377\377\377\2\377\377\377\1\377\377\377\1\0\0\0\0\0\0\0\0"
1992+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1\377\377\377\1\377\377\377"
1993+ "\1\377\377\377\1\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\3"
1994+ "\377\377\377\3\377\377\377\4\377\377\377\5\377\377\377\5\377\377\377\6\377"
1995+ "\377\377\7\377\377\377\7\377\377\377\10\377\377\377\11\377\377\377\12\377"
1996+ "\377\377\13\377\377\377\14\377\377\377\14\377\377\377\15\377\377\377\15\377"
1997+ "\377\377\15\377\377\377\16\377\377\377\16\377\377\377\16\377\377\377\16\377"
1998+ "\377\377\16\377\377\377\16\377\377\377\16\377\377\377\16\377\377\377\20\377"
1999+ "\377\377\22\377\377\377\23\377\377\377\26\377\377\377\30\377\377\377\33\377"
2000+ "\377\377\36\377\377\377$\377\377\377,\377\377\3775\377\377\377@\377\377\377"
2001+ "A\377\377\3771\377\377\377!\377\377\377\23\377\377\377\22\377\377\377\24"
2002+ "\377\377\377\26\377\377\377\30\377\377\377\32\377\377\377!\377\377\377.\377"
2003+ "\377\377)\377\377\377\20\377\377\377\16\377\377\377\35\377\377\377&\377\377"
2004+ "\377*\377\377\377/\377\377\3773\377\377\3772\377\377\3775\377\377\377;\377"
2005+ "\377\3776\377\377\377*\377\377\377,\377\377\377<\377\377\377H\377\377\377"
2006+ "9\377\377\377-\377\377\377'\377\377\377*\377\377\377.\377\377\3770\377\377"
2007+ "\377-\377\377\377'\377\377\377\"\377\377\377\36\377\377\377\32\377\377\377"
2008+ "\31\377\377\377\30\377\377\377\27\377\377\377\25\377\377\377\25\377\377\377"
2009+ "\23\377\377\377\22\377\377\377\22\377\377\377\20\377\377\377\20\377\377\377"
2010+ "\16\377\377\377\16\377\377\377\15\377\377\377\14\377\377\377\13\377\377\377"
2011+ "\13\377\377\377\12\377\377\377\11\377\377\377\11\377\377\377\11\377\377\377"
2012+ "\10\377\377\377\10\377\377\377\10\377\377\377\7\377\377\377\7\377\377\377"
2013+ "\7\377\377\377\6\377\377\377\6\377\377\377\5\377\377\377\5\377\377\377\5"
2014+ "\377\377\377\4\377\377\377\4\377\377\377\3\377\377\377\3\377\377\377\3\377"
2015+ "\377\377\2\377\377\377\2\377\377\377\2\377\377\377\1\377\377\377\1\0\0\0"
2016+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1\377\377\377\1\377"
2017+ "\377\377\1\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\3\377\377"
2018+ "\377\3\377\377\377\4\377\377\377\4\377\377\377\5\377\377\377\5\377\377\377"
2019+ "\6\377\377\377\7\377\377\377\10\377\377\377\10\377\377\377\11\377\377\377"
2020+ "\12\377\377\377\12\377\377\377\13\377\377\377\13\377\377\377\13\377\377\377"
2021+ "\13\377\377\377\14\377\377\377\14\377\377\377\14\377\377\377\14\377\377\377"
2022+ "\15\377\377\377\14\377\377\377\15\377\377\377\16\377\377\377\17\377\377\377"
2023+ "\20\377\377\377\23\377\377\377\24\377\377\377\26\377\377\377\31\377\377\377"
2024+ "\36\377\377\377$\377\377\377+\377\377\3774\377\377\377>\377\377\377;\377"
2025+ "\377\377-\377\377\377\37\377\377\377\23\377\377\377\21\377\377\377\22\377"
2026+ "\377\377\24\377\377\377\26\377\377\377\30\377\377\377\32\377\377\377$\377"
2027+ "\377\3771\377\377\377\35\377\377\377\12\377\377\377\17\377\377\377\36\377"
2028+ "\377\377#\377\377\377'\377\377\377,\377\377\377/\377\377\377/\377\377\377"
2029+ "0\377\377\3776\377\377\3777\377\377\377,\377\377\377\"\377\377\377/\377\377"
2030+ "\377=\377\377\377?\377\377\3773\377\377\377)\377\377\377%\377\377\377(\377"
2031+ "\377\377*\377\377\377-\377\377\377+\377\377\377&\377\377\377!\377\377\377"
2032+ "\35\377\377\377\32\377\377\377\30\377\377\377\27\377\377\377\25\377\377\377"
2033+ "\24\377\377\377\23\377\377\377\22\377\377\377\20\377\377\377\20\377\377\377"
2034+ "\17\377\377\377\16\377\377\377\15\377\377\377\15\377\377\377\14\377\377\377"
2035+ "\13\377\377\377\13\377\377\377\12\377\377\377\11\377\377\377\11\377\377\377"
2036+ "\10\377\377\377\10\377\377\377\7\377\377\377\7\377\377\377\7\377\377\377"
2037+ "\6\377\377\377\6\377\377\377\6\377\377\377\5\377\377\377\5\377\377\377\5"
2038+ "\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377\3\377\377\377\3\377"
2039+ "\377\377\3\377\377\377\2\377\377\377\2\377\377\377\1\377\377\377\1\377\377"
2040+ "\377\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1\377"
2041+ "\377\377\1\377\377\377\1\377\377\377\2\377\377\377\2\377\377\377\3\377\377"
2042+ "\377\3\377\377\377\3\377\377\377\4\377\377\377\4\377\377\377\5\377\377\377"
2043+ "\6\377\377\377\6\377\377\377\7\377\377\377\10\377\377\377\10\377\377\377"
2044+ "\10\377\377\377\11\377\377\377\11\377\377\377\11\377\377\377\12\377\377\377"
2045+ "\12\377\377\377\13\377\377\377\12\377\377\377\13\377\377\377\12\377\377\377"
2046+ "\13\377\377\377\13\377\377\377\14\377\377\377\15\377\377\377\16\377\377\377"
2047+ "\20\377\377\377\21\377\377\377\23\377\377\377\26\377\377\377\30\377\377\377"
2048+ "\36\377\377\377#\377\377\377+\377\377\3773\377\377\377<\377\377\3775\377"
2049+ "\377\377)\377\377\377\35\377\377\377\22\377\377\377\20\377\377\377\21\377"
2050+ "\377\377\22\377\377\377\24\377\377\377\26\377\377\377\27\377\377\377\35\377"
2051+ "\377\377'\377\377\377*\377\377\377\25\377\377\377\7\377\377\377\20\377\377"
2052+ "\377\36\377\377\377!\377\377\377%\377\377\377)\377\377\377,\377\377\377,"
2053+ "\377\377\377,\377\377\3771\377\377\3775\377\377\377-\377\377\377$\377\377"
2054+ "\377%\377\377\3771\377\377\377=\377\377\3778\377\377\377.\377\377\377%\377"
2055+ "\377\377\"\377\377\377%\377\377\377'\377\377\377*\377\377\377)\377\377\377"
2056+ "$\377\377\377\40\377\377\377\35\377\377\377\32\377\377\377\26\377\377\377"
2057+ "\25\377\377\377\23\377\377\377\22\377\377\377\22\377\377\377\20\377\377\377"
2058+ "\20\377\377\377\17\377\377\377\16\377\377\377\15\377\377\377\14\377\377\377"
2059+ "\13\377\377\377\13\377\377\377\13\377\377\377\12\377\377\377\11\377\377\377"
2060+ "\11\377\377\377\10\377\377\377\10\377\377\377\7\377\377\377\6\377\377\377"
2061+ "\6\377\377\377\6\377\377\377\5\377\377\377\5\377\377\377\5\377\377\377\4"
2062+ "\377\377\377\4\377\377\377\4\377\377\377\3\377\377\377\3\377\377\377\3\377"
2063+ "\377\377\3\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\1\377\377"
2064+ "\377\1\377\377\377\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377"
2065+ "\377\377\1\377\377\377\1\377\377\377\1\377\377\377\2\377\377\377\2\377\377"
2066+ "\377\3\377\377\377\3\377\377\377\4\377\377\377\4\377\377\377\5\377\377\377"
2067+ "\5\377\377\377\6\377\377\377\6\377\377\377\7\377\377\377\7\377\377\377\7"
2068+ "\377\377\377\7\377\377\377\10\377\377\377\10\377\377\377\11\377\377\377\10"
2069+ "\377\377\377\11\377\377\377\11\377\377\377\11\377\377\377\11\377\377\377"
2070+ "\11\377\377\377\12\377\377\377\14\377\377\377\15\377\377\377\16\377\377\377"
2071+ "\17\377\377\377\20\377\377\377\22\377\377\377\24\377\377\377\27\377\377\377"
2072+ "\34\377\377\377\"\377\377\377(\377\377\3771\377\377\377:\377\377\3771\377"
2073+ "\377\377&\377\377\377\33\377\377\377\22\377\377\377\16\377\377\377\20\377"
2074+ "\377\377\21\377\377\377\22\377\377\377\24\377\377\377\25\377\377\377\27\377"
2075+ "\377\377\37\377\377\377)\377\377\377\40\377\377\377\17\377\377\377\10\377"
2076+ "\377\377\21\377\377\377\35\377\377\377\37\377\377\377\"\377\377\377&\377"
2077+ "\377\377)\377\377\377*\377\377\377)\377\377\377,\377\377\3771\377\377\377"
2078+ "/\377\377\377&\377\377\377\37\377\377\377'\377\377\3772\377\377\377=\377"
2079+ "\377\3773\377\377\377*\377\377\377\"\377\377\377!\377\377\377#\377\377\377"
2080+ "%\377\377\377'\377\377\377'\377\377\377#\377\377\377\37\377\377\377\33\377"
2081+ "\377\377\30\377\377\377\25\377\377\377\23\377\377\377\22\377\377\377\21\377"
2082+ "\377\377\20\377\377\377\20\377\377\377\16\377\377\377\15\377\377\377\15\377"
2083+ "\377\377\14\377\377\377\13\377\377\377\13\377\377\377\12\377\377\377\11\377"
2084+ "\377\377\11\377\377\377\10\377\377\377\10\377\377\377\7\377\377\377\7\377"
2085+ "\377\377\6\377\377\377\6\377\377\377\6\377\377\377\5\377\377\377\5\377\377"
2086+ "\377\4\377\377\377\4\377\377\377\4\377\377\377\3\377\377\377\3\377\377\377"
2087+ "\3\377\377\377\3\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\1"
2088+ "\377\377\377\1\377\377\377\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2089+ "\0\0\0\0\0\0\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\2\377"
2090+ "\377\377\2\377\377\377\3\377\377\377\3\377\377\377\4\377\377\377\4\377\377"
2091+ "\377\5\377\377\377\5\377\377\377\5\377\377\377\6\377\377\377\6\377\377\377"
2092+ "\6\377\377\377\6\377\377\377\7\377\377\377\7\377\377\377\7\377\377\377\7"
2093+ "\377\377\377\10\377\377\377\10\377\377\377\10\377\377\377\10\377\377\377"
2094+ "\11\377\377\377\12\377\377\377\13\377\377\377\13\377\377\377\15\377\377\377"
2095+ "\16\377\377\377\20\377\377\377\21\377\377\377\23\377\377\377\27\377\377\377"
2096+ "\33\377\377\377!\377\377\377'\377\377\377.\377\377\3775\377\377\377-\377"
2097+ "\377\377#\377\377\377\32\377\377\377\21\377\377\377\15\377\377\377\17\377"
2098+ "\377\377\20\377\377\377\21\377\377\377\22\377\377\377\23\377\377\377\25\377"
2099+ "\377\377\32\377\377\377!\377\377\377*\377\377\377\30\377\377\377\12\377\377"
2100+ "\377\11\377\377\377\22\377\377\377\33\377\377\377\36\377\377\377!\377\377"
2101+ "\377$\377\377\377'\377\377\377'\377\377\377'\377\377\377)\377\377\377-\377"
2102+ "\377\3770\377\377\377'\377\377\377\40\377\377\377\40\377\377\377)\377\377"
2103+ "\3773\377\377\3777\377\377\377.\377\377\377&\377\377\377\40\377\377\377\37"
2104+ "\377\377\377!\377\377\377#\377\377\377%\377\377\377&\377\377\377!\377\377"
2105+ "\377\36\377\377\377\31\377\377\377\27\377\377\377\24\377\377\377\21\377\377"
2106+ "\377\20\377\377\377\20\377\377\377\16\377\377\377\16\377\377\377\15\377\377"
2107+ "\377\14\377\377\377\13\377\377\377\13\377\377\377\13\377\377\377\12\377\377"
2108+ "\377\11\377\377\377\11\377\377\377\10\377\377\377\10\377\377\377\7\377\377"
2109+ "\377\6\377\377\377\6\377\377\377\6\377\377\377\5\377\377\377\5\377\377\377"
2110+ "\4\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377\3\377\377\377\3"
2111+ "\377\377\377\3\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\1\377"
2112+ "\377\377\1\377\377\377\1\377\377\377\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2113+ "\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1\377\377\377\1\377\377\377\1\377\377"
2114+ "\377\2\377\377\377\2\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377"
2115+ "\4\377\377\377\4\377\377\377\4\377\377\377\5\377\377\377\5\377\377\377\5"
2116+ "\377\377\377\5\377\377\377\6\377\377\377\6\377\377\377\6\377\377\377\6\377"
2117+ "\377\377\7\377\377\377\6\377\377\377\7\377\377\377\10\377\377\377\10\377"
2118+ "\377\377\11\377\377\377\12\377\377\377\13\377\377\377\14\377\377\377\15\377"
2119+ "\377\377\16\377\377\377\20\377\377\377\22\377\377\377\26\377\377\377\32\377"
2120+ "\377\377\37\377\377\377$\377\377\377+\377\377\3770\377\377\377(\377\377\377"
2121+ "\40\377\377\377\31\377\377\377\21\377\377\377\15\377\377\377\16\377\377\377"
2122+ "\17\377\377\377\20\377\377\377\21\377\377\377\22\377\377\377\23\377\377\377"
2123+ "\25\377\377\377\34\377\377\377#\377\377\377!\377\377\377\22\377\377\377\7"
2124+ "\377\377\377\12\377\377\377\23\377\377\377\32\377\377\377\34\377\377\377"
2125+ "\37\377\377\377\"\377\377\377$\377\377\377%\377\377\377%\377\377\377&\377"
2126+ "\377\377)\377\377\377,\377\377\377(\377\377\377\"\377\377\377\34\377\377"
2127+ "\377\"\377\377\377*\377\377\3773\377\377\3771\377\377\377*\377\377\377#\377"
2128+ "\377\377\35\377\377\377\35\377\377\377\37\377\377\377!\377\377\377\"\377"
2129+ "\377\377#\377\377\377\37\377\377\377\34\377\377\377\30\377\377\377\25\377"
2130+ "\377\377\23\377\377\377\21\377\377\377\17\377\377\377\16\377\377\377\16\377"
2131+ "\377\377\15\377\377\377\14\377\377\377\13\377\377\377\13\377\377\377\12\377"
2132+ "\377\377\11\377\377\377\11\377\377\377\10\377\377\377\10\377\377\377\7\377"
2133+ "\377\377\7\377\377\377\6\377\377\377\6\377\377\377\6\377\377\377\5\377\377"
2134+ "\377\5\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377\3\377\377\377"
2135+ "\3\377\377\377\3\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2"
2136+ "\377\377\377\1\377\377\377\1\377\377\377\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2137+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1\377\377\377\1\377\377\377"
2138+ "\1\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\3\377\377\377\3"
2139+ "\377\377\377\3\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377\4\377"
2140+ "\377\377\5\377\377\377\5\377\377\377\5\377\377\377\5\377\377\377\5\377\377"
2141+ "\377\6\377\377\377\6\377\377\377\6\377\377\377\7\377\377\377\10\377\377\377"
2142+ "\10\377\377\377\11\377\377\377\12\377\377\377\13\377\377\377\14\377\377\377"
2143+ "\16\377\377\377\17\377\377\377\22\377\377\377\25\377\377\377\31\377\377\377"
2144+ "\35\377\377\377\"\377\377\377(\377\377\377*\377\377\377$\377\377\377\35\377"
2145+ "\377\377\26\377\377\377\17\377\377\377\14\377\377\377\15\377\377\377\16\377"
2146+ "\377\377\17\377\377\377\20\377\377\377\21\377\377\377\22\377\377\377\23\377"
2147+ "\377\377\27\377\377\377\35\377\377\377$\377\377\377\32\377\377\377\16\377"
2148+ "\377\377\6\377\377\377\13\377\377\377\23\377\377\377\31\377\377\377\33\377"
2149+ "\377\377\35\377\377\377\40\377\377\377\"\377\377\377#\377\377\377#\377\377"
2150+ "\377#\377\377\377&\377\377\377)\377\377\377)\377\377\377#\377\377\377\35"
2151+ "\377\377\377\34\377\377\377#\377\377\377+\377\377\3773\377\377\377-\377\377"
2152+ "\377&\377\377\377\40\377\377\377\33\377\377\377\34\377\377\377\36\377\377"
2153+ "\377\36\377\377\377\37\377\377\377\40\377\377\377\35\377\377\377\32\377\377"
2154+ "\377\27\377\377\377\24\377\377\377\22\377\377\377\20\377\377\377\16\377\377"
2155+ "\377\16\377\377\377\14\377\377\377\14\377\377\377\13\377\377\377\13\377\377"
2156+ "\377\12\377\377\377\11\377\377\377\11\377\377\377\10\377\377\377\10\377\377"
2157+ "\377\7\377\377\377\6\377\377\377\6\377\377\377\6\377\377\377\6\377\377\377"
2158+ "\5\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377\3"
2159+ "\377\377\377\3\377\377\377\3\377\377\377\2\377\377\377\2\377\377\377\2\377"
2160+ "\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\0\0\0\0\0\0\0\0\0\0"
2161+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1\377\377"
2162+ "\377\1\377\377\377\1\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377"
2163+ "\3\377\377\377\3\377\377\377\3\377\377\377\4\377\377\377\4\377\377\377\4"
2164+ "\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377\5\377"
2165+ "\377\377\5\377\377\377\6\377\377\377\7\377\377\377\7\377\377\377\10\377\377"
2166+ "\377\11\377\377\377\12\377\377\377\13\377\377\377\14\377\377\377\15\377\377"
2167+ "\377\17\377\377\377\21\377\377\377\24\377\377\377\30\377\377\377\34\377\377"
2168+ "\377!\377\377\377&\377\377\377%\377\377\377\40\377\377\377\32\377\377\377"
2169+ "\24\377\377\377\17\377\377\377\12\377\377\377\13\377\377\377\15\377\377\377"
2170+ "\16\377\377\377\17\377\377\377\17\377\377\377\20\377\377\377\21\377\377\377"
2171+ "\23\377\377\377\31\377\377\377\37\377\377\377\"\377\377\377\25\377\377\377"
2172+ "\12\377\377\377\6\377\377\377\14\377\377\377\23\377\377\377\30\377\377\377"
2173+ "\32\377\377\377\34\377\377\377\36\377\377\377\40\377\377\377\"\377\377\377"
2174+ "!\377\377\377!\377\377\377#\377\377\377&\377\377\377)\377\377\377$\377\377"
2175+ "\377\36\377\377\377\31\377\377\377\35\377\377\377$\377\377\377+\377\377\377"
2176+ "0\377\377\377)\377\377\377#\377\377\377\36\377\377\377\32\377\377\377\32"
2177+ "\377\377\377\33\377\377\377\34\377\377\377\34\377\377\377\35\377\377\377"
2178+ "\33\377\377\377\30\377\377\377\26\377\377\377\23\377\377\377\20\377\377\377"
2179+ "\17\377\377\377\15\377\377\377\14\377\377\377\13\377\377\377\13\377\377\377"
2180+ "\12\377\377\377\11\377\377\377\11\377\377\377\11\377\377\377\10\377\377\377"
2181+ "\7\377\377\377\7\377\377\377\6\377\377\377\6\377\377\377\6\377\377\377\5"
2182+ "\377\377\377\5\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377\4\377"
2183+ "\377\377\3\377\377\377\3\377\377\377\2\377\377\377\2\377\377\377\2\377\377"
2184+ "\377\1\377\377\377\1\377\377\377\1\377\377\377\1\0\0\0\0\0\0\0\0\0\0\0\0"
2185+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1\377"
2186+ "\377\377\1\377\377\377\1\377\377\377\2\377\377\377\2\377\377\377\2\377\377"
2187+ "\377\2\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377"
2188+ "\3\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377\5"
2189+ "\377\377\377\5\377\377\377\6\377\377\377\6\377\377\377\7\377\377\377\10\377"
2190+ "\377\377\11\377\377\377\11\377\377\377\12\377\377\377\14\377\377\377\16\377"
2191+ "\377\377\21\377\377\377\23\377\377\377\27\377\377\377\33\377\377\377\36\377"
2192+ "\377\377#\377\377\377!\377\377\377\35\377\377\377\27\377\377\377\22\377\377"
2193+ "\377\15\377\377\377\12\377\377\377\12\377\377\377\13\377\377\377\14\377\377"
2194+ "\377\16\377\377\377\16\377\377\377\17\377\377\377\20\377\377\377\21\377\377"
2195+ "\377\25\377\377\377\32\377\377\377\40\377\377\377\33\377\377\377\20\377\377"
2196+ "\377\10\377\377\377\7\377\377\377\15\377\377\377\24\377\377\377\27\377\377"
2197+ "\377\31\377\377\377\33\377\377\377\35\377\377\377\37\377\377\377\40\377\377"
2198+ "\377\40\377\377\377\40\377\377\377!\377\377\377$\377\377\377&\377\377\377"
2199+ "$\377\377\377\37\377\377\377\32\377\377\377\30\377\377\377\37\377\377\377"
2200+ "%\377\377\377+\377\377\377,\377\377\377&\377\377\377\40\377\377\377\33\377"
2201+ "\377\377\27\377\377\377\27\377\377\377\31\377\377\377\31\377\377\377\31\377"
2202+ "\377\377\32\377\377\377\31\377\377\377\26\377\377\377\24\377\377\377\22\377"
2203+ "\377\377\20\377\377\377\16\377\377\377\15\377\377\377\13\377\377\377\13\377"
2204+ "\377\377\12\377\377\377\11\377\377\377\11\377\377\377\10\377\377\377\10\377"
2205+ "\377\377\7\377\377\377\7\377\377\377\6\377\377\377\6\377\377\377\6\377\377"
2206+ "\377\5\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377"
2207+ "\3\377\377\377\3\377\377\377\3\377\377\377\2\377\377\377\2\377\377\377\2"
2208+ "\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\0\0\0\0\0\0\0\0"
2209+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2210+ "\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\2\377\377\377\2\377"
2211+ "\377\377\2\377\377\377\2\377\377\377\2\377\377\377\3\377\377\377\3\377\377"
2212+ "\377\3\377\377\377\3\377\377\377\4\377\377\377\4\377\377\377\5\377\377\377"
2213+ "\5\377\377\377\6\377\377\377\6\377\377\377\7\377\377\377\10\377\377\377\10"
2214+ "\377\377\377\11\377\377\377\12\377\377\377\13\377\377\377\15\377\377\377"
2215+ "\20\377\377\377\22\377\377\377\25\377\377\377\31\377\377\377\34\377\377\377"
2216+ "!\377\377\377\36\377\377\377\32\377\377\377\25\377\377\377\21\377\377\377"
2217+ "\15\377\377\377\10\377\377\377\12\377\377\377\12\377\377\377\13\377\377\377"
2218+ "\14\377\377\377\15\377\377\377\15\377\377\377\17\377\377\377\20\377\377\377"
2219+ "\22\377\377\377\26\377\377\377\33\377\377\377!\377\377\377\26\377\377\377"
2220+ "\15\377\377\377\6\377\377\377\10\377\377\377\15\377\377\377\24\377\377\377"
2221+ "\26\377\377\377\30\377\377\377\31\377\377\377\33\377\377\377\35\377\377\377"
2222+ "\37\377\377\377\37\377\377\377\36\377\377\377\37\377\377\377!\377\377\377"
2223+ "$\377\377\377%\377\377\377\40\377\377\377\33\377\377\377\27\377\377\377\32"
2224+ "\377\377\377\40\377\377\377&\377\377\377+\377\377\377'\377\377\377\"\377"
2225+ "\377\377\34\377\377\377\30\377\377\377\25\377\377\377\25\377\377\377\27\377"
2226+ "\377\377\27\377\377\377\27\377\377\377\30\377\377\377\27\377\377\377\25\377"
2227+ "\377\377\23\377\377\377\21\377\377\377\17\377\377\377\15\377\377\377\14\377"
2228+ "\377\377\12\377\377\377\11\377\377\377\11\377\377\377\11\377\377\377\10\377"
2229+ "\377\377\7\377\377\377\7\377\377\377\6\377\377\377\6\377\377\377\6\377\377"
2230+ "\377\5\377\377\377\5\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377"
2231+ "\3\377\377\377\3\377\377\377\3\377\377\377\2\377\377\377\2\377\377\377\2"
2232+ "\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\0"
2233+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2234+ "\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1\377\377\377\1\377\377\377\1\377\377"
2235+ "\377\1\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377"
2236+ "\3\377\377\377\3\377\377\377\3\377\377\377\4\377\377\377\4\377\377\377\5"
2237+ "\377\377\377\5\377\377\377\6\377\377\377\6\377\377\377\7\377\377\377\10\377"
2238+ "\377\377\10\377\377\377\11\377\377\377\13\377\377\377\15\377\377\377\17\377"
2239+ "\377\377\21\377\377\377\24\377\377\377\27\377\377\377\33\377\377\377\36\377"
2240+ "\377\377\32\377\377\377\27\377\377\377\24\377\377\377\17\377\377\377\13\377"
2241+ "\377\377\10\377\377\377\10\377\377\377\11\377\377\377\12\377\377\377\13\377"
2242+ "\377\377\14\377\377\377\14\377\377\377\15\377\377\377\16\377\377\377\20\377"
2243+ "\377\377\23\377\377\377\27\377\377\377\34\377\377\377\34\377\377\377\22\377"
2244+ "\377\377\12\377\377\377\5\377\377\377\10\377\377\377\15\377\377\377\24\377"
2245+ "\377\377\25\377\377\377\27\377\377\377\30\377\377\377\32\377\377\377\34\377"
2246+ "\377\377\35\377\377\377\35\377\377\377\35\377\377\377\35\377\377\377\37\377"
2247+ "\377\377!\377\377\377#\377\377\377\40\377\377\377\34\377\377\377\30\377\377"
2248+ "\377\26\377\377\377\33\377\377\377\40\377\377\377%\377\377\377)\377\377\377"
2249+ "#\377\377\377\37\377\377\377\32\377\377\377\26\377\377\377\23\377\377\377"
2250+ "\24\377\377\377\25\377\377\377\25\377\377\377\26\377\377\377\26\377\377\377"
2251+ "\25\377\377\377\23\377\377\377\21\377\377\377\17\377\377\377\16\377\377\377"
2252+ "\14\377\377\377\13\377\377\377\12\377\377\377\11\377\377\377\10\377\377\377"
2253+ "\10\377\377\377\7\377\377\377\7\377\377\377\6\377\377\377\6\377\377\377\6"
2254+ "\377\377\377\5\377\377\377\5\377\377\377\4\377\377\377\4\377\377\377\4\377"
2255+ "\377\377\3\377\377\377\3\377\377\377\3\377\377\377\2\377\377\377\2\377\377"
2256+ "\377\2\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\0\0\0\0\0"
2257+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2258+ "\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1\377\377\377\1\377\377\377\1\377\377"
2259+ "\377\1\377\377\377\1\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377"
2260+ "\2\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\4\377\377\377\4"
2261+ "\377\377\377\5\377\377\377\6\377\377\377\6\377\377\377\7\377\377\377\10\377"
2262+ "\377\377\11\377\377\377\12\377\377\377\14\377\377\377\16\377\377\377\20\377"
2263+ "\377\377\23\377\377\377\26\377\377\377\31\377\377\377\33\377\377\377\27\377"
2264+ "\377\377\24\377\377\377\21\377\377\377\16\377\377\377\13\377\377\377\10\377"
2265+ "\377\377\10\377\377\377\10\377\377\377\11\377\377\377\11\377\377\377\12\377"
2266+ "\377\377\14\377\377\377\14\377\377\377\15\377\377\377\16\377\377\377\20\377"
2267+ "\377\377\23\377\377\377\30\377\377\377\35\377\377\377\27\377\377\377\17\377"
2268+ "\377\377\10\377\377\377\5\377\377\377\11\377\377\377\16\377\377\377\23\377"
2269+ "\377\377\25\377\377\377\26\377\377\377\27\377\377\377\31\377\377\377\33\377"
2270+ "\377\377\34\377\377\377\34\377\377\377\34\377\377\377\34\377\377\377\35\377"
2271+ "\377\377\37\377\377\377!\377\377\377!\377\377\377\35\377\377\377\31\377\377"
2272+ "\377\25\377\377\377\26\377\377\377\33\377\377\377\37\377\377\377$\377\377"
2273+ "\377$\377\377\377\40\377\377\377\33\377\377\377\30\377\377\377\24\377\377"
2274+ "\377\22\377\377\377\23\377\377\377\23\377\377\377\24\377\377\377\23\377\377"
2275+ "\377\23\377\377\377\24\377\377\377\22\377\377\377\20\377\377\377\17\377\377"
2276+ "\377\15\377\377\377\14\377\377\377\12\377\377\377\11\377\377\377\10\377\377"
2277+ "\377\7\377\377\377\7\377\377\377\7\377\377\377\6\377\377\377\6\377\377\377"
2278+ "\5\377\377\377\5\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377\4"
2279+ "\377\377\377\3\377\377\377\3\377\377\377\2\377\377\377\2\377\377\377\2\377"
2280+ "\377\377\2\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\0\0\0"
2281+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2282+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1\377\377\377\1\377\377\377"
2283+ "\1\377\377\377\1\377\377\377\1\377\377\377\2\377\377\377\2\377\377\377\2"
2284+ "\377\377\377\3\377\377\377\3\377\377\377\4\377\377\377\4\377\377\377\5\377"
2285+ "\377\377\5\377\377\377\6\377\377\377\6\377\377\377\7\377\377\377\10\377\377"
2286+ "\377\11\377\377\377\13\377\377\377\15\377\377\377\17\377\377\377\21\377\377"
2287+ "\377\24\377\377\377\27\377\377\377\30\377\377\377\26\377\377\377\23\377\377"
2288+ "\377\20\377\377\377\15\377\377\377\12\377\377\377\7\377\377\377\7\377\377"
2289+ "\377\10\377\377\377\10\377\377\377\11\377\377\377\11\377\377\377\12\377\377"
2290+ "\377\13\377\377\377\13\377\377\377\15\377\377\377\15\377\377\377\21\377\377"
2291+ "\377\24\377\377\377\30\377\377\377\33\377\377\377\23\377\377\377\14\377\377"
2292+ "\377\6\377\377\377\6\377\377\377\11\377\377\377\16\377\377\377\23\377\377"
2293+ "\377\24\377\377\377\25\377\377\377\26\377\377\377\30\377\377\377\31\377\377"
2294+ "\377\33\377\377\377\33\377\377\377\33\377\377\377\33\377\377\377\34\377\377"
2295+ "\377\35\377\377\377\37\377\377\377!\377\377\377\35\377\377\377\31\377\377"
2296+ "\377\25\377\377\377\23\377\377\377\27\377\377\377\33\377\377\377\36\377\377"
2297+ "\377\"\377\377\377!\377\377\377\34\377\377\377\31\377\377\377\25\377\377"
2298+ "\377\22\377\377\377\21\377\377\377\21\377\377\377\22\377\377\377\22\377\377"
2299+ "\377\21\377\377\377\22\377\377\377\22\377\377\377\21\377\377\377\17\377\377"
2300+ "\377\15\377\377\377\14\377\377\377\12\377\377\377\12\377\377\377\11\377\377"
2301+ "\377\10\377\377\377\7\377\377\377\6\377\377\377\6\377\377\377\6\377\377\377"
2302+ "\5\377\377\377\5\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377\3"
2303+ "\377\377\377\3\377\377\377\3\377\377\377\2\377\377\377\2\377\377\377\2\377"
2304+ "\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\0\0\0\0\0\0\0\0\0\0"
2305+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2306+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1\377\377\377\1\377\377"
2307+ "\377\1\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377"
2308+ "\3\377\377\377\3\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377\5"
2309+ "\377\377\377\5\377\377\377\7\377\377\377\10\377\377\377\11\377\377\377\13"
2310+ "\377\377\377\14\377\377\377\16\377\377\377\20\377\377\377\22\377\377\377"
2311+ "\25\377\377\377\25\377\377\377\23\377\377\377\20\377\377\377\16\377\377\377"
2312+ "\14\377\377\377\11\377\377\377\7\377\377\377\6\377\377\377\7\377\377\377"
2313+ "\10\377\377\377\10\377\377\377\11\377\377\377\11\377\377\377\12\377\377\377"
2314+ "\12\377\377\377\13\377\377\377\14\377\377\377\15\377\377\377\21\377\377\377"
2315+ "\24\377\377\377\30\377\377\377\27\377\377\377\17\377\377\377\10\377\377\377"
2316+ "\3\377\377\377\6\377\377\377\12\377\377\377\16\377\377\377\22\377\377\377"
2317+ "\23\377\377\377\24\377\377\377\26\377\377\377\27\377\377\377\30\377\377\377"
2318+ "\32\377\377\377\32\377\377\377\32\377\377\377\32\377\377\377\32\377\377\377"
2319+ "\34\377\377\377\35\377\377\377\36\377\377\377\35\377\377\377\31\377\377\377"
2320+ "\26\377\377\377\22\377\377\377\23\377\377\377\27\377\377\377\32\377\377\377"
2321+ "\36\377\377\377!\377\377\377\35\377\377\377\31\377\377\377\26\377\377\377"
2322+ "\23\377\377\377\20\377\377\377\17\377\377\377\20\377\377\377\20\377\377\377"
2323+ "\20\377\377\377\20\377\377\377\20\377\377\377\20\377\377\377\17\377\377\377"
2324+ "\15\377\377\377\14\377\377\377\13\377\377\377\12\377\377\377\11\377\377\377"
2325+ "\10\377\377\377\7\377\377\377\6\377\377\377\6\377\377\377\5\377\377\377\5"
2326+ "\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377\3\377"
2327+ "\377\377\3\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377"
2328+ "\377\1\377\377\377\1\377\377\377\1\377\377\377\1\0\0\0\0\0\0\0\0\0\0\0\0"
2329+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2330+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1\377\377\377\1\377\377\377"
2331+ "\1\377\377\377\1\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\3"
2332+ "\377\377\377\3\377\377\377\4\377\377\377\4\377\377\377\5\377\377\377\5\377"
2333+ "\377\377\6\377\377\377\7\377\377\377\11\377\377\377\12\377\377\377\13\377"
2334+ "\377\377\15\377\377\377\17\377\377\377\21\377\377\377\24\377\377\377\23\377"
2335+ "\377\377\21\377\377\377\17\377\377\377\15\377\377\377\12\377\377\377\11\377"
2336+ "\377\377\6\377\377\377\5\377\377\377\6\377\377\377\6\377\377\377\7\377\377"
2337+ "\377\10\377\377\377\10\377\377\377\11\377\377\377\12\377\377\377\12\377\377"
2338+ "\377\13\377\377\377\14\377\377\377\16\377\377\377\21\377\377\377\25\377\377"
2339+ "\377\31\377\377\377\22\377\377\377\14\377\377\377\7\377\377\377\3\377\377"
2340+ "\377\6\377\377\377\11\377\377\377\15\377\377\377\20\377\377\377\22\377\377"
2341+ "\377\24\377\377\377\25\377\377\377\26\377\377\377\27\377\377\377\30\377\377"
2342+ "\377\30\377\377\377\30\377\377\377\30\377\377\377\30\377\377\377\31\377\377"
2343+ "\377\33\377\377\377\33\377\377\377\34\377\377\377\31\377\377\377\25\377\377"
2344+ "\377\23\377\377\377\20\377\377\377\23\377\377\377\27\377\377\377\32\377\377"
2345+ "\377\35\377\377\377\36\377\377\377\32\377\377\377\26\377\377\377\23\377\377"
2346+ "\377\21\377\377\377\17\377\377\377\16\377\377\377\16\377\377\377\16\377\377"
2347+ "\377\17\377\377\377\17\377\377\377\17\377\377\377\17\377\377\377\16\377\377"
2348+ "\377\15\377\377\377\14\377\377\377\12\377\377\377\11\377\377\377\10\377\377"
2349+ "\377\7\377\377\377\7\377\377\377\6\377\377\377\5\377\377\377\4\377\377\377"
2350+ "\4\377\377\377\4\377\377\377\4\377\377\377\3\377\377\377\3\377\377\377\3"
2351+ "\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\1\377\377\377\1\377"
2352+ "\377\377\1\377\377\377\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2353+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2354+ "\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1\377\377\377\1\377\377\377\1\377\377"
2355+ "\377\2\377\377\377\2\377\377\377\2\377\377\377\3\377\377\377\3\377\377\377"
2356+ "\4\377\377\377\4\377\377\377\5\377\377\377\6\377\377\377\7\377\377\377\10"
2357+ "\377\377\377\11\377\377\377\13\377\377\377\14\377\377\377\16\377\377\377"
2358+ "\20\377\377\377\22\377\377\377\21\377\377\377\17\377\377\377\15\377\377\377"
2359+ "\13\377\377\377\12\377\377\377\10\377\377\377\6\377\377\377\5\377\377\377"
2360+ "\5\377\377\377\6\377\377\377\6\377\377\377\7\377\377\377\7\377\377\377\10"
2361+ "\377\377\377\10\377\377\377\11\377\377\377\12\377\377\377\13\377\377\377"
2362+ "\14\377\377\377\16\377\377\377\21\377\377\377\24\377\377\377\25\377\377\377"
2363+ "\17\377\377\377\12\377\377\377\5\377\377\377\3\377\377\377\6\377\377\377"
2364+ "\11\377\377\377\16\377\377\377\20\377\377\377\21\377\377\377\22\377\377\377"
2365+ "\23\377\377\377\24\377\377\377\25\377\377\377\27\377\377\377\27\377\377\377"
2366+ "\27\377\377\377\27\377\377\377\27\377\377\377\27\377\377\377\30\377\377\377"
2367+ "\32\377\377\377\32\377\377\377\30\377\377\377\25\377\377\377\22\377\377\377"
2368+ "\20\377\377\377\20\377\377\377\23\377\377\377\26\377\377\377\31\377\377\377"
2369+ "\34\377\377\377\33\377\377\377\27\377\377\377\25\377\377\377\22\377\377\377"
2370+ "\17\377\377\377\15\377\377\377\15\377\377\377\15\377\377\377\15\377\377\377"
2371+ "\15\377\377\377\16\377\377\377\15\377\377\377\15\377\377\377\15\377\377\377"
2372+ "\14\377\377\377\12\377\377\377\11\377\377\377\11\377\377\377\10\377\377\377"
2373+ "\6\377\377\377\6\377\377\377\5\377\377\377\5\377\377\377\4\377\377\377\4"
2374+ "\377\377\377\4\377\377\377\3\377\377\377\3\377\377\377\2\377\377\377\2\377"
2375+ "\377\377\2\377\377\377\2\377\377\377\1\377\377\377\1\377\377\377\1\377\377"
2376+ "\377\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2377+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2378+ "\0\0\0\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\2\377\377\377"
2379+ "\2\377\377\377\2\377\377\377\3\377\377\377\3\377\377\377\4\377\377\377\4"
2380+ "\377\377\377\5\377\377\377\6\377\377\377\7\377\377\377\10\377\377\377\11"
2381+ "\377\377\377\13\377\377\377\15\377\377\377\17\377\377\377\20\377\377\377"
2382+ "\17\377\377\377\16\377\377\377\14\377\377\377\13\377\377\377\11\377\377\377"
2383+ "\7\377\377\377\5\377\377\377\5\377\377\377\5\377\377\377\6\377\377\377\6"
2384+ "\377\377\377\6\377\377\377\7\377\377\377\7\377\377\377\10\377\377\377\10"
2385+ "\377\377\377\11\377\377\377\11\377\377\377\12\377\377\377\14\377\377\377"
2386+ "\17\377\377\377\22\377\377\377\24\377\377\377\22\377\377\377\14\377\377\377"
2387+ "\10\377\377\377\4\377\377\377\4\377\377\377\6\377\377\377\12\377\377\377"
2388+ "\16\377\377\377\17\377\377\377\20\377\377\377\21\377\377\377\21\377\377\377"
2389+ "\22\377\377\377\24\377\377\377\25\377\377\377\25\377\377\377\25\377\377\377"
2390+ "\25\377\377\377\25\377\377\377\26\377\377\377\27\377\377\377\30\377\377\377"
2391+ "\31\377\377\377\30\377\377\377\25\377\377\377\23\377\377\377\20\377\377\377"
2392+ "\16\377\377\377\20\377\377\377\23\377\377\377\26\377\377\377\30\377\377\377"
2393+ "\32\377\377\377\30\377\377\377\25\377\377\377\22\377\377\377\20\377\377\377"
2394+ "\16\377\377\377\14\377\377\377\14\377\377\377\14\377\377\377\14\377\377\377"
2395+ "\14\377\377\377\14\377\377\377\14\377\377\377\14\377\377\377\14\377\377\377"
2396+ "\13\377\377\377\12\377\377\377\11\377\377\377\7\377\377\377\7\377\377\377"
2397+ "\6\377\377\377\5\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377\3"
2398+ "\377\377\377\3\377\377\377\3\377\377\377\2\377\377\377\2\377\377\377\2\377"
2399+ "\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\0\0\0\0\0\0\0\0\0\0"
2400+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2401+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377"
2402+ "\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\2\377\377\377\2"
2403+ "\377\377\377\3\377\377\377\3\377\377\377\4\377\377\377\4\377\377\377\5\377"
2404+ "\377\377\6\377\377\377\7\377\377\377\10\377\377\377\12\377\377\377\14\377"
2405+ "\377\377\15\377\377\377\16\377\377\377\15\377\377\377\14\377\377\377\13\377"
2406+ "\377\377\11\377\377\377\10\377\377\377\7\377\377\377\5\377\377\377\4\377"
2407+ "\377\377\5\377\377\377\5\377\377\377\6\377\377\377\6\377\377\377\6\377\377"
2408+ "\377\7\377\377\377\7\377\377\377\10\377\377\377\10\377\377\377\10\377\377"
2409+ "\377\11\377\377\377\13\377\377\377\15\377\377\377\17\377\377\377\21\377\377"
2410+ "\377\24\377\377\377\17\377\377\377\12\377\377\377\6\377\377\377\3\377\377"
2411+ "\377\4\377\377\377\7\377\377\377\11\377\377\377\15\377\377\377\16\377\377"
2412+ "\377\17\377\377\377\20\377\377\377\21\377\377\377\22\377\377\377\23\377\377"
2413+ "\377\24\377\377\377\25\377\377\377\25\377\377\377\24\377\377\377\23\377\377"
2414+ "\377\24\377\377\377\25\377\377\377\26\377\377\377\26\377\377\377\30\377\377"
2415+ "\377\25\377\377\377\22\377\377\377\20\377\377\377\16\377\377\377\16\377\377"
2416+ "\377\20\377\377\377\23\377\377\377\25\377\377\377\26\377\377\377\30\377\377"
2417+ "\377\26\377\377\377\23\377\377\377\21\377\377\377\17\377\377\377\14\377\377"
2418+ "\377\13\377\377\377\13\377\377\377\13\377\377\377\13\377\377\377\13\377\377"
2419+ "\377\13\377\377\377\13\377\377\377\13\377\377\377\13\377\377\377\12\377\377"
2420+ "\377\10\377\377\377\10\377\377\377\7\377\377\377\6\377\377\377\5\377\377"
2421+ "\377\5\377\377\377\4\377\377\377\4\377\377\377\3\377\377\377\3\377\377\377"
2422+ "\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\1\377\377\377\1"
2423+ "\377\377\377\1\377\377\377\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2424+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2425+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1\377\377\377\1"
2426+ "\377\377\377\1\377\377\377\2\377\377\377\2\377\377\377\3\377\377\377\3\377"
2427+ "\377\377\4\377\377\377\5\377\377\377\5\377\377\377\7\377\377\377\10\377\377"
2428+ "\377\11\377\377\377\12\377\377\377\14\377\377\377\14\377\377\377\13\377\377"
2429+ "\377\12\377\377\377\11\377\377\377\10\377\377\377\7\377\377\377\6\377\377"
2430+ "\377\5\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377\5\377\377\377"
2431+ "\5\377\377\377\6\377\377\377\6\377\377\377\7\377\377\377\7\377\377\377\10"
2432+ "\377\377\377\10\377\377\377\10\377\377\377\11\377\377\377\13\377\377\377"
2433+ "\15\377\377\377\17\377\377\377\22\377\377\377\21\377\377\377\14\377\377\377"
2434+ "\10\377\377\377\5\377\377\377\2\377\377\377\4\377\377\377\6\377\377\377\11"
2435+ "\377\377\377\15\377\377\377\16\377\377\377\16\377\377\377\17\377\377\377"
2436+ "\20\377\377\377\21\377\377\377\21\377\377\377\22\377\377\377\23\377\377\377"
2437+ "\23\377\377\377\23\377\377\377\23\377\377\377\23\377\377\377\24\377\377\377"
2438+ "\24\377\377\377\25\377\377\377\26\377\377\377\24\377\377\377\22\377\377\377"
2439+ "\20\377\377\377\16\377\377\377\14\377\377\377\16\377\377\377\20\377\377\377"
2440+ "\22\377\377\377\24\377\377\377\25\377\377\377\26\377\377\377\23\377\377\377"
2441+ "\21\377\377\377\17\377\377\377\15\377\377\377\13\377\377\377\12\377\377\377"
2442+ "\12\377\377\377\12\377\377\377\12\377\377\377\12\377\377\377\12\377\377\377"
2443+ "\12\377\377\377\12\377\377\377\11\377\377\377\11\377\377\377\10\377\377\377"
2444+ "\7\377\377\377\6\377\377\377\5\377\377\377\5\377\377\377\4\377\377\377\4"
2445+ "\377\377\377\3\377\377\377\3\377\377\377\2\377\377\377\2\377\377\377\2\377"
2446+ "\377\377\2\377\377\377\1\377\377\377\1\377\377\377\1\0\0\0\0\0\0\0\0\0\0"
2447+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2448+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2449+ "\0\0\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\2\377\377\377"
2450+ "\2\377\377\377\3\377\377\377\3\377\377\377\4\377\377\377\5\377\377\377\6"
2451+ "\377\377\377\7\377\377\377\10\377\377\377\11\377\377\377\12\377\377\377\13"
2452+ "\377\377\377\12\377\377\377\11\377\377\377\10\377\377\377\10\377\377\377"
2453+ "\6\377\377\377\5\377\377\377\4\377\377\377\3\377\377\377\3\377\377\377\4"
2454+ "\377\377\377\4\377\377\377\4\377\377\377\5\377\377\377\5\377\377\377\6\377"
2455+ "\377\377\6\377\377\377\6\377\377\377\7\377\377\377\7\377\377\377\10\377\377"
2456+ "\377\11\377\377\377\13\377\377\377\15\377\377\377\17\377\377\377\21\377\377"
2457+ "\377\16\377\377\377\12\377\377\377\7\377\377\377\4\377\377\377\3\377\377"
2458+ "\377\5\377\377\377\6\377\377\377\11\377\377\377\14\377\377\377\15\377\377"
2459+ "\377\15\377\377\377\16\377\377\377\17\377\377\377\17\377\377\377\20\377\377"
2460+ "\377\21\377\377\377\22\377\377\377\22\377\377\377\22\377\377\377\21\377\377"
2461+ "\377\21\377\377\377\22\377\377\377\23\377\377\377\24\377\377\377\24\377\377"
2462+ "\377\24\377\377\377\22\377\377\377\17\377\377\377\16\377\377\377\14\377\377"
2463+ "\377\14\377\377\377\16\377\377\377\20\377\377\377\21\377\377\377\23\377\377"
2464+ "\377\24\377\377\377\23\377\377\377\21\377\377\377\17\377\377\377\15\377\377"
2465+ "\377\14\377\377\377\12\377\377\377\11\377\377\377\11\377\377\377\11\377\377"
2466+ "\377\11\377\377\377\11\377\377\377\11\377\377\377\11\377\377\377\11\377\377"
2467+ "\377\10\377\377\377\10\377\377\377\7\377\377\377\6\377\377\377\6\377\377"
2468+ "\377\5\377\377\377\4\377\377\377\4\377\377\377\3\377\377\377\3\377\377\377"
2469+ "\2\377\377\377\2\377\377\377\2\377\377\377\1\377\377\377\1\377\377\377\1"
2470+ "\377\377\377\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2471+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2472+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1\377\377\377"
2473+ "\1\377\377\377\2\377\377\377\2\377\377\377\3\377\377\377\3\377\377\377\4"
2474+ "\377\377\377\5\377\377\377\6\377\377\377\7\377\377\377\10\377\377\377\11"
2475+ "\377\377\377\11\377\377\377\11\377\377\377\10\377\377\377\7\377\377\377\7"
2476+ "\377\377\377\5\377\377\377\5\377\377\377\4\377\377\377\3\377\377\377\3\377"
2477+ "\377\377\3\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377\5\377\377"
2478+ "\377\5\377\377\377\5\377\377\377\6\377\377\377\6\377\377\377\6\377\377\377"
2479+ "\7\377\377\377\7\377\377\377\11\377\377\377\13\377\377\377\15\377\377\377"
2480+ "\17\377\377\377\20\377\377\377\14\377\377\377\10\377\377\377\5\377\377\377"
2481+ "\3\377\377\377\3\377\377\377\4\377\377\377\6\377\377\377\11\377\377\377\13"
2482+ "\377\377\377\14\377\377\377\14\377\377\377\15\377\377\377\16\377\377\377"
2483+ "\17\377\377\377\20\377\377\377\20\377\377\377\20\377\377\377\21\377\377\377"
2484+ "\21\377\377\377\20\377\377\377\20\377\377\377\21\377\377\377\21\377\377\377"
2485+ "\22\377\377\377\23\377\377\377\23\377\377\377\22\377\377\377\20\377\377\377"
2486+ "\16\377\377\377\14\377\377\377\13\377\377\377\14\377\377\377\15\377\377\377"
2487+ "\17\377\377\377\21\377\377\377\22\377\377\377\23\377\377\377\22\377\377\377"
2488+ "\17\377\377\377\16\377\377\377\14\377\377\377\13\377\377\377\11\377\377\377"
2489+ "\10\377\377\377\10\377\377\377\10\377\377\377\10\377\377\377\10\377\377\377"
2490+ "\10\377\377\377\10\377\377\377\7\377\377\377\10\377\377\377\7\377\377\377"
2491+ "\6\377\377\377\5\377\377\377\5\377\377\377\4\377\377\377\4\377\377\377\3"
2492+ "\377\377\377\3\377\377\377\2\377\377\377\2\377\377\377\1\377\377\377\1\377"
2493+ "\377\377\1\377\377\377\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2494+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2495+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377"
2496+ "\377\1\377\377\377\1\377\377\377\2\377\377\377\2\377\377\377\3\377\377\377"
2497+ "\3\377\377\377\4\377\377\377\5\377\377\377\6\377\377\377\7\377\377\377\10"
2498+ "\377\377\377\10\377\377\377\7\377\377\377\7\377\377\377\6\377\377\377\6\377"
2499+ "\377\377\5\377\377\377\4\377\377\377\4\377\377\377\2\377\377\377\3\377\377"
2500+ "\377\3\377\377\377\3\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377"
2501+ "\5\377\377\377\5\377\377\377\5\377\377\377\6\377\377\377\6\377\377\377\6"
2502+ "\377\377\377\7\377\377\377\10\377\377\377\11\377\377\377\13\377\377\377\15"
2503+ "\377\377\377\17\377\377\377\15\377\377\377\12\377\377\377\7\377\377\377\4"
2504+ "\377\377\377\2\377\377\377\3\377\377\377\4\377\377\377\7\377\377\377\10\377"
2505+ "\377\377\13\377\377\377\13\377\377\377\14\377\377\377\15\377\377\377\15\377"
2506+ "\377\377\15\377\377\377\16\377\377\377\17\377\377\377\20\377\377\377\20\377"
2507+ "\377\377\20\377\377\377\20\377\377\377\20\377\377\377\17\377\377\377\20\377"
2508+ "\377\377\21\377\377\377\21\377\377\377\22\377\377\377\21\377\377\377\17\377"
2509+ "\377\377\16\377\377\377\14\377\377\377\12\377\377\377\12\377\377\377\13\377"
2510+ "\377\377\15\377\377\377\16\377\377\377\20\377\377\377\21\377\377\377\22\377"
2511+ "\377\377\17\377\377\377\16\377\377\377\14\377\377\377\13\377\377\377\11\377"
2512+ "\377\377\10\377\377\377\7\377\377\377\7\377\377\377\7\377\377\377\7\377\377"
2513+ "\377\7\377\377\377\7\377\377\377\7\377\377\377\7\377\377\377\7\377\377\377"
2514+ "\6\377\377\377\5\377\377\377\5\377\377\377\4\377\377\377\4\377\377\377\3"
2515+ "\377\377\377\3\377\377\377\2\377\377\377\2\377\377\377\1\377\377\377\1\377"
2516+ "\377\377\1\377\377\377\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2517+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2518+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377"
2519+ "\377\1\377\377\377\1\377\377\377\2\377\377\377\2\377\377\377\3\377\377\377"
2520+ "\3\377\377\377\4\377\377\377\5\377\377\377\6\377\377\377\7\377\377\377\7"
2521+ "\377\377\377\6\377\377\377\6\377\377\377\5\377\377\377\5\377\377\377\4\377"
2522+ "\377\377\4\377\377\377\3\377\377\377\2\377\377\377\2\377\377\377\3\377\377"
2523+ "\377\3\377\377\377\3\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377"
2524+ "\5\377\377\377\5\377\377\377\5\377\377\377\5\377\377\377\6\377\377\377\6"
2525+ "\377\377\377\7\377\377\377\10\377\377\377\11\377\377\377\13\377\377\377\15"
2526+ "\377\377\377\17\377\377\377\13\377\377\377\10\377\377\377\5\377\377\377\3"
2527+ "\377\377\377\2\377\377\377\3\377\377\377\4\377\377\377\6\377\377\377\11\377"
2528+ "\377\377\12\377\377\377\13\377\377\377\13\377\377\377\13\377\377\377\14\377"
2529+ "\377\377\15\377\377\377\16\377\377\377\16\377\377\377\16\377\377\377\16\377"
2530+ "\377\377\16\377\377\377\16\377\377\377\16\377\377\377\16\377\377\377\17\377"
2531+ "\377\377\17\377\377\377\20\377\377\377\21\377\377\377\21\377\377\377\17\377"
2532+ "\377\377\15\377\377\377\14\377\377\377\13\377\377\377\11\377\377\377\12\377"
2533+ "\377\377\13\377\377\377\14\377\377\377\16\377\377\377\17\377\377\377\20\377"
2534+ "\377\377\17\377\377\377\16\377\377\377\14\377\377\377\13\377\377\377\11\377"
2535+ "\377\377\10\377\377\377\7\377\377\377\7\377\377\377\6\377\377\377\7\377\377"
2536+ "\377\6\377\377\377\6\377\377\377\6\377\377\377\6\377\377\377\6\377\377\377"
2537+ "\5\377\377\377\5\377\377\377\5\377\377\377\4\377\377\377\3\377\377\377\3"
2538+ "\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\1\377\377\377\1\377"
2539+ "\377\377\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2540+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2541+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1"
2542+ "\377\377\377\1\377\377\377\2\377\377\377\2\377\377\377\3\377\377\377\3\377"
2543+ "\377\377\4\377\377\377\5\377\377\377\6\377\377\377\6\377\377\377\5\377\377"
2544+ "\377\5\377\377\377\5\377\377\377\4\377\377\377\4\377\377\377\3\377\377\377"
2545+ "\3\377\377\377\2\377\377\377\2\377\377\377\3\377\377\377\3\377\377\377\3"
2546+ "\377\377\377\3\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377\4\377"
2547+ "\377\377\5\377\377\377\5\377\377\377\5\377\377\377\6\377\377\377\6\377\377"
2548+ "\377\6\377\377\377\10\377\377\377\11\377\377\377\13\377\377\377\14\377\377"
2549+ "\377\15\377\377\377\11\377\377\377\7\377\377\377\5\377\377\377\2\377\377"
2550+ "\377\2\377\377\377\3\377\377\377\5\377\377\377\6\377\377\377\11\377\377\377"
2551+ "\11\377\377\377\12\377\377\377\12\377\377\377\13\377\377\377\14\377\377\377"
2552+ "\14\377\377\377\15\377\377\377\15\377\377\377\16\377\377\377\16\377\377\377"
2553+ "\16\377\377\377\16\377\377\377\16\377\377\377\16\377\377\377\16\377\377\377"
2554+ "\16\377\377\377\17\377\377\377\17\377\377\377\20\377\377\377\17\377\377\377"
2555+ "\15\377\377\377\14\377\377\377\12\377\377\377\11\377\377\377\11\377\377\377"
2556+ "\12\377\377\377\13\377\377\377\14\377\377\377\15\377\377\377\16\377\377\377"
2557+ "\17\377\377\377\16\377\377\377\14\377\377\377\13\377\377\377\12\377\377\377"
2558+ "\10\377\377\377\7\377\377\377\6\377\377\377\6\377\377\377\6\377\377\377\6"
2559+ "\377\377\377\6\377\377\377\5\377\377\377\5\377\377\377\5\377\377\377\5\377"
2560+ "\377\377\5\377\377\377\4\377\377\377\4\377\377\377\3\377\377\377\3\377\377"
2561+ "\377\2\377\377\377\2\377\377\377\1\377\377\377\1\377\377\377\1\0\0\0\0\0"
2562+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2563+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2564+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1\377"
2565+ "\377\377\1\377\377\377\2\377\377\377\3\377\377\377\3\377\377\377\4\377\377"
2566+ "\377\4\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377"
2567+ "\4\377\377\377\3\377\377\377\3\377\377\377\2\377\377\377\2\377\377\377\2"
2568+ "\377\377\377\2\377\377\377\2\377\377\377\3\377\377\377\3\377\377\377\3\377"
2569+ "\377\377\3\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377\4\377\377"
2570+ "\377\5\377\377\377\5\377\377\377\5\377\377\377\6\377\377\377\7\377\377\377"
2571+ "\10\377\377\377\11\377\377\377\13\377\377\377\14\377\377\377\12\377\377\377"
2572+ "\10\377\377\377\6\377\377\377\4\377\377\377\2\377\377\377\2\377\377\377\3"
2573+ "\377\377\377\5\377\377\377\6\377\377\377\10\377\377\377\11\377\377\377\11"
2574+ "\377\377\377\12\377\377\377\13\377\377\377\13\377\377\377\13\377\377\377"
2575+ "\14\377\377\377\14\377\377\377\15\377\377\377\15\377\377\377\15\377\377\377"
2576+ "\15\377\377\377\15\377\377\377\14\377\377\377\15\377\377\377\15\377\377\377"
2577+ "\16\377\377\377\16\377\377\377\17\377\377\377\16\377\377\377\15\377\377\377"
2578+ "\13\377\377\377\13\377\377\377\11\377\377\377\10\377\377\377\10\377\377\377"
2579+ "\12\377\377\377\13\377\377\377\14\377\377\377\14\377\377\377\15\377\377\377"
2580+ "\16\377\377\377\14\377\377\377\13\377\377\377\12\377\377\377\10\377\377\377"
2581+ "\7\377\377\377\7\377\377\377\5\377\377\377\5\377\377\377\5\377\377\377\5"
2582+ "\377\377\377\5\377\377\377\5\377\377\377\5\377\377\377\5\377\377\377\4\377"
2583+ "\377\377\4\377\377\377\4\377\377\377\3\377\377\377\3\377\377\377\2\377\377"
2584+ "\377\2\377\377\377\1\377\377\377\1\377\377\377\1\0\0\0\0\0\0\0\0\0\0\0\0"
2585+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2586+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2587+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1\377\377\377\1\377"
2588+ "\377\377\2\377\377\377\2\377\377\377\3\377\377\377\3\377\377\377\3\377\377"
2589+ "\377\4\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377"
2590+ "\2\377\377\377\2\377\377\377\1\377\377\377\2\377\377\377\2\377\377\377\2"
2591+ "\377\377\377\2\377\377\377\2\377\377\377\3\377\377\377\3\377\377\377\3\377"
2592+ "\377\377\3\377\377\377\3\377\377\377\4\377\377\377\4\377\377\377\4\377\377"
2593+ "\377\5\377\377\377\5\377\377\377\6\377\377\377\7\377\377\377\10\377\377\377"
2594+ "\11\377\377\377\13\377\377\377\13\377\377\377\11\377\377\377\7\377\377\377"
2595+ "\5\377\377\377\3\377\377\377\2\377\377\377\2\377\377\377\3\377\377\377\4"
2596+ "\377\377\377\6\377\377\377\10\377\377\377\10\377\377\377\11\377\377\377\11"
2597+ "\377\377\377\11\377\377\377\12\377\377\377\12\377\377\377\13\377\377\377"
2598+ "\14\377\377\377\14\377\377\377\14\377\377\377\14\377\377\377\14\377\377\377"
2599+ "\14\377\377\377\14\377\377\377\14\377\377\377\14\377\377\377\14\377\377\377"
2600+ "\15\377\377\377\15\377\377\377\16\377\377\377\14\377\377\377\13\377\377\377"
2601+ "\12\377\377\377\11\377\377\377\10\377\377\377\7\377\377\377\10\377\377\377"
2602+ "\11\377\377\377\12\377\377\377\13\377\377\377\14\377\377\377\14\377\377\377"
2603+ "\14\377\377\377\13\377\377\377\11\377\377\377\11\377\377\377\7\377\377\377"
2604+ "\7\377\377\377\6\377\377\377\5\377\377\377\5\377\377\377\4\377\377\377\4"
2605+ "\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377\3\377"
2606+ "\377\377\3\377\377\377\3\377\377\377\3\377\377\377\2\377\377\377\2\377\377"
2607+ "\377\1\377\377\377\1\377\377\377\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2608+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2609+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2610+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1\377\377\377\1\377\377\377"
2611+ "\2\377\377\377\2\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\3"
2612+ "\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\1\377"
2613+ "\377\377\1\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377"
2614+ "\377\2\377\377\377\2\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377"
2615+ "\3\377\377\377\3\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377\5"
2616+ "\377\377\377\6\377\377\377\7\377\377\377\10\377\377\377\11\377\377\377\12"
2617+ "\377\377\377\12\377\377\377\10\377\377\377\6\377\377\377\4\377\377\377\2"
2618+ "\377\377\377\1\377\377\377\2\377\377\377\3\377\377\377\4\377\377\377\6\377"
2619+ "\377\377\10\377\377\377\10\377\377\377\10\377\377\377\10\377\377\377\11\377"
2620+ "\377\377\11\377\377\377\12\377\377\377\13\377\377\377\13\377\377\377\13\377"
2621+ "\377\377\13\377\377\377\13\377\377\377\13\377\377\377\13\377\377\377\13\377"
2622+ "\377\377\13\377\377\377\13\377\377\377\14\377\377\377\14\377\377\377\14\377"
2623+ "\377\377\15\377\377\377\14\377\377\377\13\377\377\377\12\377\377\377\11\377"
2624+ "\377\377\10\377\377\377\7\377\377\377\7\377\377\377\10\377\377\377\11\377"
2625+ "\377\377\11\377\377\377\12\377\377\377\13\377\377\377\13\377\377\377\13\377"
2626+ "\377\377\11\377\377\377\10\377\377\377\7\377\377\377\6\377\377\377\6\377"
2627+ "\377\377\5\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377\4\377\377"
2628+ "\377\4\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377"
2629+ "\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\1\377\377\377\1"
2630+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2631+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2632+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2633+ "\0\0\0\0\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\2\377\377"
2634+ "\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377"
2635+ "\2\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1"
2636+ "\377\377\377\1\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377"
2637+ "\377\377\2\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\3\377\377"
2638+ "\377\3\377\377\377\4\377\377\377\4\377\377\377\5\377\377\377\6\377\377\377"
2639+ "\7\377\377\377\10\377\377\377\11\377\377\377\12\377\377\377\10\377\377\377"
2640+ "\6\377\377\377\4\377\377\377\3\377\377\377\1\377\377\377\1\377\377\377\2"
2641+ "\377\377\377\3\377\377\377\4\377\377\377\5\377\377\377\7\377\377\377\7\377"
2642+ "\377\377\7\377\377\377\10\377\377\377\10\377\377\377\11\377\377\377\12\377"
2643+ "\377\377\12\377\377\377\12\377\377\377\12\377\377\377\13\377\377\377\13\377"
2644+ "\377\377\13\377\377\377\13\377\377\377\12\377\377\377\12\377\377\377\12\377"
2645+ "\377\377\13\377\377\377\13\377\377\377\14\377\377\377\14\377\377\377\14\377"
2646+ "\377\377\13\377\377\377\11\377\377\377\11\377\377\377\10\377\377\377\7\377"
2647+ "\377\377\6\377\377\377\7\377\377\377\10\377\377\377\10\377\377\377\11\377"
2648+ "\377\377\11\377\377\377\12\377\377\377\12\377\377\377\11\377\377\377\10\377"
2649+ "\377\377\7\377\377\377\6\377\377\377\6\377\377\377\5\377\377\377\4\377\377"
2650+ "\377\4\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377"
2651+ "\3\377\377\377\3\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2"
2652+ "\377\377\377\1\377\377\377\1\377\377\377\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2653+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2654+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2655+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1"
2656+ "\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377"
2657+ "\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377"
2658+ "\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377"
2659+ "\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\3"
2660+ "\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\4\377\377\377\4\377"
2661+ "\377\377\5\377\377\377\6\377\377\377\6\377\377\377\10\377\377\377\11\377"
2662+ "\377\377\11\377\377\377\7\377\377\377\5\377\377\377\4\377\377\377\2\377\377"
2663+ "\377\1\377\377\377\1\377\377\377\2\377\377\377\3\377\377\377\4\377\377\377"
2664+ "\5\377\377\377\6\377\377\377\7\377\377\377\7\377\377\377\10\377\377\377\10"
2665+ "\377\377\377\11\377\377\377\11\377\377\377\11\377\377\377\11\377\377\377"
2666+ "\12\377\377\377\12\377\377\377\12\377\377\377\12\377\377\377\11\377\377\377"
2667+ "\11\377\377\377\11\377\377\377\12\377\377\377\12\377\377\377\12\377\377\377"
2668+ "\13\377\377\377\13\377\377\377\13\377\377\377\12\377\377\377\12\377\377\377"
2669+ "\10\377\377\377\10\377\377\377\7\377\377\377\6\377\377\377\6\377\377\377"
2670+ "\6\377\377\377\7\377\377\377\10\377\377\377\10\377\377\377\11\377\377\377"
2671+ "\11\377\377\377\11\377\377\377\10\377\377\377\7\377\377\377\6\377\377\377"
2672+ "\5\377\377\377\5\377\377\377\4\377\377\377\4\377\377\377\3\377\377\377\3"
2673+ "\377\377\377\3\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377"
2674+ "\377\377\2\377\377\377\2\377\377\377\1\377\377\377\1\377\377\377\1\0\0\0"
2675+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2676+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2677+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2678+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1\377\377\377\1\377\377\377"
2679+ "\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1"
2680+ "\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377"
2681+ "\377\377\1\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377"
2682+ "\377\2\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377"
2683+ "\4\377\377\377\4\377\377\377\5\377\377\377\5\377\377\377\6\377\377\377\7"
2684+ "\377\377\377\10\377\377\377\7\377\377\377\6\377\377\377\4\377\377\377\3\377"
2685+ "\377\377\2\377\377\377\1\377\377\377\1\377\377\377\2\377\377\377\3\377\377"
2686+ "\377\4\377\377\377\6\377\377\377\6\377\377\377\6\377\377\377\7\377\377\377"
2687+ "\7\377\377\377\10\377\377\377\10\377\377\377\10\377\377\377\10\377\377\377"
2688+ "\11\377\377\377\11\377\377\377\11\377\377\377\11\377\377\377\11\377\377\377"
2689+ "\11\377\377\377\11\377\377\377\11\377\377\377\11\377\377\377\11\377\377\377"
2690+ "\11\377\377\377\12\377\377\377\12\377\377\377\12\377\377\377\12\377\377\377"
2691+ "\11\377\377\377\10\377\377\377\7\377\377\377\6\377\377\377\6\377\377\377"
2692+ "\5\377\377\377\6\377\377\377\6\377\377\377\7\377\377\377\7\377\377\377\10"
2693+ "\377\377\377\10\377\377\377\10\377\377\377\10\377\377\377\7\377\377\377\6"
2694+ "\377\377\377\5\377\377\377\5\377\377\377\4\377\377\377\3\377\377\377\3\377"
2695+ "\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377"
2696+ "\377\2\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\0\0\0\0\0"
2697+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2698+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2699+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2700+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377"
2701+ "\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1\377\377\377\1\377\377\377"
2702+ "\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\2\377\377\377\2"
2703+ "\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\3\377\377\377\3\377"
2704+ "\377\377\3\377\377\377\3\377\377\377\3\377\377\377\4\377\377\377\5\377\377"
2705+ "\377\6\377\377\377\6\377\377\377\7\377\377\377\10\377\377\377\6\377\377\377"
2706+ "\5\377\377\377\4\377\377\377\3\377\377\377\2\377\377\377\1\377\377\377\1"
2707+ "\377\377\377\2\377\377\377\3\377\377\377\4\377\377\377\5\377\377\377\6\377"
2708+ "\377\377\6\377\377\377\7\377\377\377\7\377\377\377\7\377\377\377\7\377\377"
2709+ "\377\10\377\377\377\10\377\377\377\10\377\377\377\10\377\377\377\11\377\377"
2710+ "\377\11\377\377\377\11\377\377\377\11\377\377\377\11\377\377\377\11\377\377"
2711+ "\377\10\377\377\377\10\377\377\377\11\377\377\377\11\377\377\377\11\377\377"
2712+ "\377\11\377\377\377\11\377\377\377\11\377\377\377\10\377\377\377\7\377\377"
2713+ "\377\6\377\377\377\6\377\377\377\5\377\377\377\5\377\377\377\5\377\377\377"
2714+ "\6\377\377\377\6\377\377\377\6\377\377\377\7\377\377\377\7\377\377\377\10"
2715+ "\377\377\377\7\377\377\377\6\377\377\377\5\377\377\377\4\377\377\377\4\377"
2716+ "\377\377\3\377\377\377\3\377\377\377\2\377\377\377\2\377\377\377\2\377\377"
2717+ "\377\2\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377"
2718+ "\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2719+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2720+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2721+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2722+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1"
2723+ "\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377"
2724+ "\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377"
2725+ "\377\2\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\4\377\377\377"
2726+ "\5\377\377\377\5\377\377\377\6\377\377\377\7\377\377\377\7\377\377\377\5"
2727+ "\377\377\377\4\377\377\377\3\377\377\377\2\377\377\377\1\377\377\377\1\377"
2728+ "\377\377\1\377\377\377\2\377\377\377\3\377\377\377\4\377\377\377\5\377\377"
2729+ "\377\6\377\377\377\6\377\377\377\6\377\377\377\6\377\377\377\6\377\377\377"
2730+ "\7\377\377\377\7\377\377\377\7\377\377\377\7\377\377\377\10\377\377\377\10"
2731+ "\377\377\377\10\377\377\377\10\377\377\377\10\377\377\377\10\377\377\377"
2732+ "\10\377\377\377\10\377\377\377\10\377\377\377\10\377\377\377\10\377\377\377"
2733+ "\11\377\377\377\11\377\377\377\11\377\377\377\10\377\377\377\10\377\377\377"
2734+ "\6\377\377\377\6\377\377\377\5\377\377\377\5\377\377\377\4\377\377\377\4"
2735+ "\377\377\377\5\377\377\377\5\377\377\377\6\377\377\377\6\377\377\377\6\377"
2736+ "\377\377\7\377\377\377\6\377\377\377\6\377\377\377\5\377\377\377\4\377\377"
2737+ "\377\4\377\377\377\3\377\377\377\3\377\377\377\2\377\377\377\2\377\377\377"
2738+ "\2\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1"
2739+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2740+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2741+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2742+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2743+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377"
2744+ "\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377"
2745+ "\1\377\377\377\1\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2"
2746+ "\377\377\377\2\377\377\377\2\377\377\377\3\377\377\377\3\377\377\377\4\377"
2747+ "\377\377\4\377\377\377\5\377\377\377\6\377\377\377\7\377\377\377\6\377\377"
2748+ "\377\5\377\377\377\3\377\377\377\2\377\377\377\1\377\377\377\1\377\377\377"
2749+ "\1\377\377\377\2\377\377\377\2\377\377\377\3\377\377\377\4\377\377\377\5"
2750+ "\377\377\377\5\377\377\377\5\377\377\377\5\377\377\377\6\377\377\377\6\377"
2751+ "\377\377\6\377\377\377\7\377\377\377\6\377\377\377\7\377\377\377\7\377\377"
2752+ "\377\10\377\377\377\7\377\377\377\7\377\377\377\7\377\377\377\7\377\377\377"
2753+ "\7\377\377\377\7\377\377\377\7\377\377\377\7\377\377\377\7\377\377\377\10"
2754+ "\377\377\377\10\377\377\377\10\377\377\377\10\377\377\377\7\377\377\377\7"
2755+ "\377\377\377\5\377\377\377\5\377\377\377\4\377\377\377\4\377\377\377\4\377"
2756+ "\377\377\4\377\377\377\5\377\377\377\5\377\377\377\5\377\377\377\6\377\377"
2757+ "\377\6\377\377\377\6\377\377\377\5\377\377\377\5\377\377\377\4\377\377\377"
2758+ "\3\377\377\377\3\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\1"
2759+ "\377\377\377\1\377\377\377\1\377\377\377\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2760+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2761+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2762+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2763+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2764+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1"
2765+ "\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377"
2766+ "\377\377\1\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377"
2767+ "\377\2\377\377\377\3\377\377\377\3\377\377\377\4\377\377\377\4\377\377\377"
2768+ "\5\377\377\377\6\377\377\377\6\377\377\377\5\377\377\377\4\377\377\377\3"
2769+ "\377\377\377\2\377\377\377\1\0\0\0\0\377\377\377\1\377\377\377\1\377\377"
2770+ "\377\2\377\377\377\2\377\377\377\3\377\377\377\4\377\377\377\5\377\377\377"
2771+ "\5\377\377\377\5\377\377\377\5\377\377\377\6\377\377\377\6\377\377\377\6"
2772+ "\377\377\377\6\377\377\377\7\377\377\377\7\377\377\377\7\377\377\377\7\377"
2773+ "\377\377\7\377\377\377\7\377\377\377\7\377\377\377\7\377\377\377\7\377\377"
2774+ "\377\7\377\377\377\7\377\377\377\7\377\377\377\7\377\377\377\7\377\377\377"
2775+ "\7\377\377\377\7\377\377\377\7\377\377\377\6\377\377\377\6\377\377\377\5"
2776+ "\377\377\377\4\377\377\377\4\377\377\377\3\377\377\377\4\377\377\377\4\377"
2777+ "\377\377\4\377\377\377\5\377\377\377\5\377\377\377\5\377\377\377\5\377\377"
2778+ "\377\5\377\377\377\5\377\377\377\4\377\377\377\3\377\377\377\3\377\377\377"
2779+ "\2\377\377\377\2\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1"
2780+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2781+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2782+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2783+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2784+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2785+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1\377\377\377\1\377\377\377"
2786+ "\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1"
2787+ "\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\3\377"
2788+ "\377\377\3\377\377\377\4\377\377\377\5\377\377\377\5\377\377\377\5\377\377"
2789+ "\377\4\377\377\377\3\377\377\377\2\377\377\377\2\377\377\377\1\0\0\0\0\377"
2790+ "\377\377\1\377\377\377\1\377\377\377\2\377\377\377\2\377\377\377\3\377\377"
2791+ "\377\4\377\377\377\4\377\377\377\4\377\377\377\5\377\377\377\5\377\377\377"
2792+ "\5\377\377\377\5\377\377\377\5\377\377\377\6\377\377\377\6\377\377\377\6"
2793+ "\377\377\377\6\377\377\377\6\377\377\377\6\377\377\377\6\377\377\377\6\377"
2794+ "\377\377\6\377\377\377\6\377\377\377\6\377\377\377\6\377\377\377\6\377\377"
2795+ "\377\6\377\377\377\6\377\377\377\7\377\377\377\7\377\377\377\6\377\377\377"
2796+ "\6\377\377\377\5\377\377\377\5\377\377\377\4\377\377\377\4\377\377\377\3"
2797+ "\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\4\377\377\377\4\377"
2798+ "\377\377\4\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377\4\377\377"
2799+ "\377\3\377\377\377\3\377\377\377\2\377\377\377\2\377\377\377\1\377\377\377"
2800+ "\1\377\377\377\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2801+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2802+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2803+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2804+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2805+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377"
2806+ "\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377"
2807+ "\1\377\377\377\1\377\377\377\1\377\377\377\2\377\377\377\2\377\377\377\3"
2808+ "\377\377\377\3\377\377\377\3\377\377\377\4\377\377\377\4\377\377\377\5\377"
2809+ "\377\377\4\377\377\377\3\377\377\377\3\377\377\377\2\377\377\377\1\377\377"
2810+ "\377\1\0\0\0\0\377\377\377\1\377\377\377\1\377\377\377\2\377\377\377\3\377"
2811+ "\377\377\3\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377\5\377\377"
2812+ "\377\5\377\377\377\5\377\377\377\5\377\377\377\5\377\377\377\5\377\377\377"
2813+ "\6\377\377\377\5\377\377\377\6\377\377\377\6\377\377\377\6\377\377\377\6"
2814+ "\377\377\377\6\377\377\377\6\377\377\377\6\377\377\377\5\377\377\377\5\377"
2815+ "\377\377\6\377\377\377\6\377\377\377\6\377\377\377\6\377\377\377\6\377\377"
2816+ "\377\6\377\377\377\5\377\377\377\5\377\377\377\4\377\377\377\4\377\377\377"
2817+ "\3\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\3"
2818+ "\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\4\377\377\377\4\377"
2819+ "\377\377\3\377\377\377\3\377\377\377\2\377\377\377\2\377\377\377\1\377\377"
2820+ "\377\1\377\377\377\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2821+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2822+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2823+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2824+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2825+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2826+ "\0\0\0\0\0\0\0\0\0\0\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377"
2827+ "\1\377\377\377\1\377\377\377\1\377\377\377\2\377\377\377\2\377\377\377\2"
2828+ "\377\377\377\3\377\377\377\3\377\377\377\4\377\377\377\4\377\377\377\4\377"
2829+ "\377\377\3\377\377\377\3\377\377\377\2\377\377\377\1\377\377\377\1\0\0\0"
2830+ "\0\0\0\0\0\377\377\377\1\377\377\377\1\377\377\377\2\377\377\377\2\377\377"
2831+ "\377\3\377\377\377\3\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377"
2832+ "\4\377\377\377\4\377\377\377\4\377\377\377\5\377\377\377\5\377\377\377\5"
2833+ "\377\377\377\5\377\377\377\5\377\377\377\6\377\377\377\5\377\377\377\5\377"
2834+ "\377\377\5\377\377\377\5\377\377\377\5\377\377\377\5\377\377\377\5\377\377"
2835+ "\377\5\377\377\377\5\377\377\377\5\377\377\377\5\377\377\377\5\377\377\377"
2836+ "\6\377\377\377\5\377\377\377\5\377\377\377\4\377\377\377\4\377\377\377\3"
2837+ "\377\377\377\3\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\3\377"
2838+ "\377\377\3\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\3\377\377"
2839+ "\377\3\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\1\377\377\377"
2840+ "\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2841+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2842+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2843+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2844+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2845+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2846+ "\0\0\0\0\0\0\0\0\0\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377"
2847+ "\1\377\377\377\1\377\377\377\1\377\377\377\2\377\377\377\2\377\377\377\2"
2848+ "\377\377\377\3\377\377\377\3\377\377\377\4\377\377\377\4\377\377\377\3\377"
2849+ "\377\377\2\377\377\377\2\377\377\377\1\377\377\377\1\0\0\0\0\0\0\0\0\377"
2850+ "\377\377\1\377\377\377\1\377\377\377\1\377\377\377\2\377\377\377\3\377\377"
2851+ "\377\3\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377"
2852+ "\4\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377\5"
2853+ "\377\377\377\5\377\377\377\5\377\377\377\5\377\377\377\5\377\377\377\5\377"
2854+ "\377\377\5\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377\5\377\377"
2855+ "\377\5\377\377\377\5\377\377\377\5\377\377\377\5\377\377\377\5\377\377\377"
2856+ "\5\377\377\377\4\377\377\377\4\377\377\377\3\377\377\377\3\377\377\377\2"
2857+ "\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377"
2858+ "\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377"
2859+ "\377\2\377\377\377\2\377\377\377\1\377\377\377\1\377\377\377\1\0\0\0\0\0"
2860+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2861+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2862+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2863+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2864+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2865+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2866+ "\0\0\0\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377"
2867+ "\1\377\377\377\1\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\3"
2868+ "\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\2\377\377\377\2\377"
2869+ "\377\377\1\377\377\377\1\0\0\0\0\0\0\0\0\377\377\377\1\377\377\377\1\377"
2870+ "\377\377\1\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\3\377\377"
2871+ "\377\3\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\4\377\377\377"
2872+ "\4\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377\4"
2873+ "\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377\4\377"
2874+ "\377\377\4\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377\4\377\377"
2875+ "\377\4\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377"
2876+ "\4\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\2\377\377\377\2"
2877+ "\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377"
2878+ "\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377"
2879+ "\377\1\377\377\377\1\377\377\377\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2880+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2881+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2882+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2883+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2884+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2885+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2886+ "\0\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\2"
2887+ "\377\377\377\2\377\377\377\2\377\377\377\3\377\377\377\3\377\377\377\3\377"
2888+ "\377\377\2\377\377\377\2\377\377\377\1\377\377\377\1\377\377\377\1\0\0\0"
2889+ "\0\0\0\0\0\0\0\0\0\377\377\377\1\377\377\377\1\377\377\377\2\377\377\377"
2890+ "\2\377\377\377\2\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\3"
2891+ "\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\3\377"
2892+ "\377\377\4\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377\4\377\377"
2893+ "\377\4\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377"
2894+ "\4\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377\4"
2895+ "\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377\3\377\377\377\3\377"
2896+ "\377\377\3\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\1\377\377"
2897+ "\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377"
2898+ "\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\0\0\0\0\0\0\0"
2899+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2900+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2901+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2902+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2903+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2904+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2905+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1\377\377\377\1\377"
2906+ "\377\377\1\377\377\377\1\377\377\377\2\377\377\377\2\377\377\377\2\377\377"
2907+ "\377\3\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\1\377\377\377"
2908+ "\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1\377\377\377\1\377\377\377"
2909+ "\1\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2"
2910+ "\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\3\377"
2911+ "\377\377\3\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\4\377\377"
2912+ "\377\4\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377\4\377\377\377"
2913+ "\3\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\3"
2914+ "\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\3\377"
2915+ "\377\377\3\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\1\377\377"
2916+ "\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377"
2917+ "\1\377\377\377\1\377\377\377\1\377\377\377\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2918+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2919+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2920+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2921+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2922+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2923+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2924+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1\377\377"
2925+ "\377\1\377\377\377\1\377\377\377\1\377\377\377\2\377\377\377\2\377\377\377"
2926+ "\2\377\377\377\2\377\377\377\1\377\377\377\1\377\377\377\1\0\0\0\0\0\0\0"
2927+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1\377\377\377\1\377\377\377\1\377"
2928+ "\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377"
2929+ "\377\2\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377"
2930+ "\3\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\3"
2931+ "\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\3\377"
2932+ "\377\377\3\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\3\377\377"
2933+ "\377\3\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377"
2934+ "\2\377\377\377\2\377\377\377\2\377\377\377\1\377\377\377\1\377\377\377\1"
2935+ "\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\0\0\0\0\0\0\0\0"
2936+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2937+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2938+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2939+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2940+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2941+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2942+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2943+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1\377\377\377\1\377\377\377"
2944+ "\1\377\377\377\1\377\377\377\2\377\377\377\2\377\377\377\1\377\377\377\1"
2945+ "\377\377\377\1\377\377\377\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2946+ "\0\0\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\2\377\377\377"
2947+ "\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2"
2948+ "\377\377\377\2\377\377\377\2\377\377\377\3\377\377\377\3\377\377\377\3\377"
2949+ "\377\377\3\377\377\377\3\377\377\377\3\377\377\377\3\377\377\377\3\377\377"
2950+ "\377\3\377\377\377\3\377\377\377\3\377\377\377\2\377\377\377\2\377\377\377"
2951+ "\3\377\377\377\3\377\377\377\2\377\377\377\3\377\377\377\2\377\377\377\2"
2952+ "\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\1\377"
2953+ "\377\377\1\377\377\377\1\377\377\377\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2954+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2955+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2956+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2957+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2958+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2959+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2960+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2961+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1\377"
2962+ "\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377"
2963+ "\377\1\377\377\377\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2964+ "\0\0\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377"
2965+ "\1\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2"
2966+ "\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377"
2967+ "\377\377\2\377\377\377\3\377\377\377\2\377\377\377\2\377\377\377\2\377\377"
2968+ "\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377"
2969+ "\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2"
2970+ "\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\1\377\377\377\1\377"
2971+ "\377\377\1\377\377\377\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2972+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2973+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2974+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2975+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2976+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2977+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2978+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2979+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1\377"
2980+ "\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\0\0\0\0\0\0\0\0\0\0"
2981+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1\377\377"
2982+ "\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377"
2983+ "\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2"
2984+ "\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377"
2985+ "\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377"
2986+ "\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377"
2987+ "\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\1\377\377\377\1"
2988+ "\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\0\0\0\0\0\0\0\0"
2989+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2990+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2991+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2992+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2993+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2994+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2995+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2996+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2997+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1\377\377\377\1\0\0\0\0\0\0"
2998+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2999+ "\0\0\0\0\0\0\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377"
3000+ "\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377"
3001+ "\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377"
3002+ "\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\2"
3003+ "\377\377\377\2\377\377\377\2\377\377\377\2\377\377\377\1\377\377\377\1\377"
3004+ "\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377"
3005+ "\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\0\0\0\0\0"
3006+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3007+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3008+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3009+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3010+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3011+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3012+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3013+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3014+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3015+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3016+ "\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1\377\377\377\1\377\377\377\1\377\377"
3017+ "\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377"
3018+ "\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1"
3019+ "\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377"
3020+ "\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377"
3021+ "\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377"
3022+ "\1\377\377\377\1\377\377\377\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3023+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3024+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3025+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3026+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3027+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3028+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3029+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3030+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3031+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3032+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3033+ "\0\0\0\0\0\0\0\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377"
3034+ "\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377"
3035+ "\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377"
3036+ "\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1"
3037+ "\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377"
3038+ "\377\377\1\377\377\377\1\377\377\377\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3039+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3040+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3041+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3042+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3043+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3044+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3045+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3046+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3047+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3048+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3049+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3050+ "\0\0\0\0\0\0\0\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377"
3051+ "\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377"
3052+ "\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377\1\377\377\377"
3053+ "\1\377\377\377\1\377\377\377\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3054+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3055+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3056+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3057+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3058+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3059+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3060+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3061+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3062+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3063+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3064+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3065+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3066+ "\0\0\0\0\0\0\0\0\0\0\0\377\377\377\1\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377"
3067+ "\1\377\377\377\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3068+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3069+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3070+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3071+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3072+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3073+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3074+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3075+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3076+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3077+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3078+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3079+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3080+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3081+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3082+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3083+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3084+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3085+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3086+ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3087+};
3088
3089=== added directory 'plugins/wizard/src'
3090=== added file 'plugins/wizard/src/wizard.cpp'
3091--- plugins/wizard/src/wizard.cpp 1970-01-01 00:00:00 +0000
3092+++ plugins/wizard/src/wizard.cpp 2012-12-29 17:45:25 +0000
3093@@ -0,0 +1,1003 @@
3094+/*
3095+ * Compiz wizard particle system plugin
3096+ *
3097+ * wizard.cpp
3098+ *
3099+ * Written by : Sebastian Kuhlen
3100+ * E-mail : DiCon@tankwar.de
3101+ *
3102+ * Ported to Compiz 0.9.x
3103+ * Copyright : (c) 2010 Scott Moreau <oreaus@gmail.com>
3104+ *
3105+ * This plugin and parts of its code have been inspired by the showmouse plugin
3106+ * by Dennis Kasprzyk
3107+ *
3108+ * This program is free software; you can redistribute it and/or
3109+ * modify it under the terms of the GNU General Public License
3110+ * as published by the Free Software Foundation; either version 2
3111+ * of the License, or (at your option) any later version.
3112+ *
3113+ * This program is distributed in the hope that it will be useful,
3114+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
3115+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
3116+ * GNU General Public License for more details.
3117+ *
3118+ */
3119+
3120+#include <math.h>
3121+#include <string.h>
3122+
3123+#include "wizard.h"
3124+
3125+static void
3126+initParticles (int hardLimit, int softLimit, ParticleSystem * ps)
3127+{
3128+ if (ps->particles)
3129+ free (ps->particles);
3130+ ps->particles = (Particle*) calloc (hardLimit, sizeof (Particle));
3131+ ps->tex = 0;
3132+ ps->hardLimit = hardLimit;
3133+ ps->softLimit = softLimit;
3134+ ps->active = false;
3135+ ps->lastCount = 0;
3136+
3137+ // Initialize cache
3138+ ps->vertices_cache = NULL;
3139+ ps->colors_cache = NULL;
3140+ ps->coords_cache = NULL;
3141+ ps->dcolors_cache = NULL;
3142+ ps->vertex_cache_count = 0;
3143+ ps->color_cache_count = 0;
3144+ ps->coords_cache_count = 0;
3145+ ps->dcolors_cache_count = 0;
3146+
3147+ Particle *part = ps->particles;
3148+ int i;
3149+ for (i = 0; i < hardLimit; i++, part++)
3150+ part->t = 0.0f;
3151+}
3152+
3153+void
3154+WizardScreen::loadGPoints (ParticleSystem *ps)
3155+{
3156+ if (ps->g)
3157+ free (ps->g);
3158+
3159+ int i;
3160+ GPoint *gi;
3161+ CompOption::Value::Vector cvv = optionGetGStrength ();
3162+ ps->ng = cvv.size ();
3163+ ps->g = (GPoint*) calloc (ps->ng, sizeof (GPoint));
3164+
3165+ gi = ps->g;
3166+ for (i = 0; i < ps->ng; i++, gi++)
3167+ gi->strength = (float)cvv.at (i).i ()/ 1000.;
3168+
3169+ cvv = optionGetGPosx ();
3170+ gi = ps->g;
3171+ for (i = 0; i < ps->ng; i++, gi++)
3172+ gi->x = (float)cvv.at (i).i ();
3173+
3174+ cvv = optionGetGPosy ();
3175+ gi = ps->g;
3176+ for (i = 0; i < ps->ng; i++, gi++)
3177+ gi->y = (float)cvv.at (i).i ();
3178+
3179+ cvv = optionGetGSpeed ();
3180+ gi = ps->g;
3181+ for (i = 0; i < ps->ng; i++, gi++)
3182+ gi->espeed = (float)cvv.at (i).i () / 100.;
3183+
3184+ cvv = optionGetGAngle ();
3185+ gi = ps->g;
3186+ for (i = 0; i < ps->ng; i++, gi++)
3187+ gi->eangle = (float)cvv.at (i).i () / 180.*M_PI;
3188+
3189+ cvv = optionGetGMovement ();
3190+ gi = ps->g;
3191+ for (i = 0; i < ps->ng; i++, gi++)
3192+ gi->movement = cvv.at (i).i ();
3193+}
3194+
3195+void
3196+WizardScreen::loadEmitters (ParticleSystem *ps)
3197+{
3198+ if (ps->e)
3199+ free (ps->e);
3200+
3201+ int i;
3202+ Emitter *ei;
3203+ CompOption::Value::Vector cvv = optionGetEActive ();
3204+ ps->ne = cvv.size ();
3205+ ps->e = (Emitter*) calloc (ps->ne, sizeof (Emitter));
3206+
3207+ ei = ps->e;
3208+ for (i = 0; i < ps->ne; i++, ei++)
3209+ ei->set_active = ei->active = cvv.at (i).b ();
3210+
3211+ cvv = optionGetETrigger ();
3212+ ei = ps->e;
3213+ for (i = 0; i < ps->ne; i++, ei++)
3214+ ei->trigger = cvv.at (i).i ();
3215+
3216+ cvv = optionGetEPosx ();
3217+ ei = ps->e;
3218+ for (i = 0; i < ps->ne; i++, ei++)
3219+ ei->x = (float)cvv.at (i).i ();
3220+
3221+ cvv = optionGetEPosy ();
3222+ ei = ps->e;
3223+ for (i = 0; i < ps->ne; i++, ei++)
3224+ ei->y = (float)cvv.at (i).i ();
3225+
3226+ cvv = optionGetESpeed ();
3227+ ei = ps->e;
3228+ for (i = 0; i < ps->ne; i++, ei++)
3229+ ei->espeed = (float)cvv.at (i).i () / 100.;
3230+
3231+ cvv = optionGetEAngle ();
3232+ ei = ps->e;
3233+ for (i = 0; i < ps->ne; i++, ei++)
3234+ ei->eangle = (float)cvv.at (i).i () / 180.*M_PI;
3235+
3236+ cvv = optionGetEMovement ();
3237+ ei = ps->e;
3238+ for (i = 0; i < ps->ne; i++, ei++)
3239+ ei->movement = cvv.at (i).i ();
3240+
3241+ cvv = optionGetECount ();
3242+ ei = ps->e;
3243+ for (i = 0; i < ps->ne; i++, ei++)
3244+ ei->count = (float)cvv.at (i).i ();
3245+
3246+ cvv = optionGetEH ();
3247+ ei = ps->e;
3248+ for (i = 0; i < ps->ne; i++, ei++)
3249+ ei->h = (float)cvv.at (i).i () / 1000.;
3250+
3251+ cvv = optionGetEDh ();
3252+ ei = ps->e;
3253+ for (i = 0; i < ps->ne; i++, ei++)
3254+ ei->dh = (float)cvv.at (i).i () / 1000.;
3255+
3256+ cvv = optionGetEL ();
3257+ ei = ps->e;
3258+ for (i = 0; i < ps->ne; i++, ei++)
3259+ ei->l = (float)cvv.at (i).i () / 1000.;
3260+
3261+ cvv = optionGetEDl ();
3262+ ei = ps->e;
3263+ for (i = 0; i < ps->ne; i++, ei++)
3264+ ei->dl = (float)cvv.at (i).i () / 1000.;
3265+
3266+ cvv = optionGetEA ();
3267+ ei = ps->e;
3268+ for (i = 0; i < ps->ne; i++, ei++)
3269+ ei->a = (float)cvv.at (i).i () / 1000.;
3270+
3271+ cvv = optionGetEDa ();
3272+ ei = ps->e;
3273+ for (i = 0; i < ps->ne; i++, ei++)
3274+ ei->da = (float)cvv.at (i).i () / 1000.;
3275+
3276+ cvv = optionGetEDx ();
3277+ ei = ps->e;
3278+ for (i = 0; i < ps->ne; i++, ei++)
3279+ ei->dx = (float)cvv.at (i).i ();
3280+
3281+ cvv = optionGetEDy ();
3282+ ei = ps->e;
3283+ for (i = 0; i < ps->ne; i++, ei++)
3284+ ei->dy = (float)cvv.at (i).i ();
3285+
3286+ cvv = optionGetEDcirc ();
3287+ ei = ps->e;
3288+ for (i = 0; i < ps->ne; i++, ei++)
3289+ ei->dcirc = (float)cvv.at (i).i ();
3290+
3291+ cvv = optionGetEVx ();
3292+ ei = ps->e;
3293+ for (i = 0; i < ps->ne; i++, ei++)
3294+ ei->vx = (float)cvv.at (i).i () / 1000.;
3295+
3296+ cvv = optionGetEVy ();
3297+ ei = ps->e;
3298+ for (i = 0; i < ps->ne; i++, ei++)
3299+ ei->vy = (float)cvv.at (i).i () / 1000.;
3300+
3301+ cvv = optionGetEVt ();
3302+ ei = ps->e;
3303+ for (i = 0; i < ps->ne; i++, ei++)
3304+ ei->vt = (float)cvv.at (i).i () / 10000.;
3305+
3306+ cvv = optionGetEVphi ();
3307+ ei = ps->e;
3308+ for (i = 0; i < ps->ne; i++, ei++)
3309+ ei->vphi = (float)cvv.at (i).i () / 10000.;
3310+
3311+ cvv = optionGetEDvx ();
3312+ ei = ps->e;
3313+ for (i = 0; i < ps->ne; i++, ei++)
3314+ ei->dvx = (float)cvv.at (i).i () / 1000.;
3315+
3316+ cvv = optionGetEDvy ();
3317+ ei = ps->e;
3318+ for (i = 0; i < ps->ne; i++, ei++)
3319+ ei->dvy = (float)cvv.at (i).i () / 1000.;
3320+
3321+ cvv = optionGetEDvcirc ();
3322+ ei = ps->e;
3323+ for (i = 0; i < ps->ne; i++, ei++)
3324+ ei->dvcirc = (float)cvv.at (i).i () / 1000.;
3325+
3326+ cvv = optionGetEDvt ();
3327+ ei = ps->e;
3328+ for (i = 0; i < ps->ne; i++, ei++)
3329+ ei->dvt = (float)cvv.at (i).i () / 10000.;
3330+
3331+ cvv = optionGetEDvphi ();
3332+ ei = ps->e;
3333+ for (i = 0; i < ps->ne; i++, ei++)
3334+ ei->dvphi = (float)cvv.at (i).i () / 10000.;
3335+
3336+ cvv = optionGetES ();
3337+ ei = ps->e;
3338+ for (i = 0; i < ps->ne; i++, ei++)
3339+ ei->s = (float)cvv.at (i).i ();
3340+
3341+ cvv = optionGetEDs ();
3342+ ei = ps->e;
3343+ for (i = 0; i < ps->ne; i++, ei++)
3344+ ei->ds = (float)cvv.at (i).i ();
3345+
3346+ cvv = optionGetESnew ();
3347+ ei = ps->e;
3348+ for (i = 0; i < ps->ne; i++, ei++)
3349+ ei->snew = (float)cvv.at (i).i ();
3350+
3351+ cvv = optionGetEDsnew ();
3352+ ei = ps->e;
3353+ for (i = 0; i < ps->ne; i++, ei++)
3354+ ei->dsnew = (float)cvv.at (i).i ();
3355+
3356+ cvv = optionGetEG ();
3357+ ei = ps->e;
3358+ for (i = 0; i < ps->ne; i++, ei++)
3359+ ei->g = (float)cvv.at (i).i () / 1000.;
3360+
3361+ cvv = optionGetEDg ();
3362+ ei = ps->e;
3363+ for (i = 0; i < ps->ne; i++, ei++)
3364+ ei->dg = (float)cvv.at (i).i () / 1000.;
3365+
3366+ cvv = optionGetEGp ();
3367+ ei = ps->e;
3368+ for (i = 0; i < ps->ne; i++, ei++)
3369+ ei->gp = (float)cvv.at (i).i () / 10000.;
3370+}
3371+
3372+void
3373+WizardScreen::drawParticles (ParticleSystem * ps)
3374+{
3375+ glPushMatrix ();
3376+
3377+ glEnable (GL_BLEND);
3378+ if (ps->tex)
3379+ {
3380+ glBindTexture (GL_TEXTURE_2D, ps->tex);
3381+ glEnable (GL_TEXTURE_2D);
3382+ }
3383+ glTexEnvf (GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE);
3384+
3385+ /* Check that the cache is big enough */
3386+ if (ps->hardLimit > ps->vertex_cache_count)
3387+ {
3388+ ps->vertices_cache =
3389+ (GLfloat*) realloc (ps->vertices_cache,
3390+ ps->hardLimit * 4 * 3 * sizeof (GLfloat));
3391+ ps->vertex_cache_count = ps->hardLimit;
3392+ }
3393+
3394+ if (ps->hardLimit > ps->coords_cache_count)
3395+ {
3396+ ps->coords_cache =
3397+ (GLfloat*) realloc (ps->coords_cache,
3398+ ps->hardLimit * 4 * 2 * sizeof (GLfloat));
3399+ ps->coords_cache_count = ps->hardLimit;
3400+ }
3401+
3402+ if (ps->hardLimit > ps->color_cache_count)
3403+ {
3404+ ps->colors_cache =
3405+ (GLfloat*) realloc (ps->colors_cache,
3406+ ps->hardLimit * 4 * 4 * sizeof (GLfloat));
3407+ ps->color_cache_count = ps->hardLimit;
3408+ }
3409+
3410+ if (ps->darken > 0)
3411+ {
3412+ if (ps->dcolors_cache_count < ps->hardLimit)
3413+ {
3414+ ps->dcolors_cache =
3415+ (GLfloat*) realloc (ps->dcolors_cache,
3416+ ps->hardLimit * 4 * 4 * sizeof (GLfloat));
3417+ ps->dcolors_cache_count = ps->hardLimit;
3418+ }
3419+ }
3420+
3421+ GLfloat *dcolors = ps->dcolors_cache;
3422+ GLfloat *vertices = ps->vertices_cache;
3423+ GLfloat *coords = ps->coords_cache;
3424+ GLfloat *colors = ps->colors_cache;
3425+
3426+ int cornersSize = sizeof (GLfloat) * 8;
3427+ int colorSize = sizeof (GLfloat) * 4;
3428+
3429+ GLfloat cornerCoords[8] = {0.0, 0.0,
3430+ 0.0, 1.0,
3431+ 1.0, 1.0,
3432+ 1.0, 0.0};
3433+
3434+ int numActive = 0;
3435+
3436+ Particle *part = ps->particles;
3437+ int i;
3438+ for (i = 0; i < ps->hardLimit; i++, part++)
3439+ {
3440+ if (part->t > 0.0f)
3441+ {
3442+ numActive += 4;
3443+
3444+ float cOff = part->s / 2.; //Corner offset from center
3445+
3446+ if (part->t > ps->tnew) //New particles start larger
3447+ cOff += (part->snew - part->s) * (part->t - ps->tnew)
3448+ / (1. - ps->tnew) / 2.;
3449+ else if (part->t < ps->told) //Old particles shrink
3450+ cOff -= part->s * (ps->told - part->t) / ps->told / 2.;
3451+
3452+ //Offsets after rotation of Texture
3453+ float offA = cOff * (cos (part->phi) - sin (part->phi));
3454+ float offB = cOff * (cos (part->phi) + sin (part->phi));
3455+
3456+ vertices[0] = part->x - offB;
3457+ vertices[1] = part->y - offA;
3458+ vertices[2] = 0;
3459+
3460+ vertices[3] = part->x - offA;
3461+ vertices[4] = part->y + offB;
3462+ vertices[5] = 0;
3463+
3464+ vertices[6] = part->x + offB;
3465+ vertices[7] = part->y + offA;
3466+ vertices[8] = 0;
3467+
3468+ vertices[9] = part->x + offA;
3469+ vertices[10] = part->y - offB;
3470+ vertices[11] = 0;
3471+
3472+ vertices += 12;
3473+
3474+ memcpy (coords, cornerCoords, cornersSize);
3475+
3476+ coords += 8;
3477+
3478+ colors[0] = part->c[0];
3479+ colors[1] = part->c[1];
3480+ colors[2] = part->c[2];
3481+
3482+ if (part->t > ps->tnew) //New particles start at a == 1
3483+ colors[3] = part->a + (1. - part->a) * (part->t - ps->tnew)
3484+ / (1. - ps->tnew);
3485+ else if (part->t < ps->told) //Old particles fade to a = 0
3486+ colors[3] = part->a * part->t / ps->told;
3487+ else //The others have their own a
3488+ colors[3] = part->a;
3489+
3490+ memcpy (colors + 4, colors, colorSize);
3491+ memcpy (colors + 8, colors, colorSize);
3492+ memcpy (colors + 12, colors, colorSize);
3493+
3494+ colors += 16;
3495+
3496+ if (ps->darken > 0)
3497+ {
3498+ dcolors[0] = colors[0];
3499+ dcolors[1] = colors[1];
3500+ dcolors[2] = colors[2];
3501+ dcolors[3] = colors[3] * ps->darken;
3502+ memcpy (dcolors + 4, dcolors, colorSize);
3503+ memcpy (dcolors + 8, dcolors, colorSize);
3504+ memcpy (dcolors + 12, dcolors, colorSize);
3505+
3506+ dcolors += 16;
3507+ }
3508+ }
3509+ }
3510+ glEnableClientState (GL_VERTEX_ARRAY);
3511+ glEnableClientState (GL_TEXTURE_COORD_ARRAY);
3512+ glEnableClientState (GL_COLOR_ARRAY);
3513+
3514+ glTexCoordPointer (2, GL_FLOAT, 2 * sizeof (GLfloat), ps->coords_cache);
3515+ glVertexPointer (3, GL_FLOAT, 3 * sizeof (GLfloat), ps->vertices_cache);
3516+
3517+ // darken the background
3518+ if (ps->darken > 0)
3519+ {
3520+ glBlendFunc (GL_ZERO, GL_ONE_MINUS_SRC_ALPHA);
3521+ glColorPointer (4, GL_FLOAT, 4 * sizeof (GLfloat), ps->dcolors_cache);
3522+ glDrawArrays (GL_QUADS, 0, numActive);
3523+ }
3524+ // draw particles
3525+ glBlendFunc (GL_SRC_ALPHA, ps->blendMode);
3526+
3527+ glColorPointer (4, GL_FLOAT, 4 * sizeof (GLfloat), ps->colors_cache);
3528+
3529+ glDrawArrays (GL_QUADS, 0, numActive);
3530+
3531+ glDisableClientState (GL_COLOR_ARRAY);
3532+ glDisableClientState (GL_TEXTURE_COORD_ARRAY);
3533+ glDisableClientState (GL_VERTEX_ARRAY);
3534+
3535+ glPopMatrix ();
3536+ glColor4usv (defaultColor);
3537+ gScreen->setTexEnvMode (GL_REPLACE);
3538+ glBlendFunc (GL_ONE, GL_ONE_MINUS_SRC_ALPHA);
3539+ glDisable (GL_TEXTURE_2D);
3540+ glDisable (GL_BLEND);
3541+}
3542+
3543+static void
3544+updateParticles (ParticleSystem * ps, float time)
3545+{
3546+ int i, j;
3547+ int newCount = 0;
3548+ Particle *part;
3549+ GPoint *gi;
3550+ float gdist, gangle;
3551+ ps->active = false;
3552+
3553+ part = ps->particles;
3554+ for (i = 0; i < ps->hardLimit; i++, part++)
3555+ {
3556+ if (part->t > 0.0f)
3557+ {
3558+ // move particle
3559+ part->x += part->vx * time;
3560+ part->y += part->vy * time;
3561+
3562+ // Rotation
3563+ part->phi += part->vphi*time;
3564+
3565+ //Aging of particles
3566+ part->t += part->vt * time;
3567+ //Additional aging of particles increases if softLimit is exceeded
3568+ if (ps->lastCount > ps->softLimit)
3569+ part->t += part->vt * time * (ps->lastCount - ps->softLimit)
3570+ / (ps->hardLimit - ps->softLimit);
3571+
3572+ //Global gravity
3573+ part->vx += ps->gx * time;
3574+ part->vy += ps->gy * time;
3575+
3576+ //GPoint gravity
3577+ gi = ps->g;
3578+ for (j = 0; j < ps->ng; j++, gi++)
3579+ {
3580+ if (gi->strength != 0)
3581+ {
3582+ gdist = sqrt ((part->x-gi->x)*(part->x-gi->x)
3583+ + (part->y-gi->y)*(part->y-gi->y));
3584+ if (gdist > 1)
3585+ {
3586+ gangle = atan2 (gi->y-part->y, gi->x-part->x);
3587+ part->vx += gi->strength / gdist * cos (gangle) * time;
3588+ part->vy += gi->strength / gdist * sin (gangle) * time;
3589+ }
3590+ }
3591+ }
3592+
3593+ ps->active = true;
3594+ newCount++;
3595+ }
3596+ }
3597+ ps->lastCount = newCount;
3598+
3599+ //Particle gravity
3600+ Particle *gpart;
3601+ part = ps->particles;
3602+ for (i = 0; i < ps->hardLimit; i++, part++)
3603+ {
3604+ if (part->t > 0.0f && part->g != 0)
3605+ {
3606+ gpart = ps->particles;
3607+ for (j = 0; j < ps->hardLimit; j++, gpart++)
3608+ {
3609+ if (gpart->t > 0.0f)
3610+ {
3611+ gdist = sqrt ((part->x-gpart->x)*(part->x-gpart->x)
3612+ + (part->y-gpart->y)*(part->y-gpart->y));
3613+ if (gdist > 1)
3614+ {
3615+ gangle = atan2 (part->y-gpart->y, part->x-gpart->x);
3616+ gpart->vx += part->g/gdist* cos (gangle) * part->t*time;
3617+ gpart->vy += part->g/gdist* sin (gangle) * part->t*time;
3618+ }
3619+ }
3620+ }
3621+ }
3622+ }
3623+}
3624+
3625+static void
3626+finiParticles (ParticleSystem * ps)
3627+{
3628+ free (ps->e);
3629+ free (ps->particles);
3630+ if (ps->tex)
3631+ glDeleteTextures (1, &ps->tex);
3632+
3633+ if (ps->vertices_cache)
3634+ free (ps->vertices_cache);
3635+ if (ps->colors_cache)
3636+ free (ps->colors_cache);
3637+ if (ps->coords_cache)
3638+ free (ps->coords_cache);
3639+ if (ps->dcolors_cache)
3640+ free (ps->dcolors_cache);
3641+}
3642+
3643+static void
3644+genNewParticles (ParticleSystem *ps, Emitter *e)
3645+{
3646+
3647+ float q, p, t = 0, h, l;
3648+ int count = e->count;
3649+
3650+ Particle *part = ps->particles;
3651+ int i, j;
3652+
3653+ for (i = 0; i < ps->hardLimit && count > 0; i++, part++)
3654+ {
3655+ if (part->t <= 0.0f)
3656+ {
3657+ //Position
3658+ part->x = rRange (e->x, e->dx); // X Position
3659+ part->y = rRange (e->y, e->dy); // Y Position
3660+ if ((q = rRange (e->dcirc/2.,e->dcirc/2.)) > 0)
3661+ {
3662+ p = rRange (0, M_PI);
3663+ part->x += q * cos (p);
3664+ part->y += q * sin (p);
3665+ }
3666+
3667+ //Speed
3668+ part->vx = rRange (e->vx, e->dvx); // X Speed
3669+ part->vy = rRange (e->vy, e->dvy); // Y Speed
3670+ if ((q = rRange (e->dvcirc/2.,e->dvcirc/2.)) > 0)
3671+ {
3672+ p = rRange (0, M_PI);
3673+ part->vx += q * cos (p);
3674+ part->vy += q * sin (p);
3675+ }
3676+ part->vt = rRange (e->vt, e->dvt); // Aging speed
3677+ if (part->vt > -0.0001)
3678+ part->vt = -0.0001;
3679+
3680+ //Size, Gravity and Rotation
3681+ part->s = rRange (e->s, e->ds); // Particle size
3682+ part->snew = rRange (e->snew, e->dsnew); // Particle start size
3683+ if (e->gp > (float)(random () & 0xffff) / 65535.)
3684+ part->g = rRange (e->g, e->dg); // Particle gravity
3685+ else
3686+ part->g = 0.;
3687+ part->phi = rRange (0, M_PI); // Random orientation
3688+ part->vphi = rRange (e->vphi, e->dvphi); // Rotation speed
3689+
3690+ //Alpha
3691+ part->a = rRange (e->a, e->da); // Alpha
3692+ if (part->a > 1)
3693+ part->a = 1.;
3694+ else if (part->a < 0)
3695+ part->a = 0.;
3696+
3697+ //HSL to RGB conversion from Wikipedia simplified by S = 1
3698+ h = rRange (e->h, e->dh); //Random hue within range
3699+ if (h < 0)
3700+ h += 1.;
3701+ else if (t > 1)
3702+ h -= 1.;
3703+ l = rRange (e->l, e->dl); //Random lightness ...
3704+ if (l > 1)
3705+ l = 1.;
3706+ else if (l < 0)
3707+ l = 0.;
3708+ q = e->l * 2;
3709+ if (q > 1)
3710+ q = 1.;
3711+ p = 2 * e->l - q;
3712+ for (j = 0; j < 3; j++)
3713+ {
3714+ t = h + (1-j)/3.;
3715+ if (t < 0)
3716+ t += 1.;
3717+ else if (t > 1)
3718+ t -= 1.;
3719+ if (t < 1/6.)
3720+ part->c[j] = p + ((q-p)*6*t);
3721+ else if (t < .5)
3722+ part->c[j] = q;
3723+ else if (t < 2/3.)
3724+ part->c[j] = p + ((q-p)*6*(2/3.-t));
3725+ else
3726+ part->c[j] = p;
3727+ }
3728+
3729+ // give new life
3730+ part->t = 1.;
3731+
3732+ ps->active = true;
3733+ count -= 1;
3734+ }
3735+ }
3736+}
3737+
3738+void
3739+WizardScreen::positionUpdate (const CompPoint &pos)
3740+{
3741+ mx = pos.x ();
3742+ my = pos.y ();
3743+
3744+ if (ps && active && ps->e)
3745+ {
3746+ Emitter *ei = ps->e;
3747+ GPoint *gi = ps->g;
3748+ int i;
3749+ for (i = 0; i < ps->ng; i++, gi++)
3750+ {
3751+ if (gi->movement == MOVEMENT_MOUSEPOSITION)
3752+ {
3753+ gi->x = pos.x ();
3754+ gi->y = pos.y ();
3755+ }
3756+ }
3757+
3758+ for (i = 0; i < ps->ne; i++, ei++)
3759+ {
3760+ if (ei->movement == MOVEMENT_MOUSEPOSITION)
3761+ {
3762+ ei->x = pos.x ();
3763+ ei->y = pos.y ();
3764+ }
3765+ if (ei->active && ei->trigger == TRIGGER_MOUSEMOVEMENT)
3766+ genNewParticles (ps, ei);
3767+ }
3768+ }
3769+}
3770+
3771+void
3772+WizardScreen::preparePaint (int time)
3773+{
3774+ if (active && !pollHandle.active ())
3775+ pollHandle.start ();
3776+
3777+ if (active && !ps)
3778+ {
3779+ ps = (ParticleSystem*) calloc(1, sizeof (ParticleSystem));
3780+ if (!ps)
3781+ {
3782+ cScreen->preparePaint (time);
3783+ return;
3784+ }
3785+ loadGPoints (ps);
3786+ loadEmitters (ps);
3787+ initParticles (optionGetHardLimit (), optionGetSoftLimit (), ps);
3788+ ps->darken = optionGetDarken ();
3789+ ps->blendMode = (optionGetBlend ()) ? GL_ONE :
3790+ GL_ONE_MINUS_SRC_ALPHA;
3791+ ps->tnew = optionGetTnew ();
3792+ ps->told = optionGetTold ();
3793+ ps->gx = optionGetGx ();
3794+ ps->gy = optionGetGy ();
3795+
3796+ glGenTextures (1, &ps->tex);
3797+ glBindTexture (GL_TEXTURE_2D, ps->tex);
3798+
3799+ glTexParameteri (GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
3800+ glTexParameteri (GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
3801+
3802+ glTexImage2D (GL_TEXTURE_2D, 0, GL_RGBA, 128, 128, 0,
3803+ GL_RGBA, GL_UNSIGNED_BYTE, particleTex);
3804+ glBindTexture (GL_TEXTURE_2D, 0);
3805+ }
3806+
3807+ if (ps && active && ps->e)
3808+ {
3809+ Emitter *ei = ps->e;
3810+ GPoint *gi = ps->g;
3811+ int i;
3812+
3813+ for (i = 0; i < ps->ng; i++, gi++)
3814+ {
3815+ if (gi->movement==MOVEMENT_BOUNCE || gi->movement==MOVEMENT_WRAP)
3816+ {
3817+ gi->x += gi->espeed * cos (gi->eangle) * time;
3818+ gi->y += gi->espeed * sin (gi->eangle) * time;
3819+ if (gi->x >= screen->width ())
3820+ {
3821+ if (gi->movement==MOVEMENT_BOUNCE)
3822+ {
3823+ gi->x = 2*screen->width () - gi->x - 1;
3824+ gi->eangle = M_PI - gi->eangle;
3825+ }
3826+ else if (gi->movement==MOVEMENT_WRAP)
3827+ gi->x -= screen->width ();
3828+ }
3829+ else if (gi->x < 0)
3830+ {
3831+ if (gi->movement==MOVEMENT_BOUNCE)
3832+ {
3833+ gi->x *= -1;
3834+ gi->eangle = M_PI - gi->eangle;
3835+ }
3836+ else if (gi->movement==MOVEMENT_WRAP)
3837+ gi->x += screen->width ();
3838+ }
3839+ if (gi->y >= screen->height ())
3840+ {
3841+ if (gi->movement==MOVEMENT_BOUNCE)
3842+ {
3843+ gi->y = 2*screen->height () - gi->y - 1;
3844+ gi->eangle *= -1;
3845+ }
3846+ else if (gi->movement==MOVEMENT_WRAP)
3847+ gi->y -= screen->height ();
3848+ }
3849+ else if (gi->y < 0)
3850+ {
3851+ if (gi->movement==MOVEMENT_BOUNCE)
3852+ {
3853+ gi->y *= -1;
3854+ gi->eangle *= -1;
3855+ }
3856+ else if (gi->movement==MOVEMENT_WRAP)
3857+ gi->y += screen->height ();
3858+ }
3859+ }
3860+ if (gi->movement==MOVEMENT_FOLLOWMOUSE
3861+ && (my!=gi->y||mx!=gi->x))
3862+ {
3863+ gi->eangle = atan2(my-gi->y, mx-gi->x);
3864+ gi->x += gi->espeed * cos(gi->eangle) * time;
3865+ gi->y += gi->espeed * sin(gi->eangle) * time;
3866+ }
3867+ }
3868+
3869+ for (i = 0; i < ps->ne; i++, ei++)
3870+ {
3871+ if (ei->movement==MOVEMENT_BOUNCE || ei->movement==MOVEMENT_WRAP)
3872+ {
3873+ ei->x += ei->espeed * cos (ei->eangle) * time;
3874+ ei->y += ei->espeed * sin (ei->eangle) * time;
3875+ if (ei->x >= screen->width ())
3876+ {
3877+ if (ei->movement==MOVEMENT_BOUNCE)
3878+ {
3879+ ei->x = 2*screen->width () - ei->x - 1;
3880+ ei->eangle = M_PI - ei->eangle;
3881+ }
3882+ else if (ei->movement==MOVEMENT_WRAP)
3883+ ei->x -= screen->width ();
3884+ }
3885+ else if (ei->x < 0)
3886+ {
3887+ if (ei->movement==MOVEMENT_BOUNCE)
3888+ {
3889+ ei->x *= -1;
3890+ ei->eangle = M_PI - ei->eangle;
3891+ }
3892+ else if (ei->movement==MOVEMENT_WRAP)
3893+ ei->x += screen->width ();
3894+ }
3895+ if (ei->y >= screen->height ())
3896+ {
3897+ if (ei->movement==MOVEMENT_BOUNCE)
3898+ {
3899+ ei->y = 2*screen->height () - ei->y - 1;
3900+ ei->eangle *= -1;
3901+ }
3902+ else if (ei->movement==MOVEMENT_WRAP)
3903+ ei->y -= screen->height ();
3904+ }
3905+ else if (ei->y < 0)
3906+ {
3907+ if (ei->movement==MOVEMENT_BOUNCE)
3908+ {
3909+ ei->y *= -1;
3910+ ei->eangle *= -1;
3911+ }
3912+ else if (ei->movement==MOVEMENT_WRAP)
3913+ ei->y += screen->height ();
3914+ }
3915+ }
3916+ if (ei->movement==MOVEMENT_FOLLOWMOUSE
3917+ && (my!=ei->y||mx!=ei->x))
3918+ {
3919+ ei->eangle = atan2 (my-ei->y, mx-ei->x);
3920+ ei->x += ei->espeed * cos (ei->eangle) * time;
3921+ ei->y += ei->espeed * sin (ei->eangle) * time;
3922+ }
3923+ if (ei->trigger == TRIGGER_RANDOMPERIOD
3924+ && ei->set_active && !((int)random ()&0xff))
3925+ ei->active = !ei->active;
3926+ if (ei->active && (
3927+ (ei->trigger == TRIGGER_PERSISTENT) ||
3928+ (ei->trigger == TRIGGER_RANDOMSHOT && !((int)random()&0xff)) ||
3929+ (ei->trigger == TRIGGER_RANDOMPERIOD)
3930+ ))
3931+ genNewParticles (ps, ei);
3932+ }
3933+ }
3934+
3935+ if (ps && ps->active)
3936+ {
3937+ updateParticles (ps, time);
3938+ cScreen->damageScreen ();
3939+ }
3940+
3941+ cScreen->preparePaint (time);
3942+}
3943+
3944+void
3945+WizardScreen::donePaint ()
3946+{
3947+ if (active || (ps && ps->active))
3948+ cScreen->damageScreen ();
3949+
3950+ if (!active && pollHandle.active ())
3951+ pollHandle.stop ();
3952+
3953+ if (!active && ps && !ps->active)
3954+ {
3955+ finiParticles (ps);
3956+ free (ps);
3957+ ps = NULL;
3958+ }
3959+
3960+ cScreen->donePaint ();
3961+}
3962+
3963+bool
3964+WizardScreen::glPaintOutput (const GLScreenPaintAttrib &sa,
3965+ const GLMatrix &transform,
3966+ const CompRegion &region,
3967+ CompOutput *output,
3968+ unsigned int mask)
3969+{
3970+ bool status;
3971+ GLMatrix sTransform;
3972+
3973+ status = gScreen->glPaintOutput (sa, transform, region, output, mask);
3974+
3975+ if (!ps || !ps->active)
3976+ return status;
3977+
3978+ sTransform.reset ();
3979+
3980+ sTransform.toScreenSpace (output, -DEFAULT_Z_CAMERA);
3981+
3982+ glPushMatrix ();
3983+ glLoadMatrixf (sTransform.getMatrix ());
3984+
3985+ drawParticles (ps);
3986+
3987+ glPopMatrix ();
3988+
3989+ glColor4usv (defaultColor);
3990+
3991+ return status;
3992+}
3993+
3994+bool
3995+WizardScreen::toggle ()
3996+{
3997+ active = !active;
3998+ cScreen->preparePaintSetEnabled (this, active);
3999+ cScreen->donePaintSetEnabled (this, active);
4000+ gScreen->glPaintOutputSetEnabled (this, active);
4001+
4002+ cScreen->damageScreen ();
4003+ return true;
4004+}
4005+
4006+void
4007+WizardScreen::optionChanged (CompOption *opt,
4008+ WizardOptions::Options num)
4009+{
4010+ loadGPoints (ps);
4011+ loadEmitters (ps);
4012+}
4013+
4014+WizardScreen::WizardScreen (CompScreen *screen) :
4015+ PluginClassHandler <WizardScreen, CompScreen> (screen),
4016+ cScreen (CompositeScreen::get (screen)),
4017+ gScreen (GLScreen::get (screen)),
4018+ active (false),
4019+ ps (NULL)
4020+{
4021+ ScreenInterface::setHandler (screen, false);
4022+ CompositeScreenInterface::setHandler (cScreen, false);
4023+ GLScreenInterface::setHandler (gScreen, false);
4024+
4025+#define optionNotify(name) \
4026+ optionSet##name##Notify (boost::bind (&WizardScreen::optionChanged, \
4027+ this, _1, _2))
4028+
4029+ optionNotify (GStrength);
4030+ optionNotify (GPosx);
4031+ optionNotify (GPosy);
4032+ optionNotify (GSpeed);
4033+ optionNotify (GAngle);
4034+ optionNotify (GMovement);
4035+ optionNotify (EActive);
4036+ optionNotify (EName);
4037+ optionNotify (ETrigger);
4038+ optionNotify (EPosx);
4039+ optionNotify (EPosy);
4040+ optionNotify (ESpeed);
4041+ optionNotify (EAngle);
4042+ optionNotify (GMovement);
4043+ optionNotify (ECount);
4044+ optionNotify (EH);
4045+ optionNotify (EDh);
4046+ optionNotify (EL);
4047+ optionNotify (EDl);
4048+ optionNotify (EA);
4049+ optionNotify (EDa);
4050+ optionNotify (EDx);
4051+ optionNotify (EDy);
4052+ optionNotify (EDcirc);
4053+ optionNotify (EVx);
4054+ optionNotify (EVy);
4055+ optionNotify (EVt);
4056+ optionNotify (EVphi);
4057+ optionNotify (EDvx);
4058+ optionNotify (EDvy);
4059+ optionNotify (EDvcirc);
4060+ optionNotify (EDvt);
4061+ optionNotify (EDvphi);
4062+ optionNotify (ES);
4063+ optionNotify (EDs);
4064+ optionNotify (ESnew);
4065+ optionNotify (EDsnew);
4066+ optionNotify (EG);
4067+ optionNotify (EDg);
4068+ optionNotify (EGp);
4069+
4070+#undef optionNotify
4071+
4072+ pollHandle.setCallback (boost::bind (&WizardScreen::positionUpdate, this, _1));
4073+
4074+ optionSetToggleInitiate (boost::bind (&WizardScreen::toggle, this));
4075+}
4076+
4077+WizardScreen::~WizardScreen ()
4078+{
4079+ if (pollHandle.active ())
4080+ pollHandle.stop ();
4081+
4082+ if (ps && ps->active)
4083+ cScreen->damageScreen ();
4084+}
4085+
4086+bool
4087+WizardPluginVTable::init ()
4088+{
4089+ if (!CompPlugin::checkPluginABI ("core", CORE_ABIVERSION) ||
4090+ !CompPlugin::checkPluginABI ("composite", COMPIZ_COMPOSITE_ABI) ||
4091+ !CompPlugin::checkPluginABI ("opengl", COMPIZ_OPENGL_ABI) ||
4092+ !CompPlugin::checkPluginABI ("mousepoll", COMPIZ_MOUSEPOLL_ABI))
4093+ return false;
4094+
4095+ return true;
4096+}
4097
4098=== added file 'plugins/wizard/wizard.xml.in'
4099--- plugins/wizard/wizard.xml.in 1970-01-01 00:00:00 +0000
4100+++ plugins/wizard/wizard.xml.in 2012-12-29 17:45:25 +0000
4101@@ -0,0 +1,855 @@
4102+<?xml version="1.0"?>
4103+<compiz>
4104+ <plugin name="wizard" useBcop="true">
4105+ <_short>Wizard</_short>
4106+ <_long>Wastes resources to create fancy particle systems for wizard-wannabes :)</_long>
4107+ <category>Effects</category>
4108+ <deps>
4109+ <relation type="after">
4110+ <plugin>opengl</plugin>
4111+ <plugin>cube</plugin>
4112+ </relation>
4113+ <requirement>
4114+ <plugin>opengl</plugin>
4115+ <plugin>mousepoll</plugin>
4116+ </requirement>
4117+ </deps>
4118+ <options>
4119+ <group>
4120+ <_short>General</_short>
4121+ <option name="toggle" type="key">
4122+ <_short>Toggle</_short>
4123+ <_long>Toggle all particle effects.</_long>
4124+ <default>&lt;Super&gt;w</default>
4125+ </option>
4126+ </group>
4127+ <group>
4128+ <_short>Gravity</_short>
4129+ <subgroup>
4130+ <_short>Global gravity</_short>
4131+ <option name="gx" type="float">
4132+ <_short>Gravity X</_short>
4133+ <_long>Global horizontal gravity</_long>
4134+ <default>0.0</default>
4135+ <min>-0.01</min>
4136+ <max>0.01</max>
4137+ <precision>0.00001</precision>
4138+ </option>
4139+ <option name="gy" type="float">
4140+ <_short>Gravity Y</_short>
4141+ <_long>Global vertical gravity</_long>
4142+ <default>0.0005</default>
4143+ <min>-0.01</min>
4144+ <max>0.01</max>
4145+ <precision>0.00001</precision>
4146+ </option>
4147+ </subgroup>
4148+ <subgroup>
4149+ <_short>Point gravity sources</_short>
4150+ <option name="g_strength" type="list">
4151+ <_short>Strength</_short>
4152+ <_long>The strength of this gravity source. Use negative values for a repulsing effect.</_long>
4153+ <type>int</type>
4154+ <min>-1000</min>
4155+ <max>1000</max>
4156+ <default>
4157+ <value>200</value>
4158+ </default>
4159+ </option>
4160+ <option name="g_posx" type="list">
4161+ <_short>Position X</_short>
4162+ <_long>The horizontal position of this gravity source. May be ignored or used for initialisation, depending on the movement type.</_long>
4163+ <type>int</type>
4164+ <min>0</min>
4165+ <max>3000</max>
4166+ <default>
4167+ <value>0</value>
4168+ </default>
4169+ </option>
4170+ <option name="g_posy" type="list">
4171+ <_short>Position Y</_short>
4172+ <_long>The vertical position of this gravity source. May be ignored or used for initialisation, depending on the movement type.</_long>
4173+ <type>int</type>
4174+ <min>0</min>
4175+ <max>2000</max>
4176+ <default>
4177+ <value>0</value>
4178+ </default>
4179+ </option>
4180+ <option name="g_speed" type="list">
4181+ <_short>Speed</_short>
4182+ <_long>The speed of this gravity source. May be ignored or used for initialisation, depending on the movement type.</_long>
4183+ <type>int</type>
4184+ <min>0</min>
4185+ <max>1000</max>
4186+ <default>
4187+ <value>100</value>
4188+ </default>
4189+ </option>
4190+ <option name="g_angle" type="list">
4191+ <_short>Angle</_short>
4192+ <_long>The angle for the movement of this gravity source. May be ignored or used for initialisation, depending on the movement type.</_long>
4193+ <type>int</type>
4194+ <min>0</min>
4195+ <max>360</max>
4196+ <default>
4197+ <value>20</value>
4198+ </default>
4199+ </option>
4200+ <option name="g_movement" type="list">
4201+ <_short>Movement Type</_short>
4202+ <_long>The movement type of this source: Fixed (not moving at all), Mouse Position (exactly on the core pointer), Follow Mouse (moving towards core pointer at set speed), Bounce (moving at constant speed, bouncing off the walls) or Wrap (moving at constant speed, jumping to the opposite side at a wall).</_long>
4203+ <type>int</type>
4204+ <min>0</min>
4205+ <max>4</max>
4206+ <default>
4207+ <value>2</value>
4208+ </default>
4209+ <desc>
4210+ <value>0</value>
4211+ <_name>Mouse Position</_name>
4212+ </desc>
4213+ <desc>
4214+ <value>1</value>
4215+ <_name>Follow Mouse</_name>
4216+ </desc>
4217+ <desc>
4218+ <value>2</value>
4219+ <_name>Bounce</_name>
4220+ </desc>
4221+ <desc>
4222+ <value>3</value>
4223+ <_name>Wrap</_name>
4224+ </desc>
4225+ </option>
4226+ </subgroup>
4227+ </group>
4228+ <group>
4229+ <_short>Emitters</_short>
4230+ <option name="e_active" type="list">
4231+ <_short>Active</_short>
4232+ <_long>Since emitters have a lot of options, you can simply deactivate and name them instead of deleting them.</_long>
4233+ <type>bool</type>
4234+ <default>
4235+ <value>false</value>
4236+ <value>false</value>
4237+ <value>true</value>
4238+ <value>true</value>
4239+ <value>false</value>
4240+ <value>true</value>
4241+ <value>true</value>
4242+ <value>true</value>
4243+ <value>true</value>
4244+ <value>true</value>
4245+ </default>
4246+ </option>
4247+ <option name="e_name" type="list">
4248+ <_short>Name</_short>
4249+ <_long>Since emitters have a lot of options, you can simply deactivate and name them instead of deleting them.</_long>
4250+ <type>string</type>
4251+ <default>
4252+ <value>Fire Ball</value>
4253+ <value>Flame Pointer</value>
4254+ <value>Magic Pointer</value>
4255+ <value>Magic Rain (On/Off)</value>
4256+ <value>Magic Rain with Gravity Particles</value>
4257+ <value>Random Red Explosion</value>
4258+ <value>Random Yellow Explosion</value>
4259+ <value>Random Green Explosion</value>
4260+ <value>Random Blue Explosion</value>
4261+ <value>Random Purple Explosion</value>
4262+ </default>
4263+ </option>
4264+ <option name="e_trigger" type="list">
4265+ <_short>Trigger</_short>
4266+ <_long>The trigger to create particles: Persitent (create particles all the time), Mouse Movement (create particles when the mouse is being moved), Random Shot (a single particle burst once in a while), Random Period (randomly turning on and off particle production) or Notification (a single particle burst on notification events).</_long>
4267+ <type>int</type>
4268+ <min>0</min>
4269+ <max>5</max>
4270+ <default>
4271+ <value>0</value>
4272+ <value>0</value>
4273+ <value>1</value>
4274+ <value>3</value>
4275+ <value>0</value>
4276+ <value>2</value>
4277+ <value>2</value>
4278+ <value>2</value>
4279+ <value>2</value>
4280+ <value>2</value>
4281+ </default>
4282+ <desc>
4283+ <value>0</value>
4284+ <_name>Persistent</_name>
4285+ </desc>
4286+ <desc>
4287+ <value>1</value>
4288+ <_name>Mouse Movement</_name>
4289+ </desc>
4290+ <desc>
4291+ <value>2</value>
4292+ <_name>Random Shot</_name>
4293+ </desc>
4294+ <desc>
4295+ <value>3</value>
4296+ <_name>Random Period</_name>
4297+ </desc>
4298+ </option>
4299+ <option name="e_posx" type="list">
4300+ <_short>Position X</_short>
4301+ <_long>The horizontal position of this emitter. May be ignored or used for initialisation, depending on the movement type.</_long>
4302+ <type>int</type>
4303+ <min>0</min>
4304+ <max>3000</max>
4305+ <default>
4306+ <value>0</value>
4307+ <value>0</value>
4308+ <value>0</value>
4309+ <value>1000</value>
4310+ <value>1000</value>
4311+ <value>0</value>
4312+ <value>0</value>
4313+ <value>0</value>
4314+ <value>0</value>
4315+ <value>0</value>
4316+ </default>
4317+ </option>
4318+ <option name="e_posy" type="list">
4319+ <_short>Position Y</_short>
4320+ <_long>The vertical position of this emitter. May be ignored or used for initialisation, depending on the movement type.</_long>
4321+ <type>int</type>
4322+ <min>0</min>
4323+ <max>2000</max>
4324+ <default>
4325+ <value>0</value>
4326+ <value>0</value>
4327+ <value>0</value>
4328+ <value>0</value>
4329+ <value>0</value>
4330+ <value>0</value>
4331+ <value>0</value>
4332+ <value>0</value>
4333+ <value>0</value>
4334+ <value>0</value>
4335+ </default>
4336+ </option>
4337+ <option name="e_speed" type="list">
4338+ <_short>Emitter Speed</_short>
4339+ <_long>The speed of this emitter. May be ignored or used for initialisation, depending on the movement type.</_long>
4340+ <type>int</type>
4341+ <min>0</min>
4342+ <max>1000</max>
4343+ <default>
4344+ <value>100</value>
4345+ <value>0</value>
4346+ <value>0</value>
4347+ <value>0</value>
4348+ <value>0</value>
4349+ <value>1000</value>
4350+ <value>1000</value>
4351+ <value>1000</value>
4352+ <value>1000</value>
4353+ <value>1000</value>
4354+ </default>
4355+ </option>
4356+ <option name="e_angle" type="list">
4357+ <_short>Emitter Angle</_short>
4358+ <_long>The angle for the movement of this emitter. May be ignored or used for initialisation, depending on the movement type.</_long>
4359+ <type>int</type>
4360+ <min>0</min>
4361+ <max>360</max>
4362+ <default>
4363+ <value>326</value>
4364+ <value>0</value>
4365+ <value>0</value>
4366+ <value>0</value>
4367+ <value>0</value>
4368+ <value>13</value>
4369+ <value>33</value>
4370+ <value>53</value>
4371+ <value>73</value>
4372+ <value>93</value>
4373+ </default>
4374+ </option>
4375+ <option name="e_movement" type="list">
4376+ <_short>Movement Type</_short>
4377+ <_long>The movement type of this emitter: Mouse Position (exactly on the core pointer), Follow Mouse (moving towards core pointer at set speed), Bounce (moving at constant speed, bouncing off the walls) or Wrap (moving at constant speed, jumping to the opposite side at a wall).</_long>
4378+ <type>int</type>
4379+ <min>0</min>
4380+ <max>3</max>
4381+ <default>
4382+ <value>2</value>
4383+ <value>0</value>
4384+ <value>0</value>
4385+ <value>3</value>
4386+ <value>3</value>
4387+ <value>3</value>
4388+ <value>3</value>
4389+ <value>3</value>
4390+ <value>3</value>
4391+ <value>3</value>
4392+ </default>
4393+ <desc>
4394+ <value>0</value>
4395+ <_name>Mouse Position</_name>
4396+ </desc>
4397+ <desc>
4398+ <value>1</value>
4399+ <_name>Follow Mouse</_name>
4400+ </desc>
4401+ <desc>
4402+ <value>2</value>
4403+ <_name>Bounce</_name>
4404+ </desc>
4405+ <desc>
4406+ <value>3</value>
4407+ <_name>Wrap</_name>
4408+ </desc>
4409+ </option>
4410+ <option name="e_count" type="list">
4411+ <_short>Particle count</_short>
4412+ <_long>The amount of particles generated each time this emitter is triggered.</_long>
4413+ <type>int</type>
4414+ <min>1</min>
4415+ <max>1000</max>
4416+ <default>
4417+ <value>50</value>
4418+ <value>20</value>
4419+ <value>40</value>
4420+ <value>20</value>
4421+ <value>20</value>
4422+ <value>200</value>
4423+ <value>200</value>
4424+ <value>200</value>
4425+ <value>200</value>
4426+ <value>200</value>
4427+ </default>
4428+ </option>
4429+ <option name="e_h" type="list">
4430+ <_short>Color hue</_short>
4431+ <_long>The color of the particles. This is hue like in HSL colors. It is the center of the range given below.</_long>
4432+ <type>int</type>
4433+ <min>0</min>
4434+ <max>1000</max>
4435+ <default>
4436+ <value>67</value>
4437+ <value>100</value>
4438+ <value>0</value>
4439+ <value>0</value>
4440+ <value>0</value>
4441+ <value>0</value>
4442+ <value>167</value>
4443+ <value>333</value>
4444+ <value>667</value>
4445+ <value>833</value>
4446+ </default>
4447+ </option>
4448+ <option name="e_dh" type="list">
4449+ <_short>Color hue range</_short>
4450+ <_long>The color of the particles can be any value from the hue (given above) plus/minus this range. A range of 500 means any color.</_long>
4451+ <type>int</type>
4452+ <min>0</min>
4453+ <max>500</max>
4454+ <default>
4455+ <value>100</value>
4456+ <value>150</value>
4457+ <value>500</value>
4458+ <value>500</value>
4459+ <value>500</value>
4460+ <value>133</value>
4461+ <value>133</value>
4462+ <value>133</value>
4463+ <value>133</value>
4464+ <value>133</value>
4465+ </default>
4466+ </option>
4467+ <option name="e_l" type="list">
4468+ <_short>Color lightness</_short>
4469+ <_long>The color of the particles. This is lightness like in HSL colors. It is the center of the range given below.</_long>
4470+ <type>int</type>
4471+ <min>0</min>
4472+ <max>1000</max>
4473+ <default>
4474+ <value>450</value>
4475+ <value>600</value>
4476+ <value>650</value>
4477+ <value>650</value>
4478+ <value>650</value>
4479+ <value>650</value>
4480+ <value>650</value>
4481+ <value>650</value>
4482+ <value>650</value>
4483+ <value>650</value>
4484+ </default>
4485+ </option>
4486+ <option name="e_dl" type="list">
4487+ <_short>Color lightness range</_short>
4488+ <_long>The color of the particles can be any value from the lightness (given above) plus/minus this range.</_long>
4489+ <type>int</type>
4490+ <min>0</min>
4491+ <max>1000</max>
4492+ <default>
4493+ <value>250</value>
4494+ <value>100</value>
4495+ <value>150</value>
4496+ <value>150</value>
4497+ <value>150</value>
4498+ <value>150</value>
4499+ <value>150</value>
4500+ <value>150</value>
4501+ <value>150</value>
4502+ <value>150</value>
4503+ </default>
4504+ </option>
4505+ <option name="e_a" type="list">
4506+ <_short>Alpha</_short>
4507+ <_long>The alpha (opacity) of the particles. This is the center of the range given below.</_long>
4508+ <type>int</type>
4509+ <min>0</min>
4510+ <max>1000</max>
4511+ <default>
4512+ <value>500</value>
4513+ <value>400</value>
4514+ <value>700</value>
4515+ <value>700</value>
4516+ <value>700</value>
4517+ <value>700</value>
4518+ <value>700</value>
4519+ <value>700</value>
4520+ <value>700</value>
4521+ <value>700</value>
4522+ </default>
4523+ </option>
4524+ <option name="e_da" type="list">
4525+ <_short>Alpha range</_short>
4526+ <_long>The alpha (opacity) of the particles can be any value from the alpha (given above) plus/minus this range.</_long>
4527+ <type>int</type>
4528+ <min>0</min>
4529+ <max>1000</max>
4530+ <default>
4531+ <value>200</value>
4532+ <value>200</value>
4533+ <value>200</value>
4534+ <value>200</value>
4535+ <value>200</value>
4536+ <value>200</value>
4537+ <value>200</value>
4538+ <value>200</value>
4539+ <value>200</value>
4540+ <value>200</value>
4541+ </default>
4542+ </option>
4543+ <option name="e_dx" type="list">
4544+ <_short>X range</_short>
4545+ <_long>The horizontal range of the particles.</_long>
4546+ <type>int</type>
4547+ <min>0</min>
4548+ <max>1500</max>
4549+ <default>
4550+ <value>0</value>
4551+ <value>0</value>
4552+ <value>0</value>
4553+ <value>1000</value>
4554+ <value>1000</value>
4555+ <value>0</value>
4556+ <value>0</value>
4557+ <value>0</value>
4558+ <value>0</value>
4559+ <value>0</value>
4560+ </default>
4561+ </option>
4562+ <option name="e_dy" type="list">
4563+ <_short>Y range</_short>
4564+ <_long>The vertical range of the particles.</_long>
4565+ <type>int</type>
4566+ <min>0</min>
4567+ <max>1000</max>
4568+ <default>
4569+ <value>0</value>
4570+ <value>0</value>
4571+ <value>0</value>
4572+ <value>0</value>
4573+ <value>0</value>
4574+ <value>0</value>
4575+ <value>0</value>
4576+ <value>0</value>
4577+ <value>0</value>
4578+ <value>0</value>
4579+ </default>
4580+ </option>
4581+ <option name="e_dcirc" type="list">
4582+ <_short>Circular range</_short>
4583+ <_long>The circular range of the particles.</_long>
4584+ <type>int</type>
4585+ <min>0</min>
4586+ <max>1000</max>
4587+ <default>
4588+ <value>30</value>
4589+ <value>5</value>
4590+ <value>20</value>
4591+ <value>0</value>
4592+ <value>0</value>
4593+ <value>5</value>
4594+ <value>5</value>
4595+ <value>5</value>
4596+ <value>5</value>
4597+ <value>5</value>
4598+ </default>
4599+ </option>
4600+ <option name="e_vx" type="list">
4601+ <_short>X speed</_short>
4602+ <_long>The horizontal speed of the particles.</_long>
4603+ <type>int</type>
4604+ <min>-1000</min>
4605+ <max>1000</max>
4606+ <default>
4607+ <value>0</value>
4608+ <value>0</value>
4609+ <value>0</value>
4610+ <value>0</value>
4611+ <value>0</value>
4612+ <value>0</value>
4613+ <value>0</value>
4614+ <value>0</value>
4615+ <value>0</value>
4616+ <value>0</value>
4617+ </default>
4618+ </option>
4619+ <option name="e_vy" type="list">
4620+ <_short>Y speed</_short>
4621+ <_long>The vertical speed of the particles.</_long>
4622+ <type>int</type>
4623+ <min>-1000</min>
4624+ <max>1000</max>
4625+ <default>
4626+ <value>0</value>
4627+ <value>-200</value>
4628+ <value>0</value>
4629+ <value>0</value>
4630+ <value>0</value>
4631+ <value>0</value>
4632+ <value>0</value>
4633+ <value>0</value>
4634+ <value>0</value>
4635+ <value>0</value>
4636+ </default>
4637+ </option>
4638+ <option name="e_vt" type="list">
4639+ <_short>Aging speed</_short>
4640+ <_long>The more negative the sooner particles disappear.</_long>
4641+ <type>int</type>
4642+ <min>-1000</min>
4643+ <max>-1</max>
4644+ <default>
4645+ <value>-30</value>
4646+ <value>-30</value>
4647+ <value>-5</value>
4648+ <value>-5</value>
4649+ <value>-5</value>
4650+ <value>-10</value>
4651+ <value>-10</value>
4652+ <value>-10</value>
4653+ <value>-10</value>
4654+ <value>-10</value>
4655+ </default>
4656+ </option>
4657+ <option name="e_vphi" type="list">
4658+ <_short>Rotation speed</_short>
4659+ <_long>The rotation of the particles can probably only be seen on the really big ones.</_long>
4660+ <type>int</type>
4661+ <min>-1000</min>
4662+ <max>1000</max>
4663+ <default>
4664+ <value>0</value>
4665+ <value>0</value>
4666+ <value>0</value>
4667+ <value>0</value>
4668+ <value>0</value>
4669+ <value>0</value>
4670+ <value>0</value>
4671+ <value>0</value>
4672+ <value>0</value>
4673+ <value>0</value>
4674+ </default>
4675+ </option>
4676+ <option name="e_dvx" type="list">
4677+ <_short>X speed range</_short>
4678+ <_long>The horizontal speed range of the particles.</_long>
4679+ <type>int</type>
4680+ <min>-1000</min>
4681+ <max>1000</max>
4682+ <default>
4683+ <value>0</value>
4684+ <value>50</value>
4685+ <value>0</value>
4686+ <value>0</value>
4687+ <value>0</value>
4688+ <value>0</value>
4689+ <value>0</value>
4690+ <value>0</value>
4691+ <value>0</value>
4692+ <value>0</value>
4693+ </default>
4694+ </option>
4695+ <option name="e_dvy" type="list">
4696+ <_short>Y speed range</_short>
4697+ <_long>The vertical speed range of the particles.</_long>
4698+ <type>int</type>
4699+ <min>-1000</min>
4700+ <max>1000</max>
4701+ <default>
4702+ <value>0</value>
4703+ <value>200</value>
4704+ <value>0</value>
4705+ <value>0</value>
4706+ <value>0</value>
4707+ <value>0</value>
4708+ <value>0</value>
4709+ <value>0</value>
4710+ <value>0</value>
4711+ <value>0</value>
4712+ </default>
4713+ </option>
4714+ <option name="e_dvcirc" type="list">
4715+ <_short>Circular speed range</_short>
4716+ <_long>The circular speed range of the particles.</_long>
4717+ <type>int</type>
4718+ <min>0</min>
4719+ <max>1000</max>
4720+ <default>
4721+ <value>50</value>
4722+ <value>0</value>
4723+ <value>100</value>
4724+ <value>50</value>
4725+ <value>50</value>
4726+ <value>500</value>
4727+ <value>500</value>
4728+ <value>500</value>
4729+ <value>500</value>
4730+ <value>500</value>
4731+ </default>
4732+ </option>
4733+ <option name="e_dvt" type="list">
4734+ <_short>Aging speed range</_short>
4735+ <_long>The range of aging speeds</_long>
4736+ <type>int</type>
4737+ <min>1</min>
4738+ <max>1000</max>
4739+ <default>
4740+ <value>30</value>
4741+ <value>10</value>
4742+ <value>4</value>
4743+ <value>3</value>
4744+ <value>3</value>
4745+ <value>5</value>
4746+ <value>5</value>
4747+ <value>5</value>
4748+ <value>5</value>
4749+ <value>5</value>
4750+ </default>
4751+ </option>
4752+ <option name="e_dvphi" type="list">
4753+ <_short>Rotation speed range</_short>
4754+ <_long>The rotation of the particles can probably only be seen on the really big ones.</_long>
4755+ <type>int</type>
4756+ <min>-1000</min>
4757+ <max>1000</max>
4758+ <default>
4759+ <value>50</value>
4760+ <value>50</value>
4761+ <value>50</value>
4762+ <value>50</value>
4763+ <value>50</value>
4764+ <value>50</value>
4765+ <value>50</value>
4766+ <value>50</value>
4767+ <value>50</value>
4768+ <value>50</value>
4769+ </default>
4770+ </option>
4771+ <option name="e_s" type="list">
4772+ <_short>Particle Size</_short>
4773+ <_long>The size of the particles.</_long>
4774+ <type>int</type>
4775+ <min>0</min>
4776+ <max>1000</max>
4777+ <default>
4778+ <value>50</value>
4779+ <value>20</value>
4780+ <value>50</value>
4781+ <value>50</value>
4782+ <value>50</value>
4783+ <value>50</value>
4784+ <value>50</value>
4785+ <value>50</value>
4786+ <value>50</value>
4787+ <value>50</value>
4788+ </default>
4789+ </option>
4790+ <option name="e_ds" type="list">
4791+ <_short>Particle Size Range</_short>
4792+ <_long>The size range of the particles.</_long>
4793+ <type>int</type>
4794+ <min>0</min>
4795+ <max>1000</max>
4796+ <default>
4797+ <value>25</value>
4798+ <value>10</value>
4799+ <value>25</value>
4800+ <value>25</value>
4801+ <value>25</value>
4802+ <value>25</value>
4803+ <value>25</value>
4804+ <value>25</value>
4805+ <value>25</value>
4806+ <value>25</value>
4807+ </default>
4808+ </option>
4809+ <option name="e_snew" type="list">
4810+ <_short>New Size</_short>
4811+ <_long>The size of the particles when they are new.</_long>
4812+ <type>int</type>
4813+ <min>0</min>
4814+ <max>1000</max>
4815+ <default>
4816+ <value>300</value>
4817+ <value>50</value>
4818+ <value>100</value>
4819+ <value>125</value>
4820+ <value>125</value>
4821+ <value>50</value>
4822+ <value>50</value>
4823+ <value>50</value>
4824+ <value>50</value>
4825+ <value>50</value>
4826+ </default>
4827+ </option>
4828+ <option name="e_dsnew" type="list">
4829+ <_short>New Size Range</_short>
4830+ <_long>The size range of the particles when they are new.</_long>
4831+ <type>int</type>
4832+ <min>0</min>
4833+ <max>1000</max>
4834+ <default>
4835+ <value>150</value>
4836+ <value>30</value>
4837+ <value>25</value>
4838+ <value>50</value>
4839+ <value>50</value>
4840+ <value>25</value>
4841+ <value>25</value>
4842+ <value>25</value>
4843+ <value>25</value>
4844+ <value>25</value>
4845+ </default>
4846+ </option>
4847+ <option name="e_g" type="list">
4848+ <_short>Gravity</_short>
4849+ <_long>The strength of the gravity effect, these particles have. (See gravity probability. May be especially resource consuming.)</_long>
4850+ <type>int</type>
4851+ <min>-1000</min>
4852+ <max>1000</max>
4853+ <default>
4854+ <value>0</value>
4855+ <value>0</value>
4856+ <value>0</value>
4857+ <value>0</value>
4858+ <value>0</value>
4859+ <value>0</value>
4860+ <value>0</value>
4861+ <value>0</value>
4862+ <value>0</value>
4863+ <value>0</value>
4864+ </default>
4865+ </option>
4866+ <option name="e_dg" type="list">
4867+ <_short>Gravity Range</_short>
4868+ <_long>The strength range of the gravity effect, these particles have. (See gravity probability. May be especially resource consuming.</_long>
4869+ <type>int</type>
4870+ <min>-1000</min>
4871+ <max>1000</max>
4872+ <default>
4873+ <value>0</value>
4874+ <value>0</value>
4875+ <value>0</value>
4876+ <value>0</value>
4877+ <value>200</value>
4878+ <value>0</value>
4879+ <value>0</value>
4880+ <value>0</value>
4881+ <value>0</value>
4882+ <value>0</value>
4883+ </default>
4884+ </option>
4885+ <option name="e_gp" type="list">
4886+ <_short>Gravity Probability</_short>
4887+ <_long>The probability that a particle has the gravity effect, that has been set up above. This value represents gravity particles out of 10000 particles. (Using gravity on too many particles may be very resource consuming.)</_long>
4888+ <type>int</type>
4889+ <min>0</min>
4890+ <max>10000</max>
4891+ <default>
4892+ <value>0</value>
4893+ <value>0</value>
4894+ <value>0</value>
4895+ <value>0</value>
4896+ <value>10</value>
4897+ <value>0</value>
4898+ <value>0</value>
4899+ <value>0</value>
4900+ <value>0</value>
4901+ <value>0</value>
4902+ </default>
4903+ </option>
4904+ </group>
4905+ <group>
4906+ <_short>General</_short>
4907+ <subgroup>
4908+ <_short>Advanced</_short>
4909+ <option name="hard_limit" type="int">
4910+ <_short>Hard limit for particles</_short>
4911+ <_long>If this hard limit is reached, no new particles are created.</_long>
4912+ <default>3000</default>
4913+ <min>100</min>
4914+ <max>5000</max>
4915+ </option>
4916+ <option name="soft_limit" type="int">
4917+ <_short>Soft limit for particles</_short>
4918+ <_long>This soft limit can be exceeded. If this happens, particles will die faster.</_long>
4919+ <default>2000</default>
4920+ <min>100</min>
4921+ <max>5000</max>
4922+ </option>
4923+ <option name="darken" type="float">
4924+ <_short>Darken backgound</_short>
4925+ <_long>Darken background under particles</_long>
4926+ <default>0.9</default>
4927+ <min>0.0</min>
4928+ <max>1.0</max>
4929+ <precision>0.1</precision>
4930+ </option>
4931+ <option name="blend" type="bool">
4932+ <_short>Additive blending</_short>
4933+ <_long>Additive blending of particles</_long>
4934+ <default>true</default>
4935+ </option>
4936+ <option name="tnew" type="float">
4937+ <_short>New particle time</_short>
4938+ <_long>If the age of a particle is above this value, it is regarded as new and is especially bright and large. Particles are born at the age of 1.0 and die at the age of 0.0.</_long>
4939+ <default>0.98</default>
4940+ <min>0.0</min>
4941+ <max>1.0</max>
4942+ <precision>0.01</precision>
4943+ </option>
4944+ <option name="told" type="float">
4945+ <_short>Old particle time</_short>
4946+ <_long>If the age of a particle is below this value, it is regarded as old and starts to fade. Particles are born at the age of 1.0 and die at the age of 0.0.</_long>
4947+ <default>0.4</default>
4948+ <min>0.0</min>
4949+ <max>1.0</max>
4950+ <precision>0.01</precision>
4951+ </option>
4952+ </subgroup>
4953+ </group>
4954+ </options>
4955+ </plugin>
4956+</compiz>

Subscribers

People subscribed via source and target branches