Signature
An animated SVG signature effect that draws out text as if hand-written.
Preview supplied by Arlan Marat; live previews were recorded from Arlan's Vault when no published video file was available. Preview: platform recorded · rights cleared.
Flower lattice is an animated canvas study published directly in the Vault gallery.
VSource LandVaultWhy it stands out
Flower lattice is an animated canvas study published directly in the Vault gallery.
Build this: a row of blue line-drawn flowers on paper behind a heavy frame, rebuilt frame by frame from a 96-frame reference GIF (12fps, a seamless 8.0s loop, two colours and nothing else). THE FLOWER DOES NOT ROTATE - IT BLINKS: eight thin swirled petals flood closed with colour until only a few fat white petals with slash highlights remain, then sweep open again. That is a genuine SHAPE MORPH, eight petals becoming five, so every procedural model of a rotating motif is dead on arrival. The 48 unique poses were TRACED straight off the reference frames instead (subpixel marching squares, a light gaussian smooth along each contour, Douglas-Peucker at 0.45px), stored as closed rings in pitch units and filled EVEN-ODD so the white petals and hub punch out on their own. One blink is 24 frames but the second lands rotated by about half a petal pitch, so the true cycle is 48 poses played twice per loop, and every flower on screen runs it in perfect unison. THE LATTICE IS SQUARE, pitch = half the frame height. The reference draws three rows at 0, 1/2 and 1 of the height so the outer rows' centres sit exactly ON the canvas edges and only their inner halves show - measure that before assuming they are a different motif, because they disguise themselves well enough that chasing phantom differences there (different sizes, mirrored copies, per-row phase offsets) burned three measurement rounds, and white blobs that looked like flower hubs turned out to be gaps BETWEEN scallops. EACH TRACED CELL CARRIES FOUR THIN SLIVERS at ~0.572 pitch on the axes: that is the neighbouring cell's edge, captured because the reference had a neighbour there. They are meant to merge with the next row's flower. Draw fewer rows than the reference and they have nothing to merge with, so they float in open paper as small stray arcs. Filter them by CENTROID RADIUS (every flower ring sits inside 0.5 pitch, every sliver beyond 0.57, so the two groups separate cleanly) rather than by index, which breaks the moment a pose has a different ring count. THE MOTION: rows drift horizontally, exactly ONE PITCH per 96-frame loop at a DEAD-UNIFORM rate - that is the entire seamlessness, and the travel must be a WHOLE number of pitches or the lattice sits mid-stride at the loop point and visibly tears. The uniformity was hard-won: naive frame-to-frame cross-correlation of the bands swears the rows creep while the flowers are open and surge around each blink, a lovely story that is pure ARTIFACT, because a correlation peak collapses toward zero shift when consecutive frames differ mostly by the morph, so every blink swallows real motion. Template-matching the traced pose against the bands at every frame - immune to the morph because the template morphs along - lands on a straight line instead. Measure periodic or morphing content by a feature that cannot alias. THE STEPPING IS THE POINT: the reference holds every frame with nothing moving between, so the engine advances in discrete 12fps ticks and the rAF loop only redraws when the tick changes. Interpolating between poses is impossible anyway (they are different drawings), and smoothing the row travel while the flowers snap would tear the two motions apart. The field is clipped to the frame's interior and the solid border is drawn on top with one even-odd fill of two nested rects. The white notches that flicker in the frame's corners are not corner geometry, they are the flowers' holes drifting past under the border. THE PALETTE IS THE ONE THING NOT MEASURED - the drawing needs only two colours far enough apart in value; keep the contrast near the reference's and any pairing works. Every vertical measure is a fraction of the height, so a wider card simply tiles MORE COLUMNS, which is what a periodic lattice wants to do. Cell edges are drawn crisp on device pixels. Framework-free Canvas 2D, no assets, no library; DPR-capped at 2, pauses offscreen / when hidden / during route transitions, one static frame under reduced motion.
The complete, self-contained implementation follows, one file per block. It is framework-agnostic core logic — wire it into your own component and mount it on an element.
### flower-lattice/params.ts
```ts
export const TICKS = 96;
export const FPS = 12;
export const POSE_COUNT = 48;
export const PAPER = "#faf3e8";
export const INK = "#b2451b";
export const PITCH = 0.5;
export const ROWS: number[] = [0.5];
export const MARGIN = 0.05;
export const BORDER = 1 / 30;
export const FLOWER_R = 0.46;
export const TRAVEL_PER_LOOP = 1;
export const CENTER_COLUMN = true;
```
### flower-lattice/flipbook.ts
```ts
export const POSES: number[][][] = [
[[.047,-.596,.131,-.594,.133,-.592,.132,-.591,.106,-.57,.072,-.552,.039,-.543,0,-.539,-.033,-.543,-.068,-.553,-.099,-.569,-.128,-.593,-.104,-.595],[.029,.459,.006,.461,-.019,.459,-.058,.451,-.085,.439,-.105,.426,-.125,.41,-.153,.38,-.208,.381,-.245,.374,-.265,.366,-.285,.356,-.307,.341,-.321,.328,-.347,.298,-.358,.278,-.367,.255,-.376,.214,-.375,.16,-.409,.13,-.431,.099,-.448,.063,-.457,.019,-.456,-.022,-.451,-.047,-.445,-.066,-.434,-.088,-.416,-.115,-.377,-.154,-.379,-.208,-.374,-.236,-.368,-.255,-.357,-.278,-.347,-.296,-.333,-.313,-.312,-.333,-.295,-.346,-.274,-.359,-.252,-.367,-.225,-.374,-.211,-.376,-.157,-.375,-.128,-.407,-.103,-.427,-.069,-.445,-.031,-.455,.008,-.458,.036,-.454,.061,-.448,.091,-.434,.118,-.416,.156,-.377,.211,-.379,.239,-.374,.266,-.365,.281,-.357,.298,-.347,.318,-.331,.332,-.317,.347,-.298,.364,-.268,.371,-.25,.378,-.223,.38,-.194,.378,-.157,.412,-.127,.436,-.093,.448,-.069,.453,-.052,.46,-.011,.459,.028,.448,.069,.431,.102,.419,.118,.399,.139,.381,.154,.382,.211,.377,.239,.364,.274,.35,.298,.336,.315,.317,.335,.299,.348,.261,.368,.217,.379,.16,.378,.13,.411,.106,.43,.072,.448],[-.046,-.123,-.018,-.13,-.013,-.134,.006,-.216,.016,-.247,.028,-.278,.039,-.299,.053,-.318,.089,-.351,.087,-.355,.08,-.362,.057,-.378,.033,-.388,.013,-.392,-.011,-.392,-.033,-.388,-.058,-.378,-.076,-.366,-.094,-.348,-.105,-.332,-.114,-.313,-.12,-.291,-.121,-.261,-.108,-.221,-.077,-.163,-.054,-.128],[.09,-.106,.156,-.148,.193,-.167,.22,-.178,.261,-.188,.313,-.186,.314,-.197,.311,-.219,.3,-.249,.28,-.276,.258,-.295,.237,-.305,.218,-.311,.197,-.314,.175,-.313,.154,-.308,.135,-.3,.117,-.288,.105,-.277,.095,-.262,.086,-.246,.073,-.209,.053,-.125,.057,-.12,.081,-.105],[-.121,-.051,-.104,-.08,-.103,-.085,-.145,-.151,-.164,-.19,-.178,-.223,-.185,-.258,-.183,-.31,-.189,-.312,-.203,-.311,-.223,-.308,-.247,-.298,-.266,-.287,-.284,-.269,-.297,-.251,-.305,-.234,-.312,-.214,-.314,-.189,-.311,-.165,-.305,-.144,-.295,-.123,-.276,-.101,-.259,-.09,-.244,-.083,-.186,-.063],[-.596,-.045,-.595,-.107,-.594,-.128,-.593,-.131,-.591,-.13,-.569,-.102,-.552,-.069,-.542,-.033,-.539,.003,-.543,.036,-.553,.071,-.572,.107,-.593,.131,-.595,.107],[.593,.046,.592,.105,.59,.128,.572,.105,.555,.072,.546,.039,.542,.003,.546,-.033,.555,-.066,.572,-.099,.589,-.121,.59,-.122,.591,-.12,.593,-.099],[.357,.088,.373,.069,.384,.05,.391,.031,.395,.008,.394,-.014,.39,-.036,.38,-.059,.364,-.082,.348,-.097,.329,-.108,.308,-.117,.283,-.122,.267,-.122,.248,-.118,.222,-.108,.192,-.092,.166,-.077,.128,-.051,.126,-.045,.135,-.014,.218,.006,.277,.027,.3,.038,.319,.052,.339,.071,.352,.088],[-.251,.122,-.229,.114,-.193,.097,-.126,.056,-.123,.05,-.13,.02,-.136,.015,-.202,.001,-.255,-.016,-.288,-.03,-.31,-.044,-.328,-.06,-.349,-.085,-.354,-.086,-.362,-.077,-.378,-.055,-.39,-.019,-.392,.013,-.385,.044,-.377,.062,-.365,.08,-.348,.097,-.33,.109,-.313,.117,-.289,.124,-.267,.125],[.018,.066,.03,.062,.04,.056,.049,.048,.058,.037,.064,.024,.068,.011,.067,-.013,.064,-.023,.056,-.038,.048,-.047,.037,-.055,.024,-.062,.011,-.065,-.014,-.064,-.036,-.054,-.047,-.045,-.055,-.034,-.064,-.011,-.064,.014,-.061,.026,-.054,.039,-.045,.049,-.034,.058,-.011,.067],[.208,.314,.228,.31,.252,.3,.269,.289,.287,.272,.299,.256,.309,.235,.314,.216,.316,.189,.314,.165,.308,.147,.297,.126,.281,.106,.267,.096,.249,.086,.197,.068,.126,.053,.109,.081,.108,.086,.15,.154,.17,.193,.181,.22,.187,.242,.191,.264,.189,.313,.192,.314],[-.185,.317,-.162,.314,-.142,.307,-.12,.295,-.101,.278,-.089,.26,-.076,.231,-.069,.21,-.056,.157,-.05,.126,-.054,.122,-.081,.107,-.087,.109,-.145,.146,-.192,.17,-.226,.184,-.258,.191,-.283,.191,-.306,.188,-.31,.189,-.312,.192,-.311,.21,-.301,.244,-.291,.262,-.276,.28,-.255,.298,-.23,.31,-.211,.315],[.016,.394,.038,.39,.059,.382,.078,.369,.09,.358,.101,.346,.114,.324,.12,.308,.125,.283,.124,.264,.114,.231,.097,.196,.079,.164,.053,.126,.05,.125,.03,.131,.02,.133,.016,.137,-.003,.218,-.019,.266,-.03,.291,-.05,.321,-.086,.353,-.084,.358,-.073,.369,-.045,.385,-.014,.394],[-.043,.593,-.103,.592,-.125,.59,-.102,.572,-.071,.556,-.036,.546,-.001,.542,.036,.546,.069,.555,.102,.572,.125,.59,.102,.593]],
[[.028,-.596,.09,-.595,.112,-.594,.114,-.592,.113,-.591,.087,-.57,.054,-.553,.019,-.543,-.017,-.539,-.053,-.543,-.085,-.552,-.116,-.568,-.146,-.591,-.147,-.593,-.145,-.594,-.123,-.595],[.021,.459,-.003,.461,-.03,.459,-.074,.448,-.099,.436,-.116,.425,-.135,.409,-.156,.388,-.205,.387,-.238,.381,-.276,.364,-.298,.349,-.311,.338,-.328,.321,-.344,.298,-.361,.26,-.368,.236,-.371,.214,-.371,.186,-.367,.157,-.408,.121,-.433,.087,-.444,.065,-.45,.046,-.456,.022,-.458,0,-.456,-.033,-.445,-.074,-.434,-.097,-.422,-.116,-.408,-.134,-.385,-.156,-.385,-.206,-.378,-.238,-.361,-.276,-.348,-.296,-.335,-.311,-.318,-.328,-.297,-.343,-.275,-.354,-.255,-.362,-.233,-.368,-.211,-.37,-.183,-.37,-.154,-.367,-.125,-.402,-.095,-.427,-.06,-.445,-.019,-.456,.006,-.458,.031,-.456,.071,-.447,.094,-.437,.117,-.424,.137,-.408,.159,-.385,.206,-.385,.24,-.378,.279,-.361,.301,-.347,.316,-.334,.33,-.318,.347,-.295,.365,-.255,.373,-.211,.373,-.186,.37,-.154,.394,-.135,.411,-.118,.436,-.084,.448,-.06,.454,-.041,.459,-.016,.461,.003,.457,.044,.447,.079,.427,.117,.409,.138,.388,.159,.388,.206,.381,.241,.365,.277,.349,.301,.339,.313,.321,.33,.3,.346,.26,.364,.236,.37,.214,.373,.186,.373,.157,.37,.128,.404,.098,.43,.063,.448],[-.04,-.125,-.02,-.13,-.018,-.133,-.008,-.185,.005,-.239,.016,-.271,.027,-.296,.038,-.313,.05,-.329,.089,-.361,.076,-.372,.06,-.381,.042,-.388,.017,-.392,-.004,-.392,-.025,-.387,-.049,-.378,-.065,-.367,-.079,-.355,-.095,-.335,-.105,-.315,-.111,-.294,-.113,-.275,-.112,-.259,-.098,-.217,-.078,-.176,-.057,-.141,-.047,-.126],[.093,-.103,.159,-.142,.215,-.167,.256,-.178,.303,-.178,.306,-.179,.308,-.189,.307,-.211,.304,-.23,.297,-.249,.279,-.277,.263,-.292,.247,-.304,.23,-.312,.208,-.318,.186,-.32,.164,-.318,.142,-.312,.125,-.304,.107,-.291,.093,-.277,.081,-.256,.067,-.215,.055,-.166,.049,-.128,.051,-.122,.084,-.103],[-.123,-.048,-.112,-.069,-.1,-.085,-.1,-.088,-.144,-.165,-.165,-.212,-.173,-.237,-.177,-.261,-.177,-.302,-.183,-.304,-.2,-.305,-.228,-.301,-.249,-.294,-.271,-.281,-.287,-.266,-.3,-.249,-.311,-.229,-.317,-.208,-.32,-.183,-.317,-.159,-.311,-.137,-.3,-.116,-.289,-.102,-.277,-.091,-.266,-.083,-.242,-.073,-.182,-.056,-.13,-.046],[.594,.036,.593,.097,.592,.117,.59,.119,.589,.118,.572,.096,.555,.063,.545,.028,.542,-.008,.546,-.042,.555,-.074,.571,-.106,.591,-.132,.593,-.109],[-.596,-.036,-.595,-.098,-.593,-.122,-.569,-.093,-.553,-.062,-.543,-.028,-.539,.008,-.543,.044,-.553,.079,-.569,.11,-.591,.138,-.592,.139,-.594,.137,-.595,.115],[.365,.088,.379,.069,.387,.052,.394,.025,.395,.003,.391,-.022,.385,-.039,.373,-.061,.358,-.079,.336,-.096,.317,-.105,.296,-.111,.278,-.113,.264,-.112,.246,-.108,.212,-.095,.186,-.082,.129,-.048,.127,-.042,.134,-.019,.233,.002,.288,.022,.315,.037,.33,.049,.349,.069,.361,.087],[-.254,.114,-.239,.109,-.204,.095,-.174,.08,-.126,.05,-.125,.045,-.13,.023,-.137,.019,-.185,.011,-.241,-.003,-.285,-.019,-.315,-.036,-.333,-.052,-.359,-.084,-.361,-.086,-.365,-.083,-.382,-.055,-.391,-.022,-.391,.009,-.383,.04,-.374,.058,-.359,.077,-.331,.1,-.309,.11,-.294,.114,-.272,.116],[.018,.066,.03,.062,.04,.056,.05,.048,.058,.037,.064,.026,.067,.014,.067,-.013,.064,-.024,.057,-.036,.048,-.047,.035,-.056,.014,-.065,-.006,-.065,-.015,-.064,-.036,-.054,-.047,-.045,-.055,-.034,-.062,-.021,-.065,-.008,-.064,.016,-.054,.039,-.045,.049,-.034,.058,-.011,.067,.006,.068],[.224,.305,.249,.298,.269,.287,.286,.273,.3,.257,.314,.232,.32,.211,.322,.189,.321,.164,.315,.142,.308,.127,.293,.106,.28,.093,.261,.082,.237,.073,.189,.059,.128,.049,.125,.051,.104,.089,.148,.165,.171,.217,.181,.258,.181,.304,.184,.307,.194,.308],[-.173,.322,-.147,.318,-.13,.311,-.106,.295,-.089,.279,-.076,.253,-.065,.222,-.053,.171,-.046,.133,-.049,.125,-.082,.105,-.086,.105,-.146,.139,-.19,.161,-.227,.175,-.258,.181,-.3,.18,-.303,.182,-.304,.186,-.305,.214,-.298,.244,-.284,.269,-.269,.287,-.252,.301,-.227,.315,-.205,.321],[.007,.394,.028,.39,.05,.382,.067,.371,.08,.359,.094,.343,.102,.329,.111,.307,.115,.289,.115,.269,.111,.246,.101,.22,.08,.177,.05,.129,.045,.127,.025,.132,.022,.134,.019,.14,.011,.188,-.002,.241,-.02,.29,-.031,.31,-.048,.331,-.086,.364,-.07,.377,-.047,.388,-.019,.395],[-.023,.593,-.083,.593,-.106,.59,-.082,.572,-.049,.555,-.017,.546,.019,.542,.056,.546,.088,.555,.121,.572,.143,.589,.144,.59,.142,.592,.122,.593]],
[[.009,-.596,.071,-.595,.092,-.594,.095,-.593,.093,-.591,.067,-.57,.032,-.552,-0,-.543,-.036,-.54,-.069,-.543,-.104,-.553,-.137,-.57,-.165,-.592,-.166,-.593,-.164,-.594,-.143,-.596],[.007,.459,-.036,.459,-.064,.454,-.083,.448,-.118,.43,-.135,.417,-.159,.394,-.197,.393,-.238,.384,-.276,.366,-.308,.34,-.328,.318,-.339,.301,-.348,.283,-.358,.254,-.362,.236,-.365,.206,-.358,.153,-.401,.119,-.429,.086,-.444,.056,-.451,.035,-.456,.008,-.457,-.014,-.454,-.05,-.444,-.084,-.424,-.122,-.392,-.159,-.39,-.203,-.385,-.228,-.378,-.246,-.362,-.277,-.338,-.308,-.315,-.328,-.295,-.341,-.28,-.348,-.251,-.358,-.233,-.362,-.203,-.365,-.151,-.358,-.118,-.4,-.084,-.427,-.043,-.447,-.007,-.456,.039,-.456,.066,-.451,.085,-.445,.122,-.426,.162,-.392,.203,-.39,.23,-.384,.249,-.378,.28,-.362,.301,-.347,.315,-.333,.331,-.315,.343,-.297,.353,-.274,.362,-.249,.365,-.233,.368,-.203,.361,-.151,.404,-.117,.431,-.083,.445,-.057,.453,-.033,.459,-.005,.46,.017,.457,.053,.447,.087,.43,.12,.394,.162,.393,.203,.387,.23,.381,.249,.365,.28,.342,.31,.32,.329,.303,.34,.283,.351,.254,.361,.236,.365,.206,.368,.153,.36,.122,.401,.089,.429,.052,.448,.033,.454],[-.031,-.128,-.023,-.13,-.022,-.134,-.011,-.202,-.006,-.225,.005,-.266,.017,-.296,.028,-.315,.039,-.329,.056,-.346,.083,-.366,.086,-.369,.074,-.378,.052,-.387,.033,-.391,.014,-.392,-.011,-.388,-.027,-.383,-.047,-.373,-.066,-.359,-.08,-.343,-.093,-.322,-.1,-.302,-.103,-.286,-.104,-.269,-.101,-.251,-.094,-.229,-.078,-.19,-.044,-.129,-.039,-.126],[.097,-.1,.163,-.136,.213,-.158,.25,-.168,.272,-.17,.292,-.169,.297,-.171,.301,-.192,.301,-.217,.297,-.235,.29,-.255,.28,-.273,.269,-.287,.251,-.302,.236,-.312,.214,-.321,.196,-.325,.172,-.326,.156,-.324,.134,-.317,.116,-.308,.099,-.296,.083,-.279,.072,-.257,.059,-.214,.052,-.18,.045,-.128,.047,-.124,.068,-.114,.088,-.1],[-.126,-.042,-.097,-.091,-.134,-.159,-.157,-.214,-.168,-.258,-.168,-.289,-.17,-.293,-.192,-.298,-.219,-.298,-.246,-.291,-.275,-.276,-.294,-.259,-.306,-.243,-.317,-.222,-.323,-.2,-.326,-.178,-.324,-.158,-.317,-.131,-.308,-.113,-.285,-.086,-.257,-.069,-.199,-.053],[.594,.028,.593,.088,.592,.108,.591,.11,.589,.109,.572,.087,.556,.054,.546,.019,.543,-.017,.546,-.05,.556,-.084,.573,-.117,.591,-.14,.593,-.118],[-.596,-.027,-.596,-.09,-.593,-.113,-.57,-.084,-.553,-.052,-.543,-.017,-.54,.017,-.543,.05,-.553,.087,-.57,.12,-.591,.147,-.592,.148,-.594,.145,-.595,.124],[.374,.085,.383,.068,.391,.047,.395,.024,.393,0,.387,-.025,.379,-.042,.368,-.058,.349,-.078,.329,-.091,.313,-.098,.3,-.101,.275,-.104,.256,-.101,.234,-.095,.182,-.072,.131,-.043,.129,-.036,.134,-.022,.221,-.008,.26,.002,.296,.016,.311,.024,.332,.039,.35,.057,.368,.083],[-.26,.105,-.231,.098,-.204,.086,-.131,.048,-.126,.042,-.129,.028,-.134,.024,-.202,.014,-.255,.001,-.294,-.013,-.318,-.028,-.343,-.05,-.367,-.082,-.371,-.083,-.385,-.055,-.392,-.021,-.39,.005,-.381,.035,-.372,.051,-.359,.069,-.333,.09,-.318,.097,-.3,.104,-.278,.107],[.018,.066,.03,.062,.04,.056,.05,.048,.058,.037,.064,.026,.067,.014,.067,-.013,.057,-.036,.048,-.047,.035,-.056,.024,-.062,.011,-.065,-.015,-.064,-.036,-.054,-.047,-.045,-.055,-.034,-.064,-.011,-.064,.016,-.054,.039,-.045,.05,-.033,.059,-.022,.064,-.008,.068],[.226,.3,.248,.294,.274,.281,.29,.269,.308,.248,.318,.23,.325,.21,.328,.189,.328,.163,.324,.145,.314,.121,.298,.098,.285,.086,.269,.076,.252,.069,.188,.053,.129,.045,.116,.07,.103,.088,.102,.094,.137,.159,.161,.213,.171,.25,.173,.295,.178,.298,.194,.301],[-.159,.328,-.131,.32,-.113,.311,-.094,.296,-.08,.28,-.069,.26,-.056,.215,-.042,.132,-.045,.127,-.065,.117,-.089,.102,-.151,.134,-.187,.151,-.231,.167,-.267,.173,-.291,.172,-.295,.176,-.298,.197,-.298,.222,-.29,.25,-.278,.274,-.26,.295,-.237,.313,-.211,.324,-.186,.329],[-.004,.394,.019,.39,.037,.383,.051,.375,.07,.36,.085,.342,.097,.323,.104,.302,.107,.283,.106,.267,.098,.234,.08,.193,.064,.162,.046,.13,.039,.129,.026,.133,.011,.22,-.002,.269,-.013,.296,-.024,.316,-.04,.336,-.054,.35,-.083,.372,-.071,.381,-.047,.39,-.023,.394],[-.004,.594,-.064,.593,-.086,.59,-.063,.572,-.024,.553,.006,.545,.039,.543,.072,.546,.107,.556,.138,.571,.163,.59,.141,.593]],
[[-.011,-.596,.051,-.596,.072,-.594,.075,-.593,.074,-.591,.046,-.57,.012,-.553,-.025,-.543,-.056,-.541,-.086,-.543,-.123,-.553,-.156,-.57,-.185,-.593,-.162,-.596],[-.007,.459,-.033,.459,-.053,.457,-.09,.447,-.126,.43,-.163,.4,-.204,.397,-.232,.389,-.254,.38,-.281,.363,-.308,.34,-.327,.315,-.337,.297,-.347,.274,-.354,.247,-.357,.217,-.357,.194,-.348,.149,-.376,.131,-.396,.114,-.411,.099,-.428,.077,-.441,.051,-.451,.024,-.456,-.008,-.457,-.031,-.451,-.069,-.441,-.1,-.425,-.129,-.398,-.163,-.395,-.202,-.381,-.246,-.361,-.281,-.335,-.309,-.312,-.327,-.287,-.341,-.269,-.348,-.244,-.354,-.214,-.357,-.192,-.356,-.146,-.348,-.128,-.376,-.112,-.397,-.077,-.426,-.056,-.438,-.032,-.447,.011,-.456,.039,-.456,.056,-.454,.093,-.445,.13,-.426,.164,-.398,.207,-.394,.233,-.387,.255,-.378,.287,-.358,.311,-.337,.33,-.312,.34,-.294,.351,-.269,.357,-.244,.36,-.217,.359,-.189,.35,-.146,.379,-.128,.399,-.112,.414,-.096,.431,-.074,.444,-.048,.453,-.022,.459,.011,.459,.036,.453,.074,.442,.105,.425,.135,.4,.166,.397,.207,.383,.251,.365,.283,.338,.312,.315,.33,.29,.344,.272,.351,.247,.357,.222,.36,.197,.359,.178,.357,.149,.35,.131,.379,.115,.399,.082,.427,.041,.448,.019,.454],[-.031,-.128,-.026,-.133,-.018,-.2,-.011,-.238,.006,-.293,.021,-.322,.034,-.337,.054,-.356,.081,-.375,.078,-.38,.055,-.388,.036,-.391,.017,-.391,-.003,-.388,-.023,-.38,-.038,-.373,-.058,-.357,-.076,-.336,-.083,-.323,-.094,-.288,-.095,-.265,-.087,-.234,-.078,-.207,-.041,-.133,-.037,-.128],[.101,-.098,.16,-.128,.201,-.145,.244,-.157,.28,-.162,.286,-.165,.291,-.18,.295,-.208,.293,-.23,.286,-.254,.275,-.276,.259,-.296,.239,-.312,.222,-.321,.202,-.328,.183,-.331,.164,-.331,.142,-.328,.124,-.322,.101,-.309,.083,-.293,.072,-.277,.062,-.253,.052,-.219,.045,-.178,.041,-.128,.043,-.125,.071,-.112,.092,-.096],[-.126,-.039,-.113,-.067,-.094,-.094,-.128,-.162,-.145,-.204,-.156,-.247,-.16,-.28,-.167,-.284,-.184,-.289,-.201,-.292,-.218,-.292,-.252,-.284,-.278,-.271,-.296,-.256,-.311,-.237,-.322,-.218,-.328,-.199,-.331,-.178,-.331,-.156,-.325,-.129,-.312,-.103,-.299,-.086,-.286,-.074,-.255,-.06,-.219,-.05,-.183,-.043,-.147,-.039],[.593,.019,.592,.078,.59,.1,.572,.077,.555,.041,.545,.006,.543,-.025,.546,-.055,.555,-.091,.572,-.124,.59,-.147,.592,-.125],[-.596,-.017,-.595,-.079,-.594,-.1,-.592,-.103,-.591,-.102,-.569,-.074,-.552,-.038,-.543,-.005,-.541,.028,-.543,.058,-.553,.093,-.569,.127,-.594,.157,-.596,.134],[.382,.08,.39,.058,.393,.039,.393,.017,.39,-.003,.381,-.027,.37,-.046,.353,-.065,.338,-.076,.32,-.086,.304,-.091,.289,-.095,.27,-.095,.228,-.084,.174,-.061,.132,-.039,.13,-.034,.134,-.027,.224,-.014,.254,-.008,.296,.006,.317,.017,.331,.026,.359,.054,.377,.08],[-.261,.097,-.217,.084,-.171,.064,-.131,.043,-.127,.039,-.129,.033,-.133,.029,-.203,.02,-.251,.011,-.291,-.002,-.318,-.017,-.347,-.041,-.362,-.059,-.373,-.076,-.377,-.078,-.382,-.07,-.387,-.055,-.391,-.028,-.388,.003,-.378,.032,-.358,.06,-.332,.081,-.299,.095,-.283,.098],[.018,.066,.039,.057,.05,.048,.059,.035,.067,.014,.067,-.013,.063,-.025,.056,-.038,.048,-.047,.035,-.056,.014,-.065,-.003,-.065,-.015,-.064,-.034,-.055,-.045,-.047,-.055,-.034,-.064,-.011,-.064,.016,-.061,.026,-.054,.039,-.045,.049,-.034,.058,-.011,.067,.006,.068],[.216,.294,.242,.291,.263,.284,.287,.269,.301,.256,.315,.238,.328,.212,.333,.188,.334,.167,.331,.143,.325,.124,.314,.104,.296,.083,.282,.073,.26,.063,.208,.05,.152,.042,.131,.041,.128,.043,.114,.072,.099,.095,.1,.101,.131,.162,.148,.201,.16,.242,.165,.283,.17,.287,.181,.29,.2,.294],[-.152,.333,-.127,.327,-.103,.315,-.085,.3,-.07,.282,-.06,.258,-.05,.222,-.043,.183,-.038,.133,-.04,.128,-.065,.117,-.092,.099,-.153,.129,-.198,.147,-.228,.157,-.248,.161,-.28,.165,-.284,.17,-.288,.183,-.291,.2,-.292,.219,-.287,.244,-.278,.269,-.266,.287,-.247,.307,-.227,.32,-.201,.33,-.178,.334],[-.001,.392,.016,.387,.036,.379,.052,.367,.065,.355,.079,.338,.088,.322,.098,.289,.098,.27,.094,.25,.084,.22,.069,.185,.042,.132,.038,.13,.033,.131,.03,.134,.028,.139,.017,.225,.011,.254,-.003,.296,-.019,.324,-.031,.34,-.053,.36,-.078,.378,-.077,.381,-.073,.383,-.048,.391,-.025,.394],[.016,.594,-.044,.593,-.066,.59,-.043,.572,-.01,.556,.025,.546,.058,.544,.089,.546,.124,.555,.157,.572,.181,.589,.182,.591,.18,.592,.16,.593]],
[[-.04,-.597,.029,-.596,.052,-.595,.055,-.593,.054,-.592,.026,-.57,-.01,-.553,-.05,-.543,-.086,-.542,-.116,-.546,-.14,-.553,-.173,-.57,-.205,-.594,-.23,-.596],[-.029,.458,-.058,.457,-.096,.448,-.132,.43,-.165,.406,-.194,.403,-.216,.398,-.236,.391,-.257,.38,-.277,.367,-.307,.339,-.328,.307,-.345,.264,-.351,.225,-.35,.206,-.346,.175,-.349,.139,-.351,.136,-.379,.119,-.396,.105,-.411,.09,-.428,.066,-.441,.04,-.45,.013,-.454,-.008,-.456,-.04,-.451,-.075,-.441,-.106,-.428,-.132,-.403,-.165,-.398,-.205,-.384,-.244,-.362,-.28,-.336,-.307,-.303,-.329,-.273,-.341,-.249,-.347,-.219,-.351,-.172,-.346,-.137,-.349,-.133,-.351,-.118,-.377,-.103,-.396,-.085,-.412,-.065,-.427,-.047,-.437,-.019,-.448,.011,-.454,.031,-.456,.058,-.454,.099,-.445,.135,-.428,.168,-.403,.208,-.398,.241,-.387,.26,-.378,.28,-.364,.309,-.336,.331,-.305,.348,-.261,.354,-.222,.353,-.203,.349,-.172,.352,-.137,.354,-.133,.38,-.118,.398,-.103,.415,-.086,.431,-.063,.447,-.031,.454,-.008,.458,.014,.458,.044,.454,.078,.444,.109,.43,.135,.406,.168,.401,.208,.387,.247,.38,.26,.363,.284,.337,.311,.307,.331,.264,.348,.225,.353,.209,.353,.175,.349,.139,.352,.136,.354,.12,.38,.105,.398,.088,.415,.067,.43,.04,.444,.022,.451,-.008,.457],[-.03,-.132,-.028,-.169,-.018,-.242,-.011,-.271,-.001,-.299,.007,-.316,.025,-.34,.045,-.359,.075,-.381,.072,-.384,.058,-.388,.039,-.39,.023,-.389,.006,-.387,-.016,-.379,-.046,-.359,-.06,-.345,-.072,-.326,-.078,-.315,-.084,-.294,-.086,-.278,-.085,-.261,-.075,-.223,-.066,-.199,-.045,-.151,-.036,-.132,-.033,-.13],[.105,-.095,.145,-.114,.195,-.134,.228,-.145,.269,-.152,.278,-.168,.286,-.198,.288,-.217,.284,-.244,.277,-.265,.265,-.286,.249,-.304,.23,-.318,.208,-.329,.191,-.334,.164,-.337,.139,-.334,.118,-.328,.097,-.316,.084,-.306,.068,-.289,.06,-.274,.052,-.252,.046,-.222,.039,-.174,.036,-.131,.039,-.127,.073,-.111,.095,-.093],[-.128,-.034,-.114,-.065,-.091,-.097,-.131,-.189,-.144,-.232,-.15,-.265,-.16,-.272,-.175,-.279,-.2,-.284,-.214,-.285,-.23,-.284,-.255,-.278,-.281,-.265,-.297,-.253,-.311,-.238,-.325,-.215,-.334,-.189,-.337,-.161,-.334,-.136,-.328,-.115,-.315,-.092,-.294,-.069,-.28,-.06,-.263,-.053,-.239,-.046,-.199,-.039],[.594,.01,.593,.069,.591,.091,.572,.066,.555,.032,.546,-.008,.544,-.033,.546,-.058,.555,-.096,.572,-.132,.59,-.155,.593,-.133],[-.597,.001,-.596,-.068,-.595,-.091,-.593,-.094,-.592,-.093,-.57,-.065,-.553,-.029,-.543,.011,-.542,.047,-.546,.078,-.552,.099,-.57,.135,-.594,.166,-.596,.191],[.385,.075,.391,.058,.393,.033,.39,.011,.385,-.008,.376,-.027,.362,-.046,.346,-.061,.329,-.072,.316,-.078,.294,-.085,.281,-.086,.264,-.085,.224,-.075,.171,-.053,.135,-.036,.133,-.033,.134,-.031,.172,-.028,.228,-.021,.261,-.014,.302,-.001,.319,.007,.342,.024,.363,.046],[-.253,.086,-.221,.077,-.187,.064,-.134,.04,-.131,.037,-.13,.034,-.198,.028,-.258,.017,-.299,.004,-.328,-.012,-.354,-.036,-.38,-.071,-.383,-.071,-.387,-.058,-.39,-.042,-.388,-.011,-.379,.019,-.365,.042,-.343,.064,-.315,.08,-.283,.089],[.018,.066,.04,.056,.05,.048,.058,.037,.067,.014,.067,-.013,.057,-.036,.048,-.047,.037,-.055,.014,-.065,-.003,-.065,-.015,-.064,-.038,-.053,-.047,-.045,-.055,-.034,-.065,-.011,-.064,.016,-.054,.039,-.047,.048,-.034,.058,-.011,.067],[.236,.286,.26,.28,.282,.269,.298,.258,.317,.237,.331,.213,.337,.191,.34,.167,.337,.142,.33,.118,.319,.097,.309,.084,.29,.067,.273,.059,.255,.052,.194,.041,.132,.036,.117,.068,.096,.095,.096,.1,.116,.144,.137,.195,.148,.228,.156,.27,.17,.278,.189,.284,.211,.288],[-.148,.339,-.125,.334,-.101,.323,-.081,.309,-.063,.288,-.053,.266,-.042,.222,-.036,.175,-.033,.136,-.035,.13,-.065,.117,-.095,.096,-.099,.096,-.147,.119,-.176,.131,-.215,.145,-.266,.155,-.272,.163,-.278,.178,-.284,.203,-.285,.217,-.282,.244,-.274,.267,-.261,.29,-.242,.31,-.217,.327,-.2,.334,-.175,.339],[-.015,.392,.005,.387,.021,.381,.049,.362,.063,.347,.075,.329,.087,.297,.088,.267,.08,.232,.064,.19,.045,.148,.037,.134,.034,.133,.033,.136,.031,.174,.021,.244,.014,.274,.004,.302,-.008,.324,-.024,.345,-.042,.362,-.072,.384,-.069,.387,-.051,.391],[.035,.594,-.024,.593,-.046,.591,-.021,.572,.012,.556,.05,.546,.078,.544,.103,.546,.143,.556,.176,.572,.2,.59,.178,.593]],
[[-.062,-.596,.031,-.594,.033,-.593,.031,-.59,.002,-.569,-.034,-.552,-.056,-.546,-.081,-.543,-.113,-.544,-.142,-.549,-.164,-.557,-.19,-.569,-.218,-.589,-.255,-.596],[-.021,.456,-.056,.457,-.091,.451,-.11,.444,-.134,.433,-.166,.411,-.208,.403,-.241,.39,-.273,.369,-.296,.348,-.31,.33,-.323,.308,-.338,.267,-.342,.242,-.342,.2,-.352,.161,-.353,.129,-.356,.124,-.377,.111,-.395,.096,-.412,.077,-.428,.055,-.44,.031,-.448,.008,-.454,-.028,-.455,-.05,-.451,-.078,-.445,-.102,-.429,-.136,-.409,-.166,-.404,-.194,-.393,-.228,-.377,-.259,-.365,-.275,-.346,-.295,-.326,-.311,-.307,-.322,-.294,-.328,-.267,-.337,-.239,-.342,-.194,-.343,-.164,-.351,-.126,-.353,-.121,-.356,-.108,-.377,-.093,-.395,-.075,-.412,-.055,-.426,-.016,-.445,.023,-.453,.058,-.454,.092,-.448,.112,-.442,.137,-.43,.168,-.409,.211,-.401,.244,-.387,.276,-.366,.299,-.345,.314,-.326,.326,-.305,.34,-.267,.345,-.241,.346,-.195,.354,-.164,.356,-.124,.399,-.092,.415,-.075,.431,-.052,.444,-.026,.451,-.005,.457,.031,.457,.053,.454,.08,.448,.105,.431,.141,.412,.169,.407,.197,.397,.229,.38,.262,.369,.276,.349,.298,.319,.32,.299,.33,.276,.338,.247,.345,.197,.346,.166,.353,.127,.356,.098,.396,.079,.414,.06,.428,.04,.439,.019,.448],[-.035,-.148,-.028,-.227,-.021,-.264,-.011,-.299,.003,-.326,.02,-.348,.04,-.367,.064,-.384,.063,-.387,.056,-.388,.022,-.387,-.009,-.377,-.026,-.367,-.039,-.357,-.048,-.347,-.062,-.327,-.075,-.295,-.077,-.275,-.071,-.239,-.061,-.204,-.048,-.17,-.038,-.149],[.104,-.089,.154,-.111,.197,-.127,.249,-.141,.26,-.153,.273,-.178,.278,-.197,.281,-.225,.277,-.248,.269,-.271,.258,-.29,.24,-.311,.221,-.325,.2,-.335,.178,-.341,.156,-.342,.139,-.341,.114,-.334,.096,-.325,.074,-.308,.062,-.295,.052,-.277,.043,-.25,.036,-.205,.033,-.164,.032,-.131,.035,-.128,.068,-.114,.08,-.106,.099,-.089],[-.128,-.031,-.122,-.048,-.112,-.069,-.088,-.1,-.118,-.173,-.128,-.203,-.139,-.245,-.153,-.257,-.17,-.267,-.191,-.274,-.212,-.278,-.248,-.275,-.269,-.267,-.284,-.26,-.304,-.244,-.322,-.223,-.333,-.201,-.34,-.178,-.342,-.156,-.34,-.133,-.333,-.11,-.322,-.088,-.308,-.071,-.294,-.058,-.28,-.05,-.261,-.043,-.244,-.039,-.203,-.033,-.161,-.029],[.594,-.006,.593,.057,.592,.078,.59,.08,.589,.079,.572,.055,.555,.019,.548,-.008,.545,-.031,.545,-.05,.549,-.078,.555,-.102,.572,-.138,.591,-.166,.593,-.177],[-.596,.013,-.595,-.057,-.594,-.08,-.593,-.083,-.591,-.082,-.569,-.052,-.552,-.016,-.546,.006,-.543,.031,-.544,.064,-.549,.094,-.558,.118,-.569,.141,-.588,.169,-.595,.205],[.39,.063,.391,.028,.386,.009,.38,-.009,.369,-.026,.358,-.04,.342,-.054,.327,-.064,.296,-.075,.281,-.077,.264,-.076,.217,-.064,.175,-.049,.152,-.039,.15,-.036,.153,-.035,.203,-.031,.251,-.025,.291,-.015,.32,-.002,.334,.006,.352,.021,.37,.04,.386,.063],[.018,.066,.04,.056,.05,.048,.058,.037,.064,.026,.067,.014,.067,-.013,.064,-.023,.057,-.036,.048,-.047,.035,-.056,.014,-.065,-.003,-.065,-.015,-.064,-.036,-.054,-.047,-.045,-.055,-.034,-.065,-.011,-.064,.016,-.054,.039,-.045,.049,-.034,.058,-.011,.067],[-.254,.078,-.196,.061,-.151,.042,-.148,.04,-.148,.038,-.225,.031,-.266,.023,-.307,.011,-.336,-.007,-.362,-.031,-.383,-.06,-.386,-.061,-.387,-.058,-.388,-.025,-.382,-0,-.373,.019,-.354,.044,-.333,.062,-.306,.074,-.281,.08],[.229,.28,.251,.277,.277,.268,.299,.254,.315,.239,.33,.218,.34,.192,.345,.172,.344,.146,.34,.123,.33,.099,.316,.079,.299,.063,.288,.055,.264,.046,.23,.039,.203,.035,.147,.032,.132,.033,.116,.07,.093,.098,.092,.102,.114,.154,.131,.198,.145,.251,.162,.264,.183,.274,.203,.279],[-.14,.344,-.112,.337,-.093,.328,-.071,.311,-.053,.29,-.042,.259,-.036,.23,-.03,.172,-.029,.139,-.032,.131,-.065,.117,-.098,.092,-.149,.113,-.196,.131,-.242,.142,-.25,.146,-.261,.162,-.271,.183,-.276,.203,-.278,.228,-.274,.253,-.265,.277,-.251,.299,-.236,.315,-.215,.33,-.189,.34,-.166,.345],[-.015,.389,.002,.384,.017,.377,.043,.358,.062,.335,.07,.319,.078,.298,.08,.283,.079,.269,.07,.228,.047,.163,.04,.15,.038,.151,.037,.156,.031,.23,.021,.28,.011,.308,-.002,.333,-.019,.352,-.037,.37,-.061,.387,-.058,.39,-.05,.391,-.031,.391],[.061,.593,-.002,.592,-.025,.59,.001,.571,.035,.556,.056,.55,.081,.546,.106,.545,.135,.55,.163,.558,.193,.572,.219,.591,.233,.594]],
[[-.081,-.596,-.013,-.596,.011,-.594,.013,-.593,.012,-.592,-.02,-.569,-.057,-.553,-.092,-.545,-.133,-.546,-.155,-.549,-.177,-.555,-.2,-.566,-.231,-.585,-.272,-.595],[-.02,.454,-.069,.455,-.094,.451,-.115,.444,-.144,.431,-.167,.416,-.203,.408,-.237,.394,-.267,.374,-.291,.351,-.312,.319,-.328,.283,-.335,.253,-.336,.215,-.345,.196,-.354,.164,-.358,.115,-.398,.083,-.416,.062,-.431,.038,-.444,.007,-.45,-.017,-.452,-.064,-.451,-.08,-.444,-.107,-.428,-.144,-.413,-.167,-.408,-.193,-.396,-.228,-.372,-.265,-.342,-.296,-.315,-.313,-.28,-.328,-.25,-.334,-.212,-.336,-.185,-.348,-.161,-.354,-.112,-.358,-.084,-.394,-.058,-.417,-.039,-.429,-.014,-.441,.023,-.451,.072,-.452,.097,-.448,.118,-.441,.146,-.428,.17,-.413,.208,-.404,.239,-.391,.269,-.371,.297,-.343,.319,-.309,.332,-.278,.337,-.25,.339,-.212,.35,-.185,.357,-.161,.361,-.112,.382,-.097,.401,-.08,.419,-.059,.432,-.039,.443,-.014,.451,.009,.455,.033,.455,.069,.447,.11,.431,.146,.416,.17,.411,.195,.397,.232,.38,.262,.363,.281,.346,.297,.317,.316,.28,.331,.253,.337,.215,.339,.188,.351,.164,.357,.115,.361,.084,.4,.059,.421,.04,.433,.015,.444],[-.039,-.173,-.037,-.206,-.031,-.255,-.024,-.287,-.017,-.308,-.008,-.326,.006,-.345,.025,-.365,.05,-.385,.049,-.387,.044,-.387,.023,-.384,-.003,-.374,-.029,-.356,-.05,-.331,-.058,-.317,-.064,-.299,-.068,-.278,-.065,-.247,-.048,-.187,-.042,-.173],[.108,-.086,.163,-.108,.209,-.123,.223,-.131,.239,-.143,.251,-.156,.261,-.173,.268,-.192,.273,-.219,.272,-.239,.267,-.263,.258,-.284,.243,-.305,.226,-.322,.205,-.335,.183,-.343,.159,-.347,.143,-.347,.117,-.343,.095,-.334,.075,-.321,.057,-.303,.047,-.288,.039,-.268,.032,-.236,.029,-.206,.028,-.131,.068,-.114,.086,-.101,.102,-.087],[-.13,-.026,-.122,-.048,-.113,-.067,-.085,-.103,-.108,-.166,-.119,-.202,-.134,-.226,-.146,-.239,-.159,-.251,-.179,-.261,-.2,-.268,-.225,-.27,-.25,-.268,-.271,-.261,-.288,-.253,-.304,-.242,-.323,-.222,-.337,-.197,-.345,-.174,-.347,-.147,-.345,-.123,-.337,-.1,-.327,-.08,-.313,-.063,-.298,-.05,-.285,-.042,-.268,-.036,-.236,-.029,-.206,-.026],[.594,-.017,.594,.047,.593,.068,.591,.071,.59,.07,.572,.044,.555,.005,.548,-.028,.548,-.064,.55,-.083,.556,-.107,.572,-.144,.587,-.167,.593,-.194],[-.597,.022,-.596,-.047,-.595,-.071,-.594,-.074,-.593,-.073,-.57,-.043,-.552,-.002,-.546,.031,-.545,.072,-.549,.097,-.556,.118,-.569,.146,-.584,.17,-.589,.195,-.595,.214],[.39,.049,.384,.014,.369,-.015,.347,-.04,.32,-.058,.291,-.067,.272,-.068,.234,-.061,.192,-.048,.175,-.042,.174,-.04,.176,-.039,.236,-.035,.261,-.031,.287,-.025,.318,-.014,.337,-.002,.356,.012,.369,.027,.386,.049],[.018,.066,.04,.056,.05,.048,.058,.037,.064,.026,.067,.014,.067,-.013,.064,-.023,.057,-.036,.048,-.047,.035,-.056,.024,-.062,.011,-.065,-.015,-.064,-.025,-.06,-.038,-.053,-.047,-.045,-.055,-.034,-.064,-.011,-.064,.016,-.054,.039,-.045,.05,-.034,.058,-.023,.064,-.011,.067],[-.259,.069,-.219,.061,-.171,.045,-.171,.042,-.236,.037,-.274,.031,-.315,.017,-.344,-.002,-.367,-.024,-.383,-.046,-.386,-.047,-.387,-.044,-.384,-.022,-.377,-.002,-.362,.024,-.344,.043,-.323,.058,-.302,.067,-.283,.071],[.241,.272,.266,.267,.289,.257,.31,.242,.329,.219,.341,.198,.348,.177,.35,.153,.348,.125,.34,.103,.33,.083,.313,.063,.294,.049,.28,.042,.258,.036,.194,.028,.134,.028,.115,.072,.089,.102,.088,.105,.114,.171,.127,.213,.146,.239,.162,.254,.19,.267,.22,.273],[-.137,.35,-.11,.344,-.082,.331,-.058,.31,-.043,.289,-.036,.269,-.03,.239,-.025,.197,-.024,.139,-.026,.133,-.065,.117,-.082,.105,-.101,.089,-.142,.104,-.21,.127,-.227,.138,-.243,.152,-.255,.169,-.264,.19,-.268,.203,-.27,.231,-.267,.255,-.259,.28,-.246,.301,-.229,.319,-.208,.334,-.185,.345,-.157,.35],[-.033,.389,-.002,.38,.029,.361,.05,.338,.065,.31,.07,.289,.07,.267,.064,.234,.048,.181,.044,.174,.042,.176,.038,.236,.034,.258,.028,.286,.02,.31,.011,.329,-.003,.348,-.021,.367,-.047,.388,-.044,.39],[.083,.594,.019,.593,-.002,.592,-.005,.591,-.004,.589,.023,.571,.059,.555,.094,.548,.131,.548,.158,.552,.173,.556,.208,.571,.234,.587,.258,.592]],
[[-.1,-.597,-.01,-.595,-.007,-.594,-.008,-.593,-.04,-.57,-.073,-.555,-.114,-.547,-.147,-.547,-.169,-.55,-.192,-.556,-.218,-.567,-.242,-.581,-.271,-.588,-.287,-.595],[-.04,.453,-.075,.453,-.11,.447,-.138,.436,-.168,.419,-.199,.411,-.217,.404,-.235,.395,-.255,.382,-.277,.362,-.289,.348,-.306,.322,-.317,.297,-.325,.27,-.33,.225,-.345,.199,-.355,.171,-.361,.14,-.361,.104,-.401,.069,-.417,.049,-.432,.025,-.441,.001,-.448,-.023,-.451,-.044,-.451,-.075,-.445,-.105,-.439,-.124,-.428,-.149,-.416,-.17,-.408,-.201,-.398,-.225,-.378,-.257,-.359,-.277,-.346,-.289,-.317,-.307,-.294,-.317,-.263,-.325,-.222,-.329,-.196,-.345,-.17,-.355,-.139,-.361,-.101,-.361,-.069,-.398,-.038,-.423,.002,-.441,.038,-.45,.08,-.45,.11,-.445,.133,-.437,.152,-.428,.171,-.417,.204,-.408,.238,-.392,.266,-.373,.29,-.347,.309,-.319,.319,-.296,.328,-.267,.331,-.244,.332,-.222,.347,-.196,.358,-.17,.363,-.142,.364,-.101,.403,-.068,.419,-.048,.432,-.028,.444,.002,.451,.025,.453,.045,.454,.078,.444,.121,.431,.152,.419,.171,.411,.204,.4,.229,.38,.26,.363,.279,.348,.291,.322,.309,.298,.319,.268,.328,.225,.332,.199,.347,.175,.357,.144,.363,.104,.364,.073,.4,.039,.426,.001,.444],[-.044,-.209,-.038,-.264,-.028,-.305,-.011,-.338,.005,-.358,.025,-.376,.022,-.379,.012,-.375,-.009,-.363,-.028,-.346,-.044,-.326,-.055,-.3,-.059,-.283,-.058,-.26,-.048,-.211,-.046,-.208],[.113,-.084,.155,-.1,.175,-.11,.209,-.131,.231,-.148,.244,-.161,.25,-.171,.259,-.19,.264,-.209,.265,-.236,.264,-.251,.258,-.273,.246,-.297,.229,-.317,.211,-.332,.191,-.342,.17,-.349,.15,-.352,.125,-.351,.101,-.345,.081,-.335,.061,-.321,.044,-.301,.035,-.286,.029,-.264,.022,-.203,.023,-.133,.026,-.13,.047,-.123,.068,-.114,.087,-.1,.104,-.084],[-.135,-.02,-.13,-.023,-.123,-.046,-.112,-.069,-.1,-.085,-.081,-.106,-.099,-.15,-.131,-.206,-.148,-.229,-.16,-.241,-.172,-.248,-.196,-.258,-.217,-.262,-.244,-.262,-.265,-.258,-.284,-.25,-.307,-.236,-.325,-.218,-.338,-.198,-.348,-.174,-.351,-.153,-.351,-.122,-.344,-.096,-.333,-.074,-.316,-.054,-.305,-.044,-.293,-.036,-.277,-.03,-.245,-.023,-.208,-.019],[.593,-.027,.592,.035,.591,.056,.59,.058,.589,.057,.571,.03,.555,-.009,.549,-.042,.549,-.072,.552,-.094,.558,-.118,.572,-.149,.584,-.17,.592,-.201],[-.597,.03,-.596,-.037,-.595,-.06,-.594,-.063,-.592,-.062,-.58,-.046,-.568,-.028,-.553,.01,-.546,.045,-.546,.078,-.556,.121,-.569,.152,-.581,.173,-.589,.202,-.595,.217],[.018,.066,.039,.057,.05,.048,.058,.037,.067,.013,.067,-.013,.057,-.036,.048,-.047,.035,-.056,.024,-.062,.011,-.065,-.015,-.064,-.038,-.053,-.055,-.034,-.061,-.023,-.064,-.011,-.064,.016,-.054,.039,-.045,.05,-.034,.058,-.011,.067],[.382,.024,.373,.003,.359,-.018,.338,-.037,.313,-.051,.291,-.058,.272,-.059,.242,-.055,.219,-.049,.212,-.047,.21,-.045,.212,-.044,.272,-.037,.297,-.031,.319,-.023,.348,-.005],[-.259,.061,-.211,.051,-.208,.049,-.209,.047,-.267,.041,-.305,.031,-.329,.019,-.353,.002,-.378,-.022,-.378,-.015,-.366,.007,-.348,.03,-.327,.045,-.311,.054,-.29,.061],[.255,.264,.278,.257,.298,.247,.318,.231,.336,.209,.348,.185,.354,.161,.354,.133,.351,.112,.344,.093,.329,.067,.315,.053,.296,.039,.278,.032,.248,.025,.183,.021,.14,.022,.134,.024,.126,.047,.116,.07,.101,.089,.086,.104,.086,.11,.102,.153,.117,.182,.139,.217,.16,.241,.173,.25,.201,.261,.222,.265],[-.118,.353,-.092,.345,-.069,.332,-.05,.315,-.033,.29,-.026,.267,-.021,.231,-.019,.203,-.02,.138,-.023,.133,-.046,.125,-.065,.117,-.082,.105,-.103,.085,-.11,.086,-.148,.101,-.206,.134,-.23,.152,-.242,.165,-.254,.187,-.261,.21,-.262,.231,-.261,.252,-.254,.278,-.245,.296,-.232,.314,-.215,.33,-.198,.341,-.174,.35,-.15,.355],[-.015,.38,.008,.368,.031,.349,.046,.328,.057,.305,.061,.288,.061,.267,.057,.242,.05,.212,.048,.211,.047,.214,.041,.267,.03,.31,.02,.33,.01,.345,-.022,.379,-.021,.381],[.103,.594,.04,.593,.019,.592,.017,.59,.018,.589,.043,.572,.083,.556,.117,.549,.147,.549,.169,.552,.193,.558,.219,.569,.245,.584,.276,.592]],
[[-.118,-.597,-.053,-.596,-.031,-.595,-.029,-.594,-.03,-.592,-.063,-.57,-.097,-.556,-.131,-.549,-.164,-.549,-.206,-.556,-.23,-.566,-.253,-.578,-.28,-.586,-.298,-.594],[-.043,.45,-.083,.451,-.108,.448,-.143,.436,-.17,.422,-.204,.411,-.228,.399,-.248,.386,-.267,.369,-.283,.351,-.297,.329,-.311,.298,-.318,.269,-.322,.232,-.345,.199,-.358,.17,-.365,.139,-.364,.091,-.389,.071,-.409,.049,-.427,.021,-.438,-.003,-.445,-.026,-.448,-.047,-.448,-.086,-.444,-.11,-.438,-.131,-.419,-.17,-.411,-.198,-.4,-.221,-.391,-.237,-.375,-.257,-.345,-.285,-.324,-.298,-.293,-.311,-.267,-.318,-.229,-.322,-.197,-.345,-.165,-.358,-.136,-.365,-.088,-.364,-.058,-.398,-.026,-.422,.006,-.438,.045,-.448,.086,-.449,.11,-.445,.144,-.434,.173,-.419,.209,-.408,.231,-.396,.253,-.382,.27,-.366,.286,-.348,.3,-.326,.314,-.294,.321,-.267,.325,-.229,.348,-.197,.361,-.165,.368,-.133,.367,-.088,.393,-.066,.41,-.048,.43,-.018,.44,.006,.448,.028,.451,.05,.451,.089,.447,.113,.441,.134,.422,.173,.408,.215,.397,.235,.383,.254,.352,.284,.329,.3,.298,.314,.269,.321,.232,.325,.199,.348,.168,.361,.136,.368,.092,.367,.061,.401,.029,.425,-.001,.44,-.024,.447],[.11,-.084,.18,-.121,.225,-.154,.237,-.167,.247,-.183,.253,-.201,.257,-.219,.257,-.244,.254,-.266,.246,-.287,.235,-.306,.219,-.324,.202,-.337,.182,-.347,.158,-.355,.133,-.357,.111,-.354,.088,-.347,.068,-.336,.051,-.323,.033,-.301,.023,-.276,.019,-.258,.015,-.214,.016,-.172,.019,-.134,.023,-.13,.043,-.125,.066,-.115,.086,-.101,.104,-.084],[-.159,-.014,-.136,-.015,-.131,-.018,-.123,-.044,-.114,-.065,-.101,-.083,-.083,-.103,-.092,-.126,-.132,-.194,-.15,-.218,-.17,-.237,-.192,-.248,-.219,-.254,-.247,-.255,-.275,-.248,-.297,-.238,-.317,-.224,-.334,-.204,-.347,-.179,-.354,-.156,-.356,-.128,-.354,-.108,-.344,-.079,-.331,-.059,-.315,-.042,-.301,-.031,-.285,-.022,-.258,-.016,-.225,-.013],[.594,-.035,.594,.026,.591,.049,.573,.021,.559,-.013,.552,-.047,.551,-.078,.555,-.108,.56,-.125,.571,-.153,.581,-.17,.592,-.204],[.018,.066,.04,.056,.05,.048,.058,.037,.064,.026,.067,.014,.067,-.013,.064,-.024,.057,-.036,.048,-.047,.037,-.055,.026,-.061,.014,-.065,-.003,-.065,-.015,-.064,-.038,-.053,-.047,-.045,-.055,-.034,-.065,-.011,-.064,.016,-.054,.039,-.045,.049,-.034,.058,-.011,.067],[-.597,.038,-.596,-.027,-.595,-.049,-.594,-.052,-.592,-.051,-.57,-.018,-.557,.014,-.549,.05,-.549,.083,-.552,.111,-.557,.128,-.569,.157,-.578,.173,-.586,.199,-.594,.218],[.261,.255,.282,.25,.307,.236,.326,.219,.342,.199,.353,.176,.358,.152,.359,.125,.353,.098,.346,.08,.331,.057,.312,.039,.293,.028,.277,.022,.258,.019,.225,.016,.183,.015,.135,.02,.125,.049,.118,.066,.104,.086,.086,.104,.086,.11,.106,.148,.128,.187,.152,.219,.168,.236,.187,.247,.208,.254,.233,.258],[-.117,.358,-.087,.35,-.062,.337,-.041,.318,-.025,.293,-.016,.261,-.013,.228,-.013,.183,-.015,.142,-.018,.134,-.046,.125,-.07,.113,-.088,.1,-.102,.086,-.107,.086,-.135,.1,-.176,.123,-.197,.137,-.218,.153,-.233,.168,-.244,.185,-.251,.206,-.255,.231,-.255,.25,-.251,.269,-.244,.289,-.229,.313,-.212,.33,-.191,.345,-.169,.354,-.144,.359],[.121,.594,.06,.594,.037,.591,.066,.573,.101,.558,.133,.552,.164,.551,.175,.552,.207,.559,.229,.567,.256,.581,.29,.592]],
[[-.136,-.597,-.074,-.596,-.053,-.595,-.051,-.593,-.052,-.592,-.082,-.572,-.111,-.56,-.142,-.552,-.181,-.551,-.199,-.553,-.228,-.56,-.264,-.576,-.287,-.583,-.309,-.594],[-.048,.448,-.089,.449,-.118,.445,-.144,.437,-.17,.424,-.199,.414,-.225,.401,-.246,.386,-.264,.368,-.279,.35,-.295,.322,-.305,.296,-.311,.271,-.314,.238,-.329,.222,-.345,.199,-.362,.163,-.368,.131,-.367,.079,-.389,.06,-.407,.039,-.422,.017,-.434,-.009,-.445,-.047,-.446,-.072,-.445,-.103,-.434,-.144,-.422,-.17,-.412,-.199,-.401,-.219,-.378,-.252,-.347,-.279,-.319,-.295,-.297,-.304,-.265,-.311,-.235,-.314,-.196,-.345,-.162,-.361,-.128,-.368,-.077,-.367,-.047,-.399,-.023,-.417,.012,-.434,.05,-.445,.092,-.446,.121,-.442,.147,-.434,.173,-.422,.202,-.411,.229,-.397,.247,-.384,.265,-.367,.281,-.349,.297,-.321,.307,-.295,.314,-.267,.317,-.235,.346,-.2,.364,-.162,.371,-.128,.37,-.077,.399,-.05,.414,-.032,.43,-.004,.437,.012,.448,.05,.449,.078,.448,.105,.437,.147,.408,.215,.397,.234,.383,.251,.367,.268,.35,.282,.324,.297,.297,.307,.27,.314,.238,.317,.201,.347,.163,.364,.131,.371,.079,.37,.051,.4,.028,.418,.009,.429,-.009,.437],[.105,-.086,.165,-.12,.209,-.151,.233,-.177,.241,-.192,.247,-.212,.25,-.242,.248,-.264,.241,-.286,.231,-.305,.215,-.325,.198,-.339,.183,-.348,.156,-.358,.133,-.361,.103,-.359,.087,-.354,.066,-.344,.044,-.327,.028,-.309,.019,-.294,.013,-.272,.009,-.242,.009,-.206,.012,-.147,.015,-.134,.018,-.131,.043,-.125,.066,-.115],[-.165,-.008,-.139,-.01,-.132,-.014,-.125,-.038,-.118,-.058,-.105,-.079,-.087,-.099,-.088,-.105,-.116,-.155,-.137,-.187,-.152,-.207,-.174,-.228,-.199,-.241,-.227,-.247,-.249,-.247,-.276,-.242,-.305,-.228,-.322,-.215,-.339,-.196,-.35,-.174,-.358,-.151,-.361,-.126,-.358,-.099,-.348,-.07,-.337,-.053,-.323,-.037,-.301,-.02,-.286,-.013,-.269,-.009,-.233,-.006],[.594,-.044,.593,.014,.592,.034,.59,.036,.589,.035,.572,.007,.561,-.021,.555,-.047,.554,-.086,.556,-.107,.562,-.133,.592,-.206],[.018,.066,.039,.057,.05,.048,.057,.039,.064,.026,.067,.014,.067,-.013,.064,-.024,.057,-.036,.048,-.047,.037,-.055,.026,-.061,.014,-.065,-.003,-.065,-.015,-.064,-.038,-.053,-.047,-.045,-.055,-.034,-.061,-.023,-.064,-.011,-.064,.016,-.061,.026,-.054,.039,-.047,.048,-.036,.057,-.023,.064,-.011,.067,.006,.068],[-.597,.045,-.596,-.017,-.595,-.038,-.594,-.041,-.593,-.039,-.57,-.004,-.559,.022,-.552,.05,-.551,.089,-.553,.11,-.56,.138,-.586,.202,-.594,.218],[.251,.25,.279,.244,.308,.231,.324,.218,.34,.2,.351,.183,.361,.154,.364,.128,.361,.102,.351,.073,.34,.056,.326,.039,.304,.023,.288,.016,.272,.012,.239,.009,.2,.009,.147,.013,.136,.015,.134,.018,.126,.047,.119,.063,.109,.08,.091,.1,.089,.105,.106,.137,.138,.188,.155,.21,.173,.228,.187,.237,.206,.245,.234,.25],[-.123,.364,-.099,.361,-.07,.351,-.05,.338,-.03,.318,-.019,.302,-.013,.286,-.008,.258,-.006,.225,-.007,.181,-.012,.136,-.016,.134,-.042,.127,-.063,.118,-.078,.108,-.1,.089,-.122,.099,-.187,.139,-.207,.155,-.225,.173,-.233,.185,-.242,.204,-.245,.217,-.248,.242,-.245,.269,-.238,.287,-.227,.309,-.212,.327,-.194,.343,-.174,.353,-.152,.361],[.14,.594,.081,.593,.06,.591,.09,.572,.117,.562,.142,.555,.181,.554,.202,.555,.226,.561,.301,.591]],
[[-.154,-.596,-.095,-.596,-.073,-.593,-.1,-.576,-.128,-.563,-.161,-.555,-.194,-.553,-.222,-.556,-.247,-.563,-.297,-.582,-.318,-.594],[-.081,.447,-.113,.445,-.136,.44,-.16,.431,-.205,.412,-.227,.398,-.245,.383,-.26,.367,-.278,.343,-.289,.321,-.3,.29,-.304,.264,-.306,.241,-.327,.22,-.343,.2,-.355,.181,-.365,.158,-.372,.119,-.372,.091,-.369,.067,-.394,.043,-.408,.026,-.424,0,-.434,-.023,-.44,-.047,-.444,-.078,-.441,-.117,-.431,-.152,-.414,-.195,-.404,-.214,-.379,-.247,-.366,-.259,-.344,-.276,-.322,-.287,-.294,-.298,-.264,-.304,-.238,-.306,-.216,-.329,-.199,-.342,-.175,-.357,-.155,-.365,-.116,-.372,-.09,-.372,-.065,-.369,-.036,-.398,-.015,-.414,.004,-.425,.039,-.438,.059,-.442,.086,-.444,.114,-.442,.138,-.437,.21,-.408,.23,-.395,.25,-.379,.263,-.365,.281,-.341,.291,-.32,.301,-.294,.307,-.264,.309,-.238,.331,-.216,.346,-.198,.358,-.177,.367,-.157,.375,-.116,.375,-.089,.372,-.065,.396,-.042,.412,-.022,.427,.003,.437,.026,.444,.053,.447,.083,.444,.122,.431,.163,.416,.198,.406,.218,.382,.25,.366,.264,.345,.28,.317,.294,.297,.301,.267,.307,.241,.309,.219,.331,.202,.345,.177,.359,.158,.367,.119,.375,.092,.375,.067,.372,.039,.401,.016,.418,-.002,.428,-.036,.44],[.102,-.089,.153,-.12,.181,-.14,.207,-.161,.219,-.174,.23,-.188,.237,-.206,.241,-.225,.242,-.242,.24,-.266,.231,-.294,.219,-.315,.2,-.335,.184,-.347,.162,-.358,.14,-.364,.114,-.365,.092,-.362,.072,-.355,.052,-.344,.032,-.328,.016,-.307,.006,-.284,.003,-.266,.002,-.2,.005,-.162,.01,-.134,.014,-.131,.041,-.126,.061,-.118,.078,-.107],[-.19,-0,-.14,-.006,-.132,-.009,-.128,-.03,-.118,-.058,-.107,-.075,-.089,-.099,-.105,-.127,-.135,-.172,-.155,-.197,-.174,-.216,-.19,-.228,-.217,-.237,-.239,-.239,-.261,-.238,-.286,-.232,-.306,-.222,-.327,-.206,-.345,-.185,-.358,-.159,-.364,-.132,-.365,-.108,-.361,-.085,-.351,-.061,-.338,-.041,-.317,-.02,-.3,-.009,-.282,-.003,-.258,.001],[.594,-.051,.593,.004,.591,.024,.575,-.002,.566,-.025,.558,-.056,.556,-.09,.559,-.117,.566,-.144,.591,-.205],[.018,.066,.039,.057,.05,.048,.058,.037,.064,.026,.067,.014,.067,-.013,.063,-.025,.056,-.038,.048,-.047,.037,-.055,.014,-.065,-.003,-.065,-.015,-.064,-.038,-.053,-.047,-.045,-.056,-.033,-.065,-.011,-.064,.016,-.054,.039,-.047,.048,-.034,.058,-.011,.067],[-.597,.052,-.596,-.007,-.594,-.029,-.575,-.001,-.563,.028,-.555,.059,-.553,.092,-.556,.12,-.563,.147,-.584,.198,-.594,.218,-.596,.196],[.253,.242,.278,.238,.3,.229,.321,.216,.342,.196,.353,.177,.364,.149,.368,.119,.365,.092,.358,.072,.341,.044,.326,.028,.307,.014,.285,.005,.264,.002,.206,.002,.165,.005,.137,.01,.134,.014,.13,.035,.12,.061,.109,.08,.092,.101,.115,.141,.139,.176,.156,.198,.177,.219,.191,.23,.211,.237,.228,.241],[-.1,.367,-.075,.36,-.049,.347,-.025,.326,-.009,.301,-.003,.285,.001,.258,.001,.211,-.002,.17,-.006,.141,-.009,.135,-.032,.13,-.058,.12,-.075,.11,-.097,.092,-.123,.106,-.177,.141,-.195,.156,-.216,.177,-.228,.193,-.234,.209,-.238,.228,-.239,.252,-.234,.28,-.228,.298,-.215,.319,-.196,.339,-.18,.351,-.155,.362,-.128,.368],[.158,.594,.102,.593,.082,.591,.104,.578,.131,.566,.164,.558,.195,.556,.221,.558,.25,.565,.312,.592]],
[[-.171,-.597,-.116,-.596,-.095,-.594,-.121,-.578,-.148,-.566,-.175,-.559,-.211,-.556,-.242,-.559,-.266,-.566,-.306,-.582,-.327,-.594,-.306,-.596],[-.068,.442,-.097,.444,-.128,.441,-.161,.431,-.188,.42,-.218,.403,-.235,.389,-.251,.372,-.267,.352,-.278,.332,-.291,.297,-.295,.28,-.298,.241,-.327,.217,-.344,.198,-.358,.174,-.367,.154,-.375,.123,-.376,.103,-.371,.056,-.405,.018,-.417,-.001,-.428,-.023,-.434,-.042,-.44,-.075,-.441,-.106,-.438,-.125,-.428,-.163,-.406,-.208,-.393,-.227,-.378,-.243,-.347,-.268,-.322,-.281,-.295,-.291,-.277,-.295,-.238,-.298,-.217,-.324,-.204,-.336,-.188,-.348,-.158,-.364,-.134,-.372,-.106,-.376,-.086,-.376,-.051,-.372,-.026,-.397,.002,-.416,.034,-.431,.071,-.439,.106,-.441,.131,-.438,.163,-.429,.194,-.415,.209,-.408,.233,-.39,.249,-.375,.27,-.349,.281,-.329,.293,-.297,.298,-.278,.301,-.239,.33,-.214,.346,-.195,.363,-.167,.37,-.149,.378,-.12,.379,-.1,.378,-.074,.374,-.053,.409,-.013,.431,.026,.438,.047,.443,.078,.444,.108,.441,.128,.431,.166,.42,.191,.409,.211,.397,.229,.381,.246,.35,.271,.324,.284,.295,.294,.28,.298,.241,.301,.226,.319,.207,.339,.191,.351,.168,.364,.141,.373,.12,.378,.094,.379,.054,.375,.029,.399,.001,.419,-.032,.434],[.102,-.095,.159,-.132,.205,-.171,.219,-.188,.225,-.199,.23,-.215,.234,-.236,.234,-.258,.227,-.287,.218,-.308,.204,-.327,.188,-.342,.166,-.356,.144,-.365,.125,-.368,.1,-.368,.081,-.365,.061,-.357,.038,-.344,.02,-.326,.005,-.305,-.001,-.291,-.006,-.266,-.007,-.233,-.004,-.2,.005,-.134,.009,-.132,.033,-.128,.053,-.121,.073,-.111,.095,-.094],[-.212,.008,-.15,.001,-.133,-.004,-.128,-.03,-.122,-.048,-.112,-.069,-.095,-.091,-.093,-.097,-.136,-.162,-.163,-.194,-.176,-.206,-.192,-.218,-.211,-.226,-.234,-.231,-.25,-.232,-.277,-.228,-.302,-.218,-.326,-.202,-.341,-.187,-.355,-.165,-.364,-.141,-.368,-.122,-.368,-.092,-.361,-.066,-.348,-.042,-.332,-.022,-.312,-.006,-.294,.003,-.275,.008,-.244,.01],[.594,-.059,.593,-.007,.591,.013,.573,-.021,.566,-.042,.56,-.075,.559,-.097,.562,-.125,.566,-.144,.577,-.174,.591,-.204],[.018,.066,.04,.056,.05,.048,.058,.037,.064,.026,.067,.014,.067,-.013,.064,-.024,.056,-.038,.048,-.047,.035,-.056,.024,-.062,.011,-.065,-.015,-.064,-.036,-.054,-.047,-.045,-.055,-.034,-.061,-.023,-.064,-.011,-.064,.016,-.054,.039,-.045,.05,-.034,.058,-.024,.064,-.011,.067,.003,.068],[-.596,.06,-.596,.004,-.593,-.016,-.58,.004,-.566,.034,-.557,.075,-.556,.1,-.559,.131,-.569,.163,-.583,.196,-.594,.215,-.596,.195],[.265,.233,.29,.227,.312,.217,.332,.202,.35,.182,.363,.156,.37,.13,.371,.103,.367,.081,.359,.059,.347,.038,.329,.02,.308,.005,.294,-.001,.267,-.006,.203,-.005,.153,.002,.136,.007,.131,.033,.125,.051,.113,.073,.096,.095,.096,.099,.139,.165,.166,.197,.185,.214,.202,.225,.22,.231,.242,.234],[-.087,.369,-.062,.362,-.035,.347,-.016,.328,.001,.302,.007,.283,.009,.258,.008,.216,.003,.172,-.004,.136,-.03,.131,-.052,.123,-.07,.113,-.095,.096,-.121,.111,-.178,.152,-.197,.168,-.214,.188,-.222,.202,-.228,.218,-.231,.242,-.231,.261,-.228,.28,-.216,.309,-.201,.33,-.184,.346,-.161,.36,-.141,.367,-.119,.371],[.177,.594,.125,.593,.106,.591,.134,.575,.159,.566,.192,.56,.214,.559,.23,.56,.261,.566,.282,.573,.321,.591]],
[[-.189,-.596,-.137,-.596,-.118,-.594,-.138,-.581,-.165,-.569,-.189,-.563,-.228,-.559,-.264,-.563,-.288,-.569,-.316,-.582,-.335,-.594,-.316,-.596],[-.076,.439,-.108,.441,-.139,.437,-.163,.431,-.186,.421,-.205,.41,-.23,.39,-.247,.371,-.262,.35,-.278,.318,-.284,.297,-.288,.275,-.29,.241,-.323,.216,-.34,.199,-.358,.173,-.371,.144,-.378,.113,-.379,.103,-.379,.075,-.372,.044,-.394,.02,-.408,.001,-.428,-.04,-.434,-.061,-.438,-.089,-.438,-.111,-.435,-.139,-.422,-.177,-.406,-.207,-.38,-.237,-.345,-.263,-.315,-.278,-.294,-.284,-.272,-.288,-.238,-.29,-.217,-.319,-.201,-.336,-.177,-.354,-.152,-.367,-.127,-.375,-.106,-.379,-.072,-.379,-.04,-.373,-.016,-.395,.014,-.415,.045,-.429,.086,-.437,.114,-.438,.142,-.434,.167,-.428,.189,-.418,.208,-.407,.234,-.386,.252,-.367,.264,-.349,.278,-.321,.287,-.294,.291,-.272,.292,-.239,.325,-.215,.337,-.203,.36,-.172,.371,-.15,.377,-.128,.382,-.103,.382,-.072,.375,-.042,.398,-.016,.411,.002,.431,.042,.438,.067,.441,.094,.441,.114,.437,.142,.425,.179,.415,.2,.404,.216,.38,.243,.348,.266,.324,.278,.297,.287,.275,.291,.241,.292,.22,.321,.204,.339,.178,.358,.155,.37,.131,.377,.108,.381,.075,.381,.043,.375,.019,.398,-.013,.419,-.04,.431],[.099,-.098,.158,-.14,.201,-.181,.212,-.195,.219,-.21,.224,-.228,.226,-.247,.224,-.272,.217,-.296,.205,-.318,.192,-.335,.179,-.347,.154,-.361,.136,-.368,.108,-.372,.092,-.372,.062,-.365,.045,-.357,.023,-.342,.006,-.323,-.006,-.304,-.011,-.291,-.015,-.267,-.015,-.239,-.011,-.201,.002,-.134,.047,-.123,.07,-.113,.091,-.097],[-.226,.017,-.18,.011,-.134,.001,-.132,-.003,-.128,-.03,-.123,-.046,-.114,-.065,-.096,-.092,-.103,-.104,-.137,-.151,-.158,-.177,-.179,-.197,-.204,-.214,-.225,-.221,-.244,-.223,-.272,-.221,-.296,-.214,-.315,-.205,-.338,-.186,-.354,-.164,-.366,-.139,-.371,-.117,-.372,-.092,-.367,-.065,-.358,-.044,-.344,-.024,-.325,-.004,-.304,.008,-.288,.014,-.267,.018],[.594,-.067,.593,-.018,.591,-.001,.578,-.024,.571,-.042,.565,-.064,.562,-.103,.565,-.136,.569,-.154,.578,-.177,.591,-.202,.593,-.184],[.018,.066,.039,.057,.05,.048,.058,.037,.067,.014,.067,-.013,.064,-.023,.057,-.036,.048,-.047,.037,-.055,.026,-.061,.014,-.065,-.003,-.065,-.015,-.064,-.038,-.053,-.047,-.045,-.056,-.033,-.062,-.022,-.065,-.008,-.064,.016,-.054,.039,-.047,.048,-.034,.058,-.023,.064,-.011,.067,.003,.068],[.269,.225,.291,.22,.317,.208,.339,.19,.354,.172,.367,.149,.374,.122,.375,.094,.37,.07,.361,.046,.346,.025,.326,.006,.305,-.007,.291,-.012,.269,-.015,.239,-.015,.206,-.012,.161,-.004,.137,.002,.135,.006,.131,.033,.125,.051,.115,.072,.1,.091,.099,.096,.142,.157,.162,.181,.188,.205,.207,.217,.228,.223,.247,.226],[-.596,.067,-.596,.014,-.594,-.005,-.581,.016,-.569,.042,-.562,.067,-.559,.106,-.563,.142,-.569,.166,-.583,.196,-.594,.213,-.596,.194],[-.076,.372,-.049,.363,-.025,.348,-.004,.328,.008,.307,.014,.291,.018,.261,.017,.233,.011,.184,.003,.142,-.001,.135,-.03,.131,-.048,.125,-.067,.115,-.09,.099,-.096,.1,-.116,.114,-.168,.153,-.192,.176,-.208,.196,-.216,.213,-.221,.231,-.223,.253,-.222,.272,-.215,.297,-.205,.317,-.188,.339,-.174,.351,-.152,.364,-.122,.373,-.097,.375],[.194,.594,.146,.593,.129,.591,.154,.577,.178,.569,.203,.564,.231,.562,.257,.564,.282,.569,.306,.578,.33,.591,.312,.593]],
[[-.193,-.596,-.137,-.595,-.117,-.593,-.142,-.577,-.17,-.566,-.211,-.557,-.233,-.556,-.264,-.56,-.288,-.566,-.324,-.58,-.347,-.593,-.326,-.595],[-.07,.442,-.106,.443,-.128,.44,-.154,.434,-.194,.417,-.218,.403,-.235,.389,-.254,.369,-.267,.352,-.279,.33,-.291,.295,-.296,.272,-.297,.232,-.325,.21,-.346,.189,-.361,.166,-.373,.138,-.378,.122,-.382,.097,-.38,.048,-.397,.029,-.412,.008,-.428,-.023,-.434,-.042,-.441,-.081,-.441,-.108,-.438,-.128,-.428,-.163,-.407,-.208,-.382,-.239,-.349,-.267,-.318,-.283,-.291,-.292,-.267,-.296,-.229,-.297,-.207,-.325,-.187,-.344,-.166,-.359,-.148,-.369,-.129,-.375,-.105,-.381,-.078,-.382,-.045,-.38,-.015,-.405,.013,-.422,.045,-.434,.073,-.439,.106,-.441,.131,-.438,.163,-.429,.196,-.414,.221,-.4,.239,-.385,.257,-.366,.27,-.349,.284,-.322,.297,-.28,.3,-.229,.328,-.207,.349,-.186,.363,-.164,.375,-.138,.381,-.119,.384,-.094,.382,-.045,.406,-.018,.419,.002,.431,.026,.438,.047,.443,.081,.443,.111,.441,.128,.431,.166,.411,.209,.396,.23,.381,.246,.35,.271,.325,.284,.293,.295,.269,.299,.232,.3,.21,.328,.193,.345,.176,.358,.158,.368,.134,.377,.108,.384,.081,.385,.048,.382,.019,.407,-.003,.421,-.031,.434],[.096,-.101,.159,-.15,.197,-.188,.212,-.215,.217,-.239,.218,-.253,.214,-.283,.208,-.301,.197,-.321,.181,-.341,.159,-.358,.14,-.367,.117,-.374,.097,-.376,.078,-.374,.051,-.367,.032,-.358,.012,-.342,-.005,-.323,-.016,-.303,-.021,-.286,-.023,-.261,-.022,-.231,-.017,-.198,-.003,-.134,0,-.132,.03,-.129,.043,-.125,.066,-.115,.088,-.1],[-.239,.025,-.183,.018,-.134,.006,-.132,.003,-.128,-.03,-.123,-.044,-.117,-.06,-.099,-.089,-.136,-.14,-.179,-.186,-.193,-.197,-.209,-.207,-.237,-.214,-.261,-.215,-.285,-.211,-.307,-.203,-.332,-.186,-.35,-.168,-.363,-.145,-.372,-.121,-.375,-.094,-.373,-.067,-.364,-.042,-.351,-.02,-.334,-.001,-.313,.014,-.289,.024,-.264,.026],[.594,-.059,.593,-.007,.591,.013,.573,-.021,.566,-.042,.56,-.075,.559,-.097,.562,-.125,.566,-.144,.573,-.165,.591,-.204],[.018,.066,.04,.056,.05,.048,.058,.037,.067,.014,.067,-.013,.064,-.024,.056,-.038,.048,-.047,.035,-.056,.024,-.062,.011,-.065,-.015,-.064,-.036,-.054,-.045,-.047,-.055,-.034,-.065,-.011,-.064,.016,-.054,.039,-.045,.05,-.034,.058,-.024,.064,-.011,.067],[.274,.216,.298,.21,.32,.199,.341,.184,.36,.159,.37,.138,.378,.109,.378,.084,.374,.064,.364,.038,.35,.018,.335,.003,.312,-.013,.292,-.021,.272,-.023,.239,-.022,.211,-.019,.168,-.011,.137,-.003,.135,0,.131,.033,.126,.047,.118,.066,.103,.088,.102,.091,.117,.115,.153,.159,.173,.181,.196,.2,.213,.21,.228,.215,.247,.218],[-.596,.06,-.596,.004,-.593,-.016,-.574,.015,-.563,.045,-.557,.078,-.556,.103,-.559,.129,-.569,.164,-.581,.193,-.594,.215,-.596,.195],[-.076,.377,-.05,.37,-.03,.361,-.008,.344,.01,.322,.019,.304,.025,.286,.026,.264,.024,.228,.014,.168,.008,.141,.005,.136,-.028,.131,-.042,.127,-.065,.117,-.087,.102,-.093,.103,-.104,.111,-.158,.154,-.178,.173,-.197,.196,-.206,.212,-.211,.226,-.215,.244,-.215,.267,-.21,.289,-.198,.319,-.185,.336,-.168,.353,-.149,.364,-.125,.374,-.105,.378],[.197,.594,.126,.591,.154,.575,.181,.566,.214,.56,.233,.559,.25,.56,.283,.566,.309,.576,.341,.591,.322,.593]],
[[-.195,-.596,-.137,-.596,-.115,-.593,-.146,-.573,-.172,-.562,-.203,-.555,-.237,-.553,-.26,-.556,-.291,-.563,-.338,-.582,-.36,-.594,-.338,-.596],[-.078,.447,-.111,.445,-.133,.44,-.16,.431,-.201,.414,-.226,.399,-.245,.383,-.259,.369,-.277,.345,-.291,.317,-.3,.288,-.304,.264,-.305,.22,-.33,.201,-.344,.187,-.365,.156,-.378,.126,-.381,.111,-.385,.089,-.385,.053,-.414,.018,-.431,-.015,-.438,-.036,-.442,-.059,-.445,-.083,-.442,-.113,-.431,-.152,-.407,-.208,-.395,-.227,-.379,-.247,-.358,-.265,-.342,-.277,-.314,-.291,-.283,-.301,-.258,-.304,-.218,-.305,-.199,-.329,-.186,-.343,-.167,-.357,-.149,-.367,-.123,-.378,-.108,-.381,-.086,-.385,-.052,-.384,-.023,-.408,.01,-.428,.05,-.44,.081,-.444,.114,-.442,.138,-.437,.208,-.409,.23,-.395,.25,-.379,.262,-.366,.28,-.342,.297,-.307,.304,-.283,.308,-.258,.308,-.218,.333,-.198,.345,-.186,.36,-.167,.37,-.149,.381,-.122,.385,-.106,.387,-.086,.387,-.052,.417,-.015,.43,.01,.437,.026,.444,.053,.447,.084,.444,.118,.431,.163,.407,.216,.382,.25,.369,.262,.347,.279,.317,.294,.288,.303,.264,.307,.22,.308,.202,.331,.188,.345,.169,.36,.15,.371,.126,.38,.111,.384,.089,.387,.055,.387,.026,.411,-.009,.431,-.047,.443],[.091,-.103,.149,-.15,.186,-.19,.198,-.206,.204,-.22,.209,-.242,.209,-.261,.207,-.28,.198,-.308,.186,-.329,.17,-.346,.151,-.361,.128,-.371,.102,-.378,.086,-.379,.061,-.376,.045,-.371,.024,-.361,.003,-.345,-.013,-.326,-.027,-.3,-.031,-.283,-.032,-.264,-.028,-.218,-.008,-.135,-.003,-.132,.018,-.131,.043,-.125,.066,-.115,.085,-.103],[.594,-.052,.593,.004,.591,.024,.572,-.007,.563,-.034,.558,-.059,.556,-.088,.558,-.113,.563,-.136,.592,-.206],[-.238,.033,-.199,.027,-.145,.014,-.133,.01,-.131,-.015,-.126,-.038,-.118,-.058,-.103,-.082,-.102,-.086,-.14,-.134,-.184,-.179,-.212,-.198,-.245,-.206,-.267,-.206,-.294,-.201,-.315,-.191,-.338,-.175,-.355,-.156,-.367,-.135,-.377,-.101,-.378,-.078,-.373,-.05,-.365,-.028,-.349,-.005,-.334,.01,-.308,.026,-.288,.033,-.264,.035],[.018,.066,.04,.056,.05,.048,.058,.037,.064,.026,.067,.014,.067,-.013,.064,-.023,.057,-.036,.048,-.047,.035,-.056,.024,-.062,.011,-.065,-.015,-.064,-.036,-.054,-.047,-.045,-.055,-.034,-.065,-.011,-.064,.016,-.055,.037,-.047,.048,-.034,.058,-.011,.067],[-.597,.052,-.596,-.007,-.594,-.029,-.577,-.005,-.563,.028,-.555,.061,-.553,.093,-.555,.116,-.563,.147,-.584,.198,-.594,.218,-.596,.196],[.275,.208,.297,.203,.318,.194,.341,.178,.358,.159,.369,.14,.379,.111,.381,.083,.378,.062,.37,.037,.357,.014,.338,-.006,.316,-.021,.299,-.028,.281,-.032,.25,-.031,.216,-.027,.159,-.014,.136,-.007,.13,.035,.12,.061,.106,.085,.105,.089,.128,.12,.154,.15,.183,.179,.202,.194,.214,.201,.236,.207,.256,.209],[-.07,.38,-.048,.376,-.023,.365,-.002,.349,.014,.332,.028,.307,.034,.288,.034,.247,.024,.189,.01,.136,-.015,.133,-.04,.128,-.063,.118,-.084,.105,-.088,.106,-.096,.111,-.147,.154,-.167,.173,-.187,.197,-.195,.209,-.201,.223,-.206,.245,-.206,.269,-.201,.294,-.194,.312,-.183,.331,-.166,.35,-.146,.364,-.119,.376,-.094,.381],[.2,.594,.144,.593,.124,.591,.145,.578,.175,.565,.206,.558,.237,.556,.267,.559,.292,.565,.354,.592]],
[[-.199,-.596,-.137,-.595,-.116,-.594,-.114,-.593,-.115,-.592,-.149,-.57,-.173,-.56,-.203,-.553,-.244,-.551,-.263,-.553,-.297,-.562,-.371,-.594],[-.046,.447,-.081,.449,-.107,.447,-.144,.437,-.17,.424,-.199,.414,-.226,.4,-.246,.386,-.264,.368,-.278,.351,-.297,.318,-.308,.285,-.312,.258,-.312,.211,-.346,.18,-.366,.151,-.378,.126,-.384,.102,-.388,.062,-.417,.026,-.428,.007,-.435,-.011,-.445,-.047,-.446,-.067,-.445,-.103,-.434,-.144,-.403,-.216,-.394,-.231,-.378,-.252,-.347,-.279,-.319,-.295,-.282,-.308,-.256,-.312,-.208,-.312,-.178,-.346,-.146,-.367,-.124,-.378,-.111,-.381,-.085,-.386,-.059,-.388,-.028,-.413,-.004,-.428,.02,-.437,.049,-.444,.089,-.446,.121,-.442,.147,-.434,.173,-.422,.202,-.411,.229,-.397,.242,-.388,.26,-.372,.28,-.349,.298,-.319,.311,-.282,.315,-.256,.315,-.208,.348,-.178,.369,-.148,.381,-.122,.387,-.1,.391,-.059,.417,-.027,.43,-.004,.437,.012,.448,.05,.449,.081,.448,.108,.437,.147,.424,.173,.414,.202,.404,.222,.381,.254,.348,.283,.322,.298,.285,.311,.258,.315,.211,.315,.18,.348,.149,.37,.114,.384,.086,.389,.062,.391,.031,.416,.009,.429,-.011,.438],[.088,-.106,.142,-.154,.182,-.198,.191,-.213,.197,-.227,.201,-.247,.201,-.267,.198,-.288,.187,-.316,.177,-.331,.158,-.351,.139,-.365,.118,-.375,.094,-.38,.072,-.381,.049,-.378,.023,-.367,.006,-.357,-.01,-.342,-.024,-.325,-.034,-.305,-.039,-.289,-.041,-.264,-.038,-.233,-.031,-.2,-.012,-.134,-.008,-.132,.014,-.131,.035,-.128,.061,-.118,.081,-.105],[.593,-.043,.593,.014,.592,.034,.59,.036,.589,.034,.572,.007,.56,-.025,.555,-.047,.554,-.086,.556,-.107,.562,-.133,.591,-.204],[-.242,.042,-.187,.031,-.134,.015,-.132,.011,-.131,-.011,-.128,-.032,-.118,-.058,-.105,-.081,-.107,-.086,-.132,-.116,-.182,-.167,-.215,-.189,-.229,-.194,-.245,-.198,-.269,-.198,-.297,-.192,-.325,-.179,-.343,-.164,-.359,-.146,-.372,-.123,-.378,-.105,-.381,-.075,-.378,-.048,-.367,-.02,-.356,-.001,-.34,.016,-.318,.031,-.295,.041,-.275,.044],[.018,.066,.03,.062,.04,.056,.048,.049,.058,.037,.064,.026,.067,.014,.067,-.013,.057,-.036,.048,-.047,.035,-.056,.024,-.062,.011,-.065,-.015,-.064,-.038,-.053,-.047,-.045,-.056,-.033,-.064,-.011,-.064,.016,-.061,.026,-.054,.039,-.045,.049,-.034,.058,-.023,.064,-.011,.067,.006,.068],[-.597,.045,-.596,-.017,-.593,-.041,-.57,-.004,-.559,.024,-.552,.05,-.551,.089,-.552,.108,-.559,.136,-.586,.202,-.594,.218],[.277,.2,.301,.194,.327,.182,.346,.167,.361,.149,.374,.126,.381,.107,.384,.078,.381,.051,.37,.023,.36,.006,.347,-.009,.321,-.028,.3,-.037,.281,-.041,.256,-.04,.219,-.035,.179,-.025,.137,-.012,.134,-.008,.134,.014,.13,.035,.124,.053,.109,.08,.108,.085,.154,.139,.176,.161,.2,.182,.216,.191,.232,.197,.253,.201],[-.062,.383,-.037,.378,-.018,.369,0,.357,.02,.338,.031,.321,.041,.297,.044,.278,.042,.253,.03,.187,.015,.137,.011,.135,-.014,.134,-.032,.13,-.058,.12,-.079,.108,-.083,.108,-.089,.112,-.144,.161,-.18,.202,-.188,.216,-.194,.232,-.198,.253,-.198,.272,-.194,.293,-.183,.32,-.167,.343,-.154,.355,-.136,.368,-.113,.378,-.086,.384],[.203,.594,.144,.593,.123,.591,.152,.573,.178,.562,.206,.555,.244,.554,.266,.556,.294,.563,.365,.592]],
[[-.202,-.597,-.137,-.596,-.115,-.595,-.112,-.594,-.113,-.592,-.146,-.57,-.18,-.556,-.214,-.549,-.247,-.549,-.287,-.556,-.319,-.568,-.337,-.578,-.363,-.586,-.382,-.594],[-.043,.45,-.083,.451,-.11,.447,-.141,.437,-.17,.422,-.204,.411,-.228,.399,-.248,.386,-.266,.37,-.283,.351,-.302,.32,-.315,.286,-.321,.25,-.319,.201,-.346,.175,-.366,.148,-.381,.114,-.389,.071,-.416,.039,-.431,.013,-.445,-.028,-.449,-.05,-.448,-.086,-.444,-.11,-.438,-.131,-.419,-.17,-.409,-.202,-.397,-.227,-.377,-.256,-.345,-.285,-.319,-.301,-.283,-.315,-.247,-.321,-.198,-.319,-.169,-.349,-.136,-.371,-.102,-.384,-.068,-.389,-.043,-.411,-.018,-.427,.016,-.441,.045,-.447,.086,-.449,.113,-.444,.144,-.434,.173,-.419,.207,-.408,.231,-.396,.252,-.382,.27,-.366,.286,-.348,.304,-.319,.317,-.283,.323,-.247,.322,-.198,.35,-.171,.37,-.143,.384,-.111,.392,-.069,.42,-.035,.436,-.005,.445,.02,.451,.047,.451,.089,.447,.113,.44,.136,.422,.173,.415,.197,.407,.216,.386,.251,.37,.269,.352,.284,.327,.301,.306,.311,.286,.317,.25,.323,.201,.322,.174,.35,.146,.37,.114,.384,.071,.392,.041,.418,.019,.431,-.015,.444],[.084,-.109,.116,-.138,.148,-.17,.18,-.211,.186,-.224,.19,-.239,.192,-.261,.191,-.278,.186,-.299,.177,-.32,.164,-.34,.147,-.357,.13,-.368,.107,-.378,.086,-.382,.058,-.382,.034,-.378,.008,-.366,-.01,-.353,-.026,-.336,-.038,-.317,-.048,-.294,-.049,-.275,-.048,-.25,-.044,-.226,-.034,-.186,-.016,-.133,.033,-.128,.061,-.118,.076,-.108],[-.15,-.217,-.166,-.233,-.184,-.245,-.21,-.253,-.228,-.253,-.193,-.242],[.221,-.151,.236,-.166,.247,-.183,.256,-.214,.255,-.227,.245,-.193],[.594,-.035,.593,.026,.591,.049,.575,.024,.56,-.011,.552,-.047,.551,-.078,.555,-.108,.562,-.131,.581,-.17,.592,-.204],[-.242,.05,-.186,.037,-.133,.019,-.128,-.03,-.122,-.048,-.108,-.078,-.113,-.086,-.14,-.116,-.17,-.145,-.191,-.163,-.22,-.182,-.236,-.187,-.249,-.189,-.281,-.188,-.305,-.181,-.327,-.17,-.346,-.156,-.362,-.136,-.373,-.116,-.381,-.091,-.383,-.067,-.381,-.042,-.372,-.016,-.357,.008,-.336,.029,-.312,.044,-.294,.05,-.272,.052],[.018,.066,.039,.057,.05,.048,.058,.037,.067,.014,.067,-.013,.057,-.036,.048,-.047,.037,-.055,.014,-.065,-.003,-.065,-.015,-.064,-.036,-.054,-.047,-.045,-.055,-.034,-.065,-.011,-.064,.016,-.054,.039,-.045,.049,-.034,.058,-.011,.067],[-.597,.038,-.596,-.027,-.595,-.049,-.594,-.052,-.592,-.051,-.57,-.018,-.556,.016,-.549,.05,-.548,.083,-.552,.111,-.557,.128,-.568,.155,-.578,.173,-.585,.197,-.594,.218],[.275,.192,.297,.188,.318,.18,.343,.164,.36,.145,.375,.121,.384,.094,.386,.069,.384,.045,.376,.022,.363,-.001,.342,-.024,.322,-.037,.299,-.047,.281,-.049,.25,-.048,.225,-.043,.167,-.028,.135,-.016,.134,.011,.131,.033,.125,.051,.11,.08,.125,.099,.163,.139,.186,.16,.21,.177,.226,.186,.239,.19],[-.04,.383,-.019,.376,.005,.362,.02,.349,.039,.324,.047,.307,.052,.289,.052,.264,.048,.231,.031,.168,.019,.135,-.03,.131,-.052,.123,-.076,.111,-.081,.112,-.09,.119,-.145,.173,-.178,.215,-.184,.228,-.188,.244,-.189,.264,-.187,.286,-.178,.316,-.168,.333,-.154,.35,-.134,.366,-.112,.378,-.089,.384,-.064,.386],[-.253,.229,-.242,.195,-.218,.154,-.233,.168,-.244,.186,-.251,.206,-.254,.22],[.231,.256,.211,.251,.196,.245,.153,.22,.17,.237,.185,.247,.211,.255],[.204,.594,.144,.593,.123,.592,.121,.591,.122,.59,.151,.572,.183,.559,.217,.552,.247,.551,.258,.552,.29,.559,.316,.569,.34,.581,.373,.592]],
[[-.204,-.597,-.137,-.596,-.114,-.595,-.112,-.593,-.113,-.592,-.144,-.57,-.176,-.556,-.217,-.547,-.253,-.547,-.272,-.549,-.296,-.556,-.323,-.567,-.346,-.581,-.377,-.589,-.392,-.595],[-.04,.453,-.075,.453,-.11,.447,-.144,.434,-.168,.419,-.199,.411,-.217,.404,-.235,.395,-.255,.382,-.272,.367,-.289,.348,-.312,.31,-.324,.272,-.329,.242,-.329,.219,-.325,.19,-.347,.168,-.363,.148,-.379,.119,-.389,.082,-.416,.051,-.434,.019,-.445,-.009,-.448,-.025,-.451,-.044,-.451,-.075,-.448,-.094,-.442,-.118,-.428,-.149,-.417,-.168,-.408,-.201,-.397,-.226,-.376,-.258,-.359,-.277,-.339,-.293,-.308,-.312,-.268,-.325,-.233,-.329,-.187,-.325,-.164,-.349,-.145,-.363,-.116,-.379,-.079,-.389,-.051,-.414,-.029,-.428,.01,-.444,.042,-.45,.078,-.451,.11,-.445,.141,-.434,.171,-.417,.202,-.409,.219,-.402,.233,-.395,.258,-.379,.276,-.363,.292,-.346,.304,-.327,.315,-.308,.327,-.27,.332,-.233,.328,-.187,.351,-.164,.366,-.145,.382,-.116,.392,-.08,.42,-.046,.436,-.018,.445,.004,.451,.028,.454,.045,.454,.078,.451,.097,.444,.123,.431,.152,.419,.173,.411,.204,.4,.229,.381,.26,.363,.279,.348,.291,.337,.3,.31,.314,.27,.328,.239,.332,.19,.328,.167,.351,.148,.366,.119,.381,.082,.392,.054,.416,.032,.431,-.007,.447],[.08,-.111,.13,-.16,.148,-.181,.168,-.209,.181,-.237,.184,-.256,.183,-.274,.18,-.295,.169,-.321,.158,-.338,.138,-.359,.116,-.373,.094,-.381,.067,-.385,.042,-.384,.018,-.378,-.002,-.367,-.017,-.357,-.036,-.337,-.048,-.318,-.055,-.298,-.059,-.283,-.058,-.258,-.045,-.198,-.031,-.159,-.019,-.132,-.016,-.131,.011,-.131,.033,-.128,.053,-.121,.073,-.111],[.182,-.114,.211,-.132,.236,-.152,.247,-.165,.257,-.186,.264,-.209,.265,-.236,.261,-.263,.252,-.284,.25,-.288,.249,-.286,.25,-.258,.247,-.231,.237,-.198,.23,-.183,.211,-.154,.178,-.115],[-.113,-.176,-.125,-.196,-.149,-.23,-.164,-.243,-.18,-.252,-.209,-.261,-.231,-.263,-.251,-.261,-.281,-.252,-.288,-.248,-.286,-.246,-.258,-.247,-.234,-.245,-.198,-.234,-.158,-.21],[.594,-.027,.594,.036,.593,.057,.591,.06,.59,.059,.572,.032,.555,-.009,.549,-.042,.549,-.072,.552,-.094,.558,-.118,.568,-.142,.583,-.168,.592,-.201],[-.259,.061,-.222,.054,-.188,.044,-.134,.02,-.131,.017,-.131,-.008,-.128,-.03,-.121,-.05,-.11,-.073,-.112,-.078,-.129,-.097,-.181,-.145,-.21,-.166,-.227,-.175,-.239,-.179,-.267,-.181,-.291,-.178,-.319,-.167,-.336,-.157,-.355,-.14,-.372,-.115,-.381,-.091,-.385,-.072,-.384,-.042,-.378,-.017,-.365,.008,-.35,.027,-.327,.045,-.305,.056,-.286,.061],[-.597,.03,-.596,-.037,-.595,-.06,-.594,-.063,-.592,-.062,-.569,-.029,-.553,.01,-.547,.045,-.546,.078,-.552,.111,-.558,.127,-.569,.152,-.58,.171,-.589,.202,-.595,.217],[.017,.067,.028,.063,.041,.056,.05,.048,.058,.037,.067,.014,.067,-.011,.064,-.023,.057,-.036,.048,-.047,.037,-.055,.014,-.065,-.013,-.064,-.036,-.054,-.047,-.045,-.055,-.034,-.065,-.011,-.065,.014,-.061,.026,-.054,.039,-.045,.05,-.033,.059,-.011,.067],[.278,.183,.304,.178,.323,.169,.348,.152,.362,.138,.375,.118,.384,.094,.388,.072,.387,.042,.38,.018,.368,-.006,.349,-.028,.328,-.044,.308,-.053,.288,-.059,.265,-.058,.23,-.052,.18,-.038,.136,-.018,.134,-.014,.134,.011,.131,.033,.113,.078,.121,.088,.153,.121,.184,.148,.205,.164,.226,.176,.238,.18,.258,.184],[-.036,.386,-.015,.38,.008,.368,.025,.355,.041,.337,.051,.319,.061,.29,.059,.253,.051,.214,.041,.182,.02,.136,.017,.134,-.008,.134,-.028,.131,-.05,.124,-.072,.113,-.08,.116,-.129,.164,-.145,.184,-.166,.213,-.175,.23,-.179,.242,-.181,.267,-.178,.291,-.172,.312,-.16,.334,-.147,.351,-.127,.367,-.106,.379,-.089,.384,-.067,.388],[-.246,.29,-.245,.239,-.238,.211,-.228,.187,-.213,.164,-.176,.118,-.177,.117,-.186,.121,-.216,.141,-.234,.156,-.246,.172,-.256,.193,-.262,.214,-.262,.25,-.255,.276],[.255,.264,.278,.257,.291,.249,.242,.248,.211,.241,.18,.226,.136,.194,.117,.179,.133,.208,.155,.236,.172,.249,.197,.26,.212,.264,.233,.265],[.207,.594,.144,.593,.123,.592,.12,.591,.122,.59,.148,.572,.188,.556,.22,.55,.253,.549,.275,.552,.298,.559,.329,.572,.348,.583,.381,.592]],
[[-.207,-.596,-.138,-.596,-.114,-.594,-.112,-.593,-.113,-.592,-.143,-.57,-.181,-.553,-.219,-.545,-.256,-.545,-.295,-.553,-.327,-.567,-.354,-.584,-.379,-.589,-.397,-.595],[-.02,.454,-.069,.455,-.094,.451,-.115,.444,-.144,.431,-.167,.416,-.203,.408,-.235,.395,-.273,.369,-.292,.349,-.306,.331,-.317,.311,-.325,.291,-.331,.269,-.335,.253,-.336,.228,-.331,.179,-.361,.146,-.378,.118,-.387,.094,-.415,.064,-.431,.038,-.444,.007,-.45,-.017,-.452,-.067,-.444,-.107,-.428,-.144,-.413,-.167,-.406,-.199,-.395,-.229,-.372,-.265,-.361,-.279,-.34,-.297,-.307,-.317,-.288,-.325,-.266,-.331,-.25,-.335,-.225,-.336,-.176,-.331,-.145,-.36,-.117,-.377,-.091,-.387,-.068,-.409,-.044,-.426,-.01,-.442,.025,-.451,.072,-.452,.097,-.448,.118,-.441,.146,-.428,.17,-.413,.21,-.403,.24,-.391,.268,-.372,.297,-.343,.319,-.308,.33,-.282,.334,-.269,.337,-.25,.339,-.225,.338,-.203,.334,-.176,.365,-.141,.38,-.115,.39,-.091,.419,-.059,.437,-.03,.447,-.004,.453,.02,.455,.039,.455,.069,.447,.11,.431,.146,.416,.17,.409,.202,.397,.232,.375,.268,.346,.297,.312,.319,.291,.328,.271,.334,.253,.337,.228,.339,.179,.334,.144,.365,.118,.38,.094,.39,.071,.411,.045,.43,.013,.445],[.077,-.114,.13,-.171,.161,-.213,.169,-.23,.173,-.245,.175,-.264,.174,-.283,.167,-.308,.158,-.327,.144,-.346,.126,-.363,.101,-.377,.08,-.384,.058,-.387,.03,-.385,.006,-.378,-.015,-.367,-.032,-.353,-.047,-.335,-.061,-.31,-.067,-.288,-.068,-.267,-.065,-.247,-.061,-.23,-.04,-.189,-.015,-.134,-.011,-.132,.014,-.131,.033,-.128,.07,-.113],[.158,-.095,.198,-.115,.23,-.135,.25,-.154,.264,-.179,.27,-.198,.272,-.215,.27,-.25,.261,-.279,.246,-.302,.236,-.31,.241,-.278,.241,-.256,.237,-.228,.231,-.206,.219,-.182,.199,-.152,.152,-.096,.153,-.094],[-.093,-.151,-.116,-.197,-.135,-.227,-.153,-.246,-.173,-.259,-.2,-.268,-.233,-.27,-.252,-.267,-.269,-.262,-.299,-.245,-.308,-.237,-.31,-.233,-.281,-.238,-.25,-.238,-.226,-.234,-.201,-.226,-.179,-.214,-.152,-.197,-.098,-.151],[.594,-.018,.593,.045,.591,.067,.59,.069,.589,.068,.57,.04,.555,.005,.548,-.031,.548,-.067,.556,-.107,.572,-.144,.587,-.167,.593,-.194],[-.259,.069,-.235,.064,-.192,.042,-.133,.015,-.128,-.03,-.113,-.069,-.115,-.075,-.135,-.094,-.184,-.137,-.22,-.162,-.234,-.168,-.247,-.171,-.275,-.172,-.299,-.167,-.321,-.159,-.341,-.146,-.361,-.126,-.375,-.104,-.384,-.077,-.387,-.056,-.385,-.028,-.377,-.002,-.365,.02,-.347,.04,-.325,.057,-.301,.067,-.283,.071],[-.597,.022,-.596,-.048,-.595,-.071,-.594,-.074,-.592,-.073,-.569,-.041,-.553,-.004,-.545,.033,-.545,.067,-.547,.083,-.553,.11,-.569,.146,-.584,.17,-.595,.214],[.276,.175,.302,.17,.326,.161,.347,.146,.363,.129,.378,.105,.387,.081,.39,.056,.389,.035,.381,.006,.369,-.015,.35,-.038,.329,-.053,.311,-.062,.286,-.068,.267,-.067,.248,-.064,.235,-.06,.188,-.036,.136,-.013,.131,.033,.116,.07,.116,.075,.133,.093,.172,.129,.216,.161,.245,.173],[.018,.066,.039,.057,.05,.048,.058,.037,.064,.024,.068,.011,.067,-.014,.064,-.024,.057,-.036,.048,-.047,.035,-.056,.024,-.062,.011,-.065,-.015,-.064,-.038,-.053,-.047,-.045,-.056,-.033,-.064,-.011,-.064,.014,-.061,.026,-.054,.039,-.047,.048,-.034,.058,-.011,.067],[-.233,.313,-.238,.283,-.238,.264,-.235,.233,-.231,.217,-.222,.196,-.203,.165,-.173,.126,-.15,.099,-.149,.098,-.152,.097,-.169,.104,-.207,.125,-.236,.146,-.252,.163,-.265,.192,-.27,.225,-.267,.257,-.261,.276,-.251,.294,-.239,.31],[-.032,.389,-.012,.384,.008,.376,.029,.361,.043,.347,.058,.326,.067,.304,.071,.286,.07,.264,.064,.237,.039,.19,.015,.136,-.03,.131,-.069,.115,-.077,.119,-.115,.159,-.137,.186,-.156,.212,-.166,.233,-.17,.247,-.172,.281,-.167,.304,-.159,.324,-.144,.346,-.126,.364,-.106,.377,-.086,.385,-.058,.39],[.241,.272,.264,.268,.282,.261,.304,.247,.313,.236,.283,.24,.264,.241,.233,.238,.217,.234,.182,.217,.141,.188,.101,.153,.098,.152,.097,.155,.123,.207,.139,.231,.155,.249,.174,.261,.194,.268,.222,.273],[.208,.594,.144,.593,.123,.592,.12,.591,.121,.589,.146,.572,.184,.555,.217,.549,.25,.548,.283,.552,.3,.557,.327,.568,.356,.587,.383,.592]],
[[-.208,-.596,-.138,-.596,-.114,-.594,-.112,-.593,-.113,-.592,-.143,-.569,-.179,-.553,-.201,-.547,-.225,-.543,-.258,-.544,-.289,-.549,-.309,-.556,-.337,-.57,-.365,-.589,-.4,-.595],[-.021,.456,-.056,.457,-.08,.453,-.108,.445,-.136,.432,-.166,.411,-.208,.403,-.241,.39,-.272,.371,-.295,.349,-.311,.329,-.323,.308,-.337,.269,-.342,.244,-.343,.222,-.342,.2,-.336,.168,-.362,.139,-.381,.108,-.412,.077,-.431,.049,-.444,.021,-.451,-.003,-.455,-.031,-.455,-.05,-.451,-.08,-.445,-.102,-.428,-.138,-.409,-.165,-.404,-.194,-.394,-.226,-.377,-.259,-.364,-.276,-.345,-.296,-.324,-.312,-.305,-.323,-.286,-.331,-.264,-.338,-.241,-.342,-.217,-.343,-.198,-.342,-.165,-.336,-.134,-.363,-.106,-.38,-.082,-.406,-.054,-.427,-.016,-.445,.019,-.452,.033,-.454,.058,-.454,.083,-.451,.113,-.442,.139,-.429,.169,-.409,.21,-.401,.244,-.387,.276,-.366,.299,-.345,.314,-.326,.326,-.305,.331,-.294,.341,-.264,.345,-.241,.346,-.214,.345,-.197,.339,-.165,.365,-.136,.384,-.106,.416,-.073,.434,-.047,.448,-.016,.454,.006,.457,.033,.458,.053,.454,.08,.448,.105,.432,.139,.411,.169,.404,.208,.397,.229,.376,.267,.346,.3,.329,.314,.31,.325,.291,.334,.267,.341,.244,.345,.219,.346,.201,.345,.168,.339,.137,.366,.109,.383,.082,.411,.056,.43,.019,.448],[.071,-.115,.119,-.168,.151,-.214,.164,-.245,.166,-.267,.164,-.291,.158,-.31,.146,-.334,.13,-.354,.115,-.366,.094,-.378,.066,-.387,.039,-.389,.019,-.386,.001,-.381,-.016,-.373,-.034,-.361,-.048,-.347,-.061,-.329,-.071,-.308,-.076,-.289,-.076,-.272,-.039,-.203,-.01,-.134,-.006,-.132,.033,-.128],[.139,-.081,.189,-.102,.228,-.124,.251,-.142,.268,-.167,.275,-.184,.28,-.206,.281,-.222,.278,-.241,.275,-.257,.267,-.276,.246,-.306,.231,-.318,.225,-.319,.231,-.289,.232,-.264,.231,-.24,.224,-.214,.211,-.185,.19,-.153,.169,-.124,.131,-.081,.132,-.079],[-.078,-.129,-.099,-.18,-.12,-.22,-.14,-.247,-.161,-.262,-.193,-.275,-.226,-.278,-.248,-.275,-.269,-.267,-.285,-.259,-.3,-.248,-.315,-.233,-.319,-.226,-.319,-.222,-.289,-.229,-.258,-.229,-.24,-.228,-.212,-.22,-.185,-.208,-.153,-.188,-.12,-.162,-.083,-.13],[.594,-.006,.593,.057,.592,.078,.59,.08,.589,.079,.572,.055,.555,.019,.549,-.003,.546,-.028,.546,-.053,.549,-.078,.555,-.102,.572,-.138,.591,-.165,.594,-.18],[-.27,.077,-.237,.056,-.209,.043,-.134,.012,-.132,.008,-.128,-.03,-.114,-.065,-.118,-.072,-.138,-.091,-.181,-.126,-.209,-.145,-.237,-.159,-.261,-.163,-.289,-.162,-.314,-.154,-.335,-.142,-.355,-.126,-.372,-.104,-.381,-.083,-.388,-.058,-.388,-.028,-.384,-.009,-.377,.012,-.361,.037,-.345,.052,-.32,.069,-.294,.078,-.281,.08],[-.596,.013,-.595,-.057,-.594,-.08,-.593,-.083,-.591,-.082,-.57,-.054,-.552,-.016,-.546,.006,-.543,.031,-.543,.061,-.547,.083,-.553,.107,-.569,.141,-.589,.169,-.595,.205],[.296,.164,.316,.157,.338,.145,.358,.129,.375,.106,.384,.088,.39,.061,.391,.031,.386,.009,.376,-.016,.358,-.04,.337,-.058,.311,-.071,.294,-.076,.278,-.077,.234,-.051,.196,-.033,.137,-.009,.135,-.005,.131,.033,.117,.069,.124,.078,.171,.119,.195,.137,.224,.155,.25,.165,.272,.166],[.018,.066,.04,.056,.05,.048,.058,.037,.064,.026,.067,.014,.067,-.013,.064,-.023,.057,-.036,.048,-.047,.036,-.056,.014,-.065,-.003,-.065,-.015,-.064,-.036,-.054,-.047,-.045,-.055,-.034,-.065,-.011,-.064,.016,-.06,.028,-.054,.039,-.045,.049,-.033,.059,-.011,.067],[-.222,.322,-.229,.292,-.229,.253,-.224,.227,-.217,.206,-.201,.176,-.184,.151,-.128,.083,-.133,.082,-.165,.095,-.218,.122,-.246,.142,-.261,.162,-.274,.194,-.278,.216,-.278,.23,-.274,.251,-.267,.272,-.259,.288,-.247,.304,-.233,.317,-.226,.322],[-.017,.389,.002,.384,.019,.376,.037,.363,.051,.35,.065,.33,.074,.309,.079,.292,.079,.278,.046,.219,.012,.137,.006,.134,-.03,.131,-.067,.117,-.076,.125,-.116,.171,-.134,.195,-.151,.222,-.162,.25,-.163,.272,-.161,.294,-.154,.316,-.143,.337,-.127,.356,-.11,.37,-.091,.381,-.064,.39,-.036,.391],[.232,.28,.261,.274,.288,.262,.315,.239,.322,.229,.322,.225,.296,.231,.281,.232,.25,.231,.229,.228,.209,.221,.186,.21,.135,.175,.086,.132,.083,.131,.082,.134,.094,.166,.111,.201,.124,.224,.142,.248,.16,.263,.183,.274,.203,.279],[.206,.594,.144,.593,.123,.592,.12,.591,.121,.589,.146,.572,.182,.555,.211,.548,.25,.545,.28,.549,.304,.556,.338,.572,.366,.591,.377,.593]],
[[-.206,-.597,-.138,-.596,-.115,-.595,-.112,-.593,-.113,-.592,-.143,-.569,-.178,-.552,-.217,-.543,-.253,-.542,-.283,-.546,-.307,-.553,-.34,-.57,-.372,-.594,-.397,-.596],[-.023,.458,-.056,.457,-.088,.45,-.106,.444,-.13,.431,-.165,.406,-.205,.401,-.236,.391,-.257,.38,-.278,.366,-.305,.34,-.321,.319,-.333,.298,-.344,.267,-.348,.25,-.351,.208,-.342,.156,-.368,.127,-.39,.111,-.408,.093,-.433,.057,-.445,.032,-.451,.008,-.456,-.022,-.455,-.047,-.451,-.075,-.442,-.104,-.428,-.132,-.403,-.165,-.398,-.205,-.384,-.244,-.362,-.28,-.336,-.307,-.316,-.321,-.291,-.334,-.265,-.344,-.247,-.348,-.206,-.351,-.184,-.348,-.154,-.342,-.126,-.366,-.107,-.391,-.093,-.405,-.065,-.427,-.045,-.438,-.021,-.447,.008,-.454,.022,-.455,.058,-.454,.091,-.448,.133,-.429,.168,-.403,.208,-.398,.241,-.387,.26,-.378,.278,-.365,.309,-.336,.327,-.311,.337,-.291,.344,-.273,.351,-.247,.353,-.206,.345,-.154,.37,-.124,.406,-.096,.431,-.063,.447,-.031,.454,-.008,.457,.014,.458,.045,.454,.078,.444,.109,.428,.138,.406,.168,.401,.208,.387,.247,.365,.283,.337,.311,.309,.33,.296,.336,.274,.345,.25,.351,.208,.353,.157,.345,.129,.369,.109,.394,.097,.407,.067,.43,.032,.447,.008,.454],[.068,-.117,.119,-.18,.148,-.226,.154,-.242,.157,-.258,.157,-.278,.154,-.297,.147,-.318,.131,-.344,.116,-.359,.097,-.373,.072,-.384,.047,-.389,.025,-.39,.004,-.386,-.025,-.374,-.04,-.364,-.055,-.351,-.073,-.324,-.078,-.313,-.083,-.295,-.059,-.259,-.041,-.224,-.006,-.134,-.003,-.132,.033,-.128],[.124,-.07,.18,-.091,.236,-.118,.259,-.137,.275,-.16,.281,-.176,.287,-.2,.287,-.222,.285,-.242,.28,-.257,.269,-.279,.259,-.294,.247,-.306,.224,-.322,.218,-.325,.216,-.324,.221,-.3,.224,-.264,.221,-.236,.215,-.215,.199,-.183,.18,-.152,.149,-.111,.117,-.073,.117,-.069],[-.069,-.115,-.086,-.166,-.109,-.217,-.128,-.246,-.138,-.257,-.151,-.267,-.172,-.277,-.186,-.281,-.206,-.285,-.228,-.284,-.246,-.281,-.266,-.273,-.286,-.262,-.302,-.248,-.317,-.229,-.324,-.217,-.324,-.213,-.3,-.218,-.264,-.221,-.236,-.218,-.215,-.212,-.181,-.196,-.152,-.177,-.118,-.153,-.073,-.114],[.594,.01,.593,.069,.592,.089,.591,.091,.589,.09,.57,.062,.555,.032,.546,-.008,.544,-.033,.546,-.058,.555,-.096,.572,-.132,.59,-.155,.593,-.133],[-.292,.083,-.267,.065,-.235,.047,-.179,.023,-.137,.009,-.133,.005,-.128,-.03,-.117,-.06,-.117,-.065,-.168,-.108,-.196,-.128,-.224,-.144,-.244,-.152,-.269,-.155,-.297,-.151,-.318,-.144,-.344,-.128,-.361,-.112,-.377,-.087,-.384,-.069,-.39,-.039,-.388,-.011,-.382,.011,-.372,.031,-.359,.049,-.338,.067,-.313,.081,-.3,.085],[-.597,.001,-.596,-.068,-.595,-.091,-.593,-.094,-.592,-.093,-.569,-.063,-.553,-.029,-.543,.011,-.542,.048,-.546,.078,-.552,.099,-.57,.135,-.594,.166,-.596,.191],[.291,.156,.313,.15,.333,.14,.351,.127,.37,.107,.381,.088,.39,.061,.393,.036,.39,.011,.381,-.018,.368,-.039,.344,-.062,.318,-.078,.305,-.082,.298,-.082,.273,-.064,.249,-.05,.207,-.03,.137,-.004,.135,0,.131,.033,.119,.066,.173,.112,.223,.145,.236,.151,.256,.157,.275,.157],[.017,.067,.039,.057,.05,.048,.058,.037,.067,.014,.067,-.011,.058,-.034,.048,-.047,.037,-.055,.014,-.065,-.013,-.064,-.036,-.054,-.047,-.045,-.055,-.034,-.061,-.023,-.064,-.011,-.064,.014,-.061,.026,-.054,.039,-.045,.05,-.036,.057,-.023,.064,-.011,.067],[-.213,.327,-.218,.3,-.221,.267,-.218,.239,-.211,.215,-.197,.185,-.177,.155,-.154,.123,-.114,.074,-.115,.072,-.119,.072,-.164,.088,-.208,.107,-.235,.122,-.249,.133,-.259,.143,-.267,.154,-.275,.17,-.281,.189,-.284,.208,-.284,.231,-.278,.258,-.273,.271,-.261,.29,-.247,.306,-.233,.318],[.236,.286,.266,.278,.29,.264,.314,.24,.328,.217,.323,.216,.303,.221,.269,.224,.242,.221,.226,.217,.184,.198,.155,.18,.127,.16,.076,.117,.073,.116,.072,.119,.086,.162,.102,.199,.117,.229,.132,.25,.149,.266,.176,.281,.206,.287],[-.017,.392,.001,.388,.019,.382,.049,.362,.064,.346,.075,.329,.081,.316,.085,.3,.057,.256,.043,.228,.027,.191,.007,.137,.003,.135,-.03,.131,-.056,.121,-.062,.119,-.065,.12,-.077,.133,-.116,.182,-.137,.214,-.152,.247,-.154,.264,-.154,.283,-.148,.311,-.139,.33,-.127,.348,-.109,.366,-.087,.38,-.067,.388,-.042,.393],[.201,.594,.142,.593,.12,.591,.149,.57,.179,.556,.219,.546,.246,.544,.269,.546,.307,.555,.341,.571,.366,.59,.344,.593]],
[[-.198,-.597,-.136,-.596,-.112,-.593,-.141,-.57,-.174,-.553,-.211,-.543,-.242,-.541,-.272,-.543,-.31,-.553,-.343,-.57,-.371,-.591,-.372,-.593,-.37,-.594,-.349,-.595],[-.007,.459,-.036,.459,-.053,.457,-.08,.451,-.096,.445,-.129,.427,-.163,.4,-.204,.397,-.23,.39,-.254,.38,-.283,.362,-.309,.338,-.327,.315,-.337,.297,-.347,.274,-.354,.247,-.357,.222,-.357,.194,-.348,.149,-.376,.131,-.396,.114,-.411,.099,-.428,.077,-.444,.045,-.451,.024,-.456,-.006,-.457,-.028,-.451,-.069,-.441,-.098,-.427,-.126,-.398,-.163,-.394,-.204,-.381,-.246,-.362,-.28,-.337,-.308,-.319,-.323,-.296,-.336,-.271,-.347,-.244,-.354,-.2,-.357,-.175,-.354,-.146,-.348,-.128,-.376,-.112,-.396,-.077,-.426,-.054,-.439,-.032,-.447,.007,-.456,.044,-.456,.072,-.451,.093,-.445,.128,-.427,.166,-.398,.207,-.394,.233,-.387,.257,-.377,.287,-.358,.309,-.338,.33,-.312,.344,-.287,.351,-.269,.358,-.242,.36,-.214,.359,-.192,.35,-.146,.379,-.128,.398,-.113,.414,-.096,.432,-.072,.444,-.048,.453,-.022,.459,.011,.459,.033,.454,.072,.444,.101,.43,.128,.4,.166,.398,.205,.391,.229,.384,.249,.367,.279,.34,.311,.316,.329,.297,.34,.272,.351,.247,.357,.219,.36,.192,.359,.149,.35,.131,.379,.115,.399,.083,.426,.066,.437,.043,.447,.022,.454],[.065,-.12,.112,-.181,.13,-.21,.14,-.231,.147,-.249,.148,-.258,.148,-.283,.144,-.302,.134,-.327,.121,-.347,.108,-.36,.087,-.375,.066,-.384,.042,-.39,.019,-.391,-.003,-.388,-.029,-.378,-.057,-.358,-.077,-.334,-.084,-.321,-.087,-.312,-.063,-.28,-.044,-.247,-.019,-.188,-.001,-.134,.003,-.132,.033,-.128,.059,-.119],[.13,-.067,.187,-.086,.238,-.11,.255,-.121,.265,-.13,.281,-.153,.29,-.176,.294,-.194,.295,-.211,.291,-.237,.284,-.258,.276,-.274,.267,-.287,.248,-.305,.222,-.321,.213,-.325,.208,-.324,.214,-.288,.215,-.269,.214,-.249,.208,-.224,.198,-.198,.18,-.166,.15,-.121,.114,-.076,.114,-.07,.117,-.066],[-.068,-.112,-.065,-.119,-.069,-.135,-.083,-.174,-.1,-.216,-.121,-.252,-.132,-.264,-.146,-.274,-.159,-.281,-.18,-.288,-.2,-.292,-.222,-.291,-.244,-.287,-.266,-.278,-.286,-.265,-.296,-.256,-.306,-.244,-.316,-.229,-.325,-.21,-.324,-.205,-.288,-.211,-.261,-.212,-.235,-.208,-.212,-.201,-.164,-.176,-.121,-.147,-.076,-.111],[.594,.018,.592,.078,.59,.1,.572,.077,.555,.041,.546,.008,.543,-.025,.546,-.055,.555,-.091,.572,-.124,.591,-.149,.593,-.126],[-.312,.088,-.288,.068,-.244,.043,-.193,.022,-.137,.004,-.132,-0,-.128,-.03,-.119,-.056,-.12,-.062,-.181,-.109,-.214,-.129,-.241,-.141,-.256,-.145,-.283,-.145,-.303,-.141,-.327,-.131,-.348,-.116,-.366,-.098,-.381,-.072,-.388,-.053,-.391,-.022,-.388,.005,-.381,.024,-.366,.051,-.353,.065,-.332,.081],[-.597,-.018,-.596,-.081,-.595,-.102,-.594,-.104,-.592,-.103,-.569,-.074,-.553,-.041,-.543,-.005,-.54,.028,-.543,.058,-.553,.093,-.57,.128,-.594,.157,-.596,.134],[.292,.147,.316,.14,.337,.13,.353,.118,.37,.099,.381,.08,.39,.055,.394,.031,.392,.009,.384,-.021,.366,-.051,.35,-.068,.337,-.077,.32,-.086,.314,-.085,.291,-.066,.262,-.048,.204,-.022,.138,0,.135,.006,.131,.033,.122,.061,.124,.066,.171,.102,.224,.136,.256,.148],[.018,.066,.04,.056,.05,.048,.059,.035,.067,.014,.067,-.013,.057,-.036,.048,-.047,.035,-.056,.024,-.062,.011,-.065,-.015,-.064,-.036,-.054,-.047,-.045,-.055,-.034,-.061,-.023,-.065,-.011,-.064,.016,-.054,.039,-.045,.049,-.034,.058,-.011,.067],[-.205,.327,-.211,.291,-.212,.269,-.211,.251,-.204,.223,-.193,.197,-.173,.162,-.147,.124,-.111,.077,-.113,.07,-.119,.068,-.175,.085,-.225,.107,-.249,.122,-.26,.13,-.278,.156,-.288,.181,-.291,.197,-.292,.218,-.289,.24,-.282,.261,-.272,.279,-.262,.292,-.245,.308,-.227,.32,-.21,.328],[.219,.294,.253,.288,.27,.28,.289,.268,.304,.253,.314,.24,.325,.22,.328,.209,.323,.208,.305,.212,.275,.215,.256,.214,.236,.211,.195,.195,.168,.18,.138,.16,.079,.114,.073,.114,.069,.117,.068,.122,.072,.138,.088,.185,.113,.238,.13,.263,.156,.281,.183,.291,.201,.294],[-.001,.392,.028,.382,.055,.365,.069,.351,.079,.338,.089,.317,.066,.288,.043,.247,.022,.196,.003,.137,-.003,.135,-.032,.13,-.056,.122,-.062,.123,-.078,.143,-.108,.183,-.128,.215,-.145,.254,-.145,.291,-.138,.314,-.127,.337,-.108,.36,-.09,.375,-.072,.384,-.05,.391,-.025,.394],[.202,.594,.143,.593,.12,.591,.145,.572,.179,.555,.214,.546,.244,.543,.278,.546,.311,.555,.344,.571,.368,.589,.369,.59,.367,.592,.347,.593]],
[[-.2,-.596,-.137,-.595,-.114,-.593,-.143,-.569,-.174,-.553,-.208,-.543,-.244,-.54,-.278,-.543,-.313,-.553,-.346,-.57,-.375,-.593,-.351,-.596],[.007,.459,-.036,.459,-.064,.454,-.084,.447,-.117,.43,-.135,.417,-.159,.394,-.2,.393,-.225,.388,-.246,.381,-.277,.365,-.308,.34,-.326,.32,-.339,.301,-.351,.277,-.358,.254,-.365,.208,-.358,.153,-.401,.119,-.429,.086,-.442,.06,-.451,.036,-.456,.008,-.457,-.014,-.454,-.05,-.448,-.074,-.44,-.094,-.418,-.13,-.392,-.159,-.39,-.2,-.384,-.228,-.378,-.247,-.362,-.277,-.338,-.308,-.319,-.325,-.298,-.339,-.28,-.348,-.251,-.358,-.233,-.362,-.203,-.365,-.151,-.358,-.119,-.398,-.084,-.427,-.043,-.447,-.003,-.456,.039,-.456,.066,-.451,.085,-.445,.12,-.427,.139,-.413,.162,-.392,.203,-.39,.228,-.385,.249,-.378,.282,-.361,.311,-.338,.331,-.315,.341,-.298,.351,-.28,.361,-.253,.365,-.233,.368,-.203,.361,-.151,.401,-.119,.42,-.099,.431,-.083,.445,-.057,.453,-.035,.459,-.005,.46,.017,.457,.053,.451,.077,.444,.095,.431,.119,.421,.133,.394,.162,.393,.203,.387,.23,.381,.249,.363,.284,.339,.313,.318,.331,.298,.343,.283,.351,.254,.361,.236,.365,.206,.368,.153,.36,.121,.403,.087,.43,.046,.45],[.061,-.123,.1,-.176,.117,-.204,.131,-.231,.137,-.25,.139,-.264,.137,-.297,.13,-.318,.118,-.339,.1,-.36,.079,-.375,.058,-.385,.033,-.391,.011,-.392,-.007,-.389,-.036,-.379,-.057,-.367,-.078,-.346,-.087,-.333,-.089,-.325,-.063,-.297,-.039,-.257,-.019,-.207,.002,-.134,.006,-.132,.033,-.128,.053,-.121],[.127,-.061,.191,-.08,.241,-.102,.268,-.12,.286,-.144,.297,-.171,.301,-.189,.301,-.214,.298,-.233,.29,-.255,.28,-.273,.269,-.287,.254,-.3,.241,-.309,.224,-.317,.205,-.323,.2,-.322,.204,-.297,.205,-.272,.204,-.247,.201,-.231,.189,-.199,.169,-.163,.149,-.13,.111,-.079,.111,-.074,.118,-.064,.12,-.061],[-.073,-.109,-.062,-.116,-.061,-.121,-.08,-.188,-.092,-.218,-.106,-.245,-.12,-.265,-.132,-.275,-.151,-.287,-.171,-.294,-.192,-.298,-.214,-.298,-.235,-.295,-.253,-.288,-.271,-.278,-.285,-.267,-.301,-.25,-.311,-.235,-.321,-.209,-.323,-.2,-.321,-.197,-.294,-.201,-.267,-.203,-.245,-.201,-.22,-.195,-.189,-.181,-.163,-.167,-.124,-.141,-.081,-.11],[.594,.028,.593,.088,.591,.11,.571,.086,.555,.052,.546,.019,.543,-.017,.546,-.05,.556,-.085,.573,-.117,.591,-.141,.593,-.118],[-.326,.091,-.3,.065,-.26,.042,-.213,.022,-.14,0,-.133,-.004,-.128,-.03,-.121,-.05,-.122,-.057,-.171,-.094,-.211,-.118,-.24,-.131,-.261,-.137,-.284,-.136,-.305,-.132,-.323,-.125,-.348,-.108,-.365,-.091,-.377,-.073,-.387,-.049,-.391,-.025,-.392,-.007,-.387,.019,-.377,.043,-.365,.061,-.346,.081,-.333,.09],[-.596,-.027,-.596,-.09,-.595,-.111,-.593,-.113,-.592,-.112,-.57,-.085,-.553,-.052,-.543,-.017,-.54,.017,-.543,.053,-.553,.087,-.57,.12,-.592,.148,-.595,.124],[.286,.139,.308,.134,.328,.126,.35,.112,.365,.097,.38,.076,.39,.052,.394,.031,.394,.008,.388,-.022,.376,-.047,.357,-.07,.334,-.088,.328,-.088,.304,-.064,.277,-.047,.249,-.033,.216,-.019,.137,.005,.135,.009,.131,.033,.124,.056,.128,.063,.172,.096,.225,.127,.253,.137,.267,.14],[.018,.066,.03,.062,.04,.056,.05,.048,.058,.037,.064,.026,.067,.014,.067,-.013,.057,-.036,.048,-.047,.035,-.056,.024,-.062,.011,-.065,-.015,-.064,-.036,-.054,-.047,-.045,-.055,-.034,-.065,-.011,-.064,.016,-.054,.039,-.045,.049,-.034,.058,-.023,.064,-.011,.067],[-.196,.324,-.201,.297,-.203,.269,-.201,.247,-.195,.223,-.178,.185,-.162,.158,-.108,.08,-.115,.066,-.119,.064,-.186,.083,-.235,.103,-.254,.114,-.266,.124,-.277,.138,-.288,.158,-.295,.176,-.298,.197,-.298,.219,-.295,.238,-.287,.258,-.275,.279,-.259,.296,-.242,.31,-.219,.321,-.203,.326],[.225,.3,.24,.297,.258,.29,.276,.28,.29,.269,.305,.251,.314,.238,.324,.214,.326,.201,.322,.199,.3,.204,.272,.205,.25,.204,.234,.201,.187,.181,.132,.148,.082,.111,.076,.111,.064,.12,.072,.157,.085,.197,.1,.232,.111,.252,.121,.266,.131,.275,.145,.285,.163,.294,.194,.301],[-.006,.394,.025,.388,.05,.376,.074,.356,.086,.341,.092,.331,.062,.298,.039,.257,.022,.216,-.002,.137,-.006,.135,-.03,.131,-.044,.126,-.053,.124,-.059,.126,-.094,.174,-.116,.21,-.127,.232,-.134,.253,-.137,.269,-.135,.292,-.128,.319,-.118,.338,-.105,.354,-.091,.368,-.073,.38,-.049,.39,-.028,.394],[.204,.594,.145,.593,.122,.59,.149,.57,.179,.555,.211,.546,.247,.543,.278,.545,.309,.553,.347,.571,.372,.59,.349,.593]],
[[-.201,-.597,-.138,-.596,-.114,-.593,-.143,-.57,-.174,-.553,-.208,-.543,-.244,-.539,-.281,-.543,-.315,-.553,-.348,-.57,-.376,-.592,-.377,-.593,-.375,-.595,-.353,-.596],[.018,.459,-.003,.461,-.028,.459,-.068,.45,-.109,.43,-.133,.411,-.156,.388,-.205,.387,-.238,.381,-.276,.364,-.298,.349,-.311,.338,-.328,.321,-.343,.299,-.355,.276,-.362,.258,-.368,.236,-.371,.214,-.371,.186,-.367,.157,-.406,.124,-.418,.111,-.433,.087,-.445,.063,-.451,.044,-.456,.022,-.458,0,-.456,-.033,-.451,-.058,-.444,-.076,-.429,-.106,-.418,-.122,-.385,-.156,-.385,-.206,-.378,-.238,-.361,-.276,-.338,-.308,-.318,-.328,-.3,-.34,-.275,-.354,-.257,-.361,-.23,-.368,-.211,-.37,-.183,-.37,-.154,-.367,-.128,-.399,-.111,-.415,-.095,-.427,-.06,-.445,-.02,-.455,.019,-.457,.044,-.454,.071,-.447,.087,-.441,.112,-.427,.136,-.408,.159,-.385,.208,-.384,.24,-.378,.279,-.361,.299,-.348,.314,-.335,.33,-.318,.346,-.297,.365,-.256,.371,-.233,.373,-.211,.373,-.183,.37,-.154,.41,-.12,.436,-.085,.447,-.062,.453,-.044,.458,-.025,.46,0,.458,.042,.447,.079,.437,.1,.425,.118,.41,.137,.389,.157,.387,.208,.38,.242,.364,.279,.349,.301,.336,.316,.319,.332,.3,.346,.26,.364,.236,.37,.214,.373,.186,.373,.157,.37,.127,.406,.098,.43,.057,.45],[.055,-.123,.095,-.181,.119,-.226,.131,-.262,.131,-.28,.127,-.3,.12,-.321,.11,-.339,.095,-.357,.074,-.373,.052,-.384,.03,-.39,.011,-.392,-.014,-.39,-.035,-.384,-.059,-.372,-.077,-.357,-.089,-.343,-.091,-.337,-.061,-.309,-.051,-.295,-.038,-.274,-.019,-.227,.007,-.134,.011,-.132],[.133,-.058,.177,-.069,.208,-.079,.255,-.099,.27,-.109,.279,-.119,.297,-.146,.303,-.165,.308,-.189,.307,-.211,.301,-.239,.291,-.259,.28,-.276,.265,-.291,.248,-.303,.222,-.315,.206,-.318,.195,-.319,.192,-.318,.197,-.264,.194,-.243,.187,-.217,.176,-.192,.16,-.161,.108,-.082,.109,-.077,.121,-.058,.125,-.057],[-.078,-.106,-.058,-.118,-.057,-.122,-.06,-.136,-.069,-.174,-.086,-.224,-.102,-.257,-.119,-.277,-.134,-.287,-.154,-.297,-.181,-.304,-.197,-.305,-.216,-.304,-.241,-.297,-.259,-.289,-.279,-.275,-.296,-.256,-.308,-.235,-.317,-.208,-.318,-.19,-.314,-.189,-.286,-.193,-.264,-.194,-.241,-.191,-.211,-.182,-.163,-.158,-.084,-.106],[.594,.036,.593,.097,.592,.117,.59,.119,.589,.118,.572,.096,.553,.057,.544,.019,.542,-.008,.546,-.042,.555,-.074,.571,-.106,.591,-.132,.593,-.109],[-.337,.091,-.321,.072,-.306,.059,-.268,.036,-.216,.016,-.133,-.007,-.123,-.051,-.157,-.077,-.201,-.104,-.228,-.117,-.253,-.126,-.272,-.128,-.294,-.126,-.319,-.118,-.337,-.108,-.356,-.093,-.372,-.073,-.383,-.051,-.39,-.028,-.392,0,-.389,.019,-.383,.04,-.372,.062,-.354,.083,-.343,.092],[-.596,-.036,-.595,-.098,-.594,-.12,-.593,-.122,-.591,-.121,-.569,-.093,-.552,-.06,-.543,-.028,-.539,.008,-.543,.044,-.553,.079,-.569,.11,-.591,.138,-.592,.139,-.594,.137,-.595,.115],[.286,.131,.303,.127,.33,.117,.349,.104,.365,.089,.379,.069,.388,.05,.394,.025,.395,.006,.391,-.022,.381,-.049,.365,-.072,.346,-.089,.34,-.089,.313,-.06,.284,-.04,.227,-.016,.183,-.002,.138,.009,.134,.014,.131,.033,.125,.053,.132,.061,.162,.081,.218,.114,.253,.128,.267,.131],[.018,.066,.039,.057,.05,.048,.058,.037,.064,.024,.068,.011,.067,-.014,.064,-.023,.054,-.039,.048,-.047,.034,-.057,.011,-.065,-.015,-.064,-.036,-.054,-.047,-.045,-.055,-.034,-.064,-.011,-.064,.014,-.055,.037,-.047,.048,-.034,.058,-.011,.067],[-.19,.322,-.189,.317,-.194,.286,-.194,.267,-.191,.244,-.184,.22,-.177,.202,-.157,.163,-.105,.083,-.117,.063,-.122,.06,-.174,.072,-.199,.08,-.23,.091,-.254,.103,-.267,.112,-.278,.123,-.291,.144,-.298,.159,-.304,.183,-.305,.206,-.301,.233,-.295,.249,-.283,.271,-.268,.289,-.254,.3,-.235,.311,-.208,.32],[.224,.305,.243,.3,.262,.291,.28,.279,.296,.262,.31,.24,.317,.222,.321,.206,.321,.193,.317,.192,.294,.196,.269,.197,.248,.195,.231,.19,.204,.181,.182,.17,.131,.14,.085,.108,.08,.109,.06,.123,.061,.134,.075,.185,.089,.227,.102,.255,.118,.275,.135,.289,.151,.298,.186,.307,.206,.308],[.005,.394,.03,.39,.057,.378,.08,.359,.091,.348,.093,.342,.06,.311,.038,.275,.016,.219,-.006,.138,-.011,.134,-.044,.126,-.051,.125,-.059,.134,-.094,.187,-.114,.223,-.123,.245,-.128,.265,-.128,.283,-.125,.299,-.117,.324,-.108,.34,-.096,.356,-.083,.368,-.063,.381,-.039,.39,-.018,.394],[.206,.594,.145,.593,.123,.591,.146,.572,.181,.555,.214,.545,.25,.542,.283,.546,.316,.555,.349,.571,.374,.591,.351,.593]],
[[-.203,-.596,-.14,-.595,-.119,-.594,-.117,-.593,-.118,-.591,-.144,-.57,-.178,-.552,-.211,-.543,-.247,-.539,-.283,-.543,-.316,-.552,-.349,-.569,-.377,-.591,-.378,-.593,-.375,-.594,-.354,-.595],[.029,.459,.003,.461,-.022,.459,-.066,.448,-.09,.436,-.115,.419,-.153,.38,-.181,.382,-.211,.381,-.245,.374,-.265,.366,-.285,.356,-.297,.349,-.318,.331,-.345,.3,-.358,.278,-.367,.255,-.374,.231,-.377,.211,-.375,.16,-.408,.131,-.433,.096,-.444,.074,-.451,.055,-.458,.011,-.454,-.033,-.444,-.068,-.429,-.097,-.416,-.115,-.377,-.153,-.379,-.208,-.372,-.243,-.357,-.278,-.347,-.296,-.328,-.318,-.309,-.336,-.295,-.346,-.272,-.359,-.252,-.367,-.211,-.376,-.157,-.375,-.128,-.408,-.098,-.43,-.063,-.447,-.025,-.456,0,-.458,.025,-.456,.069,-.445,.093,-.433,.118,-.416,.156,-.377,.211,-.379,.239,-.374,.279,-.358,.298,-.347,.318,-.331,.332,-.317,.347,-.298,.364,-.268,.378,-.224,.38,-.192,.378,-.157,.413,-.125,.437,-.091,.447,-.071,.453,-.052,.461,-.008,.458,.03,.448,.069,.431,.102,.419,.118,.38,.156,.382,.211,.376,.241,.36,.281,.349,.3,.332,.32,.314,.337,.298,.349,.277,.361,.255,.37,.214,.379,.16,.378,.13,.412,.101,.433,.066,.45],[.052,-.125,.089,-.184,.115,-.237,.12,-.256,.121,-.267,.121,-.289,.117,-.305,.109,-.324,.096,-.345,.082,-.361,.059,-.377,.036,-.387,.019,-.391,-.003,-.392,-.022,-.39,-.044,-.384,-.064,-.374,-.086,-.357,-.091,-.351,-.092,-.348,-.066,-.327,-.054,-.314,-.042,-.298,-.03,-.277,-.019,-.251,-.009,-.22,.011,-.135,.016,-.131,.047,-.124],[.132,-.053,.199,-.069,.248,-.086,.278,-.104,.299,-.133,.308,-.154,.314,-.179,.314,-.203,.311,-.221,.306,-.237,.292,-.262,.279,-.278,.261,-.293,.239,-.305,.218,-.311,.192,-.314,.188,-.314,.185,-.311,.188,-.283,.188,-.258,.184,-.239,.176,-.214,.163,-.183,.148,-.153,.105,-.085,.107,-.08,.123,-.054,.126,-.053],[-.081,-.103,-.054,-.12,-.053,-.127,-.066,-.186,-.081,-.234,-.092,-.257,-.107,-.278,-.126,-.292,-.142,-.301,-.162,-.308,-.183,-.312,-.205,-.311,-.225,-.307,-.249,-.297,-.264,-.288,-.284,-.269,-.301,-.244,-.311,-.216,-.314,-.191,-.312,-.184,-.308,-.182,-.286,-.185,-.258,-.185,-.224,-.177,-.192,-.165,-.159,-.148,-.087,-.103],[-.596,-.045,-.595,-.107,-.594,-.128,-.593,-.131,-.591,-.13,-.57,-.104,-.552,-.069,-.543,-.036,-.539,0,-.543,.036,-.552,.069,-.569,.102,-.591,.13,-.593,.131,-.594,.128,-.595,.107],[.593,.046,.592,.105,.59,.128,.572,.105,.555,.072,.546,.039,.542,.003,.546,-.033,.555,-.066,.572,-.099,.589,-.121,.59,-.122,.591,-.12,.593,-.1],[-.349,.093,-.327,.066,-.317,.056,-.298,.042,-.282,.033,-.255,.022,-.217,.009,-.133,-.012,-.124,-.042,-.125,-.048,-.148,-.064,-.195,-.092,-.245,-.115,-.261,-.118,-.286,-.118,-.307,-.114,-.328,-.105,-.345,-.094,-.363,-.076,-.378,-.054,-.387,-.033,-.392,-.009,-.392,.011,-.388,.036,-.378,.06,-.366,.079],[.298,.119,.32,.113,.341,.101,.357,.089,.369,.076,.381,.057,.39,.036,.395,.011,.395,-.01,.39,-.033,.381,-.057,.368,-.077,.353,-.091,.32,-.054,.301,-.039,.285,-.031,.258,-.019,.207,-.003,.137,.013,.134,.018,.127,.047,.128,.051,.132,.055,.171,.08,.23,.111,.264,.121],[.018,.066,.04,.056,.05,.048,.059,.035,.067,.014,.067,-.013,.057,-.036,.048,-.047,.037,-.055,.014,-.065,-.003,-.065,-.015,-.064,-.027,-.059,-.038,-.053,-.047,-.045,-.055,-.034,-.065,-.011,-.064,.016,-.055,.037,-.047,.048,-.036,.057,-.025,.063,-.011,.067],[-.184,.316,-.182,.311,-.185,.289,-.185,.264,-.178,.229,-.165,.195,-.147,.16,-.102,.086,-.12,.057,-.123,.055,-.156,.061,-.207,.075,-.253,.093,-.272,.105,-.283,.116,-.295,.134,-.306,.157,-.311,.182,-.311,.205,-.308,.226,-.298,.25,-.288,.267,-.272,.285,-.255,.298,-.228,.31,-.214,.314],[.21,.314,.226,.311,.252,.3,.269,.289,.286,.273,.299,.256,.31,.233,.314,.216,.316,.188,.311,.185,.286,.188,.261,.187,.229,.181,.189,.165,.134,.134,.088,.105,.085,.106,.056,.124,.055,.13,.068,.186,.086,.241,.095,.26,.106,.276,.134,.298,.167,.311,.184,.314],[.018,.394,.038,.39,.062,.38,.08,.368,.094,.353,.066,.33,.055,.319,.034,.286,.021,.258,.005,.208,-.011,.137,-.015,.134,-.042,.127,-.047,.127,-.05,.129,-.065,.153,-.092,.198,-.106,.226,-.118,.261,-.117,.296,-.111,.318,-.099,.34,-.085,.358,-.07,.371,-.055,.381,-.03,.39,-.008,.395],[.207,.593,.147,.592,.125,.59,.148,.572,.181,.555,.214,.546,.25,.542,.286,.546,.319,.555,.352,.572,.375,.59,.352,.593]],
[[-.204,-.597,-.141,-.596,-.12,-.595,-.117,-.593,-.118,-.592,-.146,-.57,-.181,-.552,-.214,-.543,-.25,-.54,-.286,-.543,-.318,-.553,-.351,-.57,-.379,-.592,-.38,-.593,-.377,-.595,-.356,-.596],[.038,.459,.014,.461,-.011,.459,-.049,.45,-.081,.436,-.108,.417,-.126,.4,-.149,.372,-.155,.371,-.176,.375,-.197,.376,-.215,.375,-.241,.37,-.276,.358,-.299,.345,-.317,.332,-.345,.302,-.366,.267,-.375,.245,-.381,.221,-.383,.192,-.383,.164,-.412,.135,-.431,.108,-.448,.072,-.457,.033,-.458,.011,-.456,-.011,-.451,-.038,-.445,-.057,-.429,-.089,-.416,-.106,-.396,-.128,-.37,-.148,-.369,-.155,-.372,-.176,-.373,-.197,-.372,-.216,-.368,-.241,-.355,-.276,-.344,-.296,-.329,-.317,-.301,-.344,-.283,-.356,-.263,-.367,-.243,-.375,-.216,-.381,-.16,-.383,-.135,-.409,-.107,-.43,-.071,-.447,-.035,-.456,-.011,-.458,.014,-.456,.052,-.448,.079,-.436,.109,-.416,.131,-.396,.151,-.37,.203,-.373,.222,-.372,.244,-.368,.281,-.354,.302,-.342,.321,-.328,.349,-.298,.371,-.261,.381,-.232,.384,-.216,.386,-.189,.386,-.162,.418,-.128,.436,-.102,.451,-.069,.459,-.028,.46,0,.458,.025,.453,.044,.442,.072,.43,.093,.416,.112,.399,.131,.372,.151,.376,.203,.37,.244,.359,.277,.347,.299,.332,.319,.302,.348,.269,.368,.245,.377,.221,.384,.162,.386,.14,.41,.11,.433,.074,.45],[.046,-.126,.08,-.18,.103,-.231,.113,-.267,.112,-.286,.109,-.302,.1,-.324,.09,-.341,.076,-.358,.056,-.374,.041,-.381,.02,-.388,-.006,-.392,-.025,-.391,-.044,-.387,-.066,-.378,-.086,-.365,-.091,-.358,-.053,-.326,-.031,-.298,-.019,-.272,-.003,-.226,.016,-.134,.02,-.13],[-.084,-.1,-.051,-.121,-.049,-.131,-.056,-.168,-.069,-.224,-.081,-.254,-.094,-.277,-.113,-.294,-.13,-.305,-.148,-.312,-.172,-.317,-.194,-.318,-.216,-.314,-.234,-.308,-.254,-.297,-.277,-.276,-.288,-.262,-.298,-.244,-.306,-.214,-.307,-.194,-.305,-.176,-.3,-.174,-.275,-.176,-.254,-.175,-.214,-.165,-.166,-.144,-.092,-.101],[.141,-.05,.214,-.066,.261,-.083,.275,-.091,.287,-.101,.297,-.113,.308,-.132,.317,-.156,.32,-.175,.32,-.197,.314,-.224,.307,-.241,.296,-.259,.28,-.276,.261,-.29,.238,-.301,.219,-.306,.192,-.307,.178,-.304,.178,-.256,.168,-.214,.148,-.168,.102,-.088,.103,-.085,.115,-.069,.124,-.051,.131,-.049],[-.597,-.054,-.596,-.117,-.595,-.138,-.594,-.141,-.592,-.14,-.569,-.11,-.552,-.077,-.543,-.044,-.54,-.008,-.543,.028,-.552,.06,-.57,.093,-.593,.122,-.596,.098],[.594,.055,.593,.115,.591,.138,.572,.113,.555,.08,.546,.047,.542,.011,.545,-.022,.555,-.057,.571,-.088,.59,-.113,.593,-.091],[-.357,.091,-.344,.072,-.325,.051,-.306,.037,-.285,.025,-.255,.013,-.219,.002,-.132,-.016,-.125,-.04,-.126,-.044,-.189,-.082,-.215,-.094,-.244,-.105,-.259,-.109,-.275,-.11,-.295,-.108,-.324,-.098,-.341,-.087,-.355,-.076,-.371,-.056,-.381,-.038,-.388,-.02,-.392,.008,-.39,.031,-.383,.057,-.377,.07,-.366,.087,-.362,.091],[.297,.111,.319,.104,.338,.095,.356,.08,.368,.067,.38,.049,.389,.027,.394,.008,.395,-.014,.391,-.039,.385,-.056,.375,-.076,.363,-.089,.359,-.087,.349,-.072,.329,-.05,.311,-.035,.291,-.024,.266,-.013,.233,-.002,.136,.018,.133,.021,.128,.044,.132,.05,.162,.068,.226,.1,.261,.112,.278,.113],[.018,.066,.039,.057,.048,.049,.058,.037,.064,.026,.067,.014,.067,-.013,.057,-.036,.048,-.047,.035,-.056,.024,-.062,.011,-.065,-.015,-.064,-.038,-.053,-.047,-.045,-.055,-.034,-.061,-.023,-.064,-.011,-.064,.016,-.055,.037,-.045,.05,-.034,.058,-.011,.067],[-.176,.308,-.174,.303,-.176,.278,-.175,.257,-.165,.217,-.145,.17,-.101,.095,-.1,.089,-.12,.055,-.125,.052,-.152,.055,-.219,.071,-.25,.082,-.27,.092,-.284,.104,-.295,.117,-.306,.135,-.315,.161,-.318,.189,-.315,.214,-.308,.237,-.297,.257,-.28,.276,-.265,.289,-.246,.3,-.222,.307,-.2,.31],[.205,.319,.227,.314,.25,.304,.27,.289,.287,.269,.3,.248,.307,.225,.31,.2,.308,.179,.303,.177,.281,.179,.259,.178,.225,.17,.176,.15,.133,.127,.091,.102,.088,.103,.052,.126,.052,.136,.058,.171,.069,.216,.077,.241,.094,.276,.108,.291,.122,.301,.14,.311,.159,.317,.181,.321],[.024,.394,.047,.39,.067,.382,.087,.369,.091,.365,.092,.362,.054,.331,.033,.302,.021,.28,.005,.233,-.015,.136,-.02,.133,-.041,.129,-.047,.132,-.061,.155,-.081,.192,-.097,.226,-.107,.253,-.11,.269,-.107,.3,-.1,.321,-.092,.337,-.077,.356,-.061,.371,-.044,.381,-.022,.39,.001,.395],[.209,.594,.148,.593,.126,.591,.156,.568,.19,.553,.217,.546,.253,.542,.286,.546,.313,.553,.352,.571,.377,.591,.354,.593]],
[[-.206,-.596,-.143,-.596,-.12,-.593,-.149,-.57,-.178,-.554,-.217,-.543,-.25,-.54,-.283,-.543,-.318,-.553,-.35,-.568,-.379,-.592,-.38,-.593,-.378,-.594,-.357,-.595],[.041,.459,.011,.46,-.011,.457,-.038,.451,-.062,.441,-.081,.43,-.106,.411,-.128,.387,-.145,.363,-.192,.369,-.233,.367,-.257,.361,-.285,.35,-.319,.329,-.347,.301,-.362,.28,-.373,.258,-.381,.238,-.388,.208,-.389,.168,-.423,.13,-.439,.102,-.451,.069,-.457,.039,-.457,.006,-.454,-.014,-.448,-.038,-.437,-.064,-.426,-.083,-.406,-.108,-.385,-.128,-.36,-.145,-.366,-.189,-.367,-.211,-.364,-.233,-.358,-.257,-.351,-.277,-.341,-.296,-.327,-.317,-.298,-.347,-.268,-.367,-.244,-.378,-.222,-.384,-.2,-.388,-.165,-.389,-.135,-.417,-.108,-.434,-.077,-.448,-.047,-.455,-.025,-.457,.003,-.456,.032,-.45,.059,-.441,.084,-.427,.109,-.408,.131,-.385,.148,-.36,.194,-.366,.235,-.364,.26,-.358,.288,-.347,.32,-.327,.35,-.298,.365,-.277,.376,-.255,.387,-.222,.391,-.2,.393,-.164,.419,-.135,.438,-.106,.453,-.069,.459,-.036,.46,-.011,.457,.014,.451,.041,.44,.066,.43,.084,.409,.111,.387,.13,.363,.148,.369,.194,.367,.235,.361,.26,.351,.286,.33,.32,.301,.35,.28,.365,.26,.375,.238,.384,.216,.389,.168,.392,.139,.418,.111,.437,.08,.451],[.043,-.128,.078,-.192,.098,-.24,.104,-.272,.1,-.301,.091,-.325,.08,-.343,.067,-.357,.05,-.371,.032,-.381,.014,-.387,-.008,-.391,-.031,-.391,-.05,-.387,-.066,-.382,-.084,-.372,-.089,-.367,-.049,-.335,-.032,-.316,-.02,-.296,-.008,-.266,.004,-.227,.014,-.174,.02,-.135,.025,-.129],[-.087,-.098,-.067,-.113,-.048,-.122,-.045,-.128,-.049,-.166,-.06,-.219,-.072,-.255,-.085,-.28,-.102,-.297,-.12,-.309,-.142,-.318,-.167,-.323,-.186,-.324,-.205,-.321,-.227,-.314,-.246,-.303,-.26,-.292,-.277,-.275,-.294,-.243,-.298,-.228,-.301,-.203,-.299,-.178,-.295,-.168,-.25,-.165,-.221,-.158,-.162,-.134,-.095,-.098],[.133,-.045,.188,-.052,.254,-.07,.283,-.085,.298,-.1,.309,-.115,.317,-.131,.325,-.158,.327,-.181,.324,-.205,.316,-.229,.303,-.251,.29,-.266,.27,-.282,.244,-.295,.214,-.301,.197,-.301,.178,-.298,.169,-.294,.17,-.272,.168,-.25,.157,-.211,.131,-.15,.099,-.091,.116,-.067,.125,-.048],[-.596,-.062,-.595,-.124,-.594,-.145,-.592,-.148,-.591,-.147,-.569,-.119,-.552,-.085,-.543,-.053,-.54,-.017,-.543,.017,-.552,.049,-.569,.083,-.592,.112,-.593,.113,-.595,.111,-.596,.089],[.593,.063,.592,.122,.591,.142,.59,.145,.589,.143,.572,.121,.555,.088,.545,.053,.543,.019,.546,-.014,.555,-.047,.572,-.08,.591,-.105,.593,-.082],[-.365,.088,-.35,.065,-.33,.044,-.306,.026,-.287,.017,-.257,.005,-.22,-.005,-.132,-.02,-.127,-.036,-.129,-.041,-.183,-.071,-.24,-.095,-.275,-.101,-.299,-.098,-.316,-.092,-.336,-.082,-.35,-.071,-.365,-.055,-.377,-.037,-.387,-.013,-.391,.008,-.391,.033,-.387,.055,-.377,.079,-.371,.089],[.291,.103,.313,.097,.328,.091,.345,.08,.359,.068,.369,.057,.381,.038,.39,.014,.394,-.008,.394,-.031,.39,-.05,.381,-.074,.372,-.087,.368,-.086,.351,-.061,.331,-.04,.319,-.03,.3,-.018,.27,-.006,.239,.004,.205,.011,.137,.022,.133,.025,.13,.039,.134,.045,.162,.062,.222,.09,.242,.098,.267,.103],[.018,.066,.04,.056,.048,.049,.058,.037,.064,.026,.067,.014,.067,-.013,.064,-.024,.057,-.036,.048,-.047,.039,-.054,.026,-.061,.014,-.065,-.003,-.065,-.015,-.064,-.027,-.059,-.038,-.053,-.047,-.045,-.055,-.034,-.065,-.011,-.064,.016,-.054,.039,-.047,.048,-.036,.057,-.023,.064,-.011,.067],[-.187,.303,-.173,.3,-.167,.296,-.166,.263,-.157,.222,-.139,.176,-.098,.098,-.097,.092,-.112,.071,-.122,.051,-.126,.048,-.166,.052,-.214,.062,-.249,.072,-.266,.08,-.28,.088,-.297,.105,-.309,.123,-.317,.142,-.323,.169,-.323,.194,-.317,.221,-.308,.242,-.293,.263,-.277,.278,-.258,.29,-.239,.298,-.211,.304],[.202,.325,.23,.317,.249,.306,.269,.29,.286,.268,.297,.244,.303,.218,.304,.197,.3,.174,.298,.17,.294,.169,.268,.17,.248,.167,.224,.161,.182,.145,.13,.119,.098,.101,.092,.1,.07,.115,.051,.125,.048,.129,.055,.188,.072,.252,.088,.283,.103,.298,.121,.311,.142,.32,.16,.325,.181,.327],[.027,.394,.05,.391,.069,.384,.087,.375,.09,.37,.062,.35,.042,.331,.022,.302,.009,.27,-.001,.239,-.011,.191,-.019,.137,-.023,.132,-.038,.13,-.044,.135,-.065,.175,-.092,.234,-.101,.27,-.101,.286,-.098,.3,-.094,.315,-.082,.339,-.067,.357,-.052,.37,-.035,.381,-.015,.389,.006,.393],[.21,.594,.151,.593,.128,.59,.153,.571,.193,.552,.222,.545,.253,.543,.286,.546,.319,.555,.351,.57,.377,.59,.355,.593]],
[[-.208,-.596,-.146,-.595,-.122,-.593,-.15,-.571,-.185,-.553,-.222,-.543,-.25,-.541,-.281,-.543,-.318,-.553,-.353,-.571,-.38,-.591,-.381,-.593,-.378,-.594,-.357,-.595],[.043,.459,.017,.459,-.016,.454,-.037,.447,-.069,.431,-.091,.415,-.11,.397,-.125,.379,-.139,.355,-.142,.352,-.184,.361,-.208,.362,-.234,.361,-.264,.354,-.284,.347,-.311,.332,-.33,.317,-.358,.287,-.378,.254,-.392,.212,-.395,.194,-.396,.17,-.423,.136,-.44,.108,-.451,.075,-.456,.039,-.456,.017,-.451,-.016,-.444,-.038,-.429,-.069,-.412,-.091,-.397,-.107,-.373,-.127,-.352,-.139,-.349,-.142,-.359,-.183,-.36,-.208,-.358,-.235,-.351,-.264,-.345,-.282,-.331,-.308,-.317,-.327,-.3,-.345,-.284,-.358,-.251,-.378,-.21,-.392,-.167,-.396,-.128,-.427,-.101,-.441,-.072,-.451,-.036,-.456,-.014,-.456,.019,-.451,.046,-.442,.072,-.429,.093,-.414,.11,-.397,.126,-.378,.142,-.352,.145,-.35,.187,-.359,.211,-.36,.237,-.358,.269,-.351,.289,-.343,.314,-.329,.331,-.316,.361,-.284,.381,-.252,.393,-.214,.398,-.191,.399,-.167,.425,-.135,.442,-.105,.454,-.072,.459,-.036,.459,-.014,.454,.019,.447,.04,.431,.072,.416,.093,.399,.111,.379,.128,.354,.142,.352,.145,.361,.186,.363,.214,.361,.237,.357,.255,.347,.285,.336,.307,.318,.331,.289,.36,.254,.381,.212,.394,.17,.399,.138,.425,.106,.443,.077,.453],[.038,-.128,.065,-.18,.087,-.236,.095,-.27,.094,-.284,.091,-.303,.085,-.317,.076,-.335,.063,-.351,.046,-.367,.029,-.377,.009,-.386,-.011,-.39,-.031,-.391,-.066,-.384,-.082,-.378,-.084,-.373,-.061,-.357,-.039,-.338,-.021,-.316,-.012,-.3,-.002,-.277,.008,-.241,.017,-.192,.024,-.134,.028,-.129],[-.09,-.095,-.065,-.114,-.043,-.125,-.04,-.131,-.046,-.186,-.053,-.221,-.063,-.257,-.074,-.28,-.085,-.294,-.107,-.311,-.129,-.322,-.149,-.328,-.169,-.329,-.194,-.328,-.209,-.324,-.234,-.313,-.248,-.303,-.265,-.286,-.278,-.268,-.287,-.247,-.292,-.23,-.295,-.203,-.291,-.18,-.286,-.163,-.281,-.159,-.242,-.154,-.199,-.142,-.163,-.127,-.098,-.095],[.151,-.042,.222,-.052,.25,-.06,.274,-.069,.288,-.078,.299,-.088,.311,-.102,.321,-.12,.328,-.14,.332,-.164,.331,-.191,.325,-.214,.314,-.237,.298,-.257,.278,-.274,.26,-.284,.236,-.292,.206,-.295,.174,-.289,.164,-.285,.162,-.281,.159,-.25,.148,-.206,.128,-.159,.096,-.094,.116,-.067,.129,-.041,.133,-.04],[-.596,-.071,-.595,-.132,-.594,-.153,-.592,-.156,-.591,-.155,-.569,-.127,-.553,-.093,-.543,-.055,-.541,-.025,-.543,.003,-.553,.04,-.57,.074,-.593,.103,-.595,.079],[.593,.072,.593,.131,.59,.153,.572,.129,.555,.096,.546,.058,.543,.028,.546,0,.555,-.036,.571,-.069,.59,-.094,.593,-.072],[-.373,.085,-.355,.058,-.333,.035,-.316,.021,-.29,.008,-.238,-.008,-.205,-.015,-.131,-.024,-.128,-.033,-.131,-.037,-.178,-.062,-.234,-.084,-.272,-.092,-.289,-.091,-.313,-.084,-.327,-.078,-.345,-.066,-.359,-.052,-.372,-.035,-.381,-.019,-.388,.003,-.391,.028,-.388,.053,-.382,.075,-.377,.085],[.29,.094,.308,.09,.33,.08,.359,.058,.381,.027,.39,.003,.393,-.014,.393,-.033,.391,-.053,.384,-.074,.378,-.083,.358,-.055,.343,-.039,.321,-.02,.305,-.011,.277,.001,.238,.011,.189,.02,.136,.026,.133,.029,.131,.035,.134,.04,.148,.048,.218,.08,.261,.093],[.018,.066,.04,.056,.05,.048,.058,.037,.064,.026,.067,.014,.067,-.013,.063,-.025,.053,-.041,.035,-.056,.024,-.062,.011,-.065,-.015,-.064,-.027,-.059,-.038,-.053,-.047,-.045,-.055,-.034,-.061,-.023,-.064,-.011,-.064,.016,-.061,.026,-.054,.039,-.045,.05,-.033,.059,-.011,.067,.003,.068],[-.199,.297,-.169,.291,-.162,.288,-.159,.284,-.155,.247,-.145,.209,-.126,.162,-.094,.097,-.114,.068,-.125,.045,-.128,.043,-.161,.046,-.211,.054,-.236,.059,-.271,.072,-.285,.08,-.296,.091,-.311,.11,-.322,.132,-.328,.156,-.329,.183,-.325,.207,-.317,.229,-.305,.248,-.288,.267,-.268,.281,-.247,.29,-.228,.295],[.199,.33,.227,.321,.247,.309,.266,.292,.281,.271,.291,.248,.297,.217,.296,.197,.291,.172,.287,.164,.283,.162,.249,.158,.218,.15,.168,.131,.125,.11,.101,.098,.095,.097,.073,.113,.047,.126,.043,.131,.046,.161,.052,.205,.066,.26,.076,.281,.087,.295,.103,.309,.117,.318,.134,.325,.153,.331,.172,.332],[.051,.391,.077,.384,.086,.378,.044,.346,.028,.328,.016,.31,.002,.277,-.008,.24,-.018,.189,-.023,.136,-.026,.133,-.033,.13,-.037,.134,-.042,.142,-.067,.193,-.087,.247,-.092,.28,-.09,.297,-.084,.316,-.073,.338,-.061,.354,-.046,.367,-.028,.379,-.008,.388,.014,.393,.031,.394],[.212,.594,.153,.593,.131,.59,.154,.572,.188,.556,.225,.546,.25,.544,.283,.546,.321,.556,.352,.571,.377,.589,.378,.59,.376,.591,.356,.592]],
[[-.199,-.597,-.112,-.596,-.123,-.594,-.154,-.57,-.182,-.556,-.214,-.546,-.247,-.542,-.272,-.543,-.292,-.546,-.324,-.555,-.355,-.572,-.382,-.594,-.358,-.596],[.063,.456,.014,.457,-.016,.45,-.047,.437,-.063,.428,-.087,.411,-.107,.389,-.13,.356,-.134,.354,-.169,.351,-.197,.355,-.225,.355,-.255,.351,-.277,.345,-.294,.337,-.327,.317,-.357,.289,-.381,.252,-.395,.216,-.402,.17,-.426,.139,-.438,.117,-.448,.091,-.455,.058,-.455,.019,-.45,-.005,-.444,-.026,-.429,-.058,-.416,-.076,-.398,-.097,-.379,-.113,-.352,-.131,-.349,-.167,-.352,-.2,-.35,-.244,-.345,-.269,-.338,-.286,-.328,-.307,-.313,-.329,-.285,-.358,-.255,-.378,-.215,-.394,-.167,-.402,-.138,-.425,-.116,-.437,-.088,-.448,-.061,-.454,-.019,-.455,.003,-.451,.027,-.445,.052,-.434,.079,-.416,.1,-.398,.116,-.379,.132,-.353,.136,-.351,.172,-.349,.2,-.352,.231,-.352,.258,-.348,.297,-.334,.331,-.313,.36,-.286,.381,-.255,.398,-.213,.405,-.167,.43,-.135,.44,-.116,.451,-.088,.457,-.058,.457,-.017,.454,.005,.448,.027,.437,.052,.419,.079,.401,.1,.381,.116,.355,.134,.352,.167,.355,.211,.353,.247,.344,.282,.331,.31,.317,.33,.3,.349,.286,.362,.252,.384,.216,.398,.17,.405,.142,.427,.119,.44,.091,.451],[.035,-.131,.064,-.193,.081,-.242,.086,-.278,.081,-.305,.064,-.338,.056,-.349,.038,-.365,.018,-.378,.002,-.384,-.014,-.388,-.033,-.39,-.058,-.388,-.08,-.38,-.052,-.361,-.034,-.345,-.018,-.328,-.003,-.302,.014,-.249,.024,-.192,.029,-.134,.031,-.13],[-.093,-.092,-.074,-.108,-.039,-.126,-.036,-.131,-.039,-.179,-.046,-.225,-.053,-.254,-.064,-.281,-.075,-.296,-.089,-.309,-.115,-.325,-.134,-.331,-.156,-.335,-.18,-.334,-.205,-.329,-.219,-.323,-.241,-.309,-.257,-.294,-.271,-.273,-.281,-.252,-.286,-.227,-.287,-.206,-.283,-.182,-.274,-.158,-.268,-.15,-.237,-.145,-.2,-.134,-.151,-.115,-.102,-.091],[.147,-.036,.211,-.043,.244,-.05,.271,-.058,.286,-.065,.3,-.076,.313,-.091,.325,-.11,.334,-.134,.338,-.156,.337,-.18,.331,-.207,.317,-.233,.307,-.247,.289,-.263,.27,-.275,.242,-.285,.208,-.287,.176,-.281,.161,-.274,.153,-.268,.147,-.237,.131,-.184,.093,-.097,.116,-.067,.13,-.037],[-.597,-.088,-.596,-.175,-.594,-.166,-.569,-.133,-.553,-.101,-.546,-.075,-.542,-.042,-.543,-.014,-.552,.027,-.569,.063,-.592,.093,-.594,.094,-.595,.091,-.596,.069],[.594,.08,.593,.139,.592,.159,.59,.161,.589,.16,.572,.135,.555,.102,.546,.061,.545,.036,.546,.017,.549,-.003,.556,-.026,.572,-.06,.591,-.085,.593,-.063],[-.38,.079,-.363,.055,-.347,.035,-.326,.017,-.301,.003,-.27,-.008,-.244,-.015,-.206,-.021,-.131,-.029,-.131,-.032,-.134,-.034,-.172,-.052,-.23,-.075,-.269,-.083,-.289,-.082,-.305,-.078,-.335,-.064,-.355,-.048,-.364,-.037,-.377,-.017,-.384,.001,-.388,.019,-.389,.044,-.385,.07],[.299,.083,.317,.077,.336,.068,.349,.058,.364,.043,.375,.027,.384,.008,.39,-.011,.392,-.031,.39,-.058,.387,-.072,.383,-.077,.365,-.05,.348,-.031,.325,-.012,.304,-0,.273,.011,.247,.017,.196,.025,.138,.031,.133,.033,.137,.037,.182,.058,.235,.078,.267,.085,.283,.085],[.017,.067,.039,.057,.049,.048,.058,.037,.064,.026,.067,.014,.067,-.013,.057,-.036,.048,-.047,.037,-.055,.014,-.065,-.013,-.064,-.036,-.054,-.045,-.047,-.055,-.034,-.061,-.023,-.065,-.011,-.064,.016,-.061,.026,-.054,.039,-.045,.05,-.034,.058,-.023,.064,-.011,.067],[-.196,.289,-.167,.281,-.15,.271,-.145,.24,-.129,.187,-.091,.1,-.112,.071,-.126,.041,-.129,.039,-.177,.042,-.22,.048,-.241,.052,-.272,.063,-.29,.073,-.305,.088,-.317,.104,-.328,.126,-.334,.153,-.334,.181,-.328,.208,-.318,.23,-.305,.248,-.285,.267,-.266,.278,-.241,.287,-.219,.29],[.189,.336,.212,.33,.237,.316,.257,.3,.269,.284,.28,.265,.287,.242,.29,.217,.287,.187,.28,.166,.271,.153,.24,.147,.203,.137,.153,.118,.127,.105,.104,.094,.098,.094,.073,.113,.041,.129,.039,.131,.044,.199,.055,.255,.063,.277,.072,.291,.088,.308,.104,.32,.12,.328,.139,.335,.161,.338],[.052,.392,.072,.388,.08,.383,.055,.366,.035,.35,.017,.329,.005,.308,-.008,.273,-.018,.23,-.028,.136,-.032,.134,-.039,.146,-.061,.196,-.078,.245,-.083,.278,-.081,.294,-.078,.31,-.067,.332,-.056,.349,-.039,.365,-.026,.374,-.007,.384,.014,.39],[.214,.593,.156,.593,.134,.59,.163,.57,.193,.556,.233,.546,.256,.545,.278,.546,.319,.555,.352,.571,.378,.59,.356,.592]],
[[-.192,-.597,-.1,-.596,-.128,-.591,-.159,-.569,-.194,-.553,-.22,-.547,-.242,-.544,-.258,-.543,-.283,-.546,-.315,-.553,-.349,-.569,-.381,-.592,-.382,-.594,-.38,-.595,-.356,-.596],[.063,.456,.042,.457,.011,.453,-.013,.447,-.04,.436,-.064,.421,-.078,.41,-.097,.39,-.12,.358,-.15,.357,-.192,.348,-.236,.348,-.257,.345,-.299,.331,-.328,.313,-.358,.287,-.372,.268,-.384,.249,-.398,.216,-.406,.174,-.428,.143,-.438,.123,-.446,.103,-.452,.078,-.454,.047,-.451,.014,-.444,-.013,-.435,-.036,-.424,-.056,-.407,-.078,-.387,-.097,-.355,-.12,-.354,-.15,-.345,-.192,-.345,-.239,-.342,-.257,-.329,-.297,-.31,-.328,-.295,-.347,-.281,-.36,-.261,-.376,-.239,-.388,-.205,-.4,-.171,-.406,-.14,-.428,-.104,-.444,-.08,-.451,-.06,-.453,-.036,-.454,.003,-.448,.025,-.441,.05,-.429,.074,-.412,.089,-.399,.1,-.387,.123,-.355,.153,-.354,.194,-.345,.242,-.345,.26,-.342,.3,-.329,.334,-.308,.362,-.283,.387,-.247,.401,-.213,.409,-.171,.436,-.13,.447,-.104,.454,-.078,.457,-.044,.454,-.011,.447,.015,.437,.039,.426,.058,.406,.085,.39,.1,.358,.123,.357,.153,.348,.194,.348,.236,.345,.26,.332,.3,.313,.331,.287,.361,.249,.387,.216,.401,.174,.409,.143,.431,.107,.447,.083,.453],[.035,-.142,.057,-.194,.07,-.234,.077,-.272,.074,-.297,.067,-.316,.058,-.332,.048,-.347,.035,-.359,.007,-.377,-.012,-.384,-.031,-.388,-.058,-.388,-.068,-.386,-.07,-.384,-.041,-.363,-.021,-.344,-.002,-.319,.008,-.299,.017,-.272,.024,-.236],[-.099,-.087,-.072,-.11,-.058,-.118,-.034,-.127,-.032,-.131,-.032,-.167,-.036,-.208,-.043,-.247,-.053,-.279,-.063,-.294,-.082,-.314,-.102,-.327,-.12,-.334,-.136,-.338,-.158,-.341,-.183,-.338,-.205,-.331,-.225,-.321,-.245,-.304,-.261,-.284,-.271,-.264,-.278,-.243,-.28,-.219,-.278,-.195,-.272,-.174,-.261,-.152,-.249,-.139,-.206,-.128,-.165,-.114],[.185,-.034,.23,-.039,.25,-.043,.274,-.05,.287,-.056,.308,-.072,.319,-.085,.331,-.104,.34,-.131,.343,-.158,.341,-.181,.336,-.199,.324,-.223,.307,-.245,.287,-.261,.267,-.271,.246,-.278,.219,-.28,.196,-.278,.165,-.267,.144,-.252,.14,-.244,.131,-.206,.12,-.173,.09,-.103,.092,-.096,.116,-.067,.132,-.033,.142,-.031],[-.597,-.108,-.596,-.2,-.591,-.172,-.569,-.14,-.553,-.104,-.547,-.08,-.544,-.058,-.543,-.042,-.546,-.014,-.553,.015,-.569,.052,-.592,.082,-.593,.083,-.594,.08,-.596,.057],[.594,.091,.594,.149,.592,.17,.572,.143,.556,.107,.549,.08,.546,.047,.549,.014,.555,-.013,.572,-.049,.591,-.074,.593,-.052],[-.382,.068,-.366,.044,-.346,.022,-.324,.005,-.298,-.008,-.266,-.018,-.229,-.025,-.148,-.033,-.148,-.035,-.151,-.037,-.178,-.048,-.234,-.067,-.272,-.074,-.297,-.071,-.327,-.059,-.345,-.046,-.356,-.035,-.366,-.023,-.377,-.004,-.384,.015,-.388,.036,-.387,.064,-.386,.068],[.296,.075,.326,.064,.349,.048,.36,.037,.374,.017,.387,-.012,.39,-.031,.391,-.044,.39,-.061,.386,-.066,.369,-.041,.35,-.021,.329,-.003,.314,.005,.284,.016,.255,.024,.208,.031,.156,.034,.15,.036,.179,.05,.237,.07,.272,.077],[.018,.066,.039,.057,.05,.048,.058,.037,.067,.014,.067,-.013,.057,-.036,.048,-.047,.037,-.055,.026,-.061,.014,-.065,-.003,-.065,-.015,-.064,-.036,-.054,-.047,-.045,-.055,-.034,-.065,-.011,-.064,.016,-.054,.039,-.045,.05,-.033,.059,-.011,.067,.003,.068],[-.192,.28,-.161,.269,-.147,.26,-.139,.252,-.128,.209,-.117,.176,-.087,.103,-.112,.071,-.129,.035,-.136,.034,-.169,.035,-.229,.042,-.261,.049,-.283,.058,-.297,.068,-.315,.086,-.328,.107,-.337,.131,-.34,.153,-.339,.177,-.333,.201,-.323,.224,-.307,.245,-.288,.261,-.266,.273,-.241,.281,-.217,.283],[.18,.342,.202,.336,.226,.324,.246,.309,.264,.287,.274,.267,.281,.244,.283,.219,.281,.196,.269,.165,.259,.148,.252,.142,.207,.13,.168,.117,.125,.099,.103,.089,.073,.113,.036,.132,.034,.139,.036,.178,.039,.211,.046,.25,.053,.276,.062,.292,.074,.308,.089,.32,.107,.331,.133,.34,.158,.343],[.069,.388,.069,.385,.045,.37,.024,.35,.001,.32,-.014,.285,-.021,.253,-.028,.205,-.033,.151,-.034,.151,-.036,.154,-.046,.175,-.065,.228,-.073,.269,-.073,.291,-.062,.324,-.048,.346,-.037,.358,-.023,.369,-.004,.38,.015,.387,.033,.39,.053,.391],[.215,.594,.156,.594,.135,.592,.164,.571,.197,.556,.222,.549,.258,.546,.294,.549,.324,.558,.354,.572,.38,.591,.357,.593]],
[[-.193,-.597,-.103,-.595,-.138,-.586,-.163,-.57,-.193,-.556,-.214,-.549,-.242,-.546,-.281,-.546,-.316,-.555,-.351,-.57,-.381,-.592,-.382,-.593,-.38,-.595,-.357,-.596],[.082,.453,.053,.455,.028,.453,.001,.447,-.028,.435,-.044,.426,-.067,.41,-.088,.389,-.105,.365,-.109,.362,-.146,.361,-.178,.354,-.209,.341,-.236,.341,-.264,.337,-.293,.328,-.328,.31,-.345,.297,-.362,.28,-.378,.26,-.39,.241,-.401,.214,-.411,.176,-.428,.149,-.44,.124,-.445,.11,-.451,.083,-.452,.058,-.45,.028,-.444,.001,-.434,-.025,-.424,-.044,-.406,-.068,-.388,-.086,-.362,-.105,-.36,-.109,-.358,-.146,-.351,-.178,-.339,-.207,-.338,-.236,-.334,-.264,-.324,-.295,-.307,-.328,-.294,-.345,-.277,-.362,-.259,-.377,-.238,-.39,-.211,-.401,-.173,-.411,-.146,-.428,-.117,-.441,-.096,-.447,-.078,-.451,-.047,-.452,-.026,-.45,.002,-.444,.027,-.434,.047,-.424,.069,-.407,.089,-.388,.108,-.362,.111,-.359,.149,-.358,.182,-.35,.209,-.339,.242,-.338,.269,-.334,.296,-.325,.329,-.308,.348,-.294,.365,-.277,.381,-.257,.392,-.238,.404,-.211,.413,-.173,.431,-.146,.443,-.119,.453,-.082,.455,-.061,.454,-.033,.451,-.011,.444,.01,.43,.04,.411,.068,.39,.089,.365,.108,.362,.111,.361,.149,.353,.182,.342,.21,.342,.239,.337,.266,.327,.298,.31,.331,.298,.347,.28,.365,.246,.389,.216,.403,.176,.413,.149,.431,.12,.444],[.04,-.168,.05,-.195,.064,-.245,.068,-.278,.064,-.301,.049,-.331,.029,-.355,.016,-.365,-.001,-.375,-.033,-.385,-.052,-.387,-.055,-.384,-.03,-.366,-.006,-.34,.01,-.317,.02,-.294,.031,-.247,.037,-.172],[-.101,-.084,-.085,-.1,-.069,-.112,-.05,-.121,-.03,-.128,-.027,-.131,-.027,-.169,-.03,-.214,-.036,-.255,-.042,-.276,-.05,-.293,-.064,-.31,-.081,-.324,-.102,-.335,-.13,-.344,-.147,-.346,-.169,-.345,-.192,-.338,-.215,-.327,-.232,-.314,-.248,-.297,-.261,-.276,-.27,-.249,-.273,-.228,-.272,-.206,-.267,-.185,-.26,-.169,-.25,-.152,-.237,-.139,-.216,-.124],[.186,-.028,.217,-.029,.258,-.036,.275,-.04,.294,-.049,.309,-.061,.325,-.079,.336,-.096,.345,-.121,.348,-.142,.347,-.168,.34,-.194,.33,-.215,.313,-.237,.291,-.254,.271,-.264,.245,-.271,.215,-.272,.19,-.267,.165,-.256,.146,-.241,.125,-.212,.11,-.166,.086,-.104,.088,-.1,.103,-.085,.114,-.069,.132,-.028,.139,-.027],[-.597,-.117,-.595,-.208,-.587,-.173,-.569,-.146,-.557,-.119,-.549,-.094,-.546,-.069,-.546,-.028,-.553,.002,-.568,.039,-.592,.071,-.593,.072,-.594,.069,-.595,.046],[.594,.109,.593,.191,.589,.176,.572,.149,.559,.12,.552,.097,.548,.064,.549,.031,.556,.001,.571,-.036,.591,-.063,.593,-.04],[-.382,.052,-.358,.022,-.337,.003,-.318,-.009,-.297,-.018,-.258,-.028,-.208,-.034,-.171,-.036,-.175,-.04,-.193,-.047,-.243,-.061,-.269,-.065,-.288,-.064,-.319,-.054,-.347,-.034,-.358,-.023,-.37,-.005,-.378,.01,-.384,.031,-.386,.05,-.385,.053],[.018,.066,.03,.062,.04,.056,.048,.049,.058,.037,.064,.026,.067,.014,.067,-.013,.057,-.036,.048,-.047,.035,-.056,.024,-.062,.011,-.065,-.015,-.064,-.036,-.054,-.045,-.047,-.055,-.034,-.061,-.023,-.065,-.011,-.064,.016,-.054,.039,-.045,.049,-.034,.058,-.023,.064,-.011,.067,.003,.068],[.293,.066,.316,.059,.339,.046,.358,.029,.374,.006,.381,-.009,.387,-.028,.389,-.047,.387,-.05,.36,-.019,.341,-.002,.326,.008,.3,.021,.263,.031,.214,.037,.173,.039,.179,.044,.198,.051,.245,.064,.272,.068],[-.211,.275,-.187,.27,-.164,.26,-.149,.25,-.131,.229,-.121,.211,-.105,.163,-.083,.106,-.112,.072,-.121,.053,-.128,.035,-.131,.03,-.161,.03,-.214,.032,-.239,.035,-.27,.043,-.291,.052,-.307,.064,-.324,.083,-.334,.103,-.344,.135,-.345,.156,-.342,.183,-.334,.205,-.322,.226,-.305,.245,-.284,.26,-.26,.27,-.237,.275],[.172,.347,.197,.34,.218,.33,.238,.314,.252,.298,.265,.277,.273,.25,.276,.228,.273,.203,.268,.183,.258,.163,.248,.15,.23,.135,.213,.124,.171,.111,.123,.093,.104,.087,.075,.112,.055,.123,.033,.131,.03,.134,.03,.167,.032,.214,.039,.258,.045,.279,.053,.296,.07,.315,.085,.327,.101,.336,.123,.345,.144,.348],[.054,.388,.017,.356,.003,.34,-.011,.318,-.021,.289,-.028,.261,-.034,.211,-.036,.173,-.039,.176,-.046,.192,-.061,.244,-.065,.269,-.064,.291,-.054,.322,-.036,.348,-.012,.369,.018,.383,.033,.388],[.206,.594,.123,.593,.14,.589,.167,.572,.196,.559,.22,.552,.25,.548,.286,.549,.315,.556,.352,.572,.379,.591,.356,.593]],
[[-.197,-.597,-.108,-.595,-.146,-.583,-.17,-.569,-.201,-.556,-.226,-.549,-.246,-.547,-.264,-.547,-.289,-.549,-.315,-.556,-.349,-.57,-.38,-.591,-.381,-.593,-.378,-.594,-.356,-.595],[.077,.453,.053,.453,.02,.448,-.024,.431,-.043,.419,-.062,.405,-.077,.389,-.094,.367,-.097,.365,-.139,.365,-.164,.36,-.191,.35,-.22,.334,-.261,.331,-.289,.324,-.311,.315,-.337,.3,-.366,.273,-.379,.258,-.394,.235,-.406,.208,-.414,.177,-.429,.153,-.438,.131,-.448,.094,-.45,.053,-.445,.02,-.44,.003,-.428,-.024,-.412,-.049,-.391,-.073,-.363,-.095,-.362,-.139,-.358,-.162,-.347,-.193,-.332,-.22,-.329,-.261,-.322,-.287,-.311,-.313,-.297,-.337,-.279,-.358,-.262,-.374,-.226,-.397,-.198,-.408,-.174,-.414,-.15,-.429,-.12,-.441,-.092,-.448,-.069,-.45,-.051,-.45,-.015,-.445,.027,-.428,.051,-.413,.069,-.398,.098,-.363,.142,-.362,.165,-.358,.194,-.348,.222,-.332,.264,-.329,.292,-.321,.315,-.311,.34,-.297,.369,-.271,.382,-.255,.397,-.232,.411,-.199,.417,-.174,.439,-.134,.447,-.11,.451,-.092,.453,-.053,.451,-.031,.444,-.002,.431,.027,.415,.052,.399,.07,.366,.098,.365,.142,.361,.165,.35,.194,.334,.222,.331,.264,.325,.29,.314,.315,.3,.34,.272,.371,.257,.383,.229,.4,.201,.411,.177,.417,.152,.432,.125,.443,.097,.451],[.045,-.201,.054,-.234,.058,-.27,.057,-.289,.051,-.311,.036,-.335,.019,-.354,-.002,-.369,-.029,-.38,-.032,-.381,-.033,-.379,-.008,-.357,.009,-.335,.024,-.308,.031,-.288,.037,-.261,.042,-.203],[-.103,-.081,-.086,-.099,-.069,-.112,-.05,-.121,-.025,-.13,-.023,-.133,-.022,-.21,-.026,-.247,-.032,-.275,-.041,-.294,-.052,-.31,-.071,-.327,-.093,-.339,-.115,-.347,-.139,-.35,-.167,-.348,-.18,-.345,-.203,-.335,-.227,-.317,-.244,-.298,-.251,-.286,-.261,-.262,-.265,-.242,-.265,-.217,-.261,-.196,-.255,-.18,-.246,-.162,-.222,-.138,-.202,-.125,-.157,-.1,-.11,-.081],[.218,-.022,.253,-.026,.28,-.033,.295,-.039,.311,-.051,.33,-.071,.342,-.092,.351,-.117,.353,-.142,.351,-.167,.346,-.186,.335,-.208,.319,-.229,.297,-.246,.271,-.259,.244,-.265,.217,-.265,.198,-.261,.173,-.251,.161,-.243,.145,-.226,.123,-.195,.106,-.165,.083,-.106,.103,-.085,.114,-.069,.134,-.024,.161,-.022],[-.596,-.123,-.594,-.212,-.583,-.174,-.568,-.15,-.556,-.12,-.549,-.092,-.547,-.074,-.549,-.033,-.556,-.004,-.569,.027,-.591,.06,-.593,.061,-.594,.058,-.595,.036],[.018,.066,.04,.056,.05,.048,.058,.037,.064,.026,.067,.014,.067,-.013,.064,-.023,.057,-.036,.048,-.047,.037,-.055,.014,-.065,-.003,-.065,-.015,-.064,-.036,-.054,-.047,-.045,-.055,-.034,-.065,-.011,-.064,.016,-.054,.039,-.045,.049,-.034,.058,-.023,.064,-.011,.067,.003,.068],[-.374,.027,-.351,.003,-.321,-.017,-.296,-.028,-.272,-.034,-.209,-.041,-.209,-.045,-.222,-.048,-.253,-.054,-.28,-.056,-.294,-.054,-.316,-.045,-.337,-.033,-.355,-.015,-.374,.014,-.378,.025,-.377,.028],[.594,.12,.593,.203,.586,.177,.569,.149,.558,.121,.552,.097,.55,.075,.55,.053,.556,.015,.572,-.024,.589,-.051,.59,-.052,.592,-.05,.593,-.029],[.286,.058,.317,.049,.347,.029,.369,.003,.38,-.019,.381,-.025,.377,-.024,.358,-.004,.343,.008,.324,.02,.299,.031,.272,.037,.211,.045,.214,.048,.253,.057],[-.207,.266,-.185,.261,-.165,.25,-.153,.241,-.141,.227,-.12,.198,-.102,.166,-.08,.109,-.101,.086,-.112,.071,-.122,.051,-.13,.028,-.133,.025,-.189,.024,-.222,.026,-.264,.032,-.285,.038,-.302,.049,-.316,.061,-.332,.081,-.343,.105,-.348,.122,-.35,.152,-.347,.174,-.338,.2,-.326,.219,-.306,.24,-.286,.254,-.26,.264,-.236,.268],[.157,.353,.185,.347,.208,.337,.23,.32,.242,.307,.254,.288,.264,.263,.268,.242,.267,.214,.263,.196,.252,.171,.247,.163,.23,.146,.203,.126,.168,.106,.12,.086,.107,.083,.09,.1,.075,.112,.055,.123,.026,.134,.024,.181,.028,.244,.033,.271,.039,.29,.053,.31,.067,.324,.084,.336,.109,.348,.137,.353],[.03,.38,.001,.351,-.018,.322,-.028,.299,-.034,.275,-.041,.212,-.042,.211,-.045,.212,-.047,.221,-.054,.256,-.056,.275,-.054,.294,-.045,.319,-.033,.34,-.012,.361,.014,.377,.023,.381],[.207,.594,.125,.592,.148,.586,.173,.571,.202,.559,.228,.552,.25,.55,.269,.549,.292,.552,.318,.558,.351,.572,.378,.59,.355,.593]],
[[-.202,-.596,-.116,-.594,-.154,-.581,-.176,-.569,-.197,-.56,-.223,-.552,-.245,-.55,-.272,-.549,-.297,-.553,-.316,-.558,-.346,-.57,-.379,-.592,-.38,-.593,-.378,-.594,-.356,-.595],[.091,.45,.058,.451,.035,.447,.011,.44,-.013,.43,-.043,.411,-.06,.395,-.084,.369,-.128,.369,-.158,.364,-.193,.35,-.226,.327,-.257,.325,-.289,.318,-.309,.31,-.334,.297,-.368,.269,-.394,.235,-.408,.207,-.418,.175,-.434,.144,-.445,.111,-.448,.083,-.448,.064,-.445,.037,-.439,.015,-.428,-.013,-.412,-.038,-.395,-.058,-.366,-.084,-.367,-.121,-.361,-.158,-.346,-.195,-.325,-.226,-.322,-.257,-.318,-.28,-.308,-.307,-.295,-.333,-.279,-.355,-.266,-.368,-.247,-.384,-.228,-.396,-.204,-.408,-.174,-.417,-.135,-.437,-.11,-.444,-.095,-.447,-.058,-.448,-.033,-.445,-.008,-.438,.013,-.429,.043,-.411,.061,-.395,.087,-.366,.131,-.366,.161,-.361,.196,-.347,.229,-.325,.259,-.322,.292,-.315,.31,-.308,.334,-.296,.356,-.28,.371,-.267,.386,-.248,.398,-.23,.411,-.204,.42,-.174,.437,-.141,.448,-.108,.451,-.081,.451,-.061,.448,-.034,.441,-.01,.431,.015,.41,.047,.397,.062,.369,.087,.369,.132,.364,.16,.351,.194,.327,.229,.324,.267,.318,.292,.31,.312,.296,.339,.269,.371,.249,.387,.229,.4,.201,.413,.179,.419,.158,.431,.136,.44,.11,.448],[-.104,-.081,-.085,-.1,-.065,-.114,-.044,-.123,-.019,-.132,-.016,-.158,-.015,-.203,-.017,-.235,-.021,-.269,-.026,-.286,-.039,-.307,-.053,-.323,-.074,-.338,-.093,-.347,-.119,-.354,-.144,-.355,-.164,-.352,-.186,-.344,-.206,-.333,-.224,-.317,-.239,-.298,-.251,-.274,-.256,-.253,-.258,-.231,-.255,-.208,-.244,-.176,-.236,-.165,-.223,-.151,-.199,-.132,-.176,-.117,-.151,-.103],[.048,-.254,.049,-.281,.044,-.304,.029,-.331,.018,-.345,.011,-.35,.031,-.316,.039,-.291],[.241,-.017,.277,-.022,.295,-.029,.312,-.04,.329,-.056,.345,-.081,.353,-.103,.358,-.128,.357,-.153,.351,-.177,.34,-.199,.32,-.224,.301,-.239,.275,-.251,.247,-.257,.225,-.258,.201,-.253,.185,-.247,.171,-.239,.147,-.215,.128,-.188,.109,-.156,.083,-.106,.103,-.085,.117,-.065,.125,-.046,.134,-.019,.175,-.016],[-.596,-.128,-.594,-.215,-.581,-.176,-.569,-.155,-.559,-.131,-.552,-.108,-.549,-.083,-.549,-.056,-.556,-.019,-.569,.015,-.591,.049,-.593,.05,-.594,.047,-.595,.026],[.018,.066,.04,.056,.049,.048,.059,.035,.067,.014,.067,-.013,.057,-.036,.048,-.047,.035,-.056,.014,-.065,-.003,-.065,-.015,-.064,-.038,-.053,-.047,-.045,-.055,-.034,-.061,-.023,-.065,-.011,-.064,.016,-.054,.039,-.044,.051,-.033,.059,-.011,.067,.006,.068],[-.339,-.017,-.307,-.034,-.27,-.043,-.267,-.045,-.267,-.046,-.286,-.046,-.304,-.041,-.329,-.028,-.341,-.018],[.594,.126,.592,.206,.583,.179,.572,.158,.561,.13,.555,.11,.552,.083,.552,.064,.555,.039,.561,.015,.572,-.013,.591,-.041,.593,-.019],[-.209,.258,-.177,.247,-.165,.239,-.151,.226,-.134,.204,-.115,.175,-.081,.108,-.1,.087,-.114,.068,-.122,.051,-.132,.022,-.169,.018,-.225,.019,-.258,.022,-.284,.028,-.304,.039,-.32,.053,-.333,.068,-.347,.096,-.354,.122,-.355,.147,-.349,.178,-.339,.199,-.325,.218,-.307,.236,-.282,.25,-.259,.258,-.233,.261],[.298,.047,.33,.032,.344,.019,.324,.031,.297,.04,.268,.047,.27,.049,.278,.049],[.161,.356,.182,.35,.206,.338,.22,.327,.238,.306,.248,.291,.257,.264,.261,.239,.259,.214,.254,.195,.245,.176,.224,.152,.186,.124,.113,.085,.108,.084,.106,.085,.089,.101,.066,.118,.045,.127,.022,.134,.019,.164,.018,.2,.022,.261,.027,.283,.034,.298,.05,.32,.068,.336,.094,.349,.117,.356,.136,.358],[-.016,.344,-.034,.31,-.043,.272,-.045,.271,-.045,.292,-.041,.308,-.029,.33],[.211,.594,.13,.592,.157,.583,.178,.572,.2,.563,.226,.555,.253,.552,.278,.552,.315,.559,.349,.572,.377,.591,.355,.593]],
[[-.208,-.597,-.124,-.595,-.2,-.562,-.225,-.555,-.253,-.552,-.285,-.553,-.317,-.56,-.345,-.571,-.379,-.592,-.38,-.593,-.378,-.595,-.357,-.596],[.104,.448,.059,.448,.017,.437,-.008,.426,-.031,.411,-.047,.398,-.07,.372,-.117,.373,-.152,.367,-.171,.361,-.193,.35,-.209,.338,-.231,.319,-.261,.317,-.29,.311,-.318,.3,-.336,.29,-.366,.268,-.383,.249,-.396,.231,-.408,.209,-.419,.179,-.43,.157,-.442,.121,-.445,.1,-.445,.061,-.437,.025,-.428,.001,-.411,-.027,-.395,-.047,-.369,-.07,-.37,-.119,-.364,-.154,-.347,-.193,-.337,-.208,-.316,-.231,-.315,-.261,-.311,-.28,-.302,-.309,-.288,-.336,-.263,-.368,-.243,-.386,-.227,-.397,-.205,-.409,-.176,-.419,-.144,-.434,-.102,-.445,-.056,-.445,-.014,-.434,.011,-.423,.034,-.408,.049,-.395,.073,-.369,.119,-.371,.155,-.365,.173,-.358,.196,-.347,.214,-.334,.234,-.316,.264,-.315,.282,-.311,.301,-.306,.33,-.293,.352,-.279,.369,-.265,.386,-.246,.398,-.23,.411,-.207,.422,-.176,.431,-.158,.444,-.118,.448,-.097,.448,-.058,.437,-.014,.425,.013,.413,.031,.398,.05,.372,.073,.373,.119,.367,.155,.361,.173,.35,.196,.336,.215,.319,.234,.317,.264,.311,.293,.301,.319,.292,.337,.28,.354,.265,.372,.246,.389,.229,.4,.208,.412,.179,.422,.147,.437],[-.098,-.087,-.088,-.097,-.065,-.114,-.04,-.125,-.018,-.13,-.014,-.134,-.009,-.203,-.009,-.244,-.013,-.274,-.019,-.293,-.034,-.315,-.05,-.332,-.07,-.345,-.092,-.354,-.112,-.359,-.142,-.359,-.159,-.355,-.184,-.346,-.202,-.334,-.221,-.317,-.231,-.302,-.242,-.282,-.248,-.261,-.25,-.236,-.248,-.212,-.242,-.193,-.233,-.176,-.209,-.15,-.186,-.132,-.143,-.105,-.107,-.086],[.264,-.011,.288,-.016,.31,-.028,.334,-.05,.347,-.068,.357,-.092,.361,-.112,.362,-.142,.358,-.161,.348,-.186,.335,-.205,.313,-.226,.294,-.237,.266,-.248,.244,-.25,.217,-.248,.194,-.241,.171,-.228,.142,-.195,.106,-.14,.089,-.107,.088,-.101,.109,-.077,.117,-.065,.127,-.042,.133,-.018,.137,-.014,.2,-.009,.233,-.009],[-.596,-.132,-.594,-.215,-.563,-.144,-.555,-.116,-.552,-.089,-.552,-.056,-.559,-.025,-.569,.002,-.592,.037,-.593,.039,-.594,.036,-.595,.016],[.017,.067,.039,.057,.05,.048,.058,.037,.067,.014,.067,-.013,.057,-.036,.048,-.047,.037,-.055,.014,-.065,-.013,-.064,-.036,-.054,-.047,-.045,-.055,-.034,-.065,-.011,-.064,.016,-.054,.039,-.045,.05,-.034,.058,-.023,.064,-.011,.067],[.594,.13,.591,.207,.562,.136,.556,.107,.554,.089,.555,.059,.562,.028,.572,.001,.59,-.028,.591,-.03,.592,-.027,.593,-.008],[-.233,.253,-.212,.25,-.193,.245,-.176,.236,-.161,.224,-.141,.2,-.12,.17,-.091,.121,-.085,.106,-.086,.102,-.106,.08,-.117,.063,-.133,.018,-.175,.013,-.211,.011,-.247,.012,-.272,.016,-.291,.021,-.305,.029,-.322,.043,-.34,.064,-.351,.086,-.358,.115,-.358,.146,-.354,.166,-.344,.19,-.327,.214,-.307,.231,-.284,.244,-.261,.251],[.149,.361,.169,.356,.192,.346,.213,.331,.231,.31,.243,.289,.251,.263,.253,.241,.251,.219,.247,.202,.239,.184,.232,.173,.219,.16,.198,.142,.172,.124,.114,.09,.103,.088,.089,.102,.068,.117,.045,.127,.023,.133,.018,.136,.012,.189,.013,.256,.016,.277,.023,.298,.036,.318,.055,.336,.075,.349,.097,.357,.117,.362],[.216,.594,.138,.592,.211,.562,.24,.556,.258,.554,.288,.555,.319,.562,.346,.572,.377,.591,.355,.593]],
[[-.216,-.596,-.137,-.594,-.157,-.583,-.206,-.563,-.233,-.557,-.258,-.555,-.286,-.555,-.322,-.563,-.351,-.576,-.379,-.594,-.357,-.596],[.11,.445,.067,.445,.025,.434,.002,.424,-.02,.41,-.037,.397,-.06,.373,-.103,.377,-.126,.375,-.149,.37,-.171,.361,-.194,.348,-.214,.332,-.233,.312,-.266,.309,-.291,.304,-.31,.298,-.335,.286,-.368,.261,-.396,.23,-.413,.2,-.428,.163,-.438,.133,-.442,.108,-.442,.075,-.434,.034,-.427,.013,-.409,-.018,-.395,-.035,-.37,-.06,-.375,-.103,-.372,-.129,-.364,-.157,-.357,-.175,-.344,-.196,-.328,-.215,-.31,-.233,-.306,-.269,-.301,-.291,-.294,-.312,-.281,-.338,-.266,-.359,-.25,-.377,-.236,-.39,-.214,-.404,-.152,-.431,-.131,-.438,-.105,-.442,-.067,-.442,-.042,-.437,-.021,-.431,0,-.421,.024,-.406,.041,-.392,.063,-.37,.108,-.374,.129,-.372,.152,-.367,.174,-.358,.197,-.345,.218,-.328,.236,-.309,.269,-.306,.294,-.301,.315,-.294,.337,-.283,.353,-.273,.374,-.256,.4,-.226,.415,-.199,.431,-.161,.441,-.131,.445,-.105,.445,-.072,.437,-.031,.43,-.011,.409,.024,.39,.047,.373,.063,.378,.106,.375,.129,.37,.15,.363,.17,.348,.197,.331,.218,.312,.236,.309,.269,.304,.294,.298,.313,.286,.337,.275,.354,.26,.373,.227,.401,.208,.412,.163,.431,.136,.44],[-.096,-.09,-.077,-.106,-.06,-.117,-.038,-.126,-.014,-.131,-.01,-.134,-.006,-.163,-.002,-.211,-.002,-.256,-.005,-.277,-.01,-.294,-.022,-.315,-.041,-.335,-.059,-.347,-.083,-.358,-.1,-.362,-.122,-.364,-.15,-.36,-.174,-.351,-.193,-.339,-.208,-.326,-.225,-.304,-.234,-.285,-.241,-.258,-.242,-.233,-.239,-.215,-.227,-.183,-.206,-.159,-.184,-.14,-.154,-.119,-.104,-.089],[.271,-.003,.295,-.009,.315,-.02,.335,-.038,.35,-.059,.361,-.083,.365,-.1,.366,-.125,.365,-.141,.361,-.157,.351,-.18,.337,-.199,.318,-.217,.294,-.231,.267,-.24,.244,-.242,.222,-.24,.195,-.232,.184,-.226,.171,-.216,.144,-.185,.105,-.127,.092,-.104,.091,-.098,.109,-.077,.12,-.058,.13,-.032,.134,-.014,.137,-.01,.197,-.002,.244,-.001],[-.597,-.136,-.596,-.194,-.594,-.215,-.584,-.195,-.563,-.144,-.557,-.119,-.554,-.094,-.555,-.067,-.563,-.031,-.575,-.001,-.593,.027,-.596,.005],[.017,.067,.039,.057,.049,.048,.058,.037,.067,.014,.067,-.011,.064,-.023,.057,-.036,.048,-.047,.037,-.055,.014,-.065,-.013,-.064,-.036,-.054,-.047,-.045,-.054,-.036,-.061,-.023,-.065,-.011,-.065,.014,-.055,.037,-.047,.048,-.036,.057,-.023,.064,-.011,.067],[.594,.135,.592,.209,.566,.147,.559,.119,.557,.094,.558,.07,.566,.034,.573,.013,.591,-.018,.594,.002],[-.226,.244,-.206,.24,-.184,.231,-.162,.212,-.141,.188,-.121,.159,-.088,.103,-.089,.099,-.107,.078,-.117,.063,-.128,.035,-.131,.016,-.134,.013,-.19,.005,-.225,.004,-.261,.005,-.282,.009,-.296,.014,-.317,.026,-.334,.043,-.348,.064,-.361,.096,-.363,.119,-.361,.147,-.355,.167,-.343,.191,-.325,.212,-.304,.228,-.283,.238,-.255,.245],[.149,.364,.171,.356,.191,.345,.211,.329,.225,.31,.236,.29,.242,.269,.245,.247,.243,.225,.24,.209,.231,.187,.212,.165,.189,.145,.159,.123,.109,.093,.101,.091,.08,.109,.062,.119,.039,.129,.016,.134,.013,.137,.005,.197,.005,.269,.011,.293,.022,.313,.037,.331,.055,.346,.077,.357,.098,.364,.122,.366],[.222,.594,.149,.591,.209,.566,.236,.56,.261,.557,.29,.558,.322,.565,.348,.575,.374,.591,.354,.593]],
[[-.223,-.597,-.169,-.596,-.149,-.594,-.17,-.582,-.209,-.566,-.236,-.56,-.264,-.557,-.294,-.559,-.324,-.566,-.355,-.58,-.377,-.594,-.357,-.596],[.11,.442,.072,.441,.032,.431,-.007,.411,-.021,.4,-.048,.375,-.075,.379,-.1,.38,-.125,.377,-.15,.37,-.169,.362,-.195,.346,-.212,.33,-.235,.303,-.269,.301,-.289,.298,-.313,.29,-.335,.28,-.366,.259,-.378,.248,-.397,.226,-.417,.191,-.434,.144,-.438,.125,-.44,.092,-.436,.062,-.429,.034,-.417,.009,-.406,-.01,-.393,-.025,-.373,-.046,-.372,-.052,-.377,-.078,-.377,-.103,-.374,-.125,-.368,-.147,-.36,-.167,-.344,-.193,-.326,-.214,-.3,-.235,-.298,-.269,-.295,-.291,-.278,-.335,-.264,-.356,-.247,-.376,-.225,-.396,-.206,-.408,-.152,-.431,-.125,-.438,-.105,-.44,-.067,-.438,-.039,-.431,-.021,-.425,.011,-.407,.051,-.372,.078,-.376,.106,-.377,.128,-.374,.152,-.368,.175,-.357,.199,-.342,.218,-.325,.238,-.3,.272,-.298,.293,-.295,.337,-.277,.369,-.256,.398,-.225,.417,-.194,.431,-.163,.437,-.141,.441,-.12,.443,-.089,.441,-.067,.431,-.031,.42,-.006,.41,.011,.397,.027,.376,.049,.38,.103,.377,.128,.37,.152,.363,.17,.347,.196,.33,.215,.303,.238,.301,.272,.298,.291,.29,.316,.28,.337,.266,.359,.251,.377,.229,.397,.209,.411,.157,.433,.128,.44],[-.093,-.092,-.075,-.107,-.058,-.118,-.038,-.126,-.011,-.131,-.005,-.134,.001,-.167,.006,-.228,.007,-.25,.004,-.278,-.002,-.299,-.013,-.316,-.023,-.329,-.044,-.347,-.065,-.358,-.086,-.365,-.111,-.368,-.133,-.366,-.157,-.359,-.177,-.348,-.195,-.335,-.211,-.318,-.222,-.298,-.228,-.283,-.234,-.255,-.234,-.234,-.226,-.2,-.216,-.183,-.206,-.171,-.184,-.15,-.146,-.122,-.102,-.093],[.268,.005,.294,.001,.309,-.006,.33,-.021,.348,-.042,.359,-.062,.367,-.086,.37,-.114,.367,-.141,.358,-.165,.346,-.186,.325,-.207,.305,-.22,.286,-.228,.256,-.234,.222,-.232,.203,-.226,.182,-.214,.155,-.186,.117,-.135,.095,-.101,.094,-.095,.11,-.075,.12,-.058,.13,-.032,.134,-.011,.137,-.005,.2,.004,.242,.007],[-.596,-.138,-.594,-.213,-.584,-.196,-.569,-.161,-.559,-.125,-.557,-.097,-.559,-.069,-.568,-.031,-.58,-.006,-.594,.015,-.596,-.005],[.018,.066,.04,.056,.05,.048,.058,.037,.067,.014,.067,-.013,.064,-.023,.057,-.036,.048,-.047,.037,-.055,.014,-.065,-.003,-.065,-.015,-.064,-.038,-.053,-.047,-.045,-.055,-.034,-.065,-.011,-.064,.016,-.061,.026,-.053,.04,-.045,.049,-.033,.059,-.011,.067],[.594,.138,.591,.207,.573,.167,.566,.146,.562,.125,.56,.1,.562,.072,.569,.042,.578,.018,.591,-.005,.593,.014],[-.231,.236,-.217,.234,-.197,.227,-.183,.219,-.171,.208,-.15,.187,-.131,.162,-.1,.116,-.091,.1,-.118,.061,-.128,.035,-.132,.011,-.134,.008,-.169,.002,-.228,-.004,-.256,-.004,-.283,-0,-.301,.006,-.326,.023,-.344,.043,-.356,.063,-.365,.089,-.367,.114,-.365,.141,-.356,.166,-.344,.187,-.327,.206,-.309,.219,-.285,.231,-.255,.237],[.128,.369,.152,.364,.171,.356,.19,.344,.21,.325,.22,.31,.231,.288,.236,.26,.237,.239,.234,.22,.228,.201,.219,.186,.208,.173,.187,.153,.164,.135,.103,.095,.096,.095,.077,.111,.053,.124,.033,.131,.011,.135,.008,.137,-.001,.194,-.004,.236,-.003,.261,-.001,.283,.005,.302,.017,.321,.034,.34,.053,.353,.076,.364,.106,.37],[.229,.594,.16,.591,.212,.569,.239,.563,.267,.56,.294,.562,.316,.566,.341,.574,.371,.591,.353,.593]],
[[-.232,-.596,-.181,-.596,-.162,-.593,-.181,-.582,-.209,-.569,-.236,-.563,-.269,-.56,-.3,-.563,-.327,-.569,-.352,-.58,-.374,-.593,-.356,-.595],[.121,.439,.075,.437,.042,.429,.005,.41,-.036,.377,-.061,.381,-.094,.383,-.129,.378,-.163,.364,-.187,.349,-.199,.339,-.216,.32,-.234,.296,-.278,.293,-.311,.284,-.343,.27,-.368,.253,-.392,.229,-.407,.209,-.422,.181,-.431,.155,-.435,.139,-.437,.108,-.434,.073,-.428,.048,-.414,.016,-.397,-.01,-.374,-.036,-.378,-.059,-.381,-.086,-.379,-.114,-.373,-.136,-.364,-.159,-.345,-.188,-.318,-.216,-.293,-.234,-.292,-.263,-.288,-.289,-.279,-.319,-.272,-.334,-.26,-.354,-.247,-.371,-.227,-.392,-.206,-.407,-.188,-.417,-.163,-.428,-.136,-.434,-.117,-.436,-.072,-.434,-.048,-.429,-.032,-.423,.004,-.403,.039,-.374,.064,-.379,.097,-.381,.132,-.375,.166,-.362,.19,-.347,.205,-.334,.219,-.318,.237,-.293,.278,-.29,.305,-.284,.331,-.274,.361,-.257,.385,-.236,.406,-.213,.42,-.188,.431,-.161,.439,-.121,.439,-.089,.437,-.07,.431,-.045,.416,-.013,.399,.014,.377,.037,.383,.083,.382,.114,.376,.138,.364,.166,.354,.183,.336,.205,.32,.219,.296,.237,.293,.278,.284,.314,.27,.346,.251,.372,.226,.397,.196,.417,.163,.431],[-.09,-.095,-.074,-.108,-.056,-.119,-.03,-.128,-.006,-.132,-.001,-.135,.007,-.172,.014,-.222,.014,-.272,.009,-.296,-.002,-.316,-.018,-.336,-.032,-.347,-.051,-.359,-.075,-.368,-.1,-.371,-.123,-.369,-.144,-.364,-.159,-.358,-.183,-.342,-.198,-.327,-.211,-.307,-.221,-.283,-.225,-.264,-.225,-.236,-.222,-.216,-.216,-.2,-.196,-.173,-.177,-.155,-.148,-.131,-.097,-.096],[.279,.014,.299,.009,.324,-.005,.344,-.024,.361,-.049,.37,-.073,.373,-.094,.373,-.117,.367,-.144,.357,-.166,.343,-.186,.319,-.206,.297,-.217,.271,-.225,.244,-.226,.219,-.222,.199,-.214,.172,-.193,.147,-.165,.106,-.109,.097,-.092,.113,-.07,.124,-.05,.131,-.03,.134,-.006,.138,-0,.206,.012,.247,.015],[-.596,-.141,-.596,-.192,-.593,-.21,-.58,-.188,-.569,-.161,-.563,-.136,-.561,-.103,-.563,-.072,-.569,-.045,-.581,-.018,-.593,.002,-.595,-.016],[.018,.066,.039,.057,.05,.048,.058,.037,.067,.014,.067,-.013,.057,-.036,.048,-.047,.035,-.056,.014,-.065,-.003,-.065,-.015,-.064,-.036,-.054,-.047,-.045,-.055,-.034,-.065,-.011,-.064,.016,-.054,.039,-.045,.049,-.034,.058,-.011,.067,.006,.068],[-.231,.228,-.214,.224,-.198,.217,-.17,.196,-.131,.151,-.094,.097,-.112,.071,-.121,.053,-.128,.033,-.132,.008,-.134,.004,-.175,-.005,-.236,-.012,-.269,-.012,-.29,-.008,-.313,.003,-.33,.016,-.347,.034,-.361,.058,-.367,.078,-.371,.111,-.367,.138,-.359,.16,-.346,.181,-.329,.199,-.305,.215,-.283,.224,-.258,.229],[.594,.141,.594,.189,.592,.207,.583,.191,.571,.163,.565,.139,.563,.106,.565,.075,.572,.048,.583,.023,.592,.007,.594,.024],[.125,.372,.147,.367,.162,.361,.181,.349,.201,.33,.215,.308,.224,.286,.228,.267,.228,.237,.224,.219,.217,.201,.209,.187,.19,.167,.151,.134,.107,.103,.097,.097,.089,.101,.068,.117,.053,.124,.033,.131,.008,.135,.003,.138,-.005,.18,-.011,.228,-.011,.277,-.006,.299,.005,.319,.017,.334,.034,.35,.054,.362,.078,.37,.1,.374],[.237,.594,.19,.593,.173,.591,.195,.579,.223,.569,.242,.565,.275,.563,.303,.566,.327,.572,.355,.583,.371,.592,.353,.594]],
[[-.245,-.596,-.19,-.596,-.17,-.594,-.193,-.581,-.22,-.569,-.256,-.56,-.283,-.557,-.314,-.559,-.344,-.566,-.377,-.58,-.397,-.593,-.377,-.595],[.11,.442,.072,.441,.032,.431,-.007,.411,-.042,.382,-.064,.385,-.097,.385,-.133,.377,-.161,.365,-.182,.35,-.205,.328,-.224,.303,-.269,.301,-.288,.298,-.313,.29,-.335,.28,-.366,.259,-.378,.248,-.397,.226,-.417,.191,-.428,.165,-.434,.144,-.438,.125,-.44,.097,-.438,.072,-.435,.056,-.428,.032,-.416,.007,-.4,-.018,-.38,-.04,-.382,-.094,-.377,-.123,-.367,-.151,-.35,-.179,-.326,-.205,-.3,-.224,-.299,-.269,-.295,-.289,-.288,-.311,-.278,-.335,-.262,-.358,-.247,-.376,-.213,-.404,-.194,-.414,-.161,-.429,-.139,-.435,-.106,-.44,-.067,-.438,-.029,-.428,.009,-.408,.045,-.38,.067,-.382,.1,-.382,.136,-.374,.165,-.361,.188,-.345,.209,-.324,.226,-.3,.272,-.298,.291,-.295,.316,-.287,.337,-.277,.369,-.256,.383,-.243,.4,-.223,.417,-.194,.431,-.163,.437,-.141,.443,-.097,.441,-.069,.437,-.05,.431,-.029,.417,-.001,.401,.022,.383,.043,.385,.094,.38,.126,.368,.158,.353,.182,.33,.206,.303,.226,.301,.272,.298,.291,.291,.314,.28,.337,.266,.359,.25,.379,.229,.397,.209,.411,.161,.432,.133,.44],[-.088,-.098,-.067,-.113,-.048,-.122,-.03,-.128,-0,-.132,.003,-.134,.018,-.2,.023,-.267,.02,-.289,.014,-.307,-0,-.329,-.018,-.347,-.04,-.361,-.064,-.37,-.086,-.374,-.108,-.374,-.136,-.368,-.157,-.358,-.176,-.344,-.192,-.327,-.204,-.308,-.212,-.291,-.217,-.266,-.218,-.242,-.214,-.223,-.208,-.205,-.198,-.189,-.184,-.173,-.137,-.131,-.096,-.1],[-.596,-.138,-.594,-.213,-.583,-.194,-.569,-.161,-.559,-.125,-.557,-.097,-.559,-.067,-.568,-.031,-.581,-.004,-.594,.015,-.596,-.005],[.28,.022,.304,.016,.33,.001,.35,-.018,.36,-.033,.37,-.056,.377,-.086,.376,-.111,.37,-.136,.361,-.157,.346,-.178,.328,-.193,.304,-.208,.283,-.215,.256,-.218,.226,-.214,.205,-.207,.183,-.191,.156,-.165,.123,-.123,.101,-.094,.1,-.089,.115,-.067,.125,-.048,.131,-.028,.135,-0,.137,.003,.181,.014,.222,.021,.256,.023],[.018,.066,.039,.057,.05,.048,.058,.037,.067,.014,.067,-.013,.057,-.036,.048,-.047,.035,-.056,.014,-.065,-.003,-.065,-.015,-.064,-.026,-.06,-.038,-.053,-.047,-.045,-.055,-.034,-.065,-.011,-.064,.016,-.06,.028,-.054,.039,-.045,.049,-.034,.058,-.024,.064,-.011,.067,.006,.068],[-.235,.219,-.214,.215,-.203,.21,-.173,.187,-.131,.14,-.103,.104,-.097,.092,-.113,.07,-.123,.047,-.128,.033,-.132,.003,-.134,-.001,-.195,-.014,-.238,-.019,-.264,-.021,-.289,-.018,-.307,-.011,-.33,.004,-.348,.023,-.364,.049,-.372,.074,-.374,.1,-.371,.125,-.364,.148,-.348,.174,-.333,.19,-.314,.204,-.289,.215,-.261,.221],[.594,.138,.591,.207,.575,.173,.566,.146,.562,.125,.56,.1,.562,.072,.569,.042,.576,.022,.591,-.005,.593,.014],[.121,.375,.14,.37,.159,.361,.179,.347,.196,.328,.21,.306,.217,.285,.22,.264,.22,.242,.217,.226,.21,.206,.2,.191,.18,.168,.148,.14,.097,.101,.092,.1,.084,.105,.066,.118,.043,.128,.03,.131,.003,.135,-0,.137,-.011,.182,-.017,.22,-.02,.256,-.02,.277,-.016,.298,-.005,.32,.014,.343,.033,.358,.053,.368,.074,.375,.097,.377],[.251,.594,.182,.591,.221,.573,.242,.566,.264,.562,.289,.56,.319,.562,.349,.569,.37,.578,.393,.591,.375,.593]],
[[-.258,-.596,-.2,-.596,-.179,-.594,-.199,-.583,-.248,-.563,-.275,-.557,-.303,-.555,-.327,-.555,-.363,-.563,-.394,-.577,-.421,-.594,-.399,-.596],[.11,.445,.07,.445,.045,.44,.023,.434,-.012,.416,-.048,.388,-.094,.387,-.122,.381,-.149,.37,-.182,.347,-.215,.31,-.244,.311,-.278,.307,-.31,.298,-.335,.286,-.367,.263,-.383,.246,-.397,.229,-.414,.198,-.428,.163,-.438,.133,-.442,.108,-.442,.075,-.439,.049,-.434,.031,-.416,-.007,-.408,-.02,-.386,-.046,-.384,-.094,-.378,-.124,-.367,-.149,-.347,-.179,-.329,-.197,-.307,-.215,-.308,-.244,-.305,-.275,-.295,-.31,-.283,-.335,-.268,-.358,-.256,-.371,-.238,-.387,-.222,-.399,-.205,-.409,-.16,-.428,-.133,-.437,-.105,-.442,-.067,-.442,-.042,-.437,-.021,-.431,.011,-.415,.05,-.385,.097,-.384,.124,-.378,.152,-.367,.183,-.346,.2,-.329,.217,-.307,.253,-.308,.281,-.304,.313,-.295,.337,-.283,.371,-.259,.398,-.227,.416,-.195,.432,-.158,.441,-.131,.445,-.105,.445,-.075,.443,-.056,.437,-.031,.43,-.013,.42,.008,.388,.05,.387,.097,.381,.124,.37,.152,.348,.183,.332,.2,.31,.217,.311,.249,.307,.281,.298,.313,.286,.337,.27,.361,.259,.374,.227,.401,.208,.412,.163,.431,.136,.44],[-.084,-.1,-.065,-.114,-.044,-.123,-.028,-.129,.003,-.132,.008,-.135,.017,-.167,.028,-.218,.031,-.244,.031,-.278,.028,-.296,.019,-.315,.005,-.335,-.01,-.35,-.028,-.362,-.05,-.371,-.069,-.376,-.094,-.377,-.114,-.374,-.137,-.367,-.157,-.356,-.178,-.337,-.194,-.315,-.203,-.294,-.208,-.273,-.209,-.25,-.207,-.231,-.202,-.214,-.186,-.188,-.166,-.166,-.136,-.138,-.093,-.103],[-.597,-.136,-.596,-.194,-.594,-.215,-.584,-.195,-.563,-.144,-.557,-.119,-.555,-.094,-.555,-.067,-.563,-.031,-.575,-.001,-.593,.027,-.596,.005],[.291,.03,.318,.019,.337,.005,.353,-.01,.368,-.034,.377,-.061,.38,-.083,.378,-.11,.37,-.135,.359,-.155,.34,-.178,.318,-.194,.294,-.204,.272,-.209,.24,-.208,.216,-.202,.202,-.194,.179,-.176,.156,-.153,.123,-.115,.103,-.088,.103,-.085,.12,-.06,.126,-.044,.131,-.028,.135,.005,.137,.008,.145,.011,.219,.027,.25,.031],[.018,.066,.04,.056,.05,.048,.058,.037,.064,.026,.067,.014,.067,-.013,.064,-.023,.057,-.036,.048,-.047,.037,-.055,.014,-.065,-.003,-.065,-.015,-.064,-.027,-.059,-.038,-.053,-.047,-.045,-.055,-.034,-.065,-.011,-.064,.016,-.054,.039,-.045,.05,-.034,.058,-.023,.064,-.011,.067],[-.236,.211,-.22,.207,-.206,.201,-.177,.18,-.136,.137,-.104,.097,-.1,.089,-.114,.068,-.123,.047,-.129,.03,-.132,-.002,-.135,-.005,-.195,-.021,-.24,-.028,-.267,-.029,-.287,-.028,-.313,-.017,-.335,-.003,-.35,.013,-.365,.037,-.375,.066,-.377,.092,-.374,.117,-.367,.14,-.351,.166,-.336,.182,-.313,.198,-.287,.208,-.267,.212],[.594,.135,.592,.209,.566,.147,.559,.119,.557,.094,.558,.07,.566,.034,.577,.006,.591,-.018,.594,.002],[.116,.378,.138,.37,.156,.361,.176,.344,.19,.328,.2,.31,.209,.288,.212,.269,.211,.242,.207,.222,.198,.203,.18,.18,.163,.163,.131,.134,.092,.104,.088,.103,.077,.111,.061,.12,.039,.129,.018,.133,0,.135,-.005,.138,-.015,.172,-.026,.231,-.029,.258,-.028,.288,-.022,.307,-.01,.328,.004,.345,.024,.361,.042,.37,.065,.378,.089,.38],[.264,.594,.19,.591,.253,.565,.278,.56,.303,.557,.33,.558,.366,.566,.39,.575,.416,.591,.396,.593]],
[[-.271,-.597,-.188,-.594,-.261,-.562,-.287,-.555,-.317,-.552,-.347,-.552,-.38,-.56,-.406,-.57,-.426,-.581,-.443,-.594,-.42,-.596],[.105,.448,.059,.448,.028,.441,.003,.431,-.016,.421,-.033,.409,-.054,.392,-.097,.387,-.129,.378,-.15,.368,-.168,.355,-.185,.339,-.204,.317,-.236,.318,-.263,.317,-.292,.31,-.329,.295,-.35,.282,-.366,.268,-.378,.255,-.394,.234,-.411,.202,-.419,.179,-.433,.149,-.441,.125,-.445,.105,-.446,.081,-.445,.056,-.437,.025,-.428,.001,-.417,-.018,-.389,-.054,-.384,-.1,-.378,-.121,-.367,-.146,-.345,-.177,-.314,-.204,-.315,-.247,-.312,-.277,-.302,-.308,-.289,-.334,-.278,-.351,-.263,-.368,-.246,-.383,-.227,-.397,-.205,-.409,-.176,-.419,-.144,-.434,-.102,-.445,-.056,-.445,-.023,-.437,-0,-.429,.019,-.418,.057,-.389,.1,-.385,.13,-.376,.152,-.365,.17,-.352,.188,-.336,.207,-.314,.244,-.315,.28,-.312,.311,-.302,.337,-.289,.354,-.278,.37,-.263,.398,-.23,.414,-.199,.422,-.176,.437,-.144,.444,-.12,.448,-.097,.448,-.058,.437,-.014,.431,.002,.417,.026,.392,.057,.387,.103,.381,.124,.371,.147,.347,.179,.317,.207,.318,.25,.314,.28,.305,.311,.292,.337,.282,.352,.266,.37,.246,.389,.229,.4,.208,.412,.179,.422,.147,.437],[-.081,-.103,-.063,-.115,-.04,-.125,-.013,-.131,.008,-.132,.013,-.135,.034,-.212,.041,-.269,.039,-.288,.03,-.313,.016,-.334,.001,-.35,-.018,-.364,-.039,-.373,-.056,-.378,-.081,-.38,-.102,-.378,-.123,-.372,-.145,-.361,-.165,-.344,-.179,-.328,-.192,-.304,-.198,-.286,-.201,-.258,-.2,-.245,-.195,-.22,-.177,-.191,-.151,-.161,-.129,-.139,-.088,-.105],[-.596,-.132,-.594,-.215,-.563,-.144,-.556,-.118,-.552,-.089,-.552,-.056,-.559,-.027,-.569,.002,-.592,.037,-.593,.039,-.594,.036,-.595,.016],[.293,.039,.317,.03,.337,.016,.354,-0,.369,-.022,.38,-.052,.382,-.072,.381,-.102,.375,-.123,.363,-.145,.346,-.167,.322,-.185,.301,-.194,.272,-.201,.25,-.201,.223,-.195,.207,-.186,.187,-.172,.156,-.143,.124,-.108,.106,-.085,.107,-.08,.124,-.05,.13,-.032,.135,.01,.138,.013,.151,.017,.217,.034,.261,.041],[.017,.067,.039,.057,.049,.048,.058,.037,.064,.024,.067,.014,.067,-.013,.057,-.036,.048,-.047,.037,-.055,.014,-.065,-.013,-.064,-.036,-.054,-.047,-.045,-.054,-.036,-.061,-.023,-.065,-.011,-.065,.014,-.055,.037,-.047,.048,-.036,.057,-.023,.064,-.011,.067],[-.242,.203,-.218,.197,-.189,.179,-.149,.141,-.111,.098,-.103,.086,-.117,.063,-.125,.043,-.129,.03,-.132,-.005,-.134,-.009,-.198,-.028,-.241,-.036,-.264,-.038,-.288,-.036,-.313,-.028,-.336,-.012,-.353,.004,-.367,.026,-.378,.057,-.38,.081,-.378,.107,-.367,.138,-.355,.156,-.337,.175,-.319,.187,-.297,.198,-.269,.204],[.594,.131,.592,.209,.562,.136,.556,.107,.554,.089,.555,.059,.562,.028,.572,.001,.59,-.028,.591,-.029,.592,-.027,.593,-.008],[.107,.38,.126,.375,.148,.363,.165,.35,.181,.332,.191,.315,.2,.291,.204,.269,.203,.248,.2,.229,.192,.212,.18,.193,.151,.161,.089,.107,.085,.106,.07,.115,.034,.13,.014,.134,-.005,.135,-.01,.138,-.031,.217,-.037,.256,-.038,.283,-.031,.308,-.021,.327,-.004,.347,.016,.364,.038,.375,.059,.381,.083,.383],[.279,.594,.201,.591,.272,.563,.303,.555,.319,.555,.352,.556,.383,.563,.407,.572,.438,.591,.417,.593]],
[[-.286,-.596,-.199,-.594,-.238,-.581,-.259,-.569,-.281,-.56,-.306,-.553,-.331,-.549,-.356,-.549,-.395,-.556,-.429,-.57,-.463,-.592,-.464,-.593,-.461,-.594,-.44,-.595],[.091,.45,.064,.451,.037,.448,-.005,.434,-.032,.419,-.064,.393,-.091,.389,-.111,.384,-.143,.369,-.167,.352,-.195,.324,-.233,.326,-.266,.323,-.301,.314,-.334,.297,-.367,.271,-.384,.25,-.395,.233,-.408,.207,-.417,.177,-.434,.144,-.445,.111,-.448,.083,-.448,.064,-.445,.034,-.438,.013,-.423,-.021,-.411,-.04,-.392,-.062,-.384,-.102,-.378,-.121,-.367,-.141,-.35,-.165,-.322,-.193,-.32,-.197,-.324,-.233,-.321,-.266,-.309,-.305,-.294,-.334,-.268,-.367,-.247,-.384,-.227,-.397,-.204,-.408,-.174,-.417,-.155,-.428,-.133,-.437,-.108,-.445,-.088,-.447,-.061,-.448,-.034,-.445,.01,-.43,.041,-.412,.065,-.391,.113,-.381,.146,-.366,.171,-.347,.197,-.321,.239,-.323,.269,-.32,.302,-.311,.337,-.294,.369,-.268,.395,-.235,.411,-.204,.421,-.172,.437,-.141,.448,-.108,.451,-.081,.451,-.061,.447,-.031,.441,-.01,.431,.014,.42,.033,.394,.065,.387,.105,.38,.124,.37,.144,.352,.17,.324,.195,.323,.2,.326,.236,.323,.269,.314,.302,.297,.337,.269,.371,.25,.387,.229,.4,.207,.411,.177,.42,.158,.431,.136,.44,.112,.447],[-.078,-.106,-.058,-.118,-.032,-.128,-.011,-.131,.014,-.132,.017,-.134,.031,-.173,.041,-.211,.047,-.243,.049,-.264,.048,-.289,.044,-.304,.032,-.328,.018,-.345,-.001,-.361,-.027,-.375,-.05,-.381,-.067,-.382,-.091,-.381,-.115,-.374,-.137,-.363,-.155,-.348,-.172,-.329,-.181,-.313,-.188,-.294,-.192,-.267,-.192,-.248,-.188,-.228,-.173,-.2,-.158,-.18,-.131,-.151,-.097,-.118,-.083,-.107],[.154,-.22,.188,-.241,.22,-.254,.223,-.255,.219,-.256,.203,-.254,.179,-.244,.159,-.229,.154,-.223],[-.213,-.145,-.229,-.167,-.244,-.194,-.255,-.235,-.258,-.234,-.255,-.207,-.245,-.178,-.229,-.156],[-.596,-.128,-.594,-.215,-.586,-.196,-.581,-.176,-.56,-.133,-.552,-.108,-.549,-.083,-.549,-.056,-.553,-.031,-.557,-.014,-.569,.015,-.592,.049,-.593,.05,-.594,.047,-.595,.026],[.297,.047,.322,.037,.343,.022,.363,0,.374,-.019,.381,-.037,.385,-.064,.384,-.089,.378,-.113,.365,-.138,.35,-.157,.328,-.174,.308,-.184,.279,-.192,.253,-.192,.228,-.187,.209,-.178,.184,-.159,.159,-.136,.109,-.082,.109,-.077,.125,-.049,.131,-.03,.134,-.011,.135,.014,.139,.018,.176,.031,.227,.044,.269,.049],[.018,.066,.04,.056,.05,.048,.059,.035,.067,.014,.067,-.013,.057,-.036,.048,-.047,.037,-.055,.014,-.065,-.003,-.065,-.015,-.064,-.036,-.054,-.047,-.045,-.055,-.034,-.061,-.023,-.065,-.011,-.064,.016,-.054,.039,-.047,.048,-.036,.057,-.023,.064,-.011,.067],[-.243,.194,-.225,.19,-.212,.184,-.187,.167,-.137,.12,-.106,.083,-.118,.061,-.128,.035,-.131,.014,-.132,-.011,-.134,-.014,-.184,-.031,-.245,-.045,-.272,-.047,-.293,-.045,-.319,-.034,-.339,-.021,-.36,.002,-.372,.024,-.381,.051,-.382,.072,-.381,.094,-.373,.121,-.358,.146,-.34,.166,-.32,.18,-.297,.19,-.275,.195],[.594,.126,.592,.206,.583,.179,.572,.158,.561,.13,.555,.111,.552,.083,.552,.064,.555,.036,.561,.015,.572,-.013,.591,-.041,.593,-.019],[.096,.383,.116,.378,.136,.368,.151,.358,.17,.338,.181,.321,.19,.297,.195,.277,.195,.251,.19,.228,.181,.209,.162,.184,.145,.165,.085,.109,.08,.109,.064,.118,.033,.131,.014,.134,-.011,.135,-.014,.137,-.028,.176,-.041,.228,-.046,.256,-.046,.289,-.039,.31,-.028,.332,-.015,.347,.004,.364,.03,.377,.051,.384,.075,.385],[.259,.221,.256,.203,.246,.178,.231,.159,.222,.153,.242,.184,.251,.201,.256,.22],[-.209,.258,-.194,.254,-.175,.246,-.155,.23,-.15,.222,-.158,.227,-.19,.247,-.221,.258],[.294,.594,.213,.592,.24,.583,.262,.572,.284,.563,.309,.555,.336,.552,.361,.552,.398,.559,.432,.572,.46,.591,.438,.593]],
[[-.301,-.597,-.211,-.595,-.249,-.584,-.273,-.569,-.305,-.556,-.331,-.549,-.349,-.547,-.369,-.547,-.392,-.549,-.421,-.556,-.452,-.569,-.485,-.592,-.486,-.593,-.483,-.594,-.461,-.596],[.077,.453,.056,.453,.031,.45,.007,.444,-.022,.432,-.049,.415,-.075,.393,-.108,.384,-.138,.37,-.157,.356,-.184,.33,-.222,.334,-.263,.331,-.305,.318,-.337,.3,-.368,.272,-.379,.258,-.394,.235,-.408,.201,-.414,.177,-.428,.154,-.438,.131,-.448,.094,-.451,.056,-.445,.02,-.44,.003,-.422,-.035,-.411,-.051,-.391,-.073,-.378,-.116,-.367,-.138,-.352,-.158,-.327,-.184,-.331,-.222,-.328,-.263,-.317,-.299,-.297,-.337,-.283,-.354,-.266,-.37,-.246,-.386,-.226,-.397,-.198,-.408,-.174,-.414,-.15,-.429,-.118,-.442,-.094,-.448,-.074,-.45,-.051,-.45,-.017,-.445,.027,-.428,.052,-.412,.078,-.39,.111,-.381,.14,-.367,.16,-.353,.187,-.327,.222,-.331,.247,-.331,.266,-.328,.308,-.315,.34,-.297,.369,-.271,.382,-.255,.397,-.232,.411,-.198,.417,-.174,.431,-.152,.442,-.126,.451,-.092,.454,-.069,.453,-.05,.448,-.015,.441,.004,.43,.029,.419,.046,.394,.076,.381,.119,.37,.14,.354,.161,.331,.185,.33,.189,.334,.228,.331,.266,.317,.31,.3,.34,.285,.358,.269,.373,.248,.389,.229,.4,.201,.411,.177,.417,.152,.431,.121,.445,.097,.451],[-.073,-.109,-.056,-.119,-.032,-.128,-.011,-.131,.014,-.132,.018,-.134,.036,-.174,.047,-.207,.054,-.236,.058,-.268,.057,-.289,.051,-.308,.043,-.325,.029,-.344,.01,-.361,-.009,-.373,-.031,-.381,-.053,-.385,-.075,-.384,-.102,-.378,-.117,-.372,-.139,-.357,-.161,-.334,-.172,-.315,-.181,-.291,-.184,-.269,-.181,-.235,-.175,-.22,-.165,-.203,-.148,-.181,-.122,-.151,-.084,-.114,-.079,-.109],[-.174,-.112,-.211,-.157,-.233,-.193,-.245,-.228,-.248,-.256,-.247,-.288,-.25,-.287,-.254,-.28,-.261,-.26,-.265,-.231,-.264,-.209,-.255,-.18,-.244,-.16,-.226,-.142,-.195,-.12,-.179,-.111],[.116,-.178,.16,-.214,.193,-.234,.212,-.242,.236,-.248,.288,-.25,.288,-.251,.277,-.256,.247,-.265,.222,-.265,.198,-.261,.178,-.254,.163,-.244,.146,-.228,.123,-.195],[-.596,-.123,-.594,-.212,-.583,-.174,-.569,-.152,-.556,-.12,-.549,-.094,-.547,-.074,-.547,-.053,-.549,-.033,-.555,-.006,-.569,.027,-.591,.06,-.593,.061,-.594,.058,-.595,.036],[.286,.058,.305,.054,.328,.043,.347,.029,.366,.007,.381,-.021,.386,-.045,.387,-.069,.384,-.091,.375,-.115,.361,-.138,.34,-.158,.318,-.172,.293,-.181,.269,-.184,.239,-.181,.222,-.174,.196,-.158,.164,-.132,.112,-.079,.112,-.074,.124,-.05,.131,-.03,.134,-.008,.134,.014,.138,.019,.163,.03,.201,.045,.253,.057],[.018,.066,.03,.062,.04,.056,.05,.048,.058,.037,.067,.014,.068,-.003,.066,-.015,.057,-.036,.048,-.047,.034,-.057,.011,-.065,-.015,-.064,-.036,-.054,-.047,-.045,-.055,-.034,-.065,-.011,-.064,.016,-.061,.026,-.054,.039,-.045,.049,-.034,.058,-.011,.067,.003,.068],[-.251,.186,-.226,.181,-.193,.161,-.144,.118,-.113,.086,-.108,.078,-.121,.053,-.128,.033,-.131,.014,-.132,-.011,-.134,-.015,-.186,-.038,-.22,-.048,-.246,-.053,-.27,-.056,-.292,-.054,-.318,-.044,-.341,-.029,-.359,-.01,-.373,.012,-.381,.034,-.385,.058,-.384,.078,-.377,.107,-.365,.131,-.345,.155,-.326,.169,-.302,.181,-.272,.186],[.594,.12,.593,.203,.586,.177,.57,.151,.558,.119,.549,.075,.55,.053,.556,.015,.572,-.024,.589,-.051,.59,-.052,.592,-.05,.593,-.029],[.083,.386,.107,.38,.127,.37,.142,.36,.161,.34,.17,.327,.181,.304,.186,.277,.186,.256,.181,.231,.174,.216,.159,.193,.125,.154,.081,.112,.077,.111,.059,.121,.033,.131,.014,.134,-.011,.134,-.015,.136,-.033,.175,-.044,.21,-.054,.256,-.056,.285,-.048,.313,-.038,.331,-.025,.349,-.006,.365,.016,.377,.034,.384,.056,.387],[.254,.288,.264,.263,.268,.239,.267,.214,.259,.184,.248,.164,.239,.154,.218,.136,.187,.117,.181,.114,.181,.117,.211,.152,.227,.175,.244,.21,.251,.239],[-.208,.267,-.178,.257,-.163,.249,-.153,.24,-.132,.216,-.111,.181,-.118,.184,-.154,.214,-.188,.236,-.218,.247,-.239,.251,-.286,.253,-.271,.261,-.247,.267,-.225,.268],[.311,.594,.228,.592,.254,.586,.276,.572,.307,.559,.334,.552,.356,.55,.394,.552,.423,.559,.455,.572,.483,.591,.46,.593]],
[[-.318,-.597,-.228,-.595,-.263,-.586,-.29,-.569,-.32,-.555,-.339,-.549,-.369,-.545,-.406,-.546,-.437,-.553,-.475,-.57,-.507,-.592,-.508,-.593,-.505,-.595,-.482,-.596],[.558,-.563,.588,-.547,.563,-.553,.534,-.565,.511,-.579,.492,-.593],[.082,.453,.053,.455,.028,.453,.001,.447,-.025,.437,-.059,.416,-.087,.391,-.116,.379,-.137,.366,-.173,.336,-.214,.341,-.239,.341,-.261,.337,-.299,.325,-.333,.306,-.353,.29,-.366,.276,-.378,.26,-.393,.234,-.405,.203,-.411,.176,-.428,.149,-.437,.13,-.445,.11,-.451,.083,-.452,.061,-.451,.028,-.444,.001,-.434,-.025,-.416,-.056,-.388,-.087,-.378,-.113,-.364,-.137,-.333,-.173,-.339,-.214,-.338,-.236,-.335,-.261,-.324,-.295,-.307,-.328,-.293,-.347,-.274,-.365,-.254,-.38,-.236,-.391,-.211,-.401,-.173,-.411,-.146,-.428,-.117,-.441,-.08,-.45,-.05,-.452,-.026,-.45,.002,-.444,.027,-.434,.059,-.416,.09,-.388,.117,-.377,.138,-.365,.176,-.333,.217,-.338,.242,-.338,.266,-.334,.303,-.322,.336,-.304,.365,-.277,.381,-.257,.393,-.236,.403,-.213,.413,-.173,.431,-.146,.442,-.122,.453,-.082,.455,-.053,.453,-.025,.448,-0,.437,.027,.418,.059,.391,.09,.381,.116,.364,.143,.336,.176,.341,.217,.341,.239,.338,.264,.327,.298,.31,.331,.297,.348,.28,.365,.26,.381,.239,.393,.214,.404,.176,.413,.149,.431,.12,.444],[-.068,-.112,-.048,-.122,-.031,-.128,.008,-.132,.014,-.135,.038,-.191,.061,-.235,.067,-.264,.067,-.286,.061,-.307,.049,-.331,.037,-.347,.018,-.364,-.003,-.376,-.026,-.384,-.043,-.386,-.067,-.386,-.091,-.381,-.11,-.373,-.132,-.358,-.147,-.343,-.161,-.321,-.171,-.295,-.175,-.274,-.175,-.255,-.172,-.238,-.166,-.222,-.156,-.204,-.132,-.172,-.106,-.143,-.077,-.113],[-.144,-.089,-.197,-.152,-.216,-.18,-.228,-.204,-.234,-.222,-.239,-.247,-.239,-.281,-.235,-.308,-.239,-.307,-.252,-.292,-.266,-.264,-.272,-.235,-.271,-.203,-.267,-.185,-.26,-.169,-.247,-.149,-.226,-.131,-.179,-.103,-.151,-.09],[.096,-.15,.153,-.198,.178,-.215,.203,-.229,.228,-.237,.25,-.24,.275,-.241,.307,-.238,.308,-.241,.306,-.243,.288,-.256,.261,-.268,.228,-.273,.208,-.272,.192,-.268,.168,-.258,.152,-.247,.133,-.224,.105,-.177,.094,-.155,.094,-.151],[-.597,-.117,-.595,-.208,-.587,-.173,-.569,-.146,-.553,-.107,-.545,-.067,-.546,-.031,-.553,.002,-.57,.04,-.592,.071,-.593,.072,-.594,.069,-.596,.046],[.293,.066,.312,.061,.337,.047,.358,.029,.374,.006,.383,-.015,.388,-.036,.389,-.058,.384,-.089,.374,-.112,.36,-.133,.344,-.148,.318,-.164,.294,-.172,.267,-.175,.242,-.173,.221,-.164,.194,-.147,.167,-.126,.114,-.074,.114,-.07,.125,-.048,.131,-.03,.135,.011,.139,.015,.194,.038,.242,.063,.267,.067],[.594,.109,.593,.191,.589,.176,.572,.149,.555,.11,.549,.083,.548,.064,.549,.031,.555,.001,.571,-.036,.591,-.063,.593,-.04],[-.251,.178,-.224,.169,-.191,.149,-.13,.097,-.113,.08,-.111,.075,-.128,.033,-.133,-.01,-.191,-.036,-.235,-.058,-.247,-.062,-.275,-.065,-.299,-.061,-.324,-.051,-.345,-.036,-.363,-.017,-.375,.004,-.384,.031,-.386,.053,-.385,.078,-.377,.104,-.365,.125,-.344,.148,-.321,.164,-.297,.174,-.275,.178],[.018,.066,.039,.057,.05,.048,.058,.037,.064,.026,.067,.014,.067,-.013,.057,-.036,.048,-.047,.035,-.056,.011,-.065,-.015,-.064,-.036,-.054,-.047,-.045,-.055,-.034,-.065,-.011,-.064,.016,-.054,.039,-.045,.049,-.034,.058,-.011,.067],[.244,.308,.264,.279,.273,.25,.275,.217,.269,.188,.258,.163,.243,.145,.212,.123,.172,.101,.155,.094,.153,.096,.192,.14,.209,.164,.227,.194,.237,.217,.244,.253,.244,.281,.241,.305],[.069,.389,.092,.384,.109,.377,.13,.365,.148,.347,.16,.331,.17,.311,.177,.283,.178,.261,.175,.241,.165,.217,.148,.192,.126,.165,.078,.115,.073,.114,.057,.122,.031,.131,-.005,.134,-.011,.137,-.034,.19,-.061,.244,-.064,.267,-.065,.283,-.061,.304,-.051,.327,-.038,.345,-.023,.361,0,.376,.02,.384,.043,.389],[-.21,.275,-.187,.27,-.171,.264,-.154,.253,-.141,.241,-.119,.21,-.102,.18,-.091,.154,-.095,.154,-.142,.195,-.18,.221,-.198,.231,-.217,.238,-.256,.244,-.281,.243,-.303,.24,-.306,.242,-.295,.252,-.267,.268,-.242,.274],[-.561,.564,-.589,.549,-.562,.555,-.536,.565,-.521,.573,-.495,.591],[.331,.594,.248,.593,.265,.589,.292,.572,.321,.559,.345,.552,.375,.548,.411,.549,.44,.556,.477,.572,.504,.591,.481,.593]],
[[-.338,-.597,-.248,-.595,-.275,-.59,-.304,-.57,-.332,-.556,-.353,-.549,-.386,-.544,-.406,-.543,-.428,-.545,-.46,-.553,-.496,-.569,-.527,-.591,-.528,-.593,-.525,-.594,-.502,-.595],[.551,-.561,.586,-.544,.551,-.549,.52,-.561,.502,-.57,.472,-.593],[.063,.456,.042,.457,.011,.453,-.013,.447,-.038,.436,-.065,.42,-.085,.403,-.102,.384,-.132,.366,-.162,.341,-.195,.347,-.244,.347,-.272,.341,-.291,.334,-.328,.313,-.358,.287,-.372,.268,-.384,.249,-.398,.216,-.406,.174,-.428,.143,-.437,.125,-.445,.105,-.452,.078,-.454,.047,-.451,.014,-.444,-.013,-.435,-.036,-.417,-.065,-.401,-.083,-.381,-.102,-.366,-.128,-.338,-.162,-.345,-.195,-.345,-.244,-.334,-.285,-.327,-.301,-.31,-.328,-.284,-.358,-.269,-.37,-.247,-.384,-.213,-.398,-.172,-.406,-.14,-.428,-.11,-.442,-.091,-.448,-.06,-.453,-.042,-.454,-.009,-.451,.015,-.444,.041,-.434,.068,-.417,.087,-.4,.105,-.381,.133,-.365,.164,-.338,.198,-.345,.246,-.345,.275,-.338,.294,-.331,.331,-.31,.348,-.297,.362,-.283,.387,-.247,.4,-.216,.409,-.172,.431,-.14,.441,-.12,.448,-.102,.454,-.075,.457,-.044,.454,-.011,.447,.015,.437,.039,.416,.073,.384,.105,.365,.136,.341,.164,.348,.2,.347,.246,.336,.288,.326,.311,.313,.331,.287,.361,.265,.377,.249,.387,.216,.401,.174,.409,.143,.431,.107,.447,.083,.453],[-.065,-.114,-.032,-.128,.003,-.132,.009,-.134,.044,-.219,.076,-.278,.074,-.297,.067,-.316,.058,-.332,.047,-.348,.031,-.363,.014,-.374,-.003,-.381,-.025,-.387,-.053,-.388,-.075,-.384,-.095,-.377,-.116,-.365,-.131,-.352,-.147,-.332,-.158,-.312,-.165,-.286,-.166,-.267,-.165,-.245,-.161,-.232,-.151,-.214,-.133,-.185,-.106,-.151,-.072,-.115],[-.124,-.076,-.165,-.122,-.186,-.149,-.207,-.181,-.218,-.203,-.228,-.234,-.23,-.26,-.229,-.294,-.225,-.318,-.228,-.318,-.236,-.312,-.251,-.297,-.262,-.283,-.271,-.264,-.278,-.244,-.28,-.222,-.278,-.193,-.266,-.161,-.251,-.14,-.226,-.12,-.199,-.105,-.165,-.089,-.129,-.075],[.083,-.131,.124,-.166,.157,-.192,.189,-.212,.212,-.223,.231,-.229,.258,-.232,.289,-.232,.319,-.227,.32,-.23,.316,-.234,.297,-.254,.278,-.266,.259,-.274,.244,-.278,.225,-.28,.196,-.278,.177,-.272,.16,-.264,.14,-.248,.122,-.224,.105,-.194,.089,-.157,.08,-.133],[-.597,-.108,-.596,-.2,-.59,-.17,-.569,-.14,-.555,-.11,-.547,-.08,-.544,-.058,-.543,-.042,-.545,-.017,-.553,.015,-.569,.052,-.592,.082,-.593,.083,-.594,.08,-.596,.057],[.294,.075,.319,.067,.34,.055,.359,.038,.375,.016,.384,-.003,.39,-.031,.391,-.056,.385,-.083,.375,-.104,.358,-.128,.335,-.147,.315,-.158,.291,-.165,.264,-.166,.245,-.164,.222,-.154,.177,-.124,.144,-.097,.117,-.071,.117,-.065,.131,-.03,.135,.005,.139,.01,.223,.045,.276,.075,.283,.077],[.594,.09,.594,.149,.592,.17,.572,.143,.556,.107,.549,.08,.546,.047,.549,.014,.556,-.013,.572,-.049,.591,-.074,.593,-.052],[-.24,.166,-.216,.155,-.181,.132,-.131,.09,-.115,.075,-.113,.07,-.128,.033,-.132,-.003,-.134,-.006,-.207,-.036,-.237,-.051,-.266,-.068,-.273,-.073,-.281,-.074,-.308,-.068,-.335,-.053,-.356,-.035,-.372,-.015,-.381,.006,-.388,.033,-.388,.061,-.381,.088,-.372,.109,-.356,.13,-.337,.147,-.312,.161,-.291,.167,-.264,.169],[.018,.066,.04,.056,.05,.048,.059,.035,.067,.014,.067,-.013,.064,-.023,.056,-.038,.048,-.047,.034,-.057,.011,-.065,-.015,-.064,-.036,-.054,-.047,-.045,-.055,-.034,-.065,-.011,-.064,.016,-.054,.039,-.047,.048,-.034,.058,-.023,.064,-.011,.067,.006,.068],[.233,.319,.247,.307,.263,.289,.278,.257,.281,.244,.283,.222,.281,.198,.278,.187,.264,.156,.248,.137,.216,.116,.164,.091,.136,.08,.133,.082,.169,.124,.197,.16,.212,.184,.225,.212,.231,.228,.235,.253,.235,.286,.23,.317],[.071,.389,.096,.381,.117,.369,.131,.358,.148,.338,.16,.317,.167,.294,.169,.272,.168,.25,.159,.226,.144,.199,.113,.16,.075,.118,.07,.116,.037,.13,-.003,.135,-.006,.137,-.036,.21,-.051,.24,-.072,.276,-.073,.289,-.067,.313,-.058,.331,-.044,.351,-.023,.369,-.004,.38,.017,.387,.042,.391],[-.192,.28,-.162,.269,-.141,.255,-.119,.227,-.099,.189,-.08,.146,-.077,.136,-.078,.133,-.149,.191,-.19,.217,-.226,.231,-.264,.235,-.289,.234,-.314,.23,-.317,.231,-.314,.237,-.296,.255,-.283,.265,-.264,.274,-.236,.282,-.217,.283],[-.554,.562,-.589,.546,-.55,.552,-.523,.561,-.499,.573,-.475,.59],[.361,.594,.303,.593,.282,.591,.307,.572,.339,.557,.37,.549,.403,.546,.439,.549,.469,.558,.499,.572,.525,.59,.503,.593]],
[[-.366,-.597,-.278,-.597,-.288,-.595,-.321,-.57,-.351,-.555,-.378,-.547,-.414,-.542,-.444,-.543,-.472,-.549,-.489,-.555,-.518,-.569,-.548,-.592,-.549,-.594,-.546,-.595,-.524,-.596],[.544,-.561,.577,-.548,.586,-.542,.561,-.543,.542,-.546,.506,-.557,.478,-.572,.451,-.593],[.063,.457,.025,.458,0,.454,-.024,.448,-.047,.437,-.066,.426,-.085,.412,-.106,.391,-.121,.37,-.15,.346,-.194,.355,-.244,.353,-.269,.347,-.288,.34,-.309,.33,-.329,.316,-.359,.286,-.378,.258,-.394,.218,-.402,.17,-.427,.137,-.438,.117,-.448,.091,-.454,.058,-.455,.019,-.451,-.003,-.444,-.026,-.43,-.056,-.408,-.087,-.386,-.107,-.369,-.12,-.344,-.15,-.352,-.194,-.351,-.242,-.345,-.269,-.338,-.286,-.328,-.307,-.315,-.327,-.284,-.358,-.249,-.381,-.213,-.395,-.167,-.402,-.136,-.426,-.116,-.437,-.088,-.448,-.061,-.454,-.042,-.455,-.011,-.454,.019,-.448,.052,-.434,.069,-.423,.09,-.408,.109,-.388,.124,-.367,.153,-.343,.197,-.352,.231,-.352,.247,-.35,.271,-.345,.291,-.337,.31,-.328,.331,-.313,.358,-.288,.381,-.255,.398,-.213,.405,-.167,.43,-.135,.44,-.116,.451,-.088,.457,-.056,.457,-.017,.454,.005,.447,.029,.437,.052,.426,.069,.41,.09,.389,.11,.371,.123,.346,.153,.355,.197,.353,.247,.348,.269,.341,.289,.331,.31,.316,.331,.289,.36,.258,.381,.218,.397,.17,.405,.142,.427,.119,.44,.091,.451],[-.059,-.117,-.03,-.128,-0,-.132,.004,-.134,.022,-.185,.042,-.231,.061,-.266,.081,-.297,.08,-.307,.07,-.329,.06,-.344,.047,-.357,.018,-.378,-0,-.384,-.019,-.388,-.042,-.389,-.069,-.385,-.09,-.377,-.11,-.364,-.127,-.348,-.141,-.329,-.15,-.31,-.156,-.288,-.158,-.267,-.156,-.25,-.151,-.233,-.141,-.213,-.127,-.191,-.087,-.139,-.068,-.117],[-.113,-.068,-.116,-.074,-.147,-.11,-.178,-.151,-.197,-.182,-.211,-.21,-.218,-.231,-.222,-.258,-.221,-.289,-.214,-.322,-.219,-.323,-.234,-.314,-.254,-.297,-.266,-.281,-.275,-.266,-.282,-.25,-.287,-.225,-.287,-.208,-.284,-.186,-.278,-.165,-.27,-.151,-.261,-.138,-.251,-.128,-.216,-.105,-.166,-.083,-.12,-.067],[.071,-.114,.122,-.157,.151,-.178,.181,-.198,.215,-.214,.239,-.221,.267,-.224,.297,-.222,.324,-.217,.325,-.22,.316,-.234,.298,-.255,.284,-.266,.265,-.277,.244,-.284,.225,-.287,.208,-.287,.189,-.284,.168,-.278,.15,-.268,.137,-.258,.127,-.247,.108,-.216,.083,-.157,.069,-.118],[-.597,-.089,-.596,-.177,-.594,-.166,-.57,-.134,-.553,-.101,-.546,-.075,-.542,-.042,-.543,-.014,-.552,.027,-.569,.063,-.592,.093,-.594,.094,-.595,.091,-.596,.069],[.31,.08,.332,.07,.349,.058,.368,.038,.381,.016,.39,-.011,.392,-.036,.39,-.061,.381,-.088,.367,-.11,.351,-.127,.33,-.142,.308,-.152,.283,-.157,.258,-.157,.242,-.154,.216,-.141,.174,-.113,.12,-.068,.119,-.062,.131,-.03,.135,.002,.142,.006,.187,.022,.229,.04,.258,.054,.298,.081],[.594,.08,.593,.139,.592,.159,.59,.161,.589,.16,.572,.136,.555,.102,.546,.061,.545,.036,.549,0,.555,-.024,.572,-.06,.591,-.085,.593,-.063],[-.245,.158,-.22,.148,-.191,.13,-.146,.097,-.12,.074,-.116,.067,-.128,.033,-.132,.003,-.134,-.001,-.216,-.033,-.252,-.05,-.276,-.064,-.295,-.078,-.305,-.078,-.335,-.064,-.357,-.045,-.377,-.017,-.384,.003,-.389,.031,-.388,.058,-.382,.081,-.372,.101,-.359,.119,-.339,.137,-.318,.15,-.295,.158,-.269,.161],[.018,.066,.039,.057,.049,.048,.058,.037,.067,.014,.067,-.013,.064,-.024,.057,-.036,.05,-.045,.035,-.056,.024,-.062,.011,-.065,-.015,-.064,-.036,-.054,-.045,-.047,-.055,-.034,-.065,-.011,-.064,.016,-.054,.039,-.045,.049,-.034,.058,-.011,.067],[.224,.324,.239,.315,.257,.3,.269,.284,.279,.267,.287,.244,.29,.225,.29,.208,.287,.187,.276,.159,.264,.14,.254,.131,.218,.108,.158,.082,.121,.069,.118,.069,.117,.071,.179,.148,.197,.176,.214,.209,.223,.236,.226,.258,.226,.289,.219,.323],[-.198,.289,-.165,.28,-.141,.266,-.122,.246,-.105,.218,-.082,.166,-.069,.13,-.067,.117,-.14,.175,-.191,.207,-.214,.218,-.231,.223,-.253,.226,-.272,.226,-.297,.224,-.32,.219,-.322,.22,-.315,.236,-.304,.25,-.286,.265,-.268,.277,-.236,.288,-.217,.29],[.052,.392,.072,.388,.093,.38,.111,.368,.13,.351,.146,.328,.154,.311,.159,.289,.16,.267,.157,.245,.145,.217,.116,.174,.075,.124,.067,.118,.039,.129,.003,.135,-.001,.137,-.02,.188,-.039,.234,-.058,.269,-.077,.296,-.079,.303,-.073,.321,-.061,.341,-.047,.357,-.032,.37,-.015,.38,.003,.387,.028,.392],[-.547,.562,-.589,.545,-.556,.546,-.525,.552,-.509,.558,-.479,.572,-.454,.591],[.381,.594,.322,.593,.303,.592,.3,.59,.302,.589,.326,.572,.36,.556,.4,.546,.425,.545,.461,.549,.487,.556,.521,.572,.546,.591,.524,.593]],
[[-.395,-.597,-.333,-.596,-.312,-.595,-.309,-.593,-.31,-.592,-.34,-.569,-.371,-.553,-.408,-.543,-.439,-.541,-.469,-.543,-.507,-.553,-.538,-.569,-.568,-.592,-.569,-.593,-.566,-.595,-.545,-.596],[.537,-.561,.575,-.548,.586,-.543,.547,-.541,.517,-.546,.495,-.552,.46,-.57,.431,-.593],[.043,.459,.017,.459,-.016,.454,-.037,.447,-.065,.433,-.088,.418,-.109,.399,-.125,.379,-.139,.354,-.142,.352,-.184,.361,-.208,.362,-.234,.361,-.264,.354,-.286,.346,-.313,.331,-.328,.319,-.356,.29,-.378,.254,-.392,.21,-.396,.17,-.422,.138,-.439,.108,-.45,.077,-.456,.042,-.456,.017,-.451,-.016,-.444,-.037,-.43,-.067,-.415,-.088,-.396,-.109,-.378,-.123,-.352,-.139,-.35,-.142,-.359,-.184,-.36,-.211,-.358,-.236,-.351,-.264,-.345,-.282,-.328,-.313,-.316,-.328,-.286,-.357,-.251,-.378,-.208,-.392,-.167,-.396,-.13,-.426,-.105,-.439,-.072,-.451,-.041,-.456,-.017,-.456,.019,-.451,.04,-.444,.072,-.429,.093,-.414,.111,-.396,.13,-.373,.142,-.352,.145,-.35,.187,-.359,.214,-.36,.237,-.358,.266,-.351,.289,-.343,.312,-.33,.33,-.317,.36,-.286,.381,-.252,.395,-.208,.399,-.167,.429,-.13,.442,-.105,.454,-.072,.459,-.039,.459,-.014,.454,.019,.447,.04,.432,.072,.415,.094,.399,.111,.379,.127,.354,.142,.352,.145,.361,.186,.362,.217,.36,.244,.356,.26,.346,.287,.336,.307,.319,.331,.302,.348,.287,.361,.254,.381,.23,.39,.21,.395,.17,.399,.138,.425,.109,.441,.086,.451],[-.06,-.117,-.032,-.128,-.006,-.132,0,-.134,.022,-.202,.038,-.241,.063,-.286,.085,-.314,.083,-.321,.075,-.337,.063,-.351,.049,-.364,.021,-.381,-.009,-.389,-.033,-.391,-.055,-.387,-.082,-.378,-.097,-.368,-.115,-.353,-.129,-.336,-.14,-.314,-.148,-.288,-.148,-.253,-.144,-.24,-.136,-.221,-.125,-.201,-.097,-.16,-.066,-.121],[-.115,-.064,-.111,-.07,-.112,-.076,-.146,-.119,-.176,-.162,-.197,-.199,-.208,-.227,-.212,-.247,-.213,-.275,-.212,-.294,-.206,-.322,-.211,-.323,-.227,-.317,-.245,-.305,-.256,-.296,-.273,-.277,-.282,-.261,-.291,-.236,-.294,-.217,-.294,-.201,-.291,-.18,-.286,-.163,-.278,-.146,-.266,-.13,-.258,-.121,-.223,-.1,-.197,-.088,-.154,-.073,-.122,-.063],[.079,-.115,.117,-.145,.163,-.177,.193,-.194,.224,-.208,.251,-.214,.272,-.215,.291,-.214,.324,-.208,.325,-.215,.315,-.236,.302,-.253,.289,-.265,.273,-.277,.258,-.285,.237,-.291,.216,-.294,.2,-.294,.176,-.289,.144,-.275,.13,-.263,.117,-.248,.105,-.227,.089,-.193,.066,-.122,.066,-.117,.068,-.114,.072,-.112],[-.596,-.071,-.595,-.132,-.593,-.156,-.569,-.127,-.553,-.093,-.543,-.055,-.541,-.025,-.543,.003,-.553,.04,-.57,.074,-.591,.102,-.593,.103,-.594,.1,-.595,.079],[.325,.083,.341,.073,.359,.058,.376,.036,.387,.013,.393,-.014,.393,-.036,.387,-.066,.379,-.086,.364,-.107,.345,-.124,.324,-.137,.303,-.145,.283,-.148,.254,-.148,.235,-.141,.206,-.126,.163,-.097,.12,-.062,.131,-.03,.136,-.001,.204,.022,.244,.038,.28,.058,.315,.084],[.593,.072,.592,.131,.59,.153,.572,.129,.555,.096,.546,.058,.543,.028,.546,0,.556,-.038,.571,-.069,.59,-.094,.593,-.072],[-.249,.15,-.223,.14,-.181,.115,-.121,.069,-.119,.066,-.118,.061,-.128,.033,-.132,.006,-.134,.003,-.191,-.016,-.227,-.03,-.269,-.05,-.284,-.059,-.31,-.08,-.317,-.082,-.335,-.073,-.357,-.055,-.372,-.035,-.385,-.006,-.391,.025,-.388,.053,-.382,.075,-.372,.095,-.356,.115,-.338,.131,-.318,.141,-.297,.148,-.278,.151],[.018,.066,.039,.057,.05,.048,.058,.037,.064,.026,.067,.014,.067,-.013,.057,-.036,.048,-.047,.035,-.056,.024,-.062,.011,-.065,-.015,-.064,-.029,-.058,-.041,-.051,-.055,-.034,-.061,-.023,-.064,-.011,-.064,.016,-.054,.039,-.045,.049,-.034,.058,-.023,.064,-.011,.067],[.218,.325,.238,.315,.253,.304,.268,.289,.281,.271,.29,.252,.294,.235,.297,.208,.294,.185,.288,.164,.28,.149,.269,.132,.259,.123,.224,.102,.171,.08,.122,.065,.117,.068,.115,.075,.16,.133,.18,.163,.2,.199,.208,.216,.214,.237,.218,.258,.217,.289,.211,.323,.212,.325],[-.199,.297,-.18,.294,-.159,.287,-.13,.269,-.113,.249,-.092,.207,-.066,.136,-.063,.122,-.065,.117,-.07,.115,-.076,.117,-.144,.169,-.196,.2,-.234,.214,-.253,.217,-.278,.218,-.32,.211,-.322,.212,-.322,.218,-.317,.229,-.305,.248,-.289,.266,-.275,.276,-.255,.287,-.236,.294,-.215,.297],[.051,.391,.069,.387,.09,.378,.11,.364,.126,.347,.137,.33,.147,.305,.151,.286,.151,.261,.145,.237,.129,.206,.108,.174,.068,.123,.063,.12,.033,.131,.008,.134,.003,.137,-.019,.205,-.036,.246,-.053,.277,-.067,.298,-.08,.313,-.082,.319,-.077,.331,-.063,.351,-.048,.366,-.026,.38,-.002,.389,.014,.393,.033,.394],[-.54,.563,-.59,.548,-.589,.546,-.547,.544,-.528,.546,-.499,.553,-.463,.57,-.434,.59],[.399,.594,.34,.593,.318,.591,.343,.572,.376,.555,.414,.546,.444,.544,.472,.546,.509,.556,.541,.572,.566,.591,.544,.593]],
[[-.414,-.596,-.352,-.596,-.331,-.594,-.328,-.593,-.329,-.592,-.357,-.57,-.39,-.553,-.425,-.543,-.458,-.54,-.492,-.543,-.529,-.553,-.56,-.57,-.588,-.591,-.589,-.593,-.586,-.594,-.565,-.596],[.531,-.564,.574,-.552,.588,-.546,.561,-.541,.533,-.54,.508,-.543,.484,-.549,.467,-.555,.444,-.567,.423,-.582,.411,-.593],[.041,.459,.008,.459,-.014,.457,-.038,.451,-.069,.437,-.083,.429,-.107,.411,-.128,.387,-.145,.363,-.192,.369,-.217,.369,-.244,.365,-.287,.349,-.313,.333,-.325,.323,-.34,.308,-.355,.29,-.373,.258,-.381,.238,-.388,.208,-.39,.167,-.417,.137,-.437,.105,-.448,.08,-.456,.039,-.457,.006,-.454,-.014,-.448,-.038,-.436,-.067,-.427,-.081,-.408,-.106,-.385,-.128,-.36,-.145,-.366,-.192,-.366,-.217,-.361,-.246,-.346,-.287,-.322,-.323,-.306,-.34,-.289,-.354,-.253,-.374,-.235,-.381,-.206,-.388,-.165,-.389,-.136,-.415,-.106,-.435,-.077,-.448,-.053,-.454,-.033,-.456,-.006,-.457,.017,-.454,.043,-.447,.072,-.434,.086,-.426,.109,-.408,.131,-.385,.148,-.36,.197,-.366,.231,-.365,.249,-.361,.288,-.347,.326,-.322,.353,-.294,.365,-.277,.376,-.255,.384,-.235,.39,-.206,.393,-.164,.419,-.135,.438,-.106,.451,-.077,.459,-.036,.46,-.003,.457,.017,.448,.049,.437,.072,.43,.084,.408,.112,.387,.13,.363,.148,.369,.2,.365,.247,.349,.29,.33,.32,.299,.351,.282,.364,.26,.375,.238,.384,.216,.389,.2,.391,.168,.392,.137,.419,.111,.437,.08,.451],[-.053,-.12,-.032,-.128,-.009,-.132,-.005,-.134,.022,-.221,.038,-.258,.061,-.299,.087,-.328,.086,-.334,.075,-.349,.063,-.361,.048,-.372,.022,-.385,-.005,-.391,-.031,-.391,-.05,-.387,-.074,-.378,-.094,-.365,-.111,-.348,-.122,-.332,-.131,-.316,-.138,-.292,-.139,-.259,-.128,-.223,-.112,-.195,-.094,-.166,-.061,-.121],[-.118,-.059,-.109,-.074,-.109,-.079,-.146,-.13,-.166,-.16,-.184,-.192,-.197,-.226,-.201,-.239,-.204,-.264,-.204,-.283,-.199,-.319,-.205,-.321,-.227,-.314,-.243,-.306,-.261,-.292,-.275,-.277,-.288,-.256,-.295,-.239,-.3,-.216,-.301,-.197,-.298,-.175,-.291,-.154,-.283,-.138,-.275,-.126,-.259,-.111,-.227,-.093,-.171,-.072],[.082,-.112,.155,-.163,.185,-.181,.215,-.195,.236,-.202,.262,-.206,.285,-.206,.32,-.2,.323,-.201,.32,-.219,.31,-.24,.298,-.258,.282,-.273,.266,-.284,.249,-.292,.233,-.298,.211,-.301,.194,-.301,.171,-.297,.157,-.292,.132,-.277,.118,-.264,.105,-.246,.086,-.204,.072,-.163,.061,-.12,.063,-.117,.072,-.111,.078,-.11],[-.596,-.062,-.595,-.124,-.594,-.145,-.592,-.148,-.591,-.147,-.569,-.119,-.552,-.085,-.543,-.053,-.54,-.017,-.543,.017,-.552,.049,-.569,.083,-.592,.112,-.593,.113,-.595,.111,-.596,.089],[.336,.086,.356,.071,.37,.055,.381,.038,.391,.011,.394,-.011,.393,-.036,.386,-.062,.375,-.084,.36,-.103,.338,-.121,.319,-.131,.294,-.138,.272,-.14,.253,-.138,.226,-.128,.203,-.115,.167,-.092,.123,-.059,.122,-.054,.13,-.032,.135,-.006,.14,-.003,.224,.022,.257,.036,.29,.053,.309,.067,.329,.086],[.594,.064,.593,.124,.592,.144,.591,.146,.59,.145,.572,.121,.555,.088,.545,.053,.543,.019,.545,-.011,.555,-.047,.572,-.08,.591,-.105,.593,-.082],[-.256,.142,-.225,.131,-.193,.114,-.143,.08,-.122,.063,-.119,.059,-.128,.033,-.132,.011,-.134,.008,-.221,-.019,-.26,-.036,-.287,-.05,-.31,-.067,-.326,-.084,-.333,-.083,-.344,-.076,-.366,-.054,-.377,-.037,-.382,-.025,-.391,.006,-.39,.036,-.384,.063,-.376,.08,-.364,.098,-.346,.116,-.324,.13,-.305,.137,-.281,.142],[.018,.066,.028,.063,.04,.056,.05,.048,.058,.037,.067,.014,.067,-.013,.064,-.023,.057,-.036,.048,-.047,.035,-.056,.024,-.062,.011,-.065,-.015,-.064,-.025,-.06,-.038,-.053,-.047,-.045,-.055,-.034,-.061,-.023,-.064,-.011,-.064,.016,-.054,.039,-.045,.049,-.034,.058,-.011,.067],[.214,.322,.235,.314,.259,.299,.277,.281,.286,.268,.297,.245,.301,.23,.304,.203,.301,.181,.297,.165,.287,.142,.278,.129,.265,.117,.249,.106,.225,.094,.176,.075,.123,.061,.119,.064,.112,.078,.165,.153,.182,.181,.197,.213,.204,.236,.209,.264,.208,.29,.203,.322,.206,.324],[-.187,.303,-.161,.297,-.143,.289,-.128,.279,-.111,.262,-.1,.243,-.083,.205,-.059,.128,-.06,.12,-.07,.113,-.077,.113,-.15,.165,-.199,.192,-.233,.204,-.264,.209,-.294,.207,-.318,.203,-.321,.206,-.315,.227,-.306,.246,-.294,.262,-.275,.279,-.256,.291,-.232,.3,-.208,.304],[.024,.394,.05,.391,.069,.384,.087,.375,.106,.36,.119,.345,.131,.324,.14,.3,.143,.278,.141,.255,.134,.234,.119,.205,.099,.172,.062,.123,.057,.122,.039,.129,.011,.134,.008,.137,-.019,.222,-.033,.257,-.056,.298,-.07,.315,-.083,.328,-.084,.333,-.077,.345,-.066,.359,-.037,.38,-.011,.39],[-.533,.566,-.576,.555,-.589,.551,-.588,.549,-.569,.545,-.539,.543,-.508,.545,-.49,.549,-.452,.564,-.433,.575,-.414,.59],[.419,.594,.359,.593,.337,.59,.36,.572,.387,.558,.428,.546,.461,.543,.494,.546,.521,.553,.554,.567,.586,.59,.563,.593]],
[[-.428,-.591,-.369,-.594,-.347,-.593,-.376,-.569,-.407,-.553,-.442,-.543,-.464,-.54,-.5,-.541,-.538,-.549,-.569,-.563,-.592,-.579,-.57,-.582],[.525,-.568,.572,-.557,.589,-.552,.558,-.543,.525,-.54,.498,-.541,.475,-.546,.454,-.552,.433,-.562,.406,-.58,.392,-.593,.409,-.591],[.038,.459,.011,.461,-.011,.459,-.055,.448,-.089,.432,-.108,.418,-.128,.399,-.148,.372,-.197,.375,-.215,.375,-.241,.37,-.276,.358,-.299,.345,-.317,.332,-.346,.301,-.367,.266,-.378,.235,-.381,.219,-.383,.194,-.383,.164,-.415,.131,-.433,.104,-.448,.072,-.457,.033,-.458,.011,-.456,-.011,-.451,-.039,-.445,-.055,-.433,-.081,-.416,-.106,-.397,-.126,-.369,-.148,-.369,-.155,-.372,-.178,-.373,-.211,-.368,-.241,-.354,-.277,-.343,-.297,-.329,-.317,-.302,-.343,-.284,-.355,-.263,-.367,-.242,-.375,-.219,-.381,-.192,-.383,-.162,-.383,-.134,-.41,-.105,-.431,-.069,-.448,-.035,-.456,-.011,-.458,.014,-.456,.052,-.448,.082,-.434,.109,-.416,.131,-.396,.151,-.369,.208,-.373,.244,-.368,.282,-.353,.299,-.344,.319,-.329,.349,-.298,.37,-.263,.377,-.243,.384,-.216,.386,-.162,.419,-.126,.436,-.102,.451,-.069,.46,-.031,.459,.014,.448,.058,.437,.083,.418,.11,.4,.129,.372,.151,.376,.208,.37,.244,.358,.279,.348,.297,.331,.321,.301,.349,.269,.368,.245,.377,.221,.383,.197,.386,.164,.385,.135,.414,.108,.434,.074,.45],[-.046,-.123,-.013,-.131,-.01,-.134,.016,-.225,.033,-.268,.056,-.307,.089,-.34,.088,-.345,.077,-.356,.052,-.376,.027,-.387,.002,-.392,-.022,-.391,-.044,-.387,-.066,-.378,-.084,-.366,-.099,-.353,-.112,-.336,-.122,-.317,-.128,-.299,-.131,-.278,-.131,-.262,-.127,-.246,-.117,-.22,-.096,-.181,-.062,-.131,-.054,-.122],[-.119,-.057,-.106,-.077,-.106,-.082,-.158,-.16,-.179,-.201,-.19,-.231,-.195,-.264,-.195,-.286,-.191,-.316,-.199,-.317,-.226,-.311,-.245,-.302,-.262,-.291,-.279,-.275,-.292,-.255,-.301,-.236,-.306,-.216,-.307,-.197,-.306,-.176,-.3,-.154,-.29,-.133,-.272,-.11,-.259,-.1,-.238,-.089,-.183,-.069,-.13,-.055],[.086,-.109,.16,-.158,.196,-.177,.22,-.187,.245,-.195,.266,-.197,.318,-.193,.32,-.197,.318,-.211,.309,-.238,.296,-.259,.274,-.281,.258,-.292,.238,-.301,.221,-.305,.197,-.308,.17,-.304,.151,-.298,.134,-.289,.117,-.276,.102,-.258,.088,-.23,.072,-.185,.058,-.127,.059,-.119,.078,-.108],[-.597,-.054,-.596,-.117,-.595,-.138,-.594,-.141,-.592,-.14,-.569,-.11,-.553,-.079,-.543,-.044,-.54,-.011,-.543,.025,-.553,.061,-.57,.093,-.592,.121,-.593,.122,-.594,.119,-.596,.098],[.346,.088,.359,.077,.378,.052,.387,.033,.394,.008,.395,-.017,.39,-.042,.38,-.068,.369,-.084,.351,-.103,.331,-.116,.304,-.127,.283,-.131,.267,-.131,.249,-.127,.2,-.105,.153,-.076,.125,-.054,.124,-.05,.135,-.011,.142,-.007,.191,.005,.227,.016,.271,.033,.308,.054,.327,.072,.341,.088],[.594,.055,.593,.115,.591,.138,.572,.113,.553,.076,.546,.047,.542,.011,.546,-.025,.555,-.057,.572,-.09,.59,-.113,.593,-.091],[-.259,.133,-.23,.124,-.193,.105,-.129,.064,-.122,.057,-.122,.053,-.128,.033,-.131,.016,-.135,.011,-.191,-.003,-.233,-.016,-.266,-.029,-.295,-.045,-.317,-.061,-.338,-.085,-.341,-.086,-.346,-.084,-.367,-.062,-.378,-.046,-.384,-.032,-.392,.001,-.39,.033,-.384,.055,-.377,.07,-.364,.09,-.345,.108,-.327,.12,-.301,.13,-.28,.134],[.018,.066,.039,.057,.05,.048,.058,.037,.067,.014,.067,-.013,.057,-.036,.048,-.047,.037,-.055,.014,-.065,-.003,-.065,-.015,-.064,-.038,-.053,-.047,-.045,-.055,-.034,-.065,-.011,-.065,.006,-.064,.017,-.053,.04,-.045,.05,-.033,.059,-.011,.068],[.205,.319,.227,.314,.246,.306,.261,.296,.28,.279,.294,.259,.304,.238,.309,.216,.31,.192,.307,.172,.3,.149,.291,.133,.278,.115,.262,.103,.24,.092,.192,.074,.125,.057,.121,.061,.11,.081,.112,.087,.15,.141,.163,.163,.187,.212,.197,.243,.199,.256,.2,.277,.195,.316,.198,.32],[-.173,.308,-.148,.301,-.133,.293,-.116,.28,-.103,.266,-.09,.242,-.08,.219,-.069,.186,-.055,.128,-.056,.122,-.074,.111,-.08,.11,-.155,.16,-.195,.181,-.242,.197,-.272,.2,-.314,.195,-.317,.2,-.312,.227,-.298,.255,-.28,.276,-.267,.288,-.246,.3,-.222,.307,-.197,.31],[.025,.394,.047,.39,.069,.381,.087,.369,.1,.357,.114,.34,.124,.32,.131,.302,.134,.275,.131,.251,.115,.214,.097,.182,.064,.132,.055,.124,.03,.131,.016,.134,.012,.138,-.013,.227,-.024,.258,-.04,.289,-.053,.31,-.069,.327,-.084,.34,-.086,.344,-.066,.367,-.038,.384,-.006,.394],[-.528,.57,-.575,.562,-.591,.558,-.592,.557,-.59,.556,-.569,.549,-.539,.544,-.514,.542,-.479,.547,-.459,.552,-.434,.563,-.413,.575,-.395,.59],[.433,.589,.377,.591,.356,.59,.379,.572,.406,.558,.433,.548,.467,.543,.503,.544,.53,.549,.564,.562,.589,.576,.59,.578,.588,.579,.569,.581]],
];
```
### flower-lattice/engine.ts
```ts
import {
BORDER,
CENTER_COLUMN,
FLOWER_R,
FPS,
INK,
MARGIN,
PAPER,
PITCH,
POSE_COUNT,
ROWS,
TICKS,
TRAVEL_PER_LOOP,
} from "./params";
import { POSES } from "./flipbook";
function keepFlower(rings: number[][]): number[][] {
return rings.filter((r) => {
const n = r.length / 2;
let cx = 0;
let cy = 0;
for (let i = 0; i < r.length; i += 2) {
cx += r[i];
cy += r[i + 1];
}
return Math.hypot(cx / n, cy / n) < 0.5;
});
}
export class FlowerLattice {
private ctx: CanvasRenderingContext2D | null;
private raf = 0;
private t0 = 0;
private running = false;
private dpr = 1;
private lastTick = -1;
private poses: Path2D[];
readonly ok: boolean;
constructor(private canvas: HTMLCanvasElement) {
this.ctx = canvas.getContext("2d");
this.ok = !!this.ctx;
this.poses = POSES.map((rings) => {
const p = new Path2D();
for (const r of keepFlower(rings)) {
p.moveTo(r[0], r[1]);
for (let i = 2; i < r.length; i += 2) p.lineTo(r[i], r[i + 1]);
p.closePath();
}
return p;
});
if (this.ok) this.resize();
}
resize() {
const c = this.canvas;
const r = c.getBoundingClientRect();
this.dpr = Math.min(window.devicePixelRatio || 1, 2);
c.width = Math.round(r.width * this.dpr);
c.height = Math.round(r.height * this.dpr);
this.lastTick = -1;
if (!this.running) this.renderStill();
}
start() {
if (this.running || !this.ok) return;
this.running = true;
this.t0 = performance.now();
this.lastTick = -1;
const tick = (now: number) => {
if (!this.running) return;
const t = Math.floor(((now - this.t0) / 1000) * FPS) % TICKS;
if (t !== this.lastTick) {
this.lastTick = t;
this.draw(t);
}
this.raf = requestAnimationFrame(tick);
};
this.raf = requestAnimationFrame(tick);
}
stop() {
this.running = false;
if (this.raf) cancelAnimationFrame(this.raf);
this.raf = 0;
}
renderStill() {
if (this.ok) this.draw(0);
}
destroy() {
this.stop();
this.ctx = null;
}
private draw(tick: number) {
const ctx = this.ctx;
if (!ctx) return;
const { dpr } = this;
const W = this.canvas.width / dpr;
const H = this.canvas.height / dpr;
ctx.setTransform(dpr, 0, 0, dpr, 0, 0);
ctx.fillStyle = PAPER;
ctx.fillRect(0, 0, W, H);
const pitch = PITCH * H;
const margin = MARGIN * H;
const border = BORDER * H;
const inset = margin + border;
ctx.save();
ctx.beginPath();
ctx.rect(inset, inset, W - inset * 2, H - inset * 2);
ctx.clip();
const pose = this.poses[tick % POSE_COUNT];
const travel = (TRAVEL_PER_LOOP * tick * pitch) / TICKS;
const reach = FLOWER_R * pitch;
const base = CENTER_COLUMN ? W / 2 : pitch / 3;
ctx.fillStyle = INK;
for (let r = 0; r < ROWS.length; r++) {
const cy = ROWS[r] * H;
const drift = r === 0 ? -travel : r === ROWS.length - 1 ? travel : 0;
const start = ((base + drift) % pitch + pitch) % pitch - pitch;
for (let x = start; x < W + reach; x += pitch) {
if (x < -reach) continue;
ctx.save();
ctx.translate(x, cy);
ctx.scale(pitch, pitch);
ctx.fill(pose, "evenodd");
ctx.restore();
}
}
ctx.restore();
ctx.beginPath();
ctx.rect(margin, margin, W - margin * 2, H - margin * 2);
ctx.rect(inset, inset, W - inset * 2, H - inset * 2);
ctx.fillStyle = INK;
ctx.fill("evenodd");
}
}
```
### flower-lattice/FlowerLatticeCard.tsx
```ts
"use client";
import { useEffect, useRef } from "react";
import { FlowerLattice } from "./engine";
import { onTransitionChange } from "../../lib/view-transition";
export function FlowerLatticeCard({
bare = false,
viewTransitionName,
}: {
bare?: boolean;
viewTransitionName?: string;
} = {}) {
void bare;
const canvasRef = useRef<HTMLCanvasElement>(null);
useEffect(() => {
const canvas = canvasRef.current;
if (!canvas) return;
const reduced = window.matchMedia("(prefers-reduced-motion: reduce)").matches;
let engine: FlowerLattice | null = null;
let onScreen = false;
let hidden = false;
let inTransition = false;
const sync = () => {
if (!engine || reduced) return;
if (onScreen && !hidden && !inTransition) engine.start();
else engine.stop();
};
const raf = requestAnimationFrame(() => {
if (!canvasRef.current) return;
engine = new FlowerLattice(canvas);
if (!engine.ok) return;
if (reduced) engine.renderStill();
else sync();
});
const io = new IntersectionObserver(
(es) => {
onScreen = es[0]?.isIntersecting ?? false;
sync();
},
{ threshold: 0.2 },
);
io.observe(canvas);
const onVis = () => {
hidden = document.hidden;
sync();
};
document.addEventListener("visibilitychange", onVis);
const offTransition = onTransitionChange((active) => {
inTransition = active;
sync();
});
let rt = 0;
const onResize = () => {
window.clearTimeout(rt);
rt = window.setTimeout(() => engine?.resize(), 120);
};
window.addEventListener("resize", onResize);
return () => {
cancelAnimationFrame(raf);
io.disconnect();
document.removeEventListener("visibilitychange", onVis);
offTransition();
window.removeEventListener("resize", onResize);
window.clearTimeout(rt);
engine?.destroy();
};
}, []);
return (
<div
data-canvas-card
role="img"
aria-label="A lattice of rust-red line-drawn flowers on warm cream paper inside a heavy red frame. Every flower blinks in unison, its petals flooding closed and sweeping open, while the top row of flowers drifts right and the bottom row drifts left."
style={viewTransitionName ? { viewTransitionName } : undefined}
className="relative mx-auto aspect-[1344/620] w-full select-none overflow-hidden rounded-[12px] border border-[var(--border-line)] bg-[#faf3e8]"
>
<canvas ref={canvasRef} className="h-full w-full" />
</div>
);
}
```Discovery vocabulary
Related by governed terms
An animated SVG signature effect that draws out text as if hand-written.
More from Vault