[GRASS-SVN] r46720 - grass/trunk/raster3d/r3.out.vtk

svn_grass at osgeo.org svn_grass at osgeo.org
Thu Jun 16 05:58:31 EDT 2011


Author: huhabla
Date: 2011-06-16 02:58:31 -0700 (Thu, 16 Jun 2011)
New Revision: 46720

Added:
   grass/trunk/raster3d/r3.out.vtk/test.r3.out.vtk.sh
   grass/trunk/raster3d/r3.out.vtk/test_volume_null_1_cells.ref
   grass/trunk/raster3d/r3.out.vtk/test_volume_null_1_cells_elevation.ref
   grass/trunk/raster3d/r3.out.vtk/test_volume_null_1_cells_rgb_vect.ref
   grass/trunk/raster3d/r3.out.vtk/test_volume_null_1_points.ref
   grass/trunk/raster3d/r3.out.vtk/test_volume_null_1_points_elevation.ref
   grass/trunk/raster3d/r3.out.vtk/test_volume_null_1_points_rgb_vect.ref
Modified:
   grass/trunk/raster3d/r3.out.vtk/main.c
   grass/trunk/raster3d/r3.out.vtk/writeVTKData.c
   grass/trunk/raster3d/r3.out.vtk/writeVTKHead.c
Log:
Modified r3.out.vtk to use the correct g3d cube coordinate system. Added
a test script and reference data.


Modified: grass/trunk/raster3d/r3.out.vtk/main.c
===================================================================
--- grass/trunk/raster3d/r3.out.vtk/main.c	2011-06-15 15:58:28 UTC (rev 46719)
+++ grass/trunk/raster3d/r3.out.vtk/main.c	2011-06-16 09:58:31 UTC (rev 46720)
@@ -1,20 +1,20 @@
 
 /****************************************************************************
-*
-* MODULE:       r3.out.vtk  
-*   	    	
-* AUTHOR(S):    Original author 
-*               Soeren Gebbert soerengebbert at gmx de
-* 		27 Feb 2006 Berlin
-* PURPOSE:      Converts 3D raster maps (G3D) into the VTK-Ascii format  
-*
-* COPYRIGHT:    (C) 2005 by the GRASS Development Team
-*
-*               This program is free software under the GNU General Public
-*   	    	License (>=v2). Read the file COPYING that comes with GRASS
-*   	    	for details.
-*
-*****************************************************************************/
+ *
+ * MODULE:       r3.out.vtk  
+ *   	    	
+ * AUTHOR(S):    Original author 
+ *               Soeren Gebbert soerengebbert at gmx de
+ * 		27 Feb 2006 Berlin
+ * PURPOSE:      Converts 3D raster maps (G3D) into the VTK-Ascii format  
+ *
+ * COPYRIGHT:    (C) 2005 by the GRASS Development Team
+ *
+ *               This program is free software under the GNU General Public
+ *   	    	License (>=v2). Read the file COPYING that comes with GRASS
+ *   	    	for details.
+ *
+ *****************************************************************************/
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
@@ -31,7 +31,7 @@
 #include "writeVTKHead.h"
 #include "errorHandling.h"
 
-paramType param;		/*Parameters */
+paramType param; /*Parameters */
 
 double x_extent;
 double y_extent;
@@ -40,11 +40,11 @@
 
 /*Open the rgb voxel maps and write the data to the output */
 static void open_write_rgb_maps(input_maps * in, G3D_Region region, FILE * fp,
-				int dp);
+                                int dp);
 
 /*Open the rgb voxel maps and write the data to the output */
 static void open_write_vector_maps(input_maps * in, G3D_Region region,
-				   FILE * fp, int dp);
+                                   FILE * fp, int dp);
 
 /*opens a raster input map */
 static int open_input_map(const char *name, const char *mapset);
@@ -59,12 +59,13 @@
 
 /* ************************************************************************* */
 /* Open the raster input map *********************************************** */
+
 /* ************************************************************************* */
 input_maps *create_input_maps_struct(void)
 {
     input_maps *in;
 
-    in = (input_maps *) calloc(1, sizeof(input_maps));
+    in = (input_maps *) calloc(1, sizeof (input_maps));
 
     in->map = NULL;
     in->map_r = NULL;
@@ -89,6 +90,7 @@
 
 /* ************************************************************************* */
 /* Open the raster input map *********************************************** */
+
 /* ************************************************************************* */
 int open_input_map(const char *name, const char *mapset)
 {
@@ -101,6 +103,7 @@
 
 /* ************************************************************************* */
 /* Check the input maps **************************************************** */
+
 /* ************************************************************************* */
 void check_input_maps(void)
 {
@@ -110,68 +113,66 @@
     /*Check top and bottom if surface is requested */
     if (param.structgrid->answer) {
 
-	if (!param.top->answer || !param.bottom->answer)
-	    G3d_fatalError(_("You have to specify top and bottom map"));
+        if (!param.top->answer || !param.bottom->answer)
+            G3d_fatalError(_("You have to specify top and bottom map"));
 
-	mapset = NULL;
-	name = NULL;
-	name = param.top->answer;
-	mapset = G_find_raster2(name, "");
-	if (mapset == NULL) {
-	    G3d_fatalError(_("Top cell map <%s> not found"),
-			   param.top->answer);
-	}
+        mapset = NULL;
+        name = NULL;
+        name = param.top->answer;
+        mapset = G_find_raster2(name, "");
+        if (mapset == NULL) {
+            G3d_fatalError(_("Top cell map <%s> not found"),
+                           param.top->answer);
+        }
 
-	mapset = NULL;
-	name = NULL;
-	name = param.bottom->answer;
-	mapset = G_find_raster2(name, "");
-	if (mapset == NULL) {
-	    G3d_fatalError(_("Bottom cell map <%s> not found"),
-			   param.bottom->answer);
-	}
+        mapset = NULL;
+        name = NULL;
+        name = param.bottom->answer;
+        mapset = G_find_raster2(name, "");
+        if (mapset == NULL) {
+            G3d_fatalError(_("Bottom cell map <%s> not found"),
+                           param.bottom->answer);
+        }
     }
 
     /*If input maps are provided, check them */
     if (param.input->answers != NULL) {
-	for (i = 0; param.input->answers[i] != NULL; i++) {
-	    if (NULL == G_find_grid3(param.input->answers[i], ""))
-		G3d_fatalError(_("Requested 3d raster map <%s> not found"),
-			       param.input->answers[i]);
-	}
+        for (i = 0; param.input->answers[i] != NULL; i++) {
+            if (NULL == G_find_grid3(param.input->answers[i], ""))
+                G3d_fatalError(_("Requested 3d raster map <%s> not found"),
+                               param.input->answers[i]);
+        }
     }
 
     /*Check for rgb maps. */
     if (param.rgbmaps->answers != NULL) {
-	for (i = 0; i < 3; i++) {
-	    if (param.rgbmaps->answers[i] != NULL) {
-		if (NULL == G_find_grid3(param.rgbmaps->answers[i], ""))
-		    G3d_fatalError(_("Requested g3d RGB map <%s> not found"),
-				   param.rgbmaps->answers[i]);
-	    }
-	    else {
-		G3d_fatalError(_("Please provide three g3d RGB maps"));
-	    }
-	}
+        for (i = 0; i < 3; i++) {
+            if (param.rgbmaps->answers[i] != NULL) {
+                if (NULL == G_find_grid3(param.rgbmaps->answers[i], ""))
+                    G3d_fatalError(_("Requested g3d RGB map <%s> not found"),
+                                   param.rgbmaps->answers[i]);
+            } else {
+                G3d_fatalError(_("Please provide three g3d RGB maps"));
+            }
+        }
     }
 
     /*Check for vector maps. */
     if (param.vectormaps->answers != NULL) {
-	for (i = 0; i < 3; i++) {
-	    if (param.vectormaps->answers[i] != NULL) {
-		if (NULL == G_find_grid3(param.vectormaps->answers[i], ""))
-		    G3d_fatalError(_("Requested g3d vector map <%s> not found"),
-				   param.vectormaps->answers[i]);
-	    }
-	    else {
-		G3d_fatalError(_("Please provide three g3d vector maps [x,y,z]"));
-	    }
-	}
+        for (i = 0; i < 3; i++) {
+            if (param.vectormaps->answers[i] != NULL) {
+                if (NULL == G_find_grid3(param.vectormaps->answers[i], ""))
+                    G3d_fatalError(_("Requested g3d vector map <%s> not found"),
+                                   param.vectormaps->answers[i]);
+            } else {
+                G3d_fatalError(_("Please provide three g3d vector maps [x,y,z]"));
+            }
+        }
     }
 
     if (param.input->answers == NULL && param.rgbmaps->answers == NULL &&
-	param.vectormaps->answers == NULL) {
-	G_warning(_("No g3d data, RGB or xyz-vector maps are provided! Will only write the geometry."));
+        param.vectormaps->answers == NULL) {
+        G_warning(_("No g3d data, RGB or xyz-vector maps are provided! Will only write the geometry."));
     }
 
     return;
@@ -180,168 +181,170 @@
 
 /* ************************************************************************* */
 /* Prepare the VTK RGB voxel data for writing ****************************** */
+
 /* ************************************************************************* */
 void open_write_rgb_maps(input_maps * in, G3D_Region region, FILE * fp,
-			 int dp)
+                         int dp)
 {
-    int i, changemask[3] = { 0, 0, 0 };
+    int i, changemask[3] = {0, 0, 0};
     void *maprgb = NULL;
 
     if (param.rgbmaps->answers != NULL) {
 
-	/*Loop over all input maps! */
-	for (i = 0; i < 3; i++) {
-	    G_debug(3, _("Open rgb 3d raster map %s"),
-		    param.rgbmaps->answers[i]);
+        /*Loop over all input maps! */
+        for (i = 0; i < 3; i++) {
+            G_debug(3, _("Open rgb 3d raster map %s"),
+                    param.rgbmaps->answers[i]);
 
-	    maprgb = NULL;
-	    /*Open the map */
-	    maprgb =
-		G3d_openCellOld(param.rgbmaps->answers[i],
-				G_find_grid3(param.rgbmaps->answers[i], ""),
-				&region, G3D_TILE_SAME_AS_FILE,
-				G3D_USE_CACHE_DEFAULT);
-	    if (maprgb == NULL) {
-		G_warning(_("Error opening 3d raster map <%s>"),
-			  param.rgbmaps->answers[i]);
-		fatal_error(_("No RGB Data will be created."), in);
-	    }
+            maprgb = NULL;
+            /*Open the map */
+            maprgb =
+                G3d_openCellOld(param.rgbmaps->answers[i],
+                                G_find_grid3(param.rgbmaps->answers[i], ""),
+                                &region, G3D_TILE_SAME_AS_FILE,
+                                G3D_USE_CACHE_DEFAULT);
+            if (maprgb == NULL) {
+                G_warning(_("Error opening 3d raster map <%s>"),
+                          param.rgbmaps->answers[i]);
+                fatal_error(_("No RGB Data will be created."), in);
+            }
 
-	    /*if requested set the Mask on */
-	    if (param.mask->answer) {
-		if (G3d_maskFileExists()) {
-		    changemask[i] = 0;
-		    if (G3d_maskIsOff(maprgb)) {
-			G3d_maskOn(maprgb);
-			changemask[i] = 1;
-		    }
-		}
-	    }
+            /*if requested set the Mask on */
+            if (param.mask->answer) {
+                if (G3d_maskFileExists()) {
+                    changemask[i] = 0;
+                    if (G3d_maskIsOff(maprgb)) {
+                        G3d_maskOn(maprgb);
+                        changemask[i] = 1;
+                    }
+                }
+            }
 
-	    if (i == 0)
-		in->map_r = maprgb;
-	    if (i == 1)
-		in->map_g = maprgb;
-	    if (i == 2)
-		in->map_b = maprgb;
-	}
+            if (i == 0)
+                in->map_r = maprgb;
+            if (i == 1)
+                in->map_g = maprgb;
+            if (i == 2)
+                in->map_b = maprgb;
+        }
 
 
-	G_debug(3, "Writing VTK VoxelData");
-	write_vtk_rgb_data(in->map_r, in->map_g, in->map_b, fp, "RGB_Voxel",
-			   region, dp);
+        G_debug(3, "Writing VTK VoxelData");
+        write_vtk_rgb_data(in->map_r, in->map_g, in->map_b, fp, "RGB_Voxel",
+                           region, dp);
 
-	for (i = 0; i < 3; i++) {
-	    if (i == 0)
-		maprgb = in->map_r;
-	    if (i == 1)
-		maprgb = in->map_g;
-	    if (i == 2)
-		maprgb = in->map_b;
+        for (i = 0; i < 3; i++) {
+            if (i == 0)
+                maprgb = in->map_r;
+            if (i == 1)
+                maprgb = in->map_g;
+            if (i == 2)
+                maprgb = in->map_b;
 
-	    /*We set the Mask off, if it was off before */
-	    if (param.mask->answer) {
-		if (G3d_maskFileExists())
-		    if (G3d_maskIsOn(maprgb) && changemask[i])
-			G3d_maskOff(maprgb);
-	    }
-	    /* Close the 3d raster map */
-	    if (!G3d_closeCell(maprgb)) {
-		fatal_error(_("Error closing g3d rgb map."), in);
-	    }
+            /*We set the Mask off, if it was off before */
+            if (param.mask->answer) {
+                if (G3d_maskFileExists())
+                    if (G3d_maskIsOn(maprgb) && changemask[i])
+                        G3d_maskOff(maprgb);
+            }
+            /* Close the 3d raster map */
+            if (!G3d_closeCell(maprgb)) {
+                fatal_error(_("Error closing g3d rgb map."), in);
+            }
 
-	    /*Set the pointer to null so we noe later that these files are already closed */
-	    if (i == 0)
-		in->map_r = NULL;
-	    if (i == 1)
-		in->map_g = NULL;
-	    if (i == 2)
-		in->map_b = NULL;
-	}
+            /*Set the pointer to null so we noe later that these files are already closed */
+            if (i == 0)
+                in->map_r = NULL;
+            if (i == 1)
+                in->map_g = NULL;
+            if (i == 2)
+                in->map_b = NULL;
+        }
     }
     return;
 }
 
 /* ************************************************************************* */
 /* Prepare the VTK vector data for writing ********************************* */
+
 /* ************************************************************************* */
 void open_write_vector_maps(input_maps * in, G3D_Region region, FILE * fp,
-			    int dp)
+                            int dp)
 {
-    int i, changemask[3] = { 0, 0, 0 };
+    int i, changemask[3] = {0, 0, 0};
     void *mapvect = NULL;
 
     if (param.vectormaps->answers != NULL) {
 
-	/*Loop over all input maps! */
-	for (i = 0; i < 3; i++) {
-	    G_debug(3, "Open vector 3d raster map %s",
-		    param.vectormaps->answers[i]);
+        /*Loop over all input maps! */
+        for (i = 0; i < 3; i++) {
+            G_debug(3, "Open vector 3d raster map %s",
+                    param.vectormaps->answers[i]);
 
-	    mapvect = NULL;
-	    /*Open the map */
-	    mapvect =
-		G3d_openCellOld(param.vectormaps->answers[i],
-				G_find_grid3(param.vectormaps->answers[i],
-					     ""), &region,
-				G3D_TILE_SAME_AS_FILE, G3D_USE_CACHE_DEFAULT);
-	    if (mapvect == NULL) {
-		G_warning(_("Error opening 3d raster map <%s>"),
-			  param.vectormaps->answers[i]);
-		fatal_error(_("No vector data will be created."), in);
-	    }
+            mapvect = NULL;
+            /*Open the map */
+            mapvect =
+                G3d_openCellOld(param.vectormaps->answers[i],
+                                G_find_grid3(param.vectormaps->answers[i],
+                                             ""), &region,
+                                G3D_TILE_SAME_AS_FILE, G3D_USE_CACHE_DEFAULT);
+            if (mapvect == NULL) {
+                G_warning(_("Error opening 3d raster map <%s>"),
+                          param.vectormaps->answers[i]);
+                fatal_error(_("No vector data will be created."), in);
+            }
 
-	    /*if requested set the Mask on */
-	    if (param.mask->answer) {
-		if (G3d_maskFileExists()) {
-		    changemask[i] = 0;
-		    if (G3d_maskIsOff(mapvect)) {
-			G3d_maskOn(mapvect);
-			changemask[i] = 1;
-		    }
-		}
-	    }
+            /*if requested set the Mask on */
+            if (param.mask->answer) {
+                if (G3d_maskFileExists()) {
+                    changemask[i] = 0;
+                    if (G3d_maskIsOff(mapvect)) {
+                        G3d_maskOn(mapvect);
+                        changemask[i] = 1;
+                    }
+                }
+            }
 
-	    if (i == 0)
-		in->map_x = mapvect;
-	    if (i == 1)
-		in->map_y = mapvect;
-	    if (i == 2)
-		in->map_z = mapvect;
-	}
+            if (i == 0)
+                in->map_x = mapvect;
+            if (i == 1)
+                in->map_y = mapvect;
+            if (i == 2)
+                in->map_z = mapvect;
+        }
 
 
-	G_debug(3, "Writing VTK Vector Data");
-	write_vtk_vector_data(in->map_x, in->map_y, in->map_z, fp,
-			      "Vector_Data", region, dp);
+        G_debug(3, "Writing VTK Vector Data");
+        write_vtk_vector_data(in->map_x, in->map_y, in->map_z, fp,
+                              "Vector_Data", region, dp);
 
-	for (i = 0; i < 3; i++) {
-	    if (i == 0)
-		mapvect = in->map_x;
-	    if (i == 1)
-		mapvect = in->map_y;
-	    if (i == 2)
-		mapvect = in->map_z;
+        for (i = 0; i < 3; i++) {
+            if (i == 0)
+                mapvect = in->map_x;
+            if (i == 1)
+                mapvect = in->map_y;
+            if (i == 2)
+                mapvect = in->map_z;
 
-	    /*We set the Mask off, if it was off before */
-	    if (param.mask->answer) {
-		if (G3d_maskFileExists())
-		    if (G3d_maskIsOn(mapvect) && changemask[i])
-			G3d_maskOff(mapvect);
-	    }
+            /*We set the Mask off, if it was off before */
+            if (param.mask->answer) {
+                if (G3d_maskFileExists())
+                    if (G3d_maskIsOn(mapvect) && changemask[i])
+                        G3d_maskOff(mapvect);
+            }
 
-	    /* Close the 3d raster map */
-	    if (!G3d_closeCell(mapvect)) {
-		fatal_error(_("Error closing g3d vector map."), in);
-	    }
-	    /*Set the pointer to null so we noe later that these files are already closed */
-	    if (i == 0)
-		in->map_x = NULL;
-	    if (i == 1)
-		in->map_y = NULL;
-	    if (i == 2)
-		in->map_z = NULL;
-	}
+            /* Close the 3d raster map */
+            if (!G3d_closeCell(mapvect)) {
+                fatal_error(_("Error closing g3d vector map."), in);
+            }
+            /*Set the pointer to null so we noe later that these files are already closed */
+            if (i == 0)
+                in->map_x = NULL;
+            if (i == 1)
+                in->map_y = NULL;
+            if (i == 2)
+                in->map_z = NULL;
+        }
     }
     return;
 }
@@ -349,6 +352,7 @@
 
 /* ************************************************************************* */
 /* Main function, opens most of the input and output files ***************** */
+
 /* ************************************************************************* */
 int main(int argc, char *argv[])
 {
@@ -373,53 +377,50 @@
     G_add_keyword(_("voxel"));
     G_add_keyword(_("export"));
     module->description =
-	_("Converts 3D raster maps into the VTK-ASCII format.");
+        _("Converts 3D raster maps into the VTK-ASCII format.");
 
     /* Get parameters from user */
     set_params();
 
     /* Have GRASS get inputs */
     if (G_parser(argc, argv))
-	exit(EXIT_FAILURE);
+        exit(EXIT_FAILURE);
     /*The precision of the output */
     if (param.decimals->answer) {
-	if (sscanf(param.decimals->answer, "%d", &dp) != 1)
-	    G_fatal_error(_("failed to interpret dp as an integer"));
-	if (dp > 20 || dp < 0)
-	    G_fatal_error(_("dp has to be from 0 to 20"));
+        if (sscanf(param.decimals->answer, "%d", &dp) != 1)
+            G_fatal_error(_("failed to interpret dp as an integer"));
+        if (dp > 20 || dp < 0)
+            G_fatal_error(_("dp has to be from 0 to 20"));
+    } else {
+        dp = 8; /*This value is taken from the lib settings in G_format_easting */
     }
-    else {
-	dp = 8;			/*This value is taken from the lib settings in G_format_easting */
-    }
 
     /*Check the input */
     check_input_maps();
 
     /*Correct the coordinates, so the precision of VTK is not hurt :( */
     if (param.coorcorr->answer) {
-	/*Get the default region for coordiante correction */
-	G_get_default_window(&default_region);
+        /*Get the default region for coordiante correction */
+        G_get_default_window(&default_region);
 
-	/*Use the center of the current region as extent */
-	y_extent = (default_region.north + default_region.south) / 2;
-	x_extent = (default_region.west + default_region.east) / 2;
+        /*Use the center of the current region as extent */
+        y_extent = (default_region.north + default_region.south) / 2;
+        x_extent = (default_region.west + default_region.east) / 2;
+    } else {
+        x_extent = 0;
+        y_extent = 0;
     }
-    else {
-	x_extent = 0;
-	y_extent = 0;
-    }
 
     /*open the output */
     if (param.output->answer) {
-	fp = fopen(param.output->answer, "w");
-	if (fp == NULL) {
-	    perror(param.output->answer);
-	    G_usage();
-	    exit(EXIT_FAILURE);
-	}
-    }
-    else
-	fp = stdout;
+        fp = fopen(param.output->answer, "w");
+        if (fp == NULL) {
+            perror(param.output->answer);
+            G_usage();
+            exit(EXIT_FAILURE);
+        }
+    } else
+        fp = stdout;
 
     /* Figure out the region from the map */
     G3d_initDefaults();
@@ -433,117 +434,115 @@
     sscanf(param.elevscale->answer, "%lf", &scale);
     /*if LL projection, convert the elevation values to degrees */
     if (region.proj == PROJECTION_LL) {
-	llscale = M_PI / (180) * 6378137;
-	scale /= llscale;
+        llscale = M_PI / (180) * 6378137;
+        scale /= llscale;
     }
 
     /*Open the top and bottom file */
     if (param.structgrid->answer) {
 
-	/*Check if the g3d-region is equal to the 2d rows and cols */
-	rows = Rast_window_rows();
-	cols = Rast_window_cols();
+        /*Check if the g3d-region is equal to the 2d rows and cols */
+        rows = Rast_window_rows();
+        cols = Rast_window_cols();
 
-	/*If not equal, set the 2D windows correct */
-	if (rows != region.rows || cols != region.cols) {
-	    G_message(_("The 2d and 3d region settings are different. The g3d settings are used to adjust the 2d region."));
-	    G_get_set_window(&window2d);
-	    window2d.ns_res = region.ns_res;
-	    window2d.ew_res = region.ew_res;
-	    window2d.rows = region.rows;
-	    window2d.cols = region.cols;
-	    Rast_set_window(&window2d);
-	}
+        /*If not equal, set the 2D windows correct */
+        if (rows != region.rows || cols != region.cols) {
+            G_message(_("The 2d and 3d region settings are different. The g3d settings are used to adjust the 2d region."));
+            G_get_set_window(&window2d);
+            window2d.ns_res = region.ns_res;
+            window2d.ew_res = region.ew_res;
+            window2d.rows = region.rows;
+            window2d.cols = region.cols;
+            Rast_set_window(&window2d);
+        }
 
-	/*open top */
-	mapset = NULL;
-	name = NULL;
-	name = param.top->answer;
-	mapset = G_find_raster2(name, "");
-	in->top = open_input_map(name, mapset);
-	in->topMapType = Rast_get_map_type(in->top);
+        /*open top */
+        mapset = NULL;
+        name = NULL;
+        name = param.top->answer;
+        mapset = G_find_raster2(name, "");
+        in->top = open_input_map(name, mapset);
+        in->topMapType = Rast_get_map_type(in->top);
 
-	/*open bottom */
-	mapset = NULL;
-	name = NULL;
-	name = param.bottom->answer;
-	mapset = G_find_raster2(name, "");
-	in->bottom = open_input_map(name, mapset);
-	in->bottomMapType = Rast_get_map_type(in->bottom);
+        /*open bottom */
+        mapset = NULL;
+        name = NULL;
+        name = param.bottom->answer;
+        mapset = G_find_raster2(name, "");
+        in->bottom = open_input_map(name, mapset);
+        in->bottomMapType = Rast_get_map_type(in->bottom);
 
-	/* Write the vtk-header and the points */
-	if (param.point->answer) {
-	    write_vtk_structured_grid_header(fp, output, region);
-	    write_vtk_points(in, fp, region, dp, 1, scale);
-	}
-	else {
-	    write_vtk_unstructured_grid_header(fp, output, region);
-	    write_vtk_points(in, fp, region, dp, 0, scale);
-	    write_vtk_unstructured_grid_cells(fp, region);
-	}
+        /* Write the vtk-header and the points */
+        if (param.point->answer) {
+            write_vtk_structured_grid_header(fp, output, region);
+            write_vtk_points(in, fp, region, dp, 1, scale);
+        } else {
+            write_vtk_unstructured_grid_header(fp, output, region);
+            write_vtk_points(in, fp, region, dp, 0, scale);
+            write_vtk_unstructured_grid_cells(fp, region);
+        }
 
-	Rast_close(in->top);
+        Rast_close(in->top);
 
-	in->top = -1;
+        in->top = -1;
 
-	Rast_close(in->bottom);
+        Rast_close(in->bottom);
 
-	in->bottom = -1;
+        in->bottom = -1;
+    } else {
+        /* Write the structured point vtk-header */
+        write_vtk_structured_point_header(fp, output, region, dp, scale);
     }
-    else {
-	/* Write the structured point vtk-header */
-	write_vtk_structured_point_header(fp, output, region, dp, scale);
-    }
 
     /*Write the normal VTK data (cell or point data) */
     /*Loop over all 3d input maps! */
     if (param.input->answers != NULL) {
-	for (i = 0; param.input->answers[i] != NULL; i++) {
+        for (i = 0; param.input->answers[i] != NULL; i++) {
 
-	    G_debug(3, "Open 3d raster map %s", param.input->answers[i]);
+            G_debug(3, "Open 3d raster map %s", param.input->answers[i]);
 
-	    /*Open the map */
-	    in->map =
-		G3d_openCellOld(param.input->answers[i],
-				G_find_grid3(param.input->answers[i], ""),
-				&region, G3D_TILE_SAME_AS_FILE,
-				G3D_USE_CACHE_DEFAULT);
-	    if (in->map == NULL) {
-		G_warning(_("Error opening 3d raster map <%s>"),
-			  param.input->answers[i]);
-		fatal_error(" ", in);
-	    }
+            /*Open the map */
+            in->map =
+                G3d_openCellOld(param.input->answers[i],
+                                G_find_grid3(param.input->answers[i], ""),
+                                &region, G3D_TILE_SAME_AS_FILE,
+                                G3D_USE_CACHE_DEFAULT);
+            if (in->map == NULL) {
+                G_warning(_("Error opening 3d raster map <%s>"),
+                          param.input->answers[i]);
+                fatal_error(" ", in);
+            }
 
-	    /*if requested set the Mask on */
-	    if (param.mask->answer) {
-		if (G3d_maskFileExists()) {
-		    changemask = 0;
-		    if (G3d_maskIsOff(in->map)) {
-			G3d_maskOn(in->map);
-			changemask = 1;
-		    }
-		}
-	    }
+            /*if requested set the Mask on */
+            if (param.mask->answer) {
+                if (G3d_maskFileExists()) {
+                    changemask = 0;
+                    if (G3d_maskIsOff(in->map)) {
+                        G3d_maskOn(in->map);
+                        changemask = 1;
+                    }
+                }
+            }
 
-	    /* Write the point or cell data */
-	    write_vtk_data(fp, in->map, region, param.input->answers[i], dp);
+            /* Write the point or cell data */
+            write_vtk_data(fp, in->map, region, param.input->answers[i], dp);
 
-	    /*We set the Mask off, if it was off before */
-	    if (param.mask->answer) {
-		if (G3d_maskFileExists())
-		    if (G3d_maskIsOn(in->map) && changemask)
-			G3d_maskOff(in->map);
-	    }
+            /*We set the Mask off, if it was off before */
+            if (param.mask->answer) {
+                if (G3d_maskFileExists())
+                    if (G3d_maskIsOn(in->map) && changemask)
+                        G3d_maskOff(in->map);
+            }
 
-	    /* Close the 3d raster map */
-	    if (!G3d_closeCell(in->map)) {
-		in->map = NULL;
-		fatal_error(_("Error closing 3d raster map, the VTK file may be incomplete."),
-			    in);
-	    }
+            /* Close the 3d raster map */
+            if (!G3d_closeCell(in->map)) {
+                in->map = NULL;
+                fatal_error(_("Error closing 3d raster map, the VTK file may be incomplete."),
+                            in);
+            }
 
-	    in->map = NULL;
-	}
+            in->map = NULL;
+        }
     }
 
     /*Write the RGB voxel data */
@@ -552,8 +551,8 @@
 
     /*Close the output file */
     if (param.output->answer && fp != NULL)
-	if (fclose(fp))
-	    fatal_error(_("Error closing VTK-ASCII file"), in);
+        if (fclose(fp))
+            fatal_error(_("Error closing VTK-ASCII file"), in);
 
     /*close all open maps and free memory */
     release_input_maps_struct(in);

Added: grass/trunk/raster3d/r3.out.vtk/test.r3.out.vtk.sh
===================================================================
--- grass/trunk/raster3d/r3.out.vtk/test.r3.out.vtk.sh	                        (rev 0)
+++ grass/trunk/raster3d/r3.out.vtk/test.r3.out.vtk.sh	2011-06-16 09:58:31 UTC (rev 46720)
@@ -0,0 +1,39 @@
+# This script tests the export of voxel data
+# into the VTK format. Almost all options of
+# r3.out.vtk are tested. Validation data for each test
+# is located in the module source directory
+
+# We need to set a specific region in the
+# @preprocess step of this test. We generate
+# raster and voxel data with r.mapcalc and r3.mapcalc
+# The region setting should work for UTM and LL test locations
+g.region s=0 n=80 w=0 e=120 b=0 t=50 res=10 res3=10 -p3
+# Now generate two elevation maps, we have 8 rows and use
+# them for elevation computation. The rows are counted from north
+# to south. So in the south the elevation must have a maximum.
+r.mapcalc --o expr="elev_bottom = row()"
+r.mapcalc --o expr="elev_top = row() + 50"
+# Now create a voxel map with value = col + row + depth. Beware the 
+# raaster3d module count from south to north.
+r3.mapcalc --o expr="volume = col() + row() + depth()"
+# Add null value information
+r3.mapcalc --o expr="volume_null = if(row() == 2 || row() == 7, null(), volume)"
+# Create the rgb maps
+r3.mapcalc --o expr="volume_rgb = volume_null * 5"
+
+# The first @test just exports the volume map as cell and point data
+# using alow precision and replaces the default null value with 0
+# the created @files should be compared with the reference data 
+r3.out.vtk --o input=volume_null output=test_volume_null_1_cells.vtk dp=3 null=0
+r3.out.vtk -p --o input=volume_null output=test_volume_null_1_points.vtk dp=3 null=0
+
+# The second @test adds rgb and vector maps. We re-use the created volume map
+# for vector creation. The rgb value must range fom 0 - 255. The generated @files
+# should be compared with the reference data.
+r3.out.vtk --o rgbmaps=volume_rgb,volume_rgb,volume_rgb vectormaps=volume_null,volume_null,volume_null input=volume_null output=test_volume_null_1_cells_rgb_vect.vtk dp=3 null=-1.0
+r3.out.vtk -p --o rgbmaps=volume_rgb,volume_rgb,volume_rgb vectormaps=volume_null,volume_null,volume_null input=volume_null output=test_volume_null_1_points_rgb_vect.vtk dp=3 null=-1.0
+
+# The third @test uses raster maps to create volume data with an elevation surface
+# The maximum elevation should be in the south. Reference @files are present for validation.
+r3.out.vtk -s --o top=elev_top bottom=elev_bottom input=volume_null output=test_volume_null_1_cells_elevation.vtk dp=3 null=0
+r3.out.vtk -sp --o top=elev_top bottom=elev_bottom input=volume_null output=test_volume_null_1_points_elevation.vtk dp=3 null=0
\ No newline at end of file

Added: grass/trunk/raster3d/r3.out.vtk/test_volume_null_1_cells.ref
===================================================================
--- grass/trunk/raster3d/r3.out.vtk/test_volume_null_1_cells.ref	                        (rev 0)
+++ grass/trunk/raster3d/r3.out.vtk/test_volume_null_1_cells.ref	2011-06-16 09:58:31 UTC (rev 46720)
@@ -0,0 +1,50 @@
+# vtk DataFile Version 3.0
+GRASS GIS 7 Export
+ASCII
+DATASET STRUCTURED_POINTS
+DIMENSIONS 13 9 6
+SPACING 10.000 10.000 10.000
+ORIGIN 0.000 0.000 0.000
+CELL_DATA 480
+SCALARS volume_null float 1
+LOOKUP_TABLE default
+3.000 4.000 5.000 6.000 7.000 8.000 9.000 10.000 11.000 12.000 13.000 14.000 
+0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 
+5.000 6.000 7.000 8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 
+6.000 7.000 8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 
+7.000 8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 
+8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 
+0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 
+10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 21.000 
+4.000 5.000 6.000 7.000 8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 
+0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 
+6.000 7.000 8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 
+7.000 8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 
+8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 
+9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 
+0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 
+11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 21.000 22.000 
+5.000 6.000 7.000 8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 
+0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 
+7.000 8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 
+8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 
+9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 
+10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 21.000 
+0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 
+12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 21.000 22.000 23.000 
+6.000 7.000 8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 
+0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 
+8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 
+9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 
+10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 21.000 
+11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 21.000 22.000 
+0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 
+13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 21.000 22.000 23.000 24.000 
+7.000 8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 
+0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 
+9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 
+10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 21.000 
+11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 21.000 22.000 
+12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 21.000 22.000 23.000 
+0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 
+14.000 15.000 16.000 17.000 18.000 19.000 20.000 21.000 22.000 23.000 24.000 25.000 

Added: grass/trunk/raster3d/r3.out.vtk/test_volume_null_1_cells_elevation.ref
===================================================================
--- grass/trunk/raster3d/r3.out.vtk/test_volume_null_1_cells_elevation.ref	                        (rev 0)
+++ grass/trunk/raster3d/r3.out.vtk/test_volume_null_1_cells_elevation.ref	2011-06-16 09:58:31 UTC (rev 46720)
@@ -0,0 +1,4850 @@
+# vtk DataFile Version 3.0
+GRASS GIS 7 Export
+ASCII
+DATASET UNSTRUCTURED_GRID
+POINTS 3840 float
+0.000 70.000 1.000
+10.000 70.000 1.000
+10.000 80.000 1.000
+0.000 80.000 1.000
+0.000 70.000 11.000
+10.000 70.000 11.000
+10.000 80.000 11.000
+0.000 80.000 11.000
+10.000 70.000 1.000
+20.000 70.000 1.000
+20.000 80.000 1.000
+10.000 80.000 1.000
+10.000 70.000 11.000
+20.000 70.000 11.000
+20.000 80.000 11.000
+10.000 80.000 11.000
+20.000 70.000 1.000
+30.000 70.000 1.000
+30.000 80.000 1.000
+20.000 80.000 1.000
+20.000 70.000 11.000
+30.000 70.000 11.000
+30.000 80.000 11.000
+20.000 80.000 11.000
+30.000 70.000 1.000
+40.000 70.000 1.000
+40.000 80.000 1.000
+30.000 80.000 1.000
+30.000 70.000 11.000
+40.000 70.000 11.000
+40.000 80.000 11.000
+30.000 80.000 11.000
+40.000 70.000 1.000
+50.000 70.000 1.000
+50.000 80.000 1.000
+40.000 80.000 1.000
+40.000 70.000 11.000
+50.000 70.000 11.000
+50.000 80.000 11.000
+40.000 80.000 11.000
+50.000 70.000 1.000
+60.000 70.000 1.000
+60.000 80.000 1.000
+50.000 80.000 1.000
+50.000 70.000 11.000
+60.000 70.000 11.000
+60.000 80.000 11.000
+50.000 80.000 11.000
+60.000 70.000 1.000
+70.000 70.000 1.000
+70.000 80.000 1.000
+60.000 80.000 1.000
+60.000 70.000 11.000
+70.000 70.000 11.000
+70.000 80.000 11.000
+60.000 80.000 11.000
+70.000 70.000 1.000
+80.000 70.000 1.000
+80.000 80.000 1.000
+70.000 80.000 1.000
+70.000 70.000 11.000
+80.000 70.000 11.000
+80.000 80.000 11.000
+70.000 80.000 11.000
+80.000 70.000 1.000
+90.000 70.000 1.000
+90.000 80.000 1.000
+80.000 80.000 1.000
+80.000 70.000 11.000
+90.000 70.000 11.000
+90.000 80.000 11.000
+80.000 80.000 11.000
+90.000 70.000 1.000
+100.000 70.000 1.000
+100.000 80.000 1.000
+90.000 80.000 1.000
+90.000 70.000 11.000
+100.000 70.000 11.000
+100.000 80.000 11.000
+90.000 80.000 11.000
+100.000 70.000 1.000
+110.000 70.000 1.000
+110.000 80.000 1.000
+100.000 80.000 1.000
+100.000 70.000 11.000
+110.000 70.000 11.000
+110.000 80.000 11.000
+100.000 80.000 11.000
+110.000 70.000 1.000
+120.000 70.000 1.000
+120.000 80.000 1.000
+110.000 80.000 1.000
+110.000 70.000 11.000
+120.000 70.000 11.000
+120.000 80.000 11.000
+110.000 80.000 11.000
+0.000 60.000 2.000
+10.000 60.000 2.000
+10.000 70.000 2.000
+0.000 70.000 2.000
+0.000 60.000 12.000
+10.000 60.000 12.000
+10.000 70.000 12.000
+0.000 70.000 12.000
+10.000 60.000 2.000
+20.000 60.000 2.000
+20.000 70.000 2.000
+10.000 70.000 2.000
+10.000 60.000 12.000
+20.000 60.000 12.000
+20.000 70.000 12.000
+10.000 70.000 12.000
+20.000 60.000 2.000
+30.000 60.000 2.000
+30.000 70.000 2.000
+20.000 70.000 2.000
+20.000 60.000 12.000
+30.000 60.000 12.000
+30.000 70.000 12.000
+20.000 70.000 12.000
+30.000 60.000 2.000
+40.000 60.000 2.000
+40.000 70.000 2.000
+30.000 70.000 2.000
+30.000 60.000 12.000
+40.000 60.000 12.000
+40.000 70.000 12.000
+30.000 70.000 12.000
+40.000 60.000 2.000
+50.000 60.000 2.000
+50.000 70.000 2.000
+40.000 70.000 2.000
+40.000 60.000 12.000
+50.000 60.000 12.000
+50.000 70.000 12.000
+40.000 70.000 12.000
+50.000 60.000 2.000
+60.000 60.000 2.000
+60.000 70.000 2.000
+50.000 70.000 2.000
+50.000 60.000 12.000
+60.000 60.000 12.000
+60.000 70.000 12.000
+50.000 70.000 12.000
+60.000 60.000 2.000
+70.000 60.000 2.000
+70.000 70.000 2.000
+60.000 70.000 2.000
+60.000 60.000 12.000
+70.000 60.000 12.000
+70.000 70.000 12.000
+60.000 70.000 12.000
+70.000 60.000 2.000
+80.000 60.000 2.000
+80.000 70.000 2.000
+70.000 70.000 2.000
+70.000 60.000 12.000
+80.000 60.000 12.000
+80.000 70.000 12.000
+70.000 70.000 12.000
+80.000 60.000 2.000
+90.000 60.000 2.000
+90.000 70.000 2.000
+80.000 70.000 2.000
+80.000 60.000 12.000
+90.000 60.000 12.000
+90.000 70.000 12.000
+80.000 70.000 12.000
+90.000 60.000 2.000
+100.000 60.000 2.000
+100.000 70.000 2.000
+90.000 70.000 2.000
+90.000 60.000 12.000
+100.000 60.000 12.000
+100.000 70.000 12.000
+90.000 70.000 12.000
+100.000 60.000 2.000
+110.000 60.000 2.000
+110.000 70.000 2.000
+100.000 70.000 2.000
+100.000 60.000 12.000
+110.000 60.000 12.000
+110.000 70.000 12.000
+100.000 70.000 12.000
+110.000 60.000 2.000
+120.000 60.000 2.000
+120.000 70.000 2.000
+110.000 70.000 2.000
+110.000 60.000 12.000
+120.000 60.000 12.000
+120.000 70.000 12.000
+110.000 70.000 12.000
+0.000 50.000 3.000
+10.000 50.000 3.000
+10.000 60.000 3.000
+0.000 60.000 3.000
+0.000 50.000 13.000
+10.000 50.000 13.000
+10.000 60.000 13.000
+0.000 60.000 13.000
+10.000 50.000 3.000
+20.000 50.000 3.000
+20.000 60.000 3.000
+10.000 60.000 3.000
+10.000 50.000 13.000
+20.000 50.000 13.000
+20.000 60.000 13.000
+10.000 60.000 13.000
+20.000 50.000 3.000
+30.000 50.000 3.000
+30.000 60.000 3.000
+20.000 60.000 3.000
+20.000 50.000 13.000
+30.000 50.000 13.000
+30.000 60.000 13.000
+20.000 60.000 13.000
+30.000 50.000 3.000
+40.000 50.000 3.000
+40.000 60.000 3.000
+30.000 60.000 3.000
+30.000 50.000 13.000
+40.000 50.000 13.000
+40.000 60.000 13.000
+30.000 60.000 13.000
+40.000 50.000 3.000
+50.000 50.000 3.000
+50.000 60.000 3.000
+40.000 60.000 3.000
+40.000 50.000 13.000
+50.000 50.000 13.000
+50.000 60.000 13.000
+40.000 60.000 13.000
+50.000 50.000 3.000
+60.000 50.000 3.000
+60.000 60.000 3.000
+50.000 60.000 3.000
+50.000 50.000 13.000
+60.000 50.000 13.000
+60.000 60.000 13.000
+50.000 60.000 13.000
+60.000 50.000 3.000
+70.000 50.000 3.000
+70.000 60.000 3.000
+60.000 60.000 3.000
+60.000 50.000 13.000
+70.000 50.000 13.000
+70.000 60.000 13.000
+60.000 60.000 13.000
+70.000 50.000 3.000
+80.000 50.000 3.000
+80.000 60.000 3.000
+70.000 60.000 3.000
+70.000 50.000 13.000
+80.000 50.000 13.000
+80.000 60.000 13.000
+70.000 60.000 13.000
+80.000 50.000 3.000
+90.000 50.000 3.000
+90.000 60.000 3.000
+80.000 60.000 3.000
+80.000 50.000 13.000
+90.000 50.000 13.000
+90.000 60.000 13.000
+80.000 60.000 13.000
+90.000 50.000 3.000
+100.000 50.000 3.000
+100.000 60.000 3.000
+90.000 60.000 3.000
+90.000 50.000 13.000
+100.000 50.000 13.000
+100.000 60.000 13.000
+90.000 60.000 13.000
+100.000 50.000 3.000
+110.000 50.000 3.000
+110.000 60.000 3.000
+100.000 60.000 3.000
+100.000 50.000 13.000
+110.000 50.000 13.000
+110.000 60.000 13.000
+100.000 60.000 13.000
+110.000 50.000 3.000
+120.000 50.000 3.000
+120.000 60.000 3.000
+110.000 60.000 3.000
+110.000 50.000 13.000
+120.000 50.000 13.000
+120.000 60.000 13.000
+110.000 60.000 13.000
+0.000 40.000 4.000
+10.000 40.000 4.000
+10.000 50.000 4.000
+0.000 50.000 4.000
+0.000 40.000 14.000
+10.000 40.000 14.000
+10.000 50.000 14.000
+0.000 50.000 14.000
+10.000 40.000 4.000
+20.000 40.000 4.000
+20.000 50.000 4.000
+10.000 50.000 4.000
+10.000 40.000 14.000
+20.000 40.000 14.000
+20.000 50.000 14.000
+10.000 50.000 14.000
+20.000 40.000 4.000
+30.000 40.000 4.000
+30.000 50.000 4.000
+20.000 50.000 4.000
+20.000 40.000 14.000
+30.000 40.000 14.000
+30.000 50.000 14.000
+20.000 50.000 14.000
+30.000 40.000 4.000
+40.000 40.000 4.000
+40.000 50.000 4.000
+30.000 50.000 4.000
+30.000 40.000 14.000
+40.000 40.000 14.000
+40.000 50.000 14.000
+30.000 50.000 14.000
+40.000 40.000 4.000
+50.000 40.000 4.000
+50.000 50.000 4.000
+40.000 50.000 4.000
+40.000 40.000 14.000
+50.000 40.000 14.000
+50.000 50.000 14.000
+40.000 50.000 14.000
+50.000 40.000 4.000
+60.000 40.000 4.000
+60.000 50.000 4.000
+50.000 50.000 4.000
+50.000 40.000 14.000
+60.000 40.000 14.000
+60.000 50.000 14.000
+50.000 50.000 14.000
+60.000 40.000 4.000
+70.000 40.000 4.000
+70.000 50.000 4.000
+60.000 50.000 4.000
+60.000 40.000 14.000
+70.000 40.000 14.000
+70.000 50.000 14.000
+60.000 50.000 14.000
+70.000 40.000 4.000
+80.000 40.000 4.000
+80.000 50.000 4.000
+70.000 50.000 4.000
+70.000 40.000 14.000
+80.000 40.000 14.000
+80.000 50.000 14.000
+70.000 50.000 14.000
+80.000 40.000 4.000
+90.000 40.000 4.000
+90.000 50.000 4.000
+80.000 50.000 4.000
+80.000 40.000 14.000
+90.000 40.000 14.000
+90.000 50.000 14.000
+80.000 50.000 14.000
+90.000 40.000 4.000
+100.000 40.000 4.000
+100.000 50.000 4.000
+90.000 50.000 4.000
+90.000 40.000 14.000
+100.000 40.000 14.000
+100.000 50.000 14.000
+90.000 50.000 14.000
+100.000 40.000 4.000
+110.000 40.000 4.000
+110.000 50.000 4.000
+100.000 50.000 4.000
+100.000 40.000 14.000
+110.000 40.000 14.000
+110.000 50.000 14.000
+100.000 50.000 14.000
+110.000 40.000 4.000
+120.000 40.000 4.000
+120.000 50.000 4.000
+110.000 50.000 4.000
+110.000 40.000 14.000
+120.000 40.000 14.000
+120.000 50.000 14.000
+110.000 50.000 14.000
+0.000 30.000 5.000
+10.000 30.000 5.000
+10.000 40.000 5.000
+0.000 40.000 5.000
+0.000 30.000 15.000
+10.000 30.000 15.000
+10.000 40.000 15.000
+0.000 40.000 15.000
+10.000 30.000 5.000
+20.000 30.000 5.000
+20.000 40.000 5.000
+10.000 40.000 5.000
+10.000 30.000 15.000
+20.000 30.000 15.000
+20.000 40.000 15.000
+10.000 40.000 15.000
+20.000 30.000 5.000
+30.000 30.000 5.000
+30.000 40.000 5.000
+20.000 40.000 5.000
+20.000 30.000 15.000
+30.000 30.000 15.000
+30.000 40.000 15.000
+20.000 40.000 15.000
+30.000 30.000 5.000
+40.000 30.000 5.000
+40.000 40.000 5.000
+30.000 40.000 5.000
+30.000 30.000 15.000
+40.000 30.000 15.000
+40.000 40.000 15.000
+30.000 40.000 15.000
+40.000 30.000 5.000
+50.000 30.000 5.000
+50.000 40.000 5.000
+40.000 40.000 5.000
+40.000 30.000 15.000
+50.000 30.000 15.000
+50.000 40.000 15.000
+40.000 40.000 15.000
+50.000 30.000 5.000
+60.000 30.000 5.000
+60.000 40.000 5.000
+50.000 40.000 5.000
+50.000 30.000 15.000
+60.000 30.000 15.000
+60.000 40.000 15.000
+50.000 40.000 15.000
+60.000 30.000 5.000
+70.000 30.000 5.000
+70.000 40.000 5.000
+60.000 40.000 5.000
+60.000 30.000 15.000
+70.000 30.000 15.000
+70.000 40.000 15.000
+60.000 40.000 15.000
+70.000 30.000 5.000
+80.000 30.000 5.000
+80.000 40.000 5.000
+70.000 40.000 5.000
+70.000 30.000 15.000
+80.000 30.000 15.000
+80.000 40.000 15.000
+70.000 40.000 15.000
+80.000 30.000 5.000
+90.000 30.000 5.000
+90.000 40.000 5.000
+80.000 40.000 5.000
+80.000 30.000 15.000
+90.000 30.000 15.000
+90.000 40.000 15.000
+80.000 40.000 15.000
+90.000 30.000 5.000
+100.000 30.000 5.000
+100.000 40.000 5.000
+90.000 40.000 5.000
+90.000 30.000 15.000
+100.000 30.000 15.000
+100.000 40.000 15.000
+90.000 40.000 15.000
+100.000 30.000 5.000
+110.000 30.000 5.000
+110.000 40.000 5.000
+100.000 40.000 5.000
+100.000 30.000 15.000
+110.000 30.000 15.000
+110.000 40.000 15.000
+100.000 40.000 15.000
+110.000 30.000 5.000
+120.000 30.000 5.000
+120.000 40.000 5.000
+110.000 40.000 5.000
+110.000 30.000 15.000
+120.000 30.000 15.000
+120.000 40.000 15.000
+110.000 40.000 15.000
+0.000 20.000 6.000
+10.000 20.000 6.000
+10.000 30.000 6.000
+0.000 30.000 6.000
+0.000 20.000 16.000
+10.000 20.000 16.000
+10.000 30.000 16.000
+0.000 30.000 16.000
+10.000 20.000 6.000
+20.000 20.000 6.000
+20.000 30.000 6.000
+10.000 30.000 6.000
+10.000 20.000 16.000
+20.000 20.000 16.000
+20.000 30.000 16.000
+10.000 30.000 16.000
+20.000 20.000 6.000
+30.000 20.000 6.000
+30.000 30.000 6.000
+20.000 30.000 6.000
+20.000 20.000 16.000
+30.000 20.000 16.000
+30.000 30.000 16.000
+20.000 30.000 16.000
+30.000 20.000 6.000
+40.000 20.000 6.000
+40.000 30.000 6.000
+30.000 30.000 6.000
+30.000 20.000 16.000
+40.000 20.000 16.000
+40.000 30.000 16.000
+30.000 30.000 16.000
+40.000 20.000 6.000
+50.000 20.000 6.000
+50.000 30.000 6.000
+40.000 30.000 6.000
+40.000 20.000 16.000
+50.000 20.000 16.000
+50.000 30.000 16.000
+40.000 30.000 16.000
+50.000 20.000 6.000
+60.000 20.000 6.000
+60.000 30.000 6.000
+50.000 30.000 6.000
+50.000 20.000 16.000
+60.000 20.000 16.000
+60.000 30.000 16.000
+50.000 30.000 16.000
+60.000 20.000 6.000
+70.000 20.000 6.000
+70.000 30.000 6.000
+60.000 30.000 6.000
+60.000 20.000 16.000
+70.000 20.000 16.000
+70.000 30.000 16.000
+60.000 30.000 16.000
+70.000 20.000 6.000
+80.000 20.000 6.000
+80.000 30.000 6.000
+70.000 30.000 6.000
+70.000 20.000 16.000
+80.000 20.000 16.000
+80.000 30.000 16.000
+70.000 30.000 16.000
+80.000 20.000 6.000
+90.000 20.000 6.000
+90.000 30.000 6.000
+80.000 30.000 6.000
+80.000 20.000 16.000
+90.000 20.000 16.000
+90.000 30.000 16.000
+80.000 30.000 16.000
+90.000 20.000 6.000
+100.000 20.000 6.000
+100.000 30.000 6.000
+90.000 30.000 6.000
+90.000 20.000 16.000
+100.000 20.000 16.000
+100.000 30.000 16.000
+90.000 30.000 16.000
+100.000 20.000 6.000
+110.000 20.000 6.000
+110.000 30.000 6.000
+100.000 30.000 6.000
+100.000 20.000 16.000
+110.000 20.000 16.000
+110.000 30.000 16.000
+100.000 30.000 16.000
+110.000 20.000 6.000
+120.000 20.000 6.000
+120.000 30.000 6.000
+110.000 30.000 6.000
+110.000 20.000 16.000
+120.000 20.000 16.000
+120.000 30.000 16.000
+110.000 30.000 16.000
+0.000 10.000 7.000
+10.000 10.000 7.000
+10.000 20.000 7.000
+0.000 20.000 7.000
+0.000 10.000 17.000
+10.000 10.000 17.000
+10.000 20.000 17.000
+0.000 20.000 17.000
+10.000 10.000 7.000
+20.000 10.000 7.000
+20.000 20.000 7.000
+10.000 20.000 7.000
+10.000 10.000 17.000
+20.000 10.000 17.000
+20.000 20.000 17.000
+10.000 20.000 17.000
+20.000 10.000 7.000
+30.000 10.000 7.000
+30.000 20.000 7.000
+20.000 20.000 7.000
+20.000 10.000 17.000
+30.000 10.000 17.000
+30.000 20.000 17.000
+20.000 20.000 17.000
+30.000 10.000 7.000
+40.000 10.000 7.000
+40.000 20.000 7.000
+30.000 20.000 7.000
+30.000 10.000 17.000
+40.000 10.000 17.000
+40.000 20.000 17.000
+30.000 20.000 17.000
+40.000 10.000 7.000
+50.000 10.000 7.000
+50.000 20.000 7.000
+40.000 20.000 7.000
+40.000 10.000 17.000
+50.000 10.000 17.000
+50.000 20.000 17.000
+40.000 20.000 17.000
+50.000 10.000 7.000
+60.000 10.000 7.000
+60.000 20.000 7.000
+50.000 20.000 7.000
+50.000 10.000 17.000
+60.000 10.000 17.000
+60.000 20.000 17.000
+50.000 20.000 17.000
+60.000 10.000 7.000
+70.000 10.000 7.000
+70.000 20.000 7.000
+60.000 20.000 7.000
+60.000 10.000 17.000
+70.000 10.000 17.000
+70.000 20.000 17.000
+60.000 20.000 17.000
+70.000 10.000 7.000
+80.000 10.000 7.000
+80.000 20.000 7.000
+70.000 20.000 7.000
+70.000 10.000 17.000
+80.000 10.000 17.000
+80.000 20.000 17.000
+70.000 20.000 17.000
+80.000 10.000 7.000
+90.000 10.000 7.000
+90.000 20.000 7.000
+80.000 20.000 7.000
+80.000 10.000 17.000
+90.000 10.000 17.000
+90.000 20.000 17.000
+80.000 20.000 17.000
+90.000 10.000 7.000
+100.000 10.000 7.000
+100.000 20.000 7.000
+90.000 20.000 7.000
+90.000 10.000 17.000
+100.000 10.000 17.000
+100.000 20.000 17.000
+90.000 20.000 17.000
+100.000 10.000 7.000
+110.000 10.000 7.000
+110.000 20.000 7.000
+100.000 20.000 7.000
+100.000 10.000 17.000
+110.000 10.000 17.000
+110.000 20.000 17.000
+100.000 20.000 17.000
+110.000 10.000 7.000
+120.000 10.000 7.000
+120.000 20.000 7.000
+110.000 20.000 7.000
+110.000 10.000 17.000
+120.000 10.000 17.000
+120.000 20.000 17.000
+110.000 20.000 17.000
+0.000 0.000 8.000
+10.000 0.000 8.000
+10.000 10.000 8.000
+0.000 10.000 8.000
+0.000 0.000 18.000
+10.000 0.000 18.000
+10.000 10.000 18.000
+0.000 10.000 18.000
+10.000 0.000 8.000
+20.000 0.000 8.000
+20.000 10.000 8.000
+10.000 10.000 8.000
+10.000 0.000 18.000
+20.000 0.000 18.000
+20.000 10.000 18.000
+10.000 10.000 18.000
+20.000 0.000 8.000
+30.000 0.000 8.000
+30.000 10.000 8.000
+20.000 10.000 8.000
+20.000 0.000 18.000
+30.000 0.000 18.000
+30.000 10.000 18.000
+20.000 10.000 18.000
+30.000 0.000 8.000
+40.000 0.000 8.000
+40.000 10.000 8.000
+30.000 10.000 8.000
+30.000 0.000 18.000
+40.000 0.000 18.000
+40.000 10.000 18.000
+30.000 10.000 18.000
+40.000 0.000 8.000
+50.000 0.000 8.000
+50.000 10.000 8.000
+40.000 10.000 8.000
+40.000 0.000 18.000
+50.000 0.000 18.000
+50.000 10.000 18.000
+40.000 10.000 18.000
+50.000 0.000 8.000
+60.000 0.000 8.000
+60.000 10.000 8.000
+50.000 10.000 8.000
+50.000 0.000 18.000
+60.000 0.000 18.000
+60.000 10.000 18.000
+50.000 10.000 18.000
+60.000 0.000 8.000
+70.000 0.000 8.000
+70.000 10.000 8.000
+60.000 10.000 8.000
+60.000 0.000 18.000
+70.000 0.000 18.000
+70.000 10.000 18.000
+60.000 10.000 18.000
+70.000 0.000 8.000
+80.000 0.000 8.000
+80.000 10.000 8.000
+70.000 10.000 8.000
+70.000 0.000 18.000
+80.000 0.000 18.000
+80.000 10.000 18.000
+70.000 10.000 18.000
+80.000 0.000 8.000
+90.000 0.000 8.000
+90.000 10.000 8.000
+80.000 10.000 8.000
+80.000 0.000 18.000
+90.000 0.000 18.000
+90.000 10.000 18.000
+80.000 10.000 18.000
+90.000 0.000 8.000
+100.000 0.000 8.000
+100.000 10.000 8.000
+90.000 10.000 8.000
+90.000 0.000 18.000
+100.000 0.000 18.000
+100.000 10.000 18.000
+90.000 10.000 18.000
+100.000 0.000 8.000
+110.000 0.000 8.000
+110.000 10.000 8.000
+100.000 10.000 8.000
+100.000 0.000 18.000
+110.000 0.000 18.000
+110.000 10.000 18.000
+100.000 10.000 18.000
+110.000 0.000 8.000
+120.000 0.000 8.000
+120.000 10.000 8.000
+110.000 10.000 8.000
+110.000 0.000 18.000
+120.000 0.000 18.000
+120.000 10.000 18.000
+110.000 10.000 18.000
+0.000 70.000 11.000
+10.000 70.000 11.000
+10.000 80.000 11.000
+0.000 80.000 11.000
+0.000 70.000 21.000
+10.000 70.000 21.000
+10.000 80.000 21.000
+0.000 80.000 21.000
+10.000 70.000 11.000
+20.000 70.000 11.000
+20.000 80.000 11.000
+10.000 80.000 11.000
+10.000 70.000 21.000
+20.000 70.000 21.000
+20.000 80.000 21.000
+10.000 80.000 21.000
+20.000 70.000 11.000
+30.000 70.000 11.000
+30.000 80.000 11.000
+20.000 80.000 11.000
+20.000 70.000 21.000
+30.000 70.000 21.000
+30.000 80.000 21.000
+20.000 80.000 21.000
+30.000 70.000 11.000
+40.000 70.000 11.000
+40.000 80.000 11.000
+30.000 80.000 11.000
+30.000 70.000 21.000
+40.000 70.000 21.000
+40.000 80.000 21.000
+30.000 80.000 21.000
+40.000 70.000 11.000
+50.000 70.000 11.000
+50.000 80.000 11.000
+40.000 80.000 11.000
+40.000 70.000 21.000
+50.000 70.000 21.000
+50.000 80.000 21.000
+40.000 80.000 21.000
+50.000 70.000 11.000
+60.000 70.000 11.000
+60.000 80.000 11.000
+50.000 80.000 11.000
+50.000 70.000 21.000
+60.000 70.000 21.000
+60.000 80.000 21.000
+50.000 80.000 21.000
+60.000 70.000 11.000
+70.000 70.000 11.000
+70.000 80.000 11.000
+60.000 80.000 11.000
+60.000 70.000 21.000
+70.000 70.000 21.000
+70.000 80.000 21.000
+60.000 80.000 21.000
+70.000 70.000 11.000
+80.000 70.000 11.000
+80.000 80.000 11.000
+70.000 80.000 11.000
+70.000 70.000 21.000
+80.000 70.000 21.000
+80.000 80.000 21.000
+70.000 80.000 21.000
+80.000 70.000 11.000
+90.000 70.000 11.000
+90.000 80.000 11.000
+80.000 80.000 11.000
+80.000 70.000 21.000
+90.000 70.000 21.000
+90.000 80.000 21.000
+80.000 80.000 21.000
+90.000 70.000 11.000
+100.000 70.000 11.000
+100.000 80.000 11.000
+90.000 80.000 11.000
+90.000 70.000 21.000
+100.000 70.000 21.000
+100.000 80.000 21.000
+90.000 80.000 21.000
+100.000 70.000 11.000
+110.000 70.000 11.000
+110.000 80.000 11.000
+100.000 80.000 11.000
+100.000 70.000 21.000
+110.000 70.000 21.000
+110.000 80.000 21.000
+100.000 80.000 21.000
+110.000 70.000 11.000
+120.000 70.000 11.000
+120.000 80.000 11.000
+110.000 80.000 11.000
+110.000 70.000 21.000
+120.000 70.000 21.000
+120.000 80.000 21.000
+110.000 80.000 21.000
+0.000 60.000 12.000
+10.000 60.000 12.000
+10.000 70.000 12.000
+0.000 70.000 12.000
+0.000 60.000 22.000
+10.000 60.000 22.000
+10.000 70.000 22.000
+0.000 70.000 22.000
+10.000 60.000 12.000
+20.000 60.000 12.000
+20.000 70.000 12.000
+10.000 70.000 12.000
+10.000 60.000 22.000
+20.000 60.000 22.000
+20.000 70.000 22.000
+10.000 70.000 22.000
+20.000 60.000 12.000
+30.000 60.000 12.000
+30.000 70.000 12.000
+20.000 70.000 12.000
+20.000 60.000 22.000
+30.000 60.000 22.000
+30.000 70.000 22.000
+20.000 70.000 22.000
+30.000 60.000 12.000
+40.000 60.000 12.000
+40.000 70.000 12.000
+30.000 70.000 12.000
+30.000 60.000 22.000
+40.000 60.000 22.000
+40.000 70.000 22.000
+30.000 70.000 22.000
+40.000 60.000 12.000
+50.000 60.000 12.000
+50.000 70.000 12.000
+40.000 70.000 12.000
+40.000 60.000 22.000
+50.000 60.000 22.000
+50.000 70.000 22.000
+40.000 70.000 22.000
+50.000 60.000 12.000
+60.000 60.000 12.000
+60.000 70.000 12.000
+50.000 70.000 12.000
+50.000 60.000 22.000
+60.000 60.000 22.000
+60.000 70.000 22.000
+50.000 70.000 22.000
+60.000 60.000 12.000
+70.000 60.000 12.000
+70.000 70.000 12.000
+60.000 70.000 12.000
+60.000 60.000 22.000
+70.000 60.000 22.000
+70.000 70.000 22.000
+60.000 70.000 22.000
+70.000 60.000 12.000
+80.000 60.000 12.000
+80.000 70.000 12.000
+70.000 70.000 12.000
+70.000 60.000 22.000
+80.000 60.000 22.000
+80.000 70.000 22.000
+70.000 70.000 22.000
+80.000 60.000 12.000
+90.000 60.000 12.000
+90.000 70.000 12.000
+80.000 70.000 12.000
+80.000 60.000 22.000
+90.000 60.000 22.000
+90.000 70.000 22.000
+80.000 70.000 22.000
+90.000 60.000 12.000
+100.000 60.000 12.000
+100.000 70.000 12.000
+90.000 70.000 12.000
+90.000 60.000 22.000
+100.000 60.000 22.000
+100.000 70.000 22.000
+90.000 70.000 22.000
+100.000 60.000 12.000
+110.000 60.000 12.000
+110.000 70.000 12.000
+100.000 70.000 12.000
+100.000 60.000 22.000
+110.000 60.000 22.000
+110.000 70.000 22.000
+100.000 70.000 22.000
+110.000 60.000 12.000
+120.000 60.000 12.000
+120.000 70.000 12.000
+110.000 70.000 12.000
+110.000 60.000 22.000
+120.000 60.000 22.000
+120.000 70.000 22.000
+110.000 70.000 22.000
+0.000 50.000 13.000
+10.000 50.000 13.000
+10.000 60.000 13.000
+0.000 60.000 13.000
+0.000 50.000 23.000
+10.000 50.000 23.000
+10.000 60.000 23.000
+0.000 60.000 23.000
+10.000 50.000 13.000
+20.000 50.000 13.000
+20.000 60.000 13.000
+10.000 60.000 13.000
+10.000 50.000 23.000
+20.000 50.000 23.000
+20.000 60.000 23.000
+10.000 60.000 23.000
+20.000 50.000 13.000
+30.000 50.000 13.000
+30.000 60.000 13.000
+20.000 60.000 13.000
+20.000 50.000 23.000
+30.000 50.000 23.000
+30.000 60.000 23.000
+20.000 60.000 23.000
+30.000 50.000 13.000
+40.000 50.000 13.000
+40.000 60.000 13.000
+30.000 60.000 13.000
+30.000 50.000 23.000
+40.000 50.000 23.000
+40.000 60.000 23.000
+30.000 60.000 23.000
+40.000 50.000 13.000
+50.000 50.000 13.000
+50.000 60.000 13.000
+40.000 60.000 13.000
+40.000 50.000 23.000
+50.000 50.000 23.000
+50.000 60.000 23.000
+40.000 60.000 23.000
+50.000 50.000 13.000
+60.000 50.000 13.000
+60.000 60.000 13.000
+50.000 60.000 13.000
+50.000 50.000 23.000
+60.000 50.000 23.000
+60.000 60.000 23.000
+50.000 60.000 23.000
+60.000 50.000 13.000
+70.000 50.000 13.000
+70.000 60.000 13.000
+60.000 60.000 13.000
+60.000 50.000 23.000
+70.000 50.000 23.000
+70.000 60.000 23.000
+60.000 60.000 23.000
+70.000 50.000 13.000
+80.000 50.000 13.000
+80.000 60.000 13.000
+70.000 60.000 13.000
+70.000 50.000 23.000
+80.000 50.000 23.000
+80.000 60.000 23.000
+70.000 60.000 23.000
+80.000 50.000 13.000
+90.000 50.000 13.000
+90.000 60.000 13.000
+80.000 60.000 13.000
+80.000 50.000 23.000
+90.000 50.000 23.000
+90.000 60.000 23.000
+80.000 60.000 23.000
+90.000 50.000 13.000
+100.000 50.000 13.000
+100.000 60.000 13.000
+90.000 60.000 13.000
+90.000 50.000 23.000
+100.000 50.000 23.000
+100.000 60.000 23.000
+90.000 60.000 23.000
+100.000 50.000 13.000
+110.000 50.000 13.000
+110.000 60.000 13.000
+100.000 60.000 13.000
+100.000 50.000 23.000
+110.000 50.000 23.000
+110.000 60.000 23.000
+100.000 60.000 23.000
+110.000 50.000 13.000
+120.000 50.000 13.000
+120.000 60.000 13.000
+110.000 60.000 13.000
+110.000 50.000 23.000
+120.000 50.000 23.000
+120.000 60.000 23.000
+110.000 60.000 23.000
+0.000 40.000 14.000
+10.000 40.000 14.000
+10.000 50.000 14.000
+0.000 50.000 14.000
+0.000 40.000 24.000
+10.000 40.000 24.000
+10.000 50.000 24.000
+0.000 50.000 24.000
+10.000 40.000 14.000
+20.000 40.000 14.000
+20.000 50.000 14.000
+10.000 50.000 14.000
+10.000 40.000 24.000
+20.000 40.000 24.000
+20.000 50.000 24.000
+10.000 50.000 24.000
+20.000 40.000 14.000
+30.000 40.000 14.000
+30.000 50.000 14.000
+20.000 50.000 14.000
+20.000 40.000 24.000
+30.000 40.000 24.000
+30.000 50.000 24.000
+20.000 50.000 24.000
+30.000 40.000 14.000
+40.000 40.000 14.000
+40.000 50.000 14.000
+30.000 50.000 14.000
+30.000 40.000 24.000
+40.000 40.000 24.000
+40.000 50.000 24.000
+30.000 50.000 24.000
+40.000 40.000 14.000
+50.000 40.000 14.000
+50.000 50.000 14.000
+40.000 50.000 14.000
+40.000 40.000 24.000
+50.000 40.000 24.000
+50.000 50.000 24.000
+40.000 50.000 24.000
+50.000 40.000 14.000
+60.000 40.000 14.000
+60.000 50.000 14.000
+50.000 50.000 14.000
+50.000 40.000 24.000
+60.000 40.000 24.000
+60.000 50.000 24.000
+50.000 50.000 24.000
+60.000 40.000 14.000
+70.000 40.000 14.000
+70.000 50.000 14.000
+60.000 50.000 14.000
+60.000 40.000 24.000
+70.000 40.000 24.000
+70.000 50.000 24.000
+60.000 50.000 24.000
+70.000 40.000 14.000
+80.000 40.000 14.000
+80.000 50.000 14.000
+70.000 50.000 14.000
+70.000 40.000 24.000
+80.000 40.000 24.000
+80.000 50.000 24.000
+70.000 50.000 24.000
+80.000 40.000 14.000
+90.000 40.000 14.000
+90.000 50.000 14.000
+80.000 50.000 14.000
+80.000 40.000 24.000
+90.000 40.000 24.000
+90.000 50.000 24.000
+80.000 50.000 24.000
+90.000 40.000 14.000
+100.000 40.000 14.000
+100.000 50.000 14.000
+90.000 50.000 14.000
+90.000 40.000 24.000
+100.000 40.000 24.000
+100.000 50.000 24.000
+90.000 50.000 24.000
+100.000 40.000 14.000
+110.000 40.000 14.000
+110.000 50.000 14.000
+100.000 50.000 14.000
+100.000 40.000 24.000
+110.000 40.000 24.000
+110.000 50.000 24.000
+100.000 50.000 24.000
+110.000 40.000 14.000
+120.000 40.000 14.000
+120.000 50.000 14.000
+110.000 50.000 14.000
+110.000 40.000 24.000
+120.000 40.000 24.000
+120.000 50.000 24.000
+110.000 50.000 24.000
+0.000 30.000 15.000
+10.000 30.000 15.000
+10.000 40.000 15.000
+0.000 40.000 15.000
+0.000 30.000 25.000
+10.000 30.000 25.000
+10.000 40.000 25.000
+0.000 40.000 25.000
+10.000 30.000 15.000
+20.000 30.000 15.000
+20.000 40.000 15.000
+10.000 40.000 15.000
+10.000 30.000 25.000
+20.000 30.000 25.000
+20.000 40.000 25.000
+10.000 40.000 25.000
+20.000 30.000 15.000
+30.000 30.000 15.000
+30.000 40.000 15.000
+20.000 40.000 15.000
+20.000 30.000 25.000
+30.000 30.000 25.000
+30.000 40.000 25.000
+20.000 40.000 25.000
+30.000 30.000 15.000
+40.000 30.000 15.000
+40.000 40.000 15.000
+30.000 40.000 15.000
+30.000 30.000 25.000
+40.000 30.000 25.000
+40.000 40.000 25.000
+30.000 40.000 25.000
+40.000 30.000 15.000
+50.000 30.000 15.000
+50.000 40.000 15.000
+40.000 40.000 15.000
+40.000 30.000 25.000
+50.000 30.000 25.000
+50.000 40.000 25.000
+40.000 40.000 25.000
+50.000 30.000 15.000
+60.000 30.000 15.000
+60.000 40.000 15.000
+50.000 40.000 15.000
+50.000 30.000 25.000
+60.000 30.000 25.000
+60.000 40.000 25.000
+50.000 40.000 25.000
+60.000 30.000 15.000
+70.000 30.000 15.000
+70.000 40.000 15.000
+60.000 40.000 15.000
+60.000 30.000 25.000
+70.000 30.000 25.000
+70.000 40.000 25.000
+60.000 40.000 25.000
+70.000 30.000 15.000
+80.000 30.000 15.000
+80.000 40.000 15.000
+70.000 40.000 15.000
+70.000 30.000 25.000
+80.000 30.000 25.000
+80.000 40.000 25.000
+70.000 40.000 25.000
+80.000 30.000 15.000
+90.000 30.000 15.000
+90.000 40.000 15.000
+80.000 40.000 15.000
+80.000 30.000 25.000
+90.000 30.000 25.000
+90.000 40.000 25.000
+80.000 40.000 25.000
+90.000 30.000 15.000
+100.000 30.000 15.000
+100.000 40.000 15.000
+90.000 40.000 15.000
+90.000 30.000 25.000
+100.000 30.000 25.000
+100.000 40.000 25.000
+90.000 40.000 25.000
+100.000 30.000 15.000
+110.000 30.000 15.000
+110.000 40.000 15.000
+100.000 40.000 15.000
+100.000 30.000 25.000
+110.000 30.000 25.000
+110.000 40.000 25.000
+100.000 40.000 25.000
+110.000 30.000 15.000
+120.000 30.000 15.000
+120.000 40.000 15.000
+110.000 40.000 15.000
+110.000 30.000 25.000
+120.000 30.000 25.000
+120.000 40.000 25.000
+110.000 40.000 25.000
+0.000 20.000 16.000
+10.000 20.000 16.000
+10.000 30.000 16.000
+0.000 30.000 16.000
+0.000 20.000 26.000
+10.000 20.000 26.000
+10.000 30.000 26.000
+0.000 30.000 26.000
+10.000 20.000 16.000
+20.000 20.000 16.000
+20.000 30.000 16.000
+10.000 30.000 16.000
+10.000 20.000 26.000
+20.000 20.000 26.000
+20.000 30.000 26.000
+10.000 30.000 26.000
+20.000 20.000 16.000
+30.000 20.000 16.000
+30.000 30.000 16.000
+20.000 30.000 16.000
+20.000 20.000 26.000
+30.000 20.000 26.000
+30.000 30.000 26.000
+20.000 30.000 26.000
+30.000 20.000 16.000
+40.000 20.000 16.000
+40.000 30.000 16.000
+30.000 30.000 16.000
+30.000 20.000 26.000
+40.000 20.000 26.000
+40.000 30.000 26.000
+30.000 30.000 26.000
+40.000 20.000 16.000
+50.000 20.000 16.000
+50.000 30.000 16.000
+40.000 30.000 16.000
+40.000 20.000 26.000
+50.000 20.000 26.000
+50.000 30.000 26.000
+40.000 30.000 26.000
+50.000 20.000 16.000
+60.000 20.000 16.000
+60.000 30.000 16.000
+50.000 30.000 16.000
+50.000 20.000 26.000
+60.000 20.000 26.000
+60.000 30.000 26.000
+50.000 30.000 26.000
+60.000 20.000 16.000
+70.000 20.000 16.000
+70.000 30.000 16.000
+60.000 30.000 16.000
+60.000 20.000 26.000
+70.000 20.000 26.000
+70.000 30.000 26.000
+60.000 30.000 26.000
+70.000 20.000 16.000
+80.000 20.000 16.000
+80.000 30.000 16.000
+70.000 30.000 16.000
+70.000 20.000 26.000
+80.000 20.000 26.000
+80.000 30.000 26.000
+70.000 30.000 26.000
+80.000 20.000 16.000
+90.000 20.000 16.000
+90.000 30.000 16.000
+80.000 30.000 16.000
+80.000 20.000 26.000
+90.000 20.000 26.000
+90.000 30.000 26.000
+80.000 30.000 26.000
+90.000 20.000 16.000
+100.000 20.000 16.000
+100.000 30.000 16.000
+90.000 30.000 16.000
+90.000 20.000 26.000
+100.000 20.000 26.000
+100.000 30.000 26.000
+90.000 30.000 26.000
+100.000 20.000 16.000
+110.000 20.000 16.000
+110.000 30.000 16.000
+100.000 30.000 16.000
+100.000 20.000 26.000
+110.000 20.000 26.000
+110.000 30.000 26.000
+100.000 30.000 26.000
+110.000 20.000 16.000
+120.000 20.000 16.000
+120.000 30.000 16.000
+110.000 30.000 16.000
+110.000 20.000 26.000
+120.000 20.000 26.000
+120.000 30.000 26.000
+110.000 30.000 26.000
+0.000 10.000 17.000
+10.000 10.000 17.000
+10.000 20.000 17.000
+0.000 20.000 17.000
+0.000 10.000 27.000
+10.000 10.000 27.000
+10.000 20.000 27.000
+0.000 20.000 27.000
+10.000 10.000 17.000
+20.000 10.000 17.000
+20.000 20.000 17.000
+10.000 20.000 17.000
+10.000 10.000 27.000
+20.000 10.000 27.000
+20.000 20.000 27.000
+10.000 20.000 27.000
+20.000 10.000 17.000
+30.000 10.000 17.000
+30.000 20.000 17.000
+20.000 20.000 17.000
+20.000 10.000 27.000
+30.000 10.000 27.000
+30.000 20.000 27.000
+20.000 20.000 27.000
+30.000 10.000 17.000
+40.000 10.000 17.000
+40.000 20.000 17.000
+30.000 20.000 17.000
+30.000 10.000 27.000
+40.000 10.000 27.000
+40.000 20.000 27.000
+30.000 20.000 27.000
+40.000 10.000 17.000
+50.000 10.000 17.000
+50.000 20.000 17.000
+40.000 20.000 17.000
+40.000 10.000 27.000
+50.000 10.000 27.000
+50.000 20.000 27.000
+40.000 20.000 27.000
+50.000 10.000 17.000
+60.000 10.000 17.000
+60.000 20.000 17.000
+50.000 20.000 17.000
+50.000 10.000 27.000
+60.000 10.000 27.000
+60.000 20.000 27.000
+50.000 20.000 27.000
+60.000 10.000 17.000
+70.000 10.000 17.000
+70.000 20.000 17.000
+60.000 20.000 17.000
+60.000 10.000 27.000
+70.000 10.000 27.000
+70.000 20.000 27.000
+60.000 20.000 27.000
+70.000 10.000 17.000
+80.000 10.000 17.000
+80.000 20.000 17.000
+70.000 20.000 17.000
+70.000 10.000 27.000
+80.000 10.000 27.000
+80.000 20.000 27.000
+70.000 20.000 27.000
+80.000 10.000 17.000
+90.000 10.000 17.000
+90.000 20.000 17.000
+80.000 20.000 17.000
+80.000 10.000 27.000
+90.000 10.000 27.000
+90.000 20.000 27.000
+80.000 20.000 27.000
+90.000 10.000 17.000
+100.000 10.000 17.000
+100.000 20.000 17.000
+90.000 20.000 17.000
+90.000 10.000 27.000
+100.000 10.000 27.000
+100.000 20.000 27.000
+90.000 20.000 27.000
+100.000 10.000 17.000
+110.000 10.000 17.000
+110.000 20.000 17.000
+100.000 20.000 17.000
+100.000 10.000 27.000
+110.000 10.000 27.000
+110.000 20.000 27.000
+100.000 20.000 27.000
+110.000 10.000 17.000
+120.000 10.000 17.000
+120.000 20.000 17.000
+110.000 20.000 17.000
+110.000 10.000 27.000
+120.000 10.000 27.000
+120.000 20.000 27.000
+110.000 20.000 27.000
+0.000 0.000 18.000
+10.000 0.000 18.000
+10.000 10.000 18.000
+0.000 10.000 18.000
+0.000 0.000 28.000
+10.000 0.000 28.000
+10.000 10.000 28.000
+0.000 10.000 28.000
+10.000 0.000 18.000
+20.000 0.000 18.000
+20.000 10.000 18.000
+10.000 10.000 18.000
+10.000 0.000 28.000
+20.000 0.000 28.000
+20.000 10.000 28.000
+10.000 10.000 28.000
+20.000 0.000 18.000
+30.000 0.000 18.000
+30.000 10.000 18.000
+20.000 10.000 18.000
+20.000 0.000 28.000
+30.000 0.000 28.000
+30.000 10.000 28.000
+20.000 10.000 28.000
+30.000 0.000 18.000
+40.000 0.000 18.000
+40.000 10.000 18.000
+30.000 10.000 18.000
+30.000 0.000 28.000
+40.000 0.000 28.000
+40.000 10.000 28.000
+30.000 10.000 28.000
+40.000 0.000 18.000
+50.000 0.000 18.000
+50.000 10.000 18.000
+40.000 10.000 18.000
+40.000 0.000 28.000
+50.000 0.000 28.000
+50.000 10.000 28.000
+40.000 10.000 28.000
+50.000 0.000 18.000
+60.000 0.000 18.000
+60.000 10.000 18.000
+50.000 10.000 18.000
+50.000 0.000 28.000
+60.000 0.000 28.000
+60.000 10.000 28.000
+50.000 10.000 28.000
+60.000 0.000 18.000
+70.000 0.000 18.000
+70.000 10.000 18.000
+60.000 10.000 18.000
+60.000 0.000 28.000
+70.000 0.000 28.000
+70.000 10.000 28.000
+60.000 10.000 28.000
+70.000 0.000 18.000
+80.000 0.000 18.000
+80.000 10.000 18.000
+70.000 10.000 18.000
+70.000 0.000 28.000
+80.000 0.000 28.000
+80.000 10.000 28.000
+70.000 10.000 28.000
+80.000 0.000 18.000
+90.000 0.000 18.000
+90.000 10.000 18.000
+80.000 10.000 18.000
+80.000 0.000 28.000
+90.000 0.000 28.000
+90.000 10.000 28.000
+80.000 10.000 28.000
+90.000 0.000 18.000
+100.000 0.000 18.000
+100.000 10.000 18.000
+90.000 10.000 18.000
+90.000 0.000 28.000
+100.000 0.000 28.000
+100.000 10.000 28.000
+90.000 10.000 28.000
+100.000 0.000 18.000
+110.000 0.000 18.000
+110.000 10.000 18.000
+100.000 10.000 18.000
+100.000 0.000 28.000
+110.000 0.000 28.000
+110.000 10.000 28.000
+100.000 10.000 28.000
+110.000 0.000 18.000
+120.000 0.000 18.000
+120.000 10.000 18.000
+110.000 10.000 18.000
+110.000 0.000 28.000
+120.000 0.000 28.000
+120.000 10.000 28.000
+110.000 10.000 28.000
+0.000 70.000 21.000
+10.000 70.000 21.000
+10.000 80.000 21.000
+0.000 80.000 21.000
+0.000 70.000 31.000
+10.000 70.000 31.000
+10.000 80.000 31.000
+0.000 80.000 31.000
+10.000 70.000 21.000
+20.000 70.000 21.000
+20.000 80.000 21.000
+10.000 80.000 21.000
+10.000 70.000 31.000
+20.000 70.000 31.000
+20.000 80.000 31.000
+10.000 80.000 31.000
+20.000 70.000 21.000
+30.000 70.000 21.000
+30.000 80.000 21.000
+20.000 80.000 21.000
+20.000 70.000 31.000
+30.000 70.000 31.000
+30.000 80.000 31.000
+20.000 80.000 31.000
+30.000 70.000 21.000
+40.000 70.000 21.000
+40.000 80.000 21.000
+30.000 80.000 21.000
+30.000 70.000 31.000
+40.000 70.000 31.000
+40.000 80.000 31.000
+30.000 80.000 31.000
+40.000 70.000 21.000
+50.000 70.000 21.000
+50.000 80.000 21.000
+40.000 80.000 21.000
+40.000 70.000 31.000
+50.000 70.000 31.000
+50.000 80.000 31.000
+40.000 80.000 31.000
+50.000 70.000 21.000
+60.000 70.000 21.000
+60.000 80.000 21.000
+50.000 80.000 21.000
+50.000 70.000 31.000
+60.000 70.000 31.000
+60.000 80.000 31.000
+50.000 80.000 31.000
+60.000 70.000 21.000
+70.000 70.000 21.000
+70.000 80.000 21.000
+60.000 80.000 21.000
+60.000 70.000 31.000
+70.000 70.000 31.000
+70.000 80.000 31.000
+60.000 80.000 31.000
+70.000 70.000 21.000
+80.000 70.000 21.000
+80.000 80.000 21.000
+70.000 80.000 21.000
+70.000 70.000 31.000
+80.000 70.000 31.000
+80.000 80.000 31.000
+70.000 80.000 31.000
+80.000 70.000 21.000
+90.000 70.000 21.000
+90.000 80.000 21.000
+80.000 80.000 21.000
+80.000 70.000 31.000
+90.000 70.000 31.000
+90.000 80.000 31.000
+80.000 80.000 31.000
+90.000 70.000 21.000
+100.000 70.000 21.000
+100.000 80.000 21.000
+90.000 80.000 21.000
+90.000 70.000 31.000
+100.000 70.000 31.000
+100.000 80.000 31.000
+90.000 80.000 31.000
+100.000 70.000 21.000
+110.000 70.000 21.000
+110.000 80.000 21.000
+100.000 80.000 21.000
+100.000 70.000 31.000
+110.000 70.000 31.000
+110.000 80.000 31.000
+100.000 80.000 31.000
+110.000 70.000 21.000
+120.000 70.000 21.000
+120.000 80.000 21.000
+110.000 80.000 21.000
+110.000 70.000 31.000
+120.000 70.000 31.000
+120.000 80.000 31.000
+110.000 80.000 31.000
+0.000 60.000 22.000
+10.000 60.000 22.000
+10.000 70.000 22.000
+0.000 70.000 22.000
+0.000 60.000 32.000
+10.000 60.000 32.000
+10.000 70.000 32.000
+0.000 70.000 32.000
+10.000 60.000 22.000
+20.000 60.000 22.000
+20.000 70.000 22.000
+10.000 70.000 22.000
+10.000 60.000 32.000
+20.000 60.000 32.000
+20.000 70.000 32.000
+10.000 70.000 32.000
+20.000 60.000 22.000
+30.000 60.000 22.000
+30.000 70.000 22.000
+20.000 70.000 22.000
+20.000 60.000 32.000
+30.000 60.000 32.000
+30.000 70.000 32.000
+20.000 70.000 32.000
+30.000 60.000 22.000
+40.000 60.000 22.000
+40.000 70.000 22.000
+30.000 70.000 22.000
+30.000 60.000 32.000
+40.000 60.000 32.000
+40.000 70.000 32.000
+30.000 70.000 32.000
+40.000 60.000 22.000
+50.000 60.000 22.000
+50.000 70.000 22.000
+40.000 70.000 22.000
+40.000 60.000 32.000
+50.000 60.000 32.000
+50.000 70.000 32.000
+40.000 70.000 32.000
+50.000 60.000 22.000
+60.000 60.000 22.000
+60.000 70.000 22.000
+50.000 70.000 22.000
+50.000 60.000 32.000
+60.000 60.000 32.000
+60.000 70.000 32.000
+50.000 70.000 32.000
+60.000 60.000 22.000
+70.000 60.000 22.000
+70.000 70.000 22.000
+60.000 70.000 22.000
+60.000 60.000 32.000
+70.000 60.000 32.000
+70.000 70.000 32.000
+60.000 70.000 32.000
+70.000 60.000 22.000
+80.000 60.000 22.000
+80.000 70.000 22.000
+70.000 70.000 22.000
+70.000 60.000 32.000
+80.000 60.000 32.000
+80.000 70.000 32.000
+70.000 70.000 32.000
+80.000 60.000 22.000
+90.000 60.000 22.000
+90.000 70.000 22.000
+80.000 70.000 22.000
+80.000 60.000 32.000
+90.000 60.000 32.000
+90.000 70.000 32.000
+80.000 70.000 32.000
+90.000 60.000 22.000
+100.000 60.000 22.000
+100.000 70.000 22.000
+90.000 70.000 22.000
+90.000 60.000 32.000
+100.000 60.000 32.000
+100.000 70.000 32.000
+90.000 70.000 32.000
+100.000 60.000 22.000
+110.000 60.000 22.000
+110.000 70.000 22.000
+100.000 70.000 22.000
+100.000 60.000 32.000
+110.000 60.000 32.000
+110.000 70.000 32.000
+100.000 70.000 32.000
+110.000 60.000 22.000
+120.000 60.000 22.000
+120.000 70.000 22.000
+110.000 70.000 22.000
+110.000 60.000 32.000
+120.000 60.000 32.000
+120.000 70.000 32.000
+110.000 70.000 32.000
+0.000 50.000 23.000
+10.000 50.000 23.000
+10.000 60.000 23.000
+0.000 60.000 23.000
+0.000 50.000 33.000
+10.000 50.000 33.000
+10.000 60.000 33.000
+0.000 60.000 33.000
+10.000 50.000 23.000
+20.000 50.000 23.000
+20.000 60.000 23.000
+10.000 60.000 23.000
+10.000 50.000 33.000
+20.000 50.000 33.000
+20.000 60.000 33.000
+10.000 60.000 33.000
+20.000 50.000 23.000
+30.000 50.000 23.000
+30.000 60.000 23.000
+20.000 60.000 23.000
+20.000 50.000 33.000
+30.000 50.000 33.000
+30.000 60.000 33.000
+20.000 60.000 33.000
+30.000 50.000 23.000
+40.000 50.000 23.000
+40.000 60.000 23.000
+30.000 60.000 23.000
+30.000 50.000 33.000
+40.000 50.000 33.000
+40.000 60.000 33.000
+30.000 60.000 33.000
+40.000 50.000 23.000
+50.000 50.000 23.000
+50.000 60.000 23.000
+40.000 60.000 23.000
+40.000 50.000 33.000
+50.000 50.000 33.000
+50.000 60.000 33.000
+40.000 60.000 33.000
+50.000 50.000 23.000
+60.000 50.000 23.000
+60.000 60.000 23.000
+50.000 60.000 23.000
+50.000 50.000 33.000
+60.000 50.000 33.000
+60.000 60.000 33.000
+50.000 60.000 33.000
+60.000 50.000 23.000
+70.000 50.000 23.000
+70.000 60.000 23.000
+60.000 60.000 23.000
+60.000 50.000 33.000
+70.000 50.000 33.000
+70.000 60.000 33.000
+60.000 60.000 33.000
+70.000 50.000 23.000
+80.000 50.000 23.000
+80.000 60.000 23.000
+70.000 60.000 23.000
+70.000 50.000 33.000
+80.000 50.000 33.000
+80.000 60.000 33.000
+70.000 60.000 33.000
+80.000 50.000 23.000
+90.000 50.000 23.000
+90.000 60.000 23.000
+80.000 60.000 23.000
+80.000 50.000 33.000
+90.000 50.000 33.000
+90.000 60.000 33.000
+80.000 60.000 33.000
+90.000 50.000 23.000
+100.000 50.000 23.000
+100.000 60.000 23.000
+90.000 60.000 23.000
+90.000 50.000 33.000
+100.000 50.000 33.000
+100.000 60.000 33.000
+90.000 60.000 33.000
+100.000 50.000 23.000
+110.000 50.000 23.000
+110.000 60.000 23.000
+100.000 60.000 23.000
+100.000 50.000 33.000
+110.000 50.000 33.000
+110.000 60.000 33.000
+100.000 60.000 33.000
+110.000 50.000 23.000
+120.000 50.000 23.000
+120.000 60.000 23.000
+110.000 60.000 23.000
+110.000 50.000 33.000
+120.000 50.000 33.000
+120.000 60.000 33.000
+110.000 60.000 33.000
+0.000 40.000 24.000
+10.000 40.000 24.000
+10.000 50.000 24.000
+0.000 50.000 24.000
+0.000 40.000 34.000
+10.000 40.000 34.000
+10.000 50.000 34.000
+0.000 50.000 34.000
+10.000 40.000 24.000
+20.000 40.000 24.000
+20.000 50.000 24.000
+10.000 50.000 24.000
+10.000 40.000 34.000
+20.000 40.000 34.000
+20.000 50.000 34.000
+10.000 50.000 34.000
+20.000 40.000 24.000
+30.000 40.000 24.000
+30.000 50.000 24.000
+20.000 50.000 24.000
+20.000 40.000 34.000
+30.000 40.000 34.000
+30.000 50.000 34.000
+20.000 50.000 34.000
+30.000 40.000 24.000
+40.000 40.000 24.000
+40.000 50.000 24.000
+30.000 50.000 24.000
+30.000 40.000 34.000
+40.000 40.000 34.000
+40.000 50.000 34.000
+30.000 50.000 34.000
+40.000 40.000 24.000
+50.000 40.000 24.000
+50.000 50.000 24.000
+40.000 50.000 24.000
+40.000 40.000 34.000
+50.000 40.000 34.000
+50.000 50.000 34.000
+40.000 50.000 34.000
+50.000 40.000 24.000
+60.000 40.000 24.000
+60.000 50.000 24.000
+50.000 50.000 24.000
+50.000 40.000 34.000
+60.000 40.000 34.000
+60.000 50.000 34.000
+50.000 50.000 34.000
+60.000 40.000 24.000
+70.000 40.000 24.000
+70.000 50.000 24.000
+60.000 50.000 24.000
+60.000 40.000 34.000
+70.000 40.000 34.000
+70.000 50.000 34.000
+60.000 50.000 34.000
+70.000 40.000 24.000
+80.000 40.000 24.000
+80.000 50.000 24.000
+70.000 50.000 24.000
+70.000 40.000 34.000
+80.000 40.000 34.000
+80.000 50.000 34.000
+70.000 50.000 34.000
+80.000 40.000 24.000
+90.000 40.000 24.000
+90.000 50.000 24.000
+80.000 50.000 24.000
+80.000 40.000 34.000
+90.000 40.000 34.000
+90.000 50.000 34.000
+80.000 50.000 34.000
+90.000 40.000 24.000
+100.000 40.000 24.000
+100.000 50.000 24.000
+90.000 50.000 24.000
+90.000 40.000 34.000
+100.000 40.000 34.000
+100.000 50.000 34.000
+90.000 50.000 34.000
+100.000 40.000 24.000
+110.000 40.000 24.000
+110.000 50.000 24.000
+100.000 50.000 24.000
+100.000 40.000 34.000
+110.000 40.000 34.000
+110.000 50.000 34.000
+100.000 50.000 34.000
+110.000 40.000 24.000
+120.000 40.000 24.000
+120.000 50.000 24.000
+110.000 50.000 24.000
+110.000 40.000 34.000
+120.000 40.000 34.000
+120.000 50.000 34.000
+110.000 50.000 34.000
+0.000 30.000 25.000
+10.000 30.000 25.000
+10.000 40.000 25.000
+0.000 40.000 25.000
+0.000 30.000 35.000
+10.000 30.000 35.000
+10.000 40.000 35.000
+0.000 40.000 35.000
+10.000 30.000 25.000
+20.000 30.000 25.000
+20.000 40.000 25.000
+10.000 40.000 25.000
+10.000 30.000 35.000
+20.000 30.000 35.000
+20.000 40.000 35.000
+10.000 40.000 35.000
+20.000 30.000 25.000
+30.000 30.000 25.000
+30.000 40.000 25.000
+20.000 40.000 25.000
+20.000 30.000 35.000
+30.000 30.000 35.000
+30.000 40.000 35.000
+20.000 40.000 35.000
+30.000 30.000 25.000
+40.000 30.000 25.000
+40.000 40.000 25.000
+30.000 40.000 25.000
+30.000 30.000 35.000
+40.000 30.000 35.000
+40.000 40.000 35.000
+30.000 40.000 35.000
+40.000 30.000 25.000
+50.000 30.000 25.000
+50.000 40.000 25.000
+40.000 40.000 25.000
+40.000 30.000 35.000
+50.000 30.000 35.000
+50.000 40.000 35.000
+40.000 40.000 35.000
+50.000 30.000 25.000
+60.000 30.000 25.000
+60.000 40.000 25.000
+50.000 40.000 25.000
+50.000 30.000 35.000
+60.000 30.000 35.000
+60.000 40.000 35.000
+50.000 40.000 35.000
+60.000 30.000 25.000
+70.000 30.000 25.000
+70.000 40.000 25.000
+60.000 40.000 25.000
+60.000 30.000 35.000
+70.000 30.000 35.000
+70.000 40.000 35.000
+60.000 40.000 35.000
+70.000 30.000 25.000
+80.000 30.000 25.000
+80.000 40.000 25.000
+70.000 40.000 25.000
+70.000 30.000 35.000
+80.000 30.000 35.000
+80.000 40.000 35.000
+70.000 40.000 35.000
+80.000 30.000 25.000
+90.000 30.000 25.000
+90.000 40.000 25.000
+80.000 40.000 25.000
+80.000 30.000 35.000
+90.000 30.000 35.000
+90.000 40.000 35.000
+80.000 40.000 35.000
+90.000 30.000 25.000
+100.000 30.000 25.000
+100.000 40.000 25.000
+90.000 40.000 25.000
+90.000 30.000 35.000
+100.000 30.000 35.000
+100.000 40.000 35.000
+90.000 40.000 35.000
+100.000 30.000 25.000
+110.000 30.000 25.000
+110.000 40.000 25.000
+100.000 40.000 25.000
+100.000 30.000 35.000
+110.000 30.000 35.000
+110.000 40.000 35.000
+100.000 40.000 35.000
+110.000 30.000 25.000
+120.000 30.000 25.000
+120.000 40.000 25.000
+110.000 40.000 25.000
+110.000 30.000 35.000
+120.000 30.000 35.000
+120.000 40.000 35.000
+110.000 40.000 35.000
+0.000 20.000 26.000
+10.000 20.000 26.000
+10.000 30.000 26.000
+0.000 30.000 26.000
+0.000 20.000 36.000
+10.000 20.000 36.000
+10.000 30.000 36.000
+0.000 30.000 36.000
+10.000 20.000 26.000
+20.000 20.000 26.000
+20.000 30.000 26.000
+10.000 30.000 26.000
+10.000 20.000 36.000
+20.000 20.000 36.000
+20.000 30.000 36.000
+10.000 30.000 36.000
+20.000 20.000 26.000
+30.000 20.000 26.000
+30.000 30.000 26.000
+20.000 30.000 26.000
+20.000 20.000 36.000
+30.000 20.000 36.000
+30.000 30.000 36.000
+20.000 30.000 36.000
+30.000 20.000 26.000
+40.000 20.000 26.000
+40.000 30.000 26.000
+30.000 30.000 26.000
+30.000 20.000 36.000
+40.000 20.000 36.000
+40.000 30.000 36.000
+30.000 30.000 36.000
+40.000 20.000 26.000
+50.000 20.000 26.000
+50.000 30.000 26.000
+40.000 30.000 26.000
+40.000 20.000 36.000
+50.000 20.000 36.000
+50.000 30.000 36.000
+40.000 30.000 36.000
+50.000 20.000 26.000
+60.000 20.000 26.000
+60.000 30.000 26.000
+50.000 30.000 26.000
+50.000 20.000 36.000
+60.000 20.000 36.000
+60.000 30.000 36.000
+50.000 30.000 36.000
+60.000 20.000 26.000
+70.000 20.000 26.000
+70.000 30.000 26.000
+60.000 30.000 26.000
+60.000 20.000 36.000
+70.000 20.000 36.000
+70.000 30.000 36.000
+60.000 30.000 36.000
+70.000 20.000 26.000
+80.000 20.000 26.000
+80.000 30.000 26.000
+70.000 30.000 26.000
+70.000 20.000 36.000
+80.000 20.000 36.000
+80.000 30.000 36.000
+70.000 30.000 36.000
+80.000 20.000 26.000
+90.000 20.000 26.000
+90.000 30.000 26.000
+80.000 30.000 26.000
+80.000 20.000 36.000
+90.000 20.000 36.000
+90.000 30.000 36.000
+80.000 30.000 36.000
+90.000 20.000 26.000
+100.000 20.000 26.000
+100.000 30.000 26.000
+90.000 30.000 26.000
+90.000 20.000 36.000
+100.000 20.000 36.000
+100.000 30.000 36.000
+90.000 30.000 36.000
+100.000 20.000 26.000
+110.000 20.000 26.000
+110.000 30.000 26.000
+100.000 30.000 26.000
+100.000 20.000 36.000
+110.000 20.000 36.000
+110.000 30.000 36.000
+100.000 30.000 36.000
+110.000 20.000 26.000
+120.000 20.000 26.000
+120.000 30.000 26.000
+110.000 30.000 26.000
+110.000 20.000 36.000
+120.000 20.000 36.000
+120.000 30.000 36.000
+110.000 30.000 36.000
+0.000 10.000 27.000
+10.000 10.000 27.000
+10.000 20.000 27.000
+0.000 20.000 27.000
+0.000 10.000 37.000
+10.000 10.000 37.000
+10.000 20.000 37.000
+0.000 20.000 37.000
+10.000 10.000 27.000
+20.000 10.000 27.000
+20.000 20.000 27.000
+10.000 20.000 27.000
+10.000 10.000 37.000
+20.000 10.000 37.000
+20.000 20.000 37.000
+10.000 20.000 37.000
+20.000 10.000 27.000
+30.000 10.000 27.000
+30.000 20.000 27.000
+20.000 20.000 27.000
+20.000 10.000 37.000
+30.000 10.000 37.000
+30.000 20.000 37.000
+20.000 20.000 37.000
+30.000 10.000 27.000
+40.000 10.000 27.000
+40.000 20.000 27.000
+30.000 20.000 27.000
+30.000 10.000 37.000
+40.000 10.000 37.000
+40.000 20.000 37.000
+30.000 20.000 37.000
+40.000 10.000 27.000
+50.000 10.000 27.000
+50.000 20.000 27.000
+40.000 20.000 27.000
+40.000 10.000 37.000
+50.000 10.000 37.000
+50.000 20.000 37.000
+40.000 20.000 37.000
+50.000 10.000 27.000
+60.000 10.000 27.000
+60.000 20.000 27.000
+50.000 20.000 27.000
+50.000 10.000 37.000
+60.000 10.000 37.000
+60.000 20.000 37.000
+50.000 20.000 37.000
+60.000 10.000 27.000
+70.000 10.000 27.000
+70.000 20.000 27.000
+60.000 20.000 27.000
+60.000 10.000 37.000
+70.000 10.000 37.000
+70.000 20.000 37.000
+60.000 20.000 37.000
+70.000 10.000 27.000
+80.000 10.000 27.000
+80.000 20.000 27.000
+70.000 20.000 27.000
+70.000 10.000 37.000
+80.000 10.000 37.000
+80.000 20.000 37.000
+70.000 20.000 37.000
+80.000 10.000 27.000
+90.000 10.000 27.000
+90.000 20.000 27.000
+80.000 20.000 27.000
+80.000 10.000 37.000
+90.000 10.000 37.000
+90.000 20.000 37.000
+80.000 20.000 37.000
+90.000 10.000 27.000
+100.000 10.000 27.000
+100.000 20.000 27.000
+90.000 20.000 27.000
+90.000 10.000 37.000
+100.000 10.000 37.000
+100.000 20.000 37.000
+90.000 20.000 37.000
+100.000 10.000 27.000
+110.000 10.000 27.000
+110.000 20.000 27.000
+100.000 20.000 27.000
+100.000 10.000 37.000
+110.000 10.000 37.000
+110.000 20.000 37.000
+100.000 20.000 37.000
+110.000 10.000 27.000
+120.000 10.000 27.000
+120.000 20.000 27.000
+110.000 20.000 27.000
+110.000 10.000 37.000
+120.000 10.000 37.000
+120.000 20.000 37.000
+110.000 20.000 37.000
+0.000 0.000 28.000
+10.000 0.000 28.000
+10.000 10.000 28.000
+0.000 10.000 28.000
+0.000 0.000 38.000
+10.000 0.000 38.000
+10.000 10.000 38.000
+0.000 10.000 38.000
+10.000 0.000 28.000
+20.000 0.000 28.000
+20.000 10.000 28.000
+10.000 10.000 28.000
+10.000 0.000 38.000
+20.000 0.000 38.000
+20.000 10.000 38.000
+10.000 10.000 38.000
+20.000 0.000 28.000
+30.000 0.000 28.000
+30.000 10.000 28.000
+20.000 10.000 28.000
+20.000 0.000 38.000
+30.000 0.000 38.000
+30.000 10.000 38.000
+20.000 10.000 38.000
+30.000 0.000 28.000
+40.000 0.000 28.000
+40.000 10.000 28.000
+30.000 10.000 28.000
+30.000 0.000 38.000
+40.000 0.000 38.000
+40.000 10.000 38.000
+30.000 10.000 38.000
+40.000 0.000 28.000
+50.000 0.000 28.000
+50.000 10.000 28.000
+40.000 10.000 28.000
+40.000 0.000 38.000
+50.000 0.000 38.000
+50.000 10.000 38.000
+40.000 10.000 38.000
+50.000 0.000 28.000
+60.000 0.000 28.000
+60.000 10.000 28.000
+50.000 10.000 28.000
+50.000 0.000 38.000
+60.000 0.000 38.000
+60.000 10.000 38.000
+50.000 10.000 38.000
+60.000 0.000 28.000
+70.000 0.000 28.000
+70.000 10.000 28.000
+60.000 10.000 28.000
+60.000 0.000 38.000
+70.000 0.000 38.000
+70.000 10.000 38.000
+60.000 10.000 38.000
+70.000 0.000 28.000
+80.000 0.000 28.000
+80.000 10.000 28.000
+70.000 10.000 28.000
+70.000 0.000 38.000
+80.000 0.000 38.000
+80.000 10.000 38.000
+70.000 10.000 38.000
+80.000 0.000 28.000
+90.000 0.000 28.000
+90.000 10.000 28.000
+80.000 10.000 28.000
+80.000 0.000 38.000
+90.000 0.000 38.000
+90.000 10.000 38.000
+80.000 10.000 38.000
+90.000 0.000 28.000
+100.000 0.000 28.000
+100.000 10.000 28.000
+90.000 10.000 28.000
+90.000 0.000 38.000
+100.000 0.000 38.000
+100.000 10.000 38.000
+90.000 10.000 38.000
+100.000 0.000 28.000
+110.000 0.000 28.000
+110.000 10.000 28.000
+100.000 10.000 28.000
+100.000 0.000 38.000
+110.000 0.000 38.000
+110.000 10.000 38.000
+100.000 10.000 38.000
+110.000 0.000 28.000
+120.000 0.000 28.000
+120.000 10.000 28.000
+110.000 10.000 28.000
+110.000 0.000 38.000
+120.000 0.000 38.000
+120.000 10.000 38.000
+110.000 10.000 38.000
+0.000 70.000 31.000
+10.000 70.000 31.000
+10.000 80.000 31.000
+0.000 80.000 31.000
+0.000 70.000 41.000
+10.000 70.000 41.000
+10.000 80.000 41.000
+0.000 80.000 41.000
+10.000 70.000 31.000
+20.000 70.000 31.000
+20.000 80.000 31.000
+10.000 80.000 31.000
+10.000 70.000 41.000
+20.000 70.000 41.000
+20.000 80.000 41.000
+10.000 80.000 41.000
+20.000 70.000 31.000
+30.000 70.000 31.000
+30.000 80.000 31.000
+20.000 80.000 31.000
+20.000 70.000 41.000
+30.000 70.000 41.000
+30.000 80.000 41.000
+20.000 80.000 41.000
+30.000 70.000 31.000
+40.000 70.000 31.000
+40.000 80.000 31.000
+30.000 80.000 31.000
+30.000 70.000 41.000
+40.000 70.000 41.000
+40.000 80.000 41.000
+30.000 80.000 41.000
+40.000 70.000 31.000
+50.000 70.000 31.000
+50.000 80.000 31.000
+40.000 80.000 31.000
+40.000 70.000 41.000
+50.000 70.000 41.000
+50.000 80.000 41.000
+40.000 80.000 41.000
+50.000 70.000 31.000
+60.000 70.000 31.000
+60.000 80.000 31.000
+50.000 80.000 31.000
+50.000 70.000 41.000
+60.000 70.000 41.000
+60.000 80.000 41.000
+50.000 80.000 41.000
+60.000 70.000 31.000
+70.000 70.000 31.000
+70.000 80.000 31.000
+60.000 80.000 31.000
+60.000 70.000 41.000
+70.000 70.000 41.000
+70.000 80.000 41.000
+60.000 80.000 41.000
+70.000 70.000 31.000
+80.000 70.000 31.000
+80.000 80.000 31.000
+70.000 80.000 31.000
+70.000 70.000 41.000
+80.000 70.000 41.000
+80.000 80.000 41.000
+70.000 80.000 41.000
+80.000 70.000 31.000
+90.000 70.000 31.000
+90.000 80.000 31.000
+80.000 80.000 31.000
+80.000 70.000 41.000
+90.000 70.000 41.000
+90.000 80.000 41.000
+80.000 80.000 41.000
+90.000 70.000 31.000
+100.000 70.000 31.000
+100.000 80.000 31.000
+90.000 80.000 31.000
+90.000 70.000 41.000
+100.000 70.000 41.000
+100.000 80.000 41.000
+90.000 80.000 41.000
+100.000 70.000 31.000
+110.000 70.000 31.000
+110.000 80.000 31.000
+100.000 80.000 31.000
+100.000 70.000 41.000
+110.000 70.000 41.000
+110.000 80.000 41.000
+100.000 80.000 41.000
+110.000 70.000 31.000
+120.000 70.000 31.000
+120.000 80.000 31.000
+110.000 80.000 31.000
+110.000 70.000 41.000
+120.000 70.000 41.000
+120.000 80.000 41.000
+110.000 80.000 41.000
+0.000 60.000 32.000
+10.000 60.000 32.000
+10.000 70.000 32.000
+0.000 70.000 32.000
+0.000 60.000 42.000
+10.000 60.000 42.000
+10.000 70.000 42.000
+0.000 70.000 42.000
+10.000 60.000 32.000
+20.000 60.000 32.000
+20.000 70.000 32.000
+10.000 70.000 32.000
+10.000 60.000 42.000
+20.000 60.000 42.000
+20.000 70.000 42.000
+10.000 70.000 42.000
+20.000 60.000 32.000
+30.000 60.000 32.000
+30.000 70.000 32.000
+20.000 70.000 32.000
+20.000 60.000 42.000
+30.000 60.000 42.000
+30.000 70.000 42.000
+20.000 70.000 42.000
+30.000 60.000 32.000
+40.000 60.000 32.000
+40.000 70.000 32.000
+30.000 70.000 32.000
+30.000 60.000 42.000
+40.000 60.000 42.000
+40.000 70.000 42.000
+30.000 70.000 42.000
+40.000 60.000 32.000
+50.000 60.000 32.000
+50.000 70.000 32.000
+40.000 70.000 32.000
+40.000 60.000 42.000
+50.000 60.000 42.000
+50.000 70.000 42.000
+40.000 70.000 42.000
+50.000 60.000 32.000
+60.000 60.000 32.000
+60.000 70.000 32.000
+50.000 70.000 32.000
+50.000 60.000 42.000
+60.000 60.000 42.000
+60.000 70.000 42.000
+50.000 70.000 42.000
+60.000 60.000 32.000
+70.000 60.000 32.000
+70.000 70.000 32.000
+60.000 70.000 32.000
+60.000 60.000 42.000
+70.000 60.000 42.000
+70.000 70.000 42.000
+60.000 70.000 42.000
+70.000 60.000 32.000
+80.000 60.000 32.000
+80.000 70.000 32.000
+70.000 70.000 32.000
+70.000 60.000 42.000
+80.000 60.000 42.000
+80.000 70.000 42.000
+70.000 70.000 42.000
+80.000 60.000 32.000
+90.000 60.000 32.000
+90.000 70.000 32.000
+80.000 70.000 32.000
+80.000 60.000 42.000
+90.000 60.000 42.000
+90.000 70.000 42.000
+80.000 70.000 42.000
+90.000 60.000 32.000
+100.000 60.000 32.000
+100.000 70.000 32.000
+90.000 70.000 32.000
+90.000 60.000 42.000
+100.000 60.000 42.000
+100.000 70.000 42.000
+90.000 70.000 42.000
+100.000 60.000 32.000
+110.000 60.000 32.000
+110.000 70.000 32.000
+100.000 70.000 32.000
+100.000 60.000 42.000
+110.000 60.000 42.000
+110.000 70.000 42.000
+100.000 70.000 42.000
+110.000 60.000 32.000
+120.000 60.000 32.000
+120.000 70.000 32.000
+110.000 70.000 32.000
+110.000 60.000 42.000
+120.000 60.000 42.000
+120.000 70.000 42.000
+110.000 70.000 42.000
+0.000 50.000 33.000
+10.000 50.000 33.000
+10.000 60.000 33.000
+0.000 60.000 33.000
+0.000 50.000 43.000
+10.000 50.000 43.000
+10.000 60.000 43.000
+0.000 60.000 43.000
+10.000 50.000 33.000
+20.000 50.000 33.000
+20.000 60.000 33.000
+10.000 60.000 33.000
+10.000 50.000 43.000
+20.000 50.000 43.000
+20.000 60.000 43.000
+10.000 60.000 43.000
+20.000 50.000 33.000
+30.000 50.000 33.000
+30.000 60.000 33.000
+20.000 60.000 33.000
+20.000 50.000 43.000
+30.000 50.000 43.000
+30.000 60.000 43.000
+20.000 60.000 43.000
+30.000 50.000 33.000
+40.000 50.000 33.000
+40.000 60.000 33.000
+30.000 60.000 33.000
+30.000 50.000 43.000
+40.000 50.000 43.000
+40.000 60.000 43.000
+30.000 60.000 43.000
+40.000 50.000 33.000
+50.000 50.000 33.000
+50.000 60.000 33.000
+40.000 60.000 33.000
+40.000 50.000 43.000
+50.000 50.000 43.000
+50.000 60.000 43.000
+40.000 60.000 43.000
+50.000 50.000 33.000
+60.000 50.000 33.000
+60.000 60.000 33.000
+50.000 60.000 33.000
+50.000 50.000 43.000
+60.000 50.000 43.000
+60.000 60.000 43.000
+50.000 60.000 43.000
+60.000 50.000 33.000
+70.000 50.000 33.000
+70.000 60.000 33.000
+60.000 60.000 33.000
+60.000 50.000 43.000
+70.000 50.000 43.000
+70.000 60.000 43.000
+60.000 60.000 43.000
+70.000 50.000 33.000
+80.000 50.000 33.000
+80.000 60.000 33.000
+70.000 60.000 33.000
+70.000 50.000 43.000
+80.000 50.000 43.000
+80.000 60.000 43.000
+70.000 60.000 43.000
+80.000 50.000 33.000
+90.000 50.000 33.000
+90.000 60.000 33.000
+80.000 60.000 33.000
+80.000 50.000 43.000
+90.000 50.000 43.000
+90.000 60.000 43.000
+80.000 60.000 43.000
+90.000 50.000 33.000
+100.000 50.000 33.000
+100.000 60.000 33.000
+90.000 60.000 33.000
+90.000 50.000 43.000
+100.000 50.000 43.000
+100.000 60.000 43.000
+90.000 60.000 43.000
+100.000 50.000 33.000
+110.000 50.000 33.000
+110.000 60.000 33.000
+100.000 60.000 33.000
+100.000 50.000 43.000
+110.000 50.000 43.000
+110.000 60.000 43.000
+100.000 60.000 43.000
+110.000 50.000 33.000
+120.000 50.000 33.000
+120.000 60.000 33.000
+110.000 60.000 33.000
+110.000 50.000 43.000
+120.000 50.000 43.000
+120.000 60.000 43.000
+110.000 60.000 43.000
+0.000 40.000 34.000
+10.000 40.000 34.000
+10.000 50.000 34.000
+0.000 50.000 34.000
+0.000 40.000 44.000
+10.000 40.000 44.000
+10.000 50.000 44.000
+0.000 50.000 44.000
+10.000 40.000 34.000
+20.000 40.000 34.000
+20.000 50.000 34.000
+10.000 50.000 34.000
+10.000 40.000 44.000
+20.000 40.000 44.000
+20.000 50.000 44.000
+10.000 50.000 44.000
+20.000 40.000 34.000
+30.000 40.000 34.000
+30.000 50.000 34.000
+20.000 50.000 34.000
+20.000 40.000 44.000
+30.000 40.000 44.000
+30.000 50.000 44.000
+20.000 50.000 44.000
+30.000 40.000 34.000
+40.000 40.000 34.000
+40.000 50.000 34.000
+30.000 50.000 34.000
+30.000 40.000 44.000
+40.000 40.000 44.000
+40.000 50.000 44.000
+30.000 50.000 44.000
+40.000 40.000 34.000
+50.000 40.000 34.000
+50.000 50.000 34.000
+40.000 50.000 34.000
+40.000 40.000 44.000
+50.000 40.000 44.000
+50.000 50.000 44.000
+40.000 50.000 44.000
+50.000 40.000 34.000
+60.000 40.000 34.000
+60.000 50.000 34.000
+50.000 50.000 34.000
+50.000 40.000 44.000
+60.000 40.000 44.000
+60.000 50.000 44.000
+50.000 50.000 44.000
+60.000 40.000 34.000
+70.000 40.000 34.000
+70.000 50.000 34.000
+60.000 50.000 34.000
+60.000 40.000 44.000
+70.000 40.000 44.000
+70.000 50.000 44.000
+60.000 50.000 44.000
+70.000 40.000 34.000
+80.000 40.000 34.000
+80.000 50.000 34.000
+70.000 50.000 34.000
+70.000 40.000 44.000
+80.000 40.000 44.000
+80.000 50.000 44.000
+70.000 50.000 44.000
+80.000 40.000 34.000
+90.000 40.000 34.000
+90.000 50.000 34.000
+80.000 50.000 34.000
+80.000 40.000 44.000
+90.000 40.000 44.000
+90.000 50.000 44.000
+80.000 50.000 44.000
+90.000 40.000 34.000
+100.000 40.000 34.000
+100.000 50.000 34.000
+90.000 50.000 34.000
+90.000 40.000 44.000
+100.000 40.000 44.000
+100.000 50.000 44.000
+90.000 50.000 44.000
+100.000 40.000 34.000
+110.000 40.000 34.000
+110.000 50.000 34.000
+100.000 50.000 34.000
+100.000 40.000 44.000
+110.000 40.000 44.000
+110.000 50.000 44.000
+100.000 50.000 44.000
+110.000 40.000 34.000
+120.000 40.000 34.000
+120.000 50.000 34.000
+110.000 50.000 34.000
+110.000 40.000 44.000
+120.000 40.000 44.000
+120.000 50.000 44.000
+110.000 50.000 44.000
+0.000 30.000 35.000
+10.000 30.000 35.000
+10.000 40.000 35.000
+0.000 40.000 35.000
+0.000 30.000 45.000
+10.000 30.000 45.000
+10.000 40.000 45.000
+0.000 40.000 45.000
+10.000 30.000 35.000
+20.000 30.000 35.000
+20.000 40.000 35.000
+10.000 40.000 35.000
+10.000 30.000 45.000
+20.000 30.000 45.000
+20.000 40.000 45.000
+10.000 40.000 45.000
+20.000 30.000 35.000
+30.000 30.000 35.000
+30.000 40.000 35.000
+20.000 40.000 35.000
+20.000 30.000 45.000
+30.000 30.000 45.000
+30.000 40.000 45.000
+20.000 40.000 45.000
+30.000 30.000 35.000
+40.000 30.000 35.000
+40.000 40.000 35.000
+30.000 40.000 35.000
+30.000 30.000 45.000
+40.000 30.000 45.000
+40.000 40.000 45.000
+30.000 40.000 45.000
+40.000 30.000 35.000
+50.000 30.000 35.000
+50.000 40.000 35.000
+40.000 40.000 35.000
+40.000 30.000 45.000
+50.000 30.000 45.000
+50.000 40.000 45.000
+40.000 40.000 45.000
+50.000 30.000 35.000
+60.000 30.000 35.000
+60.000 40.000 35.000
+50.000 40.000 35.000
+50.000 30.000 45.000
+60.000 30.000 45.000
+60.000 40.000 45.000
+50.000 40.000 45.000
+60.000 30.000 35.000
+70.000 30.000 35.000
+70.000 40.000 35.000
+60.000 40.000 35.000
+60.000 30.000 45.000
+70.000 30.000 45.000
+70.000 40.000 45.000
+60.000 40.000 45.000
+70.000 30.000 35.000
+80.000 30.000 35.000
+80.000 40.000 35.000
+70.000 40.000 35.000
+70.000 30.000 45.000
+80.000 30.000 45.000
+80.000 40.000 45.000
+70.000 40.000 45.000
+80.000 30.000 35.000
+90.000 30.000 35.000
+90.000 40.000 35.000
+80.000 40.000 35.000
+80.000 30.000 45.000
+90.000 30.000 45.000
+90.000 40.000 45.000
+80.000 40.000 45.000
+90.000 30.000 35.000
+100.000 30.000 35.000
+100.000 40.000 35.000
+90.000 40.000 35.000
+90.000 30.000 45.000
+100.000 30.000 45.000
+100.000 40.000 45.000
+90.000 40.000 45.000
+100.000 30.000 35.000
+110.000 30.000 35.000
+110.000 40.000 35.000
+100.000 40.000 35.000
+100.000 30.000 45.000
+110.000 30.000 45.000
+110.000 40.000 45.000
+100.000 40.000 45.000
+110.000 30.000 35.000
+120.000 30.000 35.000
+120.000 40.000 35.000
+110.000 40.000 35.000
+110.000 30.000 45.000
+120.000 30.000 45.000
+120.000 40.000 45.000
+110.000 40.000 45.000
+0.000 20.000 36.000
+10.000 20.000 36.000
+10.000 30.000 36.000
+0.000 30.000 36.000
+0.000 20.000 46.000
+10.000 20.000 46.000
+10.000 30.000 46.000
+0.000 30.000 46.000
+10.000 20.000 36.000
+20.000 20.000 36.000
+20.000 30.000 36.000
+10.000 30.000 36.000
+10.000 20.000 46.000
+20.000 20.000 46.000
+20.000 30.000 46.000
+10.000 30.000 46.000
+20.000 20.000 36.000
+30.000 20.000 36.000
+30.000 30.000 36.000
+20.000 30.000 36.000
+20.000 20.000 46.000
+30.000 20.000 46.000
+30.000 30.000 46.000
+20.000 30.000 46.000
+30.000 20.000 36.000
+40.000 20.000 36.000
+40.000 30.000 36.000
+30.000 30.000 36.000
+30.000 20.000 46.000
+40.000 20.000 46.000
+40.000 30.000 46.000
+30.000 30.000 46.000
+40.000 20.000 36.000
+50.000 20.000 36.000
+50.000 30.000 36.000
+40.000 30.000 36.000
+40.000 20.000 46.000
+50.000 20.000 46.000
+50.000 30.000 46.000
+40.000 30.000 46.000
+50.000 20.000 36.000
+60.000 20.000 36.000
+60.000 30.000 36.000
+50.000 30.000 36.000
+50.000 20.000 46.000
+60.000 20.000 46.000
+60.000 30.000 46.000
+50.000 30.000 46.000
+60.000 20.000 36.000
+70.000 20.000 36.000
+70.000 30.000 36.000
+60.000 30.000 36.000
+60.000 20.000 46.000
+70.000 20.000 46.000
+70.000 30.000 46.000
+60.000 30.000 46.000
+70.000 20.000 36.000
+80.000 20.000 36.000
+80.000 30.000 36.000
+70.000 30.000 36.000
+70.000 20.000 46.000
+80.000 20.000 46.000
+80.000 30.000 46.000
+70.000 30.000 46.000
+80.000 20.000 36.000
+90.000 20.000 36.000
+90.000 30.000 36.000
+80.000 30.000 36.000
+80.000 20.000 46.000
+90.000 20.000 46.000
+90.000 30.000 46.000
+80.000 30.000 46.000
+90.000 20.000 36.000
+100.000 20.000 36.000
+100.000 30.000 36.000
+90.000 30.000 36.000
+90.000 20.000 46.000
+100.000 20.000 46.000
+100.000 30.000 46.000
+90.000 30.000 46.000
+100.000 20.000 36.000
+110.000 20.000 36.000
+110.000 30.000 36.000
+100.000 30.000 36.000
+100.000 20.000 46.000
+110.000 20.000 46.000
+110.000 30.000 46.000
+100.000 30.000 46.000
+110.000 20.000 36.000
+120.000 20.000 36.000
+120.000 30.000 36.000
+110.000 30.000 36.000
+110.000 20.000 46.000
+120.000 20.000 46.000
+120.000 30.000 46.000
+110.000 30.000 46.000
+0.000 10.000 37.000
+10.000 10.000 37.000
+10.000 20.000 37.000
+0.000 20.000 37.000
+0.000 10.000 47.000
+10.000 10.000 47.000
+10.000 20.000 47.000
+0.000 20.000 47.000
+10.000 10.000 37.000
+20.000 10.000 37.000
+20.000 20.000 37.000
+10.000 20.000 37.000
+10.000 10.000 47.000
+20.000 10.000 47.000
+20.000 20.000 47.000
+10.000 20.000 47.000
+20.000 10.000 37.000
+30.000 10.000 37.000
+30.000 20.000 37.000
+20.000 20.000 37.000
+20.000 10.000 47.000
+30.000 10.000 47.000
+30.000 20.000 47.000
+20.000 20.000 47.000
+30.000 10.000 37.000
+40.000 10.000 37.000
+40.000 20.000 37.000
+30.000 20.000 37.000
+30.000 10.000 47.000
+40.000 10.000 47.000
+40.000 20.000 47.000
+30.000 20.000 47.000
+40.000 10.000 37.000
+50.000 10.000 37.000
+50.000 20.000 37.000
+40.000 20.000 37.000
+40.000 10.000 47.000
+50.000 10.000 47.000
+50.000 20.000 47.000
+40.000 20.000 47.000
+50.000 10.000 37.000
+60.000 10.000 37.000
+60.000 20.000 37.000
+50.000 20.000 37.000
+50.000 10.000 47.000
+60.000 10.000 47.000
+60.000 20.000 47.000
+50.000 20.000 47.000
+60.000 10.000 37.000
+70.000 10.000 37.000
+70.000 20.000 37.000
+60.000 20.000 37.000
+60.000 10.000 47.000
+70.000 10.000 47.000
+70.000 20.000 47.000
+60.000 20.000 47.000
+70.000 10.000 37.000
+80.000 10.000 37.000
+80.000 20.000 37.000
+70.000 20.000 37.000
+70.000 10.000 47.000
+80.000 10.000 47.000
+80.000 20.000 47.000
+70.000 20.000 47.000
+80.000 10.000 37.000
+90.000 10.000 37.000
+90.000 20.000 37.000
+80.000 20.000 37.000
+80.000 10.000 47.000
+90.000 10.000 47.000
+90.000 20.000 47.000
+80.000 20.000 47.000
+90.000 10.000 37.000
+100.000 10.000 37.000
+100.000 20.000 37.000
+90.000 20.000 37.000
+90.000 10.000 47.000
+100.000 10.000 47.000
+100.000 20.000 47.000
+90.000 20.000 47.000
+100.000 10.000 37.000
+110.000 10.000 37.000
+110.000 20.000 37.000
+100.000 20.000 37.000
+100.000 10.000 47.000
+110.000 10.000 47.000
+110.000 20.000 47.000
+100.000 20.000 47.000
+110.000 10.000 37.000
+120.000 10.000 37.000
+120.000 20.000 37.000
+110.000 20.000 37.000
+110.000 10.000 47.000
+120.000 10.000 47.000
+120.000 20.000 47.000
+110.000 20.000 47.000
+0.000 0.000 38.000
+10.000 0.000 38.000
+10.000 10.000 38.000
+0.000 10.000 38.000
+0.000 0.000 48.000
+10.000 0.000 48.000
+10.000 10.000 48.000
+0.000 10.000 48.000
+10.000 0.000 38.000
+20.000 0.000 38.000
+20.000 10.000 38.000
+10.000 10.000 38.000
+10.000 0.000 48.000
+20.000 0.000 48.000
+20.000 10.000 48.000
+10.000 10.000 48.000
+20.000 0.000 38.000
+30.000 0.000 38.000
+30.000 10.000 38.000
+20.000 10.000 38.000
+20.000 0.000 48.000
+30.000 0.000 48.000
+30.000 10.000 48.000
+20.000 10.000 48.000
+30.000 0.000 38.000
+40.000 0.000 38.000
+40.000 10.000 38.000
+30.000 10.000 38.000
+30.000 0.000 48.000
+40.000 0.000 48.000
+40.000 10.000 48.000
+30.000 10.000 48.000
+40.000 0.000 38.000
+50.000 0.000 38.000
+50.000 10.000 38.000
+40.000 10.000 38.000
+40.000 0.000 48.000
+50.000 0.000 48.000
+50.000 10.000 48.000
+40.000 10.000 48.000
+50.000 0.000 38.000
+60.000 0.000 38.000
+60.000 10.000 38.000
+50.000 10.000 38.000
+50.000 0.000 48.000
+60.000 0.000 48.000
+60.000 10.000 48.000
+50.000 10.000 48.000
+60.000 0.000 38.000
+70.000 0.000 38.000
+70.000 10.000 38.000
+60.000 10.000 38.000
+60.000 0.000 48.000
+70.000 0.000 48.000
+70.000 10.000 48.000
+60.000 10.000 48.000
+70.000 0.000 38.000
+80.000 0.000 38.000
+80.000 10.000 38.000
+70.000 10.000 38.000
+70.000 0.000 48.000
+80.000 0.000 48.000
+80.000 10.000 48.000
+70.000 10.000 48.000
+80.000 0.000 38.000
+90.000 0.000 38.000
+90.000 10.000 38.000
+80.000 10.000 38.000
+80.000 0.000 48.000
+90.000 0.000 48.000
+90.000 10.000 48.000
+80.000 10.000 48.000
+90.000 0.000 38.000
+100.000 0.000 38.000
+100.000 10.000 38.000
+90.000 10.000 38.000
+90.000 0.000 48.000
+100.000 0.000 48.000
+100.000 10.000 48.000
+90.000 10.000 48.000
+100.000 0.000 38.000
+110.000 0.000 38.000
+110.000 10.000 38.000
+100.000 10.000 38.000
+100.000 0.000 48.000
+110.000 0.000 48.000
+110.000 10.000 48.000
+100.000 10.000 48.000
+110.000 0.000 38.000
+120.000 0.000 38.000
+120.000 10.000 38.000
+110.000 10.000 38.000
+110.000 0.000 48.000
+120.000 0.000 48.000
+120.000 10.000 48.000
+110.000 10.000 48.000
+0.000 70.000 41.000
+10.000 70.000 41.000
+10.000 80.000 41.000
+0.000 80.000 41.000
+0.000 70.000 51.000
+10.000 70.000 51.000
+10.000 80.000 51.000
+0.000 80.000 51.000
+10.000 70.000 41.000
+20.000 70.000 41.000
+20.000 80.000 41.000
+10.000 80.000 41.000
+10.000 70.000 51.000
+20.000 70.000 51.000
+20.000 80.000 51.000
+10.000 80.000 51.000
+20.000 70.000 41.000
+30.000 70.000 41.000
+30.000 80.000 41.000
+20.000 80.000 41.000
+20.000 70.000 51.000
+30.000 70.000 51.000
+30.000 80.000 51.000
+20.000 80.000 51.000
+30.000 70.000 41.000
+40.000 70.000 41.000
+40.000 80.000 41.000
+30.000 80.000 41.000
+30.000 70.000 51.000
+40.000 70.000 51.000
+40.000 80.000 51.000
+30.000 80.000 51.000
+40.000 70.000 41.000
+50.000 70.000 41.000
+50.000 80.000 41.000
+40.000 80.000 41.000
+40.000 70.000 51.000
+50.000 70.000 51.000
+50.000 80.000 51.000
+40.000 80.000 51.000
+50.000 70.000 41.000
+60.000 70.000 41.000
+60.000 80.000 41.000
+50.000 80.000 41.000
+50.000 70.000 51.000
+60.000 70.000 51.000
+60.000 80.000 51.000
+50.000 80.000 51.000
+60.000 70.000 41.000
+70.000 70.000 41.000
+70.000 80.000 41.000
+60.000 80.000 41.000
+60.000 70.000 51.000
+70.000 70.000 51.000
+70.000 80.000 51.000
+60.000 80.000 51.000
+70.000 70.000 41.000
+80.000 70.000 41.000
+80.000 80.000 41.000
+70.000 80.000 41.000
+70.000 70.000 51.000
+80.000 70.000 51.000
+80.000 80.000 51.000
+70.000 80.000 51.000
+80.000 70.000 41.000
+90.000 70.000 41.000
+90.000 80.000 41.000
+80.000 80.000 41.000
+80.000 70.000 51.000
+90.000 70.000 51.000
+90.000 80.000 51.000
+80.000 80.000 51.000
+90.000 70.000 41.000
+100.000 70.000 41.000
+100.000 80.000 41.000
+90.000 80.000 41.000
+90.000 70.000 51.000
+100.000 70.000 51.000
+100.000 80.000 51.000
+90.000 80.000 51.000
+100.000 70.000 41.000
+110.000 70.000 41.000
+110.000 80.000 41.000
+100.000 80.000 41.000
+100.000 70.000 51.000
+110.000 70.000 51.000
+110.000 80.000 51.000
+100.000 80.000 51.000
+110.000 70.000 41.000
+120.000 70.000 41.000
+120.000 80.000 41.000
+110.000 80.000 41.000
+110.000 70.000 51.000
+120.000 70.000 51.000
+120.000 80.000 51.000
+110.000 80.000 51.000
+0.000 60.000 42.000
+10.000 60.000 42.000
+10.000 70.000 42.000
+0.000 70.000 42.000
+0.000 60.000 52.000
+10.000 60.000 52.000
+10.000 70.000 52.000
+0.000 70.000 52.000
+10.000 60.000 42.000
+20.000 60.000 42.000
+20.000 70.000 42.000
+10.000 70.000 42.000
+10.000 60.000 52.000
+20.000 60.000 52.000
+20.000 70.000 52.000
+10.000 70.000 52.000
+20.000 60.000 42.000
+30.000 60.000 42.000
+30.000 70.000 42.000
+20.000 70.000 42.000
+20.000 60.000 52.000
+30.000 60.000 52.000
+30.000 70.000 52.000
+20.000 70.000 52.000
+30.000 60.000 42.000
+40.000 60.000 42.000
+40.000 70.000 42.000
+30.000 70.000 42.000
+30.000 60.000 52.000
+40.000 60.000 52.000
+40.000 70.000 52.000
+30.000 70.000 52.000
+40.000 60.000 42.000
+50.000 60.000 42.000
+50.000 70.000 42.000
+40.000 70.000 42.000
+40.000 60.000 52.000
+50.000 60.000 52.000
+50.000 70.000 52.000
+40.000 70.000 52.000
+50.000 60.000 42.000
+60.000 60.000 42.000
+60.000 70.000 42.000
+50.000 70.000 42.000
+50.000 60.000 52.000
+60.000 60.000 52.000
+60.000 70.000 52.000
+50.000 70.000 52.000
+60.000 60.000 42.000
+70.000 60.000 42.000
+70.000 70.000 42.000
+60.000 70.000 42.000
+60.000 60.000 52.000
+70.000 60.000 52.000
+70.000 70.000 52.000
+60.000 70.000 52.000
+70.000 60.000 42.000
+80.000 60.000 42.000
+80.000 70.000 42.000
+70.000 70.000 42.000
+70.000 60.000 52.000
+80.000 60.000 52.000
+80.000 70.000 52.000
+70.000 70.000 52.000
+80.000 60.000 42.000
+90.000 60.000 42.000
+90.000 70.000 42.000
+80.000 70.000 42.000
+80.000 60.000 52.000
+90.000 60.000 52.000
+90.000 70.000 52.000
+80.000 70.000 52.000
+90.000 60.000 42.000
+100.000 60.000 42.000
+100.000 70.000 42.000
+90.000 70.000 42.000
+90.000 60.000 52.000
+100.000 60.000 52.000
+100.000 70.000 52.000
+90.000 70.000 52.000
+100.000 60.000 42.000
+110.000 60.000 42.000
+110.000 70.000 42.000
+100.000 70.000 42.000
+100.000 60.000 52.000
+110.000 60.000 52.000
+110.000 70.000 52.000
+100.000 70.000 52.000
+110.000 60.000 42.000
+120.000 60.000 42.000
+120.000 70.000 42.000
+110.000 70.000 42.000
+110.000 60.000 52.000
+120.000 60.000 52.000
+120.000 70.000 52.000
+110.000 70.000 52.000
+0.000 50.000 43.000
+10.000 50.000 43.000
+10.000 60.000 43.000
+0.000 60.000 43.000
+0.000 50.000 53.000
+10.000 50.000 53.000
+10.000 60.000 53.000
+0.000 60.000 53.000
+10.000 50.000 43.000
+20.000 50.000 43.000
+20.000 60.000 43.000
+10.000 60.000 43.000
+10.000 50.000 53.000
+20.000 50.000 53.000
+20.000 60.000 53.000
+10.000 60.000 53.000
+20.000 50.000 43.000
+30.000 50.000 43.000
+30.000 60.000 43.000
+20.000 60.000 43.000
+20.000 50.000 53.000
+30.000 50.000 53.000
+30.000 60.000 53.000
+20.000 60.000 53.000
+30.000 50.000 43.000
+40.000 50.000 43.000
+40.000 60.000 43.000
+30.000 60.000 43.000
+30.000 50.000 53.000
+40.000 50.000 53.000
+40.000 60.000 53.000
+30.000 60.000 53.000
+40.000 50.000 43.000
+50.000 50.000 43.000
+50.000 60.000 43.000
+40.000 60.000 43.000
+40.000 50.000 53.000
+50.000 50.000 53.000
+50.000 60.000 53.000
+40.000 60.000 53.000
+50.000 50.000 43.000
+60.000 50.000 43.000
+60.000 60.000 43.000
+50.000 60.000 43.000
+50.000 50.000 53.000
+60.000 50.000 53.000
+60.000 60.000 53.000
+50.000 60.000 53.000
+60.000 50.000 43.000
+70.000 50.000 43.000
+70.000 60.000 43.000
+60.000 60.000 43.000
+60.000 50.000 53.000
+70.000 50.000 53.000
+70.000 60.000 53.000
+60.000 60.000 53.000
+70.000 50.000 43.000
+80.000 50.000 43.000
+80.000 60.000 43.000
+70.000 60.000 43.000
+70.000 50.000 53.000
+80.000 50.000 53.000
+80.000 60.000 53.000
+70.000 60.000 53.000
+80.000 50.000 43.000
+90.000 50.000 43.000
+90.000 60.000 43.000
+80.000 60.000 43.000
+80.000 50.000 53.000
+90.000 50.000 53.000
+90.000 60.000 53.000
+80.000 60.000 53.000
+90.000 50.000 43.000
+100.000 50.000 43.000
+100.000 60.000 43.000
+90.000 60.000 43.000
+90.000 50.000 53.000
+100.000 50.000 53.000
+100.000 60.000 53.000
+90.000 60.000 53.000
+100.000 50.000 43.000
+110.000 50.000 43.000
+110.000 60.000 43.000
+100.000 60.000 43.000
+100.000 50.000 53.000
+110.000 50.000 53.000
+110.000 60.000 53.000
+100.000 60.000 53.000
+110.000 50.000 43.000
+120.000 50.000 43.000
+120.000 60.000 43.000
+110.000 60.000 43.000
+110.000 50.000 53.000
+120.000 50.000 53.000
+120.000 60.000 53.000
+110.000 60.000 53.000
+0.000 40.000 44.000
+10.000 40.000 44.000
+10.000 50.000 44.000
+0.000 50.000 44.000
+0.000 40.000 54.000
+10.000 40.000 54.000
+10.000 50.000 54.000
+0.000 50.000 54.000
+10.000 40.000 44.000
+20.000 40.000 44.000
+20.000 50.000 44.000
+10.000 50.000 44.000
+10.000 40.000 54.000
+20.000 40.000 54.000
+20.000 50.000 54.000
+10.000 50.000 54.000
+20.000 40.000 44.000
+30.000 40.000 44.000
+30.000 50.000 44.000
+20.000 50.000 44.000
+20.000 40.000 54.000
+30.000 40.000 54.000
+30.000 50.000 54.000
+20.000 50.000 54.000
+30.000 40.000 44.000
+40.000 40.000 44.000
+40.000 50.000 44.000
+30.000 50.000 44.000
+30.000 40.000 54.000
+40.000 40.000 54.000
+40.000 50.000 54.000
+30.000 50.000 54.000
+40.000 40.000 44.000
+50.000 40.000 44.000
+50.000 50.000 44.000
+40.000 50.000 44.000
+40.000 40.000 54.000
+50.000 40.000 54.000
+50.000 50.000 54.000
+40.000 50.000 54.000
+50.000 40.000 44.000
+60.000 40.000 44.000
+60.000 50.000 44.000
+50.000 50.000 44.000
+50.000 40.000 54.000
+60.000 40.000 54.000
+60.000 50.000 54.000
+50.000 50.000 54.000
+60.000 40.000 44.000
+70.000 40.000 44.000
+70.000 50.000 44.000
+60.000 50.000 44.000
+60.000 40.000 54.000
+70.000 40.000 54.000
+70.000 50.000 54.000
+60.000 50.000 54.000
+70.000 40.000 44.000
+80.000 40.000 44.000
+80.000 50.000 44.000
+70.000 50.000 44.000
+70.000 40.000 54.000
+80.000 40.000 54.000
+80.000 50.000 54.000
+70.000 50.000 54.000
+80.000 40.000 44.000
+90.000 40.000 44.000
+90.000 50.000 44.000
+80.000 50.000 44.000
+80.000 40.000 54.000
+90.000 40.000 54.000
+90.000 50.000 54.000
+80.000 50.000 54.000
+90.000 40.000 44.000
+100.000 40.000 44.000
+100.000 50.000 44.000
+90.000 50.000 44.000
+90.000 40.000 54.000
+100.000 40.000 54.000
+100.000 50.000 54.000
+90.000 50.000 54.000
+100.000 40.000 44.000
+110.000 40.000 44.000
+110.000 50.000 44.000
+100.000 50.000 44.000
+100.000 40.000 54.000
+110.000 40.000 54.000
+110.000 50.000 54.000
+100.000 50.000 54.000
+110.000 40.000 44.000
+120.000 40.000 44.000
+120.000 50.000 44.000
+110.000 50.000 44.000
+110.000 40.000 54.000
+120.000 40.000 54.000
+120.000 50.000 54.000
+110.000 50.000 54.000
+0.000 30.000 45.000
+10.000 30.000 45.000
+10.000 40.000 45.000
+0.000 40.000 45.000
+0.000 30.000 55.000
+10.000 30.000 55.000
+10.000 40.000 55.000
+0.000 40.000 55.000
+10.000 30.000 45.000
+20.000 30.000 45.000
+20.000 40.000 45.000
+10.000 40.000 45.000
+10.000 30.000 55.000
+20.000 30.000 55.000
+20.000 40.000 55.000
+10.000 40.000 55.000
+20.000 30.000 45.000
+30.000 30.000 45.000
+30.000 40.000 45.000
+20.000 40.000 45.000
+20.000 30.000 55.000
+30.000 30.000 55.000
+30.000 40.000 55.000
+20.000 40.000 55.000
+30.000 30.000 45.000
+40.000 30.000 45.000
+40.000 40.000 45.000
+30.000 40.000 45.000
+30.000 30.000 55.000
+40.000 30.000 55.000
+40.000 40.000 55.000
+30.000 40.000 55.000
+40.000 30.000 45.000
+50.000 30.000 45.000
+50.000 40.000 45.000
+40.000 40.000 45.000
+40.000 30.000 55.000
+50.000 30.000 55.000
+50.000 40.000 55.000
+40.000 40.000 55.000
+50.000 30.000 45.000
+60.000 30.000 45.000
+60.000 40.000 45.000
+50.000 40.000 45.000
+50.000 30.000 55.000
+60.000 30.000 55.000
+60.000 40.000 55.000
+50.000 40.000 55.000
+60.000 30.000 45.000
+70.000 30.000 45.000
+70.000 40.000 45.000
+60.000 40.000 45.000
+60.000 30.000 55.000
+70.000 30.000 55.000
+70.000 40.000 55.000
+60.000 40.000 55.000
+70.000 30.000 45.000
+80.000 30.000 45.000
+80.000 40.000 45.000
+70.000 40.000 45.000
+70.000 30.000 55.000
+80.000 30.000 55.000
+80.000 40.000 55.000
+70.000 40.000 55.000
+80.000 30.000 45.000
+90.000 30.000 45.000
+90.000 40.000 45.000
+80.000 40.000 45.000
+80.000 30.000 55.000
+90.000 30.000 55.000
+90.000 40.000 55.000
+80.000 40.000 55.000
+90.000 30.000 45.000
+100.000 30.000 45.000
+100.000 40.000 45.000
+90.000 40.000 45.000
+90.000 30.000 55.000
+100.000 30.000 55.000
+100.000 40.000 55.000
+90.000 40.000 55.000
+100.000 30.000 45.000
+110.000 30.000 45.000
+110.000 40.000 45.000
+100.000 40.000 45.000
+100.000 30.000 55.000
+110.000 30.000 55.000
+110.000 40.000 55.000
+100.000 40.000 55.000
+110.000 30.000 45.000
+120.000 30.000 45.000
+120.000 40.000 45.000
+110.000 40.000 45.000
+110.000 30.000 55.000
+120.000 30.000 55.000
+120.000 40.000 55.000
+110.000 40.000 55.000
+0.000 20.000 46.000
+10.000 20.000 46.000
+10.000 30.000 46.000
+0.000 30.000 46.000
+0.000 20.000 56.000
+10.000 20.000 56.000
+10.000 30.000 56.000
+0.000 30.000 56.000
+10.000 20.000 46.000
+20.000 20.000 46.000
+20.000 30.000 46.000
+10.000 30.000 46.000
+10.000 20.000 56.000
+20.000 20.000 56.000
+20.000 30.000 56.000
+10.000 30.000 56.000
+20.000 20.000 46.000
+30.000 20.000 46.000
+30.000 30.000 46.000
+20.000 30.000 46.000
+20.000 20.000 56.000
+30.000 20.000 56.000
+30.000 30.000 56.000
+20.000 30.000 56.000
+30.000 20.000 46.000
+40.000 20.000 46.000
+40.000 30.000 46.000
+30.000 30.000 46.000
+30.000 20.000 56.000
+40.000 20.000 56.000
+40.000 30.000 56.000
+30.000 30.000 56.000
+40.000 20.000 46.000
+50.000 20.000 46.000
+50.000 30.000 46.000
+40.000 30.000 46.000
+40.000 20.000 56.000
+50.000 20.000 56.000
+50.000 30.000 56.000
+40.000 30.000 56.000
+50.000 20.000 46.000
+60.000 20.000 46.000
+60.000 30.000 46.000
+50.000 30.000 46.000
+50.000 20.000 56.000
+60.000 20.000 56.000
+60.000 30.000 56.000
+50.000 30.000 56.000
+60.000 20.000 46.000
+70.000 20.000 46.000
+70.000 30.000 46.000
+60.000 30.000 46.000
+60.000 20.000 56.000
+70.000 20.000 56.000
+70.000 30.000 56.000
+60.000 30.000 56.000
+70.000 20.000 46.000
+80.000 20.000 46.000
+80.000 30.000 46.000
+70.000 30.000 46.000
+70.000 20.000 56.000
+80.000 20.000 56.000
+80.000 30.000 56.000
+70.000 30.000 56.000
+80.000 20.000 46.000
+90.000 20.000 46.000
+90.000 30.000 46.000
+80.000 30.000 46.000
+80.000 20.000 56.000
+90.000 20.000 56.000
+90.000 30.000 56.000
+80.000 30.000 56.000
+90.000 20.000 46.000
+100.000 20.000 46.000
+100.000 30.000 46.000
+90.000 30.000 46.000
+90.000 20.000 56.000
+100.000 20.000 56.000
+100.000 30.000 56.000
+90.000 30.000 56.000
+100.000 20.000 46.000
+110.000 20.000 46.000
+110.000 30.000 46.000
+100.000 30.000 46.000
+100.000 20.000 56.000
+110.000 20.000 56.000
+110.000 30.000 56.000
+100.000 30.000 56.000
+110.000 20.000 46.000
+120.000 20.000 46.000
+120.000 30.000 46.000
+110.000 30.000 46.000
+110.000 20.000 56.000
+120.000 20.000 56.000
+120.000 30.000 56.000
+110.000 30.000 56.000
+0.000 10.000 47.000
+10.000 10.000 47.000
+10.000 20.000 47.000
+0.000 20.000 47.000
+0.000 10.000 57.000
+10.000 10.000 57.000
+10.000 20.000 57.000
+0.000 20.000 57.000
+10.000 10.000 47.000
+20.000 10.000 47.000
+20.000 20.000 47.000
+10.000 20.000 47.000
+10.000 10.000 57.000
+20.000 10.000 57.000
+20.000 20.000 57.000
+10.000 20.000 57.000
+20.000 10.000 47.000
+30.000 10.000 47.000
+30.000 20.000 47.000
+20.000 20.000 47.000
+20.000 10.000 57.000
+30.000 10.000 57.000
+30.000 20.000 57.000
+20.000 20.000 57.000
+30.000 10.000 47.000
+40.000 10.000 47.000
+40.000 20.000 47.000
+30.000 20.000 47.000
+30.000 10.000 57.000
+40.000 10.000 57.000
+40.000 20.000 57.000
+30.000 20.000 57.000
+40.000 10.000 47.000
+50.000 10.000 47.000
+50.000 20.000 47.000
+40.000 20.000 47.000
+40.000 10.000 57.000
+50.000 10.000 57.000
+50.000 20.000 57.000
+40.000 20.000 57.000
+50.000 10.000 47.000
+60.000 10.000 47.000
+60.000 20.000 47.000
+50.000 20.000 47.000
+50.000 10.000 57.000
+60.000 10.000 57.000
+60.000 20.000 57.000
+50.000 20.000 57.000
+60.000 10.000 47.000
+70.000 10.000 47.000
+70.000 20.000 47.000
+60.000 20.000 47.000
+60.000 10.000 57.000
+70.000 10.000 57.000
+70.000 20.000 57.000
+60.000 20.000 57.000
+70.000 10.000 47.000
+80.000 10.000 47.000
+80.000 20.000 47.000
+70.000 20.000 47.000
+70.000 10.000 57.000
+80.000 10.000 57.000
+80.000 20.000 57.000
+70.000 20.000 57.000
+80.000 10.000 47.000
+90.000 10.000 47.000
+90.000 20.000 47.000
+80.000 20.000 47.000
+80.000 10.000 57.000
+90.000 10.000 57.000
+90.000 20.000 57.000
+80.000 20.000 57.000
+90.000 10.000 47.000
+100.000 10.000 47.000
+100.000 20.000 47.000
+90.000 20.000 47.000
+90.000 10.000 57.000
+100.000 10.000 57.000
+100.000 20.000 57.000
+90.000 20.000 57.000
+100.000 10.000 47.000
+110.000 10.000 47.000
+110.000 20.000 47.000
+100.000 20.000 47.000
+100.000 10.000 57.000
+110.000 10.000 57.000
+110.000 20.000 57.000
+100.000 20.000 57.000
+110.000 10.000 47.000
+120.000 10.000 47.000
+120.000 20.000 47.000
+110.000 20.000 47.000
+110.000 10.000 57.000
+120.000 10.000 57.000
+120.000 20.000 57.000
+110.000 20.000 57.000
+0.000 0.000 48.000
+10.000 0.000 48.000
+10.000 10.000 48.000
+0.000 10.000 48.000
+0.000 0.000 58.000
+10.000 0.000 58.000
+10.000 10.000 58.000
+0.000 10.000 58.000
+10.000 0.000 48.000
+20.000 0.000 48.000
+20.000 10.000 48.000
+10.000 10.000 48.000
+10.000 0.000 58.000
+20.000 0.000 58.000
+20.000 10.000 58.000
+10.000 10.000 58.000
+20.000 0.000 48.000
+30.000 0.000 48.000
+30.000 10.000 48.000
+20.000 10.000 48.000
+20.000 0.000 58.000
+30.000 0.000 58.000
+30.000 10.000 58.000
+20.000 10.000 58.000
+30.000 0.000 48.000
+40.000 0.000 48.000
+40.000 10.000 48.000
+30.000 10.000 48.000
+30.000 0.000 58.000
+40.000 0.000 58.000
+40.000 10.000 58.000
+30.000 10.000 58.000
+40.000 0.000 48.000
+50.000 0.000 48.000
+50.000 10.000 48.000
+40.000 10.000 48.000
+40.000 0.000 58.000
+50.000 0.000 58.000
+50.000 10.000 58.000
+40.000 10.000 58.000
+50.000 0.000 48.000
+60.000 0.000 48.000
+60.000 10.000 48.000
+50.000 10.000 48.000
+50.000 0.000 58.000
+60.000 0.000 58.000
+60.000 10.000 58.000
+50.000 10.000 58.000
+60.000 0.000 48.000
+70.000 0.000 48.000
+70.000 10.000 48.000
+60.000 10.000 48.000
+60.000 0.000 58.000
+70.000 0.000 58.000
+70.000 10.000 58.000
+60.000 10.000 58.000
+70.000 0.000 48.000
+80.000 0.000 48.000
+80.000 10.000 48.000
+70.000 10.000 48.000
+70.000 0.000 58.000
+80.000 0.000 58.000
+80.000 10.000 58.000
+70.000 10.000 58.000
+80.000 0.000 48.000
+90.000 0.000 48.000
+90.000 10.000 48.000
+80.000 10.000 48.000
+80.000 0.000 58.000
+90.000 0.000 58.000
+90.000 10.000 58.000
+80.000 10.000 58.000
+90.000 0.000 48.000
+100.000 0.000 48.000
+100.000 10.000 48.000
+90.000 10.000 48.000
+90.000 0.000 58.000
+100.000 0.000 58.000
+100.000 10.000 58.000
+90.000 10.000 58.000
+100.000 0.000 48.000
+110.000 0.000 48.000
+110.000 10.000 48.000
+100.000 10.000 48.000
+100.000 0.000 58.000
+110.000 0.000 58.000
+110.000 10.000 58.000
+100.000 10.000 58.000
+110.000 0.000 48.000
+120.000 0.000 48.000
+120.000 10.000 48.000
+110.000 10.000 48.000
+110.000 0.000 58.000
+120.000 0.000 58.000
+120.000 10.000 58.000
+110.000 10.000 58.000
+CELLS 480 4320
+8 0 1 3 2 4 5 7 6
+8 8 9 11 10 12 13 15 14
+8 16 17 19 18 20 21 23 22
+8 24 25 27 26 28 29 31 30
+8 32 33 35 34 36 37 39 38
+8 40 41 43 42 44 45 47 46
+8 48 49 51 50 52 53 55 54
+8 56 57 59 58 60 61 63 62
+8 64 65 67 66 68 69 71 70
+8 72 73 75 74 76 77 79 78
+8 80 81 83 82 84 85 87 86
+8 88 89 91 90 92 93 95 94
+8 96 97 99 98 100 101 103 102
+8 104 105 107 106 108 109 111 110
+8 112 113 115 114 116 117 119 118
+8 120 121 123 122 124 125 127 126
+8 128 129 131 130 132 133 135 134
+8 136 137 139 138 140 141 143 142
+8 144 145 147 146 148 149 151 150
+8 152 153 155 154 156 157 159 158
+8 160 161 163 162 164 165 167 166
+8 168 169 171 170 172 173 175 174
+8 176 177 179 178 180 181 183 182
+8 184 185 187 186 188 189 191 190
+8 192 193 195 194 196 197 199 198
+8 200 201 203 202 204 205 207 206
+8 208 209 211 210 212 213 215 214
+8 216 217 219 218 220 221 223 222
+8 224 225 227 226 228 229 231 230
+8 232 233 235 234 236 237 239 238
+8 240 241 243 242 244 245 247 246
+8 248 249 251 250 252 253 255 254
+8 256 257 259 258 260 261 263 262
+8 264 265 267 266 268 269 271 270
+8 272 273 275 274 276 277 279 278
+8 280 281 283 282 284 285 287 286
+8 288 289 291 290 292 293 295 294
+8 296 297 299 298 300 301 303 302
+8 304 305 307 306 308 309 311 310
+8 312 313 315 314 316 317 319 318
+8 320 321 323 322 324 325 327 326
+8 328 329 331 330 332 333 335 334
+8 336 337 339 338 340 341 343 342
+8 344 345 347 346 348 349 351 350
+8 352 353 355 354 356 357 359 358
+8 360 361 363 362 364 365 367 366
+8 368 369 371 370 372 373 375 374
+8 376 377 379 378 380 381 383 382
+8 384 385 387 386 388 389 391 390
+8 392 393 395 394 396 397 399 398
+8 400 401 403 402 404 405 407 406
+8 408 409 411 410 412 413 415 414
+8 416 417 419 418 420 421 423 422
+8 424 425 427 426 428 429 431 430
+8 432 433 435 434 436 437 439 438
+8 440 441 443 442 444 445 447 446
+8 448 449 451 450 452 453 455 454
+8 456 457 459 458 460 461 463 462
+8 464 465 467 466 468 469 471 470
+8 472 473 475 474 476 477 479 478
+8 480 481 483 482 484 485 487 486
+8 488 489 491 490 492 493 495 494
+8 496 497 499 498 500 501 503 502
+8 504 505 507 506 508 509 511 510
+8 512 513 515 514 516 517 519 518
+8 520 521 523 522 524 525 527 526
+8 528 529 531 530 532 533 535 534
+8 536 537 539 538 540 541 543 542
+8 544 545 547 546 548 549 551 550
+8 552 553 555 554 556 557 559 558
+8 560 561 563 562 564 565 567 566
+8 568 569 571 570 572 573 575 574
+8 576 577 579 578 580 581 583 582
+8 584 585 587 586 588 589 591 590
+8 592 593 595 594 596 597 599 598
+8 600 601 603 602 604 605 607 606
+8 608 609 611 610 612 613 615 614
+8 616 617 619 618 620 621 623 622
+8 624 625 627 626 628 629 631 630
+8 632 633 635 634 636 637 639 638
+8 640 641 643 642 644 645 647 646
+8 648 649 651 650 652 653 655 654
+8 656 657 659 658 660 661 663 662
+8 664 665 667 666 668 669 671 670
+8 672 673 675 674 676 677 679 678
+8 680 681 683 682 684 685 687 686
+8 688 689 691 690 692 693 695 694
+8 696 697 699 698 700 701 703 702
+8 704 705 707 706 708 709 711 710
+8 712 713 715 714 716 717 719 718
+8 720 721 723 722 724 725 727 726
+8 728 729 731 730 732 733 735 734
+8 736 737 739 738 740 741 743 742
+8 744 745 747 746 748 749 751 750
+8 752 753 755 754 756 757 759 758
+8 760 761 763 762 764 765 767 766
+8 768 769 771 770 772 773 775 774
+8 776 777 779 778 780 781 783 782
+8 784 785 787 786 788 789 791 790
+8 792 793 795 794 796 797 799 798
+8 800 801 803 802 804 805 807 806
+8 808 809 811 810 812 813 815 814
+8 816 817 819 818 820 821 823 822
+8 824 825 827 826 828 829 831 830
+8 832 833 835 834 836 837 839 838
+8 840 841 843 842 844 845 847 846
+8 848 849 851 850 852 853 855 854
+8 856 857 859 858 860 861 863 862
+8 864 865 867 866 868 869 871 870
+8 872 873 875 874 876 877 879 878
+8 880 881 883 882 884 885 887 886
+8 888 889 891 890 892 893 895 894
+8 896 897 899 898 900 901 903 902
+8 904 905 907 906 908 909 911 910
+8 912 913 915 914 916 917 919 918
+8 920 921 923 922 924 925 927 926
+8 928 929 931 930 932 933 935 934
+8 936 937 939 938 940 941 943 942
+8 944 945 947 946 948 949 951 950
+8 952 953 955 954 956 957 959 958
+8 960 961 963 962 964 965 967 966
+8 968 969 971 970 972 973 975 974
+8 976 977 979 978 980 981 983 982
+8 984 985 987 986 988 989 991 990
+8 992 993 995 994 996 997 999 998
+8 1000 1001 1003 1002 1004 1005 1007 1006
+8 1008 1009 1011 1010 1012 1013 1015 1014
+8 1016 1017 1019 1018 1020 1021 1023 1022
+8 1024 1025 1027 1026 1028 1029 1031 1030
+8 1032 1033 1035 1034 1036 1037 1039 1038
+8 1040 1041 1043 1042 1044 1045 1047 1046
+8 1048 1049 1051 1050 1052 1053 1055 1054
+8 1056 1057 1059 1058 1060 1061 1063 1062
+8 1064 1065 1067 1066 1068 1069 1071 1070
+8 1072 1073 1075 1074 1076 1077 1079 1078
+8 1080 1081 1083 1082 1084 1085 1087 1086
+8 1088 1089 1091 1090 1092 1093 1095 1094
+8 1096 1097 1099 1098 1100 1101 1103 1102
+8 1104 1105 1107 1106 1108 1109 1111 1110
+8 1112 1113 1115 1114 1116 1117 1119 1118
+8 1120 1121 1123 1122 1124 1125 1127 1126
+8 1128 1129 1131 1130 1132 1133 1135 1134
+8 1136 1137 1139 1138 1140 1141 1143 1142
+8 1144 1145 1147 1146 1148 1149 1151 1150
+8 1152 1153 1155 1154 1156 1157 1159 1158
+8 1160 1161 1163 1162 1164 1165 1167 1166
+8 1168 1169 1171 1170 1172 1173 1175 1174
+8 1176 1177 1179 1178 1180 1181 1183 1182
+8 1184 1185 1187 1186 1188 1189 1191 1190
+8 1192 1193 1195 1194 1196 1197 1199 1198
+8 1200 1201 1203 1202 1204 1205 1207 1206
+8 1208 1209 1211 1210 1212 1213 1215 1214
+8 1216 1217 1219 1218 1220 1221 1223 1222
+8 1224 1225 1227 1226 1228 1229 1231 1230
+8 1232 1233 1235 1234 1236 1237 1239 1238
+8 1240 1241 1243 1242 1244 1245 1247 1246
+8 1248 1249 1251 1250 1252 1253 1255 1254
+8 1256 1257 1259 1258 1260 1261 1263 1262
+8 1264 1265 1267 1266 1268 1269 1271 1270
+8 1272 1273 1275 1274 1276 1277 1279 1278
+8 1280 1281 1283 1282 1284 1285 1287 1286
+8 1288 1289 1291 1290 1292 1293 1295 1294
+8 1296 1297 1299 1298 1300 1301 1303 1302
+8 1304 1305 1307 1306 1308 1309 1311 1310
+8 1312 1313 1315 1314 1316 1317 1319 1318
+8 1320 1321 1323 1322 1324 1325 1327 1326
+8 1328 1329 1331 1330 1332 1333 1335 1334
+8 1336 1337 1339 1338 1340 1341 1343 1342
+8 1344 1345 1347 1346 1348 1349 1351 1350
+8 1352 1353 1355 1354 1356 1357 1359 1358
+8 1360 1361 1363 1362 1364 1365 1367 1366
+8 1368 1369 1371 1370 1372 1373 1375 1374
+8 1376 1377 1379 1378 1380 1381 1383 1382
+8 1384 1385 1387 1386 1388 1389 1391 1390
+8 1392 1393 1395 1394 1396 1397 1399 1398
+8 1400 1401 1403 1402 1404 1405 1407 1406
+8 1408 1409 1411 1410 1412 1413 1415 1414
+8 1416 1417 1419 1418 1420 1421 1423 1422
+8 1424 1425 1427 1426 1428 1429 1431 1430
+8 1432 1433 1435 1434 1436 1437 1439 1438
+8 1440 1441 1443 1442 1444 1445 1447 1446
+8 1448 1449 1451 1450 1452 1453 1455 1454
+8 1456 1457 1459 1458 1460 1461 1463 1462
+8 1464 1465 1467 1466 1468 1469 1471 1470
+8 1472 1473 1475 1474 1476 1477 1479 1478
+8 1480 1481 1483 1482 1484 1485 1487 1486
+8 1488 1489 1491 1490 1492 1493 1495 1494
+8 1496 1497 1499 1498 1500 1501 1503 1502
+8 1504 1505 1507 1506 1508 1509 1511 1510
+8 1512 1513 1515 1514 1516 1517 1519 1518
+8 1520 1521 1523 1522 1524 1525 1527 1526
+8 1528 1529 1531 1530 1532 1533 1535 1534
+8 1536 1537 1539 1538 1540 1541 1543 1542
+8 1544 1545 1547 1546 1548 1549 1551 1550
+8 1552 1553 1555 1554 1556 1557 1559 1558
+8 1560 1561 1563 1562 1564 1565 1567 1566
+8 1568 1569 1571 1570 1572 1573 1575 1574
+8 1576 1577 1579 1578 1580 1581 1583 1582
+8 1584 1585 1587 1586 1588 1589 1591 1590
+8 1592 1593 1595 1594 1596 1597 1599 1598
+8 1600 1601 1603 1602 1604 1605 1607 1606
+8 1608 1609 1611 1610 1612 1613 1615 1614
+8 1616 1617 1619 1618 1620 1621 1623 1622
+8 1624 1625 1627 1626 1628 1629 1631 1630
+8 1632 1633 1635 1634 1636 1637 1639 1638
+8 1640 1641 1643 1642 1644 1645 1647 1646
+8 1648 1649 1651 1650 1652 1653 1655 1654
+8 1656 1657 1659 1658 1660 1661 1663 1662
+8 1664 1665 1667 1666 1668 1669 1671 1670
+8 1672 1673 1675 1674 1676 1677 1679 1678
+8 1680 1681 1683 1682 1684 1685 1687 1686
+8 1688 1689 1691 1690 1692 1693 1695 1694
+8 1696 1697 1699 1698 1700 1701 1703 1702
+8 1704 1705 1707 1706 1708 1709 1711 1710
+8 1712 1713 1715 1714 1716 1717 1719 1718
+8 1720 1721 1723 1722 1724 1725 1727 1726
+8 1728 1729 1731 1730 1732 1733 1735 1734
+8 1736 1737 1739 1738 1740 1741 1743 1742
+8 1744 1745 1747 1746 1748 1749 1751 1750
+8 1752 1753 1755 1754 1756 1757 1759 1758
+8 1760 1761 1763 1762 1764 1765 1767 1766
+8 1768 1769 1771 1770 1772 1773 1775 1774
+8 1776 1777 1779 1778 1780 1781 1783 1782
+8 1784 1785 1787 1786 1788 1789 1791 1790
+8 1792 1793 1795 1794 1796 1797 1799 1798
+8 1800 1801 1803 1802 1804 1805 1807 1806
+8 1808 1809 1811 1810 1812 1813 1815 1814
+8 1816 1817 1819 1818 1820 1821 1823 1822
+8 1824 1825 1827 1826 1828 1829 1831 1830
+8 1832 1833 1835 1834 1836 1837 1839 1838
+8 1840 1841 1843 1842 1844 1845 1847 1846
+8 1848 1849 1851 1850 1852 1853 1855 1854
+8 1856 1857 1859 1858 1860 1861 1863 1862
+8 1864 1865 1867 1866 1868 1869 1871 1870
+8 1872 1873 1875 1874 1876 1877 1879 1878
+8 1880 1881 1883 1882 1884 1885 1887 1886
+8 1888 1889 1891 1890 1892 1893 1895 1894
+8 1896 1897 1899 1898 1900 1901 1903 1902
+8 1904 1905 1907 1906 1908 1909 1911 1910
+8 1912 1913 1915 1914 1916 1917 1919 1918
+8 1920 1921 1923 1922 1924 1925 1927 1926
+8 1928 1929 1931 1930 1932 1933 1935 1934
+8 1936 1937 1939 1938 1940 1941 1943 1942
+8 1944 1945 1947 1946 1948 1949 1951 1950
+8 1952 1953 1955 1954 1956 1957 1959 1958
+8 1960 1961 1963 1962 1964 1965 1967 1966
+8 1968 1969 1971 1970 1972 1973 1975 1974
+8 1976 1977 1979 1978 1980 1981 1983 1982
+8 1984 1985 1987 1986 1988 1989 1991 1990
+8 1992 1993 1995 1994 1996 1997 1999 1998
+8 2000 2001 2003 2002 2004 2005 2007 2006
+8 2008 2009 2011 2010 2012 2013 2015 2014
+8 2016 2017 2019 2018 2020 2021 2023 2022
+8 2024 2025 2027 2026 2028 2029 2031 2030
+8 2032 2033 2035 2034 2036 2037 2039 2038
+8 2040 2041 2043 2042 2044 2045 2047 2046
+8 2048 2049 2051 2050 2052 2053 2055 2054
+8 2056 2057 2059 2058 2060 2061 2063 2062
+8 2064 2065 2067 2066 2068 2069 2071 2070
+8 2072 2073 2075 2074 2076 2077 2079 2078
+8 2080 2081 2083 2082 2084 2085 2087 2086
+8 2088 2089 2091 2090 2092 2093 2095 2094
+8 2096 2097 2099 2098 2100 2101 2103 2102
+8 2104 2105 2107 2106 2108 2109 2111 2110
+8 2112 2113 2115 2114 2116 2117 2119 2118
+8 2120 2121 2123 2122 2124 2125 2127 2126
+8 2128 2129 2131 2130 2132 2133 2135 2134
+8 2136 2137 2139 2138 2140 2141 2143 2142
+8 2144 2145 2147 2146 2148 2149 2151 2150
+8 2152 2153 2155 2154 2156 2157 2159 2158
+8 2160 2161 2163 2162 2164 2165 2167 2166
+8 2168 2169 2171 2170 2172 2173 2175 2174
+8 2176 2177 2179 2178 2180 2181 2183 2182
+8 2184 2185 2187 2186 2188 2189 2191 2190
+8 2192 2193 2195 2194 2196 2197 2199 2198
+8 2200 2201 2203 2202 2204 2205 2207 2206
+8 2208 2209 2211 2210 2212 2213 2215 2214
+8 2216 2217 2219 2218 2220 2221 2223 2222
+8 2224 2225 2227 2226 2228 2229 2231 2230
+8 2232 2233 2235 2234 2236 2237 2239 2238
+8 2240 2241 2243 2242 2244 2245 2247 2246
+8 2248 2249 2251 2250 2252 2253 2255 2254
+8 2256 2257 2259 2258 2260 2261 2263 2262
+8 2264 2265 2267 2266 2268 2269 2271 2270
+8 2272 2273 2275 2274 2276 2277 2279 2278
+8 2280 2281 2283 2282 2284 2285 2287 2286
+8 2288 2289 2291 2290 2292 2293 2295 2294
+8 2296 2297 2299 2298 2300 2301 2303 2302
+8 2304 2305 2307 2306 2308 2309 2311 2310
+8 2312 2313 2315 2314 2316 2317 2319 2318
+8 2320 2321 2323 2322 2324 2325 2327 2326
+8 2328 2329 2331 2330 2332 2333 2335 2334
+8 2336 2337 2339 2338 2340 2341 2343 2342
+8 2344 2345 2347 2346 2348 2349 2351 2350
+8 2352 2353 2355 2354 2356 2357 2359 2358
+8 2360 2361 2363 2362 2364 2365 2367 2366
+8 2368 2369 2371 2370 2372 2373 2375 2374
+8 2376 2377 2379 2378 2380 2381 2383 2382
+8 2384 2385 2387 2386 2388 2389 2391 2390
+8 2392 2393 2395 2394 2396 2397 2399 2398
+8 2400 2401 2403 2402 2404 2405 2407 2406
+8 2408 2409 2411 2410 2412 2413 2415 2414
+8 2416 2417 2419 2418 2420 2421 2423 2422
+8 2424 2425 2427 2426 2428 2429 2431 2430
+8 2432 2433 2435 2434 2436 2437 2439 2438
+8 2440 2441 2443 2442 2444 2445 2447 2446
+8 2448 2449 2451 2450 2452 2453 2455 2454
+8 2456 2457 2459 2458 2460 2461 2463 2462
+8 2464 2465 2467 2466 2468 2469 2471 2470
+8 2472 2473 2475 2474 2476 2477 2479 2478
+8 2480 2481 2483 2482 2484 2485 2487 2486
+8 2488 2489 2491 2490 2492 2493 2495 2494
+8 2496 2497 2499 2498 2500 2501 2503 2502
+8 2504 2505 2507 2506 2508 2509 2511 2510
+8 2512 2513 2515 2514 2516 2517 2519 2518
+8 2520 2521 2523 2522 2524 2525 2527 2526
+8 2528 2529 2531 2530 2532 2533 2535 2534
+8 2536 2537 2539 2538 2540 2541 2543 2542
+8 2544 2545 2547 2546 2548 2549 2551 2550
+8 2552 2553 2555 2554 2556 2557 2559 2558
+8 2560 2561 2563 2562 2564 2565 2567 2566
+8 2568 2569 2571 2570 2572 2573 2575 2574
+8 2576 2577 2579 2578 2580 2581 2583 2582
+8 2584 2585 2587 2586 2588 2589 2591 2590
+8 2592 2593 2595 2594 2596 2597 2599 2598
+8 2600 2601 2603 2602 2604 2605 2607 2606
+8 2608 2609 2611 2610 2612 2613 2615 2614
+8 2616 2617 2619 2618 2620 2621 2623 2622
+8 2624 2625 2627 2626 2628 2629 2631 2630
+8 2632 2633 2635 2634 2636 2637 2639 2638
+8 2640 2641 2643 2642 2644 2645 2647 2646
+8 2648 2649 2651 2650 2652 2653 2655 2654
+8 2656 2657 2659 2658 2660 2661 2663 2662
+8 2664 2665 2667 2666 2668 2669 2671 2670
+8 2672 2673 2675 2674 2676 2677 2679 2678
+8 2680 2681 2683 2682 2684 2685 2687 2686
+8 2688 2689 2691 2690 2692 2693 2695 2694
+8 2696 2697 2699 2698 2700 2701 2703 2702
+8 2704 2705 2707 2706 2708 2709 2711 2710
+8 2712 2713 2715 2714 2716 2717 2719 2718
+8 2720 2721 2723 2722 2724 2725 2727 2726
+8 2728 2729 2731 2730 2732 2733 2735 2734
+8 2736 2737 2739 2738 2740 2741 2743 2742
+8 2744 2745 2747 2746 2748 2749 2751 2750
+8 2752 2753 2755 2754 2756 2757 2759 2758
+8 2760 2761 2763 2762 2764 2765 2767 2766
+8 2768 2769 2771 2770 2772 2773 2775 2774
+8 2776 2777 2779 2778 2780 2781 2783 2782
+8 2784 2785 2787 2786 2788 2789 2791 2790
+8 2792 2793 2795 2794 2796 2797 2799 2798
+8 2800 2801 2803 2802 2804 2805 2807 2806
+8 2808 2809 2811 2810 2812 2813 2815 2814
+8 2816 2817 2819 2818 2820 2821 2823 2822
+8 2824 2825 2827 2826 2828 2829 2831 2830
+8 2832 2833 2835 2834 2836 2837 2839 2838
+8 2840 2841 2843 2842 2844 2845 2847 2846
+8 2848 2849 2851 2850 2852 2853 2855 2854
+8 2856 2857 2859 2858 2860 2861 2863 2862
+8 2864 2865 2867 2866 2868 2869 2871 2870
+8 2872 2873 2875 2874 2876 2877 2879 2878
+8 2880 2881 2883 2882 2884 2885 2887 2886
+8 2888 2889 2891 2890 2892 2893 2895 2894
+8 2896 2897 2899 2898 2900 2901 2903 2902
+8 2904 2905 2907 2906 2908 2909 2911 2910
+8 2912 2913 2915 2914 2916 2917 2919 2918
+8 2920 2921 2923 2922 2924 2925 2927 2926
+8 2928 2929 2931 2930 2932 2933 2935 2934
+8 2936 2937 2939 2938 2940 2941 2943 2942
+8 2944 2945 2947 2946 2948 2949 2951 2950
+8 2952 2953 2955 2954 2956 2957 2959 2958
+8 2960 2961 2963 2962 2964 2965 2967 2966
+8 2968 2969 2971 2970 2972 2973 2975 2974
+8 2976 2977 2979 2978 2980 2981 2983 2982
+8 2984 2985 2987 2986 2988 2989 2991 2990
+8 2992 2993 2995 2994 2996 2997 2999 2998
+8 3000 3001 3003 3002 3004 3005 3007 3006
+8 3008 3009 3011 3010 3012 3013 3015 3014
+8 3016 3017 3019 3018 3020 3021 3023 3022
+8 3024 3025 3027 3026 3028 3029 3031 3030
+8 3032 3033 3035 3034 3036 3037 3039 3038
+8 3040 3041 3043 3042 3044 3045 3047 3046
+8 3048 3049 3051 3050 3052 3053 3055 3054
+8 3056 3057 3059 3058 3060 3061 3063 3062
+8 3064 3065 3067 3066 3068 3069 3071 3070
+8 3072 3073 3075 3074 3076 3077 3079 3078
+8 3080 3081 3083 3082 3084 3085 3087 3086
+8 3088 3089 3091 3090 3092 3093 3095 3094
+8 3096 3097 3099 3098 3100 3101 3103 3102
+8 3104 3105 3107 3106 3108 3109 3111 3110
+8 3112 3113 3115 3114 3116 3117 3119 3118
+8 3120 3121 3123 3122 3124 3125 3127 3126
+8 3128 3129 3131 3130 3132 3133 3135 3134
+8 3136 3137 3139 3138 3140 3141 3143 3142
+8 3144 3145 3147 3146 3148 3149 3151 3150
+8 3152 3153 3155 3154 3156 3157 3159 3158
+8 3160 3161 3163 3162 3164 3165 3167 3166
+8 3168 3169 3171 3170 3172 3173 3175 3174
+8 3176 3177 3179 3178 3180 3181 3183 3182
+8 3184 3185 3187 3186 3188 3189 3191 3190
+8 3192 3193 3195 3194 3196 3197 3199 3198
+8 3200 3201 3203 3202 3204 3205 3207 3206
+8 3208 3209 3211 3210 3212 3213 3215 3214
+8 3216 3217 3219 3218 3220 3221 3223 3222
+8 3224 3225 3227 3226 3228 3229 3231 3230
+8 3232 3233 3235 3234 3236 3237 3239 3238
+8 3240 3241 3243 3242 3244 3245 3247 3246
+8 3248 3249 3251 3250 3252 3253 3255 3254
+8 3256 3257 3259 3258 3260 3261 3263 3262
+8 3264 3265 3267 3266 3268 3269 3271 3270
+8 3272 3273 3275 3274 3276 3277 3279 3278
+8 3280 3281 3283 3282 3284 3285 3287 3286
+8 3288 3289 3291 3290 3292 3293 3295 3294
+8 3296 3297 3299 3298 3300 3301 3303 3302
+8 3304 3305 3307 3306 3308 3309 3311 3310
+8 3312 3313 3315 3314 3316 3317 3319 3318
+8 3320 3321 3323 3322 3324 3325 3327 3326
+8 3328 3329 3331 3330 3332 3333 3335 3334
+8 3336 3337 3339 3338 3340 3341 3343 3342
+8 3344 3345 3347 3346 3348 3349 3351 3350
+8 3352 3353 3355 3354 3356 3357 3359 3358
+8 3360 3361 3363 3362 3364 3365 3367 3366
+8 3368 3369 3371 3370 3372 3373 3375 3374
+8 3376 3377 3379 3378 3380 3381 3383 3382
+8 3384 3385 3387 3386 3388 3389 3391 3390
+8 3392 3393 3395 3394 3396 3397 3399 3398
+8 3400 3401 3403 3402 3404 3405 3407 3406
+8 3408 3409 3411 3410 3412 3413 3415 3414
+8 3416 3417 3419 3418 3420 3421 3423 3422
+8 3424 3425 3427 3426 3428 3429 3431 3430
+8 3432 3433 3435 3434 3436 3437 3439 3438
+8 3440 3441 3443 3442 3444 3445 3447 3446
+8 3448 3449 3451 3450 3452 3453 3455 3454
+8 3456 3457 3459 3458 3460 3461 3463 3462
+8 3464 3465 3467 3466 3468 3469 3471 3470
+8 3472 3473 3475 3474 3476 3477 3479 3478
+8 3480 3481 3483 3482 3484 3485 3487 3486
+8 3488 3489 3491 3490 3492 3493 3495 3494
+8 3496 3497 3499 3498 3500 3501 3503 3502
+8 3504 3505 3507 3506 3508 3509 3511 3510
+8 3512 3513 3515 3514 3516 3517 3519 3518
+8 3520 3521 3523 3522 3524 3525 3527 3526
+8 3528 3529 3531 3530 3532 3533 3535 3534
+8 3536 3537 3539 3538 3540 3541 3543 3542
+8 3544 3545 3547 3546 3548 3549 3551 3550
+8 3552 3553 3555 3554 3556 3557 3559 3558
+8 3560 3561 3563 3562 3564 3565 3567 3566
+8 3568 3569 3571 3570 3572 3573 3575 3574
+8 3576 3577 3579 3578 3580 3581 3583 3582
+8 3584 3585 3587 3586 3588 3589 3591 3590
+8 3592 3593 3595 3594 3596 3597 3599 3598
+8 3600 3601 3603 3602 3604 3605 3607 3606
+8 3608 3609 3611 3610 3612 3613 3615 3614
+8 3616 3617 3619 3618 3620 3621 3623 3622
+8 3624 3625 3627 3626 3628 3629 3631 3630
+8 3632 3633 3635 3634 3636 3637 3639 3638
+8 3640 3641 3643 3642 3644 3645 3647 3646
+8 3648 3649 3651 3650 3652 3653 3655 3654
+8 3656 3657 3659 3658 3660 3661 3663 3662
+8 3664 3665 3667 3666 3668 3669 3671 3670
+8 3672 3673 3675 3674 3676 3677 3679 3678
+8 3680 3681 3683 3682 3684 3685 3687 3686
+8 3688 3689 3691 3690 3692 3693 3695 3694
+8 3696 3697 3699 3698 3700 3701 3703 3702
+8 3704 3705 3707 3706 3708 3709 3711 3710
+8 3712 3713 3715 3714 3716 3717 3719 3718
+8 3720 3721 3723 3722 3724 3725 3727 3726
+8 3728 3729 3731 3730 3732 3733 3735 3734
+8 3736 3737 3739 3738 3740 3741 3743 3742
+8 3744 3745 3747 3746 3748 3749 3751 3750
+8 3752 3753 3755 3754 3756 3757 3759 3758
+8 3760 3761 3763 3762 3764 3765 3767 3766
+8 3768 3769 3771 3770 3772 3773 3775 3774
+8 3776 3777 3779 3778 3780 3781 3783 3782
+8 3784 3785 3787 3786 3788 3789 3791 3790
+8 3792 3793 3795 3794 3796 3797 3799 3798
+8 3800 3801 3803 3802 3804 3805 3807 3806
+8 3808 3809 3811 3810 3812 3813 3815 3814
+8 3816 3817 3819 3818 3820 3821 3823 3822
+8 3824 3825 3827 3826 3828 3829 3831 3830
+8 3832 3833 3835 3834 3836 3837 3839 3838
+CELL_TYPES 480
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+11
+CELL_DATA 480
+SCALARS volume_null float 1
+LOOKUP_TABLE default
+10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 21.000 
+0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 
+8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 
+7.000 8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 
+6.000 7.000 8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 
+5.000 6.000 7.000 8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 
+0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 
+3.000 4.000 5.000 6.000 7.000 8.000 9.000 10.000 11.000 12.000 13.000 14.000 
+11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 21.000 22.000 
+0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 
+9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 
+8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 
+7.000 8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 
+6.000 7.000 8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 
+0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 
+4.000 5.000 6.000 7.000 8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 
+12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 21.000 22.000 23.000 
+0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 
+10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 21.000 
+9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 
+8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 
+7.000 8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 
+0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 
+5.000 6.000 7.000 8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 
+13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 21.000 22.000 23.000 24.000 
+0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 
+11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 21.000 22.000 
+10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 21.000 
+9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 
+8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 
+0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 
+6.000 7.000 8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 
+14.000 15.000 16.000 17.000 18.000 19.000 20.000 21.000 22.000 23.000 24.000 25.000 
+0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 
+12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 21.000 22.000 23.000 
+11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 21.000 22.000 
+10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 21.000 
+9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 
+0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 
+7.000 8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 

Added: grass/trunk/raster3d/r3.out.vtk/test_volume_null_1_cells_rgb_vect.ref
===================================================================
--- grass/trunk/raster3d/r3.out.vtk/test_volume_null_1_cells_rgb_vect.ref	                        (rev 0)
+++ grass/trunk/raster3d/r3.out.vtk/test_volume_null_1_cells_rgb_vect.ref	2011-06-16 09:58:31 UTC (rev 46720)
@@ -0,0 +1,1012 @@
+# vtk DataFile Version 3.0
+GRASS GIS 7 Export
+ASCII
+DATASET STRUCTURED_POINTS
+DIMENSIONS 13 9 6
+SPACING 10.000 10.000 10.000
+ORIGIN 0.000 0.000 0.000
+CELL_DATA 480
+SCALARS volume_null float 1
+LOOKUP_TABLE default
+3.000 4.000 5.000 6.000 7.000 8.000 9.000 10.000 11.000 12.000 13.000 14.000 
+-1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 
+5.000 6.000 7.000 8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 
+6.000 7.000 8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 
+7.000 8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 
+8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 
+-1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 
+10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 21.000 
+4.000 5.000 6.000 7.000 8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 
+-1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 
+6.000 7.000 8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 
+7.000 8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 
+8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 
+9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 
+-1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 
+11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 21.000 22.000 
+5.000 6.000 7.000 8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 
+-1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 
+7.000 8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 
+8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 
+9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 
+10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 21.000 
+-1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 
+12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 21.000 22.000 23.000 
+6.000 7.000 8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 
+-1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 
+8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 
+9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 
+10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 21.000 
+11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 21.000 22.000 
+-1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 
+13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 21.000 22.000 23.000 24.000 
+7.000 8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 
+-1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 
+9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 
+10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 21.000 
+11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 21.000 22.000 
+12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 21.000 22.000 23.000 
+-1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 
+14.000 15.000 16.000 17.000 18.000 19.000 20.000 21.000 22.000 23.000 24.000 25.000 
+COLOR_SCALARS RGB_Voxel 3
+0.059 0.059 0.059 
+0.078 0.078 0.078 
+0.098 0.098 0.098 
+0.118 0.118 0.118 
+0.137 0.137 0.137 
+0.157 0.157 0.157 
+0.176 0.176 0.176 
+0.196 0.196 0.196 
+0.216 0.216 0.216 
+0.235 0.235 0.235 
+0.255 0.255 0.255 
+0.275 0.275 0.275 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.098 0.098 0.098 
+0.118 0.118 0.118 
+0.137 0.137 0.137 
+0.157 0.157 0.157 
+0.176 0.176 0.176 
+0.196 0.196 0.196 
+0.216 0.216 0.216 
+0.235 0.235 0.235 
+0.255 0.255 0.255 
+0.275 0.275 0.275 
+0.294 0.294 0.294 
+0.314 0.314 0.314 
+0.118 0.118 0.118 
+0.137 0.137 0.137 
+0.157 0.157 0.157 
+0.176 0.176 0.176 
+0.196 0.196 0.196 
+0.216 0.216 0.216 
+0.235 0.235 0.235 
+0.255 0.255 0.255 
+0.275 0.275 0.275 
+0.294 0.294 0.294 
+0.314 0.314 0.314 
+0.333 0.333 0.333 
+0.137 0.137 0.137 
+0.157 0.157 0.157 
+0.176 0.176 0.176 
+0.196 0.196 0.196 
+0.216 0.216 0.216 
+0.235 0.235 0.235 
+0.255 0.255 0.255 
+0.275 0.275 0.275 
+0.294 0.294 0.294 
+0.314 0.314 0.314 
+0.333 0.333 0.333 
+0.353 0.353 0.353 
+0.157 0.157 0.157 
+0.176 0.176 0.176 
+0.196 0.196 0.196 
+0.216 0.216 0.216 
+0.235 0.235 0.235 
+0.255 0.255 0.255 
+0.275 0.275 0.275 
+0.294 0.294 0.294 
+0.314 0.314 0.314 
+0.333 0.333 0.333 
+0.353 0.353 0.353 
+0.373 0.373 0.373 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.196 0.196 0.196 
+0.216 0.216 0.216 
+0.235 0.235 0.235 
+0.255 0.255 0.255 
+0.275 0.275 0.275 
+0.294 0.294 0.294 
+0.314 0.314 0.314 
+0.333 0.333 0.333 
+0.353 0.353 0.353 
+0.373 0.373 0.373 
+0.392 0.392 0.392 
+0.412 0.412 0.412 
+0.078 0.078 0.078 
+0.098 0.098 0.098 
+0.118 0.118 0.118 
+0.137 0.137 0.137 
+0.157 0.157 0.157 
+0.176 0.176 0.176 
+0.196 0.196 0.196 
+0.216 0.216 0.216 
+0.235 0.235 0.235 
+0.255 0.255 0.255 
+0.275 0.275 0.275 
+0.294 0.294 0.294 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.118 0.118 0.118 
+0.137 0.137 0.137 
+0.157 0.157 0.157 
+0.176 0.176 0.176 
+0.196 0.196 0.196 
+0.216 0.216 0.216 
+0.235 0.235 0.235 
+0.255 0.255 0.255 
+0.275 0.275 0.275 
+0.294 0.294 0.294 
+0.314 0.314 0.314 
+0.333 0.333 0.333 
+0.137 0.137 0.137 
+0.157 0.157 0.157 
+0.176 0.176 0.176 
+0.196 0.196 0.196 
+0.216 0.216 0.216 
+0.235 0.235 0.235 
+0.255 0.255 0.255 
+0.275 0.275 0.275 
+0.294 0.294 0.294 
+0.314 0.314 0.314 
+0.333 0.333 0.333 
+0.353 0.353 0.353 
+0.157 0.157 0.157 
+0.176 0.176 0.176 
+0.196 0.196 0.196 
+0.216 0.216 0.216 
+0.235 0.235 0.235 
+0.255 0.255 0.255 
+0.275 0.275 0.275 
+0.294 0.294 0.294 
+0.314 0.314 0.314 
+0.333 0.333 0.333 
+0.353 0.353 0.353 
+0.373 0.373 0.373 
+0.176 0.176 0.176 
+0.196 0.196 0.196 
+0.216 0.216 0.216 
+0.235 0.235 0.235 
+0.255 0.255 0.255 
+0.275 0.275 0.275 
+0.294 0.294 0.294 
+0.314 0.314 0.314 
+0.333 0.333 0.333 
+0.353 0.353 0.353 
+0.373 0.373 0.373 
+0.392 0.392 0.392 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.216 0.216 0.216 
+0.235 0.235 0.235 
+0.255 0.255 0.255 
+0.275 0.275 0.275 
+0.294 0.294 0.294 
+0.314 0.314 0.314 
+0.333 0.333 0.333 
+0.353 0.353 0.353 
+0.373 0.373 0.373 
+0.392 0.392 0.392 
+0.412 0.412 0.412 
+0.431 0.431 0.431 
+0.098 0.098 0.098 
+0.118 0.118 0.118 
+0.137 0.137 0.137 
+0.157 0.157 0.157 
+0.176 0.176 0.176 
+0.196 0.196 0.196 
+0.216 0.216 0.216 
+0.235 0.235 0.235 
+0.255 0.255 0.255 
+0.275 0.275 0.275 
+0.294 0.294 0.294 
+0.314 0.314 0.314 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.137 0.137 0.137 
+0.157 0.157 0.157 
+0.176 0.176 0.176 
+0.196 0.196 0.196 
+0.216 0.216 0.216 
+0.235 0.235 0.235 
+0.255 0.255 0.255 
+0.275 0.275 0.275 
+0.294 0.294 0.294 
+0.314 0.314 0.314 
+0.333 0.333 0.333 
+0.353 0.353 0.353 
+0.157 0.157 0.157 
+0.176 0.176 0.176 
+0.196 0.196 0.196 
+0.216 0.216 0.216 
+0.235 0.235 0.235 
+0.255 0.255 0.255 
+0.275 0.275 0.275 
+0.294 0.294 0.294 
+0.314 0.314 0.314 
+0.333 0.333 0.333 
+0.353 0.353 0.353 
+0.373 0.373 0.373 
+0.176 0.176 0.176 
+0.196 0.196 0.196 
+0.216 0.216 0.216 
+0.235 0.235 0.235 
+0.255 0.255 0.255 
+0.275 0.275 0.275 
+0.294 0.294 0.294 
+0.314 0.314 0.314 
+0.333 0.333 0.333 
+0.353 0.353 0.353 
+0.373 0.373 0.373 
+0.392 0.392 0.392 
+0.196 0.196 0.196 
+0.216 0.216 0.216 
+0.235 0.235 0.235 
+0.255 0.255 0.255 
+0.275 0.275 0.275 
+0.294 0.294 0.294 
+0.314 0.314 0.314 
+0.333 0.333 0.333 
+0.353 0.353 0.353 
+0.373 0.373 0.373 
+0.392 0.392 0.392 
+0.412 0.412 0.412 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.235 0.235 0.235 
+0.255 0.255 0.255 
+0.275 0.275 0.275 
+0.294 0.294 0.294 
+0.314 0.314 0.314 
+0.333 0.333 0.333 
+0.353 0.353 0.353 
+0.373 0.373 0.373 
+0.392 0.392 0.392 
+0.412 0.412 0.412 
+0.431 0.431 0.431 
+0.451 0.451 0.451 
+0.118 0.118 0.118 
+0.137 0.137 0.137 
+0.157 0.157 0.157 
+0.176 0.176 0.176 
+0.196 0.196 0.196 
+0.216 0.216 0.216 
+0.235 0.235 0.235 
+0.255 0.255 0.255 
+0.275 0.275 0.275 
+0.294 0.294 0.294 
+0.314 0.314 0.314 
+0.333 0.333 0.333 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.157 0.157 0.157 
+0.176 0.176 0.176 
+0.196 0.196 0.196 
+0.216 0.216 0.216 
+0.235 0.235 0.235 
+0.255 0.255 0.255 
+0.275 0.275 0.275 
+0.294 0.294 0.294 
+0.314 0.314 0.314 
+0.333 0.333 0.333 
+0.353 0.353 0.353 
+0.373 0.373 0.373 
+0.176 0.176 0.176 
+0.196 0.196 0.196 
+0.216 0.216 0.216 
+0.235 0.235 0.235 
+0.255 0.255 0.255 
+0.275 0.275 0.275 
+0.294 0.294 0.294 
+0.314 0.314 0.314 
+0.333 0.333 0.333 
+0.353 0.353 0.353 
+0.373 0.373 0.373 
+0.392 0.392 0.392 
+0.196 0.196 0.196 
+0.216 0.216 0.216 
+0.235 0.235 0.235 
+0.255 0.255 0.255 
+0.275 0.275 0.275 
+0.294 0.294 0.294 
+0.314 0.314 0.314 
+0.333 0.333 0.333 
+0.353 0.353 0.353 
+0.373 0.373 0.373 
+0.392 0.392 0.392 
+0.412 0.412 0.412 
+0.216 0.216 0.216 
+0.235 0.235 0.235 
+0.255 0.255 0.255 
+0.275 0.275 0.275 
+0.294 0.294 0.294 
+0.314 0.314 0.314 
+0.333 0.333 0.333 
+0.353 0.353 0.353 
+0.373 0.373 0.373 
+0.392 0.392 0.392 
+0.412 0.412 0.412 
+0.431 0.431 0.431 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.255 0.255 0.255 
+0.275 0.275 0.275 
+0.294 0.294 0.294 
+0.314 0.314 0.314 
+0.333 0.333 0.333 
+0.353 0.353 0.353 
+0.373 0.373 0.373 
+0.392 0.392 0.392 
+0.412 0.412 0.412 
+0.431 0.431 0.431 
+0.451 0.451 0.451 
+0.471 0.471 0.471 
+0.137 0.137 0.137 
+0.157 0.157 0.157 
+0.176 0.176 0.176 
+0.196 0.196 0.196 
+0.216 0.216 0.216 
+0.235 0.235 0.235 
+0.255 0.255 0.255 
+0.275 0.275 0.275 
+0.294 0.294 0.294 
+0.314 0.314 0.314 
+0.333 0.333 0.333 
+0.353 0.353 0.353 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.176 0.176 0.176 
+0.196 0.196 0.196 
+0.216 0.216 0.216 
+0.235 0.235 0.235 
+0.255 0.255 0.255 
+0.275 0.275 0.275 
+0.294 0.294 0.294 
+0.314 0.314 0.314 
+0.333 0.333 0.333 
+0.353 0.353 0.353 
+0.373 0.373 0.373 
+0.392 0.392 0.392 
+0.196 0.196 0.196 
+0.216 0.216 0.216 
+0.235 0.235 0.235 
+0.255 0.255 0.255 
+0.275 0.275 0.275 
+0.294 0.294 0.294 
+0.314 0.314 0.314 
+0.333 0.333 0.333 
+0.353 0.353 0.353 
+0.373 0.373 0.373 
+0.392 0.392 0.392 
+0.412 0.412 0.412 
+0.216 0.216 0.216 
+0.235 0.235 0.235 
+0.255 0.255 0.255 
+0.275 0.275 0.275 
+0.294 0.294 0.294 
+0.314 0.314 0.314 
+0.333 0.333 0.333 
+0.353 0.353 0.353 
+0.373 0.373 0.373 
+0.392 0.392 0.392 
+0.412 0.412 0.412 
+0.431 0.431 0.431 
+0.235 0.235 0.235 
+0.255 0.255 0.255 
+0.275 0.275 0.275 
+0.294 0.294 0.294 
+0.314 0.314 0.314 
+0.333 0.333 0.333 
+0.353 0.353 0.353 
+0.373 0.373 0.373 
+0.392 0.392 0.392 
+0.412 0.412 0.412 
+0.431 0.431 0.431 
+0.451 0.451 0.451 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.275 0.275 0.275 
+0.294 0.294 0.294 
+0.314 0.314 0.314 
+0.333 0.333 0.333 
+0.353 0.353 0.353 
+0.373 0.373 0.373 
+0.392 0.392 0.392 
+0.412 0.412 0.412 
+0.431 0.431 0.431 
+0.451 0.451 0.451 
+0.471 0.471 0.471 
+0.490 0.490 0.490 
+VECTORS Vector_Data float
+3.000 3.000 3.000 
+4.000 4.000 4.000 
+5.000 5.000 5.000 
+6.000 6.000 6.000 
+7.000 7.000 7.000 
+8.000 8.000 8.000 
+9.000 9.000 9.000 
+10.000 10.000 10.000 
+11.000 11.000 11.000 
+12.000 12.000 12.000 
+13.000 13.000 13.000 
+14.000 14.000 14.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+5.000 5.000 5.000 
+6.000 6.000 6.000 
+7.000 7.000 7.000 
+8.000 8.000 8.000 
+9.000 9.000 9.000 
+10.000 10.000 10.000 
+11.000 11.000 11.000 
+12.000 12.000 12.000 
+13.000 13.000 13.000 
+14.000 14.000 14.000 
+15.000 15.000 15.000 
+16.000 16.000 16.000 
+6.000 6.000 6.000 
+7.000 7.000 7.000 
+8.000 8.000 8.000 
+9.000 9.000 9.000 
+10.000 10.000 10.000 
+11.000 11.000 11.000 
+12.000 12.000 12.000 
+13.000 13.000 13.000 
+14.000 14.000 14.000 
+15.000 15.000 15.000 
+16.000 16.000 16.000 
+17.000 17.000 17.000 
+7.000 7.000 7.000 
+8.000 8.000 8.000 
+9.000 9.000 9.000 
+10.000 10.000 10.000 
+11.000 11.000 11.000 
+12.000 12.000 12.000 
+13.000 13.000 13.000 
+14.000 14.000 14.000 
+15.000 15.000 15.000 
+16.000 16.000 16.000 
+17.000 17.000 17.000 
+18.000 18.000 18.000 
+8.000 8.000 8.000 
+9.000 9.000 9.000 
+10.000 10.000 10.000 
+11.000 11.000 11.000 
+12.000 12.000 12.000 
+13.000 13.000 13.000 
+14.000 14.000 14.000 
+15.000 15.000 15.000 
+16.000 16.000 16.000 
+17.000 17.000 17.000 
+18.000 18.000 18.000 
+19.000 19.000 19.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+10.000 10.000 10.000 
+11.000 11.000 11.000 
+12.000 12.000 12.000 
+13.000 13.000 13.000 
+14.000 14.000 14.000 
+15.000 15.000 15.000 
+16.000 16.000 16.000 
+17.000 17.000 17.000 
+18.000 18.000 18.000 
+19.000 19.000 19.000 
+20.000 20.000 20.000 
+21.000 21.000 21.000 
+4.000 4.000 4.000 
+5.000 5.000 5.000 
+6.000 6.000 6.000 
+7.000 7.000 7.000 
+8.000 8.000 8.000 
+9.000 9.000 9.000 
+10.000 10.000 10.000 
+11.000 11.000 11.000 
+12.000 12.000 12.000 
+13.000 13.000 13.000 
+14.000 14.000 14.000 
+15.000 15.000 15.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+6.000 6.000 6.000 
+7.000 7.000 7.000 
+8.000 8.000 8.000 
+9.000 9.000 9.000 
+10.000 10.000 10.000 
+11.000 11.000 11.000 
+12.000 12.000 12.000 
+13.000 13.000 13.000 
+14.000 14.000 14.000 
+15.000 15.000 15.000 
+16.000 16.000 16.000 
+17.000 17.000 17.000 
+7.000 7.000 7.000 
+8.000 8.000 8.000 
+9.000 9.000 9.000 
+10.000 10.000 10.000 
+11.000 11.000 11.000 
+12.000 12.000 12.000 
+13.000 13.000 13.000 
+14.000 14.000 14.000 
+15.000 15.000 15.000 
+16.000 16.000 16.000 
+17.000 17.000 17.000 
+18.000 18.000 18.000 
+8.000 8.000 8.000 
+9.000 9.000 9.000 
+10.000 10.000 10.000 
+11.000 11.000 11.000 
+12.000 12.000 12.000 
+13.000 13.000 13.000 
+14.000 14.000 14.000 
+15.000 15.000 15.000 
+16.000 16.000 16.000 
+17.000 17.000 17.000 
+18.000 18.000 18.000 
+19.000 19.000 19.000 
+9.000 9.000 9.000 
+10.000 10.000 10.000 
+11.000 11.000 11.000 
+12.000 12.000 12.000 
+13.000 13.000 13.000 
+14.000 14.000 14.000 
+15.000 15.000 15.000 
+16.000 16.000 16.000 
+17.000 17.000 17.000 
+18.000 18.000 18.000 
+19.000 19.000 19.000 
+20.000 20.000 20.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+11.000 11.000 11.000 
+12.000 12.000 12.000 
+13.000 13.000 13.000 
+14.000 14.000 14.000 
+15.000 15.000 15.000 
+16.000 16.000 16.000 
+17.000 17.000 17.000 
+18.000 18.000 18.000 
+19.000 19.000 19.000 
+20.000 20.000 20.000 
+21.000 21.000 21.000 
+22.000 22.000 22.000 
+5.000 5.000 5.000 
+6.000 6.000 6.000 
+7.000 7.000 7.000 
+8.000 8.000 8.000 
+9.000 9.000 9.000 
+10.000 10.000 10.000 
+11.000 11.000 11.000 
+12.000 12.000 12.000 
+13.000 13.000 13.000 
+14.000 14.000 14.000 
+15.000 15.000 15.000 
+16.000 16.000 16.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+7.000 7.000 7.000 
+8.000 8.000 8.000 
+9.000 9.000 9.000 
+10.000 10.000 10.000 
+11.000 11.000 11.000 
+12.000 12.000 12.000 
+13.000 13.000 13.000 
+14.000 14.000 14.000 
+15.000 15.000 15.000 
+16.000 16.000 16.000 
+17.000 17.000 17.000 
+18.000 18.000 18.000 
+8.000 8.000 8.000 
+9.000 9.000 9.000 
+10.000 10.000 10.000 
+11.000 11.000 11.000 
+12.000 12.000 12.000 
+13.000 13.000 13.000 
+14.000 14.000 14.000 
+15.000 15.000 15.000 
+16.000 16.000 16.000 
+17.000 17.000 17.000 
+18.000 18.000 18.000 
+19.000 19.000 19.000 
+9.000 9.000 9.000 
+10.000 10.000 10.000 
+11.000 11.000 11.000 
+12.000 12.000 12.000 
+13.000 13.000 13.000 
+14.000 14.000 14.000 
+15.000 15.000 15.000 
+16.000 16.000 16.000 
+17.000 17.000 17.000 
+18.000 18.000 18.000 
+19.000 19.000 19.000 
+20.000 20.000 20.000 
+10.000 10.000 10.000 
+11.000 11.000 11.000 
+12.000 12.000 12.000 
+13.000 13.000 13.000 
+14.000 14.000 14.000 
+15.000 15.000 15.000 
+16.000 16.000 16.000 
+17.000 17.000 17.000 
+18.000 18.000 18.000 
+19.000 19.000 19.000 
+20.000 20.000 20.000 
+21.000 21.000 21.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+12.000 12.000 12.000 
+13.000 13.000 13.000 
+14.000 14.000 14.000 
+15.000 15.000 15.000 
+16.000 16.000 16.000 
+17.000 17.000 17.000 
+18.000 18.000 18.000 
+19.000 19.000 19.000 
+20.000 20.000 20.000 
+21.000 21.000 21.000 
+22.000 22.000 22.000 
+23.000 23.000 23.000 
+6.000 6.000 6.000 
+7.000 7.000 7.000 
+8.000 8.000 8.000 
+9.000 9.000 9.000 
+10.000 10.000 10.000 
+11.000 11.000 11.000 
+12.000 12.000 12.000 
+13.000 13.000 13.000 
+14.000 14.000 14.000 
+15.000 15.000 15.000 
+16.000 16.000 16.000 
+17.000 17.000 17.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+8.000 8.000 8.000 
+9.000 9.000 9.000 
+10.000 10.000 10.000 
+11.000 11.000 11.000 
+12.000 12.000 12.000 
+13.000 13.000 13.000 
+14.000 14.000 14.000 
+15.000 15.000 15.000 
+16.000 16.000 16.000 
+17.000 17.000 17.000 
+18.000 18.000 18.000 
+19.000 19.000 19.000 
+9.000 9.000 9.000 
+10.000 10.000 10.000 
+11.000 11.000 11.000 
+12.000 12.000 12.000 
+13.000 13.000 13.000 
+14.000 14.000 14.000 
+15.000 15.000 15.000 
+16.000 16.000 16.000 
+17.000 17.000 17.000 
+18.000 18.000 18.000 
+19.000 19.000 19.000 
+20.000 20.000 20.000 
+10.000 10.000 10.000 
+11.000 11.000 11.000 
+12.000 12.000 12.000 
+13.000 13.000 13.000 
+14.000 14.000 14.000 
+15.000 15.000 15.000 
+16.000 16.000 16.000 
+17.000 17.000 17.000 
+18.000 18.000 18.000 
+19.000 19.000 19.000 
+20.000 20.000 20.000 
+21.000 21.000 21.000 
+11.000 11.000 11.000 
+12.000 12.000 12.000 
+13.000 13.000 13.000 
+14.000 14.000 14.000 
+15.000 15.000 15.000 
+16.000 16.000 16.000 
+17.000 17.000 17.000 
+18.000 18.000 18.000 
+19.000 19.000 19.000 
+20.000 20.000 20.000 
+21.000 21.000 21.000 
+22.000 22.000 22.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+13.000 13.000 13.000 
+14.000 14.000 14.000 
+15.000 15.000 15.000 
+16.000 16.000 16.000 
+17.000 17.000 17.000 
+18.000 18.000 18.000 
+19.000 19.000 19.000 
+20.000 20.000 20.000 
+21.000 21.000 21.000 
+22.000 22.000 22.000 
+23.000 23.000 23.000 
+24.000 24.000 24.000 
+7.000 7.000 7.000 
+8.000 8.000 8.000 
+9.000 9.000 9.000 
+10.000 10.000 10.000 
+11.000 11.000 11.000 
+12.000 12.000 12.000 
+13.000 13.000 13.000 
+14.000 14.000 14.000 
+15.000 15.000 15.000 
+16.000 16.000 16.000 
+17.000 17.000 17.000 
+18.000 18.000 18.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+9.000 9.000 9.000 
+10.000 10.000 10.000 
+11.000 11.000 11.000 
+12.000 12.000 12.000 
+13.000 13.000 13.000 
+14.000 14.000 14.000 
+15.000 15.000 15.000 
+16.000 16.000 16.000 
+17.000 17.000 17.000 
+18.000 18.000 18.000 
+19.000 19.000 19.000 
+20.000 20.000 20.000 
+10.000 10.000 10.000 
+11.000 11.000 11.000 
+12.000 12.000 12.000 
+13.000 13.000 13.000 
+14.000 14.000 14.000 
+15.000 15.000 15.000 
+16.000 16.000 16.000 
+17.000 17.000 17.000 
+18.000 18.000 18.000 
+19.000 19.000 19.000 
+20.000 20.000 20.000 
+21.000 21.000 21.000 
+11.000 11.000 11.000 
+12.000 12.000 12.000 
+13.000 13.000 13.000 
+14.000 14.000 14.000 
+15.000 15.000 15.000 
+16.000 16.000 16.000 
+17.000 17.000 17.000 
+18.000 18.000 18.000 
+19.000 19.000 19.000 
+20.000 20.000 20.000 
+21.000 21.000 21.000 
+22.000 22.000 22.000 
+12.000 12.000 12.000 
+13.000 13.000 13.000 
+14.000 14.000 14.000 
+15.000 15.000 15.000 
+16.000 16.000 16.000 
+17.000 17.000 17.000 
+18.000 18.000 18.000 
+19.000 19.000 19.000 
+20.000 20.000 20.000 
+21.000 21.000 21.000 
+22.000 22.000 22.000 
+23.000 23.000 23.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+14.000 14.000 14.000 
+15.000 15.000 15.000 
+16.000 16.000 16.000 
+17.000 17.000 17.000 
+18.000 18.000 18.000 
+19.000 19.000 19.000 
+20.000 20.000 20.000 
+21.000 21.000 21.000 
+22.000 22.000 22.000 
+23.000 23.000 23.000 
+24.000 24.000 24.000 
+25.000 25.000 25.000 

Added: grass/trunk/raster3d/r3.out.vtk/test_volume_null_1_points.ref
===================================================================
--- grass/trunk/raster3d/r3.out.vtk/test_volume_null_1_points.ref	                        (rev 0)
+++ grass/trunk/raster3d/r3.out.vtk/test_volume_null_1_points.ref	2011-06-16 09:58:31 UTC (rev 46720)
@@ -0,0 +1,50 @@
+# vtk DataFile Version 3.0
+GRASS GIS 7 Export
+ASCII
+DATASET STRUCTURED_POINTS
+DIMENSIONS 12 8 5
+SPACING 10.000 10.000 10.000
+ORIGIN 5.000 5.000 5.000
+POINT_DATA 480
+SCALARS volume_null float 1
+LOOKUP_TABLE default
+3.000 4.000 5.000 6.000 7.000 8.000 9.000 10.000 11.000 12.000 13.000 14.000 
+0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 
+5.000 6.000 7.000 8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 
+6.000 7.000 8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 
+7.000 8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 
+8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 
+0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 
+10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 21.000 
+4.000 5.000 6.000 7.000 8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 
+0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 
+6.000 7.000 8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 
+7.000 8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 
+8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 
+9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 
+0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 
+11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 21.000 22.000 
+5.000 6.000 7.000 8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 
+0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 
+7.000 8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 
+8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 
+9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 
+10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 21.000 
+0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 
+12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 21.000 22.000 23.000 
+6.000 7.000 8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 
+0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 
+8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 
+9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 
+10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 21.000 
+11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 21.000 22.000 
+0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 
+13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 21.000 22.000 23.000 24.000 
+7.000 8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 
+0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 
+9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 
+10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 21.000 
+11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 21.000 22.000 
+12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 21.000 22.000 23.000 
+0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 
+14.000 15.000 16.000 17.000 18.000 19.000 20.000 21.000 22.000 23.000 24.000 25.000 

Added: grass/trunk/raster3d/r3.out.vtk/test_volume_null_1_points_elevation.ref
===================================================================
--- grass/trunk/raster3d/r3.out.vtk/test_volume_null_1_points_elevation.ref	                        (rev 0)
+++ grass/trunk/raster3d/r3.out.vtk/test_volume_null_1_points_elevation.ref	2011-06-16 09:58:31 UTC (rev 46720)
@@ -0,0 +1,529 @@
+# vtk DataFile Version 3.0
+GRASS GIS 7 Export
+ASCII
+DATASET STRUCTURED_GRID
+DIMENSIONS 12 8 5
+POINTS 480 float
+5.000 75.000 1.000
+15.000 75.000 1.000
+25.000 75.000 1.000
+35.000 75.000 1.000
+45.000 75.000 1.000
+55.000 75.000 1.000
+65.000 75.000 1.000
+75.000 75.000 1.000
+85.000 75.000 1.000
+95.000 75.000 1.000
+105.000 75.000 1.000
+115.000 75.000 1.000
+5.000 65.000 2.000
+15.000 65.000 2.000
+25.000 65.000 2.000
+35.000 65.000 2.000
+45.000 65.000 2.000
+55.000 65.000 2.000
+65.000 65.000 2.000
+75.000 65.000 2.000
+85.000 65.000 2.000
+95.000 65.000 2.000
+105.000 65.000 2.000
+115.000 65.000 2.000
+5.000 55.000 3.000
+15.000 55.000 3.000
+25.000 55.000 3.000
+35.000 55.000 3.000
+45.000 55.000 3.000
+55.000 55.000 3.000
+65.000 55.000 3.000
+75.000 55.000 3.000
+85.000 55.000 3.000
+95.000 55.000 3.000
+105.000 55.000 3.000
+115.000 55.000 3.000
+5.000 45.000 4.000
+15.000 45.000 4.000
+25.000 45.000 4.000
+35.000 45.000 4.000
+45.000 45.000 4.000
+55.000 45.000 4.000
+65.000 45.000 4.000
+75.000 45.000 4.000
+85.000 45.000 4.000
+95.000 45.000 4.000
+105.000 45.000 4.000
+115.000 45.000 4.000
+5.000 35.000 5.000
+15.000 35.000 5.000
+25.000 35.000 5.000
+35.000 35.000 5.000
+45.000 35.000 5.000
+55.000 35.000 5.000
+65.000 35.000 5.000
+75.000 35.000 5.000
+85.000 35.000 5.000
+95.000 35.000 5.000
+105.000 35.000 5.000
+115.000 35.000 5.000
+5.000 25.000 6.000
+15.000 25.000 6.000
+25.000 25.000 6.000
+35.000 25.000 6.000
+45.000 25.000 6.000
+55.000 25.000 6.000
+65.000 25.000 6.000
+75.000 25.000 6.000
+85.000 25.000 6.000
+95.000 25.000 6.000
+105.000 25.000 6.000
+115.000 25.000 6.000
+5.000 15.000 7.000
+15.000 15.000 7.000
+25.000 15.000 7.000
+35.000 15.000 7.000
+45.000 15.000 7.000
+55.000 15.000 7.000
+65.000 15.000 7.000
+75.000 15.000 7.000
+85.000 15.000 7.000
+95.000 15.000 7.000
+105.000 15.000 7.000
+115.000 15.000 7.000
+5.000 5.000 8.000
+15.000 5.000 8.000
+25.000 5.000 8.000
+35.000 5.000 8.000
+45.000 5.000 8.000
+55.000 5.000 8.000
+65.000 5.000 8.000
+75.000 5.000 8.000
+85.000 5.000 8.000
+95.000 5.000 8.000
+105.000 5.000 8.000
+115.000 5.000 8.000
+5.000 75.000 13.500
+15.000 75.000 13.500
+25.000 75.000 13.500
+35.000 75.000 13.500
+45.000 75.000 13.500
+55.000 75.000 13.500
+65.000 75.000 13.500
+75.000 75.000 13.500
+85.000 75.000 13.500
+95.000 75.000 13.500
+105.000 75.000 13.500
+115.000 75.000 13.500
+5.000 65.000 14.500
+15.000 65.000 14.500
+25.000 65.000 14.500
+35.000 65.000 14.500
+45.000 65.000 14.500
+55.000 65.000 14.500
+65.000 65.000 14.500
+75.000 65.000 14.500
+85.000 65.000 14.500
+95.000 65.000 14.500
+105.000 65.000 14.500
+115.000 65.000 14.500
+5.000 55.000 15.500
+15.000 55.000 15.500
+25.000 55.000 15.500
+35.000 55.000 15.500
+45.000 55.000 15.500
+55.000 55.000 15.500
+65.000 55.000 15.500
+75.000 55.000 15.500
+85.000 55.000 15.500
+95.000 55.000 15.500
+105.000 55.000 15.500
+115.000 55.000 15.500
+5.000 45.000 16.500
+15.000 45.000 16.500
+25.000 45.000 16.500
+35.000 45.000 16.500
+45.000 45.000 16.500
+55.000 45.000 16.500
+65.000 45.000 16.500
+75.000 45.000 16.500
+85.000 45.000 16.500
+95.000 45.000 16.500
+105.000 45.000 16.500
+115.000 45.000 16.500
+5.000 35.000 17.500
+15.000 35.000 17.500
+25.000 35.000 17.500
+35.000 35.000 17.500
+45.000 35.000 17.500
+55.000 35.000 17.500
+65.000 35.000 17.500
+75.000 35.000 17.500
+85.000 35.000 17.500
+95.000 35.000 17.500
+105.000 35.000 17.500
+115.000 35.000 17.500
+5.000 25.000 18.500
+15.000 25.000 18.500
+25.000 25.000 18.500
+35.000 25.000 18.500
+45.000 25.000 18.500
+55.000 25.000 18.500
+65.000 25.000 18.500
+75.000 25.000 18.500
+85.000 25.000 18.500
+95.000 25.000 18.500
+105.000 25.000 18.500
+115.000 25.000 18.500
+5.000 15.000 19.500
+15.000 15.000 19.500
+25.000 15.000 19.500
+35.000 15.000 19.500
+45.000 15.000 19.500
+55.000 15.000 19.500
+65.000 15.000 19.500
+75.000 15.000 19.500
+85.000 15.000 19.500
+95.000 15.000 19.500
+105.000 15.000 19.500
+115.000 15.000 19.500
+5.000 5.000 20.500
+15.000 5.000 20.500
+25.000 5.000 20.500
+35.000 5.000 20.500
+45.000 5.000 20.500
+55.000 5.000 20.500
+65.000 5.000 20.500
+75.000 5.000 20.500
+85.000 5.000 20.500
+95.000 5.000 20.500
+105.000 5.000 20.500
+115.000 5.000 20.500
+5.000 75.000 26.000
+15.000 75.000 26.000
+25.000 75.000 26.000
+35.000 75.000 26.000
+45.000 75.000 26.000
+55.000 75.000 26.000
+65.000 75.000 26.000
+75.000 75.000 26.000
+85.000 75.000 26.000
+95.000 75.000 26.000
+105.000 75.000 26.000
+115.000 75.000 26.000
+5.000 65.000 27.000
+15.000 65.000 27.000
+25.000 65.000 27.000
+35.000 65.000 27.000
+45.000 65.000 27.000
+55.000 65.000 27.000
+65.000 65.000 27.000
+75.000 65.000 27.000
+85.000 65.000 27.000
+95.000 65.000 27.000
+105.000 65.000 27.000
+115.000 65.000 27.000
+5.000 55.000 28.000
+15.000 55.000 28.000
+25.000 55.000 28.000
+35.000 55.000 28.000
+45.000 55.000 28.000
+55.000 55.000 28.000
+65.000 55.000 28.000
+75.000 55.000 28.000
+85.000 55.000 28.000
+95.000 55.000 28.000
+105.000 55.000 28.000
+115.000 55.000 28.000
+5.000 45.000 29.000
+15.000 45.000 29.000
+25.000 45.000 29.000
+35.000 45.000 29.000
+45.000 45.000 29.000
+55.000 45.000 29.000
+65.000 45.000 29.000
+75.000 45.000 29.000
+85.000 45.000 29.000
+95.000 45.000 29.000
+105.000 45.000 29.000
+115.000 45.000 29.000
+5.000 35.000 30.000
+15.000 35.000 30.000
+25.000 35.000 30.000
+35.000 35.000 30.000
+45.000 35.000 30.000
+55.000 35.000 30.000
+65.000 35.000 30.000
+75.000 35.000 30.000
+85.000 35.000 30.000
+95.000 35.000 30.000
+105.000 35.000 30.000
+115.000 35.000 30.000
+5.000 25.000 31.000
+15.000 25.000 31.000
+25.000 25.000 31.000
+35.000 25.000 31.000
+45.000 25.000 31.000
+55.000 25.000 31.000
+65.000 25.000 31.000
+75.000 25.000 31.000
+85.000 25.000 31.000
+95.000 25.000 31.000
+105.000 25.000 31.000
+115.000 25.000 31.000
+5.000 15.000 32.000
+15.000 15.000 32.000
+25.000 15.000 32.000
+35.000 15.000 32.000
+45.000 15.000 32.000
+55.000 15.000 32.000
+65.000 15.000 32.000
+75.000 15.000 32.000
+85.000 15.000 32.000
+95.000 15.000 32.000
+105.000 15.000 32.000
+115.000 15.000 32.000
+5.000 5.000 33.000
+15.000 5.000 33.000
+25.000 5.000 33.000
+35.000 5.000 33.000
+45.000 5.000 33.000
+55.000 5.000 33.000
+65.000 5.000 33.000
+75.000 5.000 33.000
+85.000 5.000 33.000
+95.000 5.000 33.000
+105.000 5.000 33.000
+115.000 5.000 33.000
+5.000 75.000 38.500
+15.000 75.000 38.500
+25.000 75.000 38.500
+35.000 75.000 38.500
+45.000 75.000 38.500
+55.000 75.000 38.500
+65.000 75.000 38.500
+75.000 75.000 38.500
+85.000 75.000 38.500
+95.000 75.000 38.500
+105.000 75.000 38.500
+115.000 75.000 38.500
+5.000 65.000 39.500
+15.000 65.000 39.500
+25.000 65.000 39.500
+35.000 65.000 39.500
+45.000 65.000 39.500
+55.000 65.000 39.500
+65.000 65.000 39.500
+75.000 65.000 39.500
+85.000 65.000 39.500
+95.000 65.000 39.500
+105.000 65.000 39.500
+115.000 65.000 39.500
+5.000 55.000 40.500
+15.000 55.000 40.500
+25.000 55.000 40.500
+35.000 55.000 40.500
+45.000 55.000 40.500
+55.000 55.000 40.500
+65.000 55.000 40.500
+75.000 55.000 40.500
+85.000 55.000 40.500
+95.000 55.000 40.500
+105.000 55.000 40.500
+115.000 55.000 40.500
+5.000 45.000 41.500
+15.000 45.000 41.500
+25.000 45.000 41.500
+35.000 45.000 41.500
+45.000 45.000 41.500
+55.000 45.000 41.500
+65.000 45.000 41.500
+75.000 45.000 41.500
+85.000 45.000 41.500
+95.000 45.000 41.500
+105.000 45.000 41.500
+115.000 45.000 41.500
+5.000 35.000 42.500
+15.000 35.000 42.500
+25.000 35.000 42.500
+35.000 35.000 42.500
+45.000 35.000 42.500
+55.000 35.000 42.500
+65.000 35.000 42.500
+75.000 35.000 42.500
+85.000 35.000 42.500
+95.000 35.000 42.500
+105.000 35.000 42.500
+115.000 35.000 42.500
+5.000 25.000 43.500
+15.000 25.000 43.500
+25.000 25.000 43.500
+35.000 25.000 43.500
+45.000 25.000 43.500
+55.000 25.000 43.500
+65.000 25.000 43.500
+75.000 25.000 43.500
+85.000 25.000 43.500
+95.000 25.000 43.500
+105.000 25.000 43.500
+115.000 25.000 43.500
+5.000 15.000 44.500
+15.000 15.000 44.500
+25.000 15.000 44.500
+35.000 15.000 44.500
+45.000 15.000 44.500
+55.000 15.000 44.500
+65.000 15.000 44.500
+75.000 15.000 44.500
+85.000 15.000 44.500
+95.000 15.000 44.500
+105.000 15.000 44.500
+115.000 15.000 44.500
+5.000 5.000 45.500
+15.000 5.000 45.500
+25.000 5.000 45.500
+35.000 5.000 45.500
+45.000 5.000 45.500
+55.000 5.000 45.500
+65.000 5.000 45.500
+75.000 5.000 45.500
+85.000 5.000 45.500
+95.000 5.000 45.500
+105.000 5.000 45.500
+115.000 5.000 45.500
+5.000 75.000 51.000
+15.000 75.000 51.000
+25.000 75.000 51.000
+35.000 75.000 51.000
+45.000 75.000 51.000
+55.000 75.000 51.000
+65.000 75.000 51.000
+75.000 75.000 51.000
+85.000 75.000 51.000
+95.000 75.000 51.000
+105.000 75.000 51.000
+115.000 75.000 51.000
+5.000 65.000 52.000
+15.000 65.000 52.000
+25.000 65.000 52.000
+35.000 65.000 52.000
+45.000 65.000 52.000
+55.000 65.000 52.000
+65.000 65.000 52.000
+75.000 65.000 52.000
+85.000 65.000 52.000
+95.000 65.000 52.000
+105.000 65.000 52.000
+115.000 65.000 52.000
+5.000 55.000 53.000
+15.000 55.000 53.000
+25.000 55.000 53.000
+35.000 55.000 53.000
+45.000 55.000 53.000
+55.000 55.000 53.000
+65.000 55.000 53.000
+75.000 55.000 53.000
+85.000 55.000 53.000
+95.000 55.000 53.000
+105.000 55.000 53.000
+115.000 55.000 53.000
+5.000 45.000 54.000
+15.000 45.000 54.000
+25.000 45.000 54.000
+35.000 45.000 54.000
+45.000 45.000 54.000
+55.000 45.000 54.000
+65.000 45.000 54.000
+75.000 45.000 54.000
+85.000 45.000 54.000
+95.000 45.000 54.000
+105.000 45.000 54.000
+115.000 45.000 54.000
+5.000 35.000 55.000
+15.000 35.000 55.000
+25.000 35.000 55.000
+35.000 35.000 55.000
+45.000 35.000 55.000
+55.000 35.000 55.000
+65.000 35.000 55.000
+75.000 35.000 55.000
+85.000 35.000 55.000
+95.000 35.000 55.000
+105.000 35.000 55.000
+115.000 35.000 55.000
+5.000 25.000 56.000
+15.000 25.000 56.000
+25.000 25.000 56.000
+35.000 25.000 56.000
+45.000 25.000 56.000
+55.000 25.000 56.000
+65.000 25.000 56.000
+75.000 25.000 56.000
+85.000 25.000 56.000
+95.000 25.000 56.000
+105.000 25.000 56.000
+115.000 25.000 56.000
+5.000 15.000 57.000
+15.000 15.000 57.000
+25.000 15.000 57.000
+35.000 15.000 57.000
+45.000 15.000 57.000
+55.000 15.000 57.000
+65.000 15.000 57.000
+75.000 15.000 57.000
+85.000 15.000 57.000
+95.000 15.000 57.000
+105.000 15.000 57.000
+115.000 15.000 57.000
+5.000 5.000 58.000
+15.000 5.000 58.000
+25.000 5.000 58.000
+35.000 5.000 58.000
+45.000 5.000 58.000
+55.000 5.000 58.000
+65.000 5.000 58.000
+75.000 5.000 58.000
+85.000 5.000 58.000
+95.000 5.000 58.000
+105.000 5.000 58.000
+115.000 5.000 58.000
+POINT_DATA 480
+SCALARS volume_null float 1
+LOOKUP_TABLE default
+10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 21.000 
+0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 
+8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 
+7.000 8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 
+6.000 7.000 8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 
+5.000 6.000 7.000 8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 
+0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 
+3.000 4.000 5.000 6.000 7.000 8.000 9.000 10.000 11.000 12.000 13.000 14.000 
+11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 21.000 22.000 
+0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 
+9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 
+8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 
+7.000 8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 
+6.000 7.000 8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 
+0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 
+4.000 5.000 6.000 7.000 8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 
+12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 21.000 22.000 23.000 
+0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 
+10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 21.000 
+9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 
+8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 
+7.000 8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 
+0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 
+5.000 6.000 7.000 8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 
+13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 21.000 22.000 23.000 24.000 
+0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 
+11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 21.000 22.000 
+10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 21.000 
+9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 
+8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 
+0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 
+6.000 7.000 8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 
+14.000 15.000 16.000 17.000 18.000 19.000 20.000 21.000 22.000 23.000 24.000 25.000 
+0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 
+12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 21.000 22.000 23.000 
+11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 21.000 22.000 
+10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 21.000 
+9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 
+0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 
+7.000 8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 

Added: grass/trunk/raster3d/r3.out.vtk/test_volume_null_1_points_rgb_vect.ref
===================================================================
--- grass/trunk/raster3d/r3.out.vtk/test_volume_null_1_points_rgb_vect.ref	                        (rev 0)
+++ grass/trunk/raster3d/r3.out.vtk/test_volume_null_1_points_rgb_vect.ref	2011-06-16 09:58:31 UTC (rev 46720)
@@ -0,0 +1,1012 @@
+# vtk DataFile Version 3.0
+GRASS GIS 7 Export
+ASCII
+DATASET STRUCTURED_POINTS
+DIMENSIONS 12 8 5
+SPACING 10.000 10.000 10.000
+ORIGIN 5.000 5.000 5.000
+POINT_DATA 480
+SCALARS volume_null float 1
+LOOKUP_TABLE default
+3.000 4.000 5.000 6.000 7.000 8.000 9.000 10.000 11.000 12.000 13.000 14.000 
+-1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 
+5.000 6.000 7.000 8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 
+6.000 7.000 8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 
+7.000 8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 
+8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 
+-1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 
+10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 21.000 
+4.000 5.000 6.000 7.000 8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 
+-1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 
+6.000 7.000 8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 
+7.000 8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 
+8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 
+9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 
+-1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 
+11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 21.000 22.000 
+5.000 6.000 7.000 8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 
+-1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 
+7.000 8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 
+8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 
+9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 
+10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 21.000 
+-1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 
+12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 21.000 22.000 23.000 
+6.000 7.000 8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 
+-1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 
+8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 
+9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 
+10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 21.000 
+11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 21.000 22.000 
+-1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 
+13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 21.000 22.000 23.000 24.000 
+7.000 8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 
+-1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 
+9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 
+10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 21.000 
+11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 21.000 22.000 
+12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 21.000 22.000 23.000 
+-1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 -1.000 
+14.000 15.000 16.000 17.000 18.000 19.000 20.000 21.000 22.000 23.000 24.000 25.000 
+COLOR_SCALARS RGB_Voxel 3
+0.059 0.059 0.059 
+0.078 0.078 0.078 
+0.098 0.098 0.098 
+0.118 0.118 0.118 
+0.137 0.137 0.137 
+0.157 0.157 0.157 
+0.176 0.176 0.176 
+0.196 0.196 0.196 
+0.216 0.216 0.216 
+0.235 0.235 0.235 
+0.255 0.255 0.255 
+0.275 0.275 0.275 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.098 0.098 0.098 
+0.118 0.118 0.118 
+0.137 0.137 0.137 
+0.157 0.157 0.157 
+0.176 0.176 0.176 
+0.196 0.196 0.196 
+0.216 0.216 0.216 
+0.235 0.235 0.235 
+0.255 0.255 0.255 
+0.275 0.275 0.275 
+0.294 0.294 0.294 
+0.314 0.314 0.314 
+0.118 0.118 0.118 
+0.137 0.137 0.137 
+0.157 0.157 0.157 
+0.176 0.176 0.176 
+0.196 0.196 0.196 
+0.216 0.216 0.216 
+0.235 0.235 0.235 
+0.255 0.255 0.255 
+0.275 0.275 0.275 
+0.294 0.294 0.294 
+0.314 0.314 0.314 
+0.333 0.333 0.333 
+0.137 0.137 0.137 
+0.157 0.157 0.157 
+0.176 0.176 0.176 
+0.196 0.196 0.196 
+0.216 0.216 0.216 
+0.235 0.235 0.235 
+0.255 0.255 0.255 
+0.275 0.275 0.275 
+0.294 0.294 0.294 
+0.314 0.314 0.314 
+0.333 0.333 0.333 
+0.353 0.353 0.353 
+0.157 0.157 0.157 
+0.176 0.176 0.176 
+0.196 0.196 0.196 
+0.216 0.216 0.216 
+0.235 0.235 0.235 
+0.255 0.255 0.255 
+0.275 0.275 0.275 
+0.294 0.294 0.294 
+0.314 0.314 0.314 
+0.333 0.333 0.333 
+0.353 0.353 0.353 
+0.373 0.373 0.373 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.196 0.196 0.196 
+0.216 0.216 0.216 
+0.235 0.235 0.235 
+0.255 0.255 0.255 
+0.275 0.275 0.275 
+0.294 0.294 0.294 
+0.314 0.314 0.314 
+0.333 0.333 0.333 
+0.353 0.353 0.353 
+0.373 0.373 0.373 
+0.392 0.392 0.392 
+0.412 0.412 0.412 
+0.078 0.078 0.078 
+0.098 0.098 0.098 
+0.118 0.118 0.118 
+0.137 0.137 0.137 
+0.157 0.157 0.157 
+0.176 0.176 0.176 
+0.196 0.196 0.196 
+0.216 0.216 0.216 
+0.235 0.235 0.235 
+0.255 0.255 0.255 
+0.275 0.275 0.275 
+0.294 0.294 0.294 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.118 0.118 0.118 
+0.137 0.137 0.137 
+0.157 0.157 0.157 
+0.176 0.176 0.176 
+0.196 0.196 0.196 
+0.216 0.216 0.216 
+0.235 0.235 0.235 
+0.255 0.255 0.255 
+0.275 0.275 0.275 
+0.294 0.294 0.294 
+0.314 0.314 0.314 
+0.333 0.333 0.333 
+0.137 0.137 0.137 
+0.157 0.157 0.157 
+0.176 0.176 0.176 
+0.196 0.196 0.196 
+0.216 0.216 0.216 
+0.235 0.235 0.235 
+0.255 0.255 0.255 
+0.275 0.275 0.275 
+0.294 0.294 0.294 
+0.314 0.314 0.314 
+0.333 0.333 0.333 
+0.353 0.353 0.353 
+0.157 0.157 0.157 
+0.176 0.176 0.176 
+0.196 0.196 0.196 
+0.216 0.216 0.216 
+0.235 0.235 0.235 
+0.255 0.255 0.255 
+0.275 0.275 0.275 
+0.294 0.294 0.294 
+0.314 0.314 0.314 
+0.333 0.333 0.333 
+0.353 0.353 0.353 
+0.373 0.373 0.373 
+0.176 0.176 0.176 
+0.196 0.196 0.196 
+0.216 0.216 0.216 
+0.235 0.235 0.235 
+0.255 0.255 0.255 
+0.275 0.275 0.275 
+0.294 0.294 0.294 
+0.314 0.314 0.314 
+0.333 0.333 0.333 
+0.353 0.353 0.353 
+0.373 0.373 0.373 
+0.392 0.392 0.392 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.216 0.216 0.216 
+0.235 0.235 0.235 
+0.255 0.255 0.255 
+0.275 0.275 0.275 
+0.294 0.294 0.294 
+0.314 0.314 0.314 
+0.333 0.333 0.333 
+0.353 0.353 0.353 
+0.373 0.373 0.373 
+0.392 0.392 0.392 
+0.412 0.412 0.412 
+0.431 0.431 0.431 
+0.098 0.098 0.098 
+0.118 0.118 0.118 
+0.137 0.137 0.137 
+0.157 0.157 0.157 
+0.176 0.176 0.176 
+0.196 0.196 0.196 
+0.216 0.216 0.216 
+0.235 0.235 0.235 
+0.255 0.255 0.255 
+0.275 0.275 0.275 
+0.294 0.294 0.294 
+0.314 0.314 0.314 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.137 0.137 0.137 
+0.157 0.157 0.157 
+0.176 0.176 0.176 
+0.196 0.196 0.196 
+0.216 0.216 0.216 
+0.235 0.235 0.235 
+0.255 0.255 0.255 
+0.275 0.275 0.275 
+0.294 0.294 0.294 
+0.314 0.314 0.314 
+0.333 0.333 0.333 
+0.353 0.353 0.353 
+0.157 0.157 0.157 
+0.176 0.176 0.176 
+0.196 0.196 0.196 
+0.216 0.216 0.216 
+0.235 0.235 0.235 
+0.255 0.255 0.255 
+0.275 0.275 0.275 
+0.294 0.294 0.294 
+0.314 0.314 0.314 
+0.333 0.333 0.333 
+0.353 0.353 0.353 
+0.373 0.373 0.373 
+0.176 0.176 0.176 
+0.196 0.196 0.196 
+0.216 0.216 0.216 
+0.235 0.235 0.235 
+0.255 0.255 0.255 
+0.275 0.275 0.275 
+0.294 0.294 0.294 
+0.314 0.314 0.314 
+0.333 0.333 0.333 
+0.353 0.353 0.353 
+0.373 0.373 0.373 
+0.392 0.392 0.392 
+0.196 0.196 0.196 
+0.216 0.216 0.216 
+0.235 0.235 0.235 
+0.255 0.255 0.255 
+0.275 0.275 0.275 
+0.294 0.294 0.294 
+0.314 0.314 0.314 
+0.333 0.333 0.333 
+0.353 0.353 0.353 
+0.373 0.373 0.373 
+0.392 0.392 0.392 
+0.412 0.412 0.412 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.235 0.235 0.235 
+0.255 0.255 0.255 
+0.275 0.275 0.275 
+0.294 0.294 0.294 
+0.314 0.314 0.314 
+0.333 0.333 0.333 
+0.353 0.353 0.353 
+0.373 0.373 0.373 
+0.392 0.392 0.392 
+0.412 0.412 0.412 
+0.431 0.431 0.431 
+0.451 0.451 0.451 
+0.118 0.118 0.118 
+0.137 0.137 0.137 
+0.157 0.157 0.157 
+0.176 0.176 0.176 
+0.196 0.196 0.196 
+0.216 0.216 0.216 
+0.235 0.235 0.235 
+0.255 0.255 0.255 
+0.275 0.275 0.275 
+0.294 0.294 0.294 
+0.314 0.314 0.314 
+0.333 0.333 0.333 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.157 0.157 0.157 
+0.176 0.176 0.176 
+0.196 0.196 0.196 
+0.216 0.216 0.216 
+0.235 0.235 0.235 
+0.255 0.255 0.255 
+0.275 0.275 0.275 
+0.294 0.294 0.294 
+0.314 0.314 0.314 
+0.333 0.333 0.333 
+0.353 0.353 0.353 
+0.373 0.373 0.373 
+0.176 0.176 0.176 
+0.196 0.196 0.196 
+0.216 0.216 0.216 
+0.235 0.235 0.235 
+0.255 0.255 0.255 
+0.275 0.275 0.275 
+0.294 0.294 0.294 
+0.314 0.314 0.314 
+0.333 0.333 0.333 
+0.353 0.353 0.353 
+0.373 0.373 0.373 
+0.392 0.392 0.392 
+0.196 0.196 0.196 
+0.216 0.216 0.216 
+0.235 0.235 0.235 
+0.255 0.255 0.255 
+0.275 0.275 0.275 
+0.294 0.294 0.294 
+0.314 0.314 0.314 
+0.333 0.333 0.333 
+0.353 0.353 0.353 
+0.373 0.373 0.373 
+0.392 0.392 0.392 
+0.412 0.412 0.412 
+0.216 0.216 0.216 
+0.235 0.235 0.235 
+0.255 0.255 0.255 
+0.275 0.275 0.275 
+0.294 0.294 0.294 
+0.314 0.314 0.314 
+0.333 0.333 0.333 
+0.353 0.353 0.353 
+0.373 0.373 0.373 
+0.392 0.392 0.392 
+0.412 0.412 0.412 
+0.431 0.431 0.431 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.255 0.255 0.255 
+0.275 0.275 0.275 
+0.294 0.294 0.294 
+0.314 0.314 0.314 
+0.333 0.333 0.333 
+0.353 0.353 0.353 
+0.373 0.373 0.373 
+0.392 0.392 0.392 
+0.412 0.412 0.412 
+0.431 0.431 0.431 
+0.451 0.451 0.451 
+0.471 0.471 0.471 
+0.137 0.137 0.137 
+0.157 0.157 0.157 
+0.176 0.176 0.176 
+0.196 0.196 0.196 
+0.216 0.216 0.216 
+0.235 0.235 0.235 
+0.255 0.255 0.255 
+0.275 0.275 0.275 
+0.294 0.294 0.294 
+0.314 0.314 0.314 
+0.333 0.333 0.333 
+0.353 0.353 0.353 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.176 0.176 0.176 
+0.196 0.196 0.196 
+0.216 0.216 0.216 
+0.235 0.235 0.235 
+0.255 0.255 0.255 
+0.275 0.275 0.275 
+0.294 0.294 0.294 
+0.314 0.314 0.314 
+0.333 0.333 0.333 
+0.353 0.353 0.353 
+0.373 0.373 0.373 
+0.392 0.392 0.392 
+0.196 0.196 0.196 
+0.216 0.216 0.216 
+0.235 0.235 0.235 
+0.255 0.255 0.255 
+0.275 0.275 0.275 
+0.294 0.294 0.294 
+0.314 0.314 0.314 
+0.333 0.333 0.333 
+0.353 0.353 0.353 
+0.373 0.373 0.373 
+0.392 0.392 0.392 
+0.412 0.412 0.412 
+0.216 0.216 0.216 
+0.235 0.235 0.235 
+0.255 0.255 0.255 
+0.275 0.275 0.275 
+0.294 0.294 0.294 
+0.314 0.314 0.314 
+0.333 0.333 0.333 
+0.353 0.353 0.353 
+0.373 0.373 0.373 
+0.392 0.392 0.392 
+0.412 0.412 0.412 
+0.431 0.431 0.431 
+0.235 0.235 0.235 
+0.255 0.255 0.255 
+0.275 0.275 0.275 
+0.294 0.294 0.294 
+0.314 0.314 0.314 
+0.333 0.333 0.333 
+0.353 0.353 0.353 
+0.373 0.373 0.373 
+0.392 0.392 0.392 
+0.412 0.412 0.412 
+0.431 0.431 0.431 
+0.451 0.451 0.451 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.275 0.275 0.275 
+0.294 0.294 0.294 
+0.314 0.314 0.314 
+0.333 0.333 0.333 
+0.353 0.353 0.353 
+0.373 0.373 0.373 
+0.392 0.392 0.392 
+0.412 0.412 0.412 
+0.431 0.431 0.431 
+0.451 0.451 0.451 
+0.471 0.471 0.471 
+0.490 0.490 0.490 
+VECTORS Vector_Data float
+3.000 3.000 3.000 
+4.000 4.000 4.000 
+5.000 5.000 5.000 
+6.000 6.000 6.000 
+7.000 7.000 7.000 
+8.000 8.000 8.000 
+9.000 9.000 9.000 
+10.000 10.000 10.000 
+11.000 11.000 11.000 
+12.000 12.000 12.000 
+13.000 13.000 13.000 
+14.000 14.000 14.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+5.000 5.000 5.000 
+6.000 6.000 6.000 
+7.000 7.000 7.000 
+8.000 8.000 8.000 
+9.000 9.000 9.000 
+10.000 10.000 10.000 
+11.000 11.000 11.000 
+12.000 12.000 12.000 
+13.000 13.000 13.000 
+14.000 14.000 14.000 
+15.000 15.000 15.000 
+16.000 16.000 16.000 
+6.000 6.000 6.000 
+7.000 7.000 7.000 
+8.000 8.000 8.000 
+9.000 9.000 9.000 
+10.000 10.000 10.000 
+11.000 11.000 11.000 
+12.000 12.000 12.000 
+13.000 13.000 13.000 
+14.000 14.000 14.000 
+15.000 15.000 15.000 
+16.000 16.000 16.000 
+17.000 17.000 17.000 
+7.000 7.000 7.000 
+8.000 8.000 8.000 
+9.000 9.000 9.000 
+10.000 10.000 10.000 
+11.000 11.000 11.000 
+12.000 12.000 12.000 
+13.000 13.000 13.000 
+14.000 14.000 14.000 
+15.000 15.000 15.000 
+16.000 16.000 16.000 
+17.000 17.000 17.000 
+18.000 18.000 18.000 
+8.000 8.000 8.000 
+9.000 9.000 9.000 
+10.000 10.000 10.000 
+11.000 11.000 11.000 
+12.000 12.000 12.000 
+13.000 13.000 13.000 
+14.000 14.000 14.000 
+15.000 15.000 15.000 
+16.000 16.000 16.000 
+17.000 17.000 17.000 
+18.000 18.000 18.000 
+19.000 19.000 19.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+10.000 10.000 10.000 
+11.000 11.000 11.000 
+12.000 12.000 12.000 
+13.000 13.000 13.000 
+14.000 14.000 14.000 
+15.000 15.000 15.000 
+16.000 16.000 16.000 
+17.000 17.000 17.000 
+18.000 18.000 18.000 
+19.000 19.000 19.000 
+20.000 20.000 20.000 
+21.000 21.000 21.000 
+4.000 4.000 4.000 
+5.000 5.000 5.000 
+6.000 6.000 6.000 
+7.000 7.000 7.000 
+8.000 8.000 8.000 
+9.000 9.000 9.000 
+10.000 10.000 10.000 
+11.000 11.000 11.000 
+12.000 12.000 12.000 
+13.000 13.000 13.000 
+14.000 14.000 14.000 
+15.000 15.000 15.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+6.000 6.000 6.000 
+7.000 7.000 7.000 
+8.000 8.000 8.000 
+9.000 9.000 9.000 
+10.000 10.000 10.000 
+11.000 11.000 11.000 
+12.000 12.000 12.000 
+13.000 13.000 13.000 
+14.000 14.000 14.000 
+15.000 15.000 15.000 
+16.000 16.000 16.000 
+17.000 17.000 17.000 
+7.000 7.000 7.000 
+8.000 8.000 8.000 
+9.000 9.000 9.000 
+10.000 10.000 10.000 
+11.000 11.000 11.000 
+12.000 12.000 12.000 
+13.000 13.000 13.000 
+14.000 14.000 14.000 
+15.000 15.000 15.000 
+16.000 16.000 16.000 
+17.000 17.000 17.000 
+18.000 18.000 18.000 
+8.000 8.000 8.000 
+9.000 9.000 9.000 
+10.000 10.000 10.000 
+11.000 11.000 11.000 
+12.000 12.000 12.000 
+13.000 13.000 13.000 
+14.000 14.000 14.000 
+15.000 15.000 15.000 
+16.000 16.000 16.000 
+17.000 17.000 17.000 
+18.000 18.000 18.000 
+19.000 19.000 19.000 
+9.000 9.000 9.000 
+10.000 10.000 10.000 
+11.000 11.000 11.000 
+12.000 12.000 12.000 
+13.000 13.000 13.000 
+14.000 14.000 14.000 
+15.000 15.000 15.000 
+16.000 16.000 16.000 
+17.000 17.000 17.000 
+18.000 18.000 18.000 
+19.000 19.000 19.000 
+20.000 20.000 20.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+11.000 11.000 11.000 
+12.000 12.000 12.000 
+13.000 13.000 13.000 
+14.000 14.000 14.000 
+15.000 15.000 15.000 
+16.000 16.000 16.000 
+17.000 17.000 17.000 
+18.000 18.000 18.000 
+19.000 19.000 19.000 
+20.000 20.000 20.000 
+21.000 21.000 21.000 
+22.000 22.000 22.000 
+5.000 5.000 5.000 
+6.000 6.000 6.000 
+7.000 7.000 7.000 
+8.000 8.000 8.000 
+9.000 9.000 9.000 
+10.000 10.000 10.000 
+11.000 11.000 11.000 
+12.000 12.000 12.000 
+13.000 13.000 13.000 
+14.000 14.000 14.000 
+15.000 15.000 15.000 
+16.000 16.000 16.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+7.000 7.000 7.000 
+8.000 8.000 8.000 
+9.000 9.000 9.000 
+10.000 10.000 10.000 
+11.000 11.000 11.000 
+12.000 12.000 12.000 
+13.000 13.000 13.000 
+14.000 14.000 14.000 
+15.000 15.000 15.000 
+16.000 16.000 16.000 
+17.000 17.000 17.000 
+18.000 18.000 18.000 
+8.000 8.000 8.000 
+9.000 9.000 9.000 
+10.000 10.000 10.000 
+11.000 11.000 11.000 
+12.000 12.000 12.000 
+13.000 13.000 13.000 
+14.000 14.000 14.000 
+15.000 15.000 15.000 
+16.000 16.000 16.000 
+17.000 17.000 17.000 
+18.000 18.000 18.000 
+19.000 19.000 19.000 
+9.000 9.000 9.000 
+10.000 10.000 10.000 
+11.000 11.000 11.000 
+12.000 12.000 12.000 
+13.000 13.000 13.000 
+14.000 14.000 14.000 
+15.000 15.000 15.000 
+16.000 16.000 16.000 
+17.000 17.000 17.000 
+18.000 18.000 18.000 
+19.000 19.000 19.000 
+20.000 20.000 20.000 
+10.000 10.000 10.000 
+11.000 11.000 11.000 
+12.000 12.000 12.000 
+13.000 13.000 13.000 
+14.000 14.000 14.000 
+15.000 15.000 15.000 
+16.000 16.000 16.000 
+17.000 17.000 17.000 
+18.000 18.000 18.000 
+19.000 19.000 19.000 
+20.000 20.000 20.000 
+21.000 21.000 21.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+12.000 12.000 12.000 
+13.000 13.000 13.000 
+14.000 14.000 14.000 
+15.000 15.000 15.000 
+16.000 16.000 16.000 
+17.000 17.000 17.000 
+18.000 18.000 18.000 
+19.000 19.000 19.000 
+20.000 20.000 20.000 
+21.000 21.000 21.000 
+22.000 22.000 22.000 
+23.000 23.000 23.000 
+6.000 6.000 6.000 
+7.000 7.000 7.000 
+8.000 8.000 8.000 
+9.000 9.000 9.000 
+10.000 10.000 10.000 
+11.000 11.000 11.000 
+12.000 12.000 12.000 
+13.000 13.000 13.000 
+14.000 14.000 14.000 
+15.000 15.000 15.000 
+16.000 16.000 16.000 
+17.000 17.000 17.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+8.000 8.000 8.000 
+9.000 9.000 9.000 
+10.000 10.000 10.000 
+11.000 11.000 11.000 
+12.000 12.000 12.000 
+13.000 13.000 13.000 
+14.000 14.000 14.000 
+15.000 15.000 15.000 
+16.000 16.000 16.000 
+17.000 17.000 17.000 
+18.000 18.000 18.000 
+19.000 19.000 19.000 
+9.000 9.000 9.000 
+10.000 10.000 10.000 
+11.000 11.000 11.000 
+12.000 12.000 12.000 
+13.000 13.000 13.000 
+14.000 14.000 14.000 
+15.000 15.000 15.000 
+16.000 16.000 16.000 
+17.000 17.000 17.000 
+18.000 18.000 18.000 
+19.000 19.000 19.000 
+20.000 20.000 20.000 
+10.000 10.000 10.000 
+11.000 11.000 11.000 
+12.000 12.000 12.000 
+13.000 13.000 13.000 
+14.000 14.000 14.000 
+15.000 15.000 15.000 
+16.000 16.000 16.000 
+17.000 17.000 17.000 
+18.000 18.000 18.000 
+19.000 19.000 19.000 
+20.000 20.000 20.000 
+21.000 21.000 21.000 
+11.000 11.000 11.000 
+12.000 12.000 12.000 
+13.000 13.000 13.000 
+14.000 14.000 14.000 
+15.000 15.000 15.000 
+16.000 16.000 16.000 
+17.000 17.000 17.000 
+18.000 18.000 18.000 
+19.000 19.000 19.000 
+20.000 20.000 20.000 
+21.000 21.000 21.000 
+22.000 22.000 22.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+13.000 13.000 13.000 
+14.000 14.000 14.000 
+15.000 15.000 15.000 
+16.000 16.000 16.000 
+17.000 17.000 17.000 
+18.000 18.000 18.000 
+19.000 19.000 19.000 
+20.000 20.000 20.000 
+21.000 21.000 21.000 
+22.000 22.000 22.000 
+23.000 23.000 23.000 
+24.000 24.000 24.000 
+7.000 7.000 7.000 
+8.000 8.000 8.000 
+9.000 9.000 9.000 
+10.000 10.000 10.000 
+11.000 11.000 11.000 
+12.000 12.000 12.000 
+13.000 13.000 13.000 
+14.000 14.000 14.000 
+15.000 15.000 15.000 
+16.000 16.000 16.000 
+17.000 17.000 17.000 
+18.000 18.000 18.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+9.000 9.000 9.000 
+10.000 10.000 10.000 
+11.000 11.000 11.000 
+12.000 12.000 12.000 
+13.000 13.000 13.000 
+14.000 14.000 14.000 
+15.000 15.000 15.000 
+16.000 16.000 16.000 
+17.000 17.000 17.000 
+18.000 18.000 18.000 
+19.000 19.000 19.000 
+20.000 20.000 20.000 
+10.000 10.000 10.000 
+11.000 11.000 11.000 
+12.000 12.000 12.000 
+13.000 13.000 13.000 
+14.000 14.000 14.000 
+15.000 15.000 15.000 
+16.000 16.000 16.000 
+17.000 17.000 17.000 
+18.000 18.000 18.000 
+19.000 19.000 19.000 
+20.000 20.000 20.000 
+21.000 21.000 21.000 
+11.000 11.000 11.000 
+12.000 12.000 12.000 
+13.000 13.000 13.000 
+14.000 14.000 14.000 
+15.000 15.000 15.000 
+16.000 16.000 16.000 
+17.000 17.000 17.000 
+18.000 18.000 18.000 
+19.000 19.000 19.000 
+20.000 20.000 20.000 
+21.000 21.000 21.000 
+22.000 22.000 22.000 
+12.000 12.000 12.000 
+13.000 13.000 13.000 
+14.000 14.000 14.000 
+15.000 15.000 15.000 
+16.000 16.000 16.000 
+17.000 17.000 17.000 
+18.000 18.000 18.000 
+19.000 19.000 19.000 
+20.000 20.000 20.000 
+21.000 21.000 21.000 
+22.000 22.000 22.000 
+23.000 23.000 23.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+0.000 0.000 0.000 
+14.000 14.000 14.000 
+15.000 15.000 15.000 
+16.000 16.000 16.000 
+17.000 17.000 17.000 
+18.000 18.000 18.000 
+19.000 19.000 19.000 
+20.000 20.000 20.000 
+21.000 21.000 21.000 
+22.000 22.000 22.000 
+23.000 23.000 23.000 
+24.000 24.000 24.000 
+25.000 25.000 25.000 

Modified: grass/trunk/raster3d/r3.out.vtk/writeVTKData.c
===================================================================
--- grass/trunk/raster3d/r3.out.vtk/writeVTKData.c	2011-06-15 15:58:28 UTC (rev 46719)
+++ grass/trunk/raster3d/r3.out.vtk/writeVTKData.c	2011-06-16 09:58:31 UTC (rev 46720)
@@ -1,20 +1,20 @@
 
 /****************************************************************************
-*
-* MODULE:       r3.out.vtk  
-*   	    	
-* AUTHOR(S):    Original author 
-*               Soeren Gebbert soerengebbert at gmx de
-* 		27 Feb 2006 Berlin
-* PURPOSE:      Converts 3D raster maps (G3D) into the VTK-Ascii format  
-*
-* COPYRIGHT:    (C) 2005 by the GRASS Development Team
-*
-*               This program is free software under the GNU General Public
-*   	    	License (>=v2). Read the file COPYING that comes with GRASS
-*   	    	for details.
-*
-*****************************************************************************/
+ *
+ * MODULE:       r3.out.vtk  
+ *   	    	
+ * AUTHOR(S):    Original author 
+ *               Soeren Gebbert soerengebbert at gmx de
+ * 		27 Feb 2006 Berlin
+ * PURPOSE:      Converts 3D raster maps (G3D) into the VTK-Ascii format  
+ *
+ * COPYRIGHT:    (C) 2005 by the GRASS Development Team
+ *
+ *               This program is free software under the GNU General Public
+ *   	    	License (>=v2). Read the file COPYING that comes with GRASS
+ *   	    	for details.
+ *
+ *****************************************************************************/
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
@@ -29,41 +29,39 @@
 
 /*local prototypes */
 static double get_raster_value_as_double(int maptype, void *ptr,
-					 double nullval);
+                                         double nullval);
 static double get_g3d_raster_value_as_double(void *map, int x, int y, int z,
-					     int type, double nullval);
+                                             int type, double nullval);
 
 
 /* ************************************************************************* */
 /* Get the value of the current raster pointer as double ******************* */
+
 /* ************************************************************************* */
 double get_raster_value_as_double(int MapType, void *ptr, double nullval)
 {
     double val = nullval;
 
     if (MapType == CELL_TYPE) {
-	if (Rast_is_null_value(ptr, MapType)) {
-	    val = nullval;
-	}
-	else {
-	    val = *(CELL *) ptr;
-	}
+        if (Rast_is_null_value(ptr, MapType)) {
+            val = nullval;
+        } else {
+            val = *(CELL *) ptr;
+        }
     }
     if (MapType == FCELL_TYPE) {
-	if (Rast_is_null_value(ptr, MapType)) {
-	    val = nullval;
-	}
-	else {
-	    val = *(FCELL *) ptr;
-	}
+        if (Rast_is_null_value(ptr, MapType)) {
+            val = nullval;
+        } else {
+            val = *(FCELL *) ptr;
+        }
     }
     if (MapType == DCELL_TYPE) {
-	if (Rast_is_null_value(ptr, MapType)) {
-	    val = nullval;
-	}
-	else {
-	    val = *(DCELL *) ptr;
-	}
+        if (Rast_is_null_value(ptr, MapType)) {
+            val = nullval;
+        } else {
+            val = *(DCELL *) ptr;
+        }
     }
 
     return val;
@@ -71,39 +69,40 @@
 
 /* ************************************************************************* */
 /* Get the value of the 3d raster map as double *************************** */
+
 /* ************************************************************************* */
 double get_g3d_raster_value_as_double(void *map, int x, int y, int z,
-				      int type, double nullval)
+                                      int type, double nullval)
 {
     double val = 0;
     float fvalue;
     double dvalue;
 
     if (type == FCELL_TYPE) {
-	G3d_getValue(map, x, y, z, &fvalue, type);
-	if (G3d_isNullValueNum(&fvalue, FCELL_TYPE))
-	    val = nullval;
-	else
-	    val = (double)fvalue;
+        G3d_getValue(map, x, y, z, &fvalue, type);
+        if (G3d_isNullValueNum(&fvalue, FCELL_TYPE))
+            val = nullval;
+        else
+            val = (double) fvalue;
+    } else {
+        G3d_getValue(map, x, y, z, &dvalue, type);
+        if (G3d_isNullValueNum(&dvalue, DCELL_TYPE))
+            val = nullval;
+        else
+            val = dvalue;
     }
-    else {
-	G3d_getValue(map, x, y, z, &dvalue, type);
-	if (G3d_isNullValueNum(&dvalue, DCELL_TYPE))
-	    val = nullval;
-	else
-	    val = dvalue;
-    }
 
     return val;
 }
 
 /* ************************************************************************* */
 /* This function writes the point coordinates ****************************** */
+
 /* ************************************************************************* */
 void write_vtk_points(input_maps * in, FILE * fp, G3D_Region region, int dp,
-		      int type, double scale)
+                      int type, double scale)
 {
-    int x, y, z, status = 0;
+    int x, y, z, percentage = 0;
     int rows, cols, depths;
     void *rast_top = NULL;
     void *rast_bottom = NULL;
@@ -124,127 +123,130 @@
 
     for (z = 0; z < depths; z++) {
 
-	for (y = 0; y < rows; y++) {
-	    G_percent(status, (rows * depths - 1), 10);
-	    status++;
+        for (y = 0; y < rows; y++) {
+            G_percent(percentage, (rows * depths - 1), 10);
+            percentage++;
 
-	    Rast_get_row(in->top, rast_top, y, in->topMapType);
+            Rast_get_row(in->top, rast_top, y, in->topMapType);
 
-	    Rast_get_row(in->bottom, rast_bottom, y, in->bottomMapType);
+            Rast_get_row(in->bottom, rast_bottom, y, in->bottomMapType);
 
-	    for (x = 0, ptr_top = rast_top, ptr_bottom = rast_bottom;
-		 x < cols;
-		 x++, ptr_top =
-		 G_incr_void_ptr(ptr_top, Rast_cell_size(in->topMapType)),
-		 ptr_bottom =
-		 G_incr_void_ptr(ptr_bottom,
-				 Rast_cell_size(in->bottomMapType))) {
+            for (x = 0, ptr_top = rast_top, ptr_bottom = rast_bottom;
+                x < cols;
+                x++, ptr_top =
+                G_incr_void_ptr(ptr_top, Rast_cell_size(in->topMapType)),
+                ptr_bottom =
+                G_incr_void_ptr(ptr_bottom,
+                                Rast_cell_size(in->bottomMapType))) {
 
-		/*Get the values */
-		topval =
-		    get_raster_value_as_double(in->topMapType, ptr_top, 0.0);
-		bottomval =
-		    get_raster_value_as_double(in->bottomMapType, ptr_bottom,
-					       0.0);
+                /*Get the values */
+                topval =
+                    get_raster_value_as_double(in->topMapType, ptr_top, 0.0);
+                bottomval =
+                    get_raster_value_as_double(in->bottomMapType, ptr_bottom,
+                                               0.0);
 
-		if (type == 1) {	/*Structured Grid */
-		    /*Calculate the coordinates */
-		    xcoor =
-			region.west + (region.ew_res / 2 +
-				       region.ew_res * (x));
-		    ycoor =
-			region.north - (region.ns_res / 2 +
-					region.ns_res * (y));
-		    zcoor =
-			(bottomval +
-			 z * (topval - bottomval) / (depths - 1)) * scale;
+                if (type == 1) { /*Structured Grid */
+                    /*Calculate the coordinates */
+                    xcoor =
+                        region.west + (region.ew_res / 2 +
+                        region.ew_res * (x));
+                    /* Here the raster north->south coordinate system is used */
+                    ycoor =
+                        region.north - (region.ns_res / 2 +
+                        region.ns_res * (y));
+                    zcoor =
+                        (bottomval +
+                        z * (topval - bottomval) / (depths - 1)) * scale;
 
-		    xcoor -= x_extent;
-		    ycoor -= y_extent;
+                    xcoor -= x_extent;
+                    ycoor -= y_extent;
 
-		    fprintf(fp, "%.*f ", dp, xcoor);
-		    fprintf(fp, "%.*f ", dp, ycoor);
-		    fprintf(fp, "%.*f\n", dp, zcoor);
-		}
-		else {		/*Unstructured Grid */
-		    /*Write for every cell the coordinates for a hexahedron -> 8 points */
-		    /*VTK Hexaeder */
-		    /* bottom
-		     * 3 --- 2
-		     * |     |
-		     * 0 --- 1
+                    fprintf(fp, "%.*f ", dp, xcoor);
+                    fprintf(fp, "%.*f ", dp, ycoor);
+                    fprintf(fp, "%.*f\n", dp, zcoor);
+                } else { /*Unstructured Grid */
+                    /*Write for every cell the coordinates for a hexahedron -> 8 points */
+                    /*VTK Hexaeder */
+                    /* bottom
+                     * 3 --- 2
+                     * |     |
+                     * 0 --- 1
 
-		     * top
-		     * 7 --- 6
-		     * |     |
-		     * 4 --- 5
+                     * top
+                     * 7 --- 6
+                     * |     |
+                     * 4 --- 5
 
-		     */
-		    xcoor = region.west + (region.ew_res * (x));	/*0, 3, 4, 7 */
-		    ycoor = region.north - (region.ns_res * (y));	/*2, 3, 6, 7 */
-		    zcoor = (bottomval + z * (topval - bottomval) / (depths)) * scale;	/*0, 1, 2, 3 */
+                     */
+                    xcoor = region.west + (region.ew_res * (x)); /*0, 3, 4, 7 */
+                    /* Here the raster north->south coordinate system is used */
+                    ycoor = region.north - (region.ns_res * (y)); /*2, 3, 6, 7 */
+                    zcoor = (bottomval + z * (topval - bottomval) / (depths)) * scale; /*0, 1, 2, 3 */
 
-		    xcoor1 = region.west + (region.ew_res + region.ew_res * (x));	/*1, 2, 5, 6 */
-		    ycoor1 = region.north - (region.ns_res + region.ns_res * (y));	/*0, 1, 4, 5 */
-		    zcoor1 = (bottomval + z * (topval - bottomval) / (depths) + (topval - bottomval) / (depths)) * scale;	/*4, 5, ,6 ,7 */
+                    xcoor1 = region.west + (region.ew_res + region.ew_res * (x)); /*1, 2, 5, 6 */
+                    /* Here the raster north->south coordinate system is used */
+                    ycoor1 = region.north - (region.ns_res + region.ns_res * (y)); /*0, 1, 4, 5 */
+                    zcoor1 = (bottomval + z * (topval - bottomval) / (depths) + (topval - bottomval) / (depths)) * scale; /*4, 5, ,6 ,7 */
 
-		    xcoor -= x_extent;
-		    ycoor -= y_extent;
+                    xcoor -= x_extent;
+                    ycoor -= y_extent;
 
-		    xcoor1 -= x_extent;
-		    ycoor1 -= y_extent;
+                    xcoor1 -= x_extent;
+                    ycoor1 -= y_extent;
 
 
-		    /*0 */
-		    fprintf(fp, "%.*f ", dp, xcoor);
-		    fprintf(fp, "%.*f ", dp, ycoor1);
-		    fprintf(fp, "%.*f\n", dp, zcoor);
-		    /*1 */
-		    fprintf(fp, "%.*f ", dp, xcoor1);
-		    fprintf(fp, "%.*f ", dp, ycoor1);
-		    fprintf(fp, "%.*f\n", dp, zcoor);
-		    /*2 */
-		    fprintf(fp, "%.*f ", dp, xcoor1);
-		    fprintf(fp, "%.*f ", dp, ycoor);
-		    fprintf(fp, "%.*f\n", dp, zcoor);
-		    /*3 */
-		    fprintf(fp, "%.*f ", dp, xcoor);
-		    fprintf(fp, "%.*f ", dp, ycoor);
-		    fprintf(fp, "%.*f\n", dp, zcoor);
+                    /*0 */
+                    fprintf(fp, "%.*f ", dp, xcoor);
+                    fprintf(fp, "%.*f ", dp, ycoor1);
+                    fprintf(fp, "%.*f\n", dp, zcoor);
+                    /*1 */
+                    fprintf(fp, "%.*f ", dp, xcoor1);
+                    fprintf(fp, "%.*f ", dp, ycoor1);
+                    fprintf(fp, "%.*f\n", dp, zcoor);
+                    /*2 */
+                    fprintf(fp, "%.*f ", dp, xcoor1);
+                    fprintf(fp, "%.*f ", dp, ycoor);
+                    fprintf(fp, "%.*f\n", dp, zcoor);
+                    /*3 */
+                    fprintf(fp, "%.*f ", dp, xcoor);
+                    fprintf(fp, "%.*f ", dp, ycoor);
+                    fprintf(fp, "%.*f\n", dp, zcoor);
 
-		    /*4 */
-		    fprintf(fp, "%.*f ", dp, xcoor);
-		    fprintf(fp, "%.*f ", dp, ycoor1);
-		    fprintf(fp, "%.*f\n", dp, zcoor1);
-		    /*5 */
-		    fprintf(fp, "%.*f ", dp, xcoor1);
-		    fprintf(fp, "%.*f ", dp, ycoor1);
-		    fprintf(fp, "%.*f\n", dp, zcoor1);
-		    /*6 */
-		    fprintf(fp, "%.*f ", dp, xcoor1);
-		    fprintf(fp, "%.*f ", dp, ycoor);
-		    fprintf(fp, "%.*f\n", dp, zcoor1);
-		    /*7 */
-		    fprintf(fp, "%.*f ", dp, xcoor);
-		    fprintf(fp, "%.*f ", dp, ycoor);
-		    fprintf(fp, "%.*f\n", dp, zcoor1);
-		}
-	    }
-	}
+                    /*4 */
+                    fprintf(fp, "%.*f ", dp, xcoor);
+                    fprintf(fp, "%.*f ", dp, ycoor1);
+                    fprintf(fp, "%.*f\n", dp, zcoor1);
+                    /*5 */
+                    fprintf(fp, "%.*f ", dp, xcoor1);
+                    fprintf(fp, "%.*f ", dp, ycoor1);
+                    fprintf(fp, "%.*f\n", dp, zcoor1);
+                    /*6 */
+                    fprintf(fp, "%.*f ", dp, xcoor1);
+                    fprintf(fp, "%.*f ", dp, ycoor);
+                    fprintf(fp, "%.*f\n", dp, zcoor1);
+                    /*7 */
+                    fprintf(fp, "%.*f ", dp, xcoor);
+                    fprintf(fp, "%.*f ", dp, ycoor);
+                    fprintf(fp, "%.*f\n", dp, zcoor1);
+                }
+            }
+        }
     }
 
     if (type == 1)
-	fprintf(fp, "POINT_DATA %i\n", region.cols * region.rows * region.depths);	/*We have pointdata */
+        fprintf(fp, "POINT_DATA %i\n", region.cols * region.rows * region.depths); /*We have pointdata */
 
     return;
 }
 
 /* ************************************************************************* */
 /* This function writes the cell for the unstructured grid ***************** */
+
 /* ************************************************************************* */
 void write_vtk_unstructured_grid_cells(FILE * fp, G3D_Region region)
 {
-    int x, y, z, status;
+    int x, y, z, percentage;
     int rows, cols, depths, count;
 
     rows = region.rows;
@@ -254,54 +256,54 @@
     G_debug(3, _("write_vtk_unstructured_grid_cells: Writing the cells"));
 
     fprintf(fp, "CELLS %i %i\n", region.cols * region.rows * region.depths,
-	    region.cols * region.rows * region.depths * 9);
+            region.cols * region.rows * region.depths * 9);
 
     count = 0;
-    status = 0;
+    percentage = 0;
 
     /*The point - cell links */
     for (z = 0; z < depths; z++) {
-	for (y = 0; y < rows; y++) {
-	    G_percent(status, (rows * depths - 1), 10);
-	    status++;
+        for (y = 0; y < rows; y++) {
+            G_percent(percentage, (rows * depths - 1), 10);
+            percentage++;
 
-	    for (x = 0; x < cols; x++) {
-		/*Voxel */
-		fprintf(fp, "%i %i %i %i %i %i %i %i %i\n", 8,
-			count * 8, count * 8 + 1, count * 8 + 3,
-			count * 8 + 2, count * 8 + 4, count * 8 + 5,
-			count * 8 + 7, count * 8 + 6);
+            for (x = 0; x < cols; x++) {
+                /*Voxel */
+                fprintf(fp, "%i %i %i %i %i %i %i %i %i\n", 8,
+                        count * 8, count * 8 + 1, count * 8 + 3,
+                        count * 8 + 2, count * 8 + 4, count * 8 + 5,
+                        count * 8 + 7, count * 8 + 6);
 
-		/*Hexaeder 
-		 * fprintf(fp, "%i %i %i %i %i %i %i %i %i\n", 8,
-		 * count * 8, count * 8 + 1, count * 8 + 2, count * 8 + 3,
-		 * count * 8 + 4, count * 8 + 5, count * 8 + 6,
-		 * count * 8 + 7);
-		 */
-		count++;
-	    }
-	}
+                /*Hexaeder 
+                 * fprintf(fp, "%i %i %i %i %i %i %i %i %i\n", 8,
+                 * count * 8, count * 8 + 1, count * 8 + 2, count * 8 + 3,
+                 * count * 8 + 4, count * 8 + 5, count * 8 + 6,
+                 * count * 8 + 7);
+                 */
+                count++;
+            }
+        }
     }
-    status = 0;
+    percentage = 0;
 
     fprintf(fp, "CELL_TYPES %i\n", region.cols * region.rows * region.depths);
     /*the cell types */
     for (z = 0; z < depths; z++) {
-	for (y = 0; y < rows; y++) {
-	    G_percent(status, (rows * depths - 1), 10);
-	    status++;
+        for (y = 0; y < rows; y++) {
+            G_percent(percentage, (rows * depths - 1), 10);
+            percentage++;
 
-	    for (x = 0; x < cols; x++) {
-		/*Voxel */
-		fprintf(fp, "11\n");
-		/*Hexaeder 
-		 * fprintf(fp, "12\n");
-		 */
-	    }
-	}
+            for (x = 0; x < cols; x++) {
+                /*Voxel */
+                fprintf(fp, "11\n");
+                /*Hexaeder 
+                 * fprintf(fp, "12\n");
+                 */
+            }
+        }
     }
 
-    fprintf(fp, "CELL_DATA %i\n", region.cols * region.rows * region.depths);	/*We have celldata  */
+    fprintf(fp, "CELL_DATA %i\n", region.cols * region.rows * region.depths); /*We have celldata  */
 
     return;
 }
@@ -309,13 +311,14 @@
 
 /* ************************************************************************* */
 /* Write the VTK Cell or point data **************************************** */
+
 /* ************************************************************************* */
 void write_vtk_data(FILE * fp, void *map, G3D_Region region, char *varname,
-		    int dp)
+                    int dp)
 {
     double value;
     double nullvalue;
-    int x, y, z, status;
+    int x, y, z, percentage;
     int rows, cols, depths, typeIntern;
 
     rows = region.rows;
@@ -324,65 +327,66 @@
 
     /*the nullvalue */
     if (!sscanf(param.null_val->answer, "%lf", &nullvalue)) {
-	G_warning("Null value is not valid, using 0 instead.");
-	nullvalue = 0;
+        G_warning("Null value is not valid, using 0 instead.");
+        nullvalue = 0;
     }
 
     G_debug(3,
-	    _("write_vtk_data: Writing Celldata %s with rows %i cols %i depths %i to vtk-ascii file"),
-	    varname, rows, cols, depths);
+            _("write_vtk_data: Writing Celldata %s with rows %i cols %i depths %i to vtk-ascii file"),
+            varname, rows, cols, depths);
 
     fprintf(fp, "SCALARS %s float 1\n", varname);
     fprintf(fp, "LOOKUP_TABLE default\n");
 
     typeIntern = G3d_tileTypeMap(map);
 
-    status = 0;
+    percentage = 0;
 
     for (z = 0; z < depths; z++) {
-	if (!param.structgrid->answer) {
-	    for (y = 0; y < rows; y++) {
-		G_percent(status, (rows * depths - 1), 10);
-		status++;
+        if (param.structgrid->answer) {
+            /* In case of structured grid data, the point/cell coordinates
+               are computed based on the north->south raster coordinate system 
+             */
+            for (y = rows - 1; y >= 0; y--) {
+                G_percent(percentage, (rows * depths - 1), 10);
+                percentage++;
 
-		for (x = 0; x < cols; x++) {
-		    value =
-			get_g3d_raster_value_as_double(map, x, y, z,
-						       typeIntern, nullvalue);
-		    fprintf(fp, "%.*f ", dp, value);
+                for (x = 0; x < cols; x++) {
+                    value =
+                        get_g3d_raster_value_as_double(map, x, y, z,
+                                                       typeIntern, nullvalue);
+                    fprintf(fp, "%.*f ", dp, value);
+                }
+                fprintf(fp, "\n");
+            }
+        } else {
+            for (y = 0; y < rows; y++) {
+                G_percent(percentage, (rows * depths - 1), 10);
+                percentage++;
 
-		}
-		fprintf(fp, "\n");
-	    }
-	}
-	else {
-	    for (y = rows - 1; y >= 0; y--) {
-		G_percent(status, (rows * depths - 1), 10);
-		status++;
-
-		for (x = 0; x < cols; x++) {
-		    value =
-			get_g3d_raster_value_as_double(map, x, y, z,
-						       typeIntern, nullvalue);
-		    fprintf(fp, "%.*f ", dp, value);
-
-		}
-		fprintf(fp, "\n");
-	    }
-	}
+                for (x = 0; x < cols; x++) {
+                    value =
+                        get_g3d_raster_value_as_double(map, x, y, z,
+                                                       typeIntern, nullvalue);
+                    fprintf(fp, "%.*f ", dp, value);
+                }
+                fprintf(fp, "\n");
+            }
+        }
     }
 }
 
 
 /* ************************************************************************* */
 /* Write the VTK RGB Voxel Data ******************************************** */
+
 /* ************************************************************************* */
 void write_vtk_rgb_data(void *map_r, void *map_g, void *map_b,
-			FILE * fp, const char *varname,
-			G3D_Region region, int dp)
+                        FILE * fp, const char *varname,
+                        G3D_Region region, int dp)
 {
     double value = 0;
-    int x, y, z, status, k;
+    int x, y, z, percentage, k;
     int rows, cols, depths;
     int typeIntern[3];
     void *maprgb = NULL;
@@ -397,78 +401,51 @@
     typeIntern[1] = G3d_tileTypeMap(map_g);
     typeIntern[2] = G3d_tileTypeMap(map_b);
 
-    status = 0;
+    percentage = 0;
 
     /********************** WRITE RGB VOXEL DATA; CELL OR POINT ****************/
     fprintf(fp, "COLOR_SCALARS %s 3\n", varname);
 
-    for (z = 0; z < depths; z++) {	/*From the bottom to the top */
-	if (!param.structgrid->answer) {
-	    for (y = 0; y < rows; y++) {
-		G_percent(status, (rows * depths - 1), 10);
-		status++;
+    for (z = 0; z < depths; z++) {
+        for (y = 0; y < rows; y++) {
+            G_percent(percentage, (rows * depths - 1), 10);
+            percentage++;
 
-		for (x = 0; x < cols; x++) {
-		    for (k = 0; k < 3; k++) {
+            for (x = 0; x < cols; x++) {
+                for (k = 0; k < 3; k++) {
 
-			if (k == 0)
-			    maprgb = map_r;
-			if (k == 1)
-			    maprgb = map_g;
-			if (k == 2)
-			    maprgb = map_b;
+                    if (k == 0)
+                        maprgb = map_r;
+                    if (k == 1)
+                        maprgb = map_g;
+                    if (k == 2)
+                        maprgb = map_b;
 
-			value =
-			    get_g3d_raster_value_as_double(maprgb, x, y, z,
-							   typeIntern[k],
-							   0.0);
-			/*Test of value range, the data should be 1 byte gray values */
-			if (value > 255 || value < 0) {
-			    G_warning(_("Wrong 3d raster map values! Values should in between 0 and 255!\n"));
-			    fprintf(fp, "0 ");
-			}
-			else {
+                    /* In case of structured grid data, the point/cell coordinates
+                       are computed based on the north->south raster coordinate system 
+                     */
+                    if (param.structgrid->answer)
+                        value =
+                        get_g3d_raster_value_as_double(maprgb, x, rows - y - 1, z,
+                                                       typeIntern[k],
+                                                       0.0);
+                    else
+                        value =
+                        get_g3d_raster_value_as_double(maprgb, x, y, z,
+                                                       typeIntern[k],
+                                                       0.0);
+                    /*Test of value range, the data should be 1 byte gray values */
+                    if (value > 255 || value < 0) {
+                        G_warning(_("Wrong 3d raster map values! Values should in between 0 and 255!\n"));
+                        fprintf(fp, "0 ");
+                    } else {
 
-			    fprintf(fp, "%.*f ", dp, (value / 255));
-			}
-		    }
-		    fprintf(fp, "\n");
-		}
-	    }
-	}
-	else {
-	    for (y = rows - 1; y >= 0; y--) {	/*From south to the north */
-		G_percent(status, (rows * depths - 1), 10);
-		status++;
-
-		for (x = 0; x < cols; x++) {
-		    for (k = 0; k < 3; k++) {
-
-			if (k == 0)
-			    maprgb = map_r;
-			if (k == 1)
-			    maprgb = map_g;
-			if (k == 2)
-			    maprgb = map_b;
-
-			value =
-			    get_g3d_raster_value_as_double(maprgb, x, y, z,
-							   typeIntern[k],
-							   0.0);
-			/*Test of value range, the data should be 1 byte gray values */
-			if (value > 255 || value < 0) {
-			    G_warning(_("Wrong 3d raster map values! Values should in between 0 and 255!\n"));
-			    fprintf(fp, "0 ");
-			}
-			else {
-
-			    fprintf(fp, "%.*f ", dp, (value / 255));
-			}
-		    }
-		    fprintf(fp, "\n");
-		}
-	    }
-	}
+                        fprintf(fp, "%.*f ", dp, (value / 255));
+                    }
+                }
+                fprintf(fp, "\n");
+            }
+        }
     }
     return;
 }
@@ -476,13 +453,14 @@
 
 /* ************************************************************************* */
 /* Write the VTK vector Data *********************************************** */
+
 /* ************************************************************************* */
 void write_vtk_vector_data(void *map_x, void *map_y, void *map_z,
-			   FILE * fp, const char *varname,
-			   G3D_Region region, int dp)
+                           FILE * fp, const char *varname,
+                           G3D_Region region, int dp)
 {
     double value = 0;
-    int x, y, z, status, k;
+    int x, y, z, percentage, k;
     int rows, cols, depths;
     int typeIntern[3];
     void *mapvect = NULL;
@@ -497,62 +475,44 @@
     typeIntern[1] = G3d_tileTypeMap(map_y);
     typeIntern[2] = G3d_tileTypeMap(map_z);
 
-    status = 0;
+    percentage = 0;
 
     /********************** WRITE VECTOR DATA; CELL OR POINT ****************/
     fprintf(fp, "VECTORS %s float\n", varname);
 
-    for (z = 0; z < depths; z++) {	/*From the bottom to the top */
-	if (!param.structgrid->answer) {
-	    for (y = 0; y < rows; y++) {
-		G_percent(status, (rows * depths - 1), 10);
-		status++;
+    for (z = 0; z < depths; z++) { /*From the bottom to the top */
+        for (y = 0; y < rows; y++) {
+            G_percent(percentage, (rows * depths - 1), 10);
+            percentage++;
 
-		for (x = 0; x < cols; x++) {
-		    for (k = 0; k < 3; k++) {
+            for (x = 0; x < cols; x++) {
+                for (k = 0; k < 3; k++) {
 
-			if (k == 0)
-			    mapvect = map_x;
-			if (k == 1)
-			    mapvect = map_y;
-			if (k == 2)
-			    mapvect = map_z;
+                    if (k == 0)
+                        mapvect = map_x;
+                    if (k == 1)
+                        mapvect = map_y;
+                    if (k == 2)
+                        mapvect = map_z;
 
-			value =
-			    get_g3d_raster_value_as_double(mapvect, x, y, z,
-							   typeIntern[k],
-							   0.0);
-			fprintf(fp, "%.*f ", dp, value);
-		    }
-		    fprintf(fp, "\n");
-		}
-	    }
-	}
-	else {
-	    for (y = rows - 1; y >= 0; y--) {	/*From south to the north */
-		G_percent(status, (rows * depths - 1), 10);
-		status++;
-
-		for (x = 0; x < cols; x++) {
-		    for (k = 0; k < 3; k++) {
-
-			if (k == 0)
-			    mapvect = map_x;
-			if (k == 1)
-			    mapvect = map_y;
-			if (k == 2)
-			    mapvect = map_z;
-
-			value =
-			    get_g3d_raster_value_as_double(mapvect, x, y, z,
-							   typeIntern[k],
-							   0.0);
-			fprintf(fp, "%.*f ", dp, value);
-		    }
-		    fprintf(fp, "\n");
-		}
-	    }
-	}
+                    /* In case of structured grid data, the point/cell coordinates
+                       are computed based on the north->south raster coordinate system 
+                     */
+                    if (param.structgrid->answer)
+                        value =
+                        get_g3d_raster_value_as_double(mapvect, x, rows - y - 1, z,
+                                                       typeIntern[k],
+                                                       0.0);
+                    else
+                        value =
+                        get_g3d_raster_value_as_double(mapvect, x, y, z,
+                                                       typeIntern[k],
+                                                       0.0);
+                    fprintf(fp, "%.*f ", dp, value);
+                }
+                fprintf(fp, "\n");
+            }
+        }
     }
     return;
 }

Modified: grass/trunk/raster3d/r3.out.vtk/writeVTKHead.c
===================================================================
--- grass/trunk/raster3d/r3.out.vtk/writeVTKHead.c	2011-06-15 15:58:28 UTC (rev 46719)
+++ grass/trunk/raster3d/r3.out.vtk/writeVTKHead.c	2011-06-16 09:58:31 UTC (rev 46720)
@@ -1,20 +1,20 @@
 
 /****************************************************************************
-*
-* MODULE:       r3.out.vtk  
-*   	    	
-* AUTHOR(S):    Original author 
-*               Soeren Gebbert soerengebbert at gmx de
-* 		27 Feb 2006 Berlin
-* PURPOSE:      Converts 3D raster maps (G3D) into the VTK-Ascii format  
-*
-* COPYRIGHT:    (C) 2005 by the GRASS Development Team
-*
-*               This program is free software under the GNU General Public
-*   	    	License (>=v2). Read the file COPYING that comes with GRASS
-*   	    	for details.
-*
-*****************************************************************************/
+ *
+ * MODULE:       r3.out.vtk  
+ *   	    	
+ * AUTHOR(S):    Original author 
+ *               Soeren Gebbert soerengebbert at gmx de
+ * 		27 Feb 2006 Berlin
+ * PURPOSE:      Converts 3D raster maps (G3D) into the VTK-Ascii format  
+ *
+ * COPYRIGHT:    (C) 2005 by the GRASS Development Team
+ *
+ *               This program is free software under the GNU General Public
+ *   	    	License (>=v2). Read the file COPYING that comes with GRASS
+ *   	    	for details.
+ *
+ *****************************************************************************/
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
@@ -29,57 +29,57 @@
 
 
 /* ************************************************************************* */
-/* Writes the strcutured points Header ************************************* */
+/* Writes the structured points Header ************************************* */
+
 /* ************************************************************************* */
 void write_vtk_structured_point_header(FILE * fp, char *vtkFile,
-				       G3D_Region region, int dp,
-				       double scale)
+                                       G3D_Region region, int dp,
+                                       double scale)
 {
     G_debug(3,
-	    _("write_vtk_structured_point_header: Writing VTKStructuredPoint-Header"));
+            _("write_vtk_structured_point_header: Writing VTKStructuredPoint-Header"));
 
     /*Simple vtk ASCII header */
 
     fprintf(fp, "# vtk DataFile Version 3.0\n");
     fprintf(fp, "GRASS GIS 7 Export\n");
     fprintf(fp, "ASCII\n");
-    fprintf(fp, "DATASET STRUCTURED_POINTS\n");	/*We are using the structured point dataset. */
+    fprintf(fp, "DATASET STRUCTURED_POINTS\n"); /*We are using the structured point dataset. */
 
     if (param.point->answer)
-	fprintf(fp, "DIMENSIONS %i %i %i\n", region.cols, region.rows,
-		region.depths);
+        fprintf(fp, "DIMENSIONS %i %i %i\n", region.cols, region.rows,
+                region.depths);
     else
-	fprintf(fp, "DIMENSIONS %i %i %i\n", region.cols + 1, region.rows + 1,
-		region.depths + 1);
+        fprintf(fp, "DIMENSIONS %i %i %i\n", region.cols + 1, region.rows + 1,
+                region.depths + 1);
 
     fprintf(fp, "SPACING %.*f %.*f %.*f\n", dp, region.ew_res, dp,
-	    region.ns_res, dp, (region.tb_res * scale));
+            region.ns_res, dp, (region.tb_res * scale));
 
     if (param.point->answer) {
-	if (param.origin->answer)
-	    fprintf(fp, "ORIGIN %.*f %.*f %.*f\n", dp,
-		    (region.west + region.ew_res / 2) - x_extent, dp,
-		    (region.south + region.ns_res / 2) - y_extent, dp,
-		    region.bottom * scale + (region.tb_res * scale) / 2);
-	else
-	    fprintf(fp, "ORIGIN %.*f %.*f %.*f\n", dp,
-		    (region.west + region.ew_res / 2) - x_extent, dp,
-		    (region.south + region.ns_res / 2) - y_extent, dp,
-		    region.bottom + (region.tb_res * scale) / 2);
+        if (param.origin->answer)
+            fprintf(fp, "ORIGIN %.*f %.*f %.*f\n", dp,
+                    (region.west + region.ew_res / 2) - x_extent, dp,
+                    (region.south + region.ns_res / 2) - y_extent, dp,
+                    region.bottom * scale + (region.tb_res * scale) / 2);
+        else
+            fprintf(fp, "ORIGIN %.*f %.*f %.*f\n", dp,
+                    (region.west + region.ew_res / 2) - x_extent, dp,
+                    (region.south + region.ns_res / 2) - y_extent, dp,
+                    region.bottom + (region.tb_res * scale) / 2);
+    } else {
+        if (param.origin->answer)
+            fprintf(fp, "ORIGIN %.*f %.*f %.*f\n", dp, region.west - x_extent,
+                    dp, region.south - y_extent, dp, region.bottom * scale);
+        else
+            fprintf(fp, "ORIGIN %.*f %.*f %.*f\n", dp, region.west - x_extent,
+                    dp, region.south - y_extent, dp, region.bottom);
     }
-    else {
-	if (param.origin->answer)
-	    fprintf(fp, "ORIGIN %.*f %.*f %.*f\n", dp, region.west - x_extent,
-		    dp, region.south - y_extent, dp, region.bottom * scale);
-	else
-	    fprintf(fp, "ORIGIN %.*f %.*f %.*f\n", dp, region.west - x_extent,
-		    dp, region.south - y_extent, dp, region.bottom);
-    }
 
     if (param.point->answer)
-	fprintf(fp, "POINT_DATA %i\n", region.cols * region.rows * region.depths);	/*We have pointdata */
+        fprintf(fp, "POINT_DATA %i\n", region.cols * region.rows * region.depths); /*We have pointdata */
     else
-	fprintf(fp, "CELL_DATA %i\n", region.cols * region.rows * region.depths);	/*We have celldata */
+        fprintf(fp, "CELL_DATA %i\n", region.cols * region.rows * region.depths); /*We have celldata */
 
     return;
 }
@@ -87,39 +87,41 @@
 
 /* ************************************************************************* */
 /* Writes the strcutured grid header **************************************** */
+
 /* ************************************************************************* */
 void write_vtk_structured_grid_header(FILE * fp, char *vtkFile,
-				      G3D_Region region)
+                                      G3D_Region region)
 {
     G_debug(3,
-	    _("write_vtk_structured_grid_header: Writing VTKStructuredGrid-Header"));
+            _("write_vtk_structured_grid_header: Writing VTKStructuredGrid-Header"));
     fprintf(fp, "# vtk DataFile Version 3.0\n");
     fprintf(fp, "GRASS GIS 7 Export\n");
     fprintf(fp, "ASCII\n");
-    fprintf(fp, "DATASET STRUCTURED_GRID\n");	/*We are using the structured grid dataset. */
+    fprintf(fp, "DATASET STRUCTURED_GRID\n"); /*We are using the structured grid dataset. */
     fprintf(fp, "DIMENSIONS %i %i %i\n", region.cols, region.rows,
-	    region.depths);
+            region.depths);
     /*Only point data is available */
     fprintf(fp, "POINTS %i float\n",
-	    region.cols * region.rows * region.depths);
+            region.cols * region.rows * region.depths);
 
     return;
 }
 
 /* ************************************************************************* */
 /* Writes the unstrcutured grid header ************************************* */
+
 /* ************************************************************************* */
 void write_vtk_unstructured_grid_header(FILE * fp, char *vtkFile,
-					G3D_Region region)
+                                        G3D_Region region)
 {
     G_debug(3,
-	    _("write_vtk_unstructured_grid_header: Writing VTKUnstructuredGrid-Header"));
+            _("write_vtk_unstructured_grid_header: Writing VTKUnstructuredGrid-Header"));
     fprintf(fp, "# vtk DataFile Version 3.0\n");
     fprintf(fp, "GRASS GIS 7 Export\n");
     fprintf(fp, "ASCII\n");
-    fprintf(fp, "DATASET UNSTRUCTURED_GRID\n");	/*We are using the unstructured grid dataset. */
+    fprintf(fp, "DATASET UNSTRUCTURED_GRID\n"); /*We are using the unstructured grid dataset. */
     /*Only cell data is available, because we creating a hexaeder/vtk-voxel for every voxel */
-    fprintf(fp, "POINTS %i float\n", region.cols * region.rows * region.depths * 8);	/*a Voxel has 8 points */
+    fprintf(fp, "POINTS %i float\n", region.cols * region.rows * region.depths * 8); /*a Voxel has 8 points */
 
     return;
 }



More information about the grass-commit mailing list