[postgis-commits] svn - r2680 - trunk/regress

postgis-commits at postgis.refractions.net postgis-commits at postgis.refractions.net
Thu Aug 9 09:56:38 PDT 2007


Author: mleslie
Date: 2007-08-09 09:56:37 -0700 (Thu, 09 Aug 2007)
New Revision: 2680

Modified:
   trunk/regress/sql-mm-circularstring.sql
   trunk/regress/sql-mm-circularstring_expected.in
   trunk/regress/sql-mm-compoundcurve.sql
   trunk/regress/sql-mm-compoundcurve_expected.in
   trunk/regress/sql-mm-curvepoly.sql
   trunk/regress/sql-mm-curvepoly_expected.in
   trunk/regress/sql-mm-multicurve.sql
   trunk/regress/sql-mm-multicurve_expected.in
   trunk/regress/sql-mm-multisurface.sql
   trunk/regress/sql-mm-multisurface_expected.in
Log:
Updated the regression tests for curved geoms to avoid the byte ordering problems.

Modified: trunk/regress/sql-mm-circularstring.sql
===================================================================
--- trunk/regress/sql-mm-circularstring.sql	2007-08-03 20:58:27 UTC (rev 2679)
+++ trunk/regress/sql-mm-circularstring.sql	2007-08-09 16:56:37 UTC (rev 2680)
@@ -249,16 +249,18 @@
 SELECT 'asewkt03', asewkt(the_geom_3dz) FROM public.circularstring;        
 SELECT 'asewkt04', asewkt(the_geom_4d) FROM public.circularstring;        
 
-SELECT 'asbinary01', encode(asbinary(the_geom_2d), 'hex') FROM public.circularstring;
-SELECT 'asbinary02', encode(asbinary(the_geom_3dm), 'hex') FROM public.circularstring;
-SELECT 'asbinary03', encode(asbinary(the_geom_3dz), 'hex') FROM public.circularstring;
-SELECT 'asbinary04', encode(asbinary(the_geom_4d), 'hex') FROM public.circularstring;
+-- These tests will fail on different architectures
+-- We need a way to handle multiple byte orderings
+--SELECT 'asbinary01', encode(asbinary(the_geom_2d), 'hex') FROM public.circularstring;
+--SELECT 'asbinary02', encode(asbinary(the_geom_3dm), 'hex') FROM public.circularstring;
+--SELECT 'asbinary03', encode(asbinary(the_geom_3dz), 'hex') FROM public.circularstring;
+--SELECT 'asbinary04', encode(asbinary(the_geom_4d), 'hex') FROM public.circularstring;
+--
+--SELECT 'asewkb01', encode(asewkb(the_geom_2d), 'hex') FROM public.circularstring;
+--SELECT 'asewkb02', encode(asewkb(the_geom_3dm), 'hex') FROM public.circularstring;
+--SELECT 'asewkb03', encode(asewkb(the_geom_3dz), 'hex') FROM public.circularstring;
+--SELECT 'asewkb04', encode(asewkb(the_geom_4d), 'hex') FROM public.circularstring;
 
-SELECT 'asewkb01', encode(asewkb(the_geom_2d), 'hex') FROM public.circularstring;
-SELECT 'asewkb02', encode(asewkb(the_geom_3dm), 'hex') FROM public.circularstring;
-SELECT 'asewkb03', encode(asewkb(the_geom_3dz), 'hex') FROM public.circularstring;
-SELECT 'asewkb04', encode(asewkb(the_geom_4d), 'hex') FROM public.circularstring;
-
 SELECT 'ST_CurveToLine-201', asewkt(snapToGrid(ST_CurveToLine(the_geom_2d, 2), 'POINT(0 0 0 0)'::geometry, 1e-8, 1e-8, 1e-8, 1e-8)) FROM public.circularstring;
 SELECT 'ST_CurveToLine-202', asewkt(snapToGrid(ST_CurveToLine(the_geom_3dm, 2), 'POINT(0 0 0 0)'::geometry, 1e-8, 1e-8, 1e-8, 1e-8)) FROM public.circularstring;
 SELECT 'ST_CurveToLine-203', asewkt(snapToGrid(ST_CurveToLine(the_geom_3dz, 2), 'POINT(0 0 0 0)'::geometry, 1e-8, 1e-8, 1e-8, 1e-8)) FROM public.circularstring;
@@ -329,16 +331,18 @@
 SELECT 'asewkt03', ST_asewkt(the_geom_3dz) FROM public.circularstring;        
 SELECT 'asewkt04', ST_asewkt(the_geom_4d) FROM public.circularstring;        
 
-SELECT 'asbinary01', encode(ST_asbinary(the_geom_2d), 'hex') FROM public.circularstring;
-SELECT 'asbinary02', encode(ST_asbinary(the_geom_3dm), 'hex') FROM public.circularstring;
-SELECT 'asbinary03', encode(ST_asbinary(the_geom_3dz), 'hex') FROM public.circularstring;
-SELECT 'asbinary04', encode(ST_asbinary(the_geom_4d), 'hex') FROM public.circularstring;
+-- These tests will fail on different architectures
+-- We need a way to handle multiple byte orderings
+--SELECT 'asbinary01', encode(ST_asbinary(the_geom_2d), 'hex') FROM public.circularstring;
+--SELECT 'asbinary02', encode(ST_asbinary(the_geom_3dm), 'hex') FROM public.circularstring;
+--SELECT 'asbinary03', encode(ST_asbinary(the_geom_3dz), 'hex') FROM public.circularstring;
+--SELECT 'asbinary04', encode(ST_asbinary(the_geom_4d), 'hex') FROM public.circularstring;
+--
+--SELECT 'asewkb01', encode(ST_asewkb(the_geom_2d), 'hex') FROM public.circularstring;
+--SELECT 'asewkb02', encode(ST_asewkb(the_geom_3dm), 'hex') FROM public.circularstring;
+--SELECT 'asewkb03', encode(ST_asewkb(the_geom_3dz), 'hex') FROM public.circularstring;
+--SELECT 'asewkb04', encode(ST_asewkb(the_geom_4d), 'hex') FROM public.circularstring;
 
-SELECT 'asewkb01', encode(ST_asewkb(the_geom_2d), 'hex') FROM public.circularstring;
-SELECT 'asewkb02', encode(ST_asewkb(the_geom_3dm), 'hex') FROM public.circularstring;
-SELECT 'asewkb03', encode(ST_asewkb(the_geom_3dz), 'hex') FROM public.circularstring;
-SELECT 'asewkb04', encode(ST_asewkb(the_geom_4d), 'hex') FROM public.circularstring;
-
 --Removed due to discrepencies between hardware
 --SELECT 'box2d01', ST_box2d(the_geom_2d) FROM public.circularstring;
 --SELECT 'box2d02', ST_box2d(the_geom_3dm) FROM public.circularstring;

Modified: trunk/regress/sql-mm-circularstring_expected.in
===================================================================
--- trunk/regress/sql-mm-circularstring_expected.in	2007-08-03 20:58:27 UTC (rev 2679)
+++ trunk/regress/sql-mm-circularstring_expected.in	2007-08-09 16:56:37 UTC (rev 2680)
@@ -67,22 +67,6 @@
 asewkt03|CIRCULARSTRING(-5 0 0,0 5 1,5 0 2,10 -5 3,15 0 4)
 asewkt04|CIRCULARSTRING(0 0 0 0,0.267949192431123 1 3 -2,0.585786437626905 1.4142135623731 1 2)
 asewkt04|CIRCULARSTRING(-5 0 0 4,0 5 1 3,5 0 2 2,10 -5 3 1,15 0 4 0)
-asbinary01|0108000000030000000000000000000000000000000000000056cd9e5e1426d13f000000000000f03f67880133c3bee23fcd3b7f669ea0f63f
-asbinary01|01080000000500000000000000000014c000000000000000000000000000000000000000000000144000000000000014400000000000000000000000000000244000000000000014c00000000000002e400000000000000000
-asbinary02|0108000000030000000000000000000000000000000000000056cd9e5e1426d13f000000000000f03f67880133c3bee23fcd3b7f669ea0f63f
-asbinary02|01080000000500000000000000000014c000000000000000000000000000000000000000000000144000000000000014400000000000000000000000000000244000000000000014c00000000000002e400000000000000000
-asbinary03|0108000000030000000000000000000000000000000000000056cd9e5e1426d13f000000000000f03f67880133c3bee23fcd3b7f669ea0f63f
-asbinary03|01080000000500000000000000000014c000000000000000000000000000000000000000000000144000000000000014400000000000000000000000000000244000000000000014c00000000000002e400000000000000000
-asbinary04|0108000000030000000000000000000000000000000000000056cd9e5e1426d13f000000000000f03f67880133c3bee23fcd3b7f669ea0f63f
-asbinary04|01080000000500000000000000000014c000000000000000000000000000000000000000000000144000000000000014400000000000000000000000000000244000000000000014c00000000000002e400000000000000000
-asewkb01|0108000000030000000000000000000000000000000000000056cd9e5e1426d13f000000000000f03f67880133c3bee23fcd3b7f669ea0f63f
-asewkb01|01080000000500000000000000000014c000000000000000000000000000000000000000000000144000000000000014400000000000000000000000000000244000000000000014c00000000000002e400000000000000000
-asewkb02|01080000400300000000000000000000000000000000000000000000000000000056cd9e5e1426d13f000000000000f03f00000000000000c067880133c3bee23fcd3b7f669ea0f63f0000000000000040
-asewkb02|01080000400500000000000000000014c000000000000000000000000000001040000000000000000000000000000014400000000000000840000000000000144000000000000000000000000000000040000000000000244000000000000014c0000000000000f03f0000000000002e4000000000000000000000000000000000
-asewkb03|01080000800300000000000000000000000000000000000000000000000000000056cd9e5e1426d13f000000000000f03f000000000000084067880133c3bee23fcd3b7f669ea0f63f000000000000f03f
-asewkb03|01080000800500000000000000000014c00000000000000000000000000000000000000000000000000000000000001440000000000000f03f000000000000144000000000000000000000000000000040000000000000244000000000000014c000000000000008400000000000002e4000000000000000000000000000001040
-asewkb04|01080000c003000000000000000000000000000000000000000000000000000000000000000000000056cd9e5e1426d13f000000000000f03f000000000000084000000000000000c067880133c3bee23fcd3b7f669ea0f63f000000000000f03f0000000000000040
-asewkb04|01080000c00500000000000000000014c000000000000000000000000000000000000000000000104000000000000000000000000000001440000000000000f03f00000000000008400000000000001440000000000000000000000000000000400000000000000040000000000000244000000000000014c00000000000000840000000000000f03f0000000000002e40000000000000000000000000000010400000000000000000
 ST_CurveToLine-201|LINESTRING(0 0,0.58578644 1.41421356)
 ST_CurveToLine-201|LINESTRING(-5 0,-3.53553391 3.53553391,0 5,3.53553391 3.53553391,5 0,6.46446609 -3.53553391,10 -5,13.53553391 -3.53553391,15 0)
 ST_CurveToLine-202|LINESTRINGM(0 0 0,0.58578644 1.41421356 2)
@@ -169,22 +153,6 @@
 asewkt03|CIRCULARSTRING(-5 0 0,0 5 1,5 0 2,10 -5 3,15 0 4)
 asewkt04|CIRCULARSTRING(0 0 0 0,0.267949192431123 1 3 -2,0.585786437626905 1.4142135623731 1 2)
 asewkt04|CIRCULARSTRING(-5 0 0 4,0 5 1 3,5 0 2 2,10 -5 3 1,15 0 4 0)
-asbinary01|0108000000030000000000000000000000000000000000000056cd9e5e1426d13f000000000000f03f67880133c3bee23fcd3b7f669ea0f63f
-asbinary01|01080000000500000000000000000014c000000000000000000000000000000000000000000000144000000000000014400000000000000000000000000000244000000000000014c00000000000002e400000000000000000
-asbinary02|0108000000030000000000000000000000000000000000000056cd9e5e1426d13f000000000000f03f67880133c3bee23fcd3b7f669ea0f63f
-asbinary02|01080000000500000000000000000014c000000000000000000000000000000000000000000000144000000000000014400000000000000000000000000000244000000000000014c00000000000002e400000000000000000
-asbinary03|0108000000030000000000000000000000000000000000000056cd9e5e1426d13f000000000000f03f67880133c3bee23fcd3b7f669ea0f63f
-asbinary03|01080000000500000000000000000014c000000000000000000000000000000000000000000000144000000000000014400000000000000000000000000000244000000000000014c00000000000002e400000000000000000
-asbinary04|0108000000030000000000000000000000000000000000000056cd9e5e1426d13f000000000000f03f67880133c3bee23fcd3b7f669ea0f63f
-asbinary04|01080000000500000000000000000014c000000000000000000000000000000000000000000000144000000000000014400000000000000000000000000000244000000000000014c00000000000002e400000000000000000
-asewkb01|0108000000030000000000000000000000000000000000000056cd9e5e1426d13f000000000000f03f67880133c3bee23fcd3b7f669ea0f63f
-asewkb01|01080000000500000000000000000014c000000000000000000000000000000000000000000000144000000000000014400000000000000000000000000000244000000000000014c00000000000002e400000000000000000
-asewkb02|01080000400300000000000000000000000000000000000000000000000000000056cd9e5e1426d13f000000000000f03f00000000000000c067880133c3bee23fcd3b7f669ea0f63f0000000000000040
-asewkb02|01080000400500000000000000000014c000000000000000000000000000001040000000000000000000000000000014400000000000000840000000000000144000000000000000000000000000000040000000000000244000000000000014c0000000000000f03f0000000000002e4000000000000000000000000000000000
-asewkb03|01080000800300000000000000000000000000000000000000000000000000000056cd9e5e1426d13f000000000000f03f000000000000084067880133c3bee23fcd3b7f669ea0f63f000000000000f03f
-asewkb03|01080000800500000000000000000014c00000000000000000000000000000000000000000000000000000000000001440000000000000f03f000000000000144000000000000000000000000000000040000000000000244000000000000014c000000000000008400000000000002e4000000000000000000000000000001040
-asewkb04|01080000c003000000000000000000000000000000000000000000000000000000000000000000000056cd9e5e1426d13f000000000000f03f000000000000084000000000000000c067880133c3bee23fcd3b7f669ea0f63f000000000000f03f0000000000000040
-asewkb04|01080000c00500000000000000000014c000000000000000000000000000000000000000000000104000000000000000000000000000001440000000000000f03f00000000000008400000000000001440000000000000000000000000000000400000000000000040000000000000244000000000000014c00000000000000840000000000000f03f0000000000002e40000000000000000000000000000010400000000000000000
 #ifdef USE_JTS
 ERROR:  Exception in LWGEOM2JTS: curved geometry not supported.
 ERROR:  Exception in LWGEOM2JTS: curved geometry not supported.

Modified: trunk/regress/sql-mm-compoundcurve.sql
===================================================================
--- trunk/regress/sql-mm-compoundcurve.sql	2007-08-03 20:58:27 UTC (rev 2679)
+++ trunk/regress/sql-mm-compoundcurve.sql	2007-08-09 16:56:37 UTC (rev 2680)
@@ -168,16 +168,18 @@
 SELECT 'asewkt03', asewkt(the_geom_3dz) FROM public.compoundcurve;
 SELECT 'asewkt04', asewkt(the_geom_4d) FROM public.compoundcurve;
 
-SELECT 'asbinary01', encode(asbinary(the_geom_2d), 'hex') FROM public.compoundcurve;
-SELECT 'asbinary02', encode(asbinary(the_geom_3dm), 'hex') FROM public.compoundcurve;
-SELECT 'asbinary03', encode(asbinary(the_geom_3dz), 'hex') FROM public.compoundcurve;
-SELECT 'asbinary04', encode(asbinary(the_geom_4d), 'hex') FROM public.compoundcurve;
+-- These tests will fail on different architectures
+-- We need a way to handle multiple byte orderings
+--SELECT 'asbinary01', encode(asbinary(the_geom_2d), 'hex') FROM public.compoundcurve;
+--SELECT 'asbinary02', encode(asbinary(the_geom_3dm), 'hex') FROM public.compoundcurve;
+--SELECT 'asbinary03', encode(asbinary(the_geom_3dz), 'hex') FROM public.compoundcurve;
+--SELECT 'asbinary04', encode(asbinary(the_geom_4d), 'hex') FROM public.compoundcurve;
+--
+--SELECT 'asewkb01', encode(asewkb(the_geom_2d), 'hex') FROM public.compoundcurve;
+--SELECT 'asewkb02', encode(asewkb(the_geom_3dm), 'hex') FROM public.compoundcurve;
+--SELECT 'asewkb03', encode(asewkb(the_geom_3dz), 'hex') FROM public.compoundcurve;
+--SELECT 'asewkb04', encode(asewkb(the_geom_4d), 'hex') FROM public.compoundcurve;
 
-SELECT 'asewkb01', encode(asewkb(the_geom_2d), 'hex') FROM public.compoundcurve;
-SELECT 'asewkb02', encode(asewkb(the_geom_3dm), 'hex') FROM public.compoundcurve;
-SELECT 'asewkb03', encode(asewkb(the_geom_3dz), 'hex') FROM public.compoundcurve;
-SELECT 'asewkb04', encode(asewkb(the_geom_4d), 'hex') FROM public.compoundcurve;
-
 SELECT 'ST_CurveToLine-201', asewkt(snapToGrid(ST_CurveToLine(the_geom_2d, 2), 'POINT(0 0 0 0)'::geometry, 1e-8, 1e-8, 1e-8, 1e-8)) FROM public.compoundcurve;
 SELECT 'ST_CurveToLine-202', asewkt(snapToGrid(ST_CurveToLine(the_geom_3dm, 2), 'POINT(0 0 0 0)'::geometry, 1e-8, 1e-8, 1e-8, 1e-8)) FROM public.compoundcurve;
 SELECT 'ST_CurveToLine-203', asewkt(snapToGrid(ST_CurveToLine(the_geom_3dz, 2), 'POINT(0 0 0 0)'::geometry, 1e-8, 1e-8, 1e-8, 1e-8)) FROM public.compoundcurve;
@@ -248,16 +250,16 @@
 SELECT 'asewkt03', ST_asewkt(the_geom_3dz) FROM public.compoundcurve;
 SELECT 'asewkt04', ST_asewkt(the_geom_4d) FROM public.compoundcurve;
 
-SELECT 'asbinary01', encode(ST_asbinary(the_geom_2d), 'hex') FROM public.compoundcurve;
-SELECT 'asbinary02', encode(ST_asbinary(the_geom_3dm), 'hex') FROM public.compoundcurve;
-SELECT 'asbinary03', encode(ST_asbinary(the_geom_3dz), 'hex') FROM public.compoundcurve;
-SELECT 'asbinary04', encode(ST_asbinary(the_geom_4d), 'hex') FROM public.compoundcurve;
+--SELECT 'asbinary01', encode(ST_asbinary(the_geom_2d), 'hex') FROM public.compoundcurve;
+--SELECT 'asbinary02', encode(ST_asbinary(the_geom_3dm), 'hex') FROM public.compoundcurve;
+--SELECT 'asbinary03', encode(ST_asbinary(the_geom_3dz), 'hex') FROM public.compoundcurve;
+--SELECT 'asbinary04', encode(ST_asbinary(the_geom_4d), 'hex') FROM public.compoundcurve;
+--
+--SELECT 'asewkb01', encode(ST_asewkb(the_geom_2d), 'hex') FROM public.compoundcurve;
+--SELECT 'asewkb02', encode(ST_asewkb(the_geom_3dm), 'hex') FROM public.compoundcurve;
+--SELECT 'asewkb03', encode(ST_asewkb(the_geom_3dz), 'hex') FROM public.compoundcurve;
+--SELECT 'asewkb04', encode(ST_asewkb(the_geom_4d), 'hex') FROM public.compoundcurve;
 
-SELECT 'asewkb01', encode(ST_asewkb(the_geom_2d), 'hex') FROM public.compoundcurve;
-SELECT 'asewkb02', encode(ST_asewkb(the_geom_3dm), 'hex') FROM public.compoundcurve;
-SELECT 'asewkb03', encode(ST_asewkb(the_geom_3dz), 'hex') FROM public.compoundcurve;
-SELECT 'asewkb04', encode(ST_asewkb(the_geom_4d), 'hex') FROM public.compoundcurve;
-
 -- Removed due to discrepencies between hardware
 --SELECT 'box2d01', ST_box2d(the_geom_2d) FROM public.compoundcurve;
 --SELECT 'box2d02', ST_box2d(the_geom_3dm) FROM public.compoundcurve;

Modified: trunk/regress/sql-mm-compoundcurve_expected.in
===================================================================
--- trunk/regress/sql-mm-compoundcurve_expected.in	2007-08-03 20:58:27 UTC (rev 2679)
+++ trunk/regress/sql-mm-compoundcurve_expected.in	2007-08-09 16:56:37 UTC (rev 2680)
@@ -31,14 +31,6 @@
 asewkt02|COMPOUNDCURVEM(CIRCULARSTRING(0 0 0,0.267949192431123 1 -2,0.585786437626905 1.4142135623731 2),(0.585786437626905 1.4142135623731 2,2 0 0,0 0 0))
 asewkt03|COMPOUNDCURVE(CIRCULARSTRING(0 0 0,0.267949192431123 1 3,0.585786437626905 1.4142135623731 1),(0.585786437626905 1.4142135623731 1,2 0 0,0 0 0))
 asewkt04|COMPOUNDCURVE(CIRCULARSTRING(0 0 0 0,0.267949192431123 1 3 -2,0.585786437626905 1.4142135623731 1 2),(0.585786437626905 1.4142135623731 1 2,2 0 0 0,0 0 0 0))
-asbinary01|0109000000020000000108000000030000000000000000000000000000000000000056cd9e5e1426d13f000000000000f03f67880133c3bee23fcd3b7f669ea0f63f01020000000300000067880133c3bee23fcd3b7f669ea0f63f0000000000000040000000000000000000000000000000000000000000000000
-asbinary02|0109000000020000000108000000030000000000000000000000000000000000000056cd9e5e1426d13f000000000000f03f67880133c3bee23fcd3b7f669ea0f63f01020000000300000067880133c3bee23fcd3b7f669ea0f63f0000000000000040000000000000000000000000000000000000000000000000
-asbinary03|0109000000020000000108000000030000000000000000000000000000000000000056cd9e5e1426d13f000000000000f03f67880133c3bee23fcd3b7f669ea0f63f01020000000300000067880133c3bee23fcd3b7f669ea0f63f0000000000000040000000000000000000000000000000000000000000000000
-asbinary04|0109000000020000000108000000030000000000000000000000000000000000000056cd9e5e1426d13f000000000000f03f67880133c3bee23fcd3b7f669ea0f63f01020000000300000067880133c3bee23fcd3b7f669ea0f63f0000000000000040000000000000000000000000000000000000000000000000
-asewkb01|0109000000020000000108000000030000000000000000000000000000000000000056cd9e5e1426d13f000000000000f03f67880133c3bee23fcd3b7f669ea0f63f01020000000300000067880133c3bee23fcd3b7f669ea0f63f0000000000000040000000000000000000000000000000000000000000000000
-asewkb02|01090000400200000001080000400300000000000000000000000000000000000000000000000000000056cd9e5e1426d13f000000000000f03f00000000000000c067880133c3bee23fcd3b7f669ea0f63f000000000000004001020000400300000067880133c3bee23fcd3b7f669ea0f63f0000000000000040000000000000004000000000000000000000000000000000000000000000000000000000000000000000000000000000
-asewkb03|01090000800200000001080000800300000000000000000000000000000000000000000000000000000056cd9e5e1426d13f000000000000f03f000000000000084067880133c3bee23fcd3b7f669ea0f63f000000000000f03f01020000800300000067880133c3bee23fcd3b7f669ea0f63f000000000000f03f000000000000004000000000000000000000000000000000000000000000000000000000000000000000000000000000
-asewkb04|01090000c00200000001080000c003000000000000000000000000000000000000000000000000000000000000000000000056cd9e5e1426d13f000000000000f03f000000000000084000000000000000c067880133c3bee23fcd3b7f669ea0f63f000000000000f03f000000000000004001020000c00300000067880133c3bee23fcd3b7f669ea0f63f000000000000f03f000000000000004000000000000000400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
 ST_CurveToLine-201|LINESTRING(0 0,0.58578644 1.41421356,2 0,0 0)
 ST_CurveToLine-202|LINESTRINGM(0 0 0,0.58578644 1.41421356 2,2 0 0,0 0 0)
 ST_CurveToLine-203|LINESTRING(0 0 0,0.58578644 1.41421356 1,2 0 0,0 0 0)
@@ -93,14 +85,6 @@
 asewkt02|COMPOUNDCURVEM(CIRCULARSTRING(0 0 0,0.267949192431123 1 -2,0.585786437626905 1.4142135623731 2),(0.585786437626905 1.4142135623731 2,2 0 0,0 0 0))
 asewkt03|COMPOUNDCURVE(CIRCULARSTRING(0 0 0,0.267949192431123 1 3,0.585786437626905 1.4142135623731 1),(0.585786437626905 1.4142135623731 1,2 0 0,0 0 0))
 asewkt04|COMPOUNDCURVE(CIRCULARSTRING(0 0 0 0,0.267949192431123 1 3 -2,0.585786437626905 1.4142135623731 1 2),(0.585786437626905 1.4142135623731 1 2,2 0 0 0,0 0 0 0))
-asbinary01|0109000000020000000108000000030000000000000000000000000000000000000056cd9e5e1426d13f000000000000f03f67880133c3bee23fcd3b7f669ea0f63f01020000000300000067880133c3bee23fcd3b7f669ea0f63f0000000000000040000000000000000000000000000000000000000000000000
-asbinary02|0109000000020000000108000000030000000000000000000000000000000000000056cd9e5e1426d13f000000000000f03f67880133c3bee23fcd3b7f669ea0f63f01020000000300000067880133c3bee23fcd3b7f669ea0f63f0000000000000040000000000000000000000000000000000000000000000000
-asbinary03|0109000000020000000108000000030000000000000000000000000000000000000056cd9e5e1426d13f000000000000f03f67880133c3bee23fcd3b7f669ea0f63f01020000000300000067880133c3bee23fcd3b7f669ea0f63f0000000000000040000000000000000000000000000000000000000000000000
-asbinary04|0109000000020000000108000000030000000000000000000000000000000000000056cd9e5e1426d13f000000000000f03f67880133c3bee23fcd3b7f669ea0f63f01020000000300000067880133c3bee23fcd3b7f669ea0f63f0000000000000040000000000000000000000000000000000000000000000000
-asewkb01|0109000000020000000108000000030000000000000000000000000000000000000056cd9e5e1426d13f000000000000f03f67880133c3bee23fcd3b7f669ea0f63f01020000000300000067880133c3bee23fcd3b7f669ea0f63f0000000000000040000000000000000000000000000000000000000000000000
-asewkb02|01090000400200000001080000400300000000000000000000000000000000000000000000000000000056cd9e5e1426d13f000000000000f03f00000000000000c067880133c3bee23fcd3b7f669ea0f63f000000000000004001020000400300000067880133c3bee23fcd3b7f669ea0f63f0000000000000040000000000000004000000000000000000000000000000000000000000000000000000000000000000000000000000000
-asewkb03|01090000800200000001080000800300000000000000000000000000000000000000000000000000000056cd9e5e1426d13f000000000000f03f000000000000084067880133c3bee23fcd3b7f669ea0f63f000000000000f03f01020000800300000067880133c3bee23fcd3b7f669ea0f63f000000000000f03f000000000000004000000000000000000000000000000000000000000000000000000000000000000000000000000000
-asewkb04|01090000c00200000001080000c003000000000000000000000000000000000000000000000000000000000000000000000056cd9e5e1426d13f000000000000f03f000000000000084000000000000000c067880133c3bee23fcd3b7f669ea0f63f000000000000f03f000000000000004001020000c00300000067880133c3bee23fcd3b7f669ea0f63f000000000000f03f000000000000004000000000000000400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
 #ifdef USE_JTS
 ERROR:  Exception in LWGEOM2JTS: curved geometry not supported.
 ERROR:  Exception in LWGEOM2JTS: curved geometry not supported.

Modified: trunk/regress/sql-mm-curvepoly.sql
===================================================================
--- trunk/regress/sql-mm-curvepoly.sql	2007-08-03 20:58:27 UTC (rev 2679)
+++ trunk/regress/sql-mm-curvepoly.sql	2007-08-09 16:56:37 UTC (rev 2680)
@@ -287,16 +287,18 @@
 SELECT 'asewkt03', asewkt(the_geom_3dz) FROM public.curvepolygon;
 SELECT 'asewkt04', asewkt(the_geom_4d) FROM public.curvepolygon;
 
-SELECT 'asbinary01', encode(asbinary(the_geom_2d), 'hex') FROM public.curvepolygon;
-SELECT 'asbinary02', encode(asbinary(the_geom_3dm), 'hex') FROM public.curvepolygon;
-SELECT 'asbinary03', encode(asbinary(the_geom_3dz), 'hex') FROM public.curvepolygon;
-SELECT 'asbinary04', encode(asbinary(the_geom_4d), 'hex') FROM public.curvepolygon;
+-- These tests will fail on different architectures
+-- We need a way to handle multiple byte orderings
+--SELECT 'asbinary01', encode(asbinary(the_geom_2d), 'hex') FROM public.curvepolygon;
+--SELECT 'asbinary02', encode(asbinary(the_geom_3dm), 'hex') FROM public.curvepolygon;
+--SELECT 'asbinary03', encode(asbinary(the_geom_3dz), 'hex') FROM public.curvepolygon;
+--SELECT 'asbinary04', encode(asbinary(the_geom_4d), 'hex') FROM public.curvepolygon;
+--
+--SELECT 'asewkb01', encode(asewkb(the_geom_2d), 'hex') FROM public.curvepolygon;
+--SELECT 'asewkb02', encode(asewkb(the_geom_3dm), 'hex') FROM public.curvepolygon;
+--SELECT 'asewkb03', encode(asewkb(the_geom_3dz), 'hex') FROM public.curvepolygon;
+--SELECT 'asewkb04', encode(asewkb(the_geom_4d), 'hex') FROM public.curvepolygon;
 
-SELECT 'asewkb01', encode(asewkb(the_geom_2d), 'hex') FROM public.curvepolygon;
-SELECT 'asewkb02', encode(asewkb(the_geom_3dm), 'hex') FROM public.curvepolygon;
-SELECT 'asewkb03', encode(asewkb(the_geom_3dz), 'hex') FROM public.curvepolygon;
-SELECT 'asewkb04', encode(asewkb(the_geom_4d), 'hex') FROM public.curvepolygon;
-
 SELECT 'ST_CurveToLine-201', asewkt(snapToGrid(ST_CurveToLine(the_geom_2d, 2), 'POINT(0 0 0 0)'::geometry, 1e-8, 1e-8, 1e-8, 1e-8)) FROM public.curvepolygon;
 SELECT 'ST_CurveToLine-202', asewkt(snapToGrid(ST_CurveToLine(the_geom_3dm, 2), 'POINT(0 0 0 0)'::geometry, 1e-8, 1e-8, 1e-8, 1e-8)) FROM public.curvepolygon;
 SELECT 'ST_CurveToLine-203', asewkt(snapToGrid(ST_CurveToLine(the_geom_3dz, 2), 'POINT(0 0 0 0)'::geometry, 1e-8, 1e-8, 1e-8, 1e-8)) FROM public.curvepolygon;
@@ -392,16 +394,18 @@
 SELECT 'asewkt03', ST_asewkt(the_geom_3dz) FROM public.curvepolygon;
 SELECT 'asewkt04', ST_asewkt(the_geom_4d) FROM public.curvepolygon;
 
-SELECT 'asbinary01', encode(ST_asbinary(the_geom_2d), 'hex') FROM public.curvepolygon;
-SELECT 'asbinary02', encode(ST_asbinary(the_geom_3dm), 'hex') FROM public.curvepolygon;
-SELECT 'asbinary03', encode(ST_asbinary(the_geom_3dz), 'hex') FROM public.curvepolygon;
-SELECT 'asbinary04', encode(ST_asbinary(the_geom_4d), 'hex') FROM public.curvepolygon;
+-- These tests will fail on different architectures
+-- We need a way to handle multiple byte orderings
+--SELECT 'asbinary01', encode(ST_asbinary(the_geom_2d), 'hex') FROM public.curvepolygon;
+--SELECT 'asbinary02', encode(ST_asbinary(the_geom_3dm), 'hex') FROM public.curvepolygon;
+--SELECT 'asbinary03', encode(ST_asbinary(the_geom_3dz), 'hex') FROM public.curvepolygon;
+--SELECT 'asbinary04', encode(ST_asbinary(the_geom_4d), 'hex') FROM public.curvepolygon;
+--
+--SELECT 'asewkb01', encode(ST_asewkb(the_geom_2d), 'hex') FROM public.curvepolygon;
+--SELECT 'asewkb02', encode(ST_asewkb(the_geom_3dm), 'hex') FROM public.curvepolygon;
+--SELECT 'asewkb03', encode(ST_asewkb(the_geom_3dz), 'hex') FROM public.curvepolygon;
+--SELECT 'asewkb04', encode(ST_asewkb(the_geom_4d), 'hex') FROM public.curvepolygon;
 
-SELECT 'asewkb01', encode(ST_asewkb(the_geom_2d), 'hex') FROM public.curvepolygon;
-SELECT 'asewkb02', encode(ST_asewkb(the_geom_3dm), 'hex') FROM public.curvepolygon;
-SELECT 'asewkb03', encode(ST_asewkb(the_geom_3dz), 'hex') FROM public.curvepolygon;
-SELECT 'asewkb04', encode(ST_asewkb(the_geom_4d), 'hex') FROM public.curvepolygon;
-
 -- Removed due to descrepencies between hardware
 --SELECT 'box2d01', ST_box2d(the_geom_2d) FROM public.curvepolygon;
 --SELECT 'box2d02', ST_box2d(the_geom_3dm) FROM public.curvepolygon;

Modified: trunk/regress/sql-mm-curvepoly_expected.in
===================================================================
--- trunk/regress/sql-mm-curvepoly_expected.in	2007-08-03 20:58:27 UTC (rev 2679)
+++ trunk/regress/sql-mm-curvepoly_expected.in	2007-08-09 16:56:37 UTC (rev 2680)
@@ -31,14 +31,6 @@
 asewkt02|CURVEPOLYGONM(CIRCULARSTRING(-2 0 0,-1 -1 2,0 0 4,1 -1 6,2 0 8,0 2 4,-2 0 0),(-1 0 2,0 0.5 4,1 0 6,0 1 4,-1 0 2))
 asewkt03|CURVEPOLYGON(CIRCULARSTRING(-2 0 0,-1 -1 1,0 0 2,1 -1 3,2 0 4,0 2 2,-2 0 0),(-1 0 1,0 0.5 2,1 0 3,0 1 3,-1 0 1))
 asewkt04|CURVEPOLYGON(CIRCULARSTRING(-2 0 0 0,-1 -1 1 2,0 0 2 4,1 -1 3 6,2 0 4 8,0 2 2 4,-2 0 0 0),(-1 0 1 2,0 0.5 2 4,1 0 3 6,0 1 3 4,-1 0 1 2))
-asbinary01|010d0000000200000001080000000700000000000000000000c00000000000000000000000000000f0bf000000000000f0bf00000000000000000000000000000000000000000000f03f000000000000f0bf000000000000004000000000000000000000000000000000000000000000004000000000000000c00000000000000000010200000005000000000000000000f0bf00000000000000000000000000000000000000000000e03f000000000000f03f00000000000000000000000000000000000000000000f03f000000000000f0bf0000000000000000
-asbinary02|010d0000000200000001080000000700000000000000000000c00000000000000000000000000000f0bf000000000000f0bf00000000000000000000000000000000000000000000f03f000000000000f0bf000000000000004000000000000000000000000000000000000000000000004000000000000000c00000000000000000010200000005000000000000000000f0bf00000000000000000000000000000000000000000000e03f000000000000f03f00000000000000000000000000000000000000000000f03f000000000000f0bf0000000000000000
-asbinary03|010d0000000200000001080000000700000000000000000000c00000000000000000000000000000f0bf000000000000f0bf00000000000000000000000000000000000000000000f03f000000000000f0bf000000000000004000000000000000000000000000000000000000000000004000000000000000c00000000000000000010200000005000000000000000000f0bf00000000000000000000000000000000000000000000e03f000000000000f03f00000000000000000000000000000000000000000000f03f000000000000f0bf0000000000000000
-asbinary04|010d0000000200000001080000000700000000000000000000c00000000000000000000000000000f0bf000000000000f0bf00000000000000000000000000000000000000000000f03f000000000000f0bf000000000000004000000000000000000000000000000000000000000000004000000000000000c00000000000000000010200000005000000000000000000f0bf00000000000000000000000000000000000000000000e03f000000000000f03f00000000000000000000000000000000000000000000f03f000000000000f0bf0000000000000000
-asewkb01|010d0000000200000001080000000700000000000000000000c00000000000000000000000000000f0bf000000000000f0bf00000000000000000000000000000000000000000000f03f000000000000f0bf000000000000004000000000000000000000000000000000000000000000004000000000000000c00000000000000000010200000005000000000000000000f0bf00000000000000000000000000000000000000000000e03f000000000000f03f00000000000000000000000000000000000000000000f03f000000000000f0bf0000000000000000
-asewkb02|010d0000400200000001080000400700000000000000000000c000000000000000000000000000000000000000000000f0bf000000000000f0bf0000000000000040000000000000000000000000000000000000000000001040000000000000f03f000000000000f0bf000000000000184000000000000000400000000000000000000000000000204000000000000000000000000000000040000000000000104000000000000000c000000000000000000000000000000000010200004005000000000000000000f0bf000000000000000000000000000000400000000000000000000000000000e03f0000000000001040000000000000f03f000000000000000000000000000018400000000000000000000000000000f03f0000000000001040000000000000f0bf00000000000000000000000000000040
-asewkb03|010d0000800200000001080000800700000000000000000000c000000000000000000000000000000000000000000000f0bf000000000000f0bf000000000000f03f000000000000000000000000000000000000000000000040000000000000f03f000000000000f0bf000000000000084000000000000000400000000000000000000000000000104000000000000000000000000000000040000000000000004000000000000000c000000000000000000000000000000000010200008005000000000000000000f0bf0000000000000000000000000000f03f0000000000000000000000000000e03f0000000000000040000000000000f03f000000000000000000000000000008400000000000000000000000000000f03f0000000000000840000000000000f0bf0000000000000000000000000000f03f
-asewkb04|010d0000c00200000001080000c00700000000000000000000c0000000000000000000000000000000000000000000000000000000000000f0bf000000000000f0bf000000000000f03f00000000000000400000000000000000000000000000000000000000000000400000000000001040000000000000f03f000000000000f0bf000000000000084000000000000018400000000000000040000000000000000000000000000010400000000000002040000000000000000000000000000000400000000000000040000000000000104000000000000000c000000000000000000000000000000000000000000000000001020000c005000000000000000000f0bf0000000000000000000000000000f03f00000000000000400000000000000000000000000000e03f00000000000000400000000000001040000000000000f03f0000000000000000000000000000084000000000000018400000000000000000000000000000f03f00000000000008400000000000001040000000000000f0bf0000000000000000000000000000f03f0000000000000040
 ST_CurveToLine-201|POLYGON((-2 0,-1.70710678 -0.70710678,-1 -1,-0.29289322 -0.70710678,0 0,0.29289322 -0.70710678,1 -1,1.70710678 -0.70710678,2 0,1.41421356 1.41421356,0 2,-1.41421356 1.41421356,-2 0),(-1 0,0 0.5,1 0,0 1,-1 0))
 ST_CurveToLine-202|POLYGONM((-2 0 0,-1.70710678 -0.70710678 1,-1 -1 2,-0.29289322 -0.70710678 3,0 0 4,0.29289322 -0.70710678 5,1 -1 6,1.70710678 -0.70710678 7,2 0 8,1.41421356 1.41421356 6,0 2 4,-1.41421356 1.41421356 2,-2 0 0),(-1 0 2,0 0.5 4,1 0 6,0 1 4,-1 0 2))
 ST_CurveToLine-203|POLYGON((-2 0 0,-1.70710678 -0.70710678 0.5,-1 -1 1,-0.29289322 -0.70710678 1.5,0 0 2,0.29289322 -0.70710678 2.5,1 -1 3,1.70710678 -0.70710678 3.5,2 0 4,1.41421356 1.41421356 3,0 2 2,-1.41421356 1.41421356 1,-2 0 0),(-1 0 1,0 0.5 2,1 0 3,0 1 3,-1 0 1))
@@ -106,14 +98,6 @@
 asewkt02|CURVEPOLYGONM(CIRCULARSTRING(-2 0 0,-1 -1 2,0 0 4,1 -1 6,2 0 8,0 2 4,-2 0 0),(-1 0 2,0 0.5 4,1 0 6,0 1 4,-1 0 2))
 asewkt03|CURVEPOLYGON(CIRCULARSTRING(-2 0 0,-1 -1 1,0 0 2,1 -1 3,2 0 4,0 2 2,-2 0 0),(-1 0 1,0 0.5 2,1 0 3,0 1 3,-1 0 1))
 asewkt04|CURVEPOLYGON(CIRCULARSTRING(-2 0 0 0,-1 -1 1 2,0 0 2 4,1 -1 3 6,2 0 4 8,0 2 2 4,-2 0 0 0),(-1 0 1 2,0 0.5 2 4,1 0 3 6,0 1 3 4,-1 0 1 2))
-asbinary01|010d0000000200000001080000000700000000000000000000c00000000000000000000000000000f0bf000000000000f0bf00000000000000000000000000000000000000000000f03f000000000000f0bf000000000000004000000000000000000000000000000000000000000000004000000000000000c00000000000000000010200000005000000000000000000f0bf00000000000000000000000000000000000000000000e03f000000000000f03f00000000000000000000000000000000000000000000f03f000000000000f0bf0000000000000000
-asbinary02|010d0000000200000001080000000700000000000000000000c00000000000000000000000000000f0bf000000000000f0bf00000000000000000000000000000000000000000000f03f000000000000f0bf000000000000004000000000000000000000000000000000000000000000004000000000000000c00000000000000000010200000005000000000000000000f0bf00000000000000000000000000000000000000000000e03f000000000000f03f00000000000000000000000000000000000000000000f03f000000000000f0bf0000000000000000
-asbinary03|010d0000000200000001080000000700000000000000000000c00000000000000000000000000000f0bf000000000000f0bf00000000000000000000000000000000000000000000f03f000000000000f0bf000000000000004000000000000000000000000000000000000000000000004000000000000000c00000000000000000010200000005000000000000000000f0bf00000000000000000000000000000000000000000000e03f000000000000f03f00000000000000000000000000000000000000000000f03f000000000000f0bf0000000000000000
-asbinary04|010d0000000200000001080000000700000000000000000000c00000000000000000000000000000f0bf000000000000f0bf00000000000000000000000000000000000000000000f03f000000000000f0bf000000000000004000000000000000000000000000000000000000000000004000000000000000c00000000000000000010200000005000000000000000000f0bf00000000000000000000000000000000000000000000e03f000000000000f03f00000000000000000000000000000000000000000000f03f000000000000f0bf0000000000000000
-asewkb01|010d0000000200000001080000000700000000000000000000c00000000000000000000000000000f0bf000000000000f0bf00000000000000000000000000000000000000000000f03f000000000000f0bf000000000000004000000000000000000000000000000000000000000000004000000000000000c00000000000000000010200000005000000000000000000f0bf00000000000000000000000000000000000000000000e03f000000000000f03f00000000000000000000000000000000000000000000f03f000000000000f0bf0000000000000000
-asewkb02|010d0000400200000001080000400700000000000000000000c000000000000000000000000000000000000000000000f0bf000000000000f0bf0000000000000040000000000000000000000000000000000000000000001040000000000000f03f000000000000f0bf000000000000184000000000000000400000000000000000000000000000204000000000000000000000000000000040000000000000104000000000000000c000000000000000000000000000000000010200004005000000000000000000f0bf000000000000000000000000000000400000000000000000000000000000e03f0000000000001040000000000000f03f000000000000000000000000000018400000000000000000000000000000f03f0000000000001040000000000000f0bf00000000000000000000000000000040
-asewkb03|010d0000800200000001080000800700000000000000000000c000000000000000000000000000000000000000000000f0bf000000000000f0bf000000000000f03f000000000000000000000000000000000000000000000040000000000000f03f000000000000f0bf000000000000084000000000000000400000000000000000000000000000104000000000000000000000000000000040000000000000004000000000000000c000000000000000000000000000000000010200008005000000000000000000f0bf0000000000000000000000000000f03f0000000000000000000000000000e03f0000000000000040000000000000f03f000000000000000000000000000008400000000000000000000000000000f03f0000000000000840000000000000f0bf0000000000000000000000000000f03f
-asewkb04|010d0000c00200000001080000c00700000000000000000000c0000000000000000000000000000000000000000000000000000000000000f0bf000000000000f0bf000000000000f03f00000000000000400000000000000000000000000000000000000000000000400000000000001040000000000000f03f000000000000f0bf000000000000084000000000000018400000000000000040000000000000000000000000000010400000000000002040000000000000000000000000000000400000000000000040000000000000104000000000000000c000000000000000000000000000000000000000000000000001020000c005000000000000000000f0bf0000000000000000000000000000f03f00000000000000400000000000000000000000000000e03f00000000000000400000000000001040000000000000f03f0000000000000000000000000000084000000000000018400000000000000000000000000000f03f00000000000008400000000000001040000000000000f0bf0000000000000000000000000000f03f0000000000000040
 #ifdef USE_JTS
 ERROR:  Exception in LWGEOM2JTS: curved geometry not supported.
 ERROR:  Exception in LWGEOM2JTS: curved geometry not supported.

Modified: trunk/regress/sql-mm-multicurve.sql
===================================================================
--- trunk/regress/sql-mm-multicurve.sql	2007-08-03 20:58:27 UTC (rev 2679)
+++ trunk/regress/sql-mm-multicurve.sql	2007-08-09 16:56:37 UTC (rev 2680)
@@ -207,16 +207,18 @@
 SELECT 'asewkt03', asewkt(the_geom_3dz) FROM public.multicurve;
 SELECT 'asewkt04', asewkt(the_geom_4d) FROM public.multicurve;
 
-SELECT 'asbinary01', encode(asbinary(the_geom_2d), 'hex') FROM public.multicurve;
-SELECT 'asbinary02', encode(asbinary(the_geom_3dm), 'hex') FROM public.multicurve;
-SELECT 'asbinary03', encode(asbinary(the_geom_3dz), 'hex') FROM public.multicurve;
-SELECT 'asbinary04', encode(asbinary(the_geom_4d), 'hex') FROM public.multicurve;
+-- These tests will fail on different architectures
+-- We need a way to handle multiple byte orderings
+--SELECT 'asbinary01', encode(asbinary(the_geom_2d), 'hex') FROM public.multicurve;
+--SELECT 'asbinary02', encode(asbinary(the_geom_3dm), 'hex') FROM public.multicurve;
+--SELECT 'asbinary03', encode(asbinary(the_geom_3dz), 'hex') FROM public.multicurve;
+--SELECT 'asbinary04', encode(asbinary(the_geom_4d), 'hex') FROM public.multicurve;
+--
+--SELECT 'asewkb01', encode(asewkb(the_geom_2d), 'hex') FROM public.multicurve;
+--SELECT 'asewkb02', encode(asewkb(the_geom_3dm), 'hex') FROM public.multicurve;
+--SELECT 'asewkb03', encode(asewkb(the_geom_3dz), 'hex') FROM public.multicurve;
+--SELECT 'asewkb04', encode(asewkb(the_geom_4d), 'hex') FROM public.multicurve;
 
-SELECT 'asewkb01', encode(asewkb(the_geom_2d), 'hex') FROM public.multicurve;
-SELECT 'asewkb02', encode(asewkb(the_geom_3dm), 'hex') FROM public.multicurve;
-SELECT 'asewkb03', encode(asewkb(the_geom_3dz), 'hex') FROM public.multicurve;
-SELECT 'asewkb04', encode(asewkb(the_geom_4d), 'hex') FROM public.multicurve;
-
 SELECT 'ST_CurveToLine-201', asewkt(snapToGrid(ST_CurveToLine(the_geom_2d, 2), 'POINT(0 0 0 0)'::geometry, 1e-8, 1e-8, 1e-8, 1e-8)) FROM public.multicurve;
 SELECT 'ST_CurveToLine-202', asewkt(snapToGrid(ST_CurveToLine(the_geom_3dm, 2), 'POINT(0 0 0 0)'::geometry, 1e-8, 1e-8, 1e-8, 1e-8)) FROM public.multicurve;
 SELECT 'ST_CurveToLine-203', asewkt(snapToGrid(ST_CurveToLine(the_geom_3dz, 2), 'POINT(0 0 0 0)'::geometry, 1e-8, 1e-8, 1e-8, 1e-8)) FROM public.multicurve;
@@ -287,16 +289,18 @@
 SELECT 'asewkt03', ST_asewkt(the_geom_3dz) FROM public.multicurve;
 SELECT 'asewkt04', ST_asewkt(the_geom_4d) FROM public.multicurve;
 
-SELECT 'asbinary01', encode(ST_asbinary(the_geom_2d), 'hex') FROM public.multicurve;
-SELECT 'asbinary02', encode(ST_asbinary(the_geom_3dm), 'hex') FROM public.multicurve;
-SELECT 'asbinary03', encode(ST_asbinary(the_geom_3dz), 'hex') FROM public.multicurve;
-SELECT 'asbinary04', encode(ST_asbinary(the_geom_4d), 'hex') FROM public.multicurve;
+-- These tests will fail on different architectures
+-- We need a way to handle multiple byte orderings
+--SELECT 'asbinary01', encode(ST_asbinary(the_geom_2d), 'hex') FROM public.multicurve;
+--SELECT 'asbinary02', encode(ST_asbinary(the_geom_3dm), 'hex') FROM public.multicurve;
+--SELECT 'asbinary03', encode(ST_asbinary(the_geom_3dz), 'hex') FROM public.multicurve;
+--SELECT 'asbinary04', encode(ST_asbinary(the_geom_4d), 'hex') FROM public.multicurve;
+--
+--SELECT 'asewkb01', encode(ST_asewkb(the_geom_2d), 'hex') FROM public.multicurve;
+--SELECT 'asewkb02', encode(ST_asewkb(the_geom_3dm), 'hex') FROM public.multicurve;
+--SELECT 'asewkb03', encode(ST_asewkb(the_geom_3dz), 'hex') FROM public.multicurve;
+--SELECT 'asewkb04', encode(ST_asewkb(the_geom_4d), 'hex') FROM public.multicurve;
 
-SELECT 'asewkb01', encode(ST_asewkb(the_geom_2d), 'hex') FROM public.multicurve;
-SELECT 'asewkb02', encode(ST_asewkb(the_geom_3dm), 'hex') FROM public.multicurve;
-SELECT 'asewkb03', encode(ST_asewkb(the_geom_3dz), 'hex') FROM public.multicurve;
-SELECT 'asewkb04', encode(ST_asewkb(the_geom_4d), 'hex') FROM public.multicurve;
-
 -- Removed due to descrepencies between hardware
 --SELECT 'box2d01', ST_box2d(the_geom_2d) FROM public.multicurve;
 --SELECT 'box2d02', ST_box2d(the_geom_3dm) FROM public.multicurve;

Modified: trunk/regress/sql-mm-multicurve_expected.in
===================================================================
--- trunk/regress/sql-mm-multicurve_expected.in	2007-08-03 20:58:27 UTC (rev 2679)
+++ trunk/regress/sql-mm-multicurve_expected.in	2007-08-09 16:56:37 UTC (rev 2680)
@@ -31,14 +31,6 @@
 asewkt02|MULTICURVEM((5 5 3,3 5 2,3 3 1,0 3 1),CIRCULARSTRING(0 0 0,0.267949192431123 1 -2,0.585786437626905 1.4142135623731 2))
 asewkt03|MULTICURVE((5 5 1,3 5 2,3 3 3,0 3 1),CIRCULARSTRING(0 0 0,0.267949192431123 1 3,0.585786437626905 1.4142135623731 1))
 asewkt04|MULTICURVE((5 5 1 3,3 5 2 2,3 3 3 1,0 3 1 1),CIRCULARSTRING(0 0 0 0,0.267949192431123 1 3 -2,0.585786437626905 1.4142135623731 1 2))
-asbinary01|010e00000002000000010200000004000000000000000000144000000000000014400000000000000840000000000000144000000000000008400000000000000840000000000000000000000000000008400108000000030000000000000000000000000000000000000056cd9e5e1426d13f000000000000f03f67880133c3bee23fcd3b7f669ea0f63f
-asbinary02|010e00000002000000010200000004000000000000000000144000000000000014400000000000000840000000000000144000000000000008400000000000000840000000000000000000000000000008400108000000030000000000000000000000000000000000000056cd9e5e1426d13f000000000000f03f67880133c3bee23fcd3b7f669ea0f63f
-asbinary03|010e00000002000000010200000004000000000000000000144000000000000014400000000000000840000000000000144000000000000008400000000000000840000000000000000000000000000008400108000000030000000000000000000000000000000000000056cd9e5e1426d13f000000000000f03f67880133c3bee23fcd3b7f669ea0f63f
-asbinary04|010e00000002000000010200000004000000000000000000144000000000000014400000000000000840000000000000144000000000000008400000000000000840000000000000000000000000000008400108000000030000000000000000000000000000000000000056cd9e5e1426d13f000000000000f03f67880133c3bee23fcd3b7f669ea0f63f
-asewkb01|010e00000002000000010200000004000000000000000000144000000000000014400000000000000840000000000000144000000000000008400000000000000840000000000000000000000000000008400108000000030000000000000000000000000000000000000056cd9e5e1426d13f000000000000f03f67880133c3bee23fcd3b7f669ea0f63f
-asewkb02|010e0000400200000001020000400400000000000000000014400000000000001440000000000000084000000000000008400000000000001440000000000000004000000000000008400000000000000840000000000000f03f00000000000000000000000000000840000000000000f03f01080000400300000000000000000000000000000000000000000000000000000056cd9e5e1426d13f000000000000f03f00000000000000c067880133c3bee23fcd3b7f669ea0f63f0000000000000040
-asewkb03|010e0000800200000001020000800400000000000000000014400000000000001440000000000000f03f00000000000008400000000000001440000000000000004000000000000008400000000000000840000000000000084000000000000000000000000000000840000000000000f03f01080000800300000000000000000000000000000000000000000000000000000056cd9e5e1426d13f000000000000f03f000000000000084067880133c3bee23fcd3b7f669ea0f63f000000000000f03f
-asewkb04|010e0000c00200000001020000c00400000000000000000014400000000000001440000000000000f03f00000000000008400000000000000840000000000000144000000000000000400000000000000040000000000000084000000000000008400000000000000840000000000000f03f00000000000000000000000000000840000000000000f03f000000000000f03f01080000c003000000000000000000000000000000000000000000000000000000000000000000000056cd9e5e1426d13f000000000000f03f000000000000084000000000000000c067880133c3bee23fcd3b7f669ea0f63f000000000000f03f0000000000000040
 ST_CurveToLine-201|MULTILINESTRING((5 5,3 5,3 3,0 3),(0 0,0.58578644 1.41421356))
 ST_CurveToLine-202|MULTILINESTRINGM((5 5 3,3 5 2,3 3 1,0 3 1),(0 0 0,0.58578644 1.41421356 2))
 ST_CurveToLine-203|MULTILINESTRING((5 5 1,3 5 2,3 3 3,0 3 1),(0 0 0,0.58578644 1.41421356 1))
@@ -86,14 +78,6 @@
 asewkt02|MULTICURVEM((5 5 3,3 5 2,3 3 1,0 3 1),CIRCULARSTRING(0 0 0,0.267949192431123 1 -2,0.585786437626905 1.4142135623731 2))
 asewkt03|MULTICURVE((5 5 1,3 5 2,3 3 3,0 3 1),CIRCULARSTRING(0 0 0,0.267949192431123 1 3,0.585786437626905 1.4142135623731 1))
 asewkt04|MULTICURVE((5 5 1 3,3 5 2 2,3 3 3 1,0 3 1 1),CIRCULARSTRING(0 0 0 0,0.267949192431123 1 3 -2,0.585786437626905 1.4142135623731 1 2))
-asbinary01|010e00000002000000010200000004000000000000000000144000000000000014400000000000000840000000000000144000000000000008400000000000000840000000000000000000000000000008400108000000030000000000000000000000000000000000000056cd9e5e1426d13f000000000000f03f67880133c3bee23fcd3b7f669ea0f63f
-asbinary02|010e00000002000000010200000004000000000000000000144000000000000014400000000000000840000000000000144000000000000008400000000000000840000000000000000000000000000008400108000000030000000000000000000000000000000000000056cd9e5e1426d13f000000000000f03f67880133c3bee23fcd3b7f669ea0f63f
-asbinary03|010e00000002000000010200000004000000000000000000144000000000000014400000000000000840000000000000144000000000000008400000000000000840000000000000000000000000000008400108000000030000000000000000000000000000000000000056cd9e5e1426d13f000000000000f03f67880133c3bee23fcd3b7f669ea0f63f
-asbinary04|010e00000002000000010200000004000000000000000000144000000000000014400000000000000840000000000000144000000000000008400000000000000840000000000000000000000000000008400108000000030000000000000000000000000000000000000056cd9e5e1426d13f000000000000f03f67880133c3bee23fcd3b7f669ea0f63f
-asewkb01|010e00000002000000010200000004000000000000000000144000000000000014400000000000000840000000000000144000000000000008400000000000000840000000000000000000000000000008400108000000030000000000000000000000000000000000000056cd9e5e1426d13f000000000000f03f67880133c3bee23fcd3b7f669ea0f63f
-asewkb02|010e0000400200000001020000400400000000000000000014400000000000001440000000000000084000000000000008400000000000001440000000000000004000000000000008400000000000000840000000000000f03f00000000000000000000000000000840000000000000f03f01080000400300000000000000000000000000000000000000000000000000000056cd9e5e1426d13f000000000000f03f00000000000000c067880133c3bee23fcd3b7f669ea0f63f0000000000000040
-asewkb03|010e0000800200000001020000800400000000000000000014400000000000001440000000000000f03f00000000000008400000000000001440000000000000004000000000000008400000000000000840000000000000084000000000000000000000000000000840000000000000f03f01080000800300000000000000000000000000000000000000000000000000000056cd9e5e1426d13f000000000000f03f000000000000084067880133c3bee23fcd3b7f669ea0f63f000000000000f03f
-asewkb04|010e0000c00200000001020000c00400000000000000000014400000000000001440000000000000f03f00000000000008400000000000000840000000000000144000000000000000400000000000000040000000000000084000000000000008400000000000000840000000000000f03f00000000000000000000000000000840000000000000f03f000000000000f03f01080000c003000000000000000000000000000000000000000000000000000000000000000000000056cd9e5e1426d13f000000000000f03f000000000000084000000000000000c067880133c3bee23fcd3b7f669ea0f63f000000000000f03f0000000000000040
 #ifdef USE_JTS
 ERROR:  Exception in LWGEOM2JTS: curved geometry not supported.
 ERROR:  Exception in LWGEOM2JTS: curved geometry not supported.

Modified: trunk/regress/sql-mm-multisurface.sql
===================================================================
--- trunk/regress/sql-mm-multisurface.sql	2007-08-03 20:58:27 UTC (rev 2679)
+++ trunk/regress/sql-mm-multisurface.sql	2007-08-09 16:56:37 UTC (rev 2680)
@@ -422,31 +422,33 @@
 SELECT 'asewkt03', asewkt(the_geom_3dz) FROM public.multisurface;
 SELECT 'asewkt04', asewkt(the_geom_4d) FROM public.multisurface;
 
-SELECT 'asbinary01', encode(asbinary(the_geom_2d), 'hex') FROM public.multisurface;
-SELECT 'asbinary02', encode(asbinary(the_geom_3dm), 'hex') FROM public.multisurface;
-SELECT 'asbinary03', encode(asbinary(the_geom_3dz), 'hex') FROM public.multisurface;
-SELECT 'asbinary04', encode(asbinary(the_geom_4d), 'hex') FROM public.multisurface;
+-- These tests will fail on different architectures
+-- We need a way to handle multiple byte orderings
+--SELECT 'asbinary01', encode(asbinary(the_geom_2d), 'hex') FROM public.multisurface;
+--SELECT 'asbinary02', encode(asbinary(the_geom_3dm), 'hex') FROM public.multisurface;
+--SELECT 'asbinary03', encode(asbinary(the_geom_3dz), 'hex') FROM public.multisurface;
+--SELECT 'asbinary04', encode(asbinary(the_geom_4d), 'hex') FROM public.multisurface;
+--
+--SELECT 'asewkb01', encode(asewkb(the_geom_2d), 'hex') FROM public.multisurface;
+--SELECT 'asewkb02', encode(asewkb(the_geom_3dm), 'hex') FROM public.multisurface;
+--SELECT 'asewkb03', encode(asewkb(the_geom_3dz), 'hex') FROM public.multisurface;
+--SELECT 'asewkb04', encode(asewkb(the_geom_4d), 'hex') FROM public.multisurface;
 
-SELECT 'asewkb01', encode(asewkb(the_geom_2d), 'hex') FROM public.multisurface;
-SELECT 'asewkb02', encode(asewkb(the_geom_3dm), 'hex') FROM public.multisurface;
-SELECT 'asewkb03', encode(asewkb(the_geom_3dz), 'hex') FROM public.multisurface;
-SELECT 'asewkb04', encode(asewkb(the_geom_4d), 'hex') FROM public.multisurface;
+SELECT 'ST_CurveToLine-201', asewkt(snapToGrid(ST_CurveToLine(the_geom_2d, 2), 'POINT(0 0 0 0)'::geometry, 1e-8, 1e-8, 1e-8, 1e-8)) FROM public.multisurface;
+SELECT 'ST_CurveToLine-202', asewkt(snapToGrid(ST_CurveToLine(the_geom_3dm, 2), 'POINT(0 0 0 0)'::geometry, 1e-8, 1e-8, 1e-8, 1e-8)) FROM public.multisurface;
+SELECT 'ST_CurveToLine-203', asewkt(snapToGrid(ST_CurveToLine(the_geom_3dz, 2), 'POINT(0 0 0 0)'::geometry, 1e-8, 1e-8, 1e-8, 1e-8)) FROM public.multisurface;
+SELECT 'ST_CurveToLine-204', asewkt(snapToGrid(ST_CurveToLine(the_geom_4d, 2), 'POINT(0 0 0 0)'::geometry, 1e-8, 1e-8, 1e-8, 1e-8)) FROM public.multisurface;
 
-SELECT 'ST_CurveToLine-201', asewkt(ST_CurveToLine(the_geom_2d, 2)) FROM public.multisurface;
-SELECT 'ST_CurveToLine-202', asewkt(ST_CurveToLine(the_geom_3dm, 2)) FROM public.multisurface;
-SELECT 'ST_CurveToLine-203', asewkt(ST_CurveToLine(the_geom_3dz, 2)) FROM public.multisurface;
-SELECT 'ST_CurveToLine-204', asewkt(ST_CurveToLine(the_geom_4d, 2)) FROM public.multisurface;
+SELECT 'ST_CurveToLine-401', asewkt(snapToGrid(ST_CurveToLine(the_geom_2d, 4), 'POINT(0 0 0 0)'::geometry, 1e-8, 1e-8, 1e-8, 1e-8)) FROM public.multisurface;
+SELECT 'ST_CurveToLine-402', asewkt(snapToGrid(ST_CurveToLine(the_geom_3dm, 4), 'POINT(0 0 0 0)'::geometry, 1e-8, 1e-8, 1e-8, 1e-8)) FROM public.multisurface;
+SELECT 'ST_CurveToLine-403', asewkt(snapToGrid(ST_CurveToLine(the_geom_3dz, 4), 'POINT(0 0 0 0)'::geometry, 1e-8, 1e-8, 1e-8, 1e-8)) FROM public.multisurface;
+SELECT 'ST_CurveToLine-404', asewkt(snapToGrid(ST_CurveToLine(the_geom_4d, 4), 'POINT(0 0 0 0)'::geometry, 1e-8, 1e-8, 1e-8, 1e-8)) FROM public.multisurface;
 
-SELECT 'ST_CurveToLine-401', asewkt(ST_CurveToLine(the_geom_2d, 4)) FROM public.multisurface;
-SELECT 'ST_CurveToLine-402', asewkt(ST_CurveToLine(the_geom_3dm, 4)) FROM public.multisurface;
-SELECT 'ST_CurveToLine-403', asewkt(ST_CurveToLine(the_geom_3dz, 4)) FROM public.multisurface;
-SELECT 'ST_CurveToLine-404', asewkt(ST_CurveToLine(the_geom_4d, 4)) FROM public.multisurface;
+SELECT 'ST_CurveToLine01', asewkt(snapToGrid(ST_CurveToLine(the_geom_2d), 'POINT(0 0 0 0)'::geometry, 1e-8, 1e-8, 1e-8, 1e-8)) FROM public.multisurface;
+SELECT 'ST_CurveToLine02', asewkt(snapToGrid(ST_CurveToLine(the_geom_3dm), 'POINT(0 0 0 0)'::geometry, 1e-8, 1e-8, 1e-8, 1e-8)) FROM public.multisurface;
+SELECT 'ST_CurveToLine03', asewkt(snapToGrid(ST_CurveToLine(the_geom_3dz), 'POINT(0 0 0 0)'::geometry, 1e-8, 1e-8, 1e-8, 1e-8)) FROM public.multisurface;
+SELECT 'ST_CurveToLine04', asewkt(snapToGrid(ST_CurveToLine(the_geom_4d), 'POINT(0 0 0 0)'::geometry, 1e-8, 1e-8, 1e-8, 1e-8)) FROM public.multisurface;
 
-SELECT 'ST_CurveToLine01', asewkt(ST_CurveToLine(the_geom_2d)) FROM public.multisurface;
-SELECT 'ST_CurveToLine02', asewkt(ST_CurveToLine(the_geom_3dm)) FROM public.multisurface;
-SELECT 'ST_CurveToLine03', asewkt(ST_CurveToLine(the_geom_3dz)) FROM public.multisurface;
-SELECT 'ST_CurveToLine04', asewkt(ST_CurveToLine(the_geom_4d)) FROM public.multisurface;
-
 SELECT 'box2d01', box2d(the_geom_2d) FROM public.multisurface;
 SELECT 'box2d02', box2d(the_geom_3dm) FROM public.multisurface;
 SELECT 'box2d03', box2d(the_geom_3dz) FROM public.multisurface;
@@ -501,16 +503,18 @@
 SELECT 'asewkt03', ST_asewkt(the_geom_3dz) FROM public.multisurface;
 SELECT 'asewkt04', ST_asewkt(the_geom_4d) FROM public.multisurface;
 
-SELECT 'asbinary01', encode(ST_asbinary(the_geom_2d), 'hex') FROM public.multisurface;
-SELECT 'asbinary02', encode(ST_asbinary(the_geom_3dm), 'hex') FROM public.multisurface;
-SELECT 'asbinary03', encode(ST_asbinary(the_geom_3dz), 'hex') FROM public.multisurface;
-SELECT 'asbinary04', encode(ST_asbinary(the_geom_4d), 'hex') FROM public.multisurface;
+-- These tests will fail on different architectures
+-- We need a way to handle multiple byte orderings
+--SELECT 'asbinary01', encode(ST_asbinary(the_geom_2d), 'hex') FROM public.multisurface;
+--SELECT 'asbinary02', encode(ST_asbinary(the_geom_3dm), 'hex') FROM public.multisurface;
+--SELECT 'asbinary03', encode(ST_asbinary(the_geom_3dz), 'hex') FROM public.multisurface;
+--SELECT 'asbinary04', encode(ST_asbinary(the_geom_4d), 'hex') FROM public.multisurface;
+--
+--SELECT 'asewkb01', encode(ST_asewkb(the_geom_2d), 'hex') FROM public.multisurface;
+--SELECT 'asewkb02', encode(ST_asewkb(the_geom_3dm), 'hex') FROM public.multisurface;
+--SELECT 'asewkb03', encode(ST_asewkb(the_geom_3dz), 'hex') FROM public.multisurface;
+--SELECT 'asewkb04', encode(ST_asewkb(the_geom_4d), 'hex') FROM public.multisurface;
 
-SELECT 'asewkb01', encode(ST_asewkb(the_geom_2d), 'hex') FROM public.multisurface;
-SELECT 'asewkb02', encode(ST_asewkb(the_geom_3dm), 'hex') FROM public.multisurface;
-SELECT 'asewkb03', encode(ST_asewkb(the_geom_3dz), 'hex') FROM public.multisurface;
-SELECT 'asewkb04', encode(ST_asewkb(the_geom_4d), 'hex') FROM public.multisurface;
-
 SELECT 'box2d01', ST_box2d(the_geom_2d) FROM public.multisurface;
 SELECT 'box2d02', ST_box2d(the_geom_3dm) FROM public.multisurface;
 SELECT 'box2d03', ST_box2d(the_geom_3dz) FROM public.multisurface;

Modified: trunk/regress/sql-mm-multisurface_expected.in
===================================================================
--- trunk/regress/sql-mm-multisurface_expected.in	2007-08-03 20:58:27 UTC (rev 2679)
+++ trunk/regress/sql-mm-multisurface_expected.in	2007-08-09 16:56:37 UTC (rev 2680)
@@ -31,26 +31,18 @@
 asewkt02|MULTISURFACEM(CURVEPOLYGON(CIRCULARSTRING(-2 0 0,-1 -1 2,0 0 4,1 -1 6,2 0 8,0 2 4,-2 0 0),(-1 0 2,0 0.5 4,1 0 6,0 1 4,-1 0 2)),((7 8 8,10 10 5,6 14 1,4 11 6,7 8 8)))
 asewkt03|MULTISURFACE(CURVEPOLYGON(CIRCULARSTRING(-2 0 0,-1 -1 1,0 0 2,1 -1 3,2 0 4,0 2 2,-2 0 0),(-1 0 1,0 0.5 2,1 0 3,0 1 3,-1 0 1)),((7 8 7,10 10 5,6 14 3,4 11 4,7 8 7)))
 asewkt04|MULTISURFACE(CURVEPOLYGON(CIRCULARSTRING(-2 0 0 0,-1 -1 1 2,0 0 2 4,1 -1 3 6,2 0 4 8,0 2 2 4,-2 0 0 0),(-1 0 1 2,0 0.5 2 4,1 0 3 6,0 1 3 4,-1 0 1 2)),((7 8 7 8,10 10 5 5,6 14 3 1,4 11 4 6,7 8 7 8)))
-asbinary01|010f00000002000000010d0000000200000001080000000700000000000000000000c00000000000000000000000000000f0bf000000000000f0bf00000000000000000000000000000000000000000000f03f000000000000f0bf000000000000004000000000000000000000000000000000000000000000004000000000000000c00000000000000000010200000005000000000000000000f0bf00000000000000000000000000000000000000000000e03f000000000000f03f00000000000000000000000000000000000000000000f03f000000000000f0bf0000000000000000010300000001000000050000000000000000001c4000000000000020400000000000002440000000000000244000000000000018400000000000002c40000000000000104000000000000026400000000000001c400000000000002040
-asbinary02|010f00000002000000010d0000000200000001080000000700000000000000000000c00000000000000000000000000000f0bf000000000000f0bf00000000000000000000000000000000000000000000f03f000000000000f0bf000000000000004000000000000000000000000000000000000000000000004000000000000000c00000000000000000010200000005000000000000000000f0bf00000000000000000000000000000000000000000000e03f000000000000f03f00000000000000000000000000000000000000000000f03f000000000000f0bf0000000000000000010300000001000000050000000000000000001c4000000000000020400000000000002440000000000000244000000000000018400000000000002c40000000000000104000000000000026400000000000001c400000000000002040
-asbinary03|010f00000002000000010d0000000200000001080000000700000000000000000000c00000000000000000000000000000f0bf000000000000f0bf00000000000000000000000000000000000000000000f03f000000000000f0bf000000000000004000000000000000000000000000000000000000000000004000000000000000c00000000000000000010200000005000000000000000000f0bf00000000000000000000000000000000000000000000e03f000000000000f03f00000000000000000000000000000000000000000000f03f000000000000f0bf0000000000000000010300000001000000050000000000000000001c4000000000000020400000000000002440000000000000244000000000000018400000000000002c40000000000000104000000000000026400000000000001c400000000000002040
-asbinary04|010f00000002000000010d0000000200000001080000000700000000000000000000c00000000000000000000000000000f0bf000000000000f0bf00000000000000000000000000000000000000000000f03f000000000000f0bf000000000000004000000000000000000000000000000000000000000000004000000000000000c00000000000000000010200000005000000000000000000f0bf00000000000000000000000000000000000000000000e03f000000000000f03f00000000000000000000000000000000000000000000f03f000000000000f0bf0000000000000000010300000001000000050000000000000000001c4000000000000020400000000000002440000000000000244000000000000018400000000000002c40000000000000104000000000000026400000000000001c400000000000002040
-asewkb01|010f00000002000000010d0000000200000001080000000700000000000000000000c00000000000000000000000000000f0bf000000000000f0bf00000000000000000000000000000000000000000000f03f000000000000f0bf000000000000004000000000000000000000000000000000000000000000004000000000000000c00000000000000000010200000005000000000000000000f0bf00000000000000000000000000000000000000000000e03f000000000000f03f00000000000000000000000000000000000000000000f03f000000000000f0bf0000000000000000010300000001000000050000000000000000001c4000000000000020400000000000002440000000000000244000000000000018400000000000002c40000000000000104000000000000026400000000000001c400000000000002040
-asewkb02|010f00004002000000010d0000400200000001080000400700000000000000000000c000000000000000000000000000000000000000000000f0bf000000000000f0bf0000000000000040000000000000000000000000000000000000000000001040000000000000f03f000000000000f0bf000000000000184000000000000000400000000000000000000000000000204000000000000000000000000000000040000000000000104000000000000000c000000000000000000000000000000000010200004005000000000000000000f0bf000000000000000000000000000000400000000000000000000000000000e03f0000000000001040000000000000f03f000000000000000000000000000018400000000000000000000000000000f03f0000000000001040000000000000f0bf00000000000000000000000000000040010300004001000000050000000000000000001c400000000000002040000000000000204000000000000024400000000000002440000000000000144000000000000018400000000000002c40000000000000f03f0000000000001040000000000000264000000000000018400000000000001c4000000000000020400000000000002040
-asewkb03|010f00008002000000010d0000800200000001080000800700000000000000000000c000000000000000000000000000000000000000000000f0bf000000000000f0bf000000000000f03f000000000000000000000000000000000000000000000040000000000000f03f000000000000f0bf000000000000084000000000000000400000000000000000000000000000104000000000000000000000000000000040000000000000004000000000000000c000000000000000000000000000000000010200008005000000000000000000f0bf0000000000000000000000000000f03f0000000000000000000000000000e03f0000000000000040000000000000f03f000000000000000000000000000008400000000000000000000000000000f03f0000000000000840000000000000f0bf0000000000000000000000000000f03f010300008001000000050000000000000000001c4000000000000020400000000000001c4000000000000024400000000000002440000000000000144000000000000018400000000000002c4000000000000008400000000000001040000000000000264000000000000010400000000000001c4000000000000020400000000000001c40
-asewkb04|010f0000c002000000010d0000c00200000001080000c00700000000000000000000c0000000000000000000000000000000000000000000000000000000000000f0bf000000000000f0bf000000000000f03f00000000000000400000000000000000000000000000000000000000000000400000000000001040000000000000f03f000000000000f0bf000000000000084000000000000018400000000000000040000000000000000000000000000010400000000000002040000000000000000000000000000000400000000000000040000000000000104000000000000000c000000000000000000000000000000000000000000000000001020000c005000000000000000000f0bf0000000000000000000000000000f03f00000000000000400000000000000000000000000000e03f00000000000000400000000000001040000000000000f03f0000000000000000000000000000084000000000000018400000000000000000000000000000f03f00000000000008400000000000001040000000000000f0bf0000000000000000000000000000f03f000000000000004001030000c001000000050000000000000000001c4000000000000020400000000000001c400000000000002040000000000000244000000000000024400000000000001440000000000000144000000000000018400000000000002c400000000000000840000000000000f03f00000000000010400000000000002640000000000000104000000000000018400000000000001c4000000000000020400000000000001c400000000000002040
-ST_CurveToLine-201|MULTIPOLYGON(((-2 0,-1.70710678118655 -0.707106781186548,-1 -1,-0.292893218813452 -0.707106781186547,0 0,0.292893218813453 -0.707106781186548,1 -1,1.70710678118655 -0.707106781186547,2 0,1.4142135623731 1.41421356237309,1.22460635382238e-16 2,-1.41421356237309 1.4142135623731,-2 0),(-1 0,0 0.5,1 0,0 1,-1 0)),((7 8,10 10,6 14,4 11,7 8)))
-ST_CurveToLine-202|MULTIPOLYGONM(((-2 0 0,-1.70710678118655 -0.707106781186548 1,-1 -1 2,-0.292893218813452 -0.707106781186547 3,0 0 4,0.292893218813453 -0.707106781186548 5,1 -1 6,1.70710678118655 -0.707106781186547 7,2 0 8,1.4142135623731 1.41421356237309 6,1.22460635382238e-16 2 4,-1.41421356237309 1.4142135623731 2,-2 0 0),(-1 0 2,0 0.5 4,1 0 6,0 1 4,-1 0 2)),((7 8 8,10 10 5,6 14 1,4 11 6,7 8 8)))
-ST_CurveToLine-203|MULTIPOLYGON(((-2 0 0,-1.70710678118655 -0.707106781186548 0.5,-1 -1 1,-0.292893218813452 -0.707106781186547 1.5,0 0 2,0.292893218813453 -0.707106781186548 2.5,1 -1 3,1.70710678118655 -0.707106781186547 3.5,2 0 4,1.4142135623731 1.41421356237309 3,1.22460635382238e-16 2 2,-1.41421356237309 1.4142135623731 1,-2 0 0),(-1 0 1,0 0.5 2,1 0 3,0 1 3,-1 0 1)),((7 8 7,10 10 5,6 14 3,4 11 4,7 8 7)))
-ST_CurveToLine-204|MULTIPOLYGON(((-2 0 0 0,-1.70710678118655 -0.707106781186548 0.5 1,-1 -1 1 2,-0.292893218813452 -0.707106781186547 1.5 3,0 0 2 4,0.292893218813453 -0.707106781186548 2.5 5,1 -1 3 6,1.70710678118655 -0.707106781186547 3.5 7,2 0 4 8,1.4142135623731 1.41421356237309 3 6,1.22460635382238e-16 2 2 4,-1.41421356237309 1.4142135623731 1 2,-2 0 0 0),(-1 0 1 2,0 0.5 2 4,1 0 3 6,0 1 3 4,-1 0 1 2)),((7 8 7 8,10 10 5 5,6 14 3 1,4 11 4 6,7 8 7 8)))
-ST_CurveToLine-401|MULTIPOLYGON(((-2 0,-1.92387953251129 -0.38268343236509,-1.70710678118655 -0.707106781186548,-1.38268343236509 -0.923879532511287,-1 -1,-0.61731656763491 -0.923879532511287,-0.292893218813452 -0.707106781186547,-0.0761204674887132 -0.38268343236509,0 0,0.0761204674887133 -0.38268343236509,0.292893218813453 -0.707106781186548,0.61731656763491 -0.923879532511287,1 -1,1.38268343236509 -0.923879532511287,1.70710678118655 -0.707106781186547,1.92387953251129 -0.38268343236509,2 0,1.84775906502257 0.76536686473018,1.4142135623731 1.41421356237309,0.76536686473018 1.84775906502257,1.22460635382238e-16 2,-0.765366864730179 1.84775906502257,-1.41421356237309 1.4142135623731,-1.84775906502257 0.76536686473018,-2 0),(-1 0,0 0.5,1 0,0 1,-1 0)),((7 8,10 10,6 14,4 11,7 8)))
-ST_CurveToLine-402|MULTIPOLYGONM(((-2 0 0,-1.92387953251129 -0.38268343236509 0.5,-1.70710678118655 -0.707106781186548 1,-1.38268343236509 -0.923879532511287 1.5,-1 -1 2,-0.61731656763491 -0.923879532511287 2.5,-0.292893218813452 -0.707106781186547 3,-0.0761204674887132 -0.38268343236509 3.5,0 0 4,0.0761204674887133 -0.38268343236509 4.5,0.292893218813453 -0.707106781186548 5,0.61731656763491 -0.923879532511287 5.5,1 -1 6,1.38268343236509 -0.923879532511287 6.5,1.70710678118655 -0.707106781186547 7,1.92387953251129 -0.38268343236509 7.5,2 0 8,1.84775906502257 0.76536686473018 7,1.4142135623731 1.41421356237309 6,0.76536686473018 1.84775906502257 5,1.22460635382238e-16 2 4,-0.765366864730179 1.84775906502257 3,-1.41421356237309 1.4142135623731 2,-1.84775906502257 0.76536686473018 1,-2 0 0),(-1 0 2,0 0.5 4,1 0 6,0 1 4,-1 0 2)),((7 8 8,10 10 5,6 14 1,4 11 6,7 8 8)))
-ST_CurveToLine-403|MULTIPOLYGON(((-2 0 0,-1.92387953251129 -0.38268343236509 0.25,-1.70710678118655 -0.707106781186548 0.5,-1.38268343236509 -0.923879532511287 0.75,-1 -1 1,-0.61731656763491 -0.923879532511287 1.25,-0.292893218813452 -0.707106781186547 1.5,-0.0761204674887132 -0.38268343236509 1.75,0 0 2,0.0761204674887133 -0.38268343236509 2.25,0.292893218813453 -0.707106781186548 2.5,0.61731656763491 -0.923879532511287 2.75,1 -1 3,1.38268343236509 -0.923879532511287 3.25,1.70710678118655 -0.707106781186547 3.5,1.92387953251129 -0.38268343236509 3.75,2 0 4,1.84775906502257 0.76536686473018 3.5,1.4142135623731 1.41421356237309 3,0.76536686473018 1.84775906502257 2.5,1.22460635382238e-16 2 2,-0.765366864730179 1.84775906502257 1.5,-1.41421356237309 1.4142135623731 1,-1.84775906502257 0.76536686473018 0.5,-2 0 0),(-1 0 1,0 0.5 2,1 0 3,0 1 3,-1 0 1)),((7 8 7,10 10 5,6 14 3,4 11 4,7 8 7)))
-ST_CurveToLine-404|MULTIPOLYGON(((-2 0 0 0,-1.92387953251129 -0.38268343236509 0.25 0.5,-1.70710678118655 -0.707106781186548 0.5 1,-1.38268343236509 -0.923879532511287 0.75 1.5,-1 -1 1 2,-0.61731656763491 -0.923879532511287 1.25 2.5,-0.292893218813452 -0.707106781186547 1.5 3,-0.0761204674887132 -0.38268343236509 1.75 3.5,0 0 2 4,0.0761204674887133 -0.38268343236509 2.25 4.5,0.292893218813453 -0.707106781186548 2.5 5,0.61731656763491 -0.923879532511287 2.75 5.5,1 -1 3 6,1.38268343236509 -0.923879532511287 3.25 6.5,1.70710678118655 -0.707106781186547 3.5 7,1.92387953251129 -0.38268343236509 3.75 7.5,2 0 4 8,1.84775906502257 0.76536686473018 3.5 7,1.4142135623731 1.41421356237309 3 6,0.76536686473018 1.84775906502257 2.5 5,1.22460635382238e-16 2 2 4,-0.765366864730179 1.84775906502257 1.5 3,-1.41421356237309 1.4142135623731 1 2,-1.84775906502257 0.76536686473018 0.5 1,-2 0 0 0),(-1 0 1 2,0 0.5 2 4,1 0 3 6,0 1 3 4,-1 0 1 2)),((7 8 7 8,10 10 5 5,6 14 3 1,4 11 4 6,7 8 7 8)))
-ST_CurveToLine01|MULTIPOLYGON(((-2 0,-1.99879545620517 -0.049067674327418,-1.9951847266722 -0.0980171403295604,-1.98917650996478 -0.146730474455361,-1.98078528040323 -0.195090322016128,-1.97003125319454 -0.242980179903263,-1.95694033573221 -0.290284677254461,-1.94154406518302 -0.336889853392219,-1.92387953251129 -0.382683432365089,-1.90398929312344 -0.427555093430281,-1.88192126434836 -0.471396736825996,-1.85772861000027 -0.51410274419322,-1.83146961230255 -0.555570233019601,-1.80320753148065 -0.595699304492432,-1.77301045336274 -0.634393284163644,-1.74095112535496 -0.671558954847017,-1.70710678118655 -0.707106781186546,-1.67155895484702 -0.740951125354957,-1.63439328416365 -0.773010453362735,-1.59569930449244 -0.803207531480643,-1.5555702330196 -0.831469612302543,-1.51410274419322 -0.85772861000027,-1.471396736826 -0.881921264348353,-1.42755509343029 -0.903989293123442,-1.38268343236509 -0.923879532511285,-1.33688985339222 -0.94154406518302,-1.29028467725447 -0.956940335732208,-1.24298017990327 -0.970031253194543,-1.19509032201613 -0.98078528040323,-1.14673047445537 -0.98917650996478,-1.09801714032956 -0.995184726672197,-1.04906767432742 -0.998795456205172,-1 -1,-0.950932325672585 -0.998795456205173,-0.901982859670443 -0.995184726672197,-0.853269525544641 -0.989176509964781,-0.804909677983875 -0.980785280403231,-0.757019820096739 -0.970031253194545,-0.709715322745541 -0.95694033573221,-0.663110146607783 -0.941544065183022,-0.617316567634913 -0.923879532511288,-0.57244490656972 -0.903989293123445,-0.528603263174005 -0.881921264348356,-0.485897255806781 -0.857728610000273,-0.4444297669804 -0.831469612302547,-0.404300695507569 -0.803207531480646,-0.365606715836356 -0.773010453362739,-0.328441045152983 -0.740951125354961,-0.292893218813454 -0.707106781186549,-0.259048874645043 -0.67155895484702,-0.226989546637265 -0.634393284163647,-0.196792468519356 -0.595699304492435,-0.168530387697456 -0.555570233019604,-0.142271389999729 -0.514102744193224,-0.118078735651646 -0.471396736826,-0.0960107068765576 -0.427555093430284,-0.0761204674887141 -0.382683432365092,-0.0584559348169799 -0.336889853392222,-0.0430596642677918 -0.290284677254464,-0.0299687468054565 -0.242980179903266,-0.01921471959677 -0.19509032201613,-0.0108234900352193 -0.146730474455364,-0.00481527332780333 -0.0980171403295628,-0.00120454379482771 -0.0490676743274202,0 0,0.0012045437948276 -0.049067674327418,0.00481527332780309 -0.0980171403295604,0.010823490035219 -0.146730474455361,0.0192147195967694 -0.195090322016128,0.0299687468054558 -0.242980179903263,0.0430596642677909 -0.290284677254461,0.0584559348169789 -0.336889853392219,0.0761204674887128 -0.382683432365089,0.0960107068765561 -0.427555093430281,0.118078735651644 -0.471396736825996,0.142271389999727 -0.51410274419322,0.168530387697454 -0.555570233019601,0.196792468519354 -0.595699304492432,0.226989546637262 -0.634393284163644,0.259048874645039 -0.671558954847017,0.292893218813451 -0.707106781186546,0.32844104515298 -0.740951125354957,0.365606715836352 -0.773010453362735,0.404300695507564 -0.803207531480643,0.444429766980395 -0.831469612302543,0.485897255806775 -0.85772861000027,0.528603263173999 -0.881921264348353,0.572444906569714 -0.903989293123442,0.617316567634907 -0.923879532511285,0.663110146607777 -0.94154406518302,0.709715322745534 -0.956940335732208,0.757019820096733 -0.970031253194543,0.804909677983868 -0.98078528040323,0.853269525544635 -0.98917650996478,0.901982859670436 -0.995184726672197,0.950932325672579 -0.998795456205172,0.999999999999997 -1,1.04906767432741 -0.998795456205173,1.09801714032956 -0.995184726672197,1.14673047445536 -0.989176509964781,1.19509032201613 -0.980785280403231,1.24298017990326 -0.970031253194545,1.29028467725446 -0.95694033573221,1.33688985339222 -0.941544065183022,1.38268343236509 -0.923879532511288,1.42755509343028 -0.903989293123445,1.471396736826 -0.881921264348356,1.51410274419322 -0.857728610000273,1.5555702330196 -0.831469612302547,1.59569930449243 -0.803207531480646,1.63439328416364 -0.773010453362739,1.67155895484702 -0.740951125354961,1.70710678118655 -0.707106781186549,1.74095112535496 -0.67155895484702,1.77301045336274 -0.634393284163647,1.80320753148064 -0.595699304492435,1.83146961230254 -0.555570233019604,1.85772861000027 -0.514102744193224,1.88192126434835 -0.471396736826,1.90398929312344 -0.427555093430284,1.92387953251129 -0.382683432365092,1.94154406518302 -0.336889853392222,1.95694033573221 -0.290284677254464,1.97003125319454 -0.242980179903266,1.98078528040323 -0.19509032201613,1.98917650996478 -0.146730474455364,1.9951847266722 -0.0980171403295628,1.99879545620517 -0.0490676743274202,2 0,1.99759091241034 0.098135348654836,1.99036945334439 0.196034280659121,1.97835301992956 0.293460948910723,1.96157056080646 0.390180644032256,1.94006250638909 0.485960359806528,1.91388067146442 0.580569354508925,1.88308813036604 0.67377970678444,1.84775906502257 0.76536686473018,1.80797858624689 0.855110186860564,1.76384252869671 0.942793473651995,1.71545722000054 1.02820548838644,1.66293922460509 1.1111404660392,1.60641506296129 1.19139860898487,1.54602090672547 1.26878656832729,1.48190225070992 1.34311790969404,1.41421356237309 1.4142135623731,1.34311790969404 1.48190225070992,1.26878656832729 1.54602090672547,1.19139860898487 1.60641506296129,1.1111404660392 1.66293922460509,1.02820548838644 1.71545722000054,0.942793473651994 1.76384252869671,0.855110186860563 1.80797858624689,0.765366864730178 1.84775906502257,0.673779706784439 1.88308813036604,0.580569354508923 1.91388067146442,0.485960359806526 1.94006250638909,0.390180644032255 1.96157056080646,0.293460948910722 1.97835301992956,0.196034280659119 1.99036945334439,0.098135348654834 1.99759091241034,-2.09798541386808e-15 2,-0.0981353486548382 1.99759091241034,-0.196034280659124 1.99036945334439,-0.293460948910726 1.97835301992956,-0.390180644032259 1.96157056080646,-0.48596035980653 1.94006250638909,-0.580569354508927 1.91388067146442,-0.673779706784443 1.88308813036604,-0.765366864730182 1.84775906502257,-0.855110186860567 1.80797858624689,-0.942793473651998 1.76384252869671,-1.02820548838645 1.71545722000054,-1.11114046603921 1.66293922460509,-1.19139860898487 1.60641506296129,-1.26878656832729 1.54602090672547,-1.34311790969404 1.48190225070992,-1.4142135623731 1.41421356237309,-1.48190225070992 1.34311790969404,-1.54602090672547 1.26878656832729,-1.60641506296129 1.19139860898487,-1.66293922460509 1.11114046603921,-1.71545722000054 1.02820548838644,-1.76384252869671 0.942793473651997,-1.80797858624689 0.855110186860566,-1.84775906502257 0.765366864730181,-1.88308813036604 0.673779706784442,-1.91388067146442 0.580569354508927,-1.94006250638909 0.485960359806531,-1.96157056080646 0.39018064403226,-1.97835301992956 0.293460948910727,-1.99036945334439 0.196034280659125,-1.99759091241034 0.0981353486548404,-2 0),(-1 0,0 0.5,1 0,0 1,-1 0)),((7 8,10 10,6 14,4 11,7 8)))
-ST_CurveToLine02|MULTIPOLYGONM(((-2 0 0,-1.99879545620517 -0.049067674327418 0.0624999999999998,-1.9951847266722 -0.0980171403295604 0.125,-1.98917650996478 -0.146730474455361 0.187499999999999,-1.98078528040323 -0.195090322016128 0.249999999999999,-1.97003125319454 -0.242980179903263 0.312499999999999,-1.95694033573221 -0.290284677254461 0.374999999999999,-1.94154406518302 -0.336889853392219 0.437499999999999,-1.92387953251129 -0.382683432365089 0.499999999999998,-1.90398929312344 -0.427555093430281 0.562499999999998,-1.88192126434836 -0.471396736825996 0.624999999999998,-1.85772861000027 -0.51410274419322 0.687499999999998,-1.83146961230255 -0.555570233019601 0.749999999999997,-1.80320753148065 -0.595699304492432 0.812499999999997,-1.77301045336274 -0.634393284163644 0.874999999999997,-1.74095112535496 -0.671558954847017 0.937499999999997,-1.70710678118655 -0.707106781186546 0.999999999999997,-1.67155895484702 -0.740951125354957 1.0625,-1.63439328416365 -0.773010453362735 1.125,-1.59569930449244 -0.803207531480643 1.1875,-1.5555702330196 -0.831469612302543 1.25,-1.51410274419322 -0.85772861000027 1.3125,-1.471396736826 -0.881921264348353 1.375,-1.42755509343029 -0.903989293123442 1.4375,-1.38268343236509 -0.923879532511285 1.5,-1.33688985339222 -0.94154406518302 1.5625,-1.29028467725447 -0.956940335732208 1.625,-1.24298017990327 -0.970031253194543 1.6875,-1.19509032201613 -0.98078528040323 1.75,-1.14673047445537 -0.98917650996478 1.8125,-1.09801714032956 -0.995184726672197 1.875,-1.04906767432742 -0.998795456205172 1.9375,-1 -1 2,-0.950932325672585 -0.998795456205173 2.0625,-0.901982859670443 -0.995184726672197 2.125,-0.853269525544641 -0.989176509964781 2.1875,-0.804909677983875 -0.980785280403231 2.25,-0.757019820096739 -0.970031253194545 2.3125,-0.709715322745541 -0.95694033573221 2.375,-0.663110146607783 -0.941544065183022 2.4375,-0.617316567634913 -0.923879532511288 2.5,-0.57244490656972 -0.903989293123445 2.5625,-0.528603263174005 -0.881921264348356 2.625,-0.485897255806781 -0.857728610000273 2.6875,-0.4444297669804 -0.831469612302547 2.75,-0.404300695507569 -0.803207531480646 2.8125,-0.365606715836356 -0.773010453362739 2.875,-0.328441045152983 -0.740951125354961 2.9375,-0.292893218813454 -0.707106781186549 3,-0.259048874645043 -0.67155895484702 3.0625,-0.226989546637265 -0.634393284163647 3.125,-0.196792468519356 -0.595699304492435 3.1875,-0.168530387697456 -0.555570233019604 3.25,-0.142271389999729 -0.514102744193224 3.3125,-0.118078735651646 -0.471396736826 3.375,-0.0960107068765576 -0.427555093430284 3.4375,-0.0761204674887141 -0.382683432365092 3.5,-0.0584559348169799 -0.336889853392222 3.5625,-0.0430596642677918 -0.290284677254464 3.625,-0.0299687468054565 -0.242980179903266 3.6875,-0.01921471959677 -0.19509032201613 3.75,-0.0108234900352193 -0.146730474455364 3.8125,-0.00481527332780333 -0.0980171403295628 3.875,-0.00120454379482771 -0.0490676743274202 3.9375,0 0 4,0.0012045437948276 -0.049067674327418 4.0625,0.00481527332780309 -0.0980171403295604 4.125,0.010823490035219 -0.146730474455361 4.1875,0.0192147195967694 -0.195090322016128 4.25,0.0299687468054558 -0.242980179903263 4.3125,0.0430596642677909 -0.290284677254461 4.375,0.0584559348169789 -0.336889853392219 4.4375,0.0761204674887128 -0.382683432365089 4.5,0.0960107068765561 -0.427555093430281 4.5625,0.118078735651644 -0.471396736825996 4.625,0.142271389999727 -0.51410274419322 4.6875,0.168530387697454 -0.555570233019601 4.75,0.196792468519354 -0.595699304492432 4.8125,0.226989546637262 -0.634393284163644 4.875,0.259048874645039 -0.671558954847017 4.9375,0.292893218813451 -0.707106781186546 5,0.32844104515298 -0.740951125354957 5.0625,0.365606715836352 -0.773010453362735 5.125,0.404300695507564 -0.803207531480643 5.1875,0.444429766980395 -0.831469612302543 5.25,0.485897255806775 -0.85772861000027 5.3125,0.528603263173999 -0.881921264348353 5.375,0.572444906569714 -0.903989293123442 5.4375,0.617316567634907 -0.923879532511285 5.5,0.663110146607777 -0.94154406518302 5.5625,0.709715322745534 -0.956940335732208 5.625,0.757019820096733 -0.970031253194543 5.6875,0.804909677983868 -0.98078528040323 5.75,0.853269525544635 -0.98917650996478 5.8125,0.901982859670436 -0.995184726672197 5.875,0.950932325672579 -0.998795456205172 5.9375,0.999999999999997 -1 6,1.04906767432741 -0.998795456205173 6.0625,1.09801714032956 -0.995184726672197 6.125,1.14673047445536 -0.989176509964781 6.1875,1.19509032201613 -0.980785280403231 6.25,1.24298017990326 -0.970031253194545 6.3125,1.29028467725446 -0.95694033573221 6.375,1.33688985339222 -0.941544065183022 6.4375,1.38268343236509 -0.923879532511288 6.5,1.42755509343028 -0.903989293123445 6.5625,1.471396736826 -0.881921264348356 6.625,1.51410274419322 -0.857728610000273 6.6875,1.5555702330196 -0.831469612302547 6.75,1.59569930449243 -0.803207531480646 6.8125,1.63439328416364 -0.773010453362739 6.875,1.67155895484702 -0.740951125354961 6.9375,1.70710678118655 -0.707106781186549 7,1.74095112535496 -0.67155895484702 7.0625,1.77301045336274 -0.634393284163647 7.125,1.80320753148064 -0.595699304492435 7.1875,1.83146961230254 -0.555570233019604 7.25,1.85772861000027 -0.514102744193224 7.3125,1.88192126434835 -0.471396736826 7.375,1.90398929312344 -0.427555093430284 7.4375,1.92387953251129 -0.382683432365092 7.5,1.94154406518302 -0.336889853392222 7.5625,1.95694033573221 -0.290284677254464 7.625,1.97003125319454 -0.242980179903266 7.6875,1.98078528040323 -0.19509032201613 7.75,1.98917650996478 -0.146730474455364 7.8125,1.9951847266722 -0.0980171403295628 7.875,1.99879545620517 -0.0490676743274202 7.9375,2 0 8,1.99759091241034 0.098135348654836 7.875,1.99036945334439 0.196034280659121 7.75,1.97835301992956 0.293460948910723 7.625,1.96157056080646 0.390180644032256 7.5,1.94006250638909 0.485960359806528 7.375,1.91388067146442 0.580569354508925 7.25,1.88308813036604 0.67377970678444 7.125,1.84775906502257 0.76536686473018 7,1.80797858624689 0.855110186860564 6.875,1.76384252869671 0.942793473651995 6.75,1.71545722000054 1.02820548838644 6.625,1.66293922460509 1.1111404660392 6.5,1.60641506296129 1.19139860898487 6.375,1.54602090672547 1.26878656832729 6.25,1.48190225070992 1.34311790969404 6.125,1.41421356237309 1.4142135623731 6,1.34311790969404 1.48190225070992 5.875,1.26878656832729 1.54602090672547 5.75,1.19139860898487 1.60641506296129 5.625,1.1111404660392 1.66293922460509 5.5,1.02820548838644 1.71545722000054 5.375,0.942793473651994 1.76384252869671 5.25,0.855110186860563 1.80797858624689 5.125,0.765366864730178 1.84775906502257 5,0.673779706784439 1.88308813036604 4.875,0.580569354508923 1.91388067146442 4.75,0.485960359806526 1.94006250638909 4.625,0.390180644032255 1.96157056080646 4.5,0.293460948910722 1.97835301992956 4.375,0.196034280659119 1.99036945334439 4.25,0.098135348654834 1.99759091241034 4.125,-2.09798541386808e-15 2 4,-0.0981353486548382 1.99759091241034 3.875,-0.196034280659124 1.99036945334439 3.75,-0.293460948910726 1.97835301992956 3.625,-0.390180644032259 1.96157056080646 3.5,-0.48596035980653 1.94006250638909 3.375,-0.580569354508927 1.91388067146442 3.25,-0.673779706784443 1.88308813036604 3.125,-0.765366864730182 1.84775906502257 3,-0.855110186860567 1.80797858624689 2.875,-0.942793473651998 1.76384252869671 2.75,-1.02820548838645 1.71545722000054 2.625,-1.11114046603921 1.66293922460509 2.5,-1.19139860898487 1.60641506296129 2.375,-1.26878656832729 1.54602090672547 2.25,-1.34311790969404 1.48190225070992 2.125,-1.4142135623731 1.41421356237309 2,-1.48190225070992 1.34311790969404 1.875,-1.54602090672547 1.26878656832729 1.75,-1.60641506296129 1.19139860898487 1.625,-1.66293922460509 1.11114046603921 1.5,-1.71545722000054 1.02820548838644 1.375,-1.76384252869671 0.942793473651997 1.25,-1.80797858624689 0.855110186860566 1.125,-1.84775906502257 0.765366864730181 1,-1.88308813036604 0.673779706784442 0.875000000000003,-1.91388067146442 0.580569354508927 0.750000000000003,-1.94006250638909 0.485960359806531 0.625000000000004,-1.96157056080646 0.39018064403226 0.500000000000004,-1.97835301992956 0.293460948910727 0.375000000000004,-1.99036945334439 0.196034280659125 0.250000000000005,-1.99759091241034 0.0981353486548404 0.125000000000005,-2 0 0),(-1 0 2,0 0.5 4,1 0 6,0 1 4,-1 0 2)),((7 8 8,10 10 5,6 14 1,4 11 6,7 8 8)))
-ST_CurveToLine03|MULTIPOLYGON(((-2 0 0,-1.99879545620517 -0.049067674327418 0.0312499999999999,-1.9951847266722 -0.0980171403295604 0.0624999999999998,-1.98917650996478 -0.146730474455361 0.0937499999999997,-1.98078528040323 -0.195090322016128 0.125,-1.97003125319454 -0.242980179903263 0.156249999999999,-1.95694033573221 -0.290284677254461 0.187499999999999,-1.94154406518302 -0.336889853392219 0.218749999999999,-1.92387953251129 -0.382683432365089 0.249999999999999,-1.90398929312344 -0.427555093430281 0.281249999999999,-1.88192126434836 -0.471396736825996 0.312499999999999,-1.85772861000027 -0.51410274419322 0.343749999999999,-1.83146961230255 -0.555570233019601 0.374999999999999,-1.80320753148065 -0.595699304492432 0.406249999999999,-1.77301045336274 -0.634393284163644 0.437499999999999,-1.74095112535496 -0.671558954847017 0.468749999999998,-1.70710678118655 -0.707106781186546 0.499999999999998,-1.67155895484702 -0.740951125354957 0.531249999999998,-1.63439328416365 -0.773010453362735 0.562499999999998,-1.59569930449244 -0.803207531480643 0.593749999999998,-1.5555702330196 -0.831469612302543 0.624999999999998,-1.51410274419322 -0.85772861000027 0.656249999999998,-1.471396736826 -0.881921264348353 0.687499999999998,-1.42755509343029 -0.903989293123442 0.718749999999998,-1.38268343236509 -0.923879532511285 0.749999999999998,-1.33688985339222 -0.94154406518302 0.781249999999998,-1.29028467725447 -0.956940335732208 0.812499999999998,-1.24298017990327 -0.970031253194543 0.843749999999998,-1.19509032201613 -0.98078528040323 0.874999999999998,-1.14673047445537 -0.98917650996478 0.906249999999998,-1.09801714032956 -0.995184726672197 0.937499999999998,-1.04906767432742 -0.998795456205172 0.968749999999998,-1 -1 0.999999999999998,-0.950932325672585 -0.998795456205173 1.03125,-0.901982859670443 -0.995184726672197 1.0625,-0.853269525544641 -0.989176509964781 1.09375,-0.804909677983875 -0.980785280403231 1.125,-0.757019820096739 -0.970031253194545 1.15625,-0.709715322745541 -0.95694033573221 1.1875,-0.663110146607783 -0.941544065183022 1.21875,-0.617316567634913 -0.923879532511288 1.25,-0.57244490656972 -0.903989293123445 1.28125,-0.528603263174005 -0.881921264348356 1.3125,-0.485897255806781 -0.857728610000273 1.34375,-0.4444297669804 -0.831469612302547 1.375,-0.404300695507569 -0.803207531480646 1.40625,-0.365606715836356 -0.773010453362739 1.4375,-0.328441045152983 -0.740951125354961 1.46875,-0.292893218813454 -0.707106781186549 1.5,-0.259048874645043 -0.67155895484702 1.53125,-0.226989546637265 -0.634393284163647 1.5625,-0.196792468519356 -0.595699304492435 1.59375,-0.168530387697456 -0.555570233019604 1.625,-0.142271389999729 -0.514102744193224 1.65625,-0.118078735651646 -0.471396736826 1.6875,-0.0960107068765576 -0.427555093430284 1.71875,-0.0761204674887141 -0.382683432365092 1.75,-0.0584559348169799 -0.336889853392222 1.78125,-0.0430596642677918 -0.290284677254464 1.8125,-0.0299687468054565 -0.242980179903266 1.84375,-0.01921471959677 -0.19509032201613 1.875,-0.0108234900352193 -0.146730474455364 1.90625,-0.00481527332780333 -0.0980171403295628 1.9375,-0.00120454379482771 -0.0490676743274202 1.96875,0 0 2,0.0012045437948276 -0.049067674327418 2.03125,0.00481527332780309 -0.0980171403295604 2.0625,0.010823490035219 -0.146730474455361 2.09375,0.0192147195967694 -0.195090322016128 2.125,0.0299687468054558 -0.242980179903263 2.15625,0.0430596642677909 -0.290284677254461 2.1875,0.0584559348169789 -0.336889853392219 2.21875,0.0761204674887128 -0.382683432365089 2.25,0.0960107068765561 -0.427555093430281 2.28125,0.118078735651644 -0.471396736825996 2.3125,0.142271389999727 -0.51410274419322 2.34375,0.168530387697454 -0.555570233019601 2.375,0.196792468519354 -0.595699304492432 2.40625,0.226989546637262 -0.634393284163644 2.4375,0.259048874645039 -0.671558954847017 2.46875,0.292893218813451 -0.707106781186546 2.5,0.32844104515298 -0.740951125354957 2.53125,0.365606715836352 -0.773010453362735 2.5625,0.404300695507564 -0.803207531480643 2.59375,0.444429766980395 -0.831469612302543 2.625,0.485897255806775 -0.85772861000027 2.65625,0.528603263173999 -0.881921264348353 2.6875,0.572444906569714 -0.903989293123442 2.71875,0.617316567634907 -0.923879532511285 2.75,0.663110146607777 -0.94154406518302 2.78125,0.709715322745534 -0.956940335732208 2.8125,0.757019820096733 -0.970031253194543 2.84375,0.804909677983868 -0.98078528040323 2.875,0.853269525544635 -0.98917650996478 2.90625,0.901982859670436 -0.995184726672197 2.9375,0.950932325672579 -0.998795456205172 2.96875,0.999999999999997 -1 3,1.04906767432741 -0.998795456205173 3.03125,1.09801714032956 -0.995184726672197 3.0625,1.14673047445536 -0.989176509964781 3.09375,1.19509032201613 -0.980785280403231 3.125,1.24298017990326 -0.970031253194545 3.15625,1.29028467725446 -0.95694033573221 3.1875,1.33688985339222 -0.941544065183022 3.21875,1.38268343236509 -0.923879532511288 3.25,1.42755509343028 -0.903989293123445 3.28125,1.471396736826 -0.881921264348356 3.3125,1.51410274419322 -0.857728610000273 3.34375,1.5555702330196 -0.831469612302547 3.375,1.59569930449243 -0.803207531480646 3.40625,1.63439328416364 -0.773010453362739 3.4375,1.67155895484702 -0.740951125354961 3.46875,1.70710678118655 -0.707106781186549 3.5,1.74095112535496 -0.67155895484702 3.53125,1.77301045336274 -0.634393284163647 3.5625,1.80320753148064 -0.595699304492435 3.59375,1.83146961230254 -0.555570233019604 3.625,1.85772861000027 -0.514102744193224 3.65625,1.88192126434835 -0.471396736826 3.6875,1.90398929312344 -0.427555093430284 3.71875,1.92387953251129 -0.382683432365092 3.75,1.94154406518302 -0.336889853392222 3.78125,1.95694033573221 -0.290284677254464 3.8125,1.97003125319454 -0.242980179903266 3.84375,1.98078528040323 -0.19509032201613 3.875,1.98917650996478 -0.146730474455364 3.90625,1.9951847266722 -0.0980171403295628 3.9375,1.99879545620517 -0.0490676743274202 3.96875,2 0 4,1.99759091241034 0.098135348654836 3.9375,1.99036945334439 0.196034280659121 3.875,1.97835301992956 0.293460948910723 3.8125,1.96157056080646 0.390180644032256 3.75,1.94006250638909 0.485960359806528 3.6875,1.91388067146442 0.580569354508925 3.625,1.88308813036604 0.67377970678444 3.5625,1.84775906502257 0.76536686473018 3.5,1.80797858624689 0.855110186860564 3.4375,1.76384252869671 0.942793473651995 3.375,1.71545722000054 1.02820548838644 3.3125,1.66293922460509 1.1111404660392 3.25,1.60641506296129 1.19139860898487 3.1875,1.54602090672547 1.26878656832729 3.125,1.48190225070992 1.34311790969404 3.0625,1.41421356237309 1.4142135623731 3,1.34311790969404 1.48190225070992 2.9375,1.26878656832729 1.54602090672547 2.875,1.19139860898487 1.60641506296129 2.8125,1.1111404660392 1.66293922460509 2.75,1.02820548838644 1.71545722000054 2.6875,0.942793473651994 1.76384252869671 2.625,0.855110186860563 1.80797858624689 2.5625,0.765366864730178 1.84775906502257 2.5,0.673779706784439 1.88308813036604 2.4375,0.580569354508923 1.91388067146442 2.375,0.485960359806526 1.94006250638909 2.3125,0.390180644032255 1.96157056080646 2.25,0.293460948910722 1.97835301992956 2.1875,0.196034280659119 1.99036945334439 2.125,0.098135348654834 1.99759091241034 2.0625,-2.09798541386808e-15 2 2,-0.0981353486548382 1.99759091241034 1.9375,-0.196034280659124 1.99036945334439 1.875,-0.293460948910726 1.97835301992956 1.8125,-0.390180644032259 1.96157056080646 1.75,-0.48596035980653 1.94006250638909 1.6875,-0.580569354508927 1.91388067146442 1.625,-0.673779706784443 1.88308813036604 1.5625,-0.765366864730182 1.84775906502257 1.5,-0.855110186860567 1.80797858624689 1.4375,-0.942793473651998 1.76384252869671 1.375,-1.02820548838645 1.71545722000054 1.3125,-1.11114046603921 1.66293922460509 1.25,-1.19139860898487 1.60641506296129 1.1875,-1.26878656832729 1.54602090672547 1.125,-1.34311790969404 1.48190225070992 1.0625,-1.4142135623731 1.41421356237309 0.999999999999999,-1.48190225070992 1.34311790969404 0.9375,-1.54602090672547 1.26878656832729 0.875,-1.60641506296129 1.19139860898487 0.8125,-1.66293922460509 1.11114046603921 0.75,-1.71545722000054 1.02820548838644 0.6875,-1.76384252869671 0.942793473651997 0.625000000000001,-1.80797858624689 0.855110186860566 0.562500000000001,-1.84775906502257 0.765366864730181 0.500000000000001,-1.88308813036604 0.673779706784442 0.437500000000001,-1.91388067146442 0.580569354508927 0.375000000000002,-1.94006250638909 0.485960359806531 0.312500000000002,-1.96157056080646 0.39018064403226 0.250000000000002,-1.97835301992956 0.293460948910727 0.187500000000002,-1.99036945334439 0.196034280659125 0.125000000000002,-1.99759091241034 0.0981353486548404 0.0625000000000026,-2 0 0),(-1 0 1,0 0.5 2,1 0 3,0 1 3,-1 0 1)),((7 8 7,10 10 5,6 14 3,4 11 4,7 8 7)))
-ST_CurveToLine04|MULTIPOLYGON(((-2 0 0 0,-1.99879545620517 -0.049067674327418 0.0312499999999999 0.0624999999999998,-1.9951847266722 -0.0980171403295604 0.0624999999999998 0.125,-1.98917650996478 -0.146730474455361 0.0937499999999997 0.187499999999999,-1.98078528040323 -0.195090322016128 0.125 0.249999999999999,-1.97003125319454 -0.242980179903263 0.156249999999999 0.312499999999999,-1.95694033573221 -0.290284677254461 0.187499999999999 0.374999999999999,-1.94154406518302 -0.336889853392219 0.218749999999999 0.437499999999999,-1.92387953251129 -0.382683432365089 0.249999999999999 0.499999999999998,-1.90398929312344 -0.427555093430281 0.281249999999999 0.562499999999998,-1.88192126434836 -0.471396736825996 0.312499999999999 0.624999999999998,-1.85772861000027 -0.51410274419322 0.343749999999999 0.687499999999998,-1.83146961230255 -0.555570233019601 0.374999999999999 0.749999999999997,-1.80320753148065 -0.595699304492432 0.406249999999999 0.812499999999997,-1.77301045336274 -0.634393284163644 0.437499999999999 0.874999999999997,-1.74095112535496 -0.671558954847017 0.468749999999998 0.937499999999997,-1.70710678118655 -0.707106781186546 0.499999999999998 0.999999999999997,-1.67155895484702 -0.740951125354957 0.531249999999998 1.0625,-1.63439328416365 -0.773010453362735 0.562499999999998 1.125,-1.59569930449244 -0.803207531480643 0.593749999999998 1.1875,-1.5555702330196 -0.831469612302543 0.624999999999998 1.25,-1.51410274419322 -0.85772861000027 0.656249999999998 1.3125,-1.471396736826 -0.881921264348353 0.687499999999998 1.375,-1.42755509343029 -0.903989293123442 0.718749999999998 1.4375,-1.38268343236509 -0.923879532511285 0.749999999999998 1.5,-1.33688985339222 -0.94154406518302 0.781249999999998 1.5625,-1.29028467725447 -0.956940335732208 0.812499999999998 1.625,-1.24298017990327 -0.970031253194543 0.843749999999998 1.6875,-1.19509032201613 -0.98078528040323 0.874999999999998 1.75,-1.14673047445537 -0.98917650996478 0.906249999999998 1.8125,-1.09801714032956 -0.995184726672197 0.937499999999998 1.875,-1.04906767432742 -0.998795456205172 0.968749999999998 1.9375,-1 -1 0.999999999999998 2,-0.950932325672585 -0.998795456205173 1.03125 2.0625,-0.901982859670443 -0.995184726672197 1.0625 2.125,-0.853269525544641 -0.989176509964781 1.09375 2.1875,-0.804909677983875 -0.980785280403231 1.125 2.25,-0.757019820096739 -0.970031253194545 1.15625 2.3125,-0.709715322745541 -0.95694033573221 1.1875 2.375,-0.663110146607783 -0.941544065183022 1.21875 2.4375,-0.617316567634913 -0.923879532511288 1.25 2.5,-0.57244490656972 -0.903989293123445 1.28125 2.5625,-0.528603263174005 -0.881921264348356 1.3125 2.625,-0.485897255806781 -0.857728610000273 1.34375 2.6875,-0.4444297669804 -0.831469612302547 1.375 2.75,-0.404300695507569 -0.803207531480646 1.40625 2.8125,-0.365606715836356 -0.773010453362739 1.4375 2.875,-0.328441045152983 -0.740951125354961 1.46875 2.9375,-0.292893218813454 -0.707106781186549 1.5 3,-0.259048874645043 -0.67155895484702 1.53125 3.0625,-0.226989546637265 -0.634393284163647 1.5625 3.125,-0.196792468519356 -0.595699304492435 1.59375 3.1875,-0.168530387697456 -0.555570233019604 1.625 3.25,-0.142271389999729 -0.514102744193224 1.65625 3.3125,-0.118078735651646 -0.471396736826 1.6875 3.375,-0.0960107068765576 -0.427555093430284 1.71875 3.4375,-0.0761204674887141 -0.382683432365092 1.75 3.5,-0.0584559348169799 -0.336889853392222 1.78125 3.5625,-0.0430596642677918 -0.290284677254464 1.8125 3.625,-0.0299687468054565 -0.242980179903266 1.84375 3.6875,-0.01921471959677 -0.19509032201613 1.875 3.75,-0.0108234900352193 -0.146730474455364 1.90625 3.8125,-0.00481527332780333 -0.0980171403295628 1.9375 3.875,-0.00120454379482771 -0.0490676743274202 1.96875 3.9375,0 0 2 4,0.0012045437948276 -0.049067674327418 2.03125 4.0625,0.00481527332780309 -0.0980171403295604 2.0625 4.125,0.010823490035219 -0.146730474455361 2.09375 4.1875,0.0192147195967694 -0.195090322016128 2.125 4.25,0.0299687468054558 -0.242980179903263 2.15625 4.3125,0.0430596642677909 -0.290284677254461 2.1875 4.375,0.0584559348169789 -0.336889853392219 2.21875 4.4375,0.0761204674887128 -0.382683432365089 2.25 4.5,0.0960107068765561 -0.427555093430281 2.28125 4.5625,0.118078735651644 -0.471396736825996 2.3125 4.625,0.142271389999727 -0.51410274419322 2.34375 4.6875,0.168530387697454 -0.555570233019601 2.375 4.75,0.196792468519354 -0.595699304492432 2.40625 4.8125,0.226989546637262 -0.634393284163644 2.4375 4.875,0.259048874645039 -0.671558954847017 2.46875 4.9375,0.292893218813451 -0.707106781186546 2.5 5,0.32844104515298 -0.740951125354957 2.53125 5.0625,0.365606715836352 -0.773010453362735 2.5625 5.125,0.404300695507564 -0.803207531480643 2.59375 5.1875,0.444429766980395 -0.831469612302543 2.625 5.25,0.485897255806775 -0.85772861000027 2.65625 5.3125,0.528603263173999 -0.881921264348353 2.6875 5.375,0.572444906569714 -0.903989293123442 2.71875 5.4375,0.617316567634907 -0.923879532511285 2.75 5.5,0.663110146607777 -0.94154406518302 2.78125 5.5625,0.709715322745534 -0.956940335732208 2.8125 5.625,0.757019820096733 -0.970031253194543 2.84375 5.6875,0.804909677983868 -0.98078528040323 2.875 5.75,0.853269525544635 -0.98917650996478 2.90625 5.8125,0.901982859670436 -0.995184726672197 2.9375 5.875,0.950932325672579 -0.998795456205172 2.96875 5.9375,0.999999999999997 -1 3 6,1.04906767432741 -0.998795456205173 3.03125 6.0625,1.09801714032956 -0.995184726672197 3.0625 6.125,1.14673047445536 -0.989176509964781 3.09375 6.1875,1.19509032201613 -0.980785280403231 3.125 6.25,1.24298017990326 -0.970031253194545 3.15625 6.3125,1.29028467725446 -0.95694033573221 3.1875 6.375,1.33688985339222 -0.941544065183022 3.21875 6.4375,1.38268343236509 -0.923879532511288 3.25 6.5,1.42755509343028 -0.903989293123445 3.28125 6.5625,1.471396736826 -0.881921264348356 3.3125 6.625,1.51410274419322 -0.857728610000273 3.34375 6.6875,1.5555702330196 -0.831469612302547 3.375 6.75,1.59569930449243 -0.803207531480646 3.40625 6.8125,1.63439328416364 -0.773010453362739 3.4375 6.875,1.67155895484702 -0.740951125354961 3.46875 6.9375,1.70710678118655 -0.707106781186549 3.5 7,1.74095112535496 -0.67155895484702 3.53125 7.0625,1.77301045336274 -0.634393284163647 3.5625 7.125,1.80320753148064 -0.595699304492435 3.59375 7.1875,1.83146961230254 -0.555570233019604 3.625 7.25,1.85772861000027 -0.514102744193224 3.65625 7.3125,1.88192126434835 -0.471396736826 3.6875 7.375,1.90398929312344 -0.427555093430284 3.71875 7.4375,1.92387953251129 -0.382683432365092 3.75 7.5,1.94154406518302 -0.336889853392222 3.78125 7.5625,1.95694033573221 -0.290284677254464 3.8125 7.625,1.97003125319454 -0.242980179903266 3.84375 7.6875,1.98078528040323 -0.19509032201613 3.875 7.75,1.98917650996478 -0.146730474455364 3.90625 7.8125,1.9951847266722 -0.0980171403295628 3.9375 7.875,1.99879545620517 -0.0490676743274202 3.96875 7.9375,2 0 4 8,1.99759091241034 0.098135348654836 3.9375 7.875,1.99036945334439 0.196034280659121 3.875 7.75,1.97835301992956 0.293460948910723 3.8125 7.625,1.96157056080646 0.390180644032256 3.75 7.5,1.94006250638909 0.485960359806528 3.6875 7.375,1.91388067146442 0.580569354508925 3.625 7.25,1.88308813036604 0.67377970678444 3.5625 7.125,1.84775906502257 0.76536686473018 3.5 7,1.80797858624689 0.855110186860564 3.4375 6.875,1.76384252869671 0.942793473651995 3.375 6.75,1.71545722000054 1.02820548838644 3.3125 6.625,1.66293922460509 1.1111404660392 3.25 6.5,1.60641506296129 1.19139860898487 3.1875 6.375,1.54602090672547 1.26878656832729 3.125 6.25,1.48190225070992 1.34311790969404 3.0625 6.125,1.41421356237309 1.4142135623731 3 6,1.34311790969404 1.48190225070992 2.9375 5.875,1.26878656832729 1.54602090672547 2.875 5.75,1.19139860898487 1.60641506296129 2.8125 5.625,1.1111404660392 1.66293922460509 2.75 5.5,1.02820548838644 1.71545722000054 2.6875 5.375,0.942793473651994 1.76384252869671 2.625 5.25,0.855110186860563 1.80797858624689 2.5625 5.125,0.765366864730178 1.84775906502257 2.5 5,0.673779706784439 1.88308813036604 2.4375 4.875,0.580569354508923 1.91388067146442 2.375 4.75,0.485960359806526 1.94006250638909 2.3125 4.625,0.390180644032255 1.96157056080646 2.25 4.5,0.293460948910722 1.97835301992956 2.1875 4.375,0.196034280659119 1.99036945334439 2.125 4.25,0.098135348654834 1.99759091241034 2.0625 4.125,-2.09798541386808e-15 2 2 4,-0.0981353486548382 1.99759091241034 1.9375 3.875,-0.196034280659124 1.99036945334439 1.875 3.75,-0.293460948910726 1.97835301992956 1.8125 3.625,-0.390180644032259 1.96157056080646 1.75 3.5,-0.48596035980653 1.94006250638909 1.6875 3.375,-0.580569354508927 1.91388067146442 1.625 3.25,-0.673779706784443 1.88308813036604 1.5625 3.125,-0.765366864730182 1.84775906502257 1.5 3,-0.855110186860567 1.80797858624689 1.4375 2.875,-0.942793473651998 1.76384252869671 1.375 2.75,-1.02820548838645 1.71545722000054 1.3125 2.625,-1.11114046603921 1.66293922460509 1.25 2.5,-1.19139860898487 1.60641506296129 1.1875 2.375,-1.26878656832729 1.54602090672547 1.125 2.25,-1.34311790969404 1.48190225070992 1.0625 2.125,-1.4142135623731 1.41421356237309 0.999999999999999 2,-1.48190225070992 1.34311790969404 0.9375 1.875,-1.54602090672547 1.26878656832729 0.875 1.75,-1.60641506296129 1.19139860898487 0.8125 1.625,-1.66293922460509 1.11114046603921 0.75 1.5,-1.71545722000054 1.02820548838644 0.6875 1.375,-1.76384252869671 0.942793473651997 0.625000000000001 1.25,-1.80797858624689 0.855110186860566 0.562500000000001 1.125,-1.84775906502257 0.765366864730181 0.500000000000001 1,-1.88308813036604 0.673779706784442 0.437500000000001 0.875000000000003,-1.91388067146442 0.580569354508927 0.375000000000002 0.750000000000003,-1.94006250638909 0.485960359806531 0.312500000000002 0.625000000000004,-1.96157056080646 0.39018064403226 0.250000000000002 0.500000000000004,-1.97835301992956 0.293460948910727 0.187500000000002 0.375000000000004,-1.99036945334439 0.196034280659125 0.125000000000002 0.250000000000005,-1.99759091241034 0.0981353486548404 0.0625000000000026 0.125000000000005,-2 0 0 0),(-1 0 1 2,0 0.5 2 4,1 0 3 6,0 1 3 4,-1 0 1 2)),((7 8 7 8,10 10 5 5,6 14 3 1,4 11 4 6,7 8 7 8)))
+ST_CurveToLine-201|MULTIPOLYGON(((-2 0,-1.70710678 -0.70710678,-1 -1,-0.29289322 -0.70710678,0 0,0.29289322 -0.70710678,1 -1,1.70710678 -0.70710678,2 0,1.41421356 1.41421356,0 2,-1.41421356 1.41421356,-2 0),(-1 0,0 0.5,1 0,0 1,-1 0)),((7 8,10 10,6 14,4 11,7 8)))
+ST_CurveToLine-202|MULTIPOLYGONM(((-2 0 0,-1.70710678 -0.70710678 1,-1 -1 2,-0.29289322 -0.70710678 3,0 0 4,0.29289322 -0.70710678 5,1 -1 6,1.70710678 -0.70710678 7,2 0 8,1.41421356 1.41421356 6,0 2 4,-1.41421356 1.41421356 2,-2 0 0),(-1 0 2,0 0.5 4,1 0 6,0 1 4,-1 0 2)),((7 8 8,10 10 5,6 14 1,4 11 6,7 8 8)))
+ST_CurveToLine-203|MULTIPOLYGON(((-2 0 0,-1.70710678 -0.70710678 0.5,-1 -1 1,-0.29289322 -0.70710678 1.5,0 0 2,0.29289322 -0.70710678 2.5,1 -1 3,1.70710678 -0.70710678 3.5,2 0 4,1.41421356 1.41421356 3,0 2 2,-1.41421356 1.41421356 1,-2 0 0),(-1 0 1,0 0.5 2,1 0 3,0 1 3,-1 0 1)),((7 8 7,10 10 5,6 14 3,4 11 4,7 8 7)))
+ST_CurveToLine-204|MULTIPOLYGON(((-2 0 0 0,-1.70710678 -0.70710678 0.5 1,-1 -1 1 2,-0.29289322 -0.70710678 1.5 3,0 0 2 4,0.29289322 -0.70710678 2.5 5,1 -1 3 6,1.70710678 -0.70710678 3.5 7,2 0 4 8,1.41421356 1.41421356 3 6,0 2 2 4,-1.41421356 1.41421356 1 2,-2 0 0 0),(-1 0 1 2,0 0.5 2 4,1 0 3 6,0 1 3 4,-1 0 1 2)),((7 8 7 8,10 10 5 5,6 14 3 1,4 11 4 6,7 8 7 8)))
+ST_CurveToLine-401|MULTIPOLYGON(((-2 0,-1.92387953 -0.38268343,-1.70710678 -0.70710678,-1.38268343 -0.92387953,-1 -1,-0.61731657 -0.92387953,-0.29289322 -0.70710678,-0.07612047 -0.38268343,0 0,0.07612047 -0.38268343,0.29289322 -0.70710678,0.61731657 -0.92387953,1 -1,1.38268343 -0.92387953,1.70710678 -0.70710678,1.92387953 -0.38268343,2 0,1.84775907 0.76536686,1.41421356 1.41421356,0.76536686 1.84775907,0 2,-0.76536686 1.84775907,-1.41421356 1.41421356,-1.84775907 0.76536686,-2 0),(-1 0,0 0.5,1 0,0 1,-1 0)),((7 8,10 10,6 14,4 11,7 8)))
+ST_CurveToLine-402|MULTIPOLYGONM(((-2 0 0,-1.92387953 -0.38268343 0.5,-1.70710678 -0.70710678 1,-1.38268343 -0.92387953 1.5,-1 -1 2,-0.61731657 -0.92387953 2.5,-0.29289322 -0.70710678 3,-0.07612047 -0.38268343 3.5,0 0 4,0.07612047 -0.38268343 4.5,0.29289322 -0.70710678 5,0.61731657 -0.92387953 5.5,1 -1 6,1.38268343 -0.92387953 6.5,1.70710678 -0.70710678 7,1.92387953 -0.38268343 7.5,2 0 8,1.84775907 0.76536686 7,1.41421356 1.41421356 6,0.76536686 1.84775907 5,0 2 4,-0.76536686 1.84775907 3,-1.41421356 1.41421356 2,-1.84775907 0.76536686 1,-2 0 0),(-1 0 2,0 0.5 4,1 0 6,0 1 4,-1 0 2)),((7 8 8,10 10 5,6 14 1,4 11 6,7 8 8)))
+ST_CurveToLine-403|MULTIPOLYGON(((-2 0 0,-1.92387953 -0.38268343 0.25,-1.70710678 -0.70710678 0.5,-1.38268343 -0.92387953 0.75,-1 -1 1,-0.61731657 -0.92387953 1.25,-0.29289322 -0.70710678 1.5,-0.07612047 -0.38268343 1.75,0 0 2,0.07612047 -0.38268343 2.25,0.29289322 -0.70710678 2.5,0.61731657 -0.92387953 2.75,1 -1 3,1.38268343 -0.92387953 3.25,1.70710678 -0.70710678 3.5,1.92387953 -0.38268343 3.75,2 0 4,1.84775907 0.76536686 3.5,1.41421356 1.41421356 3,0.76536686 1.84775907 2.5,0 2 2,-0.76536686 1.84775907 1.5,-1.41421356 1.41421356 1,-1.84775907 0.76536686 0.5,-2 0 0),(-1 0 1,0 0.5 2,1 0 3,0 1 3,-1 0 1)),((7 8 7,10 10 5,6 14 3,4 11 4,7 8 7)))
+ST_CurveToLine-404|MULTIPOLYGON(((-2 0 0 0,-1.92387953 -0.38268343 0.25 0.5,-1.70710678 -0.70710678 0.5 1,-1.38268343 -0.92387953 0.75 1.5,-1 -1 1 2,-0.61731657 -0.92387953 1.25 2.5,-0.29289322 -0.70710678 1.5 3,-0.07612047 -0.38268343 1.75 3.5,0 0 2 4,0.07612047 -0.38268343 2.25 4.5,0.29289322 -0.70710678 2.5 5,0.61731657 -0.92387953 2.75 5.5,1 -1 3 6,1.38268343 -0.92387953 3.25 6.5,1.70710678 -0.70710678 3.5 7,1.92387953 -0.38268343 3.75 7.5,2 0 4 8,1.84775907 0.76536686 3.5 7,1.41421356 1.41421356 3 6,0.76536686 1.84775907 2.5 5,0 2 2 4,-0.76536686 1.84775907 1.5 3,-1.41421356 1.41421356 1 2,-1.84775907 0.76536686 0.5 1,-2 0 0 0),(-1 0 1 2,0 0.5 2 4,1 0 3 6,0 1 3 4,-1 0 1 2)),((7 8 7 8,10 10 5 5,6 14 3 1,4 11 4 6,7 8 7 8)))
+ST_CurveToLine01|MULTIPOLYGON(((-2 0,-1.99879546 -0.04906767,-1.99518473 -0.09801714,-1.98917651 -0.14673047,-1.98078528 -0.19509032,-1.97003125 -0.24298018,-1.95694034 -0.29028468,-1.94154407 -0.33688985,-1.92387953 -0.38268343,-1.90398929 -0.42755509,-1.88192126 -0.47139674,-1.85772861 -0.51410274,-1.83146961 -0.55557023,-1.80320753 -0.5956993,-1.77301045 -0.63439328,-1.74095113 -0.67155895,-1.70710678 -0.70710678,-1.67155895 -0.74095113,-1.63439328 -0.77301045,-1.5956993 -0.80320753,-1.55557023 -0.83146961,-1.51410274 -0.85772861,-1.47139674 -0.88192126,-1.42755509 -0.90398929,-1.38268343 -0.92387953,-1.33688985 -0.94154407,-1.29028468 -0.95694034,-1.24298018 -0.97003125,-1.19509032 -0.98078528,-1.14673047 -0.98917651,-1.09801714 -0.99518473,-1.04906767 -0.99879546,-1 -1,-0.95093233 -0.99879546,-0.90198286 -0.99518473,-0.85326953 -0.98917651,-0.80490968 -0.98078528,-0.75701982 -0.97003125,-0.70971532 -0.95694034,-0.66311015 -0.94154407,-0.61731657 -0.92387953,-0.57244491 -0.90398929,-0.52860326 -0.88192126,-0.48589726 -0.85772861,-0.44442977 -0.83146961,-0.4043007 -0.80320753,-0.36560672 -0.77301045,-0.32844105 -0.74095113,-0.29289322 -0.70710678,-0.25904887 -0.67155895,-0.22698955 -0.63439328,-0.19679247 -0.5956993,-0.16853039 -0.55557023,-0.14227139 -0.51410274,-0.11807874 -0.47139674,-0.09601071 -0.42755509,-0.07612047 -0.38268343,-0.05845593 -0.33688985,-0.04305966 -0.29028468,-0.02996875 -0.24298018,-0.01921472 -0.19509032,-0.01082349 -0.14673047,-0.00481527 -0.09801714,-0.00120454 -0.04906767,0 0,0.00120454 -0.04906767,0.00481527 -0.09801714,0.01082349 -0.14673047,0.01921472 -0.19509032,0.02996875 -0.24298018,0.04305966 -0.29028468,0.05845593 -0.33688985,0.07612047 -0.38268343,0.09601071 -0.42755509,0.11807874 -0.47139674,0.14227139 -0.51410274,0.16853039 -0.55557023,0.19679247 -0.5956993,0.22698955 -0.63439328,0.25904887 -0.67155895,0.29289322 -0.70710678,0.32844105 -0.74095113,0.36560672 -0.77301045,0.4043007 -0.80320753,0.44442977 -0.83146961,0.48589726 -0.85772861,0.52860326 -0.88192126,0.57244491 -0.90398929,0.61731657 -0.92387953,0.66311015 -0.94154407,0.70971532 -0.95694034,0.75701982 -0.97003125,0.80490968 -0.98078528,0.85326953 -0.98917651,0.90198286 -0.99518473,0.95093233 -0.99879546,1 -1,1.04906767 -0.99879546,1.09801714 -0.99518473,1.14673047 -0.98917651,1.19509032 -0.98078528,1.24298018 -0.97003125,1.29028468 -0.95694034,1.33688985 -0.94154407,1.38268343 -0.92387953,1.42755509 -0.90398929,1.47139674 -0.88192126,1.51410274 -0.85772861,1.55557023 -0.83146961,1.5956993 -0.80320753,1.63439328 -0.77301045,1.67155895 -0.74095113,1.70710678 -0.70710678,1.74095113 -0.67155895,1.77301045 -0.63439328,1.80320753 -0.5956993,1.83146961 -0.55557023,1.85772861 -0.51410274,1.88192126 -0.47139674,1.90398929 -0.42755509,1.92387953 -0.38268343,1.94154407 -0.33688985,1.95694034 -0.29028468,1.97003125 -0.24298018,1.98078528 -0.19509032,1.98917651 -0.14673047,1.99518473 -0.09801714,1.99879546 -0.04906767,2 0,1.99759091 0.09813535,1.99036945 0.19603428,1.97835302 0.29346095,1.96157056 0.39018064,1.94006251 0.48596036,1.91388067 0.58056935,1.88308813 0.67377971,1.84775907 0.76536686,1.80797859 0.85511019,1.76384253 0.94279347,1.71545722 1.02820549,1.66293922 1.11114047,1.60641506 1.19139861,1.54602091 1.26878657,1.48190225 1.34311791,1.41421356 1.41421356,1.34311791 1.48190225,1.26878657 1.54602091,1.19139861 1.60641506,1.11114047 1.66293922,1.02820549 1.71545722,0.94279347 1.76384253,0.85511019 1.80797859,0.76536686 1.84775907,0.67377971 1.88308813,0.58056935 1.91388067,0.48596036 1.94006251,0.39018064 1.96157056,0.29346095 1.97835302,0.19603428 1.99036945,0.09813535 1.99759091,0 2,-0.09813535 1.99759091,-0.19603428 1.99036945,-0.29346095 1.97835302,-0.39018064 1.96157056,-0.48596036 1.94006251,-0.58056935 1.91388067,-0.67377971 1.88308813,-0.76536686 1.84775907,-0.85511019 1.80797859,-0.94279347 1.76384253,-1.02820549 1.71545722,-1.11114047 1.66293922,-1.19139861 1.60641506,-1.26878657 1.54602091,-1.34311791 1.48190225,-1.41421356 1.41421356,-1.48190225 1.34311791,-1.54602091 1.26878657,-1.60641506 1.19139861,-1.66293922 1.11114047,-1.71545722 1.02820549,-1.76384253 0.94279347,-1.80797859 0.85511019,-1.84775907 0.76536686,-1.88308813 0.67377971,-1.91388067 0.58056935,-1.94006251 0.48596036,-1.96157056 0.39018064,-1.97835302 0.29346095,-1.99036945 0.19603428,-1.99759091 0.09813535,-2 0),(-1 0,0 0.5,1 0,0 1,-1 0)),((7 8,10 10,6 14,4 11,7 8)))
+ST_CurveToLine02|MULTIPOLYGONM(((-2 0 0,-1.99879546 -0.04906767 0.0625,-1.99518473 -0.09801714 0.125,-1.98917651 -0.14673047 0.1875,-1.98078528 -0.19509032 0.25,-1.97003125 -0.24298018 0.3125,-1.95694034 -0.29028468 0.375,-1.94154407 -0.33688985 0.4375,-1.92387953 -0.38268343 0.5,-1.90398929 -0.42755509 0.5625,-1.88192126 -0.47139674 0.625,-1.85772861 -0.51410274 0.6875,-1.83146961 -0.55557023 0.75,-1.80320753 -0.5956993 0.8125,-1.77301045 -0.63439328 0.875,-1.74095113 -0.67155895 0.9375,-1.70710678 -0.70710678 1,-1.67155895 -0.74095113 1.0625,-1.63439328 -0.77301045 1.125,-1.5956993 -0.80320753 1.1875,-1.55557023 -0.83146961 1.25,-1.51410274 -0.85772861 1.3125,-1.47139674 -0.88192126 1.375,-1.42755509 -0.90398929 1.4375,-1.38268343 -0.92387953 1.5,-1.33688985 -0.94154407 1.5625,-1.29028468 -0.95694034 1.625,-1.24298018 -0.97003125 1.6875,-1.19509032 -0.98078528 1.75,-1.14673047 -0.98917651 1.8125,-1.09801714 -0.99518473 1.875,-1.04906767 -0.99879546 1.9375,-1 -1 2,-0.95093233 -0.99879546 2.0625,-0.90198286 -0.99518473 2.125,-0.85326953 -0.98917651 2.1875,-0.80490968 -0.98078528 2.25,-0.75701982 -0.97003125 2.3125,-0.70971532 -0.95694034 2.375,-0.66311015 -0.94154407 2.4375,-0.61731657 -0.92387953 2.5,-0.57244491 -0.90398929 2.5625,-0.52860326 -0.88192126 2.625,-0.48589726 -0.85772861 2.6875,-0.44442977 -0.83146961 2.75,-0.4043007 -0.80320753 2.8125,-0.36560672 -0.77301045 2.875,-0.32844105 -0.74095113 2.9375,-0.29289322 -0.70710678 3,-0.25904887 -0.67155895 3.0625,-0.22698955 -0.63439328 3.125,-0.19679247 -0.5956993 3.1875,-0.16853039 -0.55557023 3.25,-0.14227139 -0.51410274 3.3125,-0.11807874 -0.47139674 3.375,-0.09601071 -0.42755509 3.4375,-0.07612047 -0.38268343 3.5,-0.05845593 -0.33688985 3.5625,-0.04305966 -0.29028468 3.625,-0.02996875 -0.24298018 3.6875,-0.01921472 -0.19509032 3.75,-0.01082349 -0.14673047 3.8125,-0.00481527 -0.09801714 3.875,-0.00120454 -0.04906767 3.9375,0 0 4,0.00120454 -0.04906767 4.0625,0.00481527 -0.09801714 4.125,0.01082349 -0.14673047 4.1875,0.01921472 -0.19509032 4.25,0.02996875 -0.24298018 4.3125,0.04305966 -0.29028468 4.375,0.05845593 -0.33688985 4.4375,0.07612047 -0.38268343 4.5,0.09601071 -0.42755509 4.5625,0.11807874 -0.47139674 4.625,0.14227139 -0.51410274 4.6875,0.16853039 -0.55557023 4.75,0.19679247 -0.5956993 4.8125,0.22698955 -0.63439328 4.875,0.25904887 -0.67155895 4.9375,0.29289322 -0.70710678 5,0.32844105 -0.74095113 5.0625,0.36560672 -0.77301045 5.125,0.4043007 -0.80320753 5.1875,0.44442977 -0.83146961 5.25,0.48589726 -0.85772861 5.3125,0.52860326 -0.88192126 5.375,0.57244491 -0.90398929 5.4375,0.61731657 -0.92387953 5.5,0.66311015 -0.94154407 5.5625,0.70971532 -0.95694034 5.625,0.75701982 -0.97003125 5.6875,0.80490968 -0.98078528 5.75,0.85326953 -0.98917651 5.8125,0.90198286 -0.99518473 5.875,0.95093233 -0.99879546 5.9375,1 -1 6,1.04906767 -0.99879546 6.0625,1.09801714 -0.99518473 6.125,1.14673047 -0.98917651 6.1875,1.19509032 -0.98078528 6.25,1.24298018 -0.97003125 6.3125,1.29028468 -0.95694034 6.375,1.33688985 -0.94154407 6.4375,1.38268343 -0.92387953 6.5,1.42755509 -0.90398929 6.5625,1.47139674 -0.88192126 6.625,1.51410274 -0.85772861 6.6875,1.55557023 -0.83146961 6.75,1.5956993 -0.80320753 6.8125,1.63439328 -0.77301045 6.875,1.67155895 -0.74095113 6.9375,1.70710678 -0.70710678 7,1.74095113 -0.67155895 7.0625,1.77301045 -0.63439328 7.125,1.80320753 -0.5956993 7.1875,1.83146961 -0.55557023 7.25,1.85772861 -0.51410274 7.3125,1.88192126 -0.47139674 7.375,1.90398929 -0.42755509 7.4375,1.92387953 -0.38268343 7.5,1.94154407 -0.33688985 7.5625,1.95694034 -0.29028468 7.625,1.97003125 -0.24298018 7.6875,1.98078528 -0.19509032 7.75,1.98917651 -0.14673047 7.8125,1.99518473 -0.09801714 7.875,1.99879546 -0.04906767 7.9375,2 0 8,1.99759091 0.09813535 7.875,1.99036945 0.19603428 7.75,1.97835302 0.29346095 7.625,1.96157056 0.39018064 7.5,1.94006251 0.48596036 7.375,1.91388067 0.58056935 7.25,1.88308813 0.67377971 7.125,1.84775907 0.76536686 7,1.80797859 0.85511019 6.875,1.76384253 0.94279347 6.75,1.71545722 1.02820549 6.625,1.66293922 1.11114047 6.5,1.60641506 1.19139861 6.375,1.54602091 1.26878657 6.25,1.48190225 1.34311791 6.125,1.41421356 1.41421356 6,1.34311791 1.48190225 5.875,1.26878657 1.54602091 5.75,1.19139861 1.60641506 5.625,1.11114047 1.66293922 5.5,1.02820549 1.71545722 5.375,0.94279347 1.76384253 5.25,0.85511019 1.80797859 5.125,0.76536686 1.84775907 5,0.67377971 1.88308813 4.875,0.58056935 1.91388067 4.75,0.48596036 1.94006251 4.625,0.39018064 1.96157056 4.5,0.29346095 1.97835302 4.375,0.19603428 1.99036945 4.25,0.09813535 1.99759091 4.125,0 2 4,-0.09813535 1.99759091 3.875,-0.19603428 1.99036945 3.75,-0.29346095 1.97835302 3.625,-0.39018064 1.96157056 3.5,-0.48596036 1.94006251 3.375,-0.58056935 1.91388067 3.25,-0.67377971 1.88308813 3.125,-0.76536686 1.84775907 3,-0.85511019 1.80797859 2.875,-0.94279347 1.76384253 2.75,-1.02820549 1.71545722 2.625,-1.11114047 1.66293922 2.5,-1.19139861 1.60641506 2.375,-1.26878657 1.54602091 2.25,-1.34311791 1.48190225 2.125,-1.41421356 1.41421356 2,-1.48190225 1.34311791 1.875,-1.54602091 1.26878657 1.75,-1.60641506 1.19139861 1.625,-1.66293922 1.11114047 1.5,-1.71545722 1.02820549 1.375,-1.76384253 0.94279347 1.25,-1.80797859 0.85511019 1.125,-1.84775907 0.76536686 1,-1.88308813 0.67377971 0.875,-1.91388067 0.58056935 0.75,-1.94006251 0.48596036 0.625,-1.96157056 0.39018064 0.5,-1.97835302 0.29346095 0.375,-1.99036945 0.19603428 0.25,-1.99759091 0.09813535 0.125,-2 0 0),(-1 0 2,0 0.5 4,1 0 6,0 1 4,-1 0 2)),((7 8 8,10 10 5,6 14 1,4 11 6,7 8 8)))
+ST_CurveToLine03|MULTIPOLYGON(((-2 0 0,-1.99879546 -0.04906767 0.03125,-1.99518473 -0.09801714 0.0625,-1.98917651 -0.14673047 0.09375,-1.98078528 -0.19509032 0.125,-1.97003125 -0.24298018 0.15625,-1.95694034 -0.29028468 0.1875,-1.94154407 -0.33688985 0.21875,-1.92387953 -0.38268343 0.25,-1.90398929 -0.42755509 0.28125,-1.88192126 -0.47139674 0.3125,-1.85772861 -0.51410274 0.34375,-1.83146961 -0.55557023 0.375,-1.80320753 -0.5956993 0.40625,-1.77301045 -0.63439328 0.4375,-1.74095113 -0.67155895 0.46875,-1.70710678 -0.70710678 0.5,-1.67155895 -0.74095113 0.53125,-1.63439328 -0.77301045 0.5625,-1.5956993 -0.80320753 0.59375,-1.55557023 -0.83146961 0.625,-1.51410274 -0.85772861 0.65625,-1.47139674 -0.88192126 0.6875,-1.42755509 -0.90398929 0.71875,-1.38268343 -0.92387953 0.75,-1.33688985 -0.94154407 0.78125,-1.29028468 -0.95694034 0.8125,-1.24298018 -0.97003125 0.84375,-1.19509032 -0.98078528 0.875,-1.14673047 -0.98917651 0.90625,-1.09801714 -0.99518473 0.9375,-1.04906767 -0.99879546 0.96875,-1 -1 1,-0.95093233 -0.99879546 1.03125,-0.90198286 -0.99518473 1.0625,-0.85326953 -0.98917651 1.09375,-0.80490968 -0.98078528 1.125,-0.75701982 -0.97003125 1.15625,-0.70971532 -0.95694034 1.1875,-0.66311015 -0.94154407 1.21875,-0.61731657 -0.92387953 1.25,-0.57244491 -0.90398929 1.28125,-0.52860326 -0.88192126 1.3125,-0.48589726 -0.85772861 1.34375,-0.44442977 -0.83146961 1.375,-0.4043007 -0.80320753 1.40625,-0.36560672 -0.77301045 1.4375,-0.32844105 -0.74095113 1.46875,-0.29289322 -0.70710678 1.5,-0.25904887 -0.67155895 1.53125,-0.22698955 -0.63439328 1.5625,-0.19679247 -0.5956993 1.59375,-0.16853039 -0.55557023 1.625,-0.14227139 -0.51410274 1.65625,-0.11807874 -0.47139674 1.6875,-0.09601071 -0.42755509 1.71875,-0.07612047 -0.38268343 1.75,-0.05845593 -0.33688985 1.78125,-0.04305966 -0.29028468 1.8125,-0.02996875 -0.24298018 1.84375,-0.01921472 -0.19509032 1.875,-0.01082349 -0.14673047 1.90625,-0.00481527 -0.09801714 1.9375,-0.00120454 -0.04906767 1.96875,0 0 2,0.00120454 -0.04906767 2.03125,0.00481527 -0.09801714 2.0625,0.01082349 -0.14673047 2.09375,0.01921472 -0.19509032 2.125,0.02996875 -0.24298018 2.15625,0.04305966 -0.29028468 2.1875,0.05845593 -0.33688985 2.21875,0.07612047 -0.38268343 2.25,0.09601071 -0.42755509 2.28125,0.11807874 -0.47139674 2.3125,0.14227139 -0.51410274 2.34375,0.16853039 -0.55557023 2.375,0.19679247 -0.5956993 2.40625,0.22698955 -0.63439328 2.4375,0.25904887 -0.67155895 2.46875,0.29289322 -0.70710678 2.5,0.32844105 -0.74095113 2.53125,0.36560672 -0.77301045 2.5625,0.4043007 -0.80320753 2.59375,0.44442977 -0.83146961 2.625,0.48589726 -0.85772861 2.65625,0.52860326 -0.88192126 2.6875,0.57244491 -0.90398929 2.71875,0.61731657 -0.92387953 2.75,0.66311015 -0.94154407 2.78125,0.70971532 -0.95694034 2.8125,0.75701982 -0.97003125 2.84375,0.80490968 -0.98078528 2.875,0.85326953 -0.98917651 2.90625,0.90198286 -0.99518473 2.9375,0.95093233 -0.99879546 2.96875,1 -1 3,1.04906767 -0.99879546 3.03125,1.09801714 -0.99518473 3.0625,1.14673047 -0.98917651 3.09375,1.19509032 -0.98078528 3.125,1.24298018 -0.97003125 3.15625,1.29028468 -0.95694034 3.1875,1.33688985 -0.94154407 3.21875,1.38268343 -0.92387953 3.25,1.42755509 -0.90398929 3.28125,1.47139674 -0.88192126 3.3125,1.51410274 -0.85772861 3.34375,1.55557023 -0.83146961 3.375,1.5956993 -0.80320753 3.40625,1.63439328 -0.77301045 3.4375,1.67155895 -0.74095113 3.46875,1.70710678 -0.70710678 3.5,1.74095113 -0.67155895 3.53125,1.77301045 -0.63439328 3.5625,1.80320753 -0.5956993 3.59375,1.83146961 -0.55557023 3.625,1.85772861 -0.51410274 3.65625,1.88192126 -0.47139674 3.6875,1.90398929 -0.42755509 3.71875,1.92387953 -0.38268343 3.75,1.94154407 -0.33688985 3.78125,1.95694034 -0.29028468 3.8125,1.97003125 -0.24298018 3.84375,1.98078528 -0.19509032 3.875,1.98917651 -0.14673047 3.90625,1.99518473 -0.09801714 3.9375,1.99879546 -0.04906767 3.96875,2 0 4,1.99759091 0.09813535 3.9375,1.99036945 0.19603428 3.875,1.97835302 0.29346095 3.8125,1.96157056 0.39018064 3.75,1.94006251 0.48596036 3.6875,1.91388067 0.58056935 3.625,1.88308813 0.67377971 3.5625,1.84775907 0.76536686 3.5,1.80797859 0.85511019 3.4375,1.76384253 0.94279347 3.375,1.71545722 1.02820549 3.3125,1.66293922 1.11114047 3.25,1.60641506 1.19139861 3.1875,1.54602091 1.26878657 3.125,1.48190225 1.34311791 3.0625,1.41421356 1.41421356 3,1.34311791 1.48190225 2.9375,1.26878657 1.54602091 2.875,1.19139861 1.60641506 2.8125,1.11114047 1.66293922 2.75,1.02820549 1.71545722 2.6875,0.94279347 1.76384253 2.625,0.85511019 1.80797859 2.5625,0.76536686 1.84775907 2.5,0.67377971 1.88308813 2.4375,0.58056935 1.91388067 2.375,0.48596036 1.94006251 2.3125,0.39018064 1.96157056 2.25,0.29346095 1.97835302 2.1875,0.19603428 1.99036945 2.125,0.09813535 1.99759091 2.0625,0 2 2,-0.09813535 1.99759091 1.9375,-0.19603428 1.99036945 1.875,-0.29346095 1.97835302 1.8125,-0.39018064 1.96157056 1.75,-0.48596036 1.94006251 1.6875,-0.58056935 1.91388067 1.625,-0.67377971 1.88308813 1.5625,-0.76536686 1.84775907 1.5,-0.85511019 1.80797859 1.4375,-0.94279347 1.76384253 1.375,-1.02820549 1.71545722 1.3125,-1.11114047 1.66293922 1.25,-1.19139861 1.60641506 1.1875,-1.26878657 1.54602091 1.125,-1.34311791 1.48190225 1.0625,-1.41421356 1.41421356 1,-1.48190225 1.34311791 0.9375,-1.54602091 1.26878657 0.875,-1.60641506 1.19139861 0.8125,-1.66293922 1.11114047 0.75,-1.71545722 1.02820549 0.6875,-1.76384253 0.94279347 0.625,-1.80797859 0.85511019 0.5625,-1.84775907 0.76536686 0.5,-1.88308813 0.67377971 0.4375,-1.91388067 0.58056935 0.375,-1.94006251 0.48596036 0.3125,-1.96157056 0.39018064 0.25,-1.97835302 0.29346095 0.1875,-1.99036945 0.19603428 0.125,-1.99759091 0.09813535 0.0625,-2 0 0),(-1 0 1,0 0.5 2,1 0 3,0 1 3,-1 0 1)),((7 8 7,10 10 5,6 14 3,4 11 4,7 8 7)))
+ST_CurveToLine04|MULTIPOLYGON(((-2 0 0 0,-1.99879546 -0.04906767 0.03125 0.0625,-1.99518473 -0.09801714 0.0625 0.125,-1.98917651 -0.14673047 0.09375 0.1875,-1.98078528 -0.19509032 0.125 0.25,-1.97003125 -0.24298018 0.15625 0.3125,-1.95694034 -0.29028468 0.1875 0.375,-1.94154407 -0.33688985 0.21875 0.4375,-1.92387953 -0.38268343 0.25 0.5,-1.90398929 -0.42755509 0.28125 0.5625,-1.88192126 -0.47139674 0.3125 0.625,-1.85772861 -0.51410274 0.34375 0.6875,-1.83146961 -0.55557023 0.375 0.75,-1.80320753 -0.5956993 0.40625 0.8125,-1.77301045 -0.63439328 0.4375 0.875,-1.74095113 -0.67155895 0.46875 0.9375,-1.70710678 -0.70710678 0.5 1,-1.67155895 -0.74095113 0.53125 1.0625,-1.63439328 -0.77301045 0.5625 1.125,-1.5956993 -0.80320753 0.59375 1.1875,-1.55557023 -0.83146961 0.625 1.25,-1.51410274 -0.85772861 0.65625 1.3125,-1.47139674 -0.88192126 0.6875 1.375,-1.42755509 -0.90398929 0.71875 1.4375,-1.38268343 -0.92387953 0.75 1.5,-1.33688985 -0.94154407 0.78125 1.5625,-1.29028468 -0.95694034 0.8125 1.625,-1.24298018 -0.97003125 0.84375 1.6875,-1.19509032 -0.98078528 0.875 1.75,-1.14673047 -0.98917651 0.90625 1.8125,-1.09801714 -0.99518473 0.9375 1.875,-1.04906767 -0.99879546 0.96875 1.9375,-1 -1 1 2,-0.95093233 -0.99879546 1.03125 2.0625,-0.90198286 -0.99518473 1.0625 2.125,-0.85326953 -0.98917651 1.09375 2.1875,-0.80490968 -0.98078528 1.125 2.25,-0.75701982 -0.97003125 1.15625 2.3125,-0.70971532 -0.95694034 1.1875 2.375,-0.66311015 -0.94154407 1.21875 2.4375,-0.61731657 -0.92387953 1.25 2.5,-0.57244491 -0.90398929 1.28125 2.5625,-0.52860326 -0.88192126 1.3125 2.625,-0.48589726 -0.85772861 1.34375 2.6875,-0.44442977 -0.83146961 1.375 2.75,-0.4043007 -0.80320753 1.40625 2.8125,-0.36560672 -0.77301045 1.4375 2.875,-0.32844105 -0.74095113 1.46875 2.9375,-0.29289322 -0.70710678 1.5 3,-0.25904887 -0.67155895 1.53125 3.0625,-0.22698955 -0.63439328 1.5625 3.125,-0.19679247 -0.5956993 1.59375 3.1875,-0.16853039 -0.55557023 1.625 3.25,-0.14227139 -0.51410274 1.65625 3.3125,-0.11807874 -0.47139674 1.6875 3.375,-0.09601071 -0.42755509 1.71875 3.4375,-0.07612047 -0.38268343 1.75 3.5,-0.05845593 -0.33688985 1.78125 3.5625,-0.04305966 -0.29028468 1.8125 3.625,-0.02996875 -0.24298018 1.84375 3.6875,-0.01921472 -0.19509032 1.875 3.75,-0.01082349 -0.14673047 1.90625 3.8125,-0.00481527 -0.09801714 1.9375 3.875,-0.00120454 -0.04906767 1.96875 3.9375,0 0 2 4,0.00120454 -0.04906767 2.03125 4.0625,0.00481527 -0.09801714 2.0625 4.125,0.01082349 -0.14673047 2.09375 4.1875,0.01921472 -0.19509032 2.125 4.25,0.02996875 -0.24298018 2.15625 4.3125,0.04305966 -0.29028468 2.1875 4.375,0.05845593 -0.33688985 2.21875 4.4375,0.07612047 -0.38268343 2.25 4.5,0.09601071 -0.42755509 2.28125 4.5625,0.11807874 -0.47139674 2.3125 4.625,0.14227139 -0.51410274 2.34375 4.6875,0.16853039 -0.55557023 2.375 4.75,0.19679247 -0.5956993 2.40625 4.8125,0.22698955 -0.63439328 2.4375 4.875,0.25904887 -0.67155895 2.46875 4.9375,0.29289322 -0.70710678 2.5 5,0.32844105 -0.74095113 2.53125 5.0625,0.36560672 -0.77301045 2.5625 5.125,0.4043007 -0.80320753 2.59375 5.1875,0.44442977 -0.83146961 2.625 5.25,0.48589726 -0.85772861 2.65625 5.3125,0.52860326 -0.88192126 2.6875 5.375,0.57244491 -0.90398929 2.71875 5.4375,0.61731657 -0.92387953 2.75 5.5,0.66311015 -0.94154407 2.78125 5.5625,0.70971532 -0.95694034 2.8125 5.625,0.75701982 -0.97003125 2.84375 5.6875,0.80490968 -0.98078528 2.875 5.75,0.85326953 -0.98917651 2.90625 5.8125,0.90198286 -0.99518473 2.9375 5.875,0.95093233 -0.99879546 2.96875 5.9375,1 -1 3 6,1.04906767 -0.99879546 3.03125 6.0625,1.09801714 -0.99518473 3.0625 6.125,1.14673047 -0.98917651 3.09375 6.1875,1.19509032 -0.98078528 3.125 6.25,1.24298018 -0.97003125 3.15625 6.3125,1.29028468 -0.95694034 3.1875 6.375,1.33688985 -0.94154407 3.21875 6.4375,1.38268343 -0.92387953 3.25 6.5,1.42755509 -0.90398929 3.28125 6.5625,1.47139674 -0.88192126 3.3125 6.625,1.51410274 -0.85772861 3.34375 6.6875,1.55557023 -0.83146961 3.375 6.75,1.5956993 -0.80320753 3.40625 6.8125,1.63439328 -0.77301045 3.4375 6.875,1.67155895 -0.74095113 3.46875 6.9375,1.70710678 -0.70710678 3.5 7,1.74095113 -0.67155895 3.53125 7.0625,1.77301045 -0.63439328 3.5625 7.125,1.80320753 -0.5956993 3.59375 7.1875,1.83146961 -0.55557023 3.625 7.25,1.85772861 -0.51410274 3.65625 7.3125,1.88192126 -0.47139674 3.6875 7.375,1.90398929 -0.42755509 3.71875 7.4375,1.92387953 -0.38268343 3.75 7.5,1.94154407 -0.33688985 3.78125 7.5625,1.95694034 -0.29028468 3.8125 7.625,1.97003125 -0.24298018 3.84375 7.6875,1.98078528 -0.19509032 3.875 7.75,1.98917651 -0.14673047 3.90625 7.8125,1.99518473 -0.09801714 3.9375 7.875,1.99879546 -0.04906767 3.96875 7.9375,2 0 4 8,1.99759091 0.09813535 3.9375 7.875,1.99036945 0.19603428 3.875 7.75,1.97835302 0.29346095 3.8125 7.625,1.96157056 0.39018064 3.75 7.5,1.94006251 0.48596036 3.6875 7.375,1.91388067 0.58056935 3.625 7.25,1.88308813 0.67377971 3.5625 7.125,1.84775907 0.76536686 3.5 7,1.80797859 0.85511019 3.4375 6.875,1.76384253 0.94279347 3.375 6.75,1.71545722 1.02820549 3.3125 6.625,1.66293922 1.11114047 3.25 6.5,1.60641506 1.19139861 3.1875 6.375,1.54602091 1.26878657 3.125 6.25,1.48190225 1.34311791 3.0625 6.125,1.41421356 1.41421356 3 6,1.34311791 1.48190225 2.9375 5.875,1.26878657 1.54602091 2.875 5.75,1.19139861 1.60641506 2.8125 5.625,1.11114047 1.66293922 2.75 5.5,1.02820549 1.71545722 2.6875 5.375,0.94279347 1.76384253 2.625 5.25,0.85511019 1.80797859 2.5625 5.125,0.76536686 1.84775907 2.5 5,0.67377971 1.88308813 2.4375 4.875,0.58056935 1.91388067 2.375 4.75,0.48596036 1.94006251 2.3125 4.625,0.39018064 1.96157056 2.25 4.5,0.29346095 1.97835302 2.1875 4.375,0.19603428 1.99036945 2.125 4.25,0.09813535 1.99759091 2.0625 4.125,0 2 2 4,-0.09813535 1.99759091 1.9375 3.875,-0.19603428 1.99036945 1.875 3.75,-0.29346095 1.97835302 1.8125 3.625,-0.39018064 1.96157056 1.75 3.5,-0.48596036 1.94006251 1.6875 3.375,-0.58056935 1.91388067 1.625 3.25,-0.67377971 1.88308813 1.5625 3.125,-0.76536686 1.84775907 1.5 3,-0.85511019 1.80797859 1.4375 2.875,-0.94279347 1.76384253 1.375 2.75,-1.02820549 1.71545722 1.3125 2.625,-1.11114047 1.66293922 1.25 2.5,-1.19139861 1.60641506 1.1875 2.375,-1.26878657 1.54602091 1.125 2.25,-1.34311791 1.48190225 1.0625 2.125,-1.41421356 1.41421356 1 2,-1.48190225 1.34311791 0.9375 1.875,-1.54602091 1.26878657 0.875 1.75,-1.60641506 1.19139861 0.8125 1.625,-1.66293922 1.11114047 0.75 1.5,-1.71545722 1.02820549 0.6875 1.375,-1.76384253 0.94279347 0.625 1.25,-1.80797859 0.85511019 0.5625 1.125,-1.84775907 0.76536686 0.5 1,-1.88308813 0.67377971 0.4375 0.875,-1.91388067 0.58056935 0.375 0.75,-1.94006251 0.48596036 0.3125 0.625,-1.96157056 0.39018064 0.25 0.5,-1.97835302 0.29346095 0.1875 0.375,-1.99036945 0.19603428 0.125 0.25,-1.99759091 0.09813535 0.0625 0.125,-2 0 0 0),(-1 0 1 2,0 0.5 2 4,1 0 3 6,0 1 3 4,-1 0 1 2)),((7 8 7 8,10 10 5 5,6 14 3 1,4 11 4 6,7 8 7 8)))
 box2d01|BOX(-2 0,10 14)
 box2d02|BOX(-2 0,10 14)
 box2d03|BOX(-2 0,10 14)
@@ -94,14 +86,6 @@
 asewkt02|MULTISURFACEM(CURVEPOLYGON(CIRCULARSTRING(-2 0 0,-1 -1 2,0 0 4,1 -1 6,2 0 8,0 2 4,-2 0 0),(-1 0 2,0 0.5 4,1 0 6,0 1 4,-1 0 2)),((7 8 8,10 10 5,6 14 1,4 11 6,7 8 8)))
 asewkt03|MULTISURFACE(CURVEPOLYGON(CIRCULARSTRING(-2 0 0,-1 -1 1,0 0 2,1 -1 3,2 0 4,0 2 2,-2 0 0),(-1 0 1,0 0.5 2,1 0 3,0 1 3,-1 0 1)),((7 8 7,10 10 5,6 14 3,4 11 4,7 8 7)))
 asewkt04|MULTISURFACE(CURVEPOLYGON(CIRCULARSTRING(-2 0 0 0,-1 -1 1 2,0 0 2 4,1 -1 3 6,2 0 4 8,0 2 2 4,-2 0 0 0),(-1 0 1 2,0 0.5 2 4,1 0 3 6,0 1 3 4,-1 0 1 2)),((7 8 7 8,10 10 5 5,6 14 3 1,4 11 4 6,7 8 7 8)))
-asbinary01|010f00000002000000010d0000000200000001080000000700000000000000000000c00000000000000000000000000000f0bf000000000000f0bf00000000000000000000000000000000000000000000f03f000000000000f0bf000000000000004000000000000000000000000000000000000000000000004000000000000000c00000000000000000010200000005000000000000000000f0bf00000000000000000000000000000000000000000000e03f000000000000f03f00000000000000000000000000000000000000000000f03f000000000000f0bf0000000000000000010300000001000000050000000000000000001c4000000000000020400000000000002440000000000000244000000000000018400000000000002c40000000000000104000000000000026400000000000001c400000000000002040
-asbinary02|010f00000002000000010d0000000200000001080000000700000000000000000000c00000000000000000000000000000f0bf000000000000f0bf00000000000000000000000000000000000000000000f03f000000000000f0bf000000000000004000000000000000000000000000000000000000000000004000000000000000c00000000000000000010200000005000000000000000000f0bf00000000000000000000000000000000000000000000e03f000000000000f03f00000000000000000000000000000000000000000000f03f000000000000f0bf0000000000000000010300000001000000050000000000000000001c4000000000000020400000000000002440000000000000244000000000000018400000000000002c40000000000000104000000000000026400000000000001c400000000000002040
-asbinary03|010f00000002000000010d0000000200000001080000000700000000000000000000c00000000000000000000000000000f0bf000000000000f0bf00000000000000000000000000000000000000000000f03f000000000000f0bf000000000000004000000000000000000000000000000000000000000000004000000000000000c00000000000000000010200000005000000000000000000f0bf00000000000000000000000000000000000000000000e03f000000000000f03f00000000000000000000000000000000000000000000f03f000000000000f0bf0000000000000000010300000001000000050000000000000000001c4000000000000020400000000000002440000000000000244000000000000018400000000000002c40000000000000104000000000000026400000000000001c400000000000002040
-asbinary04|010f00000002000000010d0000000200000001080000000700000000000000000000c00000000000000000000000000000f0bf000000000000f0bf00000000000000000000000000000000000000000000f03f000000000000f0bf000000000000004000000000000000000000000000000000000000000000004000000000000000c00000000000000000010200000005000000000000000000f0bf00000000000000000000000000000000000000000000e03f000000000000f03f00000000000000000000000000000000000000000000f03f000000000000f0bf0000000000000000010300000001000000050000000000000000001c4000000000000020400000000000002440000000000000244000000000000018400000000000002c40000000000000104000000000000026400000000000001c400000000000002040
-asewkb01|010f00000002000000010d0000000200000001080000000700000000000000000000c00000000000000000000000000000f0bf000000000000f0bf00000000000000000000000000000000000000000000f03f000000000000f0bf000000000000004000000000000000000000000000000000000000000000004000000000000000c00000000000000000010200000005000000000000000000f0bf00000000000000000000000000000000000000000000e03f000000000000f03f00000000000000000000000000000000000000000000f03f000000000000f0bf0000000000000000010300000001000000050000000000000000001c4000000000000020400000000000002440000000000000244000000000000018400000000000002c40000000000000104000000000000026400000000000001c400000000000002040
-asewkb02|010f00004002000000010d0000400200000001080000400700000000000000000000c000000000000000000000000000000000000000000000f0bf000000000000f0bf0000000000000040000000000000000000000000000000000000000000001040000000000000f03f000000000000f0bf000000000000184000000000000000400000000000000000000000000000204000000000000000000000000000000040000000000000104000000000000000c000000000000000000000000000000000010200004005000000000000000000f0bf000000000000000000000000000000400000000000000000000000000000e03f0000000000001040000000000000f03f000000000000000000000000000018400000000000000000000000000000f03f0000000000001040000000000000f0bf00000000000000000000000000000040010300004001000000050000000000000000001c400000000000002040000000000000204000000000000024400000000000002440000000000000144000000000000018400000000000002c40000000000000f03f0000000000001040000000000000264000000000000018400000000000001c4000000000000020400000000000002040
-asewkb03|010f00008002000000010d0000800200000001080000800700000000000000000000c000000000000000000000000000000000000000000000f0bf000000000000f0bf000000000000f03f000000000000000000000000000000000000000000000040000000000000f03f000000000000f0bf000000000000084000000000000000400000000000000000000000000000104000000000000000000000000000000040000000000000004000000000000000c000000000000000000000000000000000010200008005000000000000000000f0bf0000000000000000000000000000f03f0000000000000000000000000000e03f0000000000000040000000000000f03f000000000000000000000000000008400000000000000000000000000000f03f0000000000000840000000000000f0bf0000000000000000000000000000f03f010300008001000000050000000000000000001c4000000000000020400000000000001c4000000000000024400000000000002440000000000000144000000000000018400000000000002c4000000000000008400000000000001040000000000000264000000000000010400000000000001c4000000000000020400000000000001c40
-asewkb04|010f0000c002000000010d0000c00200000001080000c00700000000000000000000c0000000000000000000000000000000000000000000000000000000000000f0bf000000000000f0bf000000000000f03f00000000000000400000000000000000000000000000000000000000000000400000000000001040000000000000f03f000000000000f0bf000000000000084000000000000018400000000000000040000000000000000000000000000010400000000000002040000000000000000000000000000000400000000000000040000000000000104000000000000000c000000000000000000000000000000000000000000000000001020000c005000000000000000000f0bf0000000000000000000000000000f03f00000000000000400000000000000000000000000000e03f00000000000000400000000000001040000000000000f03f0000000000000000000000000000084000000000000018400000000000000000000000000000f03f00000000000008400000000000001040000000000000f0bf0000000000000000000000000000f03f000000000000004001030000c001000000050000000000000000001c4000000000000020400000000000001c400000000000002040000000000000244000000000000024400000000000001440000000000000144000000000000018400000000000002c400000000000000840000000000000f03f00000000000010400000000000002640000000000000104000000000000018400000000000001c4000000000000020400000000000001c400000000000002040
 box2d01|BOX(-2 0,10 14)
 box2d02|BOX(-2 0,10 14)
 box2d03|BOX(-2 0,10 14)



More information about the postgis-commits mailing list